@pisell/private-materials 6.2.50 → 6.2.52

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.
Files changed (836) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.js +2 -2
  6. package/build/lowcode/preview.js +145 -143
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +24 -9
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +24 -9
  11. package/es/components/Sales/Event/Detail.js +4 -3
  12. package/es/components/appointmentBooking/components/Cart/Item/index.d.ts +1 -1
  13. package/es/components/appointmentBooking/components/Cart/Item/index.js +3 -2
  14. package/es/components/appointmentBooking/components/ConfirmInformation/index.js +273 -76
  15. package/es/components/appointmentBooking/components/ConfirmInformation/index.less +15 -0
  16. package/es/components/appointmentBooking/components/Services/index.js +22 -8
  17. package/es/components/appointmentBooking/hooks.d.ts +1 -0
  18. package/es/components/appointmentBooking/hooks.js +35 -30
  19. package/es/components/appointmentBooking/locales.d.ts +3 -0
  20. package/es/components/appointmentBooking/locales.js +9 -6
  21. package/es/components/authentication/admin/AuthMethods/AuthMethods.less +136 -0
  22. package/es/components/authentication/admin/AuthMethods/SettingList.d.ts +5 -0
  23. package/es/components/authentication/admin/AuthMethods/SettingList.js +62 -0
  24. package/es/components/authentication/admin/AuthMethods/SettingList.less +85 -0
  25. package/es/components/authentication/admin/AuthMethods/SettingsDrawer.d.ts +22 -0
  26. package/es/components/authentication/admin/AuthMethods/SettingsDrawer.js +121 -0
  27. package/es/components/authentication/admin/AuthMethods/SettingsDrawer.less +163 -0
  28. package/es/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.d.ts +11 -0
  29. package/es/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.js +15 -0
  30. package/es/components/authentication/admin/AuthMethods/components/EmailSettingsContent.d.ts +13 -0
  31. package/es/components/authentication/admin/AuthMethods/components/EmailSettingsContent.js +152 -0
  32. package/es/components/authentication/admin/AuthMethods/components/LoginMethodsList.d.ts +13 -0
  33. package/es/components/authentication/admin/AuthMethods/components/LoginMethodsList.js +114 -0
  34. package/es/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.d.ts +14 -0
  35. package/es/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.js +170 -0
  36. package/es/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.d.ts +13 -0
  37. package/es/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.js +116 -0
  38. package/es/components/authentication/admin/AuthMethods/components/index.d.ts +10 -0
  39. package/es/components/authentication/admin/AuthMethods/components/index.js +5 -0
  40. package/es/components/authentication/admin/AuthMethods/constants.d.ts +22 -0
  41. package/es/components/authentication/admin/AuthMethods/constants.js +121 -0
  42. package/es/components/authentication/admin/AuthMethods/index.d.ts +8 -0
  43. package/es/components/authentication/admin/AuthMethods/index.js +233 -0
  44. package/es/components/authentication/admin/AuthMethods/locales.d.ts +249 -0
  45. package/es/components/authentication/admin/AuthMethods/locales.js +290 -0
  46. package/es/components/authentication/admin/AuthMethods/types.d.ts +76 -0
  47. package/es/components/authentication/admin/AuthMethods/types.js +23 -0
  48. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/AuthenticationMethods.less +231 -0
  49. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +6 -0
  50. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.js +447 -0
  51. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +84 -0
  52. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.js +107 -0
  53. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +41 -0
  54. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.js +1 -0
  55. package/es/components/authentication/admin/ChannelAuthSetting/ChannelAuthSetting.less +111 -0
  56. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/CollectInfo.less +259 -0
  57. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +6 -0
  58. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.js +530 -0
  59. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +72 -0
  60. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.js +86 -0
  61. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +33 -0
  62. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.js +1 -0
  63. package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +6 -0
  64. package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.js +460 -0
  65. package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.less +111 -0
  66. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/PageSetting.less +105 -0
  67. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/index.d.ts +8 -0
  68. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/index.js +185 -0
  69. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +27 -0
  70. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.js +32 -0
  71. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/types.d.ts +25 -0
  72. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/types.js +1 -0
  73. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/PageSettingItem.less +272 -0
  74. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +8 -0
  75. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.js +214 -0
  76. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +66 -0
  77. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.js +71 -0
  78. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +26 -0
  79. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.js +1 -0
  80. package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +6 -0
  81. package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.js +287 -0
  82. package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.less +111 -0
  83. package/es/components/authentication/admin/ChannelAuthSetting/index.d.ts +6 -0
  84. package/es/components/authentication/admin/ChannelAuthSetting/index.js +228 -0
  85. package/es/components/authentication/admin/ChannelAuthSetting/locales.d.ts +39 -0
  86. package/es/components/authentication/admin/ChannelAuthSetting/locales.js +50 -0
  87. package/es/components/authentication/admin/ChannelAuthSetting/types.d.ts +36 -0
  88. package/es/components/authentication/admin/ChannelAuthSetting/types.js +1 -0
  89. package/es/components/authentication/admin/CustomerAuth/CustomerAuth.less +104 -0
  90. package/es/components/authentication/admin/CustomerAuth/index.d.ts +6 -0
  91. package/es/components/authentication/admin/CustomerAuth/index.js +711 -0
  92. package/es/components/authentication/admin/CustomerAuth/locales.d.ts +66 -0
  93. package/es/components/authentication/admin/CustomerAuth/locales.js +86 -0
  94. package/es/components/authentication/admin/CustomerAuth/types.d.ts +16 -0
  95. package/es/components/authentication/admin/CustomerAuth/types.js +1 -0
  96. package/es/components/authentication/admin/CustomerOAuthConfig/CustomerOAuthConfig.less +164 -0
  97. package/es/components/authentication/admin/CustomerOAuthConfig/index.d.ts +6 -0
  98. package/es/components/authentication/admin/CustomerOAuthConfig/index.js +545 -0
  99. package/es/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +108 -0
  100. package/es/components/authentication/admin/CustomerOAuthConfig/locales.js +137 -0
  101. package/es/components/authentication/admin/CustomerOAuthConfig/types.d.ts +22 -0
  102. package/es/components/authentication/admin/CustomerOAuthConfig/types.js +1 -0
  103. package/es/components/authentication/admin/DeviceAuth/DeviceAuth.less +104 -0
  104. package/es/components/authentication/admin/DeviceAuth/index.d.ts +6 -0
  105. package/es/components/authentication/admin/DeviceAuth/index.js +366 -0
  106. package/es/components/authentication/admin/DeviceAuth/locales.d.ts +57 -0
  107. package/es/components/authentication/admin/DeviceAuth/locales.js +74 -0
  108. package/es/components/authentication/admin/DeviceAuth/types.d.ts +16 -0
  109. package/es/components/authentication/admin/DeviceAuth/types.js +1 -0
  110. package/es/components/authentication/admin/OAuthConfig/OAuthConfig.less +165 -0
  111. package/es/components/authentication/admin/OAuthConfig/index.d.ts +6 -0
  112. package/es/components/authentication/admin/OAuthConfig/index.js +347 -0
  113. package/es/components/authentication/admin/OAuthConfig/locales.d.ts +90 -0
  114. package/es/components/authentication/admin/OAuthConfig/locales.js +116 -0
  115. package/es/components/authentication/admin/OAuthConfig/types.d.ts +22 -0
  116. package/es/components/authentication/admin/OAuthConfig/types.js +1 -0
  117. package/es/components/authentication/admin/OrgAdminAuth/OrgAdminAuth.less +104 -0
  118. package/es/components/authentication/admin/OrgAdminAuth/index.d.ts +6 -0
  119. package/es/components/authentication/admin/OrgAdminAuth/index.js +543 -0
  120. package/es/components/authentication/admin/OrgAdminAuth/locales.d.ts +54 -0
  121. package/es/components/authentication/admin/OrgAdminAuth/locales.js +74 -0
  122. package/es/components/authentication/admin/OrgAdminAuth/types.d.ts +16 -0
  123. package/es/components/authentication/admin/OrgAdminAuth/types.js +1 -0
  124. package/es/components/authentication/admin/POSOperatorAuth/POSOperatorAuth.less +104 -0
  125. package/es/components/authentication/admin/POSOperatorAuth/index.d.ts +6 -0
  126. package/es/components/authentication/admin/POSOperatorAuth/index.js +374 -0
  127. package/es/components/authentication/admin/POSOperatorAuth/locales.d.ts +48 -0
  128. package/es/components/authentication/admin/POSOperatorAuth/locales.js +65 -0
  129. package/es/components/authentication/admin/POSOperatorAuth/types.d.ts +16 -0
  130. package/es/components/authentication/admin/POSOperatorAuth/types.js +1 -0
  131. package/es/components/authentication/admin/SaaSAdminAuth/SaaSAdminAuth.less +104 -0
  132. package/es/components/authentication/admin/SaaSAdminAuth/index.d.ts +6 -0
  133. package/es/components/authentication/admin/SaaSAdminAuth/index.js +625 -0
  134. package/es/components/authentication/admin/SaaSAdminAuth/locales.d.ts +54 -0
  135. package/es/components/authentication/admin/SaaSAdminAuth/locales.js +74 -0
  136. package/es/components/authentication/admin/SaaSAdminAuth/types.d.ts +16 -0
  137. package/es/components/authentication/admin/SaaSAdminAuth/types.js +1 -0
  138. package/es/components/authentication/admin/index.d.ts +26 -0
  139. package/es/components/authentication/admin/index.js +23 -0
  140. package/es/components/authentication/index.d.ts +0 -0
  141. package/es/components/authentication/index.js +0 -0
  142. package/es/components/booking/addons/model.d.ts +10 -1
  143. package/es/components/booking/components/TabProduct/index.d.ts +1 -0
  144. package/es/components/booking/components/customSelect/index.js +23 -4
  145. package/es/components/booking/components/footer/index.js +4 -1
  146. package/es/components/booking/components/footer/utils.js +63 -48
  147. package/es/components/booking/components/formItemChildrenWrap/index.d.ts +1 -0
  148. package/es/components/booking/forms/footer.js +26 -21
  149. package/es/components/booking/forms/model.d.ts +10 -1
  150. package/es/components/booking/info/client/index.js +28 -13
  151. package/es/components/booking/info/clientVariant/hooks/useClientFn.js +16 -10
  152. package/es/components/booking/info/clientVariant/hooks/useIsLowSpeedNetwork.d.ts +1 -0
  153. package/es/components/booking/info/clientVariant/vertical/SelectDrawer.js +10 -2
  154. package/es/components/booking/info/clientVariant/vertical/index.js +1 -1
  155. package/es/components/booking/info/hooks/useInfoHolder.d.ts +1 -0
  156. package/es/components/booking/info/main.js +3 -2
  157. package/es/components/booking/info/model.d.ts +10 -1
  158. package/es/components/booking/info/model.js +5 -0
  159. package/es/components/booking/info/service/addService/utils.d.ts +1 -1
  160. package/es/components/booking/info/service/like/index.d.ts +1 -0
  161. package/es/components/booking/info2/index.js +3 -2
  162. package/es/components/booking/info2/service/addService/utils.d.ts +1 -1
  163. package/es/components/booking/info2/service/contactInfoMode/index.d.ts +2 -0
  164. package/es/components/booking/info2/service/contactInfoMode/index.js +94 -0
  165. package/es/components/booking/locales.d.ts +6 -0
  166. package/es/components/booking/locales.js +12 -3
  167. package/es/components/booking/model.d.ts +13 -1
  168. package/es/components/booking/model.js +3 -0
  169. package/es/components/booking/notes/model.d.ts +10 -1
  170. package/es/components/booking/payments/model.d.ts +10 -1
  171. package/es/components/eftpos/deviceList/index.d.ts +1 -0
  172. package/es/components/eftpos/group/index.d.ts +1 -0
  173. package/es/components/eftpos/icon/apiKey.d.ts +1 -0
  174. package/es/components/eftpos/icon/device.d.ts +1 -0
  175. package/es/components/eftpos/receipt/index.d.ts +1 -0
  176. package/es/components/eftposPay/component/alert/warn.d.ts +1 -0
  177. package/es/components/eftposPay/component/header/titlebar.d.ts +1 -0
  178. package/es/components/eftposPay/component/step/index.d.ts +1 -0
  179. package/es/components/eftposPay/component/step/step.d.ts +1 -0
  180. package/es/components/eftposPay/hooks.d.ts +1 -1
  181. package/es/components/eftposPay/linkly/hooks/useTimeQuery.js +43 -13
  182. package/es/components/eftposPay/linkly/index.js +64 -2
  183. package/es/components/eftposPay/payo/config.js +76 -38
  184. package/es/components/eftposPay/payo/payment.d.ts +66 -0
  185. package/es/components/eftposPay/payo/payment.js +579 -0
  186. package/es/components/eftposPay/store/index.d.ts +2 -2
  187. package/es/components/eftposPay/tyro/hooks.d.ts +1 -0
  188. package/es/components/eftposPay/utils/log/index.d.ts +110 -0
  189. package/es/components/eftposPay/utils/log/index.js +371 -0
  190. package/es/components/eventBooking/components/Provider/Cart/Deposit/index.d.ts +1 -0
  191. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.d.ts +1 -0
  192. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.d.ts +1 -0
  193. package/es/components/index.d.ts +4 -2
  194. package/es/components/index.js +4 -2
  195. package/es/components/pay/toC/PaymentMethods/ApplePay/index.js +100 -21
  196. package/es/components/pay/toC/PaymentMethods/BankDeposit/index.js +58 -8
  197. package/es/components/pay/toC/PaymentMethods/CashManual/index.js +74 -12
  198. package/es/components/pay/toC/PaymentMethods/CustomPayment/index.js +73 -12
  199. package/es/components/pay/toC/PaymentMethods/GlobePayAliPayH5/index.js +93 -11
  200. package/es/components/pay/toC/PaymentMethods/GlobePayPaypalH5/index.js +90 -12
  201. package/es/components/pay/toC/PaymentMethods/GlobePayQrcode/index.js +46 -7
  202. package/es/components/pay/toC/PaymentMethods/GlobePayWxH5/index.js +90 -12
  203. package/es/components/pay/toC/PaymentMethods/GooglePay/index.js +107 -28
  204. package/es/components/pay/toC/PaymentMethods/MWCreditCard/tds2.js +13 -11
  205. package/es/components/pay/toC/PaymentMethods/OfflinePayment/index.js +73 -8
  206. package/es/components/pay/toC/PaymentMethods/StripePay/index.js +68 -17
  207. package/es/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.js +126 -23
  208. package/es/components/pay/toC/PaymentMethods/SuperPayWxPayH5/index.js +89 -15
  209. package/es/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.d.ts +15 -0
  210. package/es/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.js +145 -0
  211. package/es/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.less +44 -0
  212. package/es/components/pay/toC/PaymentMethods/hooks/index.d.ts +19 -0
  213. package/es/components/pay/toC/PaymentMethods/hooks/index.js +126 -0
  214. package/es/components/pay/toC/index.js +290 -123
  215. package/es/components/pay/toC/locales.d.ts +12 -0
  216. package/es/components/pay/toC/locales.js +15 -3
  217. package/es/components/pay/toC/model.d.ts +10 -1
  218. package/es/components/pay/toC/serve.d.ts +5 -0
  219. package/es/components/pay/toC/serve.js +9 -1
  220. package/es/components/pay/toC/status.d.ts +1 -0
  221. package/es/components/pay/toC/status.js +3 -0
  222. package/es/components/productExtension/fields/Forms/index.d.ts +1 -0
  223. package/es/components/schedules/model.d.ts +9 -1
  224. package/es/components/systemSettings/registry/components/GroupModal.d.ts +4 -0
  225. package/es/components/systemSettings/registry/components/GroupModal.js +160 -0
  226. package/es/components/systemSettings/registry/components/ItemModal.d.ts +4 -0
  227. package/es/components/systemSettings/registry/components/ItemModal.js +547 -0
  228. package/es/components/systemSettings/registry/components/ModuleList.d.ts +4 -0
  229. package/es/components/systemSettings/registry/components/ModuleList.js +54 -0
  230. package/es/components/systemSettings/registry/components/SectionList.d.ts +4 -0
  231. package/es/components/systemSettings/registry/components/SectionList.js +174 -0
  232. package/es/components/systemSettings/registry/components/SettingsTable.d.ts +4 -0
  233. package/es/components/systemSettings/registry/components/SettingsTable.js +765 -0
  234. package/es/components/systemSettings/registry/components/index.d.ts +4 -0
  235. package/es/components/systemSettings/registry/components/index.js +4 -0
  236. package/es/components/systemSettings/registry/index.d.ts +5 -0
  237. package/es/components/systemSettings/registry/index.js +1059 -0
  238. package/es/components/systemSettings/registry/index.less +410 -0
  239. package/es/components/systemSettings/registry/locales.d.ts +272 -0
  240. package/es/components/systemSettings/registry/locales.js +300 -0
  241. package/es/components/systemSettings/registry/services.d.ts +77 -0
  242. package/es/components/systemSettings/registry/services.js +472 -0
  243. package/es/components/systemSettings/registry/types.d.ts +126 -0
  244. package/es/components/systemSettings/registry/types.js +1 -0
  245. package/es/components/systemSettings/registry/utils/typeValidation.d.ts +16 -0
  246. package/es/components/systemSettings/registry/utils/typeValidation.js +284 -0
  247. package/es/components/systemSettings/registry/utils/validators.d.ts +8 -0
  248. package/es/components/systemSettings/registry/utils/validators.js +44 -0
  249. package/es/components/ticketBooking/components/ticketBooking/index.less +2 -1
  250. package/es/components/ticketBooking/utils/index.d.ts +1 -1
  251. package/es/components/wallet/Detail/model.d.ts +13 -1
  252. package/es/components/wallet/DiscountCard/model.d.ts +14 -1
  253. package/es/components/wallet/PointCard/model.d.ts +13 -1
  254. package/es/components/wallet/RechargeableCard/model.d.ts +29 -1
  255. package/es/components/wallet/Voucher/model.d.ts +13 -1
  256. package/es/components/wallet/model.d.ts +9 -1
  257. package/es/components/walletList/index.d.ts +0 -25
  258. package/es/components/walletList/index.js +93 -61
  259. package/es/components/walletList/serve.d.ts +4 -0
  260. package/es/components/walletList/serve.js +46 -13
  261. package/es/components/walletList/types/index.d.ts +12 -12
  262. package/es/components/walletList/types/index.js +2 -2
  263. package/es/hooks/usePaymentLogger.d.ts +22 -0
  264. package/es/hooks/usePaymentLogger.js +78 -0
  265. package/es/index.d.ts +8 -0
  266. package/es/index.js +8 -1
  267. package/es/plus/clientName/index.d.ts +1 -0
  268. package/es/plus/contactInfo/components/Avatar/index.d.ts +10 -0
  269. package/es/plus/contactInfo/components/Avatar/index.js +30 -0
  270. package/es/plus/contactInfo/components/SwipeAction/index.d.ts +46 -0
  271. package/es/plus/contactInfo/components/SwipeAction/index.js +360 -0
  272. package/es/plus/contactInfo/components/SwipeAction/index.less +74 -0
  273. package/es/plus/contactInfo/index.d.ts +6 -0
  274. package/es/plus/contactInfo/index.js +198 -0
  275. package/es/plus/contactInfo/index.less +621 -0
  276. package/es/plus/contactInfo/locales.d.ts +15 -0
  277. package/es/plus/contactInfo/locales.js +14 -0
  278. package/es/plus/contactInfo/types.d.ts +91 -0
  279. package/es/plus/contactInfo/types.js +1 -0
  280. package/es/plus/contactInfo/utils.d.ts +7 -0
  281. package/es/plus/contactInfo/utils.js +50 -0
  282. package/es/plus/contactInfoModal/ContactInfoContent.d.ts +3 -0
  283. package/es/plus/contactInfoModal/ContactInfoContent.js +74 -0
  284. package/es/plus/contactInfoModal/index.d.ts +41 -0
  285. package/es/plus/contactInfoModal/index.js +155 -0
  286. package/es/plus/contactInfoModal/index.less +19 -0
  287. package/es/plus/contactInfoModal/locales.d.ts +66 -0
  288. package/es/plus/contactInfoModal/locales.js +65 -0
  289. package/es/plus/productSelect/CategoryTabs/index.d.ts +2 -0
  290. package/es/plus/productSelect/CategoryTabs/index.js +6 -3
  291. package/es/plus/productSelect/ProductCard/index.d.ts +3 -1
  292. package/es/plus/productSelect/ProductCard/index.js +14 -5
  293. package/es/plus/productSelect/components/TabsStructure/TabsStructure.less +0 -11
  294. package/es/plus/productSelect/index.d.ts +3 -2
  295. package/es/plus/productSelect/index.js +33 -8
  296. package/es/plus/productSelect/index.less +4 -0
  297. package/es/plus/productSelect/utils.js +0 -1
  298. package/es/plus/walletEditor/WalletEditor.d.ts +5 -0
  299. package/es/plus/walletEditor/WalletEditor.js +316 -0
  300. package/es/plus/walletEditor/WalletEditor.less +129 -0
  301. package/es/plus/walletEditor/components/ImageUpload/index.d.ts +8 -0
  302. package/es/plus/walletEditor/components/ImageUpload/index.js +223 -0
  303. package/es/plus/walletEditor/components/JsonEditor/index.d.ts +11 -0
  304. package/es/plus/walletEditor/components/JsonEditor/index.js +68 -0
  305. package/es/plus/walletEditor/components/JsonEditor/index.less +4 -0
  306. package/es/plus/walletEditor/components/ValidityPeriodSelector/index.d.ts +20 -0
  307. package/es/plus/walletEditor/components/ValidityPeriodSelector/index.js +222 -0
  308. package/es/plus/walletEditor/components/ValidityPeriodSelector/index.less +4 -0
  309. package/es/plus/walletEditor/components/relationProduct/index.d.ts +6 -0
  310. package/es/plus/walletEditor/components/relationProduct/index.js +49 -0
  311. package/es/plus/walletEditor/components/relationProduct/index.less +15 -0
  312. package/es/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +37 -0
  313. package/es/plus/walletEditor/components/sortableWalletPassTypes/index.js +193 -0
  314. package/es/plus/walletEditor/components/sortableWalletPassTypes/index.less +110 -0
  315. package/es/plus/walletEditor/index.d.ts +3 -0
  316. package/es/plus/walletEditor/index.js +3 -0
  317. package/es/plus/walletEditor/locales.d.ts +126 -0
  318. package/es/plus/walletEditor/locales.js +143 -0
  319. package/es/plus/walletEditor/types.d.ts +52 -0
  320. package/es/plus/walletEditor/types.js +1 -0
  321. package/es/plus/walletPassGallery/components/footerButton/index.d.ts +14 -0
  322. package/es/plus/walletPassGallery/components/footerButton/index.js +245 -0
  323. package/es/plus/walletPassGallery/components/footerButton/index.less +48 -0
  324. package/es/plus/walletPassGallery/components/passDetail/index.d.ts +8 -0
  325. package/es/plus/walletPassGallery/components/passDetail/index.js +278 -0
  326. package/es/plus/walletPassGallery/components/passDetail/index.less +61 -0
  327. package/es/plus/walletPassGallery/components/passList/index.d.ts +11 -0
  328. package/es/plus/walletPassGallery/components/passList/index.js +115 -0
  329. package/es/plus/walletPassGallery/components/recharge/index.d.ts +11 -0
  330. package/es/plus/walletPassGallery/components/recharge/index.js +145 -0
  331. package/es/plus/walletPassGallery/components/recharge/index.less +16 -0
  332. package/es/plus/walletPassGallery/components/timelineSection/index.d.ts +8 -0
  333. package/es/plus/walletPassGallery/components/timelineSection/index.js +176 -0
  334. package/es/plus/walletPassGallery/components/timelineSection/index.less +67 -0
  335. package/es/plus/walletPassGallery/components/usageRule/index.d.ts +9 -0
  336. package/es/plus/walletPassGallery/components/usageRule/index.js +248 -0
  337. package/es/plus/walletPassGallery/components/usageRule/index.less +157 -0
  338. package/es/plus/walletPassGallery/index.d.ts +6 -0
  339. package/es/plus/walletPassGallery/index.js +604 -0
  340. package/es/plus/walletPassGallery/index.less +115 -0
  341. package/es/plus/walletPassGallery/locales.d.ts +270 -0
  342. package/es/plus/walletPassGallery/locales.js +279 -0
  343. package/es/plus/walletPassGallery/serve.d.ts +218 -0
  344. package/es/plus/walletPassGallery/serve.js +289 -0
  345. package/es/pro/Login2.0/AuthModal.d.ts +143 -0
  346. package/es/pro/Login2.0/AuthModal.js +630 -0
  347. package/es/pro/Login2.0/Login2.d.ts +61 -0
  348. package/es/pro/Login2.0/Login2.js +2236 -0
  349. package/es/pro/Login2.0/Register2.d.ts +65 -0
  350. package/es/pro/Login2.0/Register2.js +1502 -0
  351. package/es/pro/Login2.0/components/ForgotPasswordFlow.d.ts +31 -0
  352. package/es/pro/Login2.0/components/ForgotPasswordFlow.js +330 -0
  353. package/es/pro/Login2.0/components/LegalTerms.d.ts +8 -0
  354. package/es/pro/Login2.0/components/LegalTerms.js +51 -0
  355. package/es/pro/Login2.0/components/LegalTerms.less +74 -0
  356. package/es/pro/Login2.0/components/LoginCodeInput.d.ts +27 -0
  357. package/es/pro/Login2.0/components/LoginCodeInput.js +207 -0
  358. package/es/pro/Login2.0/components/OAuthButtonGroup.d.ts +22 -0
  359. package/es/pro/Login2.0/components/OAuthButtonGroup.js +55 -0
  360. package/es/pro/Login2.0/components/PhoneInput.d.ts +53 -0
  361. package/es/pro/Login2.0/components/PhoneInput.js +414 -0
  362. package/es/pro/Login2.0/components/PhoneInput.less +148 -0
  363. package/es/pro/Login2.0/components/phoneValidation.d.ts +17 -0
  364. package/es/pro/Login2.0/components/phoneValidation.js +228 -0
  365. package/es/pro/Login2.0/hooks/index.d.ts +2 -0
  366. package/es/pro/Login2.0/hooks/index.js +1 -0
  367. package/es/pro/Login2.0/hooks/usePasswordValidationRules.d.ts +24 -0
  368. package/es/pro/Login2.0/hooks/usePasswordValidationRules.js +87 -0
  369. package/es/pro/Login2.0/hooks/useRegisterFlow.d.ts +39 -0
  370. package/es/pro/Login2.0/hooks/useRegisterFlow.js +158 -0
  371. package/es/pro/Login2.0/hooks/useRegistrationMethods.d.ts +9 -0
  372. package/es/pro/Login2.0/hooks/useRegistrationMethods.js +31 -0
  373. package/es/pro/Login2.0/index.js +8 -0
  374. package/es/pro/Login2.0/index.less +1009 -0
  375. package/es/pro/Login2.0/locales.d.ts +543 -0
  376. package/es/pro/Login2.0/locales.js +622 -0
  377. package/es/pro/Login2.0/shared/Header.d.ts +11 -0
  378. package/es/pro/Login2.0/shared/Header.js +42 -0
  379. package/es/pro/Login2.0/shared/OAuthButtons.d.ts +11 -0
  380. package/es/pro/Login2.0/shared/OAuthButtons.js +59 -0
  381. package/es/pro/Login2.0/shared/registerFlow.d.ts +116 -0
  382. package/es/pro/Login2.0/shared/registerFlow.js +171 -0
  383. package/es/pro/Login2.0/shared/types.d.ts +232 -0
  384. package/es/pro/Login2.0/shared/types.js +1 -0
  385. package/es/pro/Login2.0/steps/CodeInput.d.ts +24 -0
  386. package/es/pro/Login2.0/steps/CodeInput.js +209 -0
  387. package/es/pro/Login2.0/steps/EmailAlreadyRegistered.d.ts +12 -0
  388. package/es/pro/Login2.0/steps/EmailAlreadyRegistered.js +35 -0
  389. package/es/pro/Login2.0/steps/EmailLinkAlreadyUsed.d.ts +7 -0
  390. package/es/pro/Login2.0/steps/EmailLinkAlreadyUsed.js +25 -0
  391. package/es/pro/Login2.0/steps/EmailLinkExpired.d.ts +9 -0
  392. package/es/pro/Login2.0/steps/EmailLinkExpired.js +33 -0
  393. package/es/pro/Login2.0/steps/SetPassword.d.ts +19 -0
  394. package/es/pro/Login2.0/steps/SetPassword.js +148 -0
  395. package/es/pro/Login2.0/steps/VerificationSuccess.d.ts +8 -0
  396. package/es/pro/Login2.0/steps/VerificationSuccess.js +35 -0
  397. package/es/pro/Login2.0/steps/VerifyingEmailLink.d.ts +7 -0
  398. package/es/pro/Login2.0/steps/VerifyingEmailLink.js +17 -0
  399. package/es/pro/Login2.0/steps/WaitEmailLink.d.ts +18 -0
  400. package/es/pro/Login2.0/steps/WaitEmailLink.js +54 -0
  401. package/es/pro/Login2.0/steps/index.d.ts +19 -0
  402. package/es/pro/Login2.0/steps/index.js +11 -0
  403. package/es/pro/Login2.0/steps/steps.less +423 -0
  404. package/es/pro/Login2.0/types.d.ts +167 -0
  405. package/es/pro/Login2.0/types.js +1 -0
  406. package/es/pro/pisellPaymentList/example.d.ts +20 -0
  407. package/es/pro/pisellPaymentList/example.js +434 -0
  408. package/lib/components/Sales/Event/Detail.js +3 -2
  409. package/lib/components/appointmentBooking/components/Cart/Item/index.d.ts +1 -1
  410. package/lib/components/appointmentBooking/components/Cart/Item/index.js +5 -3
  411. package/lib/components/appointmentBooking/components/ConfirmInformation/index.js +156 -13
  412. package/lib/components/appointmentBooking/components/ConfirmInformation/index.less +15 -0
  413. package/lib/components/appointmentBooking/components/Services/index.js +8 -3
  414. package/lib/components/appointmentBooking/hooks.d.ts +1 -0
  415. package/lib/components/appointmentBooking/hooks.js +76 -35
  416. package/lib/components/appointmentBooking/locales.d.ts +3 -0
  417. package/lib/components/appointmentBooking/locales.js +6 -3
  418. package/lib/components/authentication/admin/AuthMethods/AuthMethods.less +136 -0
  419. package/lib/components/authentication/admin/AuthMethods/SettingList.d.ts +5 -0
  420. package/lib/components/authentication/admin/AuthMethods/SettingList.js +75 -0
  421. package/lib/components/authentication/admin/AuthMethods/SettingList.less +85 -0
  422. package/lib/components/authentication/admin/AuthMethods/SettingsDrawer.d.ts +22 -0
  423. package/lib/components/authentication/admin/AuthMethods/SettingsDrawer.js +126 -0
  424. package/lib/components/authentication/admin/AuthMethods/SettingsDrawer.less +163 -0
  425. package/lib/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.d.ts +11 -0
  426. package/lib/components/authentication/admin/AuthMethods/components/DefaultSettingsContent.js +42 -0
  427. package/lib/components/authentication/admin/AuthMethods/components/EmailSettingsContent.d.ts +13 -0
  428. package/lib/components/authentication/admin/AuthMethods/components/EmailSettingsContent.js +108 -0
  429. package/lib/components/authentication/admin/AuthMethods/components/LoginMethodsList.d.ts +13 -0
  430. package/lib/components/authentication/admin/AuthMethods/components/LoginMethodsList.js +108 -0
  431. package/lib/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.d.ts +14 -0
  432. package/lib/components/authentication/admin/AuthMethods/components/PasswordRulesSettingsContent.js +93 -0
  433. package/lib/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.d.ts +13 -0
  434. package/lib/components/authentication/admin/AuthMethods/components/PhoneSettingsContent.js +85 -0
  435. package/lib/components/authentication/admin/AuthMethods/components/index.d.ts +10 -0
  436. package/lib/components/authentication/admin/AuthMethods/components/index.js +51 -0
  437. package/lib/components/authentication/admin/AuthMethods/constants.d.ts +22 -0
  438. package/lib/components/authentication/admin/AuthMethods/constants.js +115 -0
  439. package/lib/components/authentication/admin/AuthMethods/index.d.ts +8 -0
  440. package/lib/components/authentication/admin/AuthMethods/index.js +196 -0
  441. package/lib/components/authentication/admin/AuthMethods/locales.d.ts +249 -0
  442. package/lib/components/authentication/admin/AuthMethods/locales.js +314 -0
  443. package/lib/components/authentication/admin/AuthMethods/types.d.ts +76 -0
  444. package/lib/components/authentication/admin/AuthMethods/types.js +53 -0
  445. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/AuthenticationMethods.less +231 -0
  446. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +6 -0
  447. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.js +311 -0
  448. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +84 -0
  449. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.js +131 -0
  450. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +41 -0
  451. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.js +17 -0
  452. package/lib/components/authentication/admin/ChannelAuthSetting/ChannelAuthSetting.less +111 -0
  453. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/CollectInfo.less +259 -0
  454. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +6 -0
  455. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.js +410 -0
  456. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +72 -0
  457. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.js +110 -0
  458. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +33 -0
  459. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.js +17 -0
  460. package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +6 -0
  461. package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.js +383 -0
  462. package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.less +111 -0
  463. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/PageSetting.less +105 -0
  464. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/index.d.ts +8 -0
  465. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/index.js +148 -0
  466. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +27 -0
  467. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.js +56 -0
  468. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/types.d.ts +25 -0
  469. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/types.js +17 -0
  470. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/PageSettingItem.less +272 -0
  471. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +8 -0
  472. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.js +206 -0
  473. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +66 -0
  474. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.js +95 -0
  475. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +26 -0
  476. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.js +17 -0
  477. package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +6 -0
  478. package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.js +246 -0
  479. package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.less +111 -0
  480. package/lib/components/authentication/admin/ChannelAuthSetting/index.d.ts +6 -0
  481. package/lib/components/authentication/admin/ChannelAuthSetting/index.js +177 -0
  482. package/lib/components/authentication/admin/ChannelAuthSetting/locales.d.ts +39 -0
  483. package/lib/components/authentication/admin/ChannelAuthSetting/locales.js +74 -0
  484. package/lib/components/authentication/admin/ChannelAuthSetting/types.d.ts +36 -0
  485. package/lib/components/authentication/admin/ChannelAuthSetting/types.js +17 -0
  486. package/lib/components/authentication/admin/CustomerAuth/CustomerAuth.less +104 -0
  487. package/lib/components/authentication/admin/CustomerAuth/index.d.ts +6 -0
  488. package/lib/components/authentication/admin/CustomerAuth/index.js +507 -0
  489. package/lib/components/authentication/admin/CustomerAuth/locales.d.ts +66 -0
  490. package/lib/components/authentication/admin/CustomerAuth/locales.js +110 -0
  491. package/lib/components/authentication/admin/CustomerAuth/types.d.ts +16 -0
  492. package/lib/components/authentication/admin/CustomerAuth/types.js +17 -0
  493. package/lib/components/authentication/admin/CustomerOAuthConfig/CustomerOAuthConfig.less +164 -0
  494. package/lib/components/authentication/admin/CustomerOAuthConfig/index.d.ts +6 -0
  495. package/lib/components/authentication/admin/CustomerOAuthConfig/index.js +331 -0
  496. package/lib/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +108 -0
  497. package/lib/components/authentication/admin/CustomerOAuthConfig/locales.js +161 -0
  498. package/lib/components/authentication/admin/CustomerOAuthConfig/types.d.ts +22 -0
  499. package/lib/components/authentication/admin/CustomerOAuthConfig/types.js +17 -0
  500. package/lib/components/authentication/admin/DeviceAuth/DeviceAuth.less +104 -0
  501. package/lib/components/authentication/admin/DeviceAuth/index.d.ts +6 -0
  502. package/lib/components/authentication/admin/DeviceAuth/index.js +254 -0
  503. package/lib/components/authentication/admin/DeviceAuth/locales.d.ts +57 -0
  504. package/lib/components/authentication/admin/DeviceAuth/locales.js +98 -0
  505. package/lib/components/authentication/admin/DeviceAuth/types.d.ts +16 -0
  506. package/lib/components/authentication/admin/DeviceAuth/types.js +17 -0
  507. package/lib/components/authentication/admin/OAuthConfig/OAuthConfig.less +165 -0
  508. package/lib/components/authentication/admin/OAuthConfig/index.d.ts +6 -0
  509. package/lib/components/authentication/admin/OAuthConfig/index.js +226 -0
  510. package/lib/components/authentication/admin/OAuthConfig/locales.d.ts +90 -0
  511. package/lib/components/authentication/admin/OAuthConfig/locales.js +140 -0
  512. package/lib/components/authentication/admin/OAuthConfig/types.d.ts +22 -0
  513. package/lib/components/authentication/admin/OAuthConfig/types.js +17 -0
  514. package/lib/components/authentication/admin/OrgAdminAuth/OrgAdminAuth.less +104 -0
  515. package/lib/components/authentication/admin/OrgAdminAuth/index.d.ts +6 -0
  516. package/lib/components/authentication/admin/OrgAdminAuth/index.js +398 -0
  517. package/lib/components/authentication/admin/OrgAdminAuth/locales.d.ts +54 -0
  518. package/lib/components/authentication/admin/OrgAdminAuth/locales.js +98 -0
  519. package/lib/components/authentication/admin/OrgAdminAuth/types.d.ts +16 -0
  520. package/lib/components/authentication/admin/OrgAdminAuth/types.js +17 -0
  521. package/lib/components/authentication/admin/POSOperatorAuth/POSOperatorAuth.less +104 -0
  522. package/lib/components/authentication/admin/POSOperatorAuth/index.d.ts +6 -0
  523. package/lib/components/authentication/admin/POSOperatorAuth/index.js +262 -0
  524. package/lib/components/authentication/admin/POSOperatorAuth/locales.d.ts +48 -0
  525. package/lib/components/authentication/admin/POSOperatorAuth/locales.js +89 -0
  526. package/lib/components/authentication/admin/POSOperatorAuth/types.d.ts +16 -0
  527. package/lib/components/authentication/admin/POSOperatorAuth/types.js +17 -0
  528. package/lib/components/authentication/admin/SaaSAdminAuth/SaaSAdminAuth.less +104 -0
  529. package/lib/components/authentication/admin/SaaSAdminAuth/index.d.ts +6 -0
  530. package/lib/components/authentication/admin/SaaSAdminAuth/index.js +481 -0
  531. package/lib/components/authentication/admin/SaaSAdminAuth/locales.d.ts +54 -0
  532. package/lib/components/authentication/admin/SaaSAdminAuth/locales.js +98 -0
  533. package/lib/components/authentication/admin/SaaSAdminAuth/types.d.ts +16 -0
  534. package/lib/components/authentication/admin/SaaSAdminAuth/types.js +17 -0
  535. package/lib/components/authentication/admin/index.d.ts +26 -0
  536. package/lib/components/authentication/admin/index.js +83 -0
  537. package/lib/components/authentication/index.d.ts +0 -0
  538. package/lib/components/authentication/index.js +0 -0
  539. package/lib/components/booking/addons/model.d.ts +10 -1
  540. package/lib/components/booking/components/TabProduct/index.d.ts +1 -0
  541. package/lib/components/booking/components/customSelect/index.js +27 -4
  542. package/lib/components/booking/components/footer/index.js +4 -1
  543. package/lib/components/booking/components/footer/utils.js +67 -36
  544. package/lib/components/booking/components/formItemChildrenWrap/index.d.ts +1 -0
  545. package/lib/components/booking/forms/footer.js +26 -14
  546. package/lib/components/booking/forms/model.d.ts +10 -1
  547. package/lib/components/booking/info/client/index.js +14 -1
  548. package/lib/components/booking/info/clientVariant/hooks/useClientFn.js +7 -2
  549. package/lib/components/booking/info/clientVariant/hooks/useIsLowSpeedNetwork.d.ts +1 -0
  550. package/lib/components/booking/info/clientVariant/vertical/SelectDrawer.js +11 -4
  551. package/lib/components/booking/info/clientVariant/vertical/index.js +34 -17
  552. package/lib/components/booking/info/hooks/useInfoHolder.d.ts +1 -0
  553. package/lib/components/booking/info/main.js +5 -4
  554. package/lib/components/booking/info/model.d.ts +10 -1
  555. package/lib/components/booking/info/model.js +5 -0
  556. package/lib/components/booking/info/service/addService/utils.d.ts +1 -1
  557. package/lib/components/booking/info/service/like/index.d.ts +1 -0
  558. package/lib/components/booking/info2/index.js +5 -4
  559. package/lib/components/booking/info2/service/addService/utils.d.ts +1 -1
  560. package/lib/components/booking/info2/service/contactInfoMode/index.d.ts +2 -0
  561. package/lib/components/booking/info2/service/contactInfoMode/index.js +111 -0
  562. package/lib/components/booking/locales.d.ts +6 -0
  563. package/lib/components/booking/locales.js +12 -3
  564. package/lib/components/booking/model.d.ts +13 -1
  565. package/lib/components/booking/model.js +3 -0
  566. package/lib/components/booking/notes/model.d.ts +10 -1
  567. package/lib/components/booking/payments/model.d.ts +10 -1
  568. package/lib/components/eftpos/deviceList/index.d.ts +1 -0
  569. package/lib/components/eftpos/group/index.d.ts +1 -0
  570. package/lib/components/eftpos/icon/apiKey.d.ts +1 -0
  571. package/lib/components/eftpos/icon/device.d.ts +1 -0
  572. package/lib/components/eftpos/receipt/index.d.ts +1 -0
  573. package/lib/components/eftposPay/component/alert/warn.d.ts +1 -0
  574. package/lib/components/eftposPay/component/header/titlebar.d.ts +1 -0
  575. package/lib/components/eftposPay/component/step/index.d.ts +1 -0
  576. package/lib/components/eftposPay/component/step/step.d.ts +1 -0
  577. package/lib/components/eftposPay/hooks.d.ts +1 -1
  578. package/lib/components/eftposPay/linkly/hooks/useTimeQuery.js +49 -11
  579. package/lib/components/eftposPay/linkly/index.js +31 -1
  580. package/lib/components/eftposPay/payo/config.js +98 -73
  581. package/lib/components/eftposPay/payo/payment.d.ts +66 -0
  582. package/lib/components/eftposPay/payo/payment.js +357 -0
  583. package/lib/components/eftposPay/store/index.d.ts +2 -2
  584. package/lib/components/eftposPay/tyro/hooks.d.ts +1 -0
  585. package/lib/components/eftposPay/utils/log/index.d.ts +110 -0
  586. package/lib/components/eftposPay/utils/log/index.js +294 -0
  587. package/lib/components/eventBooking/components/Provider/Cart/Deposit/index.d.ts +1 -0
  588. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.d.ts +1 -0
  589. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.d.ts +1 -0
  590. package/lib/components/index.d.ts +4 -2
  591. package/lib/components/index.js +23 -1
  592. package/lib/components/pay/toC/PaymentMethods/ApplePay/index.js +67 -8
  593. package/lib/components/pay/toC/PaymentMethods/BankDeposit/index.js +52 -15
  594. package/lib/components/pay/toC/PaymentMethods/CashManual/index.js +60 -2
  595. package/lib/components/pay/toC/PaymentMethods/CustomPayment/index.js +60 -2
  596. package/lib/components/pay/toC/PaymentMethods/GlobePayAliPayH5/index.js +66 -2
  597. package/lib/components/pay/toC/PaymentMethods/GlobePayPaypalH5/index.js +61 -0
  598. package/lib/components/pay/toC/PaymentMethods/GlobePayQrcode/index.js +29 -0
  599. package/lib/components/pay/toC/PaymentMethods/GlobePayWxH5/index.js +61 -0
  600. package/lib/components/pay/toC/PaymentMethods/GooglePay/index.js +77 -9
  601. package/lib/components/pay/toC/PaymentMethods/MWCreditCard/tds2.js +13 -11
  602. package/lib/components/pay/toC/PaymentMethods/OfflinePayment/index.js +72 -10
  603. package/lib/components/pay/toC/PaymentMethods/StripePay/index.js +47 -5
  604. package/lib/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.js +90 -6
  605. package/lib/components/pay/toC/PaymentMethods/SuperPayWxPayH5/index.js +63 -3
  606. package/lib/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.d.ts +15 -0
  607. package/lib/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.js +88 -0
  608. package/lib/components/pay/toC/PaymentMethods/components/PaymentReturnContent/index.less +44 -0
  609. package/lib/components/pay/toC/PaymentMethods/hooks/index.d.ts +19 -0
  610. package/lib/components/pay/toC/PaymentMethods/hooks/index.js +90 -0
  611. package/lib/components/pay/toC/index.js +198 -51
  612. package/lib/components/pay/toC/locales.d.ts +12 -0
  613. package/lib/components/pay/toC/locales.js +15 -3
  614. package/lib/components/pay/toC/model.d.ts +10 -1
  615. package/lib/components/pay/toC/serve.d.ts +5 -0
  616. package/lib/components/pay/toC/serve.js +3 -0
  617. package/lib/components/pay/toC/status.d.ts +1 -0
  618. package/lib/components/pay/toC/status.js +5 -0
  619. package/lib/components/productExtension/fields/Forms/index.d.ts +1 -0
  620. package/lib/components/schedules/model.d.ts +9 -1
  621. package/lib/components/systemSettings/registry/components/GroupModal.d.ts +4 -0
  622. package/lib/components/systemSettings/registry/components/GroupModal.js +177 -0
  623. package/lib/components/systemSettings/registry/components/ItemModal.d.ts +4 -0
  624. package/lib/components/systemSettings/registry/components/ItemModal.js +508 -0
  625. package/lib/components/systemSettings/registry/components/ModuleList.d.ts +4 -0
  626. package/lib/components/systemSettings/registry/components/ModuleList.js +71 -0
  627. package/lib/components/systemSettings/registry/components/SectionList.d.ts +4 -0
  628. package/lib/components/systemSettings/registry/components/SectionList.js +181 -0
  629. package/lib/components/systemSettings/registry/components/SettingsTable.d.ts +4 -0
  630. package/lib/components/systemSettings/registry/components/SettingsTable.js +575 -0
  631. package/lib/components/systemSettings/registry/components/index.d.ts +4 -0
  632. package/lib/components/systemSettings/registry/components/index.js +48 -0
  633. package/lib/components/systemSettings/registry/index.d.ts +5 -0
  634. package/lib/components/systemSettings/registry/index.js +529 -0
  635. package/lib/components/systemSettings/registry/index.less +410 -0
  636. package/lib/components/systemSettings/registry/locales.d.ts +272 -0
  637. package/lib/components/systemSettings/registry/locales.js +324 -0
  638. package/lib/components/systemSettings/registry/services.d.ts +77 -0
  639. package/lib/components/systemSettings/registry/services.js +290 -0
  640. package/lib/components/systemSettings/registry/types.d.ts +126 -0
  641. package/lib/components/systemSettings/registry/types.js +17 -0
  642. package/lib/components/systemSettings/registry/utils/typeValidation.d.ts +16 -0
  643. package/lib/components/systemSettings/registry/utils/typeValidation.js +228 -0
  644. package/lib/components/systemSettings/registry/utils/validators.d.ts +8 -0
  645. package/lib/components/systemSettings/registry/utils/validators.js +54 -0
  646. package/lib/components/ticketBooking/components/ticketBooking/index.less +2 -1
  647. package/lib/components/ticketBooking/utils/index.d.ts +1 -1
  648. package/lib/components/wallet/Detail/model.d.ts +13 -1
  649. package/lib/components/wallet/DiscountCard/model.d.ts +14 -1
  650. package/lib/components/wallet/PointCard/model.d.ts +13 -1
  651. package/lib/components/wallet/RechargeableCard/model.d.ts +29 -1
  652. package/lib/components/wallet/Voucher/model.d.ts +13 -1
  653. package/lib/components/wallet/model.d.ts +9 -1
  654. package/lib/components/walletList/index.d.ts +0 -25
  655. package/lib/components/walletList/index.js +88 -47
  656. package/lib/components/walletList/serve.d.ts +4 -0
  657. package/lib/components/walletList/serve.js +12 -0
  658. package/lib/components/walletList/types/index.d.ts +12 -12
  659. package/lib/hooks/usePaymentLogger.d.ts +22 -0
  660. package/lib/hooks/usePaymentLogger.js +69 -0
  661. package/lib/index.d.ts +8 -0
  662. package/lib/index.js +41 -0
  663. package/lib/plus/clientName/index.d.ts +1 -0
  664. package/lib/plus/contactInfo/components/Avatar/index.d.ts +10 -0
  665. package/lib/plus/contactInfo/components/Avatar/index.js +56 -0
  666. package/lib/plus/contactInfo/components/SwipeAction/index.d.ts +46 -0
  667. package/lib/plus/contactInfo/components/SwipeAction/index.js +373 -0
  668. package/lib/plus/contactInfo/components/SwipeAction/index.less +74 -0
  669. package/lib/plus/contactInfo/index.d.ts +6 -0
  670. package/lib/plus/contactInfo/index.js +226 -0
  671. package/lib/plus/contactInfo/index.less +621 -0
  672. package/lib/plus/contactInfo/locales.d.ts +15 -0
  673. package/lib/plus/contactInfo/locales.js +38 -0
  674. package/lib/plus/contactInfo/types.d.ts +91 -0
  675. package/lib/plus/contactInfo/types.js +17 -0
  676. package/lib/plus/contactInfo/utils.d.ts +7 -0
  677. package/lib/plus/contactInfo/utils.js +64 -0
  678. package/lib/plus/contactInfoModal/ContactInfoContent.d.ts +3 -0
  679. package/lib/plus/contactInfoModal/ContactInfoContent.js +129 -0
  680. package/lib/plus/contactInfoModal/index.d.ts +41 -0
  681. package/lib/plus/contactInfoModal/index.js +139 -0
  682. package/lib/plus/contactInfoModal/index.less +19 -0
  683. package/lib/plus/contactInfoModal/locales.d.ts +66 -0
  684. package/lib/plus/contactInfoModal/locales.js +89 -0
  685. package/lib/plus/productSelect/CategoryTabs/index.d.ts +2 -0
  686. package/lib/plus/productSelect/CategoryTabs/index.js +84 -69
  687. package/lib/plus/productSelect/ProductCard/index.d.ts +3 -1
  688. package/lib/plus/productSelect/ProductCard/index.js +18 -4
  689. package/lib/plus/productSelect/components/TabsStructure/TabsStructure.less +0 -11
  690. package/lib/plus/productSelect/index.d.ts +3 -2
  691. package/lib/plus/productSelect/index.js +20 -6
  692. package/lib/plus/productSelect/index.less +4 -0
  693. package/lib/plus/productSelect/utils.js +0 -1
  694. package/lib/plus/walletEditor/WalletEditor.d.ts +5 -0
  695. package/lib/plus/walletEditor/WalletEditor.js +354 -0
  696. package/lib/plus/walletEditor/WalletEditor.less +129 -0
  697. package/lib/plus/walletEditor/components/ImageUpload/index.d.ts +8 -0
  698. package/lib/plus/walletEditor/components/ImageUpload/index.js +201 -0
  699. package/lib/plus/walletEditor/components/JsonEditor/index.d.ts +11 -0
  700. package/lib/plus/walletEditor/components/JsonEditor/index.js +89 -0
  701. package/lib/plus/walletEditor/components/JsonEditor/index.less +4 -0
  702. package/lib/plus/walletEditor/components/ValidityPeriodSelector/index.d.ts +20 -0
  703. package/lib/plus/walletEditor/components/ValidityPeriodSelector/index.js +176 -0
  704. package/lib/plus/walletEditor/components/ValidityPeriodSelector/index.less +4 -0
  705. package/lib/plus/walletEditor/components/relationProduct/index.d.ts +6 -0
  706. package/lib/plus/walletEditor/components/relationProduct/index.js +73 -0
  707. package/lib/plus/walletEditor/components/relationProduct/index.less +15 -0
  708. package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +37 -0
  709. package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.js +211 -0
  710. package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.less +110 -0
  711. package/lib/plus/walletEditor/index.d.ts +3 -0
  712. package/lib/plus/walletEditor/index.js +42 -0
  713. package/lib/plus/walletEditor/locales.d.ts +126 -0
  714. package/lib/plus/walletEditor/locales.js +167 -0
  715. package/lib/plus/walletEditor/types.d.ts +52 -0
  716. package/lib/plus/walletEditor/types.js +17 -0
  717. package/lib/plus/walletPassGallery/components/footerButton/index.d.ts +14 -0
  718. package/lib/plus/walletPassGallery/components/footerButton/index.js +187 -0
  719. package/lib/plus/walletPassGallery/components/footerButton/index.less +48 -0
  720. package/lib/plus/walletPassGallery/components/passDetail/index.d.ts +8 -0
  721. package/lib/plus/walletPassGallery/components/passDetail/index.js +290 -0
  722. package/lib/plus/walletPassGallery/components/passDetail/index.less +61 -0
  723. package/lib/plus/walletPassGallery/components/passList/index.d.ts +11 -0
  724. package/lib/plus/walletPassGallery/components/passList/index.js +136 -0
  725. package/lib/plus/walletPassGallery/components/recharge/index.d.ts +11 -0
  726. package/lib/plus/walletPassGallery/components/recharge/index.js +152 -0
  727. package/lib/plus/walletPassGallery/components/recharge/index.less +16 -0
  728. package/lib/plus/walletPassGallery/components/timelineSection/index.d.ts +8 -0
  729. package/lib/plus/walletPassGallery/components/timelineSection/index.js +212 -0
  730. package/lib/plus/walletPassGallery/components/timelineSection/index.less +67 -0
  731. package/lib/plus/walletPassGallery/components/usageRule/index.d.ts +9 -0
  732. package/lib/plus/walletPassGallery/components/usageRule/index.js +209 -0
  733. package/lib/plus/walletPassGallery/components/usageRule/index.less +157 -0
  734. package/lib/plus/walletPassGallery/index.d.ts +6 -0
  735. package/lib/plus/walletPassGallery/index.js +500 -0
  736. package/lib/plus/walletPassGallery/index.less +115 -0
  737. package/lib/plus/walletPassGallery/locales.d.ts +270 -0
  738. package/lib/plus/walletPassGallery/locales.js +299 -0
  739. package/lib/plus/walletPassGallery/serve.d.ts +218 -0
  740. package/lib/plus/walletPassGallery/serve.js +98 -0
  741. package/lib/pro/Login2.0/AuthModal.d.ts +143 -0
  742. package/lib/pro/Login2.0/AuthModal.js +503 -0
  743. package/lib/pro/Login2.0/Login2.d.ts +61 -0
  744. package/lib/pro/Login2.0/Login2.js +1545 -0
  745. package/lib/pro/Login2.0/Register2.d.ts +65 -0
  746. package/lib/pro/Login2.0/Register2.js +1063 -0
  747. package/lib/pro/Login2.0/components/ForgotPasswordFlow.d.ts +31 -0
  748. package/lib/pro/Login2.0/components/ForgotPasswordFlow.js +213 -0
  749. package/lib/pro/Login2.0/components/LegalTerms.d.ts +8 -0
  750. package/lib/pro/Login2.0/components/LegalTerms.js +76 -0
  751. package/lib/pro/Login2.0/components/LegalTerms.less +74 -0
  752. package/lib/pro/Login2.0/components/LoginCodeInput.d.ts +27 -0
  753. package/lib/pro/Login2.0/components/LoginCodeInput.js +161 -0
  754. package/lib/pro/Login2.0/components/OAuthButtonGroup.d.ts +22 -0
  755. package/lib/pro/Login2.0/components/OAuthButtonGroup.js +87 -0
  756. package/lib/pro/Login2.0/components/PhoneInput.d.ts +53 -0
  757. package/lib/pro/Login2.0/components/PhoneInput.js +263 -0
  758. package/lib/pro/Login2.0/components/PhoneInput.less +148 -0
  759. package/lib/pro/Login2.0/components/phoneValidation.d.ts +17 -0
  760. package/lib/pro/Login2.0/components/phoneValidation.js +153 -0
  761. package/lib/pro/Login2.0/hooks/index.d.ts +2 -0
  762. package/lib/pro/Login2.0/hooks/index.js +29 -0
  763. package/lib/pro/Login2.0/hooks/usePasswordValidationRules.d.ts +24 -0
  764. package/lib/pro/Login2.0/hooks/usePasswordValidationRules.js +140 -0
  765. package/lib/pro/Login2.0/hooks/useRegisterFlow.d.ts +39 -0
  766. package/lib/pro/Login2.0/hooks/useRegisterFlow.js +149 -0
  767. package/lib/pro/Login2.0/hooks/useRegistrationMethods.d.ts +9 -0
  768. package/lib/pro/Login2.0/hooks/useRegistrationMethods.js +51 -0
  769. package/lib/pro/Login2.0/index.js +45 -0
  770. package/lib/pro/Login2.0/index.less +1009 -0
  771. package/lib/pro/Login2.0/locales.d.ts +543 -0
  772. package/lib/pro/Login2.0/locales.js +646 -0
  773. package/lib/pro/Login2.0/shared/Header.d.ts +11 -0
  774. package/lib/pro/Login2.0/shared/Header.js +81 -0
  775. package/lib/pro/Login2.0/shared/OAuthButtons.d.ts +11 -0
  776. package/lib/pro/Login2.0/shared/OAuthButtons.js +78 -0
  777. package/lib/pro/Login2.0/shared/registerFlow.d.ts +116 -0
  778. package/lib/pro/Login2.0/shared/registerFlow.js +235 -0
  779. package/lib/pro/Login2.0/shared/types.d.ts +232 -0
  780. package/lib/pro/Login2.0/shared/types.js +17 -0
  781. package/lib/pro/Login2.0/steps/CodeInput.d.ts +24 -0
  782. package/lib/pro/Login2.0/steps/CodeInput.js +160 -0
  783. package/lib/pro/Login2.0/steps/EmailAlreadyRegistered.d.ts +12 -0
  784. package/lib/pro/Login2.0/steps/EmailAlreadyRegistered.js +46 -0
  785. package/lib/pro/Login2.0/steps/EmailLinkAlreadyUsed.d.ts +7 -0
  786. package/lib/pro/Login2.0/steps/EmailLinkAlreadyUsed.js +51 -0
  787. package/lib/pro/Login2.0/steps/EmailLinkExpired.d.ts +9 -0
  788. package/lib/pro/Login2.0/steps/EmailLinkExpired.js +51 -0
  789. package/lib/pro/Login2.0/steps/SetPassword.d.ts +19 -0
  790. package/lib/pro/Login2.0/steps/SetPassword.js +131 -0
  791. package/lib/pro/Login2.0/steps/VerificationSuccess.d.ts +8 -0
  792. package/lib/pro/Login2.0/steps/VerificationSuccess.js +49 -0
  793. package/lib/pro/Login2.0/steps/VerifyingEmailLink.d.ts +7 -0
  794. package/lib/pro/Login2.0/steps/VerifyingEmailLink.js +41 -0
  795. package/lib/pro/Login2.0/steps/WaitEmailLink.d.ts +18 -0
  796. package/lib/pro/Login2.0/steps/WaitEmailLink.js +67 -0
  797. package/lib/pro/Login2.0/steps/index.d.ts +19 -0
  798. package/lib/pro/Login2.0/steps/index.js +60 -0
  799. package/lib/pro/Login2.0/steps/steps.less +423 -0
  800. package/lib/pro/Login2.0/types.d.ts +167 -0
  801. package/lib/pro/Login2.0/types.js +17 -0
  802. package/lib/pro/pisellPaymentList/example.d.ts +20 -0
  803. package/lib/pro/pisellPaymentList/example.js +416 -0
  804. package/lowcode/admin-auth-customer-auth/meta.ts +29 -0
  805. package/lowcode/admin-auth-customer-oauth-config/meta.ts +55 -0
  806. package/lowcode/admin-auth-device-auth/meta.ts +30 -0
  807. package/lowcode/admin-auth-methods/meta.ts +385 -0
  808. package/lowcode/admin-auth-oauth-config/meta.ts +29 -0
  809. package/lowcode/admin-auth-online-shop-auth/meta.ts +29 -0
  810. package/lowcode/admin-auth-org-admin-auth/meta.ts +29 -0
  811. package/lowcode/admin-auth-pos-operator-auth/meta.ts +30 -0
  812. package/lowcode/admin-auth-saas-admin-auth/meta.ts +29 -0
  813. package/lowcode/admin-auth-saas-managerment-auth/meta.ts +30 -0
  814. package/lowcode/admin-setting-list/meta.ts +125 -0
  815. package/lowcode/authmodal/meta.ts +395 -0
  816. package/lowcode/contact-info/fragments/cardStyle.ts +68 -0
  817. package/lowcode/contact-info/fragments/nameStyle.ts +33 -0
  818. package/lowcode/contact-info/fragments/pisellAvatar.ts +103 -0
  819. package/lowcode/contact-info/fragments/textStyle.ts +33 -0
  820. package/lowcode/contact-info/meta.ts +199 -0
  821. package/lowcode/contact-info-modal/meta.ts +98 -0
  822. package/lowcode/login2/CONFIG.md +447 -0
  823. package/lowcode/login2/TEST_CONFIG.md +324 -0
  824. package/lowcode/login2/VERIFICATION_METHODS.md +364 -0
  825. package/lowcode/login2/meta.ts +560 -0
  826. package/lowcode/login2/snippets.ts +124 -0
  827. package/lowcode/pro-register/meta.ts +385 -0
  828. package/lowcode/register2/meta.ts +562 -0
  829. package/lowcode/register2/snippets.ts +257 -0
  830. package/lowcode/settings-registry/meta.ts +29 -0
  831. package/lowcode/sortable-wallet-pass-types/meta.ts +267 -0
  832. package/lowcode/wallet-editor/meta.ts +57 -0
  833. package/lowcode/wallet-editor/snippets.ts +13 -0
  834. package/lowcode/wallet-pass-gallery/meta.ts +35 -0
  835. package/package.json +7 -5
  836. package/lowcode/wallet/meta.ts +0 -79
