@pisell/private-materials 6.3.91 → 6.3.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +2 -2
- package/build/lowcode/preview.js +8 -8
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +9 -9
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +10 -10
- package/es/components/booking/info/clientVariant/hooks/useIsLowSpeedNetwork.d.ts +1 -0
- package/es/components/ecocup/components/AddCustomerModal/index.d.ts +10 -0
- package/es/components/{eftpos/PairModal → ecocup/components/AddCustomerModal}/index.js +159 -189
- package/es/components/ecocup/components/AddCustomerModal/index.less +9 -0
- package/es/components/ecocup/components/CupActionList/index.d.ts +14 -0
- package/es/components/ecocup/components/CupActionList/index.js +91 -0
- package/es/components/ecocup/components/CupActionList/index.less +102 -0
- package/es/components/ecocup/components/CupActionModal/hooks.d.ts +5 -0
- package/es/components/ecocup/components/CupActionModal/hooks.js +68 -0
- package/es/components/ecocup/components/CupActionModal/index.d.ts +15 -0
- package/es/components/ecocup/components/CupActionModal/index.js +92 -0
- package/es/components/ecocup/components/CupActionModal/index.less +38 -0
- package/es/components/ecocup/components/CupInfoCard/index.d.ts +8 -0
- package/es/components/ecocup/components/CupInfoCard/index.js +12 -0
- package/es/components/ecocup/components/CupInfoCard/index.less +11 -0
- package/es/components/ecocup/components/CupStatusModal/hooks.d.ts +5 -0
- package/es/components/ecocup/components/CupStatusModal/hooks.js +68 -0
- package/es/components/ecocup/components/CupStatusModal/index.d.ts +14 -0
- package/es/components/ecocup/components/CupStatusModal/index.js +147 -0
- package/es/components/ecocup/components/CupStatusModal/index.less +35 -0
- package/es/components/ecocup/components/CustomerAndCupModal/hooks.d.ts +14 -0
- package/es/components/ecocup/components/CustomerAndCupModal/hooks.js +133 -0
- package/es/components/ecocup/components/CustomerAndCupModal/index.d.ts +20 -0
- package/es/components/ecocup/components/CustomerAndCupModal/index.js +227 -0
- package/es/components/ecocup/components/CustomerAndCupModal/index.less +68 -0
- package/es/components/ecocup/components/CustomerCard/index.d.ts +7 -0
- package/es/components/ecocup/components/CustomerCard/index.js +34 -0
- package/es/components/ecocup/components/CustomerCard/index.less +50 -0
- package/es/components/ecocup/components/MoreDropdown/index.d.ts +9 -0
- package/es/components/ecocup/components/MoreDropdown/index.js +33 -0
- package/es/components/ecocup/components/PageHeader/index.d.ts +7 -0
- package/es/components/ecocup/components/PageHeader/index.js +37 -0
- package/es/components/ecocup/components/PageHeader/index.less +19 -0
- package/es/components/ecocup/components/SearchBar/const.d.ts +4 -0
- package/es/components/ecocup/components/SearchBar/const.js +16 -0
- package/es/components/ecocup/components/SearchBar/hooks.d.ts +44 -0
- package/es/components/ecocup/components/SearchBar/hooks.js +184 -0
- package/es/components/ecocup/components/SearchBar/index.d.ts +13 -0
- package/es/components/ecocup/components/SearchBar/index.js +218 -0
- package/es/components/ecocup/components/SearchBar/index.less +88 -0
- package/es/components/ecocup/cupList/const.d.ts +133 -0
- package/es/components/ecocup/cupList/const.js +306 -0
- package/es/components/ecocup/cupList/hooks/index.d.ts +4 -0
- package/es/components/ecocup/cupList/hooks/index.js +4 -0
- package/es/components/ecocup/cupList/hooks/useColumns.d.ts +44 -0
- package/es/components/ecocup/cupList/hooks/useColumns.js +168 -0
- package/es/components/ecocup/cupList/hooks/useCupApi.d.ts +32 -0
- package/es/components/ecocup/cupList/hooks/useCupApi.js +172 -0
- package/es/components/ecocup/cupList/hooks/useSummary.d.ts +3 -0
- package/es/components/ecocup/cupList/hooks/useSummary.js +40 -0
- package/es/components/ecocup/cupList/index.d.ts +7 -0
- package/es/components/ecocup/cupList/index.js +220 -0
- package/es/components/ecocup/cupList/index.less +113 -0
- package/es/components/ecocup/cupProject/const.d.ts +7 -0
- package/es/components/ecocup/cupProject/const.js +27 -0
- package/es/components/ecocup/cupProject/index.d.ts +3 -0
- package/es/components/ecocup/cupProject/index.js +103 -0
- package/es/components/ecocup/cupProject/index.less +41 -0
- package/es/components/ecocup/customerList/const.d.ts +44 -0
- package/es/components/ecocup/customerList/const.js +67 -0
- package/es/components/ecocup/customerList/hooks/index.d.ts +3 -0
- package/es/components/ecocup/customerList/hooks/index.js +3 -0
- package/es/components/ecocup/customerList/hooks/useColumns.d.ts +15 -0
- package/es/components/ecocup/customerList/hooks/useColumns.js +44 -0
- package/es/components/ecocup/customerList/hooks/useCustomerApi.d.ts +15 -0
- package/es/components/ecocup/customerList/hooks/useCustomerApi.js +70 -0
- package/es/components/ecocup/customerList/index.d.ts +7 -0
- package/es/components/ecocup/customerList/index.js +127 -0
- package/es/components/ecocup/customerList/index.less +15 -0
- package/es/components/ecocup/hooks.d.ts +49 -0
- package/es/components/ecocup/hooks.js +151 -0
- package/es/components/ecocup/locales.d.ts +339 -0
- package/es/components/ecocup/locales.js +372 -0
- package/es/components/ecocup/types.d.ts +103 -0
- package/es/components/ecocup/types.js +36 -0
- package/es/components/ecocup/utils/scanListener.d.ts +20 -0
- package/es/components/ecocup/utils/scanListener.js +107 -0
- package/es/components/eftpos/const.d.ts +1 -3
- package/es/components/eftpos/const.js +0 -2
- package/es/components/eftpos/device.d.ts +1 -3
- package/es/components/eftpos/device.js +3 -5
- package/es/components/eftpos/hooks.d.ts +1 -7
- package/es/components/eftpos/hooks.js +0 -20
- package/es/components/eftpos/index.js +20 -127
- package/es/components/eftpos/index.less +1 -26
- package/es/components/eftpos/locales.d.ts +0 -24
- package/es/components/eftpos/locales.js +7 -91
- package/es/components/eftposPay/app.d.ts +1 -1
- package/es/components/eftposPay/const.d.ts +1 -6
- package/es/components/eftposPay/const.js +0 -2
- package/es/components/eftposPay/device.js +208 -36
- package/es/components/eftposPay/hooks.d.ts +1 -2
- package/es/components/eftposPay/hooks.js +0 -12
- package/es/components/eftposPay/linkly/index.js +0 -1
- package/es/components/eftposPay/manufacturer.d.ts +0 -1
- package/es/components/eftposPay/manufacturer.js +0 -4
- package/es/components/eftposPay/pay.js +2 -7
- package/es/components/eftposPay/store/index.d.ts +1 -1
- package/es/components/eftposPay/tyro/hooks.d.ts +1 -0
- package/es/components/eftposPay/windcave/windcave.js +9 -9
- package/es/components/eventBooking/components/ErrorTip/index.d.ts +1 -0
- package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.d.ts +1 -0
- package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.d.ts +1 -0
- package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.d.ts +1 -0
- package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.d.ts +1 -0
- package/es/components/pay/toC/PaymentMethods/MWCreditCard/tds2.js +1 -1
- package/es/components/pay/toC/PaymentMethods/StripePay/Stripe/StripeSDK/index.d.ts +1 -0
- package/es/hooks/useEngineContext.d.ts +1 -0
- package/es/hooks/useEngineContext.js +7 -0
- package/es/hooks/useTranslationOriginal.d.ts +1 -0
- package/es/hooks/useTranslationOriginal.js +10 -0
- package/es/index.d.ts +12 -1
- package/es/index.js +11 -1
- package/es/plus/clientCard/index.d.ts +7 -0
- package/es/plus/clientCard/index.js +462 -0
- package/es/plus/clientCard/index.less +515 -0
- package/es/plus/clientCard/line/index.d.ts +9 -0
- package/es/plus/clientCard/line/index.js +157 -0
- package/es/plus/clientCard/line/index.less +142 -0
- package/es/plus/clientCard/locales.d.ts +18 -0
- package/es/plus/clientCard/locales.js +17 -0
- package/es/plus/clientCard/types.d.ts +135 -0
- package/es/plus/clientCard/types.js +1 -0
- package/es/plus/clientCard/utils.d.ts +8 -0
- package/es/plus/clientCard/utils.js +59 -0
- package/es/plus/clinetSearch/Add/BirthdayField/index.d.ts +3 -0
- package/es/plus/clinetSearch/Add/BirthdayField/index.js +277 -0
- package/es/plus/clinetSearch/Add/GenderField/index.d.ts +3 -0
- package/es/plus/clinetSearch/Add/GenderField/index.js +18 -0
- package/es/plus/clinetSearch/Add/PhoneField/index.d.ts +3 -0
- package/es/plus/clinetSearch/Add/PhoneField/index.js +52 -0
- package/es/plus/clinetSearch/Add/PhoneField/serve.d.ts +2 -0
- package/es/plus/clinetSearch/Add/PhoneField/serve.js +166 -0
- package/es/plus/clinetSearch/Add/index.d.ts +18 -0
- package/es/plus/clinetSearch/Add/index.js +213 -0
- package/es/plus/clinetSearch/Add/index.less +30 -0
- package/es/plus/clinetSearch/InfiniteScroll/InfiniteScroll.d.ts +5 -0
- package/es/plus/clinetSearch/InfiniteScroll/InfiniteScroll.js +265 -0
- package/es/plus/clinetSearch/InfiniteScroll/index.d.ts +2 -0
- package/es/plus/clinetSearch/InfiniteScroll/index.js +1 -0
- package/es/plus/clinetSearch/InfiniteScroll/types.d.ts +46 -0
- package/es/plus/clinetSearch/InfiniteScroll/types.js +1 -0
- package/es/plus/clinetSearch/index.d.ts +18 -0
- package/es/plus/clinetSearch/index.js +234 -0
- package/es/plus/clinetSearch/index.less +95 -0
- package/es/plus/clinetSearch/locales.d.ts +108 -0
- package/es/plus/clinetSearch/locales.js +107 -0
- package/es/plus/clinetSearch/serve.d.ts +1 -0
- package/es/plus/clinetSearch/serve.js +31 -0
- package/es/plus/clinetSearch/types.d.ts +70 -0
- package/es/plus/clinetSearch/types.js +1 -0
- package/es/plus/orderList/components/BatchActionBar.d.ts +9 -0
- package/es/plus/orderList/components/BatchActionBar.js +835 -0
- package/es/plus/orderList/components/FilterList.d.ts +8 -0
- package/es/plus/orderList/components/FilterList.js +78 -0
- package/es/plus/orderList/components/HandleActions.d.ts +5 -0
- package/es/plus/orderList/components/HandleActions.js +24 -0
- package/es/plus/orderList/components/QuickFilter.d.ts +5 -0
- package/es/plus/orderList/components/QuickFilter.js +14 -0
- package/es/plus/orderList/components/Reset.d.ts +7 -0
- package/es/plus/orderList/components/Reset.js +23 -0
- package/es/plus/orderList/components/Toolbar.d.ts +6 -0
- package/es/plus/orderList/components/Toolbar.js +57 -0
- package/es/plus/orderList/config.d.ts +155 -0
- package/es/plus/orderList/config.js +786 -0
- package/es/plus/orderList/index.d.ts +9 -0
- package/es/plus/orderList/index.js +128 -0
- package/es/plus/orderList/index.less +125 -0
- package/es/plus/orderList/locales.d.ts +372 -0
- package/es/plus/orderList/locales.js +459 -0
- package/es/plus/orderList/serve.d.ts +42 -0
- package/es/plus/orderList/serve.js +351 -0
- package/es/plus/saasAttendance/index.d.ts +6 -0
- package/es/plus/saasAttendance/index.js +5 -0
- package/es/plus/saasAttendance/locales.d.ts +318 -0
- package/es/plus/saasAttendance/locales.js +354 -0
- package/es/plus/saasAttendance/settings/BasicInfoTab.d.ts +5 -0
- package/es/plus/saasAttendance/settings/BasicInfoTab.js +96 -0
- package/es/plus/saasAttendance/settings/ClockInMethodTab.d.ts +8 -0
- package/es/plus/saasAttendance/settings/ClockInMethodTab.js +81 -0
- package/es/plus/saasAttendance/settings/CorrectionPolicyTab.d.ts +8 -0
- package/es/plus/saasAttendance/settings/CorrectionPolicyTab.js +293 -0
- package/es/plus/saasAttendance/settings/ShiftScheduleTab.d.ts +5 -0
- package/es/plus/saasAttendance/settings/ShiftScheduleTab.js +109 -0
- package/es/plus/saasAttendance/settings/components/MapField.d.ts +78 -0
- package/es/plus/saasAttendance/settings/components/MapField.js +810 -0
- package/es/plus/saasAttendance/settings/components/index.d.ts +3 -0
- package/es/plus/saasAttendance/settings/components/index.js +2 -0
- package/es/plus/saasAttendance/settings/components/membersField/index.d.ts +8 -0
- package/es/plus/saasAttendance/settings/components/membersField/index.js +216 -0
- package/es/plus/saasAttendance/settings/components/membersField/index.less +70 -0
- package/es/plus/saasAttendance/settings/components/shiftModal/index.d.ts +18 -0
- package/es/plus/saasAttendance/settings/components/shiftModal/index.js +438 -0
- package/es/plus/saasAttendance/settings/index.d.ts +18 -0
- package/es/plus/saasAttendance/settings/index.js +255 -0
- package/es/plus/saasAttendance/settings/index.less +495 -0
- package/es/plus/saasAttendance/settings/serve.d.ts +27 -0
- package/es/plus/saasAttendance/settings/serve.js +83 -0
- package/es/plus/saasAttendance/settings/types.d.ts +128 -0
- package/es/plus/saasAttendance/settings/types.js +1 -0
- package/es/plus/saasRole/components/PermissionManager/index.d.ts +19 -0
- package/es/plus/saasRole/components/PermissionManager/index.js +211 -0
- package/es/plus/saasRole/components/PermissionManager/index.less +71 -0
- package/es/plus/saasRole/index.d.ts +14 -0
- package/es/plus/saasRole/index.js +1036 -0
- package/es/plus/saasRole/index.less +196 -0
- package/es/plus/saasRole/locales.d.ts +193 -0
- package/es/plus/saasRole/locales.js +193 -0
- package/es/plus/saasRole/serve.d.ts +72 -0
- package/es/plus/saasRole/serve.js +304 -0
- package/es/plus/saasRole/types.d.ts +175 -0
- package/es/plus/saasRole/types.js +1 -0
- package/es/plus/saasRole/utils.d.ts +0 -0
- package/es/plus/saasRole/utils.js +0 -0
- package/es/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.d.ts +31 -0
- package/es/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.js +503 -0
- package/es/plus/saasTeamMembers/components/MemberDrawer/index.d.ts +23 -0
- package/es/plus/saasTeamMembers/components/MemberDrawer/index.js +634 -0
- package/es/plus/saasTeamMembers/components/MemberDrawer/index.less +178 -0
- package/es/plus/saasTeamMembers/index.d.ts +5 -0
- package/es/plus/saasTeamMembers/index.js +529 -0
- package/es/plus/saasTeamMembers/index.less +87 -0
- package/es/plus/saasTeamMembers/locales.d.ts +330 -0
- package/es/plus/saasTeamMembers/locales.js +375 -0
- package/es/plus/saasTeamMembers/serve.d.ts +95 -0
- package/es/plus/saasTeamMembers/serve.js +374 -0
- package/es/plus/saasTeamMembers/type.d.ts +156 -0
- package/es/plus/saasTeamMembers/type.js +1 -0
- package/es/plus/selectHolder/components/ErrorTip/index.d.ts +1 -0
- package/es/plus/selectHolder/locales.d.ts +6 -0
- package/es/plus/selectHolder/locales.js +6 -0
- package/es/plus/skuOptionsSelection/components/NormalCard/index.js +3 -4
- package/es/plus/skuOptionsSelection/components/OptionsCard/index.less +2 -0
- package/es/plus/skuOptionsSelection/index.js +2 -2
- package/es/plus/skuOptionsSelection/utils/transformSelectorValueToValue.js +9 -2
- package/es/plus/skuOptionsSelection/utils/transformValueToSelectorValue.js +8 -4
- package/es/plus/walletPassGallery/components/passDetail/index.d.ts +2 -0
- package/es/plus/walletPassGallery/components/passDetail/index.js +104 -39
- package/es/plus/walletPassGallery/components/timelineSection/index.d.ts +2 -0
- package/es/plus/walletPassGallery/components/timelineSection/index.js +19 -2
- package/es/plus/walletPassGallery/index.d.ts +4 -0
- package/es/plus/walletPassGallery/index.js +121 -42
- package/es/plus/walletPassGallery/serve.d.ts +3 -1
- package/es/plus/walletPassGallery/serve.js +13 -13
- package/es/pro/NumericStepper/index.d.ts +28 -3
- package/es/pro/NumericStepper/index.js +175 -107
- package/es/pro/NumericStepper/index.less +295 -143
- package/es/pro/Selector/Selector.js +33 -26
- package/es/pro/Selector/components/Card/index.js +2 -3
- package/es/pro/Selector/components/Card/index.less +11 -4
- package/es/pro/Selector/components/Indicator/index.d.ts +1 -0
- package/es/pro/Selector/components/Indicator/index.js +2 -1
- package/es/pro/Selector/components/Indicator/index.less +4 -1
- package/es/pro/Selector/components/LayoutContainer/index.d.ts +5 -3
- package/es/pro/Selector/components/LayoutContainer/index.js +226 -9
- package/es/pro/Selector/components/LayoutContainer/index.less +19 -0
- package/es/pro/Selector/demo.js +1 -1
- package/es/pro/Selector/hooks/usePresetItemProps.js +2 -0
- package/es/pro/Selector/hooks/usePresetProps.js +60 -6
- package/es/pro/Selector/selector.less +0 -64
- package/es/pro/Selector/types.d.ts +40 -0
- package/es/pro/comprehensiveSearch/components/deviceIconGroup/index.d.ts +11 -0
- package/es/pro/comprehensiveSearch/components/deviceIconGroup/index.js +54 -0
- package/es/pro/comprehensiveSearch/components/deviceIconGroup/index.less +28 -0
- package/es/pro/comprehensiveSearch/components/index.d.ts +2 -0
- package/es/pro/comprehensiveSearch/components/index.js +2 -0
- package/es/pro/comprehensiveSearch/components/searchSection/index.d.ts +24 -0
- package/es/pro/comprehensiveSearch/components/searchSection/index.js +140 -0
- package/es/pro/comprehensiveSearch/components/searchSection/index.less +100 -0
- package/es/pro/comprehensiveSearch/components/searchSection/locales.d.ts +15 -0
- package/es/pro/comprehensiveSearch/components/searchSection/locales.js +14 -0
- package/es/pro/comprehensiveSearch/hooks/useNativeScanner.d.ts +5 -0
- package/es/pro/comprehensiveSearch/hooks/useNativeScanner.js +24 -0
- package/es/pro/comprehensiveSearch/hooks/useTerminalPeripherals.d.ts +9 -0
- package/es/pro/comprehensiveSearch/hooks/useTerminalPeripherals.js +44 -0
- package/es/pro/comprehensiveSearch/index.d.ts +7 -0
- package/es/pro/comprehensiveSearch/index.js +207 -0
- package/es/pro/comprehensiveSearch/index.less +196 -0
- package/es/pro/comprehensiveSearch/locales.d.ts +15 -0
- package/es/pro/comprehensiveSearch/locales.js +14 -0
- package/es/pro/comprehensiveSearch/types.d.ts +32 -0
- package/es/pro/comprehensiveSearch/types.js +1 -0
- package/es/pro/keyboards/index.d.ts +2 -0
- package/es/pro/keyboards/index.js +1 -0
- package/es/pro/keyboards/locales.d.ts +24 -0
- package/es/pro/keyboards/locales.js +35 -0
- package/es/pro/keyboards/numberKeyboard/index.d.ts +16 -0
- package/es/pro/keyboards/numberKeyboard/index.js +523 -0
- package/es/pro/keyboards/numberKeyboard/index.less +59 -0
- package/es/pro/keyboards/numberKeyboard/types.d.ts +63 -0
- package/es/pro/keyboards/numberKeyboard/types.js +1 -0
- package/es/pro/pisellPhoneKeyboard/index.d.ts +13 -0
- package/es/pro/pisellPhoneKeyboard/index.js +210 -0
- package/es/pro/pisellPhoneKeyboard/index.less +157 -0
- package/es/pro/pisellPhoneKeyboard/locales.d.ts +12 -0
- package/es/pro/pisellPhoneKeyboard/locales.js +11 -0
- package/lib/components/booking/info/clientVariant/hooks/useIsLowSpeedNetwork.d.ts +1 -0
- package/lib/components/ecocup/components/AddCustomerModal/index.d.ts +10 -0
- package/lib/components/ecocup/components/AddCustomerModal/index.js +212 -0
- package/lib/components/ecocup/components/AddCustomerModal/index.less +9 -0
- package/lib/components/ecocup/components/CupActionList/index.d.ts +14 -0
- package/lib/components/ecocup/components/CupActionList/index.js +116 -0
- package/lib/components/ecocup/components/CupActionList/index.less +102 -0
- package/lib/components/ecocup/components/CupActionModal/hooks.d.ts +5 -0
- package/lib/components/ecocup/components/CupActionModal/hooks.js +55 -0
- package/lib/components/ecocup/components/CupActionModal/index.d.ts +15 -0
- package/lib/components/ecocup/components/CupActionModal/index.js +125 -0
- package/lib/components/ecocup/components/CupActionModal/index.less +38 -0
- package/lib/components/ecocup/components/CupInfoCard/index.d.ts +8 -0
- package/lib/components/ecocup/components/CupInfoCard/index.js +43 -0
- package/lib/components/ecocup/components/CupInfoCard/index.less +11 -0
- package/lib/components/ecocup/components/CupStatusModal/hooks.d.ts +5 -0
- package/lib/components/ecocup/components/CupStatusModal/hooks.js +55 -0
- package/lib/components/ecocup/components/CupStatusModal/index.d.ts +14 -0
- package/lib/components/ecocup/components/CupStatusModal/index.js +140 -0
- package/lib/components/ecocup/components/CupStatusModal/index.less +35 -0
- package/lib/components/ecocup/components/CustomerAndCupModal/hooks.d.ts +14 -0
- package/lib/components/ecocup/components/CustomerAndCupModal/hooks.js +89 -0
- package/lib/components/ecocup/components/CustomerAndCupModal/index.d.ts +20 -0
- package/lib/components/ecocup/components/CustomerAndCupModal/index.js +178 -0
- package/lib/components/ecocup/components/CustomerAndCupModal/index.less +68 -0
- package/lib/components/ecocup/components/CustomerCard/index.d.ts +7 -0
- package/lib/components/ecocup/components/CustomerCard/index.js +48 -0
- package/lib/components/ecocup/components/CustomerCard/index.less +50 -0
- package/lib/components/ecocup/components/MoreDropdown/index.d.ts +9 -0
- package/lib/components/ecocup/components/MoreDropdown/index.js +68 -0
- package/lib/components/ecocup/components/PageHeader/index.d.ts +7 -0
- package/lib/components/ecocup/components/PageHeader/index.js +59 -0
- package/lib/components/ecocup/components/PageHeader/index.less +19 -0
- package/lib/components/ecocup/components/SearchBar/const.d.ts +4 -0
- package/lib/components/{eftposPay/mx51/types.js → ecocup/components/SearchBar/const.js} +28 -17
- package/lib/components/ecocup/components/SearchBar/hooks.d.ts +44 -0
- package/lib/components/ecocup/components/SearchBar/hooks.js +135 -0
- package/lib/components/ecocup/components/SearchBar/index.d.ts +13 -0
- package/lib/components/ecocup/components/SearchBar/index.js +213 -0
- package/lib/components/ecocup/components/SearchBar/index.less +88 -0
- package/lib/components/ecocup/cupList/const.d.ts +133 -0
- package/lib/components/ecocup/cupList/const.js +326 -0
- package/lib/components/ecocup/cupList/hooks/index.d.ts +4 -0
- package/lib/components/ecocup/cupList/hooks/index.js +39 -0
- package/lib/components/ecocup/cupList/hooks/useColumns.d.ts +44 -0
- package/lib/components/ecocup/cupList/hooks/useColumns.js +202 -0
- package/lib/components/ecocup/cupList/hooks/useCupApi.d.ts +32 -0
- package/lib/components/ecocup/cupList/hooks/useCupApi.js +112 -0
- package/lib/components/ecocup/cupList/hooks/useSummary.d.ts +3 -0
- package/lib/components/ecocup/cupList/hooks/useSummary.js +75 -0
- package/lib/components/ecocup/cupList/index.d.ts +7 -0
- package/lib/components/ecocup/cupList/index.js +208 -0
- package/lib/components/ecocup/cupList/index.less +113 -0
- package/lib/components/ecocup/cupProject/const.d.ts +7 -0
- package/lib/components/ecocup/cupProject/const.js +58 -0
- package/lib/components/ecocup/cupProject/index.d.ts +3 -0
- package/lib/components/ecocup/cupProject/index.js +126 -0
- package/lib/components/ecocup/cupProject/index.less +41 -0
- package/lib/components/ecocup/customerList/const.d.ts +44 -0
- package/lib/components/ecocup/customerList/const.js +93 -0
- package/lib/components/ecocup/customerList/hooks/index.d.ts +3 -0
- package/lib/components/ecocup/customerList/hooks/index.js +32 -0
- package/lib/components/ecocup/customerList/hooks/useColumns.d.ts +15 -0
- package/lib/components/ecocup/customerList/hooks/useColumns.js +89 -0
- package/lib/components/ecocup/customerList/hooks/useCustomerApi.d.ts +15 -0
- package/lib/components/ecocup/customerList/hooks/useCustomerApi.js +56 -0
- package/lib/components/ecocup/customerList/index.d.ts +7 -0
- package/lib/components/ecocup/customerList/index.js +138 -0
- package/lib/components/ecocup/customerList/index.less +15 -0
- package/lib/components/ecocup/hooks.d.ts +49 -0
- package/lib/components/ecocup/hooks.js +155 -0
- package/lib/components/ecocup/locales.d.ts +339 -0
- package/lib/components/ecocup/locales.js +389 -0
- package/lib/components/ecocup/types.d.ts +103 -0
- package/lib/components/ecocup/types.js +57 -0
- package/lib/components/ecocup/utils/scanListener.d.ts +20 -0
- package/lib/components/ecocup/utils/scanListener.js +90 -0
- package/lib/components/eftpos/const.d.ts +1 -3
- package/lib/components/eftpos/const.js +0 -2
- package/lib/components/eftpos/device.d.ts +1 -3
- package/lib/components/eftpos/device.js +3 -3
- package/lib/components/eftpos/hooks.d.ts +1 -7
- package/lib/components/eftpos/hooks.js +0 -19
- package/lib/components/eftpos/index.js +8 -75
- package/lib/components/eftpos/index.less +1 -26
- package/lib/components/eftpos/locales.d.ts +0 -24
- package/lib/components/eftpos/locales.js +4 -88
- package/lib/components/eftposPay/app.d.ts +1 -1
- package/lib/components/eftposPay/const.d.ts +1 -6
- package/lib/components/eftposPay/const.js +0 -2
- package/lib/components/eftposPay/device.js +108 -23
- package/lib/components/eftposPay/hooks.d.ts +1 -2
- package/lib/components/eftposPay/hooks.js +0 -16
- package/lib/components/eftposPay/linkly/index.js +0 -1
- package/lib/components/eftposPay/manufacturer.d.ts +0 -1
- package/lib/components/eftposPay/manufacturer.js +0 -6
- package/lib/components/eftposPay/pay.js +2 -4
- package/lib/components/eftposPay/store/index.d.ts +1 -1
- package/lib/components/eftposPay/tyro/hooks.d.ts +1 -0
- package/lib/components/eftposPay/windcave/windcave.js +9 -9
- package/lib/components/eventBooking/components/ErrorTip/index.d.ts +1 -0
- package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.d.ts +1 -0
- package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.d.ts +1 -0
- package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.d.ts +1 -0
- package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.d.ts +1 -0
- package/lib/components/pay/toC/PaymentMethods/MWCreditCard/tds2.js +1 -1
- package/lib/components/pay/toC/PaymentMethods/StripePay/Stripe/StripeSDK/index.d.ts +1 -0
- package/lib/hooks/useEngineContext.d.ts +1 -0
- package/lib/hooks/useEngineContext.js +10 -2
- package/lib/hooks/useTranslationOriginal.d.ts +1 -0
- package/lib/hooks/useTranslationOriginal.js +42 -0
- package/lib/index.d.ts +12 -1
- package/lib/index.js +31 -1
- package/lib/plus/clientCard/index.d.ts +7 -0
- package/lib/plus/clientCard/index.js +457 -0
- package/lib/plus/clientCard/index.less +515 -0
- package/lib/plus/clientCard/line/index.d.ts +9 -0
- package/lib/plus/clientCard/line/index.js +153 -0
- package/lib/plus/clientCard/line/index.less +142 -0
- package/lib/plus/clientCard/locales.d.ts +18 -0
- package/lib/plus/clientCard/locales.js +41 -0
- package/lib/plus/clientCard/types.d.ts +135 -0
- package/lib/plus/clientCard/types.js +17 -0
- package/lib/plus/clientCard/utils.d.ts +8 -0
- package/lib/plus/clientCard/utils.js +75 -0
- package/lib/plus/clinetSearch/Add/BirthdayField/index.d.ts +3 -0
- package/lib/plus/clinetSearch/Add/BirthdayField/index.js +256 -0
- package/lib/plus/clinetSearch/Add/GenderField/index.d.ts +3 -0
- package/lib/plus/clinetSearch/Add/GenderField/index.js +52 -0
- package/lib/plus/clinetSearch/Add/PhoneField/index.d.ts +3 -0
- package/lib/plus/clinetSearch/Add/PhoneField/index.js +78 -0
- package/lib/plus/clinetSearch/Add/PhoneField/serve.d.ts +2 -0
- package/lib/plus/clinetSearch/Add/PhoneField/serve.js +193 -0
- package/lib/plus/clinetSearch/Add/index.d.ts +18 -0
- package/lib/plus/clinetSearch/Add/index.js +244 -0
- package/lib/plus/clinetSearch/Add/index.less +30 -0
- package/lib/plus/clinetSearch/InfiniteScroll/InfiniteScroll.d.ts +5 -0
- package/lib/plus/clinetSearch/InfiniteScroll/InfiniteScroll.js +235 -0
- package/lib/plus/clinetSearch/InfiniteScroll/index.d.ts +2 -0
- package/lib/plus/clinetSearch/InfiniteScroll/index.js +35 -0
- package/lib/plus/clinetSearch/InfiniteScroll/types.d.ts +46 -0
- package/lib/plus/clinetSearch/InfiniteScroll/types.js +17 -0
- package/lib/plus/clinetSearch/index.d.ts +18 -0
- package/lib/plus/clinetSearch/index.js +237 -0
- package/lib/plus/clinetSearch/index.less +95 -0
- package/lib/plus/clinetSearch/locales.d.ts +108 -0
- package/lib/plus/clinetSearch/locales.js +131 -0
- package/lib/plus/clinetSearch/serve.d.ts +1 -0
- package/lib/{components/eftposPay/aggregatePayment/index.js → plus/clinetSearch/serve.js} +11 -10
- package/lib/plus/clinetSearch/types.d.ts +70 -0
- package/lib/plus/clinetSearch/types.js +17 -0
- package/lib/plus/orderList/components/BatchActionBar.d.ts +9 -0
- package/lib/plus/orderList/components/BatchActionBar.js +567 -0
- package/lib/plus/orderList/components/FilterList.d.ts +8 -0
- package/lib/plus/orderList/components/FilterList.js +121 -0
- package/lib/plus/orderList/components/HandleActions.d.ts +5 -0
- package/lib/plus/orderList/components/HandleActions.js +52 -0
- package/lib/plus/orderList/components/QuickFilter.d.ts +5 -0
- package/lib/plus/orderList/components/QuickFilter.js +43 -0
- package/lib/plus/orderList/components/Reset.d.ts +7 -0
- package/lib/plus/orderList/components/Reset.js +58 -0
- package/lib/plus/orderList/components/Toolbar.d.ts +6 -0
- package/lib/plus/orderList/components/Toolbar.js +68 -0
- package/lib/plus/orderList/config.d.ts +155 -0
- package/lib/plus/orderList/config.js +764 -0
- package/lib/plus/orderList/index.d.ts +9 -0
- package/lib/plus/orderList/index.js +132 -0
- package/lib/plus/orderList/index.less +125 -0
- package/lib/plus/orderList/locales.d.ts +372 -0
- package/lib/plus/orderList/locales.js +471 -0
- package/lib/plus/orderList/serve.d.ts +42 -0
- package/lib/plus/orderList/serve.js +177 -0
- package/lib/plus/saasAttendance/index.d.ts +6 -0
- package/lib/plus/saasAttendance/index.js +39 -0
- package/lib/plus/saasAttendance/locales.d.ts +318 -0
- package/lib/plus/saasAttendance/locales.js +342 -0
- package/lib/plus/saasAttendance/settings/BasicInfoTab.d.ts +5 -0
- package/lib/plus/saasAttendance/settings/BasicInfoTab.js +152 -0
- package/lib/plus/saasAttendance/settings/ClockInMethodTab.d.ts +8 -0
- package/lib/plus/saasAttendance/settings/ClockInMethodTab.js +88 -0
- package/lib/plus/saasAttendance/settings/CorrectionPolicyTab.d.ts +8 -0
- package/lib/plus/saasAttendance/settings/CorrectionPolicyTab.js +369 -0
- package/lib/plus/saasAttendance/settings/ShiftScheduleTab.d.ts +5 -0
- package/lib/plus/saasAttendance/settings/ShiftScheduleTab.js +106 -0
- package/lib/plus/saasAttendance/settings/components/MapField.d.ts +78 -0
- package/lib/plus/saasAttendance/settings/components/MapField.js +631 -0
- package/lib/plus/saasAttendance/settings/components/index.d.ts +3 -0
- package/lib/plus/saasAttendance/settings/components/index.js +42 -0
- package/lib/plus/saasAttendance/settings/components/membersField/index.d.ts +8 -0
- package/lib/plus/saasAttendance/settings/components/membersField/index.js +247 -0
- package/lib/plus/saasAttendance/settings/components/membersField/index.less +70 -0
- package/lib/plus/saasAttendance/settings/components/shiftModal/index.d.ts +18 -0
- package/lib/plus/saasAttendance/settings/components/shiftModal/index.js +447 -0
- package/lib/plus/saasAttendance/settings/index.d.ts +18 -0
- package/lib/plus/saasAttendance/settings/index.js +283 -0
- package/lib/plus/saasAttendance/settings/index.less +495 -0
- package/lib/plus/saasAttendance/settings/serve.d.ts +27 -0
- package/lib/plus/saasAttendance/settings/serve.js +54 -0
- package/lib/plus/saasAttendance/settings/types.d.ts +128 -0
- package/lib/plus/saasAttendance/settings/types.js +17 -0
- package/lib/plus/saasRole/components/PermissionManager/index.d.ts +19 -0
- package/lib/plus/saasRole/components/PermissionManager/index.js +159 -0
- package/lib/plus/saasRole/components/PermissionManager/index.less +71 -0
- package/lib/plus/saasRole/index.d.ts +14 -0
- package/lib/plus/saasRole/index.js +780 -0
- package/lib/plus/saasRole/index.less +196 -0
- package/lib/plus/saasRole/locales.d.ts +193 -0
- package/lib/plus/saasRole/locales.js +219 -0
- package/lib/plus/saasRole/serve.d.ts +72 -0
- package/lib/plus/saasRole/serve.js +100 -0
- package/lib/plus/saasRole/types.d.ts +175 -0
- package/lib/plus/saasRole/types.js +17 -0
- package/lib/plus/saasRole/utils.d.ts +0 -0
- package/lib/plus/saasRole/utils.js +0 -0
- package/lib/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.d.ts +31 -0
- package/lib/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.js +393 -0
- package/lib/plus/saasTeamMembers/components/MemberDrawer/index.d.ts +23 -0
- package/lib/plus/saasTeamMembers/components/MemberDrawer/index.js +672 -0
- package/lib/plus/saasTeamMembers/components/MemberDrawer/index.less +178 -0
- package/lib/plus/saasTeamMembers/index.d.ts +5 -0
- package/lib/plus/saasTeamMembers/index.js +448 -0
- package/lib/plus/saasTeamMembers/index.less +87 -0
- package/lib/plus/saasTeamMembers/locales.d.ts +330 -0
- package/lib/plus/saasTeamMembers/locales.js +401 -0
- package/lib/plus/saasTeamMembers/serve.d.ts +95 -0
- package/lib/plus/saasTeamMembers/serve.js +132 -0
- package/lib/plus/saasTeamMembers/type.d.ts +156 -0
- package/lib/plus/saasTeamMembers/type.js +17 -0
- package/lib/plus/selectHolder/components/ErrorTip/index.d.ts +1 -0
- package/lib/plus/selectHolder/locales.d.ts +6 -0
- package/lib/plus/selectHolder/locales.js +6 -0
- package/lib/plus/skuOptionsSelection/components/NormalCard/index.js +3 -4
- package/lib/plus/skuOptionsSelection/components/OptionsCard/index.less +2 -0
- package/lib/plus/skuOptionsSelection/index.js +2 -2
- package/lib/plus/skuOptionsSelection/utils/transformSelectorValueToValue.js +9 -2
- package/lib/plus/skuOptionsSelection/utils/transformValueToSelectorValue.js +7 -3
- package/lib/plus/walletPassGallery/components/passDetail/index.d.ts +2 -0
- package/lib/plus/walletPassGallery/components/passDetail/index.js +57 -5
- package/lib/plus/walletPassGallery/components/timelineSection/index.d.ts +2 -0
- package/lib/plus/walletPassGallery/components/timelineSection/index.js +17 -2
- package/lib/plus/walletPassGallery/index.d.ts +4 -0
- package/lib/plus/walletPassGallery/index.js +141 -42
- package/lib/plus/walletPassGallery/serve.d.ts +3 -1
- package/lib/plus/walletPassGallery/serve.js +2 -2
- package/lib/pro/NumericStepper/index.d.ts +28 -3
- package/lib/pro/NumericStepper/index.js +176 -88
- package/lib/pro/NumericStepper/index.less +295 -143
- package/lib/pro/Selector/Selector.js +27 -16
- package/lib/pro/Selector/components/Card/index.js +9 -1
- package/lib/pro/Selector/components/Card/index.less +11 -4
- package/lib/pro/Selector/components/Indicator/index.d.ts +1 -0
- package/lib/pro/Selector/components/Indicator/index.js +1 -1
- package/lib/pro/Selector/components/Indicator/index.less +4 -1
- package/lib/pro/Selector/components/LayoutContainer/index.d.ts +5 -3
- package/lib/pro/Selector/components/LayoutContainer/index.js +130 -2
- package/lib/pro/Selector/components/LayoutContainer/index.less +19 -0
- package/lib/pro/Selector/demo.js +1 -1
- package/lib/pro/Selector/hooks/usePresetItemProps.js +2 -0
- package/lib/pro/Selector/hooks/usePresetProps.js +28 -6
- package/lib/pro/Selector/selector.less +0 -64
- package/lib/pro/Selector/types.d.ts +40 -0
- package/lib/pro/comprehensiveSearch/components/deviceIconGroup/index.d.ts +11 -0
- package/lib/pro/comprehensiveSearch/components/deviceIconGroup/index.js +64 -0
- package/lib/pro/comprehensiveSearch/components/deviceIconGroup/index.less +28 -0
- package/lib/pro/comprehensiveSearch/components/index.d.ts +2 -0
- package/lib/pro/comprehensiveSearch/components/index.js +42 -0
- package/lib/pro/comprehensiveSearch/components/searchSection/index.d.ts +24 -0
- package/lib/pro/comprehensiveSearch/components/searchSection/index.js +153 -0
- package/lib/pro/comprehensiveSearch/components/searchSection/index.less +100 -0
- package/lib/pro/comprehensiveSearch/components/searchSection/locales.d.ts +15 -0
- package/lib/pro/comprehensiveSearch/components/searchSection/locales.js +38 -0
- package/lib/pro/comprehensiveSearch/hooks/useNativeScanner.d.ts +5 -0
- package/lib/pro/comprehensiveSearch/hooks/useNativeScanner.js +56 -0
- package/lib/pro/comprehensiveSearch/hooks/useTerminalPeripherals.d.ts +9 -0
- package/lib/pro/comprehensiveSearch/hooks/useTerminalPeripherals.js +70 -0
- package/lib/pro/comprehensiveSearch/index.d.ts +7 -0
- package/lib/pro/comprehensiveSearch/index.js +190 -0
- package/lib/pro/comprehensiveSearch/index.less +196 -0
- package/lib/pro/comprehensiveSearch/locales.d.ts +15 -0
- package/lib/pro/comprehensiveSearch/locales.js +38 -0
- package/lib/pro/comprehensiveSearch/types.d.ts +32 -0
- package/lib/pro/comprehensiveSearch/types.js +17 -0
- package/lib/pro/keyboards/index.d.ts +2 -0
- package/lib/pro/keyboards/index.js +39 -0
- package/lib/pro/keyboards/locales.d.ts +24 -0
- package/lib/pro/keyboards/locales.js +47 -0
- package/lib/pro/keyboards/numberKeyboard/index.d.ts +16 -0
- package/lib/pro/keyboards/numberKeyboard/index.js +400 -0
- package/lib/pro/keyboards/numberKeyboard/index.less +59 -0
- package/lib/pro/keyboards/numberKeyboard/types.d.ts +63 -0
- package/lib/pro/keyboards/numberKeyboard/types.js +17 -0
- package/lib/pro/pisellPhoneKeyboard/index.d.ts +13 -0
- package/lib/pro/pisellPhoneKeyboard/index.js +219 -0
- package/lib/pro/pisellPhoneKeyboard/index.less +157 -0
- package/lib/pro/pisellPhoneKeyboard/locales.d.ts +12 -0
- package/lib/pro/pisellPhoneKeyboard/locales.js +35 -0
- package/lowcode/client-card/fragments/cardStyle.ts +63 -0
- package/lowcode/client-card/fragments/nameStyle.ts +34 -0
- package/lowcode/client-card/fragments/pisellAvatar.ts +87 -0
- package/lowcode/client-card/fragments/tagConfig.ts +88 -0
- package/lowcode/client-card/meta.ts +343 -0
- package/lowcode/client-search/meta.ts +316 -0
- package/lowcode/eco-cup-list/meta.ts +63 -0
- package/lowcode/eco-customer-list/meta.ts +63 -0
- package/lowcode/ecocup-cup-list/meta.ts +38 -0
- package/lowcode/ecocup-cup-project/meta.ts +35 -0
- package/lowcode/ecocup-customer-list/meta.ts +38 -0
- package/lowcode/order-list/meta.ts +87 -0
- package/lowcode/saas-attendance-settings/meta.ts +56 -0
- package/lowcode/saas-role/meta.ts +35 -0
- package/lowcode/saas-team-members/meta.ts +35 -0
- package/lowcode/wallet-pass-gallery/meta.ts +66 -1
- package/package.json +6 -6
- package/es/components/eftpos/PairModal/hooks.d.ts +0 -27
- package/es/components/eftpos/PairModal/hooks.js +0 -67
- package/es/components/eftpos/PairModal/index.d.ts +0 -11
- package/es/components/eftpos/PairModal/index.less +0 -70
- package/es/components/eftpos/assets/mx51SCI.svg +0 -15
- package/es/components/eftposPay/aggregatePayment/hooks/usePayment.d.ts +0 -6
- package/es/components/eftposPay/aggregatePayment/hooks/usePayment.js +0 -125
- package/es/components/eftposPay/aggregatePayment/index.d.ts +0 -3
- package/es/components/eftposPay/aggregatePayment/index.js +0 -3
- package/es/components/eftposPay/aggregatePayment/mock.d.ts +0 -495
- package/es/components/eftposPay/aggregatePayment/mock.js +0 -567
- package/es/components/eftposPay/aggregatePayment/service.d.ts +0 -24
- package/es/components/eftposPay/aggregatePayment/service.js +0 -70
- package/es/components/eftposPay/aggregatePayment/types.d.ts +0 -96
- package/es/components/eftposPay/aggregatePayment/types.js +0 -61
- package/es/components/eftposPay/aggregatePayment/utils/logs.d.ts +0 -110
- package/es/components/eftposPay/aggregatePayment/utils/logs.js +0 -385
- package/es/components/eftposPay/aggregatePayment/utils/payment.d.ts +0 -132
- package/es/components/eftposPay/aggregatePayment/utils/payment.js +0 -1127
- package/es/components/eftposPay/mx51/Action.d.ts +0 -7
- package/es/components/eftposPay/mx51/Action.js +0 -91
- package/es/components/eftposPay/mx51/const.d.ts +0 -5
- package/es/components/eftposPay/mx51/const.js +0 -69
- package/es/components/eftposPay/mx51/index.d.ts +0 -6
- package/es/components/eftposPay/mx51/index.js +0 -362
- package/es/components/eftposPay/mx51/types.d.ts +0 -136
- package/es/components/eftposPay/mx51/types.js +0 -29
- package/es/components/eftposPay/mx51/utils.d.ts +0 -10
- package/es/components/eftposPay/mx51/utils.js +0 -120
- package/lib/components/eftpos/PairModal/hooks.d.ts +0 -27
- package/lib/components/eftpos/PairModal/hooks.js +0 -70
- package/lib/components/eftpos/PairModal/index.d.ts +0 -11
- package/lib/components/eftpos/PairModal/index.js +0 -197
- package/lib/components/eftpos/PairModal/index.less +0 -70
- package/lib/components/eftpos/assets/mx51SCI.svg +0 -15
- package/lib/components/eftposPay/aggregatePayment/hooks/usePayment.d.ts +0 -6
- package/lib/components/eftposPay/aggregatePayment/hooks/usePayment.js +0 -152
- package/lib/components/eftposPay/aggregatePayment/index.d.ts +0 -3
- package/lib/components/eftposPay/aggregatePayment/mock.d.ts +0 -495
- package/lib/components/eftposPay/aggregatePayment/mock.js +0 -679
- package/lib/components/eftposPay/aggregatePayment/service.d.ts +0 -24
- package/lib/components/eftposPay/aggregatePayment/service.js +0 -81
- package/lib/components/eftposPay/aggregatePayment/types.d.ts +0 -96
- package/lib/components/eftposPay/aggregatePayment/types.js +0 -74
- package/lib/components/eftposPay/aggregatePayment/utils/logs.d.ts +0 -110
- package/lib/components/eftposPay/aggregatePayment/utils/logs.js +0 -302
- package/lib/components/eftposPay/aggregatePayment/utils/payment.d.ts +0 -132
- package/lib/components/eftposPay/aggregatePayment/utils/payment.js +0 -746
- package/lib/components/eftposPay/mx51/Action.d.ts +0 -7
- package/lib/components/eftposPay/mx51/Action.js +0 -127
- package/lib/components/eftposPay/mx51/const.d.ts +0 -5
- package/lib/components/eftposPay/mx51/const.js +0 -85
- package/lib/components/eftposPay/mx51/index.d.ts +0 -6
- package/lib/components/eftposPay/mx51/index.js +0 -330
- package/lib/components/eftposPay/mx51/types.d.ts +0 -136
- package/lib/components/eftposPay/mx51/utils.d.ts +0 -10
- package/lib/components/eftposPay/mx51/utils.js +0 -114
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SaasRole 角色管理组件样式
|
|
3
|
+
*/
|
|
4
|
+
.saas-role {
|
|
5
|
+
height: 100%;
|
|
6
|
+
width: 100%;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
|
|
9
|
+
&-layout {
|
|
10
|
+
height: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* 左侧角色列表区域
|
|
15
|
+
*/
|
|
16
|
+
&-sider {
|
|
17
|
+
background: transparent;
|
|
18
|
+
border-right: 1px solid #e8e8e8;
|
|
19
|
+
height: 100%;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
padding: 24px 16px;
|
|
22
|
+
|
|
23
|
+
> div {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
height: 100%;
|
|
27
|
+
gap: 16px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&-header {
|
|
32
|
+
display: flex;
|
|
33
|
+
justify-content: space-between;
|
|
34
|
+
align-items: center;
|
|
35
|
+
|
|
36
|
+
h3 {
|
|
37
|
+
margin: 0;
|
|
38
|
+
font-size: 16px;
|
|
39
|
+
font-weight: 600;
|
|
40
|
+
color: #262626;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ant-btn {
|
|
44
|
+
height: 32px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-list {
|
|
49
|
+
flex: 1;
|
|
50
|
+
overflow-y: auto;
|
|
51
|
+
|
|
52
|
+
&::-webkit-scrollbar {
|
|
53
|
+
width: 6px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&::-webkit-scrollbar-thumb {
|
|
57
|
+
background: #d9d9d9;
|
|
58
|
+
border-radius: 3px;
|
|
59
|
+
|
|
60
|
+
&:hover {
|
|
61
|
+
background: #bfbfbf;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* 角色卡片
|
|
68
|
+
*/
|
|
69
|
+
&-card {
|
|
70
|
+
margin-bottom: 8px;
|
|
71
|
+
border-radius: 8px;
|
|
72
|
+
border: 1px solid #e8e8e8;
|
|
73
|
+
cursor: pointer;
|
|
74
|
+
transition: all 0.3s ease;
|
|
75
|
+
|
|
76
|
+
&:hover {
|
|
77
|
+
border-color: var(--theme-color, #7f56d9);
|
|
78
|
+
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&-selected {
|
|
82
|
+
background: var(--theme-color-light, #f5f3ff);
|
|
83
|
+
border-color: var(--theme-color, #7f56d9);
|
|
84
|
+
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.pisell-lowcode-card-body {
|
|
88
|
+
padding: 16px;
|
|
89
|
+
display: flex;
|
|
90
|
+
align-self: start;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
&-content {
|
|
94
|
+
user-select: none;
|
|
95
|
+
flex: 1;
|
|
96
|
+
overflow: hidden;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&-title {
|
|
100
|
+
margin: 0 0 4px 0;
|
|
101
|
+
font-size: 14px;
|
|
102
|
+
font-weight: 600;
|
|
103
|
+
color: #262626;
|
|
104
|
+
overflow: hidden;
|
|
105
|
+
text-overflow: ellipsis;
|
|
106
|
+
white-space: nowrap;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&-count {
|
|
110
|
+
margin: 0;
|
|
111
|
+
font-size: 12px;
|
|
112
|
+
color: #8c8c8c;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* 右侧内容区域
|
|
118
|
+
*/
|
|
119
|
+
&-content {
|
|
120
|
+
background: transparent;
|
|
121
|
+
padding: 24px;
|
|
122
|
+
height: 100%;
|
|
123
|
+
overflow: auto;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&-empty {
|
|
127
|
+
background: #fff;
|
|
128
|
+
border-radius: 4px;
|
|
129
|
+
display: flex;
|
|
130
|
+
align-items: center;
|
|
131
|
+
justify-content: center;
|
|
132
|
+
height: 100%;
|
|
133
|
+
padding: 24px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* 角色详情
|
|
138
|
+
*/
|
|
139
|
+
&-detail {
|
|
140
|
+
background: #fff;
|
|
141
|
+
border-radius: 4px;
|
|
142
|
+
display: flex;
|
|
143
|
+
flex-direction: column;
|
|
144
|
+
padding: 24px;
|
|
145
|
+
|
|
146
|
+
&-header {
|
|
147
|
+
margin-bottom: 16px;
|
|
148
|
+
padding-bottom: 16px;
|
|
149
|
+
border-bottom: 2px solid #e8e8e8;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&-title {
|
|
153
|
+
display: flex;
|
|
154
|
+
align-items: center;
|
|
155
|
+
gap: 8px;
|
|
156
|
+
margin-bottom: 8px;
|
|
157
|
+
|
|
158
|
+
h2 {
|
|
159
|
+
margin: 0;
|
|
160
|
+
font-size: 20px;
|
|
161
|
+
font-weight: 600;
|
|
162
|
+
color: #262626;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
&-description {
|
|
167
|
+
margin: 0;
|
|
168
|
+
font-size: 14px;
|
|
169
|
+
color: #8c8c8c;
|
|
170
|
+
line-height: 1.5;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.pisell-lowcode-tabs-nav {
|
|
174
|
+
&::before {
|
|
175
|
+
display: none;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* 成员列表
|
|
182
|
+
*/
|
|
183
|
+
&-members {
|
|
184
|
+
height: 100%;
|
|
185
|
+
display: flex;
|
|
186
|
+
flex-direction: column;
|
|
187
|
+
|
|
188
|
+
&-header {
|
|
189
|
+
display: flex;
|
|
190
|
+
justify-content: space-between;
|
|
191
|
+
align-items: center;
|
|
192
|
+
margin-bottom: 16px;
|
|
193
|
+
gap: 16px;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SaasRole 组件国际化配置
|
|
3
|
+
*/
|
|
4
|
+
export declare const locales: {
|
|
5
|
+
en: {
|
|
6
|
+
'pisell2.saas.role.title': string;
|
|
7
|
+
'pisell2.saas.role.create': string;
|
|
8
|
+
'pisell2.saas.role.create-role': string;
|
|
9
|
+
'pisell2.saas.role.edit': string;
|
|
10
|
+
'pisell2.saas.role.edit-role': string;
|
|
11
|
+
'pisell2.saas.role.delete': string;
|
|
12
|
+
'pisell2.saas.role.delete-role': string;
|
|
13
|
+
'pisell2.saas.role.role-has-members': string;
|
|
14
|
+
'pisell2.saas.role.at-least-one-role': string;
|
|
15
|
+
'pisell2.saas.role.name': string;
|
|
16
|
+
'pisell2.saas.role.code': string;
|
|
17
|
+
'pisell2.saas.role.description': string;
|
|
18
|
+
'pisell2.saas.role.extension-table': string;
|
|
19
|
+
'pisell2.saas.role.members': string;
|
|
20
|
+
'pisell2.saas.role.permissions': string;
|
|
21
|
+
'pisell2.saas.role.fields': string;
|
|
22
|
+
'pisell2.saas.role.member-count': string;
|
|
23
|
+
'pisell2.saas.role.add-member': string;
|
|
24
|
+
'pisell2.saas.role.remove-member': string;
|
|
25
|
+
'pisell2.saas.role.confirm-remove': string;
|
|
26
|
+
'pisell2.saas.role.confirm-remove-member': string;
|
|
27
|
+
'pisell2.saas.role.confirm-delete-role': string;
|
|
28
|
+
'pisell2.saas.role.member-name': string;
|
|
29
|
+
'pisell2.saas.role.member-id': string;
|
|
30
|
+
'pisell2.saas.role.member-email': string;
|
|
31
|
+
'pisell2.saas.role.member-mobile': string;
|
|
32
|
+
'pisell2.saas.role.member-current-roles': string;
|
|
33
|
+
'pisell2.saas.role.actions': string;
|
|
34
|
+
'pisell2.saas.role.search': string;
|
|
35
|
+
'pisell2.saas.role.save': string;
|
|
36
|
+
'pisell2.saas.role.cancel': string;
|
|
37
|
+
'pisell2.saas.role.confirm': string;
|
|
38
|
+
'pisell2.saas.role.submit': string;
|
|
39
|
+
'pisell2.saas.role.add': string;
|
|
40
|
+
'pisell2.saas.role.enter-role-name': string;
|
|
41
|
+
'pisell2.saas.role.enter-role-code': string;
|
|
42
|
+
'pisell2.saas.role.enter-role-description': string;
|
|
43
|
+
'pisell2.saas.role.select-extension-table': string;
|
|
44
|
+
'pisell2.saas.role.role-core-format-error': string;
|
|
45
|
+
'pisell2.saas.role.role-code-format': string;
|
|
46
|
+
'pisell2.saas.role.add-members-to-role': string;
|
|
47
|
+
'pisell2.saas.role.select-members': string;
|
|
48
|
+
'pisell2.saas.role.create-success': string;
|
|
49
|
+
'pisell2.saas.role.update-success': string;
|
|
50
|
+
'pisell2.saas.role.delete-success': string;
|
|
51
|
+
'pisell2.saas.role.no-role-selected': string;
|
|
52
|
+
'pisell2.saas.role.no-permissions': string;
|
|
53
|
+
'pisell2.saas.role.members-text': string;
|
|
54
|
+
'pisell2.saas.role.no-members-in-role': string;
|
|
55
|
+
'pisell2.saas.role.select': string;
|
|
56
|
+
'pisell2.saas.role.all-members-in-role': string;
|
|
57
|
+
'pisell2.saas.role.channels': string;
|
|
58
|
+
'pisell2.saas.role.control-access-channels': string;
|
|
59
|
+
'pisell2.saas.role.page-types': string;
|
|
60
|
+
'pisell2.saas.role.control-access-page-types': string;
|
|
61
|
+
'pisell2.saas.role.apps': string;
|
|
62
|
+
'pisell2.saas.role.control-access-apps': string;
|
|
63
|
+
'pisell2.saas.role.system-management': string;
|
|
64
|
+
'pisell2.saas.role.control-system-operations': string;
|
|
65
|
+
'pisell2.saas.role.clear-all': string;
|
|
66
|
+
'pisell2.saas.role.select-all': string;
|
|
67
|
+
};
|
|
68
|
+
'zh-CN': {
|
|
69
|
+
'pisell2.saas.role.title': string;
|
|
70
|
+
'pisell2.saas.role.create': string;
|
|
71
|
+
'pisell2.saas.role.create-role': string;
|
|
72
|
+
'pisell2.saas.role.edit': string;
|
|
73
|
+
'pisell2.saas.role.edit-role': string;
|
|
74
|
+
'pisell2.saas.role.delete': string;
|
|
75
|
+
'pisell2.saas.role.delete-role': string;
|
|
76
|
+
'pisell2.saas.role.role-has-members': string;
|
|
77
|
+
'pisell2.saas.role.at-least-one-role': string;
|
|
78
|
+
'pisell2.saas.role.name': string;
|
|
79
|
+
'pisell2.saas.role.code': string;
|
|
80
|
+
'pisell2.saas.role.description': string;
|
|
81
|
+
'pisell2.saas.role.extension-table': string;
|
|
82
|
+
'pisell2.saas.role.members': string;
|
|
83
|
+
'pisell2.saas.role.permissions': string;
|
|
84
|
+
'pisell2.saas.role.fields': string;
|
|
85
|
+
'pisell2.saas.role.member-count': string;
|
|
86
|
+
'pisell2.saas.role.add-member': string;
|
|
87
|
+
'pisell2.saas.role.remove-member': string;
|
|
88
|
+
'pisell2.saas.role.confirm-remove': string;
|
|
89
|
+
'pisell2.saas.role.confirm-remove-member': string;
|
|
90
|
+
'pisell2.saas.role.confirm-delete-role': string;
|
|
91
|
+
'pisell2.saas.role.member-name': string;
|
|
92
|
+
'pisell2.saas.role.member-id': string;
|
|
93
|
+
'pisell2.saas.role.member-email': string;
|
|
94
|
+
'pisell2.saas.role.member-mobile': string;
|
|
95
|
+
'pisell2.saas.role.member-current-roles': string;
|
|
96
|
+
'pisell2.saas.role.actions': string;
|
|
97
|
+
'pisell2.saas.role.search': string;
|
|
98
|
+
'pisell2.saas.role.save': string;
|
|
99
|
+
'pisell2.saas.role.cancel': string;
|
|
100
|
+
'pisell2.saas.role.confirm': string;
|
|
101
|
+
'pisell2.saas.role.submit': string;
|
|
102
|
+
'pisell2.saas.role.add': string;
|
|
103
|
+
'pisell2.saas.role.enter-role-name': string;
|
|
104
|
+
'pisell2.saas.role.enter-role-code': string;
|
|
105
|
+
'pisell2.saas.role.enter-role-description': string;
|
|
106
|
+
'pisell2.saas.role.select-extension-table': string;
|
|
107
|
+
'pisell2.saas.role.role-code-format': string;
|
|
108
|
+
'pisell2.saas.role.add-members-to-role': string;
|
|
109
|
+
'pisell2.saas.role.select-members': string;
|
|
110
|
+
'pisell2.saas.role.create-success': string;
|
|
111
|
+
'pisell2.saas.role.update-success': string;
|
|
112
|
+
'pisell2.saas.role.delete-success': string;
|
|
113
|
+
'pisell2.saas.role.no-role-selected': string;
|
|
114
|
+
'pisell2.saas.role.no-permissions': string;
|
|
115
|
+
'pisell2.saas.role.members-text': string;
|
|
116
|
+
'pisell2.saas.role.no-members-in-role': string;
|
|
117
|
+
'pisell2.saas.role.select': string;
|
|
118
|
+
'pisell2.saas.role.all-members-in-role': string;
|
|
119
|
+
'pisell2.saas.role.channels': string;
|
|
120
|
+
'pisell2.saas.role.control-access-channels': string;
|
|
121
|
+
'pisell2.saas.role.page-types': string;
|
|
122
|
+
'pisell2.saas.role.control-access-page-types': string;
|
|
123
|
+
'pisell2.saas.role.apps': string;
|
|
124
|
+
'pisell2.saas.role.control-access-apps': string;
|
|
125
|
+
'pisell2.saas.role.system-management': string;
|
|
126
|
+
'pisell2.saas.role.control-system-operations': string;
|
|
127
|
+
'pisell2.saas.role.clear-all': string;
|
|
128
|
+
'pisell2.saas.role.select-all': string;
|
|
129
|
+
};
|
|
130
|
+
'zh-HK': {
|
|
131
|
+
'pisell2.saas.role.title': string;
|
|
132
|
+
'pisell2.saas.role.create': string;
|
|
133
|
+
'pisell2.saas.role.create-role': string;
|
|
134
|
+
'pisell2.saas.role.edit': string;
|
|
135
|
+
'pisell2.saas.role.edit-role': string;
|
|
136
|
+
'pisell2.saas.role.delete': string;
|
|
137
|
+
'pisell2.saas.role.delete-role': string;
|
|
138
|
+
'pisell2.saas.role.role-has-members': string;
|
|
139
|
+
'pisell2.saas.role.at-least-one-role': string;
|
|
140
|
+
'pisell2.saas.role.name': string;
|
|
141
|
+
'pisell2.saas.role.code': string;
|
|
142
|
+
'pisell2.saas.role.description': string;
|
|
143
|
+
'pisell2.saas.role.extension-table': string;
|
|
144
|
+
'pisell2.saas.role.members': string;
|
|
145
|
+
'pisell2.saas.role.permissions': string;
|
|
146
|
+
'pisell2.saas.role.fields': string;
|
|
147
|
+
'pisell2.saas.role.member-count': string;
|
|
148
|
+
'pisell2.saas.role.add-member': string;
|
|
149
|
+
'pisell2.saas.role.remove-member': string;
|
|
150
|
+
'pisell2.saas.role.confirm-remove': string;
|
|
151
|
+
'pisell2.saas.role.confirm-remove-member': string;
|
|
152
|
+
'pisell2.saas.role.confirm-delete-role': string;
|
|
153
|
+
'pisell2.saas.role.member-name': string;
|
|
154
|
+
'pisell2.saas.role.member-id': string;
|
|
155
|
+
'pisell2.saas.role.member-email': string;
|
|
156
|
+
'pisell2.saas.role.member-mobile': string;
|
|
157
|
+
'pisell2.saas.role.member-current-roles': string;
|
|
158
|
+
'pisell2.saas.role.actions': string;
|
|
159
|
+
'pisell2.saas.role.search': string;
|
|
160
|
+
'pisell2.saas.role.save': string;
|
|
161
|
+
'pisell2.saas.role.cancel': string;
|
|
162
|
+
'pisell2.saas.role.confirm': string;
|
|
163
|
+
'pisell2.saas.role.submit': string;
|
|
164
|
+
'pisell2.saas.role.add': string;
|
|
165
|
+
'pisell2.saas.role.enter-role-name': string;
|
|
166
|
+
'pisell2.saas.role.enter-role-code': string;
|
|
167
|
+
'pisell2.saas.role.enter-role-description': string;
|
|
168
|
+
'pisell2.saas.role.select-extension-table': string;
|
|
169
|
+
'pisell2.saas.role.role-code-format': string;
|
|
170
|
+
'pisell2.saas.role.add-members-to-role': string;
|
|
171
|
+
'pisell2.saas.role.select-members': string;
|
|
172
|
+
'pisell2.saas.role.create-success': string;
|
|
173
|
+
'pisell2.saas.role.update-success': string;
|
|
174
|
+
'pisell2.saas.role.delete-success': string;
|
|
175
|
+
'pisell2.saas.role.no-role-selected': string;
|
|
176
|
+
'pisell2.saas.role.no-permissions': string;
|
|
177
|
+
'pisell2.saas.role.members-text': string;
|
|
178
|
+
'pisell2.saas.role.no-members-in-role': string;
|
|
179
|
+
'pisell2.saas.role.select': string;
|
|
180
|
+
'pisell2.saas.role.all-members-in-role': string;
|
|
181
|
+
'pisell2.saas.role.channels': string;
|
|
182
|
+
'pisell2.saas.role.control-access-channels': string;
|
|
183
|
+
'pisell2.saas.role.page-types': string;
|
|
184
|
+
'pisell2.saas.role.control-access-page-types': string;
|
|
185
|
+
'pisell2.saas.role.apps': string;
|
|
186
|
+
'pisell2.saas.role.control-access-apps': string;
|
|
187
|
+
'pisell2.saas.role.system-management': string;
|
|
188
|
+
'pisell2.saas.role.control-system-operations': string;
|
|
189
|
+
'pisell2.saas.role.clear-all': string;
|
|
190
|
+
'pisell2.saas.role.select-all': string;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
export default locales;
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/plus/saasRole/locales.ts
|
|
20
|
+
var locales_exports = {};
|
|
21
|
+
__export(locales_exports, {
|
|
22
|
+
default: () => locales_default,
|
|
23
|
+
locales: () => locales
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(locales_exports);
|
|
26
|
+
var locales = {
|
|
27
|
+
"en": {
|
|
28
|
+
"pisell2.saas.role.title": "Roles",
|
|
29
|
+
"pisell2.saas.role.create": "Create",
|
|
30
|
+
"pisell2.saas.role.create-role": "Create Role",
|
|
31
|
+
"pisell2.saas.role.edit": "Edit",
|
|
32
|
+
"pisell2.saas.role.edit-role": "Edit Role",
|
|
33
|
+
"pisell2.saas.role.delete": "Delete",
|
|
34
|
+
"pisell2.saas.role.delete-role": "Delete Role",
|
|
35
|
+
"pisell2.saas.role.role-has-members": "Cannot delete role with members. Please remove all members first.",
|
|
36
|
+
"pisell2.saas.role.at-least-one-role": "Cannot delete the only role. At least one role must remain in the organization.",
|
|
37
|
+
"pisell2.saas.role.name": "Name",
|
|
38
|
+
"pisell2.saas.role.code": "Code",
|
|
39
|
+
"pisell2.saas.role.description": "Description",
|
|
40
|
+
"pisell2.saas.role.extension-table": "Extension Table",
|
|
41
|
+
"pisell2.saas.role.members": "Members",
|
|
42
|
+
"pisell2.saas.role.permissions": "Permissions",
|
|
43
|
+
"pisell2.saas.role.fields": "Fields",
|
|
44
|
+
"pisell2.saas.role.member-count": "Member Count",
|
|
45
|
+
"pisell2.saas.role.add-member": "Add Member",
|
|
46
|
+
"pisell2.saas.role.remove-member": "Remove Member",
|
|
47
|
+
"pisell2.saas.role.confirm-remove": "Confirm Remove",
|
|
48
|
+
"pisell2.saas.role.confirm-remove-member": "Are you sure you want to remove {name} from the role?",
|
|
49
|
+
"pisell2.saas.role.confirm-delete-role": "Are you sure you want to delete role {name}?",
|
|
50
|
+
"pisell2.saas.role.member-name": "Name",
|
|
51
|
+
"pisell2.saas.role.member-id": "Member ID",
|
|
52
|
+
"pisell2.saas.role.member-email": "Email",
|
|
53
|
+
"pisell2.saas.role.member-mobile": "Mobile",
|
|
54
|
+
"pisell2.saas.role.member-current-roles": "Current Roles",
|
|
55
|
+
"pisell2.saas.role.actions": "Actions",
|
|
56
|
+
"pisell2.saas.role.search": "Search",
|
|
57
|
+
"pisell2.saas.role.save": "Save",
|
|
58
|
+
"pisell2.saas.role.cancel": "Cancel",
|
|
59
|
+
"pisell2.saas.role.confirm": "Confirm",
|
|
60
|
+
"pisell2.saas.role.submit": "Submit",
|
|
61
|
+
"pisell2.saas.role.add": "Add",
|
|
62
|
+
"pisell2.saas.role.enter-role-name": "Enter role name",
|
|
63
|
+
"pisell2.saas.role.enter-role-code": "Enter unique code (e.g., manager)",
|
|
64
|
+
"pisell2.saas.role.enter-role-description": "Optional description for this role",
|
|
65
|
+
"pisell2.saas.role.select-extension-table": "Select a table to extend fields for this role",
|
|
66
|
+
"pisell2.saas.role.role-core-format-error": "Code format error",
|
|
67
|
+
"pisell2.saas.role.role-code-format": "Only lowercase letters, numbers, hyphens, underscores and dots. Cannot be changed after creation.",
|
|
68
|
+
"pisell2.saas.role.add-members-to-role": "Add Members to Role",
|
|
69
|
+
"pisell2.saas.role.select-members": "Select Members",
|
|
70
|
+
"pisell2.saas.role.create-success": "Created successfully",
|
|
71
|
+
"pisell2.saas.role.update-success": "Updated successfully",
|
|
72
|
+
"pisell2.saas.role.delete-success": "Deleted successfully",
|
|
73
|
+
"pisell2.saas.role.no-role-selected": "Please select a role",
|
|
74
|
+
"pisell2.saas.role.no-permissions": "No permissions configured",
|
|
75
|
+
"pisell2.saas.role.members-text": " members",
|
|
76
|
+
"pisell2.saas.role.no-members-in-role": 'No members in this role yet. Click "Add Member" to get started.',
|
|
77
|
+
"pisell2.saas.role.select": "Select",
|
|
78
|
+
"pisell2.saas.role.all-members-in-role": "All members are already in this role.",
|
|
79
|
+
"pisell2.saas.role.channels": "Channels",
|
|
80
|
+
"pisell2.saas.role.control-access-channels": "Control access to different channels",
|
|
81
|
+
"pisell2.saas.role.page-types": "Page Types",
|
|
82
|
+
"pisell2.saas.role.control-access-page-types": "Control access to different types of pages",
|
|
83
|
+
"pisell2.saas.role.apps": "Apps",
|
|
84
|
+
"pisell2.saas.role.control-access-apps": "Control access to pages in apps",
|
|
85
|
+
"pisell2.saas.role.system-management": "System Management",
|
|
86
|
+
"pisell2.saas.role.control-system-operations": "Control access to system-level operations",
|
|
87
|
+
"pisell2.saas.role.clear-all": "Clear All",
|
|
88
|
+
"pisell2.saas.role.select-all": "Select All"
|
|
89
|
+
},
|
|
90
|
+
"zh-CN": {
|
|
91
|
+
"pisell2.saas.role.title": "角色",
|
|
92
|
+
"pisell2.saas.role.create": "创建",
|
|
93
|
+
"pisell2.saas.role.create-role": "创建角色",
|
|
94
|
+
"pisell2.saas.role.edit": "编辑",
|
|
95
|
+
"pisell2.saas.role.edit-role": "编辑角色",
|
|
96
|
+
"pisell2.saas.role.delete": "删除",
|
|
97
|
+
"pisell2.saas.role.delete-role": "删除角色",
|
|
98
|
+
"pisell2.saas.role.role-has-members": "该角色下还有成员,无法删除。请先移除所有成员。",
|
|
99
|
+
"pisell2.saas.role.at-least-one-role": "无法删除唯一的角色。组织中至少需要保留一个角色。",
|
|
100
|
+
"pisell2.saas.role.name": "角色名称",
|
|
101
|
+
"pisell2.saas.role.code": "角色标识符",
|
|
102
|
+
"pisell2.saas.role.description": "描述",
|
|
103
|
+
"pisell2.saas.role.extension-table": "扩展表",
|
|
104
|
+
"pisell2.saas.role.members": "成员",
|
|
105
|
+
"pisell2.saas.role.permissions": "权限",
|
|
106
|
+
"pisell2.saas.role.fields": "字段",
|
|
107
|
+
"pisell2.saas.role.member-count": "成员数量",
|
|
108
|
+
"pisell2.saas.role.add-member": "添加成员",
|
|
109
|
+
"pisell2.saas.role.remove-member": "移除成员",
|
|
110
|
+
"pisell2.saas.role.confirm-remove": "确认移除",
|
|
111
|
+
"pisell2.saas.role.confirm-remove-member": "确定要将此成员从该角色中移除吗?",
|
|
112
|
+
"pisell2.saas.role.confirm-delete-role": "确定要删除角色 {name} 吗?",
|
|
113
|
+
"pisell2.saas.role.member-name": "姓名",
|
|
114
|
+
"pisell2.saas.role.member-id": "成员ID",
|
|
115
|
+
"pisell2.saas.role.member-email": "邮箱",
|
|
116
|
+
"pisell2.saas.role.member-mobile": "手机号码",
|
|
117
|
+
"pisell2.saas.role.member-current-roles": "当前角色",
|
|
118
|
+
"pisell2.saas.role.actions": "操作",
|
|
119
|
+
"pisell2.saas.role.search": "搜索",
|
|
120
|
+
"pisell2.saas.role.save": "保存",
|
|
121
|
+
"pisell2.saas.role.cancel": "取消",
|
|
122
|
+
"pisell2.saas.role.confirm": "确定",
|
|
123
|
+
"pisell2.saas.role.submit": "提交",
|
|
124
|
+
"pisell2.saas.role.add": "添加",
|
|
125
|
+
"pisell2.saas.role.enter-role-name": "输入角色名称",
|
|
126
|
+
"pisell2.saas.role.enter-role-code": "输入唯一标识符(如:manager)",
|
|
127
|
+
"pisell2.saas.role.enter-role-description": "选填:描述该角色的职责和用途",
|
|
128
|
+
"pisell2.saas.role.select-extension-table": "选择一个表用于扩展该角色的字段",
|
|
129
|
+
"pisell2.saas.role.role-code-format": "仅支持小写字母、数字、连字符、下划线和英文点。创建后不可修改。",
|
|
130
|
+
"pisell2.saas.role.add-members-to-role": "添加成员到角色",
|
|
131
|
+
"pisell2.saas.role.select-members": "选择成员",
|
|
132
|
+
"pisell2.saas.role.create-success": "创建成功",
|
|
133
|
+
"pisell2.saas.role.update-success": "更新成功",
|
|
134
|
+
"pisell2.saas.role.delete-success": "删除成功",
|
|
135
|
+
"pisell2.saas.role.no-role-selected": "请选择一个角色",
|
|
136
|
+
"pisell2.saas.role.no-permissions": "暂无权限配置",
|
|
137
|
+
"pisell2.saas.role.members-text": "个成员",
|
|
138
|
+
"pisell2.saas.role.no-members-in-role": "该角色下暂无成员。点击「添加成员」开始添加。",
|
|
139
|
+
"pisell2.saas.role.select": "选择",
|
|
140
|
+
"pisell2.saas.role.all-members-in-role": "所有成员都已在该角色中。",
|
|
141
|
+
"pisell2.saas.role.channels": "渠道",
|
|
142
|
+
"pisell2.saas.role.control-access-channels": "控制访问不同渠道的权限",
|
|
143
|
+
"pisell2.saas.role.page-types": "页面类型",
|
|
144
|
+
"pisell2.saas.role.control-access-page-types": "控制访问不同类型页面的权限",
|
|
145
|
+
"pisell2.saas.role.apps": "应用",
|
|
146
|
+
"pisell2.saas.role.control-access-apps": "控制访问应用中页面的权限",
|
|
147
|
+
"pisell2.saas.role.system-management": "系统管理",
|
|
148
|
+
"pisell2.saas.role.control-system-operations": "控制访问系统级操作的权限",
|
|
149
|
+
"pisell2.saas.role.clear-all": "清除所有",
|
|
150
|
+
"pisell2.saas.role.select-all": "全选"
|
|
151
|
+
},
|
|
152
|
+
"zh-HK": {
|
|
153
|
+
"pisell2.saas.role.title": "角色",
|
|
154
|
+
"pisell2.saas.role.create": "新增",
|
|
155
|
+
"pisell2.saas.role.create-role": "創建角色",
|
|
156
|
+
"pisell2.saas.role.edit": "編輯",
|
|
157
|
+
"pisell2.saas.role.edit-role": "編輯角色",
|
|
158
|
+
"pisell2.saas.role.delete": "刪除",
|
|
159
|
+
"pisell2.saas.role.delete-role": "刪除角色",
|
|
160
|
+
"pisell2.saas.role.role-has-members": "該角色下還有成員,無法刪除。請先移除所有成員。",
|
|
161
|
+
"pisell2.saas.role.at-least-one-role": "無法刪除唯一的角色。組織中至少需要保留一個角色。",
|
|
162
|
+
"pisell2.saas.role.name": "角色名稱",
|
|
163
|
+
"pisell2.saas.role.code": "角色標識符",
|
|
164
|
+
"pisell2.saas.role.description": "描述",
|
|
165
|
+
"pisell2.saas.role.extension-table": "擴展表",
|
|
166
|
+
"pisell2.saas.role.members": "成員",
|
|
167
|
+
"pisell2.saas.role.permissions": "權限",
|
|
168
|
+
"pisell2.saas.role.fields": "字段",
|
|
169
|
+
"pisell2.saas.role.member-count": "成員數量",
|
|
170
|
+
"pisell2.saas.role.add-member": "添加成員",
|
|
171
|
+
"pisell2.saas.role.remove-member": "移除成員",
|
|
172
|
+
"pisell2.saas.role.confirm-remove": "確認移除",
|
|
173
|
+
"pisell2.saas.role.confirm-remove-member": "確定要將此成員從該角色中移除嗎?",
|
|
174
|
+
"pisell2.saas.role.confirm-delete-role": "確定要刪除角色 {name} 嗎?",
|
|
175
|
+
"pisell2.saas.role.member-name": "姓名",
|
|
176
|
+
"pisell2.saas.role.member-id": "成員ID",
|
|
177
|
+
"pisell2.saas.role.member-email": "郵箱",
|
|
178
|
+
"pisell2.saas.role.member-mobile": "手機號碼",
|
|
179
|
+
"pisell2.saas.role.member-current-roles": "當前角色",
|
|
180
|
+
"pisell2.saas.role.actions": "操作",
|
|
181
|
+
"pisell2.saas.role.search": "搜尋",
|
|
182
|
+
"pisell2.saas.role.save": "保存",
|
|
183
|
+
"pisell2.saas.role.cancel": "取消",
|
|
184
|
+
"pisell2.saas.role.confirm": "確定",
|
|
185
|
+
"pisell2.saas.role.submit": "提交",
|
|
186
|
+
"pisell2.saas.role.add": "添加",
|
|
187
|
+
"pisell2.saas.role.enter-role-name": "輸入角色名稱",
|
|
188
|
+
"pisell2.saas.role.enter-role-code": "輸入唯一標識符(如:manager)",
|
|
189
|
+
"pisell2.saas.role.enter-role-description": "選填:描述該角色的職責和用途",
|
|
190
|
+
"pisell2.saas.role.select-extension-table": "選擇一個表用於擴展該角色的字段",
|
|
191
|
+
"pisell2.saas.role.role-code-format": "僅支持小寫字母、數字、連字符、底線和英文點。創建後不可修改。",
|
|
192
|
+
"pisell2.saas.role.add-members-to-role": "添加成員到角色",
|
|
193
|
+
"pisell2.saas.role.select-members": "選擇成員",
|
|
194
|
+
"pisell2.saas.role.create-success": "新增成功",
|
|
195
|
+
"pisell2.saas.role.update-success": "更新成功",
|
|
196
|
+
"pisell2.saas.role.delete-success": "刪除成功",
|
|
197
|
+
"pisell2.saas.role.no-role-selected": "請選擇一個角色",
|
|
198
|
+
"pisell2.saas.role.no-permissions": "暫無權限配置",
|
|
199
|
+
"pisell2.saas.role.members-text": "個成員",
|
|
200
|
+
"pisell2.saas.role.no-members-in-role": "該角色下暫無成員。點擊「添加成員」開始添加。",
|
|
201
|
+
"pisell2.saas.role.select": "選擇",
|
|
202
|
+
"pisell2.saas.role.all-members-in-role": "所有成員都已在該角色中。",
|
|
203
|
+
"pisell2.saas.role.channels": "渠道",
|
|
204
|
+
"pisell2.saas.role.control-access-channels": "控制訪問不同渠道的權限",
|
|
205
|
+
"pisell2.saas.role.page-types": "頁面類型",
|
|
206
|
+
"pisell2.saas.role.control-access-page-types": "控制訪問不同類型頁面的權限",
|
|
207
|
+
"pisell2.saas.role.apps": "應用",
|
|
208
|
+
"pisell2.saas.role.control-access-apps": "控制訪問應用中頁面的權限",
|
|
209
|
+
"pisell2.saas.role.system-management": "系統管理",
|
|
210
|
+
"pisell2.saas.role.control-system-operations": "控制訪問系統級操作的權限",
|
|
211
|
+
"pisell2.saas.role.clear-all": "清除所有",
|
|
212
|
+
"pisell2.saas.role.select-all": "全選"
|
|
213
|
+
}
|
|
214
|
+
};
|
|
215
|
+
var locales_default = locales;
|
|
216
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
217
|
+
0 && (module.exports = {
|
|
218
|
+
locales
|
|
219
|
+
});
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ExtensionFormInfo, RoleInfo, MemberInfo, RoleFormValues, PaginationData, AvailablePermissions } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* 获取扩展表单列表
|
|
4
|
+
* @returns
|
|
5
|
+
*/
|
|
6
|
+
export declare const getExtensionFormList: (params: {
|
|
7
|
+
skip?: number;
|
|
8
|
+
num?: number;
|
|
9
|
+
type?: string;
|
|
10
|
+
}) => Promise<PaginationData<ExtensionFormInfo>>;
|
|
11
|
+
/**
|
|
12
|
+
* 获取角色列表
|
|
13
|
+
* GET: /tenant/role
|
|
14
|
+
* Query: with_count[]=tenant_account
|
|
15
|
+
*/
|
|
16
|
+
export declare const getRoles: () => Promise<RoleInfo[]>;
|
|
17
|
+
/**
|
|
18
|
+
* 获取角色详情
|
|
19
|
+
* GET: /tenant/role/{id}
|
|
20
|
+
*/
|
|
21
|
+
export declare const getRoleDetail: (id: number) => Promise<RoleInfo>;
|
|
22
|
+
/**
|
|
23
|
+
* 创建角色
|
|
24
|
+
* POST: /tenant/role
|
|
25
|
+
*/
|
|
26
|
+
export declare const createRole: (role: RoleFormValues) => Promise<RoleInfo>;
|
|
27
|
+
/**
|
|
28
|
+
* 更新角色
|
|
29
|
+
* POST: /tenant/role/{id}
|
|
30
|
+
*/
|
|
31
|
+
export declare const updateRole: (id: number, updates: Partial<RoleFormValues>) => Promise<RoleInfo>;
|
|
32
|
+
/**
|
|
33
|
+
* 删除角色
|
|
34
|
+
* DELETE: /tenant/role/{id}
|
|
35
|
+
*/
|
|
36
|
+
export declare const deleteRole: (id: number) => Promise<void>;
|
|
37
|
+
/**
|
|
38
|
+
* 获取角色成员列表 (通过筛选租户账户列表实现)
|
|
39
|
+
* GET: /tenant/account
|
|
40
|
+
* Query: tenant_role_ids[]={roleId}, with[]=account, with[]=roles
|
|
41
|
+
*/
|
|
42
|
+
export declare const getRoleMembers: (params: {
|
|
43
|
+
tenant_role_ids: number[];
|
|
44
|
+
with?: string[];
|
|
45
|
+
page?: number;
|
|
46
|
+
size?: number;
|
|
47
|
+
}) => Promise<PaginationData<MemberInfo>>;
|
|
48
|
+
/**
|
|
49
|
+
* 获取角色permission
|
|
50
|
+
*/
|
|
51
|
+
export declare const getRolePermission: () => Promise<AvailablePermissions>;
|
|
52
|
+
/**
|
|
53
|
+
* 更新角色成员列表
|
|
54
|
+
* @param memberId
|
|
55
|
+
* @param roleIds
|
|
56
|
+
*/
|
|
57
|
+
export declare const updateRoleMembers: (roleId: number, accountIds: number[]) => Promise<void>;
|
|
58
|
+
/**
|
|
59
|
+
* 移除角色成员
|
|
60
|
+
* DELETE: /tenant/role/{roleId}/accounts
|
|
61
|
+
* Query: tenant_account_ids={tenantAccountId}
|
|
62
|
+
*/
|
|
63
|
+
export declare const removeRoleMember: (roleId: number, tenantAccountId: number) => Promise<void>;
|
|
64
|
+
/**
|
|
65
|
+
* 获取所有成员列表 (用于选择添加)
|
|
66
|
+
* GET: /tenant/account
|
|
67
|
+
*/
|
|
68
|
+
export declare const getAllMembers: (params?: {
|
|
69
|
+
page?: number;
|
|
70
|
+
size?: number;
|
|
71
|
+
search?: string;
|
|
72
|
+
}) => Promise<PaginationData<MemberInfo>>;
|