@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
@@ -173,7 +173,11 @@ var VerticalClient = (0, import_react.forwardRef)((props, ref) => {
173
173
  const handleAddPet = (_client, cb) => {
174
174
  var _a2, _b2, _c2;
175
175
  let _data = {
176
- formDataConfig: isMinorAndWaiver ? { ...waiverForm, customer_id: _client.id, is_franchisor: (_b2 = (_a2 = state.pet.formData) == null ? void 0 : _a2[0]) == null ? void 0 : _b2.is_franchisor } : { ...((_c2 = state.pet.formData) == null ? void 0 : _c2[0]) || {} }
176
+ formDataConfig: isMinorAndWaiver ? {
177
+ ...waiverForm,
178
+ customer_id: _client.id,
179
+ is_franchisor: (_b2 = (_a2 = state.pet.formData) == null ? void 0 : _a2[0]) == null ? void 0 : _b2.is_franchisor
180
+ } : { ...((_c2 = state.pet.formData) == null ? void 0 : _c2[0]) || {} }
177
181
  };
178
182
  _data.customerId = _client.id;
179
183
  state.action({
@@ -278,7 +282,7 @@ var VerticalClient = (0, import_react.forwardRef)((props, ref) => {
278
282
  } else {
279
283
  const val = await getClients(
280
284
  {
281
- with: ["formRecord"],
285
+ with: ["formRecord", "contactsInfo"],
282
286
  relation_form_id: boardConfig == null ? void 0 : boardConfig.form_id,
283
287
  skip: 1,
284
288
  num: 20,
@@ -449,21 +453,34 @@ var VerticalClient = (0, import_react.forwardRef)((props, ref) => {
449
453
  size: 64,
450
454
  icon: /* @__PURE__ */ import_react.default.createElement(import_User01.default, { className: "pisell-lowcode__booking-client-list-item-avatar-icon" })
451
455
  }
452
- ), isWalkIn ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-info-desc" }, /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-title" }, import_utils.locales.getText("pisell2.text.add-client")), /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-desc-item" }, import_utils.locales.getText("pisell2.text.leave-empty-for-walk-in"))) : /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-title" }, getNickname(state.client.value)), ((_B = state.client.value) == null ? void 0 : _B.email) ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-desc-item" }, (_C = state.client.value) == null ? void 0 : _C.email) : null, ((_D = state.client.value) == null ? void 0 : _D.phone) ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-desc-item" }, (_E = state.client.value) == null ? void 0 : _E.phone) : null, !!((_G = (_F = state.client.value) == null ? void 0 : _F.waiver_form) == null ? void 0 : _G.length) && /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-waiver", title: (0, import_utils5.getWaiverTitle)((_H = state.client.value) == null ? void 0 : _H.waiver_form) }, (_K = (_J = (_I = state.client.value) == null ? void 0 : _I.waiver_form) == null ? void 0 : _J.map) == null ? void 0 : _K.call(_J, (item) => {
453
- return /* @__PURE__ */ import_react.default.createElement("span", null, item.form_title, /* @__PURE__ */ import_react.default.createElement("span", { className: "pisell-lowcode__booking-client-waiver-colon" }, ":"), item.is_filled ? /* @__PURE__ */ import_react.default.createElement(
454
- "span",
455
- {
456
- className: "pisell-lowcode__booking-client-waiver-filled"
457
- },
458
- import_utils.locales.getText("pisell2.text.filled")
459
- ) : /* @__PURE__ */ import_react.default.createElement(
460
- "span",
461
- {
462
- className: "pisell-lowcode__booking-client-waiver-not-filled"
463
- },
464
- import_utils.locales.getText("pisell2.text.not-filled")
465
- ), ` ; `);
466
- }))), !isWalkIn && /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-action-wrap" }, !state.disabledEdit && /* @__PURE__ */ import_react.default.createElement(
456
+ ), isWalkIn ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-info-desc" }, /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-title" }, import_utils.locales.getText("pisell2.text.add-client")), /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-desc-item" }, import_utils.locales.getText("pisell2.text.leave-empty-for-walk-in"))) : /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-title" }, getNickname(state.client.value)), ((_B = state.client.value) == null ? void 0 : _B.email) ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-desc-item" }, (_C = state.client.value) == null ? void 0 : _C.email) : null, ((_D = state.client.value) == null ? void 0 : _D.phone) ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-desc-item" }, (_E = state.client.value) == null ? void 0 : _E.phone) : null, !!((_G = (_F = state.client.value) == null ? void 0 : _F.waiver_form) == null ? void 0 : _G.length) && /* @__PURE__ */ import_react.default.createElement(
457
+ "div",
458
+ {
459
+ className: "pisell-lowcode__booking-client-waiver",
460
+ title: (0, import_utils5.getWaiverTitle)((_H = state.client.value) == null ? void 0 : _H.waiver_form)
461
+ },
462
+ (_K = (_J = (_I = state.client.value) == null ? void 0 : _I.waiver_form) == null ? void 0 : _J.map) == null ? void 0 : _K.call(_J, (item) => {
463
+ return /* @__PURE__ */ import_react.default.createElement("span", null, item.form_title, /* @__PURE__ */ import_react.default.createElement(
464
+ "span",
465
+ {
466
+ className: "pisell-lowcode__booking-client-waiver-colon"
467
+ },
468
+ ":"
469
+ ), item.is_filled ? /* @__PURE__ */ import_react.default.createElement(
470
+ "span",
471
+ {
472
+ className: "pisell-lowcode__booking-client-waiver-filled"
473
+ },
474
+ import_utils.locales.getText("pisell2.text.filled")
475
+ ) : /* @__PURE__ */ import_react.default.createElement(
476
+ "span",
477
+ {
478
+ className: "pisell-lowcode__booking-client-waiver-not-filled"
479
+ },
480
+ import_utils.locales.getText("pisell2.text.not-filled")
481
+ ), ` ; `);
482
+ })
483
+ )), !isWalkIn && /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-client-action-wrap" }, !state.disabledEdit && /* @__PURE__ */ import_react.default.createElement(
467
484
  import_antd.Dropdown.Button,
