first commit
This commit is contained in:
40
frontend/node_modules/antd/lib/select/mergedBuiltinPlacements.js
generated
vendored
Normal file
40
frontend/node_modules/antd/lib/select/mergedBuiltinPlacements.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
const getBuiltInPlacements = popupOverflow => {
|
||||
const htmlRegion = popupOverflow === 'scroll' ? 'scroll' : 'visible';
|
||||
const sharedConfig = {
|
||||
overflow: {
|
||||
adjustX: true,
|
||||
adjustY: true,
|
||||
shiftY: true
|
||||
},
|
||||
htmlRegion,
|
||||
dynamicInset: true
|
||||
};
|
||||
return {
|
||||
bottomLeft: Object.assign(Object.assign({}, sharedConfig), {
|
||||
points: ['tl', 'bl'],
|
||||
offset: [0, 4]
|
||||
}),
|
||||
bottomRight: Object.assign(Object.assign({}, sharedConfig), {
|
||||
points: ['tr', 'br'],
|
||||
offset: [0, 4]
|
||||
}),
|
||||
topLeft: Object.assign(Object.assign({}, sharedConfig), {
|
||||
points: ['bl', 'tl'],
|
||||
offset: [0, -4]
|
||||
}),
|
||||
topRight: Object.assign(Object.assign({}, sharedConfig), {
|
||||
points: ['br', 'tr'],
|
||||
offset: [0, -4]
|
||||
})
|
||||
};
|
||||
};
|
||||
function mergedBuiltinPlacements(buildInPlacements, popupOverflow) {
|
||||
return buildInPlacements || getBuiltInPlacements(popupOverflow);
|
||||
}
|
||||
var _default = exports.default = mergedBuiltinPlacements;
|
||||
Reference in New Issue
Block a user