unis_crm/frontend1/node_modules/rc-picker/es/utils/uiUtil.js

7 lines
210 B
JavaScript
Raw Normal View History

2026-03-26 09:29:55 +00:00
// ====================== Mode ======================
export function getRealPlacement(placement, rtl) {
if (placement !== undefined) {
return placement;
}
return rtl ? 'bottomRight' : 'bottomLeft';
}