468
485
  {
469
486
  menu: {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { EditServiceRef } from "../service/editService";
2
3
  declare const useInfoHolder: (state: any, dispatch: any) => {
3
4
  detailRef: import("react").MutableRefObject<EditServiceRef | undefined>;
@@ -54,6 +54,7 @@ var import_index = require("./index.less");
54
54
  var import_notes = __toESM(require("./notes"));
55
55
  var import_service2 = require("./service2");
56
56
  var import_utils3 = require("./service2/utils");
57
+ var import_contactInfoMode = __toESM(require("../info2/service/contactInfoMode"));
57
58
  var defaultModules = {
58
59
  client: 1,
59
60
  date: 1,
@@ -64,7 +65,7 @@ var defaultModules = {
64
65
  };
65
66
  import_utils.locales.init(import_locales.default, (0, import_locales2.getLocale)());
66
67
  var Info = (0, import_model.Provider)((props) => {
67
- var _a, _b, _c, _d, _e, _f, _g, _h, _i;
68
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n;
68
69
  const { style, globalState, modules = defaultModules, slot } = props;
69
70
  const modal = (0, import_react.useContext)(import_model.Context);
70
71
  const context = (0, import_useEngineContext.default)();
@@ -90,7 +91,7 @@ var Info = (0, import_model.Provider)((props) => {
90
91
  }
91
92
  }, []);
92
93
  (0, import_react.useEffect)(() => {
93
- var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j, _k, _l, _m;
94
+ var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2;
94
95
  const isFranchisee = (_d2 = (_c2 = (_b2 = (_a2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _a2.utils) == null ? void 0 : _b2.businessUtils) == null ? void 0 : _c2.getAppByModal) == null ? void 0 : _d2.call(_c2, "franchisee");
95
96
  modal.dispatch({
96
97
  type: "setState",
@@ -99,7 +100,7 @@ var Info = (0, import_model.Provider)((props) => {
99
100
  ...globalState,
100
101
  isTerminal: (_g2 = (_f2 = (_e2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _e2.utils) == null ? void 0 : _f2.isTerminal) == null ? void 0 : _g2.call(_f2),
101
102
  isFranchisee,
102
- timezone: (_m = (_l = (_k = (_j = (_i2 = (_h2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _h2.utils) == null ? void 0 : _i2.store) == null ? void 0 : _j.getState()) == null ? void 0 : _k.global) == null ? void 0 : _l.globalConfig) == null ? void 0 : _m.timezone,
103
+ timezone: (_m2 = (_l2 = (_k2 = (_j2 = (_i2 = (_h2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _h2.utils) == null ? void 0 : _i2.store) == null ? void 0 : _j2.getState()) == null ? void 0 : _k2.global) == null ? void 0 : _l2.globalConfig) == null ? void 0 : _m2.timezone,
103
104
  isDayBooking: (globalState == null ? void 0 : globalState.renderType) === "dayBooking"
104
105
  }
105
106
  });
@@ -171,7 +172,7 @@ var Info = (0, import_model.Provider)((props) => {
171
172
  dispatch: modal.dispatch,
172
173
  source: "info"
173
174
  },
174
- /* @__PURE__ */ import_react.default.createElement("div", { className: "booking-info" }, createHeader, modules.client ? /* @__PURE__ */ import_react.default.createElement(import_client.default, null) : null, modules.holder && !((_i = modal.state) == null ? void 0 : _i.disabledEdit) ? /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, params.type === "form" ? /* @__PURE__ */ import_react.default.createElement(import_pet.default, null) : null) : null, modules.date ? /* @__PURE__ */ import_react.default.createElement(import_date.default, null) : null, /* @__PURE__ */ import_react.default.createElement(
175
+ /* @__PURE__ */ import_react.default.createElement("div", { className: "booking-info" }, createHeader, modules.client ? /* @__PURE__ */ import_react.default.createElement(import_client.default, null) : null, ((_m = (_l = (_k = (_j = (_i = modal == null ? void 0 : modal.state) == null ? void 0 : _i.bookingConfig) == null ? void 0 : _j.config) == null ? void 0 : _k.cart_settings_tab) == null ? void 0 : _l.display_contact_info) == null ? void 0 : _m.show_contact_info) === true ? /* @__PURE__ */ import_react.default.createElement(import_contactInfoMode.default, null) : null, modules.holder && !((_n = modal.state) == null ? void 0 : _n.disabledEdit) ? /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, params.type === "form" ? /* @__PURE__ */ import_react.default.createElement(import_pet.default, null) : null) : null, modules.date ? /* @__PURE__ */ import_react.default.createElement(import_date.default, null) : null, /* @__PURE__ */ import_react.default.createElement(
175
176
  import_antd.Skeleton,
176
177
  {
177
178
  loading: globalState.loading,
@@ -1,5 +1,14 @@
1
+ /// <reference types="react" />
2
+ import { FormState } from '../model';
1
3
  export declare const walkInData: {
2
4
  id: number;
3
5
  nickname: string;
4
6
  };
5
- export declare const Provider: any, Context: any;
7
+ export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
8
+ state: FormState;
9
+ } & {
10
+ dispatch: (params: {
11
+ type: string;
12
+ payload: any;
13
+ }) => void;
14
+ }>;
@@ -38,6 +38,11 @@ var { Provider, Context } = (0, import_utils.miniRedux)({
38
38
  setClient(state, payload) {
39
39
  state.setGlobalState({ client: { ...state.client, ...payload } });
40
40
  },
41
+ setContactsInfo(state, payload) {
42
+ state.setGlobalState({
43
+ contacts_info: { ...state.contacts_info, ...payload }
44
+ });
45
+ },
41
46
  setService(state, payload) {
42
47
  let obj = {};
43
48
  if (payload.value) {
@@ -6,7 +6,7 @@ export declare const getDurationProps: ({ cacheItem, useStartTime, currentResour
6
6
  type: string;
7
7
  value: number;
8
8
  };
9
- locale: string;
9
+ locale: any;
10
10
  slice: any;
11
11
  selectProps: {
12
12
  size: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import "./index.less";
2
3
  declare const Like: ({ status, onChange, className, style, }: {
3
4
  style?: any;
@@ -60,6 +60,7 @@ var import_locales2 = require("../../../utils/locales");
60
60
  var import_ahooks = require("ahooks");
61
61
  var import_cartClientCard = __toESM(require("./cartClientCard"));
62
62
  var import_materials = require("@pisell/materials");
63
+ var import_contactInfoMode = __toESM(require("./service/contactInfoMode"));
63
64
  var defaultModules = {
64
65
  client: 1,
65
66
  date: 1,
@@ -69,7 +70,7 @@ var defaultModules = {
69
70
  };
70
71
  import_utils.locales.init(import_locales.default, (0, import_locales2.getLocale)());
71
72
  var Info = (0, import_model.Provider)((props) => {
72
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l;
73
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q;
73
74
  const { style, globalState, modules = defaultModules, slot } = props;
74
75
  const modal = (0, import_react.useContext)(import_model.Context);
75
76
  const context = (0, import_useEngineContext.default)();
@@ -97,7 +98,7 @@ var Info = (0, import_model.Provider)((props) => {
97
98
  }
98
99
  }, []);
99
100
  (0, import_react.useMemo)(() => {
100
- var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m;
101
+ var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2;
101
102
  const isFranchisee = (_d2 = (_c2 = (_b2 = (_a2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _a2.utils) == null ? void 0 : _b2.businessUtils) == null ? void 0 : _c2.getAppByModal) == null ? void 0 : _d2.call(_c2, "franchisee");
102
103
  modal.dispatch({
103
104
  type: "setState",
@@ -106,7 +107,7 @@ var Info = (0, import_model.Provider)((props) => {
106
107
  ...globalState,
107
108
  isTerminal: (_g2 = (_f2 = (_e2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _e2.utils) == null ? void 0 : _f2.isTerminal) == null ? void 0 : _g2.call(_f2),
108
109
  isFranchisee,
109
- timezone: (_m = (_l2 = (_k2 = (_j2 = (_i2 = (_h2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _h2.utils) == null ? void 0 : _i2.store) == null ? void 0 : _j2.getState()) == null ? void 0 : _k2.global) == null ? void 0 : _l2.globalConfig) == null ? void 0 : _m.timezone
110
+ timezone: (_m2 = (_l2 = (_k2 = (_j2 = (_i2 = (_h2 = context == null ? void 0 : context.appHelper) == null ? void 0 : _h2.utils) == null ? void 0 : _i2.store) == null ? void 0 : _j2.getState()) == null ? void 0 : _k2.global) == null ? void 0 : _l2.globalConfig) == null ? void 0 : _m2.timezone
110
111
  }
111
112
  });
112
113
  }, [globalState]);
@@ -297,7 +298,7 @@ var Info = (0, import_model.Provider)((props) => {
297
298
  style: { color: "#fff", fontSize: 42 }
298
299
  }
299
300
  )
300
- ) : null), modules.holder && !((_l = modal.state) == null ? void 0 : _l.disabledEdit) ? /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, params.type === "form" ? /* @__PURE__ */ import_react.default.createElement(import_pet.default, null) : null) : null, modules.date ? /* @__PURE__ */ import_react.default.createElement(import_date.default, null) : null, /* @__PURE__ */ import_react.default.createElement(
301
+ ) : null), ((_p = (_o = (_n = (_m = (_l = modal == null ? void 0 : modal.state) == null ? void 0 : _l.bookingConfig) == null ? void 0 : _m.config) == null ? void 0 : _n.cart_settings_tab) == null ? void 0 : _o.display_contact_info) == null ? void 0 : _p.show_contact_info) === true ? /* @__PURE__ */ import_react.default.createElement(import_contactInfoMode.default, null) : null, modules.holder && !((_q = modal.state) == null ? void 0 : _q.disabledEdit) ? /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, params.type === "form" ? /* @__PURE__ */ import_react.default.createElement(import_pet.default, null) : null) : null, modules.date ? /* @__PURE__ */ import_react.default.createElement(import_date.default, null) : null, /* @__PURE__ */ import_react.default.createElement(
301
302
  import_antd.Skeleton,
302
303
  {
303
304
  loading: globalState.loading,
@@ -7,7 +7,7 @@ export declare const getDurationProps: ({ cacheItem, useStartTime, currentResour
7
7
  type: string;
8
8
  value: number;
9
9
  };
10
- locale: string;
10
+ locale: any;
11
11
  slice: any;
12
12
  selectProps: {
13
13
  size: string;
@@ -0,0 +1,2 @@
1
+ declare const ContactInfoMode: () => JSX.Element;
2
+ export default ContactInfoMode;
@@ -0,0 +1,111 @@
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/components/booking/info2/service/contactInfoMode/index.tsx
30
+ var contactInfoMode_exports = {};
31
+ __export(contactInfoMode_exports, {
32
+ default: () => contactInfoMode_default
33
+ });
34
+ module.exports = __toCommonJS(contactInfoMode_exports);
35
+ var import_react = __toESM(require("react"));
36
+ var import_utils = require("@pisell/utils");
37
+ var import_contactInfo = __toESM(require("../../../../../plus/contactInfo"));
38
+ var import_model = require("../../../info/model");
39
+ var ContactInfoMode = () => {
40
+ var _a, _b, _c;
41
+ const { state, dispatch } = (0, import_react.useContext)(import_model.Context);
42
+ console.log("state>>>>>>>>>", state);
43
+ (0, import_react.useEffect)(() => {
44
+ var _a2, _b2, _c2, _d, _e, _f, _g, _h, _i;
45
+ console.log("state>>>>>>>>>111", (_a2 = state == null ? void 0 : state.contacts_info) == null ? void 0 : _a2.client_id);
46
+ console.log("state>>>>>>>>>222", (_b2 = state.client.value) == null ? void 0 : _b2.id);
47
+ if (((_c2 = state.client.value) == null ? void 0 : _c2.id) != ((_d = state == null ? void 0 : state.contacts_info) == null ? void 0 : _d.client_id)) {
48
+ const contactInfo = (_f = (_e = state.client.value) == null ? void 0 : _e.contacts_info) == null ? void 0 : _f.value;
49
+ if (!contactInfo) {
50
+ const {
51
+ first_name,
52
+ last_name,
53
+ phone,
54
+ country_calling_code,
55
+ country_code,
56
+ email
57
+ } = ((_g = state.client) == null ? void 0 : _g.value) || {};
58
+ dispatch({
59
+ type: "setContactsInfo",
60
+ payload: {
61
+ value: {
62
+ first_name: first_name || "",
63
+ last_name: last_name || "",
64
+ phone: {
65
+ phone: phone || "",
66
+ country_calling_code: country_calling_code || "",
67
+ country_code: country_code || ""
68
+ },
69
+ email: email || ""
70
+ },
71
+ client_id: (_h = state.client.value) == null ? void 0 : _h.id
72
+ }
73
+ });
74
+ } else {
75
+ dispatch({
76
+ type: "setContactsInfo",
77
+ payload: {
78
+ value: { ...contactInfo || {} },
79
+ client_id: (_i = state.client.value) == null ? void 0 : _i.id
80
+ }
81
+ });
82
+ }
83
+ }
84
+ }, [(_a = state.client.value) == null ? void 0 : _a.id, (_b = state == null ? void 0 : state.contacts_info) == null ? void 0 : _b.client_id]);
85
+ const handleSave = (value) => {
86
+ dispatch({
87
+ type: "setContactsInfo",
88
+ payload: { value, edit: true }
89
+ });
90
+ };
91
+ return /* @__PURE__ */ import_react.default.createElement("div", { style: { marginTop: "24px" } }, /* @__PURE__ */ import_react.default.createElement(
92
+ "div",
93
+ {
94
+ className: "pisell-lowcode__booking-contact-info-title",
95
+ style: { fontSize: "16px", fontWeight: 500, marginBottom: "8px" }
96
+ },
97
+ import_utils.locales.getText("pisell2.booking.text.contact-info.title")
98
+ ), /* @__PURE__ */ import_react.default.createElement(
99
+ import_contactInfo.default,
100
+ {
101
+ dataSource: ((_c = state.contacts_info) == null ? void 0 : _c.value) || null,
102
+ isShowDelete: false,
103
+ isShowAvatar: false,
104
+ isShowPhone: true,
105
+ isShowEmail: true,
106
+ style: { padding: "14px 0 14px 14px" },
107
+ onSave: handleSave
108
+ }
109
+ ));
110
+ };
111
+ var contactInfoMode_default = ContactInfoMode;
@@ -302,6 +302,8 @@ declare const _default: {
302
302
  'pisell2.text.quotation.product.change.describe': string;
303
303
  'pisell2.booking.notes.placeholder': string;
304
304
  'pisell2.text.form.link.to.another.record.more': string;
305
+ 'pisell2.booking.text.contact-info.title': string;
306
+ 'pisell2.booking.text.search-placeholder': string;
305
307
  };
306
308
  'zh-CN': {
307
309
  'pisell2.text.refunded-amount': string;
@@ -606,6 +608,8 @@ declare const _default: {
606
608
  'pisell2.text.quotation.product.change.describe': string;
607
609
  'pisell2.booking.notes.placeholder': string;
608
610
  'pisell2.text.form.link.to.another.record.more': string;
611
+ 'pisell2.booking.text.contact-info.title': string;
612
+ 'pisell2.booking.text.search-placeholder': string;
609
613
  };
610
614
  'zh-HK': {
611
615
  'pisell2.text.refunded-amount': string;
@@ -910,6 +914,8 @@ declare const _default: {
910
914
  'pisell2.text.quotation.product.change.describe': string;
911
915
  'pisell2.booking.notes.placeholder': string;
912
916
  'pisell2.text.form.link.to.another.record.more': string;
917
+ 'pisell2.booking.text.contact-info.title': string;
918
+ 'pisell2.booking.text.search-placeholder': string;
913
919
  };
914
920
  };
915
921
  export default _default;
@@ -369,7 +369,10 @@ var locales_default = {
369
369
  "pisell2.text.quotation.product.change.describe": "Product updates available: Please refresh the following items to load the latest data.",
370
370
  // Notes
371
371
  "pisell2.booking.notes.placeholder": "Enter a note...",
372
- "pisell2.text.form.link.to.another.record.more": "View More"
372
+ "pisell2.text.form.link.to.another.record.more": "View More",
373
+ // 联系信息
374
+ "pisell2.booking.text.contact-info.title": "Contact info",
375
+ "pisell2.booking.text.search-placeholder": "Search Customers / Contacts"
373
376
  },
374
377
  "zh-CN": {
375
378
  "pisell2.text.refunded-amount": "已退金额",
@@ -711,7 +714,10 @@ var locales_default = {
711
714
  "pisell2.text.quotation.product.change.describe": "以下商品信息已更新,请重新编辑相关商品以同步最新数据。",
712
715
  // Notes
713
716
  "pisell2.booking.notes.placeholder": "输入备注...",
714
- "pisell2.text.form.link.to.another.record.more": "查看更多"
717
+ "pisell2.text.form.link.to.another.record.more": "查看更多",
718
+ // 联系信息
719
+ "pisell2.booking.text.contact-info.title": "联系信息",
720
+ "pisell2.booking.text.search-placeholder": "搜索客户/联系信息"
715
721
  },
716
722
  "zh-HK": {
717
723
  "pisell2.text.refunded-amount": "已退金額",
@@ -1053,6 +1059,9 @@ var locales_default = {
1053
1059
  "pisell2.text.quotation.product.change.describe": "以下商品信息已更新,请重新编辑相关商品以同步最新数据。",
1054
1060
  // Notes
1055
1061
  "pisell2.booking.notes.placeholder": "輸入備註...",
1056
- "pisell2.text.form.link.to.another.record.more": "查看更多"
1062
+ "pisell2.text.form.link.to.another.record.more": "查看更多",
1063
+ // 联系信息
1064
+ "pisell2.booking.text.contact-info.title": "聯繫信息",
1065
+ "pisell2.booking.text.search-placeholder": "搜索客戶/聯系信息"
1057
1066
  }
1058
1067
  };
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface FormState {
2
3
  amountSymbol: string;
3
4
  apis: {
@@ -26,6 +27,10 @@ export interface FormState {
26
27
  };
27
28
  edit: boolean;
28
29
  };
30
+ contacts_info: {
31
+ edit: boolean;
32
+ value: any;
33
+ };
29
34
  date: {
30
35
  value: any;
31
36
  end_date: any;
@@ -105,4 +110,11 @@ export declare const walkInData: {
105
110
  id: number;
106
111
  nickname: string;
107
112
  };
108
- export declare const Provider: any, Context: any;
113
+ export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
114
+ state: FormState;
115
+ } & {
116
+ dispatch: (params: {
117
+ type: string;
118
+ payload: any;
119
+ }) => void;
120
+ }>;
@@ -57,6 +57,9 @@ var apis = {
57
57
  },
58
58
  getFormData: () => {
59
59
  return [];
60
+ },
61
+ getContactsInfo: () => {
62
+ return null;
60
63
  }
61
64
  };
62
65
  var walkInData = {
@@ -1 +1,10 @@
1
- export declare const Provider: any, Context: any;
1
+ /// <reference types="react" />
2
+ import { FormState } from "../model";
3
+ export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
4
+ state: FormState;
5
+ } & {
6
+ dispatch: (params: {
7
+ type: string;
8
+ payload: any;
9
+ }) => void;
10
+ }>;
@@ -1 +1,10 @@
1
- export declare const Provider: any, Context: any;
1
+ /// <reference types="react" />
2
+ import { FormState } from "../model";
3
+ export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
4
+ state: FormState;
5
+ } & {
6
+ dispatch: (params: {
7
+ type: string;
8
+ payload: any;
9
+ }) => void;
10
+ }>;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: ({ input, ...formItemProps }: any) => JSX.Element;
2
3
  export default _default;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { RadioGroupProps } from 'antd';
2
3
  export declare const CheckboxGroup: ({ direction, options, ...props }: any) => JSX.Element;
3
4
  export declare const RadioGroup: ({ direction, options, ...props }: RadioGroupProps & {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: ({ color }: {
2
3
  color?: string | undefined;
3
4
  }) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: ({ color }: {
2
3
  color?: string | undefined;
3
4
  }) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  /**
2
3
  * @title: 自定义组件设置
3
4
  * @description: 自定义组件设置
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: () => JSX.Element;
2
3
  export default _default;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import './titlebar.less';
2
3
  declare enum EPopupTitleBarVariantType {
3
4
  BackTitleClose = "back-title-cancel",
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { StatusType } from '../../const';
2
3
  declare const _default: (props: {
3
4
  status: StatusType;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: (props: {
2
3
  status: string;
3
4
  pedding?: string;
@@ -19,7 +19,7 @@ export declare const useStoreRef: <T extends {
19
19
  readonly netRef: React.MutableRefObject<boolean | undefined>;
20
20
  readonly symbolRef: React.MutableRefObject<string>;
21
21
  readonly amountRef: React.MutableRefObject<string | number>;
22
- readonly eftposRef: React.MutableRefObject<"payo" | "tyro" | "windcave" | "stripe" | "linkly">;
22
+ readonly eftposRef: React.MutableRefObject<"stripe" | "tyro" | "windcave" | "payo" | "linkly">;
23
23
  readonly clientRef: React.MutableRefObject<ClientEnum>;
24
24
  readonly dataRef: React.MutableRefObject<import("./store").State>;
25
25
  };