package/lib/index.js CHANGED
@@ -31,6 +31,7 @@ var src_exports = {};
31
31
  __export(src_exports, {
32
32
  AppointmentBooking: () => import_appointmentBooking.default,
33
33
  AppointmentDeposit: () => import_deposit2.default,
34
+ AuthModal: () => import_Login2.AuthModal,
34
35
  Booking: () => import_booking.default,
35
36
  BookingAddons: () => import_addons.default,
36
37
  BookingContacts: () => import_contacts.default,
@@ -46,6 +47,11 @@ __export(src_exports, {
46
47
  ClientCard: () => import_clientCard.default,
47
48
  ClientSearch: () => import_clinetSearch.default,
48
49
  ComprehensiveSearch: () => import_comprehensiveSearch.default,
50
+ ContactInfo: () => import_contactInfo.default,
51
+ ContactInfoModal: () => import_contactInfoModal.default,
52
+ CustomerAuth: () => import_admin.CustomerAuth,
53
+ CustomerOAuthConfig: () => import_admin.CustomerOAuthConfig,
54
+ DeviceAuth: () => import_admin.DeviceAuth,
49
55
  EditBookingModal: () => import_editBookingModal.default,
50
56
  Eftpos: () => import_eftpos.default,
51
57
  EftposPay: () => import_eftposPay.default,
@@ -62,16 +68,25 @@ __export(src_exports, {
62
68
  EventSelectHolder: () => import_selectHolder.default,
63
69
  EventTimeResourceSelector: () => import_timeResourceSelector.default,
64
70
  Login: () => import_login.default,
71
+ Login2: () => import_Login2.Login2,
65
72
  NoteModal: () => import_noteModal.default,
73
+ OAuthConfig: () => import_admin.OAuthConfig,
74
+ OnlineShopAuth: () => import_admin.OnlineShopAuth,
75
+ OrgAdminAuth: () => import_admin.OrgAdminAuth,
76
+ POSOperatorAuth: () => import_admin.POSOperatorAuth,
66
77
  PinModal: () => import_pinModal.default,
67
78
  PinVerifyModal: () => import_pinVerifyModal.default,
68
79
  PisellSelectCustomerModal: () => import_pisellSelectCustomerModal.default,
69
80
  ProductExtension: () => import_productExtension.default,
81
+ Register2: () => import_Login2.Register2,
70
82
  RuleSetting: () => import_ruleSetting.default,
83
+ SaaSAdminAuth: () => import_admin.SaaSAdminAuth,
84
+ SaaSManagermentAuth: () => import_admin.SaaSManagermentAuth,
71
85
  SaasCreateOrganization: () => import_saasCreateOrganization.default,
72
86
  SaasLogin: () => import_saasLogin.default,
73
87
  SaasRegister: () => import_saasRegister.default,
74
88
  Schedules: () => import_schedules.default,
89
+ SettingsRegistry: () => import_registry.default,
75
90
  ShoppingCart: () => import_shoppingCart.default,
76
91
  StepController: () => import_stepController.default,
77
92
  SubTotal: () => import_subTotal.default,
@@ -81,7 +96,9 @@ __export(src_exports, {
81
96
  VerticalAddService: () => import_addServiceVariant.default,
82
97
  VerticalClient: () => import_clientVariant.VerticalClient,
83
98
  Wallet: () => import_wallet.default,
99
+ WalletEditor: () => import_walletEditor.default,
84
100
  WalletList: () => import_walletList.default,
101
+ WalletPassGallery: () => import_walletPassGallery.default,
85
102
  WorkspaceList: () => import_workSpaceList.default,
86
103
  WorkspaceListDetail: () => import_workSpaceListDetail.default
87
104
  });
@@ -144,12 +161,20 @@ var import_saasRegister = __toESM(require("./plus/saasRegister"));
144
161
  var import_saasCreateOrganization = __toESM(require("./plus/saasCreateOrganization"));
145
162
  var import_pinModal = __toESM(require("./components/pinModal"));
146
163
  var import_pinVerifyModal = __toESM(require("./components/pinVerifyModal"));
164
+ var import_admin = require("./components/authentication/admin");
165
+ var import_contactInfo = __toESM(require("./plus/contactInfo"));
166
+ var import_contactInfoModal = __toESM(require("./plus/contactInfoModal"));
167
+ var import_Login2 = require("./pro/Login2.0");
168
+ var import_walletEditor = __toESM(require("./plus/walletEditor"));
169
+ var import_walletPassGallery = __toESM(require("./plus/walletPassGallery"));
170
+ var import_registry = __toESM(require("./components/systemSettings/registry"));
147
171
  import_dayjs.default.extend(import_weekday.default);
148
172
  import_dayjs.default.extend(import_localeData.default);
149
173
  // Annotate the CommonJS export names for ESM import in node:
150
174
  0 && (module.exports = {
151
175
  AppointmentBooking,
152
176
  AppointmentDeposit,
177
+ AuthModal,
153
178
  Booking,
154
179
  BookingAddons,
155
180
  BookingContacts,
@@ -165,6 +190,11 @@ import_dayjs.default.extend(import_localeData.default);
165
190
  ClientCard,
166
191
  ClientSearch,
167
192
  ComprehensiveSearch,
193
+ ContactInfo,
194
+ ContactInfoModal,
195
+ CustomerAuth,
196
+ CustomerOAuthConfig,
197
+ DeviceAuth,
168
198
  EditBookingModal,
169
199
  Eftpos,
170
200
  EftposPay,
@@ -181,16 +211,25 @@ import_dayjs.default.extend(import_localeData.default);
181
211
  EventSelectHolder,
182
212
  EventTimeResourceSelector,
183
213
  Login,
214
+ Login2,
184
215
  NoteModal,
216
+ OAuthConfig,
217
+ OnlineShopAuth,
218
+ OrgAdminAuth,
219
+ POSOperatorAuth,
185
220
  PinModal,
186
221
  PinVerifyModal,
187
222
  PisellSelectCustomerModal,
188
223
  ProductExtension,
224
+ Register2,
189
225
  RuleSetting,
226
+ SaaSAdminAuth,
227
+ SaaSManagermentAuth,
190
228
  SaasCreateOrganization,
191
229
  SaasLogin,
192
230
  SaasRegister,
193
231
  Schedules,
232
+ SettingsRegistry,
194
233
  ShoppingCart,
195
234
  StepController,
196
235
  SubTotal,
@@ -200,7 +239,9 @@ import_dayjs.default.extend(import_localeData.default);
200
239
  VerticalAddService,
201
240
  VerticalClient,
202
241
  Wallet,
242
+ WalletEditor,
203
243
  WalletList,
244
+ WalletPassGallery,
204
245
  WorkspaceList,
205
246
  WorkspaceListDetail
206
247
  });
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import './index.less';
2
3
  import { IClientNameProps } from './type';
3
4
  declare const ClientName: ({ className, dataSource, style }: IClientNameProps) => JSX.Element | null;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { AvatarConfig } from '../../types';
3
+ import '../../index.less';
4
+ interface AvatarProps {
5
+ config?: AvatarConfig;
6
+ name: string;
7
+ cover?: string;
8
+ }
9
+ declare const Avatar: React.FC<AvatarProps>;
10
+ export default Avatar;
@@ -0,0 +1,56 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/plus/contactInfo/components/Avatar/index.tsx
30
+ var Avatar_exports = {};
31
+ __export(Avatar_exports, {
32
+ default: () => Avatar_default
33
+ });
34
+ module.exports = __toCommonJS(Avatar_exports);
35
+ var import_react = __toESM(require("react"));
36
+ var import_materials = require("@pisell/materials");
37
+ var import_utils = require("../../utils");
38
+ var import__ = require("../../index");
39
+ var import__2 = require("../../index.less");
40
+ var Avatar = (props) => {
41
+ const { config, name, cover } = props;
42
+ const { useTextAvatar, children } = config || {};
43
+ if (useTextAvatar) {
44
+ const text = children || (0, import_utils.getAvatarText)(name);
45
+ return /* @__PURE__ */ import_react.default.createElement("div", { className: `${import__.PREFIX}__avatar-wrapper` }, /* @__PURE__ */ import_react.default.createElement(import_materials.PisellAvatar, { className: `${import__.PREFIX}__avatar`, ...config || {} }, text));
46
+ }
47
+ return /* @__PURE__ */ import_react.default.createElement("div", { className: `${import__.PREFIX}__avatar-wrapper` }, /* @__PURE__ */ import_react.default.createElement(
48
+ import_materials.PisellAvatar,
49
+ {
50
+ className: `${import__.PREFIX}__avatar`,
51
+ ...config || {},
52
+ src: cover || ""
53
+ }
54
+ ));
55
+ };
56
+ var Avatar_default = Avatar;
@@ -0,0 +1,46 @@
1
+ import type { ReactNode } from 'react';
2
+ import React from 'react';
3
+ declare type NativeProps<S extends string = never> = {
4
+ className?: string;
5
+ style?: React.CSSProperties & Partial<Record<S, string>>;
6
+ };
7
+ declare type PropagationEvent = 'click';
8
+ import './index.less';
9
+ declare type SideType = 'left' | 'right';
10
+ export declare type SwipeActionRef = {
11
+ close: () => void;
12
+ show: (side?: SideType) => void;
13
+ };
14
+ declare type ActionColor = 'light' | 'weak' | 'primary' | 'success' | 'warning' | 'danger';
15
+ export declare type Action = {
16
+ key: string | number;
17
+ text: ReactNode;
18
+ color?: ActionColor | string;
19
+ onClick?: (e: React.MouseEvent) => void;
20
+ style?: React.CSSProperties;
21
+ };
22
+ export declare type SwipeActionProps = {
23
+ rightActions?: Action[];
24
+ leftActions?: Action[];
25
+ onAction?: (action: Action, e: React.MouseEvent) => void;
26
+ closeOnTouchOutside?: boolean;
27
+ closeOnAction?: boolean;
28
+ children: ReactNode;
29
+ stopPropagation?: PropagationEvent[];
30
+ onActionsReveal?: (side: SideType) => void;
31
+ onClose?: () => void;
32
+ escapeDom?: string;
33
+ } & NativeProps<'--background'>;
34
+ export declare const SwipeAction: React.ForwardRefExoticComponent<{
35
+ rightActions?: Action[] | undefined;
36
+ leftActions?: Action[] | undefined;
37
+ onAction?: ((action: Action, e: React.MouseEvent) => void) | undefined;
38
+ closeOnTouchOutside?: boolean | undefined;
39
+ closeOnAction?: boolean | undefined;
40
+ children: ReactNode;
41
+ stopPropagation?: "click"[] | undefined;
42
+ onActionsReveal?: ((side: SideType) => void) | undefined;
43
+ onClose?: (() => void) | undefined;
44
+ escapeDom?: string | undefined;
45
+ } & NativeProps<"--background"> & React.RefAttributes<SwipeActionRef>>;
46
+ export {};
@@ -0,0 +1,373 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/plus/contactInfo/components/SwipeAction/index.tsx
30
+ var SwipeAction_exports = {};
31
+ __export(SwipeAction_exports, {
32
+ SwipeAction: () => SwipeAction
33
+ });
34
+ module.exports = __toCommonJS(SwipeAction_exports);
35
+ var import_web = require("@react-spring/web");
36
+ var import_use_gesture_react = require("@use-gesture/react/dist/use-gesture-react.cjs");
37
+ var import_react = __toESM(require("react"));
38
+ var import_index = require("./index.less");
39
+ function withNativeProps(props, element) {
40
+ const p = {
41
+ ...element.props
42
+ };
43
+ if (props.className) {
44
+ p.className = props.className + (element.props.className ? ` ${element.props.className}` : "");
45
+ }
46
+ if (props.style) {
47
+ p.style = {
48
+ ...props.style,
49
+ ...element.props.style
50
+ };
51
+ }
52
+ return import_react.default.cloneElement(element, p);
53
+ }
54
+ function nearest(arr, target) {
55
+ return arr.reduce((prev, curr) => {
56
+ return Math.abs(curr - target) < Math.abs(prev - target) ? curr : prev;
57
+ });
58
+ }
59
+ function mergeProps(a, b) {
60
+ return {
61
+ ...a,
62
+ ...b
63
+ };
64
+ }
65
+ function withStopPropagation(events, element) {
66
+ if (!events.includes("click")) {
67
+ return element;
68
+ }
69
+ const onClick = (e) => {
70
+ var _a, _b;
71
+ e.stopPropagation();
72
+ (_b = (_a = element.props).onClick) == null ? void 0 : _b.call(_a, e);
73
+ };
74
+ return import_react.default.cloneElement(element, {
75
+ ...element.props,
76
+ onClick
77
+ });
78
+ }
79
+ var Button = ({
80
+ children,
81
+ className,
82
+ style,
83
+ onClick
84
+ }) => {
85
+ return /* @__PURE__ */ import_react.default.createElement(
86
+ "button",
87
+ {
88
+ className,
89
+ style: {
90
+ border: "none",
91
+ background: (style == null ? void 0 : style["--background-color"]) || "transparent",
92
+ ...style
93
+ },
94
+ onClick
95
+ },
96
+ children
97
+ );
98
+ };
99
+ var classPrefix = `pisell-custom-swipe-action`;
100
+ var defaultProps = {
101
+ rightActions: [],
102
+ leftActions: [],
103
+ closeOnTouchOutside: true,
104
+ closeOnAction: true,
105
+ stopPropagation: []
106
+ };
107
+ var SwipeAction = (0, import_react.forwardRef)(
108
+ (p, ref) => {
109
+ const props = mergeProps(defaultProps, p);
110
+ const rootRef = (0, import_react.useRef)(null);
111
+ const leftRef = (0, import_react.useRef)(null);
112
+ const rightRef = (0, import_react.useRef)(null);
113
+ const [containerHeight, setContainerHeight] = (0, import_react.useState)(0);
114
+ function getWidth(ref2) {
115
+ const element = ref2.current;
116
+ if (!element) return 0;
117
+ return element.offsetWidth;
118
+ }
119
+ function getHeight(ref2) {
120
+ const element = ref2.current;
121
+ if (!element) return 0;
122
+ return element.offsetHeight;
123
+ }
124
+ function getLeftWidth() {
125
+ return getWidth(leftRef);
126
+ }
127
+ function getRightWidth() {
128
+ return getWidth(rightRef);
129
+ }
130
+ function getRootHeight() {
131
+ return getHeight(rootRef);
132
+ }
133
+ const [{ x }, api] = (0, import_web.useSpring)(
134
+ () => ({
135
+ x: 0,
136
+ config: { tension: 200, friction: 30 }
137
+ }),
138
+ []
139
+ );
140
+ const draggingRef = (0, import_react.useRef)(false);
141
+ const dragCancelRef = (0, import_react.useRef)(null);
142
+ function forceCancelDrag() {
143
+ var _a;
144
+ (_a = dragCancelRef.current) == null ? void 0 : _a.call(dragCancelRef);
145
+ draggingRef.current = false;
146
+ }
147
+ const bind = (0, import_use_gesture_react.useDrag)(
148
+ (state) => {
149
+ var _a;
150
+ dragCancelRef.current = state.cancel;
151
+ if (!state.intentional) return;
152
+ if (state.down) {
153
+ draggingRef.current = true;
154
+ }
155
+ if (!draggingRef.current) return;
156
+ const [offsetX] = state.offset;
157
+ if (state.last) {
158
+ const leftWidth = getLeftWidth();
159
+ const rightWidth = getRightWidth();
160
+ let position = offsetX + state.velocity[0] * state.direction[0] * 50;
161
+ if (offsetX > 0) {
162
+ position = Math.max(0, position);
163
+ } else if (offsetX < 0) {
164
+ position = Math.min(0, position);
165
+ } else {
166
+ position = 0;
167
+ }
168
+ const targetX = nearest([-rightWidth, 0, leftWidth], position);
169
+ api.start({
170
+ x: targetX
171
+ });
172
+ if (targetX !== 0) {
173
+ (_a = p.onActionsReveal) == null ? void 0 : _a.call(p, targetX > 0 ? "left" : "right");
174
+ }
175
+ window.setTimeout(() => {
176
+ draggingRef.current = false;
177
+ });
178
+ } else {
179
+ api.start({
180
+ x: offsetX,
181
+ immediate: true
182
+ });
183
+ }
184
+ },
185
+ {
186
+ from: () => [x.get(), 0],
187
+ bounds: () => {
188
+ const leftWidth = getLeftWidth();
189
+ const rightWidth = getRightWidth();
190
+ return {
191
+ left: -rightWidth,
192
+ right: leftWidth
193
+ };
194
+ },
195
+ axis: "x",
196
+ preventScroll: true,
197
+ pointer: { touch: true },
198
+ triggerAllEvents: true
199
+ }
200
+ );
201
+ const close = () => {
202
+ var _a;
203
+ api.start({
204
+ x: 0
205
+ });
206
+ forceCancelDrag();
207
+ (_a = props.onClose) == null ? void 0 : _a.call(props);
208
+ };
209
+ (0, import_react.useImperativeHandle)(ref, () => ({
210
+ show: (side = "right") => {
211
+ var _a;
212
+ if (side === "right") {
213
+ api.start({
214
+ x: -getRightWidth()
215
+ });
216
+ } else if (side === "left") {
217
+ api.start({
218
+ x: getLeftWidth()
219
+ });
220
+ }
221
+ (_a = p.onActionsReveal) == null ? void 0 : _a.call(p, side);
222
+ },
223
+ close
224
+ }));
225
+ (0, import_react.useEffect)(() => {
226
+ const updateHeight = () => {
227
+ const height = getRootHeight();
228
+ setContainerHeight(height);
229
+ };
230
+ updateHeight();
231
+ const resizeObserver = new ResizeObserver(updateHeight);
232
+ if (rootRef.current) {
233
+ resizeObserver.observe(rootRef.current);
234
+ }
235
+ return () => {
236
+ resizeObserver.disconnect();
237
+ };
238
+ }, []);
239
+ (0, import_react.useEffect)(() => {
240
+ if (!props.closeOnTouchOutside) return;
241
+ function handle(e) {
242
+ if (e.target && props.escapeDom) {
243
+ const container = document.querySelector(props.escapeDom);
244
+ if (container == null ? void 0 : container.contains(e.target)) return;
245
+ }
246
+ if (x.get() === 0) {
247
+ return;
248
+ }
249
+ const root = rootRef.current;
250
+ if (root && !root.contains(e.target)) {
251
+ close();
252
+ }
253
+ }
254
+ if ("ontouchstart" in window) {
255
+ document.addEventListener("touchstart", handle);
256
+ } else {
257
+ document.addEventListener("mousedown", handle);
258
+ }
259
+ return () => {
260
+ document.removeEventListener("touchstart", handle);
261
+ document.removeEventListener("mousedown", handle);
262
+ };
263
+ }, [props.closeOnTouchOutside, props.escapeDom]);
264
+ const getRightContainerClass = () => {
265
+ const baseClass = `${classPrefix}-actions ${classPrefix}-actions-right`;
266
+ if (containerHeight > 180) {
267
+ return `${baseClass} ${classPrefix}-height-large`;
268
+ } else if (containerHeight > 120) {
269
+ return `${baseClass} ${classPrefix}-height-medium`;
270
+ }
271
+ return `${baseClass} ${classPrefix}-height-small`;
272
+ };
273
+ const getRightActionButtonClass = () => {
274
+ if (containerHeight > 180) {
275
+ return `${classPrefix}-action-height-large`;
276
+ } else if (containerHeight > 120) {
277
+ return `${classPrefix}-action-height-medium`;
278
+ }
279
+ return `${classPrefix}-action-height-small`;
280
+ };
281
+ function renderAction(action, isRightAction = false) {
282
+ const color = action.color ?? "light";
283
+ const _style = action.style || {};
284
+ const buttonClass = isRightAction ? `${classPrefix}-action-button ${getRightActionButtonClass()}` : `${classPrefix}-action-button`;
285
+ return /* @__PURE__ */ import_react.default.createElement(
286
+ Button,
287
+ {
288
+ key: action.key,
289
+ className: buttonClass,
290
+ style: {
291
+ "--background-color": colorRecord[color] ?? color,
292
+ ..._style
293
+ },
294
+ onClick: (e) => {
295
+ var _a, _b;
296
+ if (props.closeOnAction) {
297
+ close();
298
+ }
299
+ (_a = action.onClick) == null ? void 0 : _a.call(action, e);
300
+ (_b = props.onAction) == null ? void 0 : _b.call(props, action, e);
301
+ }
302
+ },
303
+ action.text
304
+ );
305
+ }
306
+ return withNativeProps(
307
+ props,
308
+ /* @__PURE__ */ import_react.default.createElement(
309
+ "div",
310
+ {
311
+ className: classPrefix,
312
+ ...bind(),
313
+ ref: rootRef,
314
+ onClickCapture: (e) => {
315
+ if (draggingRef.current) {
316
+ e.stopPropagation();
317
+ e.preventDefault();
318
+ }
319
+ }
320
+ },
321
+ /* @__PURE__ */ import_react.default.createElement(import_web.animated.div, { className: `${classPrefix}-track`, style: { x } }, withStopPropagation(
322
+ props.stopPropagation,
323
+ /* @__PURE__ */ import_react.default.createElement(
324
+ "div",
325
+ {
326
+ className: `${classPrefix}-actions ${classPrefix}-actions-left`,
327
+ ref: leftRef
328
+ },
329
+ props.leftActions.map((action) => renderAction(action, false))
330
+ )
331
+ ), /* @__PURE__ */ import_react.default.createElement(
332
+ "div",
333
+ {
334
+ className: `${classPrefix}-content`,
335
+ onClickCapture: (e) => {
336
+ if (x.goal !== 0) {
337
+ e.preventDefault();
338
+ e.stopPropagation();
339
+ close();
340
+ }
341
+ }
342
+ },
343
+ /* @__PURE__ */ import_react.default.createElement(
344
+ import_web.animated.div,
345
+ {
346
+ style: {
347
+ pointerEvents: x.to(
348
+ (v) => v !== 0 && x.goal !== 0 ? "none" : "auto"
349
+ )
350
+ }
351
+ },
352
+ props.children
353
+ )
354
+ ), withStopPropagation(
355
+ props.stopPropagation,
356
+ /* @__PURE__ */ import_react.default.createElement("div", { className: getRightContainerClass(), ref: rightRef }, props.rightActions.map((action) => renderAction(action, true)))
357
+ ))
358
+ )
359
+ );
360
+ }
361
+ );
362
+ var colorRecord = {
363
+ light: "#ccc",
364
+ weak: "#999",
365
+ primary: "#1677ff",
366
+ success: "#00b578",
367
+ warning: "#ff8f1f",
368
+ danger: "#ff3141"
369
+ };
370
+ // Annotate the CommonJS export names for ESM import in node:
371
+ 0 && (module.exports = {
372
+ SwipeAction
373
+ });
@@ -0,0 +1,74 @@
1
+ .pisell-custom-swipe-action {
2
+ cursor: grab;
3
+ overflow: hidden;
4
+ touch-action: pan-y;
5
+ &-track {
6
+ position: relative;
7
+ overflow: visible;
8
+ }
9
+ &-content {
10
+ }
11
+ &-actions {
12
+ position: absolute;
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: stretch;
16
+ width: auto;
17
+ white-space: nowrap;
18
+ &-right {
19
+ left: 100%;
20
+ top: 0;
21
+ height: 100%;
22
+ }
23
+ &-left {
24
+ right: 100%;
25
+ top: 0;
26
+ height: 100%;
27
+ }
28
+ }
29
+ &-action-button {
30
+ --border-radius: 0;
31
+ --border-width: 0;
32
+ padding-left: 4px;
33
+ padding-right: 4px;
34
+ }
35
+ }
36
+
37
+ .pisell-custom-swipe-action-action-button {
38
+ min-width: 80px;
39
+ }
40
+
41
+ /* 容器样式 */
42
+ .pisell-custom-swipe-action-height-large {
43
+ display: flex;
44
+ flex-direction: column;
45
+ background-color: rgba(67, 93, 147, 0.3);
46
+ justify-content: flex-start;
47
+
48
+ .pisell-number-selector-btn {
49
+ width: 40px !important;
50
+ height: 40px !important;
51
+ }
52
+ }
53
+
54
+ .pisell-custom-swipe-action-height-medium {
55
+ display: flex;
56
+ flex-direction: column;
57
+ background-color: rgba(67, 93, 147, 0.3);
58
+
59
+ .pisell-number-selector-btn {
60
+ width: 40px !important;
61
+ height: 40px !important;
62
+ }
63
+ }
64
+
65
+ /* 按钮样式 */
66
+ .pisell-custom-swipe-action-action-height-large {
67
+ height: 60px;
68
+ width: 200px;
69
+ }
70
+
71
+ .pisell-custom-swipe-action-action-height-medium {
72
+ flex: 1;
73
+ width: 200px;
74
+ }
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { ContactInfoProps } from './types';
3
+ import './index.less';
4
+ export declare const PREFIX = "pisell-plus-contact-info";
5
+ declare const ContactInfo: React.FC<ContactInfoProps>;
6
+ export default ContactInfo;