@pisell/private-materials 6.6.1 → 6.7.1
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 +23 -8
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +23 -8
- package/es/components/Sales/Event/Detail.js +4 -3
- package/es/components/appointmentBooking/components/Cart/Item/index.js +0 -1
- package/es/components/appointmentBooking/components/Services/index.js +22 -8
- package/es/components/appointmentBooking/hooks.js +5 -0
- package/es/components/authentication/admin/AuthMethods/AuthMethods.less +136 -0
- package/es/components/authentication/admin/AuthMethods/SettingList.d.ts +5 -0
- package/es/components/authentication/admin/AuthMethods/SettingList.js +62 -0
- package/es/components/authentication/admin/AuthMethods/SettingList.less +85 -0
- package/es/components/authentication/admin/AuthMethods/SettingsDrawer.d.ts +22 -0
- package/es/components/authentication/admin/AuthMethods/SettingsDrawer.js +121 -0
- package/es/components/authentication/admin/AuthMethods/SettingsDrawer.less +163 -0
- package/es/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.d.ts +11 -0
- package/es/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.js +15 -0
- package/es/components/authentication/admin/AuthMethods/components/EmailSettingsContent.d.ts +13 -0
- package/es/components/authentication/admin/AuthMethods/components/EmailSettingsContent.js +152 -0
- package/es/components/authentication/admin/AuthMethods/components/LoginMethodsList.d.ts +13 -0
- package/es/components/authentication/admin/AuthMethods/components/LoginMethodsList.js +114 -0
- package/es/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.d.ts +14 -0
- package/es/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.js +170 -0
- package/es/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.d.ts +13 -0
- package/es/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.js +116 -0
- package/es/components/authentication/admin/AuthMethods/components/index.d.ts +10 -0
- package/es/components/authentication/admin/AuthMethods/components/index.js +5 -0
- package/es/components/authentication/admin/AuthMethods/constants.d.ts +22 -0
- package/es/components/authentication/admin/AuthMethods/constants.js +121 -0
- package/es/components/authentication/admin/AuthMethods/index.d.ts +8 -0
- package/es/components/authentication/admin/AuthMethods/index.js +233 -0
- package/es/components/authentication/admin/AuthMethods/locales.d.ts +249 -0
- package/es/components/authentication/admin/AuthMethods/locales.js +290 -0
- package/es/components/authentication/admin/AuthMethods/types.d.ts +76 -0
- package/es/components/authentication/admin/AuthMethods/types.js +23 -0
- package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/AuthenticationMethods.less +231 -0
- package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +6 -0
- package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.js +447 -0
- package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +84 -0
- package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.js +107 -0
- package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +41 -0
- package/es/components/authentication/admin/ChannelAuthSetting/ChannelAuthSetting.less +111 -0
- package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/CollectInfo.less +259 -0
- package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +6 -0
- package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.js +530 -0
- package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +72 -0
- package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.js +86 -0
- package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +33 -0
- package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.js +460 -0
- package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.less +111 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/PageSetting.less +105 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/index.d.ts +8 -0
- package/es/{pro/multiDayTimeSelect/MultiDayTimeSelect.js → components/authentication/admin/ChannelAuthSetting/PageSetting/index.js} +149 -321
- package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +27 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.js +32 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/types.d.ts +25 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/types.js +1 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/PageSettingItem.less +272 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +8 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.js +214 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +66 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.js +71 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +26 -0
- package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.js +1 -0
- package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.js +287 -0
- package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.less +111 -0
- package/es/components/authentication/admin/ChannelAuthSetting/index.d.ts +6 -0
- package/es/components/authentication/admin/ChannelAuthSetting/index.js +228 -0
- package/es/components/authentication/admin/ChannelAuthSetting/locales.d.ts +39 -0
- package/es/components/authentication/admin/ChannelAuthSetting/locales.js +50 -0
- package/es/components/authentication/admin/ChannelAuthSetting/types.d.ts +36 -0
- package/es/components/authentication/admin/ChannelAuthSetting/types.js +1 -0
- package/es/components/authentication/admin/CustomerAuth/CustomerAuth.less +104 -0
- package/es/components/authentication/admin/CustomerAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/CustomerAuth/index.js +711 -0
- package/es/components/authentication/admin/CustomerAuth/locales.d.ts +66 -0
- package/es/components/authentication/admin/CustomerAuth/locales.js +86 -0
- package/es/components/authentication/admin/CustomerAuth/types.d.ts +16 -0
- package/es/components/authentication/admin/CustomerAuth/types.js +1 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/CustomerOAuthConfig.less +164 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/index.d.ts +6 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/index.js +545 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +108 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/locales.js +137 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/types.d.ts +22 -0
- package/es/components/authentication/admin/CustomerOAuthConfig/types.js +1 -0
- package/es/components/authentication/admin/DeviceAuth/DeviceAuth.less +104 -0
- package/es/components/authentication/admin/DeviceAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/DeviceAuth/index.js +366 -0
- package/es/components/authentication/admin/DeviceAuth/locales.d.ts +57 -0
- package/es/components/authentication/admin/DeviceAuth/locales.js +74 -0
- package/es/components/authentication/admin/DeviceAuth/types.d.ts +16 -0
- package/es/components/authentication/admin/DeviceAuth/types.js +1 -0
- package/es/components/authentication/admin/OAuthConfig/OAuthConfig.less +165 -0
- package/es/components/authentication/admin/OAuthConfig/index.d.ts +6 -0
- package/es/components/authentication/admin/OAuthConfig/index.js +347 -0
- package/es/components/authentication/admin/OAuthConfig/locales.d.ts +90 -0
- package/es/components/authentication/admin/OAuthConfig/locales.js +116 -0
- package/es/components/authentication/admin/OAuthConfig/types.d.ts +22 -0
- package/es/components/authentication/admin/OAuthConfig/types.js +1 -0
- package/es/components/authentication/admin/OrgAdminAuth/OrgAdminAuth.less +104 -0
- package/es/components/authentication/admin/OrgAdminAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/OrgAdminAuth/index.js +543 -0
- package/es/components/authentication/admin/OrgAdminAuth/locales.d.ts +54 -0
- package/es/components/authentication/admin/OrgAdminAuth/locales.js +74 -0
- package/es/components/authentication/admin/OrgAdminAuth/types.d.ts +16 -0
- package/es/components/authentication/admin/OrgAdminAuth/types.js +1 -0
- package/es/components/authentication/admin/POSOperatorAuth/POSOperatorAuth.less +104 -0
- package/es/components/authentication/admin/POSOperatorAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/POSOperatorAuth/index.js +374 -0
- package/es/components/authentication/admin/POSOperatorAuth/locales.d.ts +48 -0
- package/es/components/authentication/admin/POSOperatorAuth/locales.js +65 -0
- package/es/components/authentication/admin/POSOperatorAuth/types.d.ts +16 -0
- package/es/components/authentication/admin/POSOperatorAuth/types.js +1 -0
- package/es/components/authentication/admin/SaaSAdminAuth/SaaSAdminAuth.less +104 -0
- package/es/components/authentication/admin/SaaSAdminAuth/index.d.ts +6 -0
- package/es/components/authentication/admin/SaaSAdminAuth/index.js +625 -0
- package/es/components/authentication/admin/SaaSAdminAuth/locales.d.ts +54 -0
- package/es/components/authentication/admin/SaaSAdminAuth/locales.js +74 -0
- package/es/components/authentication/admin/SaaSAdminAuth/types.d.ts +16 -0
- package/es/components/authentication/admin/SaaSAdminAuth/types.js +1 -0
- package/es/components/authentication/admin/index.d.ts +26 -0
- package/es/components/authentication/admin/index.js +23 -0
- package/es/components/booking/components/actionButtons/index.js +20 -34
- package/es/components/booking/components/customSelect/index.js +22 -3
- package/es/components/booking/components/footer/amount.js +8 -25
- package/es/components/booking/components/footer/index.js +32 -62
- package/es/components/booking/components/footer/utils.d.ts +0 -7
- package/es/components/booking/components/footer/utils.js +87 -101
- package/es/components/booking/components/voucher/index.js +9 -25
- package/es/components/booking/dashboard/serve.js +6 -1
- package/es/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
- package/es/components/booking/forms/serve.js +12 -2
- package/es/components/booking/hooks/useQuotation.js +21 -69
- package/es/components/booking/info/client/serve.js +11 -2
- package/es/components/booking/info/hooks/useHolderConfig.d.ts +0 -1
- package/es/components/booking/info/hooks/useHolderConfig.js +2 -9
- package/es/components/booking/info/pet/serve.js +6 -1
- package/es/components/booking/info/service/Lists.d.ts +1 -1
- package/es/components/booking/info/service/Lists.js +4 -10
- package/es/components/booking/info/service/addService/utils.d.ts +1 -1
- package/es/components/booking/info/service/addTimeModal/serve.js +11 -1
- package/es/components/booking/info/service/serve.d.ts +0 -14
- package/es/components/booking/info/service/serve.js +18 -25
- package/es/components/booking/info/service2/Group/utils.js +0 -2
- package/es/components/booking/info/service2/utils.d.ts +33 -1
- package/es/components/booking/info/service2/utils.js +56 -92
- package/es/components/booking/info/utils.js +0 -5
- package/es/components/booking/info2/cartClientCard/index.js +9 -49
- package/es/components/booking/info2/index.js +1 -1
- package/es/components/booking/info2/serve.js +6 -1
- package/es/components/booking/info2/service/addService/index.js +89 -146
- package/es/components/booking/info2/service/addService/utils.d.ts +1 -9
- package/es/components/booking/info2/service/addService/utils.js +14 -83
- package/es/components/booking/info2/service/editService/index.js +57 -313
- package/es/components/booking/info2/utilsByBooking.js +14 -19
- package/es/components/booking/locales.d.ts +0 -30
- package/es/components/booking/locales.js +3 -39
- package/es/components/booking/utils.d.ts +7 -16
- package/es/components/booking/utils.js +37 -26
- package/es/components/checkout/PaymentModal.js +30 -61
- package/es/components/checkout/components/CashPaymentModule/index.js +7 -1
- package/es/components/checkout/components/ScrollableList/index.js +1 -0
- package/es/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/es/components/checkout/locales.d.ts +0 -3
- package/es/components/checkout/locales.js +0 -3
- package/es/components/eftposPay/amount.d.ts +1 -1
- package/es/components/eftposPay/device.d.ts +1 -1
- package/es/components/eftposPay/hooks.d.ts +2 -2
- package/es/components/eftposPay/store/index.d.ts +4 -4
- package/es/components/eftposPay/tyro/index.js +0 -12
- package/es/components/index.d.ts +3 -2
- package/es/components/index.js +3 -2
- package/es/components/list/List.js +0 -3
- package/es/components/pay/toB/components/MX51/index.js +44 -14
- package/es/components/pay/toB/types/index.d.ts +12 -0
- package/es/components/pay/toB/types/index.js +4 -0
- package/es/components/pay/toC/PaymentMethods/ApplePay/index.js +68 -35
- package/es/components/pay/toC/PaymentMethods/GooglePay/index.js +70 -42
- package/es/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.js +72 -41
- package/es/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.d.ts +15 -0
- package/es/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.js +143 -0
- package/es/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.less +34 -0
- package/es/components/pay/toC/PaymentMethods/hooks/index.d.ts +19 -0
- package/es/components/{ticketBooking/components/addServiceVariant/MultiDayTimeSelectModal.js → pay/toC/PaymentMethods/hooks/index.js} +98 -91
- package/es/components/pay/toC/index.js +26 -22
- package/es/components/pay/toC/locales.d.ts +9 -0
- package/es/components/pay/toC/locales.js +12 -3
- package/es/components/pay/toC/model.d.ts +1 -0
- package/es/components/pay/toC/serve.d.ts +5 -0
- package/es/components/pay/toC/serve.js +9 -1
- package/es/components/pisellSelectCustomerModal/RightPanel/serve.js +5 -1
- package/es/components/shoppingCart/components/Cart/Product.js +3 -6
- package/es/components/shoppingCart/type.d.ts +0 -1
- package/es/components/ticketBooking/components/ProductDisplayAdapter/index.less +12 -0
- package/es/components/ticketBooking/components/addServiceVariant/addService.d.ts +2 -0
- package/es/components/ticketBooking/components/addServiceVariant/addService.js +794 -419
- package/es/components/ticketBooking/components/addServiceVariant/index.d.ts +2 -0
- package/es/components/ticketBooking/components/addServiceVariant/index.js +4 -4
- package/es/components/ticketBooking/components/addServiceVariant/utils.js +2 -1
- package/es/components/ticketBooking/components/menuBar/index.js +12 -109
- package/es/components/ticketBooking/components/ticketBooking/index.d.ts +4 -2
- package/es/components/ticketBooking/components/ticketBooking/index.js +61 -32
- package/es/components/ticketBooking/components/timeBar/index.d.ts +1 -0
- package/es/components/ticketBooking/components/timeBar/index.js +4 -1
- package/es/components/ticketBooking/hooks/pisellos/useProducts.d.ts +4 -0
- package/es/components/ticketBooking/hooks/pisellos/useProducts.js +170 -122
- package/es/components/ticketBooking/index.d.ts +1 -0
- package/es/components/ticketBooking/index.js +2 -0
- package/es/components/ticketBooking/serve.js +119 -17
- package/es/components/ticketBooking/utils/index.d.ts +2 -8
- package/es/components/ticketBooking/utils/index.js +28 -44
- package/es/components/walletList/index.js +92 -56
- package/es/components/walletList/serve.d.ts +4 -0
- package/es/components/walletList/serve.js +46 -13
- package/es/components/walletList/types/index.d.ts +12 -12
- package/es/components/walletList/types/index.js +2 -2
- package/es/hooks/printer.d.ts +4 -0
- package/es/hooks/printer.js +35 -0
- package/es/hooks/useEngineContext.d.ts +1 -0
- package/es/hooks/useEngineContext.js +7 -0
- package/es/index.d.ts +5 -3
- package/es/index.js +4 -3
- package/es/plus/clientCard/locales.js +3 -3
- package/es/plus/clinetSearch/index.js +30 -28
- package/es/plus/clinetSearch/locales.d.ts +0 -3
- package/es/plus/clinetSearch/locales.js +4 -7
- package/es/plus/clinetSearch/types.d.ts +0 -12
- package/es/plus/productSelect/CategoryTabs/index.d.ts +2 -0
- package/es/plus/productSelect/CategoryTabs/index.js +6 -3
- package/es/plus/productSelect/ProductCard/SkuCard/components/Capacity/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/CardMask/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/CardWrapper/index.js +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/Countdown/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/Duration/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/MemberPrice/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/Resource/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/Stock/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/Time/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/index.d.ts +3 -1
- package/es/plus/productSelect/ProductCard/index.js +10 -2
- package/es/plus/productSelect/components/TabsStructure/TabsStructure.less +0 -11
- package/es/plus/productSelect/index.d.ts +3 -2
- package/es/plus/productSelect/index.js +33 -8
- package/es/plus/productSelect/index.less +4 -0
- package/es/plus/walletEditor/WalletEditor.d.ts +5 -0
- package/es/plus/walletEditor/WalletEditor.js +316 -0
- package/es/plus/walletEditor/WalletEditor.less +129 -0
- package/es/plus/walletEditor/components/ImageUpload/index.d.ts +8 -0
- package/es/plus/walletEditor/components/ImageUpload/index.js +223 -0
- package/es/plus/walletEditor/components/JsonEditor/index.d.ts +11 -0
- package/es/plus/walletEditor/components/JsonEditor/index.js +68 -0
- package/es/plus/walletEditor/components/JsonEditor/index.less +4 -0
- package/es/plus/walletEditor/components/ValidityPeriodSelector/index.d.ts +20 -0
- package/es/plus/walletEditor/components/ValidityPeriodSelector/index.js +222 -0
- package/es/plus/walletEditor/components/ValidityPeriodSelector/index.less +4 -0
- package/es/plus/walletEditor/components/relationProduct/index.d.ts +6 -0
- package/es/plus/walletEditor/components/relationProduct/index.js +49 -0
- package/es/plus/walletEditor/components/relationProduct/index.less +15 -0
- package/es/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +37 -0
- package/es/plus/walletEditor/components/sortableWalletPassTypes/index.js +193 -0
- package/es/plus/walletEditor/components/sortableWalletPassTypes/index.less +110 -0
- package/es/plus/walletEditor/index.d.ts +3 -0
- package/es/plus/walletEditor/index.js +3 -0
- package/es/plus/walletEditor/locales.d.ts +126 -0
- package/es/plus/walletEditor/locales.js +143 -0
- package/es/plus/walletEditor/types.d.ts +52 -0
- package/es/plus/walletEditor/types.js +1 -0
- package/es/plus/walletPassGallery/components/footerButton/index.d.ts +14 -0
- package/es/{components/booking/info2/service/editService/Holder → plus/walletPassGallery/components/footerButton}/index.js +220 -166
- package/es/plus/walletPassGallery/components/footerButton/index.less +93 -0
- package/es/plus/walletPassGallery/components/passDetail/index.d.ts +8 -0
- package/es/plus/walletPassGallery/components/passDetail/index.js +274 -0
- package/es/plus/walletPassGallery/components/passDetail/index.less +57 -0
- package/es/plus/walletPassGallery/components/passList/index.d.ts +11 -0
- package/es/plus/walletPassGallery/components/passList/index.js +115 -0
- package/es/plus/walletPassGallery/components/recharge/index.d.ts +11 -0
- package/es/plus/walletPassGallery/components/recharge/index.js +134 -0
- package/es/plus/walletPassGallery/components/recharge/index.less +16 -0
- package/es/plus/walletPassGallery/components/timelineSection/index.d.ts +8 -0
- package/es/plus/walletPassGallery/components/timelineSection/index.js +176 -0
- package/es/plus/walletPassGallery/components/timelineSection/index.less +67 -0
- package/es/plus/walletPassGallery/components/usageRule/index.d.ts +9 -0
- package/es/plus/walletPassGallery/components/usageRule/index.js +248 -0
- package/es/plus/walletPassGallery/components/usageRule/index.less +157 -0
- package/es/plus/walletPassGallery/index.d.ts +6 -0
- package/es/plus/walletPassGallery/index.js +602 -0
- package/es/plus/walletPassGallery/index.less +115 -0
- package/es/plus/walletPassGallery/locales.d.ts +270 -0
- package/es/plus/walletPassGallery/locales.js +279 -0
- package/es/plus/walletPassGallery/serve.d.ts +218 -0
- package/es/plus/walletPassGallery/serve.js +289 -0
- package/es/pro/Login2.0/AuthModal.d.ts +143 -0
- package/es/pro/Login2.0/AuthModal.js +630 -0
- package/es/pro/Login2.0/Login2.d.ts +61 -0
- package/es/pro/Login2.0/Login2.js +2236 -0
- package/es/pro/Login2.0/Register2.d.ts +65 -0
- package/es/pro/Login2.0/Register2.js +1502 -0
- package/es/pro/Login2.0/components/ForgotPasswordFlow.d.ts +31 -0
- package/es/pro/Login2.0/components/ForgotPasswordFlow.js +330 -0
- package/es/pro/Login2.0/components/LegalTerms.d.ts +8 -0
- package/es/pro/Login2.0/components/LegalTerms.js +51 -0
- package/es/pro/Login2.0/components/LegalTerms.less +74 -0
- package/es/pro/Login2.0/components/LoginCodeInput.d.ts +27 -0
- package/es/pro/Login2.0/components/LoginCodeInput.js +207 -0
- package/es/pro/Login2.0/components/OAuthButtonGroup.d.ts +22 -0
- package/es/pro/Login2.0/components/OAuthButtonGroup.js +55 -0
- package/es/pro/Login2.0/components/PhoneInput.d.ts +53 -0
- package/es/pro/Login2.0/components/PhoneInput.js +414 -0
- package/es/pro/Login2.0/components/PhoneInput.less +148 -0
- package/es/pro/Login2.0/components/phoneValidation.d.ts +17 -0
- package/es/pro/Login2.0/components/phoneValidation.js +228 -0
- package/es/pro/Login2.0/hooks/index.d.ts +2 -0
- package/es/pro/Login2.0/hooks/index.js +1 -0
- package/es/pro/Login2.0/hooks/usePasswordValidationRules.d.ts +24 -0
- package/es/pro/Login2.0/hooks/usePasswordValidationRules.js +87 -0
- package/es/pro/Login2.0/hooks/useRegisterFlow.d.ts +39 -0
- package/es/pro/Login2.0/hooks/useRegisterFlow.js +158 -0
- package/es/pro/Login2.0/hooks/useRegistrationMethods.d.ts +9 -0
- package/es/pro/Login2.0/hooks/useRegistrationMethods.js +31 -0
- package/es/pro/Login2.0/index.js +8 -0
- package/es/pro/Login2.0/index.less +1002 -0
- package/es/pro/Login2.0/locales.d.ts +543 -0
- package/es/pro/Login2.0/locales.js +622 -0
- package/es/pro/Login2.0/shared/Header.d.ts +11 -0
- package/es/pro/Login2.0/shared/Header.js +42 -0
- package/es/pro/Login2.0/shared/OAuthButtons.d.ts +11 -0
- package/es/pro/Login2.0/shared/OAuthButtons.js +59 -0
- package/es/pro/Login2.0/shared/registerFlow.d.ts +116 -0
- package/es/pro/Login2.0/shared/registerFlow.js +171 -0
- package/es/pro/Login2.0/shared/types.d.ts +232 -0
- package/es/pro/Login2.0/shared/types.js +1 -0
- package/es/pro/Login2.0/steps/CodeInput.d.ts +24 -0
- package/es/pro/Login2.0/steps/CodeInput.js +209 -0
- package/es/pro/Login2.0/steps/EmailAlreadyRegistered.d.ts +12 -0
- package/es/pro/Login2.0/steps/EmailAlreadyRegistered.js +35 -0
- package/es/pro/Login2.0/steps/EmailLinkAlreadyUsed.d.ts +7 -0
- package/es/pro/Login2.0/steps/EmailLinkAlreadyUsed.js +25 -0
- package/es/pro/Login2.0/steps/EmailLinkExpired.d.ts +9 -0
- package/es/pro/Login2.0/steps/EmailLinkExpired.js +33 -0
- package/es/pro/Login2.0/steps/SetPassword.d.ts +19 -0
- package/es/pro/Login2.0/steps/SetPassword.js +148 -0
- package/es/pro/Login2.0/steps/VerificationSuccess.d.ts +8 -0
- package/es/pro/Login2.0/steps/VerificationSuccess.js +35 -0
- package/es/pro/Login2.0/steps/VerifyingEmailLink.d.ts +7 -0
- package/es/pro/Login2.0/steps/VerifyingEmailLink.js +17 -0
- package/es/pro/Login2.0/steps/WaitEmailLink.d.ts +18 -0
- package/es/pro/Login2.0/steps/WaitEmailLink.js +54 -0
- package/es/pro/Login2.0/steps/index.d.ts +19 -0
- package/es/pro/Login2.0/steps/index.js +11 -0
- package/es/pro/Login2.0/steps/steps.less +423 -0
- package/es/pro/Login2.0/types.d.ts +167 -0
- package/es/pro/Login2.0/types.js +1 -0
- package/es/pro/comprehensiveSearch/components/searchSection/locales.js +3 -3
- package/es/pro/comprehensiveSearch/locales.js +1 -1
- package/es/pro/pisellPaymentList/example.d.ts +19 -0
- package/es/pro/pisellPaymentList/example.js +434 -0
- package/es/pro/skuDetailModal/types.d.ts +0 -1
- package/lib/components/Sales/Event/Detail.js +3 -2
- package/lib/components/appointmentBooking/components/Cart/Item/index.js +0 -1
- package/lib/components/appointmentBooking/components/Services/index.js +8 -3
- package/lib/components/appointmentBooking/hooks.js +3 -0
- package/lib/components/authentication/admin/AuthMethods/AuthMethods.less +136 -0
- package/lib/components/authentication/admin/AuthMethods/SettingList.d.ts +5 -0
- package/lib/components/authentication/admin/AuthMethods/SettingList.js +75 -0
- package/lib/components/authentication/admin/AuthMethods/SettingList.less +85 -0
- package/lib/components/authentication/admin/AuthMethods/SettingsDrawer.d.ts +22 -0
- package/lib/components/authentication/admin/AuthMethods/SettingsDrawer.js +126 -0
- package/lib/components/authentication/admin/AuthMethods/SettingsDrawer.less +163 -0
- package/lib/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.d.ts +11 -0
- package/lib/{plus/selectHolder/components/HolderList/index.js → components/authentication/admin/AuthMethods/components/DefaultSettingsContent.js} +10 -31
- package/lib/components/authentication/admin/AuthMethods/components/EmailSettingsContent.d.ts +13 -0
- package/lib/components/authentication/admin/AuthMethods/components/EmailSettingsContent.js +108 -0
- package/lib/components/authentication/admin/AuthMethods/components/LoginMethodsList.d.ts +13 -0
- package/lib/components/authentication/admin/AuthMethods/components/LoginMethodsList.js +108 -0
- package/lib/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.d.ts +14 -0
- package/lib/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.js +93 -0
- package/lib/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.d.ts +13 -0
- package/lib/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.js +85 -0
- package/lib/components/authentication/admin/AuthMethods/components/index.d.ts +10 -0
- package/lib/components/authentication/admin/AuthMethods/components/index.js +51 -0
- package/lib/components/authentication/admin/AuthMethods/constants.d.ts +22 -0
- package/lib/components/authentication/admin/AuthMethods/constants.js +115 -0
- package/lib/components/authentication/admin/AuthMethods/index.d.ts +8 -0
- package/lib/components/authentication/admin/AuthMethods/index.js +196 -0
- package/lib/components/authentication/admin/AuthMethods/locales.d.ts +249 -0
- package/lib/components/authentication/admin/AuthMethods/locales.js +314 -0
- package/lib/components/authentication/admin/AuthMethods/types.d.ts +76 -0
- package/lib/components/authentication/admin/AuthMethods/types.js +53 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/AuthenticationMethods.less +231 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +6 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.js +311 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +84 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.js +131 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +41 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.js +17 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/ChannelAuthSetting.less +111 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/CollectInfo.less +259 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +6 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.js +410 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +72 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.js +110 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +33 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.js +17 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.js +383 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.less +111 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/PageSetting.less +105 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/index.d.ts +8 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/index.js +148 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +27 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.js +56 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/types.d.ts +25 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/types.js +17 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/PageSettingItem.less +272 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +8 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.js +206 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +66 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.js +95 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +26 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.js +17 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.js +246 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.less +111 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/index.d.ts +6 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/index.js +177 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/locales.d.ts +39 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/locales.js +74 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/types.d.ts +36 -0
- package/lib/components/authentication/admin/ChannelAuthSetting/types.js +17 -0
- package/lib/components/authentication/admin/CustomerAuth/CustomerAuth.less +104 -0
- package/lib/components/authentication/admin/CustomerAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/CustomerAuth/index.js +507 -0
- package/lib/components/authentication/admin/CustomerAuth/locales.d.ts +66 -0
- package/lib/components/authentication/admin/CustomerAuth/locales.js +110 -0
- package/lib/components/authentication/admin/CustomerAuth/types.d.ts +16 -0
- package/lib/components/authentication/admin/CustomerAuth/types.js +17 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/CustomerOAuthConfig.less +164 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/index.d.ts +6 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/index.js +331 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +108 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/locales.js +161 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/types.d.ts +22 -0
- package/lib/components/authentication/admin/CustomerOAuthConfig/types.js +17 -0
- package/lib/components/authentication/admin/DeviceAuth/DeviceAuth.less +104 -0
- package/lib/components/authentication/admin/DeviceAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/DeviceAuth/index.js +254 -0
- package/lib/components/authentication/admin/DeviceAuth/locales.d.ts +57 -0
- package/lib/components/authentication/admin/DeviceAuth/locales.js +98 -0
- package/lib/components/authentication/admin/DeviceAuth/types.d.ts +16 -0
- package/lib/components/authentication/admin/DeviceAuth/types.js +17 -0
- package/lib/components/authentication/admin/OAuthConfig/OAuthConfig.less +165 -0
- package/lib/components/authentication/admin/OAuthConfig/index.d.ts +6 -0
- package/lib/components/authentication/admin/OAuthConfig/index.js +226 -0
- package/lib/components/authentication/admin/OAuthConfig/locales.d.ts +90 -0
- package/lib/components/authentication/admin/OAuthConfig/locales.js +140 -0
- package/lib/components/authentication/admin/OAuthConfig/types.d.ts +22 -0
- package/lib/components/authentication/admin/OAuthConfig/types.js +17 -0
- package/lib/components/authentication/admin/OrgAdminAuth/OrgAdminAuth.less +104 -0
- package/lib/components/authentication/admin/OrgAdminAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/OrgAdminAuth/index.js +398 -0
- package/lib/components/authentication/admin/OrgAdminAuth/locales.d.ts +54 -0
- package/lib/components/authentication/admin/OrgAdminAuth/locales.js +98 -0
- package/lib/components/authentication/admin/OrgAdminAuth/types.d.ts +16 -0
- package/lib/components/authentication/admin/OrgAdminAuth/types.js +17 -0
- package/lib/components/authentication/admin/POSOperatorAuth/POSOperatorAuth.less +104 -0
- package/lib/components/authentication/admin/POSOperatorAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/POSOperatorAuth/index.js +262 -0
- package/lib/components/authentication/admin/POSOperatorAuth/locales.d.ts +48 -0
- package/lib/components/authentication/admin/POSOperatorAuth/locales.js +89 -0
- package/lib/components/authentication/admin/POSOperatorAuth/types.d.ts +16 -0
- package/lib/components/authentication/admin/POSOperatorAuth/types.js +17 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/SaaSAdminAuth.less +104 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/index.d.ts +6 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/index.js +481 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/locales.d.ts +54 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/locales.js +98 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/types.d.ts +16 -0
- package/lib/components/authentication/admin/SaaSAdminAuth/types.js +17 -0
- package/lib/components/authentication/admin/index.d.ts +26 -0
- package/lib/components/authentication/admin/index.js +83 -0
- package/lib/components/authentication/index.d.ts +0 -0
- package/lib/components/authentication/index.js +0 -0
- package/lib/components/booking/components/actionButtons/index.js +2 -11
- package/lib/components/booking/components/customSelect/index.js +26 -3
- package/lib/components/booking/components/footer/amount.js +6 -23
- package/lib/components/booking/components/footer/index.js +4 -22
- package/lib/components/booking/components/footer/utils.d.ts +0 -7
- package/lib/components/booking/components/footer/utils.js +72 -79
- package/lib/components/booking/components/voucher/index.js +1 -10
- package/lib/components/booking/dashboard/serve.js +6 -1
- package/lib/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
- package/lib/components/booking/forms/serve.js +12 -2
- package/lib/components/booking/hooks/useQuotation.js +13 -45
- package/lib/components/booking/info/client/serve.js +13 -2
- package/lib/components/booking/info/hooks/useHolderConfig.d.ts +0 -1
- package/lib/components/booking/info/hooks/useHolderConfig.js +3 -8
- package/lib/components/booking/info/pet/serve.js +6 -1
- package/lib/components/booking/info/service/Lists.d.ts +1 -1
- package/lib/components/booking/info/service/Lists.js +3 -5
- package/lib/components/booking/info/service/addService/utils.d.ts +1 -1
- package/lib/components/booking/info/service/addTimeModal/serve.js +7 -1
- package/lib/components/booking/info/service/serve.d.ts +0 -14
- package/lib/components/booking/info/service/serve.js +17 -8
- package/lib/components/booking/info/service2/Group/utils.js +0 -2
- package/lib/components/booking/info/service2/utils.d.ts +33 -1
- package/lib/components/booking/info/service2/utils.js +29 -38
- package/lib/components/booking/info/utils.js +0 -4
- package/lib/components/booking/info2/cartClientCard/index.js +5 -34
- package/lib/components/booking/info2/index.js +2 -7
- package/lib/components/booking/info2/serve.js +6 -1
- package/lib/components/booking/info2/service/addService/index.js +3 -22
- package/lib/components/booking/info2/service/addService/utils.d.ts +1 -9
- package/lib/components/booking/info2/service/addService/utils.js +11 -48
- package/lib/components/booking/info2/service/editService/index.js +32 -254
- package/lib/components/booking/info2/utilsByBooking.js +19 -26
- package/lib/components/booking/locales.d.ts +0 -30
- package/lib/components/booking/locales.js +3 -33
- package/lib/components/booking/utils.d.ts +7 -16
- package/lib/components/booking/utils.js +21 -18
- package/lib/components/checkout/PaymentModal.js +18 -41
- package/lib/components/checkout/components/CashPaymentModule/index.js +7 -1
- package/lib/components/checkout/components/ScrollableList/index.js +1 -0
- package/lib/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/lib/components/checkout/locales.d.ts +0 -3
- package/lib/components/checkout/locales.js +0 -3
- package/lib/components/eftposPay/amount.d.ts +1 -1
- package/lib/components/eftposPay/device.d.ts +1 -1
- package/lib/components/eftposPay/hooks.d.ts +2 -2
- package/lib/components/eftposPay/store/index.d.ts +4 -4
- package/lib/components/eftposPay/tyro/index.js +0 -12
- package/lib/components/index.d.ts +3 -2
- package/lib/components/index.js +20 -1
- package/lib/components/list/List.js +0 -3
- package/lib/components/pay/toB/components/MX51/index.js +37 -12
- package/lib/components/pay/toB/types/index.d.ts +12 -0
- package/lib/components/pay/toC/PaymentMethods/ApplePay/index.js +27 -7
- package/lib/components/pay/toC/PaymentMethods/GooglePay/index.js +32 -8
- package/lib/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.js +30 -4
- package/lib/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.d.ts +15 -0
- package/lib/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.js +88 -0
- package/lib/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.less +34 -0
- package/lib/components/pay/toC/PaymentMethods/hooks/index.d.ts +19 -0
- package/lib/components/pay/toC/PaymentMethods/hooks/index.js +90 -0
- package/lib/components/pay/toC/index.js +11 -2
- package/lib/components/pay/toC/locales.d.ts +9 -0
- package/lib/components/pay/toC/locales.js +12 -3
- package/lib/components/pay/toC/model.d.ts +1 -0
- package/lib/components/pay/toC/serve.d.ts +5 -0
- package/lib/components/pay/toC/serve.js +3 -0
- package/lib/components/pisellSelectCustomerModal/RightPanel/serve.js +8 -1
- package/lib/components/shoppingCart/components/Cart/Product.js +3 -7
- package/lib/components/shoppingCart/type.d.ts +0 -1
- package/lib/components/ticketBooking/components/ProductDisplayAdapter/index.less +12 -0
- package/lib/components/ticketBooking/components/addServiceVariant/addService.d.ts +2 -0
- package/lib/components/ticketBooking/components/addServiceVariant/addService.js +313 -279
- package/lib/components/ticketBooking/components/addServiceVariant/index.d.ts +2 -0
- package/lib/components/ticketBooking/components/addServiceVariant/index.js +3 -5
- package/lib/components/ticketBooking/components/addServiceVariant/utils.js +2 -1
- package/lib/components/ticketBooking/components/menuBar/index.js +6 -42
- package/lib/components/ticketBooking/components/ticketBooking/index.d.ts +4 -2
- package/lib/components/ticketBooking/components/ticketBooking/index.js +49 -12
- package/lib/components/ticketBooking/components/timeBar/index.d.ts +1 -0
- package/lib/components/ticketBooking/components/timeBar/index.js +3 -1
- package/lib/components/ticketBooking/hooks/pisellos/useProducts.d.ts +4 -0
- package/lib/components/ticketBooking/hooks/pisellos/useProducts.js +98 -69
- package/lib/components/ticketBooking/index.d.ts +1 -0
- package/lib/components/ticketBooking/index.js +2 -0
- package/lib/components/ticketBooking/serve.js +117 -15
- package/lib/components/ticketBooking/utils/index.d.ts +2 -8
- package/lib/components/ticketBooking/utils/index.js +23 -29
- package/lib/components/walletList/index.js +88 -47
- package/lib/components/walletList/serve.d.ts +4 -0
- package/lib/components/walletList/serve.js +12 -0
- package/lib/components/walletList/types/index.d.ts +12 -12
- package/lib/hooks/printer.d.ts +4 -0
- package/lib/hooks/printer.js +60 -0
- package/lib/hooks/useEngineContext.d.ts +1 -0
- package/lib/hooks/useEngineContext.js +10 -2
- package/lib/index.d.ts +5 -3
- package/lib/index.js +32 -9
- package/lib/plus/clientCard/locales.js +3 -3
- package/lib/plus/clinetSearch/index.js +8 -17
- package/lib/plus/clinetSearch/locales.d.ts +0 -3
- package/lib/plus/clinetSearch/locales.js +4 -7
- package/lib/plus/clinetSearch/types.d.ts +0 -12
- package/lib/plus/productSelect/CategoryTabs/index.d.ts +2 -0
- package/lib/plus/productSelect/CategoryTabs/index.js +86 -71
- package/lib/plus/productSelect/ProductCard/SkuCard/components/Capacity/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/CardMask/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/CardWrapper/index.js +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/Countdown/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/Duration/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/MemberPrice/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/Resource/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/Stock/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/Time/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/index.d.ts +3 -1
- package/lib/plus/productSelect/ProductCard/index.js +19 -2
- package/lib/plus/productSelect/components/TabsStructure/TabsStructure.less +0 -11
- package/lib/plus/productSelect/index.d.ts +3 -2
- package/lib/plus/productSelect/index.js +20 -6
- package/lib/plus/productSelect/index.less +4 -0
- package/lib/plus/walletEditor/WalletEditor.d.ts +5 -0
- package/lib/plus/walletEditor/WalletEditor.js +354 -0
- package/lib/plus/walletEditor/WalletEditor.less +129 -0
- package/lib/plus/walletEditor/components/ImageUpload/index.d.ts +8 -0
- package/lib/plus/walletEditor/components/ImageUpload/index.js +201 -0
- package/lib/plus/walletEditor/components/JsonEditor/index.d.ts +11 -0
- package/lib/plus/walletEditor/components/JsonEditor/index.js +89 -0
- package/lib/plus/walletEditor/components/JsonEditor/index.less +4 -0
- package/lib/plus/walletEditor/components/ValidityPeriodSelector/index.d.ts +20 -0
- package/lib/plus/walletEditor/components/ValidityPeriodSelector/index.js +176 -0
- package/lib/plus/walletEditor/components/ValidityPeriodSelector/index.less +4 -0
- package/lib/plus/walletEditor/components/relationProduct/index.d.ts +6 -0
- package/lib/plus/walletEditor/components/relationProduct/index.js +73 -0
- package/lib/plus/walletEditor/components/relationProduct/index.less +15 -0
- package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +37 -0
- package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.js +211 -0
- package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.less +110 -0
- package/lib/plus/walletEditor/index.d.ts +3 -0
- package/lib/plus/walletEditor/index.js +42 -0
- package/lib/plus/walletEditor/locales.d.ts +126 -0
- package/lib/plus/walletEditor/locales.js +167 -0
- package/lib/plus/walletEditor/types.d.ts +52 -0
- package/lib/plus/{selectHolder → walletEditor}/types.js +1 -1
- package/lib/plus/walletPassGallery/components/footerButton/index.d.ts +14 -0
- package/lib/plus/walletPassGallery/components/footerButton/index.js +187 -0
- package/lib/plus/walletPassGallery/components/footerButton/index.less +93 -0
- package/lib/plus/walletPassGallery/components/passDetail/index.d.ts +8 -0
- package/lib/plus/walletPassGallery/components/passDetail/index.js +287 -0
- package/lib/plus/walletPassGallery/components/passDetail/index.less +57 -0
- package/lib/plus/walletPassGallery/components/passList/index.d.ts +11 -0
- package/lib/plus/walletPassGallery/components/passList/index.js +136 -0
- package/lib/plus/walletPassGallery/components/recharge/index.d.ts +11 -0
- package/lib/plus/walletPassGallery/components/recharge/index.js +146 -0
- package/lib/plus/walletPassGallery/components/recharge/index.less +16 -0
- package/lib/plus/walletPassGallery/components/timelineSection/index.d.ts +8 -0
- package/lib/plus/walletPassGallery/components/timelineSection/index.js +212 -0
- package/lib/plus/walletPassGallery/components/timelineSection/index.less +67 -0
- package/lib/plus/walletPassGallery/components/usageRule/index.d.ts +9 -0
- package/lib/plus/walletPassGallery/components/usageRule/index.js +209 -0
- package/lib/plus/walletPassGallery/components/usageRule/index.less +157 -0
- package/lib/plus/walletPassGallery/index.d.ts +6 -0
- package/lib/plus/walletPassGallery/index.js +498 -0
- package/lib/plus/walletPassGallery/index.less +115 -0
- package/lib/plus/walletPassGallery/locales.d.ts +270 -0
- package/lib/plus/walletPassGallery/locales.js +299 -0
- package/lib/plus/walletPassGallery/serve.d.ts +218 -0
- package/lib/plus/walletPassGallery/serve.js +98 -0
- package/lib/pro/Login2.0/AuthModal.d.ts +143 -0
- package/lib/pro/Login2.0/AuthModal.js +503 -0
- package/lib/pro/Login2.0/Login2.d.ts +61 -0
- package/lib/pro/Login2.0/Login2.js +1545 -0
- package/lib/pro/Login2.0/Register2.d.ts +65 -0
- package/lib/pro/Login2.0/Register2.js +1063 -0
- package/lib/pro/Login2.0/components/ForgotPasswordFlow.d.ts +31 -0
- package/lib/pro/Login2.0/components/ForgotPasswordFlow.js +213 -0
- package/lib/pro/Login2.0/components/LegalTerms.d.ts +8 -0
- package/lib/pro/Login2.0/components/LegalTerms.js +76 -0
- package/lib/pro/Login2.0/components/LegalTerms.less +74 -0
- package/lib/pro/Login2.0/components/LoginCodeInput.d.ts +27 -0
- package/lib/pro/Login2.0/components/LoginCodeInput.js +161 -0
- package/lib/pro/Login2.0/components/OAuthButtonGroup.d.ts +22 -0
- package/lib/pro/Login2.0/components/OAuthButtonGroup.js +87 -0
- package/lib/pro/Login2.0/components/PhoneInput.d.ts +53 -0
- package/lib/pro/Login2.0/components/PhoneInput.js +263 -0
- package/lib/pro/Login2.0/components/PhoneInput.less +148 -0
- package/lib/pro/Login2.0/components/phoneValidation.d.ts +17 -0
- package/lib/pro/Login2.0/components/phoneValidation.js +153 -0
- package/lib/pro/Login2.0/hooks/index.d.ts +2 -0
- package/lib/{plus/selectHolder/utils.js → pro/Login2.0/hooks/index.js} +7 -12
- package/lib/pro/Login2.0/hooks/usePasswordValidationRules.d.ts +24 -0
- package/lib/pro/Login2.0/hooks/usePasswordValidationRules.js +140 -0
- package/lib/pro/Login2.0/hooks/useRegisterFlow.d.ts +39 -0
- package/lib/pro/Login2.0/hooks/useRegisterFlow.js +149 -0
- package/lib/pro/Login2.0/hooks/useRegistrationMethods.d.ts +9 -0
- package/lib/pro/Login2.0/hooks/useRegistrationMethods.js +51 -0
- package/lib/pro/{multiDayTimeSelect → Login2.0}/index.js +16 -6
- package/lib/pro/Login2.0/index.less +1002 -0
- package/lib/pro/Login2.0/locales.d.ts +543 -0
- package/lib/pro/Login2.0/locales.js +646 -0
- package/lib/pro/Login2.0/shared/Header.d.ts +11 -0
- package/lib/pro/Login2.0/shared/Header.js +81 -0
- package/lib/pro/Login2.0/shared/OAuthButtons.d.ts +11 -0
- package/lib/pro/Login2.0/shared/OAuthButtons.js +78 -0
- package/lib/pro/Login2.0/shared/registerFlow.d.ts +116 -0
- package/lib/pro/Login2.0/shared/registerFlow.js +235 -0
- package/lib/pro/Login2.0/shared/types.d.ts +232 -0
- package/lib/pro/{multiDayTimeSelect → Login2.0/shared}/types.js +1 -1
- package/lib/pro/Login2.0/steps/CodeInput.d.ts +24 -0
- package/lib/pro/Login2.0/steps/CodeInput.js +160 -0
- package/lib/pro/Login2.0/steps/EmailAlreadyRegistered.d.ts +12 -0
- package/lib/pro/Login2.0/steps/EmailAlreadyRegistered.js +46 -0
- package/lib/pro/Login2.0/steps/EmailLinkAlreadyUsed.d.ts +7 -0
- package/lib/pro/Login2.0/steps/EmailLinkAlreadyUsed.js +51 -0
- package/lib/pro/Login2.0/steps/EmailLinkExpired.d.ts +9 -0
- package/lib/pro/Login2.0/steps/EmailLinkExpired.js +51 -0
- package/lib/pro/Login2.0/steps/SetPassword.d.ts +19 -0
- package/lib/pro/Login2.0/steps/SetPassword.js +131 -0
- package/lib/pro/Login2.0/steps/VerificationSuccess.d.ts +8 -0
- package/lib/pro/Login2.0/steps/VerificationSuccess.js +49 -0
- package/lib/pro/Login2.0/steps/VerifyingEmailLink.d.ts +7 -0
- package/lib/pro/Login2.0/steps/VerifyingEmailLink.js +41 -0
- package/lib/pro/Login2.0/steps/WaitEmailLink.d.ts +18 -0
- package/lib/pro/Login2.0/steps/WaitEmailLink.js +67 -0
- package/lib/pro/Login2.0/steps/index.d.ts +19 -0
- package/lib/pro/Login2.0/steps/index.js +60 -0
- package/lib/pro/Login2.0/steps/steps.less +423 -0
- package/lib/pro/Login2.0/types.d.ts +167 -0
- package/lib/pro/Login2.0/types.js +17 -0
- package/lib/pro/comprehensiveSearch/components/searchSection/locales.js +3 -3
- package/lib/pro/comprehensiveSearch/locales.js +1 -1
- package/lib/pro/pisellPaymentList/example.d.ts +19 -0
- package/lib/pro/pisellPaymentList/example.js +416 -0
- package/lib/pro/skuDetailModal/types.d.ts +0 -1
- package/lowcode/admin-auth-customer-auth/meta.ts +29 -0
- package/lowcode/admin-auth-customer-oauth-config/meta.ts +55 -0
- package/lowcode/admin-auth-device-auth/meta.ts +30 -0
- package/lowcode/admin-auth-methods/meta.ts +385 -0
- package/lowcode/admin-auth-oauth-config/meta.ts +29 -0
- package/lowcode/admin-auth-online-shop-auth/meta.ts +29 -0
- package/lowcode/admin-auth-org-admin-auth/meta.ts +29 -0
- package/lowcode/admin-auth-pos-operator-auth/meta.ts +30 -0
- package/lowcode/admin-auth-saas-admin-auth/meta.ts +29 -0
- package/lowcode/admin-auth-saas-managerment-auth/meta.ts +30 -0
- package/lowcode/admin-setting-list/meta.ts +125 -0
- package/lowcode/authmodal/meta.ts +395 -0
- package/lowcode/event-select-holder/meta.ts +2 -2
- package/lowcode/login2/CONFIG.md +447 -0
- package/lowcode/login2/TEST_CONFIG.md +324 -0
- package/lowcode/login2/VERIFICATION_METHODS.md +364 -0
- package/lowcode/login2/meta.ts +560 -0
- package/lowcode/login2/snippets.ts +124 -0
- package/lowcode/pro-register/meta.ts +385 -0
- package/lowcode/register2/meta.ts +562 -0
- package/lowcode/register2/snippets.ts +257 -0
- package/lowcode/sortable-wallet-pass-types/meta.ts +267 -0
- package/lowcode/wallet-editor/meta.ts +57 -0
- package/lowcode/wallet-editor/snippets.ts +13 -0
- package/lowcode/wallet-pass-gallery/meta.ts +35 -0
- package/package.json +13 -13
- package/es/components/booking/info2/service/editService/Holder/index.d.ts +0 -12
- package/es/components/booking/info2/service/editService/Holder/index.less +0 -63
- package/es/components/booking/utils/confirmHolderModal.d.ts +0 -13
- package/es/components/booking/utils/confirmHolderModal.js +0 -318
- package/es/components/booking/utils/confirmHolderModal.less +0 -40
- package/es/components/booking/utils/selectHolderModal.d.ts +0 -24
- package/es/components/booking/utils/selectHolderModal.js +0 -407
- package/es/components/ticketBooking/components/addServiceVariant/MultiDayTimeSelectModal.d.ts +0 -18
- package/es/plus/selectHolder/components/ErrorTip/index.d.ts +0 -3
- package/es/plus/selectHolder/components/ErrorTip/index.js +0 -14
- package/es/plus/selectHolder/components/ErrorTip/index.less +0 -51
- package/es/plus/selectHolder/components/HolderItem/index.d.ts +0 -6
- package/es/plus/selectHolder/components/HolderItem/index.js +0 -77
- package/es/plus/selectHolder/components/HolderItem/index.less +0 -105
- package/es/plus/selectHolder/components/HolderList/index.d.ts +0 -30
- package/es/plus/selectHolder/components/HolderList/index.js +0 -43
- package/es/plus/selectHolder/index.d.ts +0 -7
- package/es/plus/selectHolder/index.js +0 -273
- package/es/plus/selectHolder/index.less +0 -137
- package/es/plus/selectHolder/locales.d.ts +0 -24
- package/es/plus/selectHolder/locales.js +0 -29
- package/es/plus/selectHolder/types.d.ts +0 -104
- package/es/plus/selectHolder/utils.d.ts +0 -9
- package/es/plus/selectHolder/utils.js +0 -16
- package/es/pro/multiDayTimeSelect/MultiDayTimeSelect.d.ts +0 -9
- package/es/pro/multiDayTimeSelect/MultiDayTimeSelect.less +0 -8
- package/es/pro/multiDayTimeSelect/index.d.ts +0 -3
- package/es/pro/multiDayTimeSelect/index.js +0 -1
- package/es/pro/multiDayTimeSelect/types.d.ts +0 -28
- package/lib/components/booking/info2/service/editService/Holder/index.d.ts +0 -12
- package/lib/components/booking/info2/service/editService/Holder/index.js +0 -199
- package/lib/components/booking/info2/service/editService/Holder/index.less +0 -63
- package/lib/components/booking/utils/confirmHolderModal.d.ts +0 -13
- package/lib/components/booking/utils/confirmHolderModal.js +0 -253
- package/lib/components/booking/utils/confirmHolderModal.less +0 -40
- package/lib/components/booking/utils/selectHolderModal.d.ts +0 -24
- package/lib/components/booking/utils/selectHolderModal.js +0 -319
- package/lib/components/ticketBooking/components/addServiceVariant/MultiDayTimeSelectModal.d.ts +0 -18
- package/lib/components/ticketBooking/components/addServiceVariant/MultiDayTimeSelectModal.js +0 -118
- package/lib/plus/selectHolder/components/ErrorTip/index.d.ts +0 -3
- package/lib/plus/selectHolder/components/ErrorTip/index.js +0 -30
- package/lib/plus/selectHolder/components/ErrorTip/index.less +0 -51
- package/lib/plus/selectHolder/components/HolderItem/index.d.ts +0 -6
- package/lib/plus/selectHolder/components/HolderItem/index.js +0 -101
- package/lib/plus/selectHolder/components/HolderItem/index.less +0 -105
- package/lib/plus/selectHolder/components/HolderList/index.d.ts +0 -30
- package/lib/plus/selectHolder/index.d.ts +0 -7
- package/lib/plus/selectHolder/index.js +0 -223
- package/lib/plus/selectHolder/index.less +0 -137
- package/lib/plus/selectHolder/locales.d.ts +0 -24
- package/lib/plus/selectHolder/locales.js +0 -47
- package/lib/plus/selectHolder/types.d.ts +0 -104
- package/lib/plus/selectHolder/utils.d.ts +0 -9
- package/lib/pro/multiDayTimeSelect/MultiDayTimeSelect.d.ts +0 -9
- package/lib/pro/multiDayTimeSelect/MultiDayTimeSelect.js +0 -304
- package/lib/pro/multiDayTimeSelect/MultiDayTimeSelect.less +0 -8
- package/lib/pro/multiDayTimeSelect/index.d.ts +0 -3
- package/lib/pro/multiDayTimeSelect/types.d.ts +0 -28
- package/lowcode/select-holder/meta.ts +0 -220
- package/lowcode/select-holder/snippets.ts +0 -41
- package/lowcode/wallet/meta.ts +0 -79
- /package/es/{plus/selectHolder → components/authentication/admin/ChannelAuthSetting/AuthenticationMethods}/types.js +0 -0
- /package/es/{pro/multiDayTimeSelect → components/authentication/admin/ChannelAuthSetting/CollectInfo}/types.js +0 -0
- /package/es/components/{ticketBooking/components/addServiceVariant/MultiDayTimeSelectModal.less → authentication/index.d.ts} +0 -0
- /package/{lib/components/ticketBooking/components/addServiceVariant/MultiDayTimeSelectModal.less → es/components/authentication/index.js} +0 -0
|
@@ -0,0 +1,711 @@
|
|
|
1
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
4
|
+
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
11
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
12
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
13
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
14
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
15
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
16
|
+
import React, { useState, useEffect } from 'react';
|
|
17
|
+
import { Button, Typography, message, Spin } from 'antd';
|
|
18
|
+
import { locales } from '@pisell/utils';
|
|
19
|
+
import AuthMethods from "../AuthMethods";
|
|
20
|
+
import { SettingList } from "../AuthMethods";
|
|
21
|
+
import SettingsDrawer from "../AuthMethods/SettingsDrawer";
|
|
22
|
+
import { getDefaultAuthMethods, getPasswordRulesSetting } from "../AuthMethods/constants";
|
|
23
|
+
import useEngineContext from "../../../../hooks/useEngineContext";
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import localeTextsConfig from "./locales";
|
|
26
|
+
import "./CustomerAuth.less";
|
|
27
|
+
var Title = Typography.Title,
|
|
28
|
+
Paragraph = Typography.Paragraph;
|
|
29
|
+
|
|
30
|
+
// 接口数据类型定义
|
|
31
|
+
|
|
32
|
+
// 使用统一的认证方法定义(将在 locales 初始化后调用)
|
|
33
|
+
var getCustomerAuthMethods = function getCustomerAuthMethods() {
|
|
34
|
+
return getDefaultAuthMethods();
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
// 将接口数据转换为组件数据
|
|
38
|
+
var convertApiDataToComponent = function convertApiDataToComponent(apiData) {
|
|
39
|
+
// 转换认证方法
|
|
40
|
+
var methodsArray = Object.entries(apiData.method).map(function (_ref) {
|
|
41
|
+
var _ref2 = _slicedToArray(_ref, 2),
|
|
42
|
+
key = _ref2[0],
|
|
43
|
+
value = _ref2[1];
|
|
44
|
+
return {
|
|
45
|
+
key: key,
|
|
46
|
+
sort: value.sort,
|
|
47
|
+
enabled: value.enabled,
|
|
48
|
+
setting: value.setting
|
|
49
|
+
};
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
// 按 sort 排序
|
|
53
|
+
methodsArray.sort(function (a, b) {
|
|
54
|
+
return a.sort - b.sort;
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
// 创建认证方法数组
|
|
58
|
+
var authMethods = [];
|
|
59
|
+
var settingsMap = {};
|
|
60
|
+
var processedKeys = new Set();
|
|
61
|
+
methodsArray.forEach(function (_ref3) {
|
|
62
|
+
var key = _ref3.key,
|
|
63
|
+
enabled = _ref3.enabled,
|
|
64
|
+
setting = _ref3.setting;
|
|
65
|
+
processedKeys.add(key);
|
|
66
|
+
if (key === 'email' && setting) {
|
|
67
|
+
// 转换 Email 登录方法
|
|
68
|
+
var loginMethodsArray = Object.entries(setting.login_method).map(function (_ref4) {
|
|
69
|
+
var _ref5 = _slicedToArray(_ref4, 2),
|
|
70
|
+
methodKey = _ref5[0],
|
|
71
|
+
methodValue = _ref5[1];
|
|
72
|
+
return {
|
|
73
|
+
methodKey: methodKey,
|
|
74
|
+
enabled: methodValue.enabled,
|
|
75
|
+
sort: methodValue.sort
|
|
76
|
+
};
|
|
77
|
+
});
|
|
78
|
+
loginMethodsArray.sort(function (a, b) {
|
|
79
|
+
return a.sort - b.sort;
|
|
80
|
+
});
|
|
81
|
+
var loginMethods = loginMethodsArray.map(function (_ref6) {
|
|
82
|
+
var methodKey = _ref6.methodKey,
|
|
83
|
+
enabled = _ref6.enabled;
|
|
84
|
+
var methodMap = {
|
|
85
|
+
password: {
|
|
86
|
+
id: 'password',
|
|
87
|
+
title: locales.getText('auth.login.method.password.title') || 'Password',
|
|
88
|
+
description: locales.getText('auth.login.method.password.email.description') || 'Log in using email and password'
|
|
89
|
+
}
|
|
90
|
+
// link: {
|
|
91
|
+
// id: 'magic-link',
|
|
92
|
+
// title: locales.getText('auth.login.method.magic-link.title') || 'Magic Link',
|
|
93
|
+
// description: locales.getText('auth.login.method.magic-link.description') || 'Send a magic link to email',
|
|
94
|
+
// },
|
|
95
|
+
// code: {
|
|
96
|
+
// id: 'verification-code',
|
|
97
|
+
// title: locales.getText('auth.login.method.verification-code.title') || 'Verification Code',
|
|
98
|
+
// description: locales.getText('auth.login.method.verification-code.description') || 'Send a verification code to email',
|
|
99
|
+
// },
|
|
100
|
+
};
|
|
101
|
+
var method = methodMap[methodKey];
|
|
102
|
+
return {
|
|
103
|
+
id: method.id,
|
|
104
|
+
title: method.title,
|
|
105
|
+
description: method.description,
|
|
106
|
+
enabled: enabled
|
|
107
|
+
};
|
|
108
|
+
});
|
|
109
|
+
var emailMethod = getCustomerAuthMethods().find(function (m) {
|
|
110
|
+
return m.id === 'email';
|
|
111
|
+
});
|
|
112
|
+
authMethods.push(_objectSpread(_objectSpread({}, emailMethod), {}, {
|
|
113
|
+
enabled: enabled
|
|
114
|
+
}));
|
|
115
|
+
settingsMap['email'] = {
|
|
116
|
+
enableRegistration: (setting === null || setting === void 0 ? void 0 : setting.register_enabled) || false,
|
|
117
|
+
verificationType: (setting === null || setting === void 0 ? void 0 : setting.register_method) || 'link',
|
|
118
|
+
loginMethods: loginMethods
|
|
119
|
+
};
|
|
120
|
+
} else if (key === 'phone' && setting) {
|
|
121
|
+
// 转换 Phone 登录方法
|
|
122
|
+
var _loginMethodsArray = Object.entries(setting.login_method).map(function (_ref7) {
|
|
123
|
+
var _ref8 = _slicedToArray(_ref7, 2),
|
|
124
|
+
methodKey = _ref8[0],
|
|
125
|
+
methodValue = _ref8[1];
|
|
126
|
+
return {
|
|
127
|
+
methodKey: methodKey,
|
|
128
|
+
enabled: methodValue.enabled,
|
|
129
|
+
sort: methodValue.sort
|
|
130
|
+
};
|
|
131
|
+
});
|
|
132
|
+
_loginMethodsArray.sort(function (a, b) {
|
|
133
|
+
return a.sort - b.sort;
|
|
134
|
+
});
|
|
135
|
+
var _loginMethods = _loginMethodsArray.map(function (_ref9) {
|
|
136
|
+
var methodKey = _ref9.methodKey,
|
|
137
|
+
enabled = _ref9.enabled;
|
|
138
|
+
var methodMap = {
|
|
139
|
+
password: {
|
|
140
|
+
id: 'password',
|
|
141
|
+
title: locales.getText('auth.login.method.password.title') || 'Password',
|
|
142
|
+
description: locales.getText('auth.login.method.password.phone.description') || 'Log in using phone and password'
|
|
143
|
+
},
|
|
144
|
+
code: {
|
|
145
|
+
id: 'sms',
|
|
146
|
+
title: locales.getText('auth.login.method.sms.title') || 'SMS Code',
|
|
147
|
+
description: locales.getText('auth.login.method.sms.description') || 'Send a verification code via SMS'
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
var method = methodMap[methodKey];
|
|
151
|
+
return {
|
|
152
|
+
id: method.id,
|
|
153
|
+
title: method.title,
|
|
154
|
+
description: method.description,
|
|
155
|
+
enabled: enabled
|
|
156
|
+
};
|
|
157
|
+
});
|
|
158
|
+
var phoneMethod = getCustomerAuthMethods().find(function (m) {
|
|
159
|
+
return m.id === 'phone';
|
|
160
|
+
});
|
|
161
|
+
authMethods.push(_objectSpread(_objectSpread({}, phoneMethod), {}, {
|
|
162
|
+
enabled: enabled
|
|
163
|
+
}));
|
|
164
|
+
settingsMap['phone'] = {
|
|
165
|
+
enableRegistration: (setting === null || setting === void 0 ? void 0 : setting.register_enabled) || false,
|
|
166
|
+
verificationType: 'sms',
|
|
167
|
+
loginMethods: _loginMethods
|
|
168
|
+
};
|
|
169
|
+
} else {
|
|
170
|
+
// 其他认证方法(Facebook, Apple等OAuth方法)
|
|
171
|
+
var method = getCustomerAuthMethods().find(function (m) {
|
|
172
|
+
return m.id === key;
|
|
173
|
+
});
|
|
174
|
+
if (method) {
|
|
175
|
+
authMethods.push(_objectSpread(_objectSpread({}, method), {}, {
|
|
176
|
+
enabled: enabled
|
|
177
|
+
}));
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
// 添加所有在 CUSTOMER_AUTH_METHODS 中定义但 API 未返回的方法
|
|
183
|
+
getCustomerAuthMethods().forEach(function (defaultMethod) {
|
|
184
|
+
if (!processedKeys.has(defaultMethod.id)) {
|
|
185
|
+
authMethods.push(_objectSpread(_objectSpread({}, defaultMethod), {}, {
|
|
186
|
+
enabled: false // 默认未启用
|
|
187
|
+
}));
|
|
188
|
+
}
|
|
189
|
+
});
|
|
190
|
+
|
|
191
|
+
// 转换密码规则
|
|
192
|
+
var passwordSettings = {
|
|
193
|
+
minLength: apiData.password.min_length,
|
|
194
|
+
requireUppercase: apiData.password.require_uppercase_letters,
|
|
195
|
+
requireLowercase: apiData.password.require_lowercase_letters,
|
|
196
|
+
requireNumbers: apiData.password.require_numbers,
|
|
197
|
+
requireSpecialChars: apiData.password.require_special_characters
|
|
198
|
+
};
|
|
199
|
+
return {
|
|
200
|
+
authMethods: authMethods,
|
|
201
|
+
settingsMap: settingsMap,
|
|
202
|
+
passwordSettings: passwordSettings
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
// 将组件数据转换为接口数据
|
|
207
|
+
var convertComponentDataToApi = function convertComponentDataToApi(authMethods, settingsMap, passwordSettings) {
|
|
208
|
+
console.log('convertComponentDataToApi 被调用');
|
|
209
|
+
console.log('authMethods:', authMethods);
|
|
210
|
+
console.log('settingsMap:', settingsMap);
|
|
211
|
+
var method = {};
|
|
212
|
+
authMethods.forEach(function (authMethod, index) {
|
|
213
|
+
console.log("\u5904\u7406 authMethod: ".concat(authMethod.id, ", index: ").concat(index));
|
|
214
|
+
if (authMethod.id === 'email') {
|
|
215
|
+
var emailSettings = settingsMap['email'];
|
|
216
|
+
console.log('email settings:', emailSettings);
|
|
217
|
+
if (emailSettings) {
|
|
218
|
+
var loginMethod = {};
|
|
219
|
+
emailSettings.loginMethods.forEach(function (loginMethodItem, loginIndex) {
|
|
220
|
+
var methodKeyMap = {
|
|
221
|
+
'password': 'password',
|
|
222
|
+
'magic-link': 'link',
|
|
223
|
+
'verification-code': 'code'
|
|
224
|
+
};
|
|
225
|
+
var apiKey = methodKeyMap[loginMethodItem.id];
|
|
226
|
+
loginMethod[apiKey] = {
|
|
227
|
+
enabled: loginMethodItem.enabled,
|
|
228
|
+
sort: loginIndex + 1
|
|
229
|
+
};
|
|
230
|
+
});
|
|
231
|
+
method['email'] = {
|
|
232
|
+
sort: index + 1,
|
|
233
|
+
enabled: authMethod.enabled,
|
|
234
|
+
setting: {
|
|
235
|
+
register_enabled: emailSettings.enableRegistration,
|
|
236
|
+
register_method: emailSettings.verificationType,
|
|
237
|
+
login_method: loginMethod
|
|
238
|
+
}
|
|
239
|
+
};
|
|
240
|
+
console.log('添加了 email 到 method');
|
|
241
|
+
} else {
|
|
242
|
+
console.log('email settings 不存在,跳过');
|
|
243
|
+
}
|
|
244
|
+
} else if (authMethod.id === 'phone') {
|
|
245
|
+
var phoneSettings = settingsMap['phone'];
|
|
246
|
+
console.log('phone settings:', phoneSettings);
|
|
247
|
+
if (phoneSettings) {
|
|
248
|
+
var _loginMethod = {};
|
|
249
|
+
phoneSettings.loginMethods.forEach(function (loginMethodItem, loginIndex) {
|
|
250
|
+
var methodKeyMap = {
|
|
251
|
+
'password': 'password',
|
|
252
|
+
'sms': 'code'
|
|
253
|
+
};
|
|
254
|
+
var apiKey = methodKeyMap[loginMethodItem.id];
|
|
255
|
+
_loginMethod[apiKey] = {
|
|
256
|
+
enabled: loginMethodItem.enabled,
|
|
257
|
+
sort: loginIndex + 1
|
|
258
|
+
};
|
|
259
|
+
});
|
|
260
|
+
method['phone'] = {
|
|
261
|
+
sort: index + 1,
|
|
262
|
+
enabled: authMethod.enabled,
|
|
263
|
+
setting: {
|
|
264
|
+
register_enabled: phoneSettings.enableRegistration,
|
|
265
|
+
register_method: 'code',
|
|
266
|
+
login_method: _loginMethod
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
console.log('添加了 phone 到 method');
|
|
270
|
+
} else {
|
|
271
|
+
console.log('phone settings 不存在,跳过');
|
|
272
|
+
}
|
|
273
|
+
} else {
|
|
274
|
+
// 其他认证方法(Facebook, Apple等OAuth方法)
|
|
275
|
+
method[authMethod.id] = {
|
|
276
|
+
sort: index + 1,
|
|
277
|
+
enabled: authMethod.enabled
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
});
|
|
281
|
+
console.log('最终的 method 对象:', method);
|
|
282
|
+
return {
|
|
283
|
+
method: method,
|
|
284
|
+
password: {
|
|
285
|
+
min_length: passwordSettings.minLength,
|
|
286
|
+
require_uppercase_letters: passwordSettings.requireUppercase,
|
|
287
|
+
require_lowercase_letters: passwordSettings.requireLowercase,
|
|
288
|
+
require_numbers: passwordSettings.requireNumbers,
|
|
289
|
+
require_special_characters: passwordSettings.requireSpecialChars
|
|
290
|
+
}
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
var CustomerAuth = function CustomerAuth(_ref10) {
|
|
294
|
+
var className = _ref10.className,
|
|
295
|
+
style = _ref10.style,
|
|
296
|
+
onSave = _ref10.onSave;
|
|
297
|
+
var context = useEngineContext();
|
|
298
|
+
var app = context.appHelper.utils.getApp();
|
|
299
|
+
var _context$appHelper$ut = context.appHelper.utils.getApp(),
|
|
300
|
+
request = _context$appHelper$ut.request,
|
|
301
|
+
data = _context$appHelper$ut.data,
|
|
302
|
+
history = _context$appHelper$ut.history;
|
|
303
|
+
var dataKey = 'auth.customer';
|
|
304
|
+
var _useState = useState(null),
|
|
305
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
306
|
+
tenantId = _useState2[0],
|
|
307
|
+
setTenantId = _useState2[1];
|
|
308
|
+
var _useState3 = useState(true),
|
|
309
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
310
|
+
loading = _useState4[0],
|
|
311
|
+
setLoading = _useState4[1];
|
|
312
|
+
var _useState5 = useState([]),
|
|
313
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
314
|
+
authMethods = _useState6[0],
|
|
315
|
+
setAuthMethods = _useState6[1];
|
|
316
|
+
var _useState7 = useState({}),
|
|
317
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
318
|
+
settingsMap = _useState8[0],
|
|
319
|
+
setSettingsMap = _useState8[1];
|
|
320
|
+
var _useState9 = useState({
|
|
321
|
+
minLength: 8,
|
|
322
|
+
requireUppercase: false,
|
|
323
|
+
requireLowercase: false,
|
|
324
|
+
requireNumbers: false,
|
|
325
|
+
requireSpecialChars: false
|
|
326
|
+
}),
|
|
327
|
+
_useState10 = _slicedToArray(_useState9, 2),
|
|
328
|
+
passwordSettings = _useState10[0],
|
|
329
|
+
setPasswordSettings = _useState10[1];
|
|
330
|
+
var _useState11 = useState(false),
|
|
331
|
+
_useState12 = _slicedToArray(_useState11, 2),
|
|
332
|
+
localesInitialized = _useState12[0],
|
|
333
|
+
setLocalesInitialized = _useState12[1];
|
|
334
|
+
|
|
335
|
+
// 初始化 locales
|
|
336
|
+
useEffect(function () {
|
|
337
|
+
var _context$engine;
|
|
338
|
+
console.log('app_init_customer_auth', app, context, data.storage);
|
|
339
|
+
locales.init(localeTextsConfig, (context === null || context === void 0 || (_context$engine = context.engine) === null || _context$engine === void 0 || (_context$engine = _context$engine.props) === null || _context$engine === void 0 ? void 0 : _context$engine.locale) || 'en');
|
|
340
|
+
setLocalesInitialized(true); // 标记 locales 已初始化,触发重新渲染
|
|
341
|
+
}, []);
|
|
342
|
+
|
|
343
|
+
// 解析 coreData 并设置 tenantId
|
|
344
|
+
useEffect(function () {
|
|
345
|
+
var coreData = data.storage.getStorage('core');
|
|
346
|
+
if (coreData) {
|
|
347
|
+
try {
|
|
348
|
+
var _coreDataJson$tenant;
|
|
349
|
+
var coreDataJson = JSON.parse(coreData);
|
|
350
|
+
if (coreDataJson !== null && coreDataJson !== void 0 && (_coreDataJson$tenant = coreDataJson.tenant) !== null && _coreDataJson$tenant !== void 0 && _coreDataJson$tenant.id) {
|
|
351
|
+
setTenantId(coreDataJson.tenant.id);
|
|
352
|
+
}
|
|
353
|
+
} catch (error) {
|
|
354
|
+
console.error('Error parsing core data:', error);
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}, [data.storage]);
|
|
358
|
+
|
|
359
|
+
// 检查 OAuth 配置状态
|
|
360
|
+
var checkOAuthConfigStatus = /*#__PURE__*/function () {
|
|
361
|
+
var _ref11 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(providerId) {
|
|
362
|
+
var dataKey, _res$data, _res$data$, res, configData, hasValidValue;
|
|
363
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
364
|
+
while (1) switch (_context.prev = _context.next) {
|
|
365
|
+
case 0:
|
|
366
|
+
if (tenantId) {
|
|
367
|
+
_context.next = 2;
|
|
368
|
+
break;
|
|
369
|
+
}
|
|
370
|
+
return _context.abrupt("return", false);
|
|
371
|
+
case 2:
|
|
372
|
+
dataKey = "auth.oauth.".concat(providerId);
|
|
373
|
+
_context.prev = 3;
|
|
374
|
+
_context.next = 6;
|
|
375
|
+
return request.get("/tenant/core/meta?key=".concat(dataKey, "&metable_type=tenant&metable_id=").concat(tenantId));
|
|
376
|
+
case 6:
|
|
377
|
+
res = _context.sent;
|
|
378
|
+
if (!((res === null || res === void 0 || (_res$data = res.data) === null || _res$data === void 0 ? void 0 : _res$data.length) > 0 && (_res$data$ = res.data[0]) !== null && _res$data$ !== void 0 && _res$data$.value)) {
|
|
379
|
+
_context.next = 13;
|
|
380
|
+
break;
|
|
381
|
+
}
|
|
382
|
+
configData = res.data[0].value; // 检查配置对象是否有有效的值
|
|
383
|
+
if (!(_typeof(configData) === 'object' && configData !== null)) {
|
|
384
|
+
_context.next = 12;
|
|
385
|
+
break;
|
|
386
|
+
}
|
|
387
|
+
hasValidValue = Object.values(configData).some(function (val) {
|
|
388
|
+
return val !== null && val !== undefined && val !== '';
|
|
389
|
+
});
|
|
390
|
+
return _context.abrupt("return", hasValidValue);
|
|
391
|
+
case 12:
|
|
392
|
+
return _context.abrupt("return", !!configData);
|
|
393
|
+
case 13:
|
|
394
|
+
return _context.abrupt("return", false);
|
|
395
|
+
case 16:
|
|
396
|
+
_context.prev = 16;
|
|
397
|
+
_context.t0 = _context["catch"](3);
|
|
398
|
+
console.error("Error checking ".concat(providerId, " OAuth config:"), _context.t0);
|
|
399
|
+
return _context.abrupt("return", false);
|
|
400
|
+
case 20:
|
|
401
|
+
case "end":
|
|
402
|
+
return _context.stop();
|
|
403
|
+
}
|
|
404
|
+
}, _callee, null, [[3, 16]]);
|
|
405
|
+
}));
|
|
406
|
+
return function checkOAuthConfigStatus(_x) {
|
|
407
|
+
return _ref11.apply(this, arguments);
|
|
408
|
+
};
|
|
409
|
+
}();
|
|
410
|
+
|
|
411
|
+
// 当 tenantId 存在且变更时,发送请求获取数据
|
|
412
|
+
useEffect(function () {
|
|
413
|
+
if (tenantId) {
|
|
414
|
+
setLoading(true);
|
|
415
|
+
request.get("/tenant/core/meta?key=".concat(dataKey, "&metable_type=tenant&metable_id=").concat(tenantId)).then( /*#__PURE__*/function () {
|
|
416
|
+
var _ref12 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(res) {
|
|
417
|
+
var _res$data2;
|
|
418
|
+
var _res$data$2, _data, _convertApiDataToComp, convertedAuthMethods, convertedSettingsMap, convertedPasswordSettings, updatedAuthMethods;
|
|
419
|
+
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
420
|
+
while (1) switch (_context3.prev = _context3.next) {
|
|
421
|
+
case 0:
|
|
422
|
+
console.log('res_customer_auth_methods', res);
|
|
423
|
+
if (!(res !== null && res !== void 0 && (_res$data2 = res.data) !== null && _res$data2 !== void 0 && _res$data2.length)) {
|
|
424
|
+
_context3.next = 13;
|
|
425
|
+
break;
|
|
426
|
+
}
|
|
427
|
+
_data = (_res$data$2 = res.data[0]) === null || _res$data$2 === void 0 ? void 0 : _res$data$2.value;
|
|
428
|
+
_convertApiDataToComp = convertApiDataToComponent(_data), convertedAuthMethods = _convertApiDataToComp.authMethods, convertedSettingsMap = _convertApiDataToComp.settingsMap, convertedPasswordSettings = _convertApiDataToComp.passwordSettings; // 检查 OAuth 方法的配置状态
|
|
429
|
+
_context3.next = 6;
|
|
430
|
+
return Promise.all(convertedAuthMethods.map( /*#__PURE__*/function () {
|
|
431
|
+
var _ref13 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(method) {
|
|
432
|
+
var isConfigured;
|
|
433
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
434
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
435
|
+
case 0:
|
|
436
|
+
if (!method.requiresOAuthConfig) {
|
|
437
|
+
_context2.next = 5;
|
|
438
|
+
break;
|
|
439
|
+
}
|
|
440
|
+
_context2.next = 3;
|
|
441
|
+
return checkOAuthConfigStatus(method.id);
|
|
442
|
+
case 3:
|
|
443
|
+
isConfigured = _context2.sent;
|
|
444
|
+
return _context2.abrupt("return", _objectSpread(_objectSpread({}, method), {}, {
|
|
445
|
+
enabled: isConfigured ? method.enabled : false
|
|
446
|
+
}));
|
|
447
|
+
case 5:
|
|
448
|
+
return _context2.abrupt("return", method);
|
|
449
|
+
case 6:
|
|
450
|
+
case "end":
|
|
451
|
+
return _context2.stop();
|
|
452
|
+
}
|
|
453
|
+
}, _callee2);
|
|
454
|
+
}));
|
|
455
|
+
return function (_x3) {
|
|
456
|
+
return _ref13.apply(this, arguments);
|
|
457
|
+
};
|
|
458
|
+
}()));
|
|
459
|
+
case 6:
|
|
460
|
+
updatedAuthMethods = _context3.sent;
|
|
461
|
+
setAuthMethods(updatedAuthMethods);
|
|
462
|
+
setSettingsMap(convertedSettingsMap);
|
|
463
|
+
setPasswordSettings(convertedPasswordSettings);
|
|
464
|
+
console.log('Converted data:', {
|
|
465
|
+
authMethods: updatedAuthMethods,
|
|
466
|
+
convertedSettingsMap: convertedSettingsMap,
|
|
467
|
+
convertedPasswordSettings: convertedPasswordSettings
|
|
468
|
+
});
|
|
469
|
+
_context3.next = 14;
|
|
470
|
+
break;
|
|
471
|
+
case 13:
|
|
472
|
+
// 如果没有数据,使用默认值
|
|
473
|
+
setAuthMethods(getCustomerAuthMethods());
|
|
474
|
+
case 14:
|
|
475
|
+
setLoading(false);
|
|
476
|
+
case 15:
|
|
477
|
+
case "end":
|
|
478
|
+
return _context3.stop();
|
|
479
|
+
}
|
|
480
|
+
}, _callee3);
|
|
481
|
+
}));
|
|
482
|
+
return function (_x2) {
|
|
483
|
+
return _ref12.apply(this, arguments);
|
|
484
|
+
};
|
|
485
|
+
}()).catch(function (error) {
|
|
486
|
+
console.error('Error fetching tenant data:', error);
|
|
487
|
+
// 即使出错,也使用默认值
|
|
488
|
+
setAuthMethods(getCustomerAuthMethods());
|
|
489
|
+
setLoading(false);
|
|
490
|
+
});
|
|
491
|
+
}
|
|
492
|
+
}, [tenantId, request]);
|
|
493
|
+
var _useState13 = useState(false),
|
|
494
|
+
_useState14 = _slicedToArray(_useState13, 2),
|
|
495
|
+
drawerOpen = _useState14[0],
|
|
496
|
+
setDrawerOpen = _useState14[1];
|
|
497
|
+
var _useState15 = useState(null),
|
|
498
|
+
_useState16 = _slicedToArray(_useState15, 2),
|
|
499
|
+
selectedMethod = _useState16[0],
|
|
500
|
+
setSelectedMethod = _useState16[1];
|
|
501
|
+
var handleAuthMethodsOrderChange = function handleAuthMethodsOrderChange(methods) {
|
|
502
|
+
setAuthMethods(methods);
|
|
503
|
+
};
|
|
504
|
+
var handleAuthMethodToggle = function handleAuthMethodToggle(method, enabled) {
|
|
505
|
+
console.log('Auth method toggled:', method.id, enabled);
|
|
506
|
+
|
|
507
|
+
// 更新 authMethods 中对应方法的 enabled 状态
|
|
508
|
+
setAuthMethods(function (prevMethods) {
|
|
509
|
+
return prevMethods.map(function (m) {
|
|
510
|
+
return m.id === method.id ? _objectSpread(_objectSpread({}, m), {}, {
|
|
511
|
+
enabled: enabled
|
|
512
|
+
}) : m;
|
|
513
|
+
});
|
|
514
|
+
});
|
|
515
|
+
};
|
|
516
|
+
var handleAuthMethodSettings = function handleAuthMethodSettings(method) {
|
|
517
|
+
setSelectedMethod(method);
|
|
518
|
+
setDrawerOpen(true);
|
|
519
|
+
};
|
|
520
|
+
var handlePasswordSettings = function handlePasswordSettings(method) {
|
|
521
|
+
setSelectedMethod(method);
|
|
522
|
+
setDrawerOpen(true);
|
|
523
|
+
};
|
|
524
|
+
var handleConfigClick = function handleConfigClick(method) {
|
|
525
|
+
console.log('Config link clicked:', method.id);
|
|
526
|
+
// 导航到OAuth配置页面
|
|
527
|
+
history.push('/system-settings/auth/oauth-config');
|
|
528
|
+
};
|
|
529
|
+
var handleDrawerClose = function handleDrawerClose() {
|
|
530
|
+
setDrawerOpen(false);
|
|
531
|
+
setSelectedMethod(null);
|
|
532
|
+
};
|
|
533
|
+
|
|
534
|
+
// 保存到接口的通用方法
|
|
535
|
+
var saveToApi = function saveToApi(currentAuthMethods, currentSettingsMap, currentPasswordSettings) {
|
|
536
|
+
console.log('=== 开始保存到接口 ===');
|
|
537
|
+
console.log('authMethods:', currentAuthMethods);
|
|
538
|
+
console.log('settingsMap:', currentSettingsMap);
|
|
539
|
+
|
|
540
|
+
// 确保 settingsMap 包含所有认证方法的默认设置
|
|
541
|
+
var completeSettingsMap = _objectSpread({}, currentSettingsMap);
|
|
542
|
+
currentAuthMethods.forEach(function (method) {
|
|
543
|
+
console.log("\u68C0\u67E5 method: ".concat(method.id, ", \u5F53\u524D\u6709\u8BBE\u7F6E: ").concat(!!completeSettingsMap[method.id]));
|
|
544
|
+
if (!completeSettingsMap[method.id]) {
|
|
545
|
+
if (method.id === 'email') {
|
|
546
|
+
console.log('添加 email 默认设置');
|
|
547
|
+
completeSettingsMap['email'] = {
|
|
548
|
+
enableRegistration: true,
|
|
549
|
+
verificationType: 'link',
|
|
550
|
+
loginMethods: [{
|
|
551
|
+
id: 'password',
|
|
552
|
+
title: locales.getText('auth.login.method.password.title') || 'Password',
|
|
553
|
+
description: locales.getText('auth.login.method.password.email.description') || 'Log in using email and password',
|
|
554
|
+
enabled: true
|
|
555
|
+
}
|
|
556
|
+
// {
|
|
557
|
+
// id: 'magic-link',
|
|
558
|
+
// title: locales.getText('auth.login.method.magic-link.title') || 'Magic Link',
|
|
559
|
+
// description: locales.getText('auth.login.method.magic-link.description') || 'Send a magic link to email',
|
|
560
|
+
// enabled: true
|
|
561
|
+
// },
|
|
562
|
+
// {
|
|
563
|
+
// id: 'verification-code',
|
|
564
|
+
// title: locales.getText('auth.login.method.verification-code.title') || 'Verification Code',
|
|
565
|
+
// description: locales.getText('auth.login.method.verification-code.description') || 'Send a verification code to email',
|
|
566
|
+
// enabled: false
|
|
567
|
+
// },
|
|
568
|
+
]
|
|
569
|
+
};
|
|
570
|
+
} else if (method.id === 'phone') {
|
|
571
|
+
console.log('添加 phone 默认设置');
|
|
572
|
+
completeSettingsMap['phone'] = {
|
|
573
|
+
enableRegistration: true,
|
|
574
|
+
verificationType: 'sms',
|
|
575
|
+
loginMethods: [{
|
|
576
|
+
id: 'password',
|
|
577
|
+
title: locales.getText('auth.login.method.password.title') || 'Password',
|
|
578
|
+
description: locales.getText('auth.login.method.password.phone.description') || 'Log in using phone and password',
|
|
579
|
+
enabled: true
|
|
580
|
+
}, {
|
|
581
|
+
id: 'sms',
|
|
582
|
+
title: locales.getText('auth.login.method.sms.title') || 'SMS Code',
|
|
583
|
+
description: locales.getText('auth.login.method.sms.description') || 'Send a verification code via SMS',
|
|
584
|
+
enabled: true
|
|
585
|
+
}]
|
|
586
|
+
};
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
});
|
|
590
|
+
console.log('完整的 settingsMap:', completeSettingsMap);
|
|
591
|
+
|
|
592
|
+
// 将组件数据转换为接口数据
|
|
593
|
+
var apiData = convertComponentDataToApi(currentAuthMethods, completeSettingsMap, currentPasswordSettings);
|
|
594
|
+
|
|
595
|
+
// 打印转换后的接口数据
|
|
596
|
+
console.log('=== 保存的接口数据 ===');
|
|
597
|
+
console.log(JSON.stringify(apiData, null, 2));
|
|
598
|
+
onSave === null || onSave === void 0 || onSave(currentAuthMethods, {});
|
|
599
|
+
request.post("/tenant/core/meta/tenant/".concat(tenantId), _defineProperty({}, dataKey, apiData)).then(function (res) {
|
|
600
|
+
console.log('res_customer_auth_save', res);
|
|
601
|
+
message.success(locales.getText('auth.save.success') || '保存成功');
|
|
602
|
+
}).catch(function (error) {
|
|
603
|
+
console.error('Error saving tenant data:', error);
|
|
604
|
+
message.error(locales.getText('auth.save.error') || '保存失败');
|
|
605
|
+
});
|
|
606
|
+
};
|
|
607
|
+
var handleSettingsSave = function handleSettingsSave(settings) {
|
|
608
|
+
console.log('Settings saved:', settings);
|
|
609
|
+
|
|
610
|
+
// 根据当前选中的方法类型保存设置
|
|
611
|
+
var updatedSettingsMap = _objectSpread({}, settingsMap);
|
|
612
|
+
var updatedPasswordSettings = _objectSpread({}, passwordSettings);
|
|
613
|
+
if (selectedMethod) {
|
|
614
|
+
if (selectedMethod.id === 'email') {
|
|
615
|
+
updatedSettingsMap = _objectSpread(_objectSpread({}, updatedSettingsMap), {}, {
|
|
616
|
+
email: settings
|
|
617
|
+
});
|
|
618
|
+
setSettingsMap(updatedSettingsMap);
|
|
619
|
+
} else if (selectedMethod.id === 'phone') {
|
|
620
|
+
updatedSettingsMap = _objectSpread(_objectSpread({}, updatedSettingsMap), {}, {
|
|
621
|
+
phone: settings
|
|
622
|
+
});
|
|
623
|
+
setSettingsMap(updatedSettingsMap);
|
|
624
|
+
} else if (selectedMethod.id === 'customer_password_rules') {
|
|
625
|
+
updatedPasswordSettings = settings;
|
|
626
|
+
setPasswordSettings(updatedPasswordSettings);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
// 立即触发接口保存
|
|
631
|
+
saveToApi(authMethods, updatedSettingsMap, updatedPasswordSettings);
|
|
632
|
+
};
|
|
633
|
+
var handleSave = function handleSave() {
|
|
634
|
+
saveToApi(authMethods, settingsMap, passwordSettings);
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
// 显示加载状态
|
|
638
|
+
if (loading) {
|
|
639
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
640
|
+
className: "customer-auth ".concat(className || ''),
|
|
641
|
+
style: _objectSpread(_objectSpread({}, style), {}, {
|
|
642
|
+
display: 'flex',
|
|
643
|
+
justifyContent: 'center',
|
|
644
|
+
alignItems: 'center',
|
|
645
|
+
minHeight: '400px'
|
|
646
|
+
})
|
|
647
|
+
}, /*#__PURE__*/React.createElement(Spin, {
|
|
648
|
+
size: "large"
|
|
649
|
+
}));
|
|
650
|
+
}
|
|
651
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
652
|
+
className: "customer-auth ".concat(className || ''),
|
|
653
|
+
style: style
|
|
654
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
655
|
+
className: "customer-auth-header"
|
|
656
|
+
}, /*#__PURE__*/React.createElement(Title, {
|
|
657
|
+
level: 1,
|
|
658
|
+
className: "customer-auth-title"
|
|
659
|
+
}, locales.getText('customer.auth.title')), /*#__PURE__*/React.createElement(Paragraph, {
|
|
660
|
+
className: "customer-auth-description"
|
|
661
|
+
}, locales.getText('customer.auth.description'))), /*#__PURE__*/React.createElement("div", {
|
|
662
|
+
className: "customer-auth-section"
|
|
663
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
664
|
+
className: "customer-auth-section-layout"
|
|
665
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
666
|
+
className: "customer-auth-section-header"
|
|
667
|
+
}, /*#__PURE__*/React.createElement(Title, {
|
|
668
|
+
level: 2,
|
|
669
|
+
className: "customer-auth-section-title"
|
|
670
|
+
}, locales.getText('customer.auth.methods.title')), /*#__PURE__*/React.createElement(Paragraph, {
|
|
671
|
+
className: "customer-auth-section-description"
|
|
672
|
+
}, locales.getText('customer.auth.methods.description'))), /*#__PURE__*/React.createElement("div", {
|
|
673
|
+
className: "customer-auth-section-content"
|
|
674
|
+
}, /*#__PURE__*/React.createElement(AuthMethods, {
|
|
675
|
+
methods: authMethods,
|
|
676
|
+
onOrderChange: handleAuthMethodsOrderChange,
|
|
677
|
+
onToggle: handleAuthMethodToggle,
|
|
678
|
+
onSettings: handleAuthMethodSettings,
|
|
679
|
+
onConfigClick: handleConfigClick
|
|
680
|
+
})))), /*#__PURE__*/React.createElement("div", {
|
|
681
|
+
className: "customer-auth-section"
|
|
682
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
683
|
+
className: "customer-auth-section-layout"
|
|
684
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
685
|
+
className: "customer-auth-section-header"
|
|
686
|
+
}, /*#__PURE__*/React.createElement(Title, {
|
|
687
|
+
level: 2,
|
|
688
|
+
className: "customer-auth-section-title"
|
|
689
|
+
}, locales.getText('customer.password.settings.title')), /*#__PURE__*/React.createElement(Paragraph, {
|
|
690
|
+
className: "customer-auth-section-description"
|
|
691
|
+
}, locales.getText('customer.password.settings.description'))), /*#__PURE__*/React.createElement("div", {
|
|
692
|
+
className: "customer-auth-section-content"
|
|
693
|
+
}, /*#__PURE__*/React.createElement(SettingList, {
|
|
694
|
+
methods: getPasswordRulesSetting('customer_password_rules'),
|
|
695
|
+
onSettings: handlePasswordSettings
|
|
696
|
+
})))), /*#__PURE__*/React.createElement("div", {
|
|
697
|
+
className: "customer-auth-footer"
|
|
698
|
+
}, /*#__PURE__*/React.createElement(Button, {
|
|
699
|
+
type: "primary",
|
|
700
|
+
size: "large",
|
|
701
|
+
onClick: handleSave
|
|
702
|
+
}, locales.getText('auth.button.save'))), /*#__PURE__*/React.createElement(SettingsDrawer, {
|
|
703
|
+
open: drawerOpen,
|
|
704
|
+
method: selectedMethod,
|
|
705
|
+
onClose: handleDrawerClose,
|
|
706
|
+
onSave: handleSettingsSave,
|
|
707
|
+
mode: "auth-methods",
|
|
708
|
+
initialSettings: selectedMethod ? selectedMethod.id === 'customer_password_rules' ? passwordSettings : settingsMap[selectedMethod.id] : undefined
|
|
709
|
+
}));
|
|
710
|
+
};
|
|
711
|
+
export default CustomerAuth;
|