@pisell/private-materials 6.2.10 → 6.2.12

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 (283) 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 +1 -1
  6. package/build/lowcode/preview.js +8 -8
  7. package/build/lowcode/render/default/view.js +2 -2
  8. package/build/lowcode/view.js +8 -8
  9. package/es/businessModel/SalesModel/Sales/index.d.ts +24 -0
  10. package/es/components/Sales/Cart/index.d.ts +53 -0
  11. package/es/components/Sales/Cart/utils.d.ts +63 -0
  12. package/es/components/Sales/Cart/utils.js +17 -1
  13. package/es/components/Sales/Checkout/index.d.ts +37 -0
  14. package/es/components/Sales/Checkout/serve.d.ts +15 -0
  15. package/es/components/Sales/Checkout/utils.d.ts +40 -0
  16. package/es/components/Sales/Customer/index.d.ts +25 -0
  17. package/es/components/Sales/Event/Detail.d.ts +1 -0
  18. package/es/components/Sales/Event/Detail.js +45 -11
  19. package/es/components/Sales/Event/serve.d.ts +10 -0
  20. package/es/components/Sales/Event/serve.js +25 -0
  21. package/es/components/Sales/Resource/index.d.ts +26 -0
  22. package/es/components/Sales/Resource/serve.d.ts +12 -0
  23. package/es/components/Sales/Summary/index.d.ts +35 -0
  24. package/es/components/Sales/Summary/serve.d.ts +1 -0
  25. package/es/components/Sales/Summary/utils.d.ts +51 -0
  26. package/es/components/appointmentBooking/components/Cart/Item/index.d.ts +3 -0
  27. package/es/components/appointmentBooking/components/Deposit/index.d.ts +9 -0
  28. package/es/components/appointmentBooking/components/Form/index.d.ts +4 -0
  29. package/es/components/appointmentBooking/components/Form/utils.d.ts +8 -0
  30. package/es/components/appointmentBooking/components/Header/index.d.ts +3 -0
  31. package/es/components/appointmentBooking/components/Resource/index.d.ts +7 -0
  32. package/es/components/appointmentBooking/deposit/components/PolicyModal/index.d.ts +3 -0
  33. package/es/components/appointmentBooking/deposit/index.d.ts +3 -0
  34. package/es/components/appointmentBooking/index.d.ts +3 -0
  35. package/es/components/booking/components/TabProduct/tabs/index.js +5 -1
  36. package/es/components/booking/components/browserSelect/index.js +1 -1
  37. package/es/components/booking/components/customSelect/index.d.ts +38 -0
  38. package/es/components/booking/components/footer/index.d.ts +11 -0
  39. package/es/components/booking/components/footer/utils.d.ts +41 -0
  40. package/es/components/booking/components/reloadResourceModal/index.d.ts +8 -0
  41. package/es/components/booking/components/voucher/index.d.ts +3 -0
  42. package/es/components/booking/editBookingModal/index.d.ts +5 -0
  43. package/es/components/booking/editBookingModal/locales.d.ts +21 -0
  44. package/es/components/booking/editBookingModal/mock.d.ts +807 -0
  45. package/es/components/booking/editBookingModal/serve.d.ts +51 -0
  46. package/es/components/booking/editBookingModal/type.d.ts +12 -0
  47. package/es/components/booking/editBookingModal/utils.d.ts +12 -0
  48. package/es/components/booking/forms/model.js +5 -5
  49. package/es/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
  50. package/es/components/booking/hooks/useClearCart.d.ts +2 -0
  51. package/es/components/booking/hooks/useIsBooking4Shop.d.ts +1 -0
  52. package/es/components/booking/info/addServiceVariant/index.d.ts +6 -0
  53. package/es/components/booking/info/client/index.d.ts +4 -0
  54. package/es/components/booking/info/hooks/useInfoHolder.d.ts +9 -0
  55. package/es/components/booking/info/index.d.ts +3 -0
  56. package/es/components/booking/info/model.d.ts +5 -0
  57. package/es/components/booking/info/service/Lists.d.ts +2 -0
  58. package/es/components/booking/info/service/addService/index.d.ts +11 -0
  59. package/es/components/booking/info/service/editService/index.d.ts +7 -0
  60. package/es/components/booking/info/service/like/index.js +1 -1
  61. package/es/components/booking/info/service/serviceManager/index.d.ts +20 -0
  62. package/es/components/booking/info/service2/utils.d.ts +247 -0
  63. package/es/components/booking/info/utils.d.ts +50 -0
  64. package/es/components/booking/info2/index.d.ts +12 -0
  65. package/es/components/booking/info2/service/addService/index.d.ts +11 -0
  66. package/es/components/booking/info2/service/addService/utils.d.ts +98 -0
  67. package/es/components/booking/info2/service/addTimeModal/index.d.ts +3 -0
  68. package/es/components/booking/info2/service/editService/Resources/index.d.ts +4 -0
  69. package/es/components/booking/info2/service/editService/ResourcesV2/MaxLengthSelect/index.d.ts +7 -0
  70. package/es/components/booking/info2/service/editService/ResourcesV2/index.d.ts +10 -0
  71. package/es/components/booking/info2/service/editService/index.d.ts +7 -0
  72. package/es/components/booking/info2/service/index.d.ts +4 -0
  73. package/es/components/booking/info2/utils.d.ts +4 -0
  74. package/es/components/booking/info2/utilsByBooking.d.ts +35 -0
  75. package/es/components/booking/locales.d.ts +828 -0
  76. package/es/components/booking/materiels/duration/index.d.ts +13 -0
  77. package/es/components/booking/materiels/startTime/index.js +1 -1
  78. package/es/components/booking/model.d.ts +108 -0
  79. package/es/components/booking/notes/NoteBlock/NoteItem/index.js +1 -1
  80. package/es/components/booking/notes/NoteBlock/index.js +11 -11
  81. package/es/components/booking/notes/model.js +5 -5
  82. package/es/components/booking/payments/model.js +5 -5
  83. package/es/components/booking/utils.d.ts +2 -2
  84. package/es/components/eftposPay/amount.d.ts +1 -1
  85. package/es/components/eftposPay/const.d.ts +184 -0
  86. package/es/components/eftposPay/device.d.ts +1 -1
  87. package/es/components/eftposPay/hooks.d.ts +35 -0
  88. package/es/components/eftposPay/index.d.ts +4 -0
  89. package/es/components/eftposPay/linkly/const.d.ts +23 -0
  90. package/es/components/eftposPay/linkly/hooks/index.d.ts +2 -0
  91. package/es/components/eftposPay/linkly/hooks/normal.d.ts +30 -0
  92. package/es/components/eftposPay/linkly/hooks/useTimeQuery.d.ts +4 -0
  93. package/es/components/eftposPay/linkly/index.d.ts +2 -0
  94. package/es/components/eftposPay/linkly/service.d.ts +32 -0
  95. package/es/components/eftposPay/manufacturer.d.ts +7 -0
  96. package/es/components/eftposPay/pay.d.ts +20 -0
  97. package/es/components/eftposPay/payo/config.d.ts +12 -0
  98. package/es/components/eftposPay/store/index.d.ts +355 -0
  99. package/es/components/eventBooking/components/Provider/Cart/ContinueButton/index.d.ts +3 -0
  100. package/es/components/eventBooking/components/Provider/Cart/Deposit/index.d.ts +2 -0
  101. package/es/components/eventBooking/components/Provider/Cart/Item/Total.d.ts +3 -0
  102. package/es/components/eventBooking/components/Provider/Cart/Item/index.d.ts +3 -0
  103. package/es/components/eventBooking/components/Provider/Event/index.d.ts +3 -0
  104. package/es/components/eventBooking/components/bookingDetailModal/index.d.ts +7 -0
  105. package/es/components/eventBooking/components/bookingDetailModal/index.js +3 -2
  106. package/es/components/eventBooking/index.d.ts +3 -0
  107. package/es/components/eventBooking/locales.d.ts +246 -0
  108. package/es/components/index.d.ts +20 -0
  109. package/es/components/listComponent/index.js +5 -5
  110. package/es/components/pay/toC/PaymentMethods/GlobePayAliPayH5/index.d.ts +10 -0
  111. package/es/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.d.ts +3 -0
  112. package/es/components/pay/toC/PaymentMethods/MWCreditCard/tds2.d.ts +61 -0
  113. package/es/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.d.ts +10 -0
  114. package/es/components/pay/toC/PaymentMethods/index.d.ts +9 -0
  115. package/es/components/pay/toC/index.d.ts +3 -0
  116. package/es/components/pay/toC/locales.d.ts +289 -0
  117. package/es/components/productExtension/card/index.js +3 -3
  118. package/es/components/productExtension/fields/Actor/CutOffTime/index.js +1 -1
  119. package/es/components/productExtension/fields/Forms/index.js +12 -12
  120. package/es/components/productExtension/fields/SelectProducts/ProductItemPreview/index.js +1 -1
  121. package/es/components/productExtension/fields/SelectProducts/server.js +2 -2
  122. package/es/components/productExtension/fields/SelectResourcesTable/server.js +2 -2
  123. package/es/components/productExtension/server.js +2 -2
  124. package/es/components/productSelect/components/pisellPriceText/index.d.ts +11 -0
  125. package/es/components/ruleSetting/ruleBorder/index.js +1 -1
  126. package/es/components/schedules/calendar/index.js +4 -4
  127. package/es/components/schedules/calendar/serve.js +2 -2
  128. package/es/components/schedules/components/CurrentDay/index.js +5 -5
  129. package/es/components/schedules/components/CurrentDay/serve.js +2 -2
  130. package/es/components/schedules/components/DropdownSort/index.js +1 -1
  131. package/es/components/schedules/components/ResourceList/index.js +1 -1
  132. package/es/components/schedules/components/Search/index.js +5 -5
  133. package/es/components/schedules/model.js +5 -5
  134. package/es/components/schedules/openHours/index.js +1 -1
  135. package/es/components/schedules/openHours/serve.js +2 -2
  136. package/es/components/schedules/products/ProductDetailDrawer/ProductDetail/MaxParticipantsModule/index.js +1 -1
  137. package/es/components/schedules/products/ProductDetailDrawer/ProductDetail/ResourcesModule/index.js +5 -5
  138. package/es/components/schedules/products/ProductDetailDrawer/ProductDetail/SchedulesModule/index.js +4 -4
  139. package/es/components/schedules/products/ProductDetailDrawer/index.js +3 -3
  140. package/es/components/schedules/products/serve.js +2 -2
  141. package/es/components/schedules/products/utils.js +5 -5
  142. package/es/components/schedules/resources/detail/detailContent.js +2 -2
  143. package/es/components/schedules/resources/detail/index.js +10 -10
  144. package/es/components/schedules/resources/list/index.js +2 -2
  145. package/es/components/schedules/resources/relationProduct/index.js +1 -1
  146. package/es/components/schedules/resources/serve.js +2 -2
  147. package/es/components/schedules/schedules/ScheduleDetailDrawer/index.js +9 -9
  148. package/es/components/schedules/utils.js +4 -4
  149. package/es/components/selectModal/index.js +2 -2
  150. package/es/components/shoppingCart/components/Cart/Product.d.ts +3 -0
  151. package/es/components/shoppingCart/components/Cart/index.d.ts +3 -0
  152. package/es/components/stepController/components/Content/index.d.ts +7 -0
  153. package/es/components/stepController/components/Footer/index.d.ts +8 -0
  154. package/es/components/stepController/components/Header/index.d.ts +20 -0
  155. package/es/components/stepController/index.d.ts +5 -0
  156. package/es/components/stepController/locales.d.ts +27 -0
  157. package/es/components/stepController/types.d.ts +23 -0
  158. package/es/components/ticketBooking/components/ticketBooking/index.d.ts +4 -0
  159. package/es/components/ticketBooking/serve.d.ts +287 -0
  160. package/es/components/ticketBooking/utils/formatProductMessage.d.ts +2 -0
  161. package/es/components/ticketBooking/utils/formatTime.d.ts +31 -0
  162. package/es/components/ticketBooking/utils/index.d.ts +23 -0
  163. package/es/hooks/useComponents.js +1 -1
  164. package/es/hooks/useWindowSize.d.ts +5 -0
  165. package/es/index.d.ts +47 -0
  166. package/es/utils/index.d.ts +23 -0
  167. package/lib/businessModel/SalesModel/Sales/index.d.ts +24 -0
  168. package/lib/components/Sales/Cart/index.d.ts +53 -0
  169. package/lib/components/Sales/Cart/utils.d.ts +63 -0
  170. package/lib/components/Sales/Cart/utils.js +10 -1
  171. package/lib/components/Sales/Checkout/index.d.ts +37 -0
  172. package/lib/components/Sales/Checkout/serve.d.ts +15 -0
  173. package/lib/components/Sales/Checkout/utils.d.ts +40 -0
  174. package/lib/components/Sales/Customer/index.d.ts +25 -0
  175. package/lib/components/Sales/Event/Detail.d.ts +1 -0
  176. package/lib/components/Sales/Event/Detail.js +37 -12
  177. package/lib/components/Sales/Event/serve.d.ts +10 -0
  178. package/lib/components/Sales/Event/serve.js +7 -0
  179. package/lib/components/Sales/Resource/index.d.ts +26 -0
  180. package/lib/components/Sales/Resource/serve.d.ts +12 -0
  181. package/lib/components/Sales/Summary/index.d.ts +35 -0
  182. package/lib/components/Sales/Summary/serve.d.ts +1 -0
  183. package/lib/components/Sales/Summary/utils.d.ts +51 -0
  184. package/lib/components/appointmentBooking/components/Cart/Item/index.d.ts +3 -0
  185. package/lib/components/appointmentBooking/components/Deposit/index.d.ts +9 -0
  186. package/lib/components/appointmentBooking/components/Form/index.d.ts +4 -0
  187. package/lib/components/appointmentBooking/components/Form/utils.d.ts +8 -0
  188. package/lib/components/appointmentBooking/components/Header/index.d.ts +3 -0
  189. package/lib/components/appointmentBooking/components/Resource/index.d.ts +7 -0
  190. package/lib/components/appointmentBooking/deposit/components/PolicyModal/index.d.ts +3 -0
  191. package/lib/components/appointmentBooking/deposit/index.d.ts +3 -0
  192. package/lib/components/appointmentBooking/index.d.ts +3 -0
  193. package/lib/components/booking/components/customSelect/index.d.ts +38 -0
  194. package/lib/components/booking/components/footer/index.d.ts +11 -0
  195. package/lib/components/booking/components/footer/utils.d.ts +41 -0
  196. package/lib/components/booking/components/reloadResourceModal/index.d.ts +8 -0
  197. package/lib/components/booking/components/voucher/index.d.ts +3 -0
  198. package/lib/components/booking/editBookingModal/index.d.ts +5 -0
  199. package/lib/components/booking/editBookingModal/locales.d.ts +21 -0
  200. package/lib/components/booking/editBookingModal/mock.d.ts +807 -0
  201. package/lib/components/booking/editBookingModal/serve.d.ts +51 -0
  202. package/lib/components/booking/editBookingModal/type.d.ts +12 -0
  203. package/lib/components/booking/editBookingModal/utils.d.ts +12 -0
  204. package/lib/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
  205. package/lib/components/booking/hooks/useClearCart.d.ts +2 -0
  206. package/lib/components/booking/hooks/useIsBooking4Shop.d.ts +1 -0
  207. package/lib/components/booking/info/addServiceVariant/index.d.ts +6 -0
  208. package/lib/components/booking/info/client/index.d.ts +4 -0
  209. package/lib/components/booking/info/hooks/useInfoHolder.d.ts +9 -0
  210. package/lib/components/booking/info/index.d.ts +3 -0
  211. package/lib/components/booking/info/model.d.ts +5 -0
  212. package/lib/components/booking/info/service/Lists.d.ts +2 -0
  213. package/lib/components/booking/info/service/addService/index.d.ts +11 -0
  214. package/lib/components/booking/info/service/editService/index.d.ts +7 -0
  215. package/lib/components/booking/info/service/serviceManager/index.d.ts +20 -0
  216. package/lib/components/booking/info/service2/utils.d.ts +247 -0
  217. package/lib/components/booking/info/utils.d.ts +50 -0
  218. package/lib/components/booking/info2/index.d.ts +12 -0
  219. package/lib/components/booking/info2/service/addService/index.d.ts +11 -0
  220. package/lib/components/booking/info2/service/addService/utils.d.ts +98 -0
  221. package/lib/components/booking/info2/service/addTimeModal/index.d.ts +3 -0
  222. package/lib/components/booking/info2/service/editService/Resources/index.d.ts +4 -0
  223. package/lib/components/booking/info2/service/editService/ResourcesV2/MaxLengthSelect/index.d.ts +7 -0
  224. package/lib/components/booking/info2/service/editService/ResourcesV2/index.d.ts +10 -0
  225. package/lib/components/booking/info2/service/editService/index.d.ts +7 -0
  226. package/lib/components/booking/info2/service/index.d.ts +4 -0
  227. package/lib/components/booking/info2/utils.d.ts +4 -0
  228. package/lib/components/booking/info2/utilsByBooking.d.ts +35 -0
  229. package/lib/components/booking/locales.d.ts +828 -0
  230. package/lib/components/booking/materiels/duration/index.d.ts +13 -0
  231. package/lib/components/booking/model.d.ts +108 -0
  232. package/lib/components/booking/utils.d.ts +2 -2
  233. package/lib/components/eftposPay/amount.d.ts +1 -1
  234. package/lib/components/eftposPay/const.d.ts +184 -0
  235. package/lib/components/eftposPay/device.d.ts +1 -1
  236. package/lib/components/eftposPay/hooks.d.ts +35 -0
  237. package/lib/components/eftposPay/index.d.ts +4 -0
  238. package/lib/components/eftposPay/linkly/const.d.ts +23 -0
  239. package/lib/components/eftposPay/linkly/hooks/index.d.ts +2 -0
  240. package/lib/components/eftposPay/linkly/hooks/normal.d.ts +30 -0
  241. package/lib/components/eftposPay/linkly/hooks/useTimeQuery.d.ts +4 -0
  242. package/lib/components/eftposPay/linkly/index.d.ts +2 -0
  243. package/lib/components/eftposPay/linkly/service.d.ts +32 -0
  244. package/lib/components/eftposPay/manufacturer.d.ts +7 -0
  245. package/lib/components/eftposPay/pay.d.ts +20 -0
  246. package/lib/components/eftposPay/payo/config.d.ts +12 -0
  247. package/lib/components/eftposPay/store/index.d.ts +355 -0
  248. package/lib/components/eventBooking/components/Provider/Cart/ContinueButton/index.d.ts +3 -0
  249. package/lib/components/eventBooking/components/Provider/Cart/Deposit/index.d.ts +2 -0
  250. package/lib/components/eventBooking/components/Provider/Cart/Item/Total.d.ts +3 -0
  251. package/lib/components/eventBooking/components/Provider/Cart/Item/index.d.ts +3 -0
  252. package/lib/components/eventBooking/components/Provider/Event/index.d.ts +3 -0
  253. package/lib/components/eventBooking/components/bookingDetailModal/index.d.ts +7 -0
  254. package/lib/components/eventBooking/components/bookingDetailModal/index.js +3 -2
  255. package/lib/components/eventBooking/index.d.ts +3 -0
  256. package/lib/components/eventBooking/locales.d.ts +246 -0
  257. package/lib/components/index.d.ts +20 -0
  258. package/lib/components/pay/toC/PaymentMethods/GlobePayAliPayH5/index.d.ts +10 -0
  259. package/lib/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.d.ts +3 -0
  260. package/lib/components/pay/toC/PaymentMethods/MWCreditCard/tds2.d.ts +61 -0
  261. package/lib/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.d.ts +10 -0
  262. package/lib/components/pay/toC/PaymentMethods/index.d.ts +9 -0
  263. package/lib/components/pay/toC/index.d.ts +3 -0
  264. package/lib/components/pay/toC/locales.d.ts +289 -0
  265. package/lib/components/productSelect/components/pisellPriceText/index.d.ts +11 -0
  266. package/lib/components/schedules/utils.js +1 -1
  267. package/lib/components/shoppingCart/components/Cart/Product.d.ts +3 -0
  268. package/lib/components/shoppingCart/components/Cart/index.d.ts +3 -0
  269. package/lib/components/stepController/components/Content/index.d.ts +7 -0
  270. package/lib/components/stepController/components/Footer/index.d.ts +8 -0
  271. package/lib/components/stepController/components/Header/index.d.ts +20 -0
  272. package/lib/components/stepController/index.d.ts +5 -0
  273. package/lib/components/stepController/locales.d.ts +27 -0
  274. package/lib/components/stepController/types.d.ts +23 -0
  275. package/lib/components/ticketBooking/components/ticketBooking/index.d.ts +4 -0
  276. package/lib/components/ticketBooking/serve.d.ts +287 -0
  277. package/lib/components/ticketBooking/utils/formatProductMessage.d.ts +2 -0
  278. package/lib/components/ticketBooking/utils/formatTime.d.ts +31 -0
  279. package/lib/components/ticketBooking/utils/index.d.ts +23 -0
  280. package/lib/hooks/useWindowSize.d.ts +5 -0
  281. package/lib/index.d.ts +47 -0
  282. package/lib/utils/index.d.ts +23 -0
  283. package/package.json +3 -3
@@ -0,0 +1,246 @@
1
+ declare const _default: {
2
+ en: {
3
+ 'pisell2.event.calendar.limit.unavailable': string;
4
+ 'pisell2.event.calendar.limit.sold.out': string;
5
+ 'pisell2.event.calendar.limit.call.to.book': string;
6
+ 'pisell2.event.calendar.limit.filling.up.fast': string;
7
+ 'pisell2.event.calendar.limit.lots.of.space': string;
8
+ 'pisell2.event.calendar.booking-closed': string;
9
+ 'pisell2.event.calendar.call-to-book': string;
10
+ 'pisell2.event.calendar.email-to-book': string;
11
+ 'pisell2.event.close.title': string;
12
+ 'pisell2.event.close.tip': string;
13
+ 'pisell2.event.close.continue': string;
14
+ 'pisell2.event.close.exit': string;
15
+ 'pisell2.event.step': (step: number) => string;
16
+ 'pisell2.event.select.category': (val: string) => string;
17
+ 'pisell2.event.select.campus': (val: string) => string;
18
+ 'pisell2.event.select.event': string;
19
+ 'pisell2.event.cart': string;
20
+ 'pisell2.event.total': string;
21
+ 'pisell2.event.total.gst': (val: string, amount: any) => string;
22
+ 'pisell2.event.continue': string;
23
+ 'pisell2.event.details': string;
24
+ 'pisell2.event.introduction': string;
25
+ 'pisell2.event.schedule': string;
26
+ 'pisell2.event.teacher': string;
27
+ 'pisell2.event.campus': string;
28
+ 'pisell2.event.resource': string;
29
+ 'pisell2.event.booking.options': string;
30
+ 'pisell2.event.add.to.cart': string;
31
+ 'pisell2.event.description': string;
32
+ 'pisell2.event.view.more': string;
33
+ 'pisell2.event.view.less': string;
34
+ 'pisell2.event.holder.modal.title': string;
35
+ 'pisell2.event.confirm': string;
36
+ 'pisell2.event.confirm.information': string;
37
+ 'pisell2.event.confirm.information.tip': string;
38
+ 'pisell2.event.confirm.information.other': string;
39
+ 'pisell2.event.add.others': string;
40
+ 'pisell2.event.checkout': string;
41
+ 'pisell2.event.edit.event': string;
42
+ 'pisell2.event.remove': string;
43
+ 'pisell2.event.option': string;
44
+ 'pisell2.event.order.items.error.title': string;
45
+ 'pisell2.event.order.items.error.tip': (val: number) => string;
46
+ 'pisell2.event.order.items.error.proceed': string;
47
+ 'pisell2.event.order.items.error.return': string;
48
+ 'pisell2.event.order.items.error.back': string;
49
+ 'pisell2.event.order.items.error.continue': string;
50
+ 'pisell2.event.order.items.error.all.tip': string;
51
+ 'pisell2.event.remove.title': string;
52
+ 'pisell2.event.remove.tip': string;
53
+ 'pisell2.event.remove.cancel': string;
54
+ 'pisell2.event.create': string;
55
+ 'pisell2.event.search': string;
56
+ 'pisell2.event.empty.service': string;
57
+ 'pisell2.event.title': (val: number) => string;
58
+ 'pisell2.event.create.form': string;
59
+ 'pisell2.event.empty.event': string;
60
+ 'pisell2.event.error.holder': string;
61
+ 'pisell2.event.price.from': string;
62
+ 'pisell2.event.empty.holder.title': string;
63
+ 'pisell2.event.empty.holder.tip': string;
64
+ 'pisell2.event.empty.holder.continue.tip': string;
65
+ 'pisell2.event.empty.holder.go.back': string;
66
+ 'pisell2.event.empty.holder.continue.anyway': string;
67
+ 'pisell2.event.event.full.title': string;
68
+ 'pisell2.event.event.full.tip': string;
69
+ 'pisell2.event.event.full.ok': string;
70
+ 'pisell2.event.capacity.limit.reached.title': string;
71
+ 'pisell2.event.capacity.limit.reached.tip': string;
72
+ 'pisell2.event.schedule.item.expand': string;
73
+ 'pisell2.event.schedule.item.collapse': string;
74
+ 'pisell2.appointment.deposit': string;
75
+ 'pisell2.appointment.deposit.agreed': string;
76
+ 'pisell2.appointment.deposit.agree.policy': string;
77
+ 'pisell2.appointment.deposit.and': string;
78
+ 'pisell2.appointment.deposit.amount.tip1': string;
79
+ 'pisell2.appointment.deposit.amount.tip2': string;
80
+ 'pisell2.appointment.deposit.close': string;
81
+ 'pisell2.appointment.booking.empty.data': string;
82
+ };
83
+ 'zh-CN': {
84
+ 'pisell2.event.calendar.limit.unavailable': string;
85
+ 'pisell2.event.calendar.limit.sold.out': string;
86
+ 'pisell2.event.calendar.limit.call.to.book': string;
87
+ 'pisell2.event.calendar.limit.filling.up.fast': string;
88
+ 'pisell2.event.calendar.limit.lots.of.space': string;
89
+ 'pisell2.event.calendar.booking-closed': string;
90
+ 'pisell2.event.calendar.call-to-book': string;
91
+ 'pisell2.event.calendar.email-to-book': string;
92
+ 'pisell2.event.close.title': string;
93
+ 'pisell2.event.close.tip': string;
94
+ 'pisell2.event.close.continue': string;
95
+ 'pisell2.event.close.exit': string;
96
+ 'pisell2.event.step': (step: number) => string;
97
+ 'pisell2.event.select.category': (val: string) => string;
98
+ 'pisell2.event.select.event': string;
99
+ 'pisell2.event.select.campus': (val: string) => string;
100
+ 'pisell2.event.cart': string;
101
+ 'pisell2.event.total': string;
102
+ 'pisell2.event.total.gst': (val: string, amount: any) => string;
103
+ 'pisell2.event.continue': string;
104
+ 'pisell2.event.details': string;
105
+ 'pisell2.event.introduction': string;
106
+ 'pisell2.event.schedule': string;
107
+ 'pisell2.event.teacher': string;
108
+ 'pisell2.event.campus': string;
109
+ 'pisell2.event.resource': string;
110
+ 'pisell2.event.booking.options': string;
111
+ 'pisell2.event.add.to.cart': string;
112
+ 'pisell2.event.description': string;
113
+ 'pisell2.event.view.more': string;
114
+ 'pisell2.event.view.less': string;
115
+ 'pisell2.event.holder.modal.title': string;
116
+ 'pisell2.event.confirm': string;
117
+ 'pisell2.event.confirm.information': string;
118
+ 'pisell2.event.confirm.information.tip': string;
119
+ 'pisell2.event.confirm.information.other': string;
120
+ 'pisell2.event.add.others': string;
121
+ 'pisell2.event.checkout': string;
122
+ 'pisell2.event.edit.event': string;
123
+ 'pisell2.event.remove': string;
124
+ 'pisell2.event.option': string;
125
+ 'pisell2.event.order.items.error.title': string;
126
+ 'pisell2.event.order.items.error.tip': (val: number) => string;
127
+ 'pisell2.event.order.items.error.proceed': string;
128
+ 'pisell2.event.order.items.error.return': string;
129
+ 'pisell2.event.order.items.error.back': string;
130
+ 'pisell2.event.order.items.error.continue': string;
131
+ 'pisell2.event.order.items.error.all.tip': string;
132
+ 'pisell2.event.remove.title': string;
133
+ 'pisell2.event.remove.tip': string;
134
+ 'pisell2.event.remove.cancel': string;
135
+ 'pisell2.event.create': string;
136
+ 'pisell2.event.search': string;
137
+ 'pisell2.event.empty.service': string;
138
+ 'pisell2.event.title': (val: number) => string;
139
+ 'pisell2.event.create.form': string;
140
+ 'pisell2.event.empty.event': string;
141
+ 'pisell2.event.error.holder': string;
142
+ 'pisell2.event.price.from': string;
143
+ 'pisell2.event.empty.holder.title': string;
144
+ 'pisell2.event.empty.holder.tip': string;
145
+ 'pisell2.event.empty.holder.continue.tip': string;
146
+ 'pisell2.event.empty.holder.go.back': string;
147
+ 'pisell2.event.empty.holder.continue.anyway': string;
148
+ 'pisell2.event.event.full.title': string;
149
+ 'pisell2.event.event.full.tip': string;
150
+ 'pisell2.event.event.full.ok': string;
151
+ 'pisell2.event.capacity.limit.reached.title': string;
152
+ 'pisell2.event.capacity.limit.reached.tip': string;
153
+ 'pisell2.event.schedule.item.expand': string;
154
+ 'pisell2.event.schedule.item.collapse': string;
155
+ 'pisell2.appointment.deposit': string;
156
+ 'pisell2.appointment.deposit.agreed': string;
157
+ 'pisell2.appointment.deposit.agree.policy': string;
158
+ 'pisell2.appointment.deposit.and': string;
159
+ 'pisell2.appointment.deposit.amount.tip1': string;
160
+ 'pisell2.appointment.deposit.amount.tip2': string;
161
+ 'pisell2.appointment.deposit.close': string;
162
+ 'pisell2.appointment.booking.empty.data': string;
163
+ };
164
+ 'zh-HK': {
165
+ 'pisell2.event.calendar.limit.unavailable': string;
166
+ 'pisell2.event.calendar.limit.sold.out': string;
167
+ 'pisell2.event.calendar.limit.call.to.book': string;
168
+ 'pisell2.event.calendar.limit.filling.up.fast': string;
169
+ 'pisell2.event.calendar.limit.lots.of.space': string;
170
+ 'pisell2.event.calendar.booking-closed': string;
171
+ 'pisell2.event.calendar.call-to-book': string;
172
+ 'pisell2.event.calendar.email-to-book': string;
173
+ 'pisell2.event.close.title': string;
174
+ 'pisell2.event.close.tip': string;
175
+ 'pisell2.event.close.continue': string;
176
+ 'pisell2.event.close.exit': string;
177
+ 'pisell2.event.step': (step: number) => string;
178
+ 'pisell2.event.select.category': (val: string) => string;
179
+ 'pisell2.event.select.event': string;
180
+ 'pisell2.event.select.campus': (val: string) => string;
181
+ 'pisell2.event.cart': string;
182
+ 'pisell2.event.total': string;
183
+ 'pisell2.event.total.gst': (val: string, amount: any) => string;
184
+ 'pisell2.event.continue': string;
185
+ 'pisell2.event.details': string;
186
+ 'pisell2.event.introduction': string;
187
+ 'pisell2.event.schedule': string;
188
+ 'pisell2.event.teacher': string;
189
+ 'pisell2.event.campus': string;
190
+ 'pisell2.event.resource': string;
191
+ 'pisell2.event.booking.options': string;
192
+ 'pisell2.event.add.to.cart': string;
193
+ 'pisell2.event.description': string;
194
+ 'pisell2.event.view.more': string;
195
+ 'pisell2.event.view.less': string;
196
+ 'pisell2.event.holder.modal.title': string;
197
+ 'pisell2.event.confirm': string;
198
+ 'pisell2.event.confirm.information': string;
199
+ 'pisell2.event.confirm.information.tip': string;
200
+ 'pisell2.event.confirm.information.other': string;
201
+ 'pisell2.event.add.others': string;
202
+ 'pisell2.event.checkout': string;
203
+ 'pisell2.event.edit.event': string;
204
+ 'pisell2.event.remove': string;
205
+ 'pisell2.event.option': string;
206
+ 'pisell2.event.order.items.error.title': string;
207
+ 'pisell2.event.order.items.error.tip': (val: number) => string;
208
+ 'pisell2.event.order.items.error.proceed': string;
209
+ 'pisell2.event.order.items.error.return': string;
210
+ 'pisell2.event.order.items.error.back': string;
211
+ 'pisell2.event.order.items.error.continue': string;
212
+ 'pisell2.event.order.items.error.all.tip': string;
213
+ 'pisell2.event.remove.title': string;
214
+ 'pisell2.event.remove.tip': string;
215
+ 'pisell2.event.remove.cancel': string;
216
+ 'pisell2.event.create': string;
217
+ 'pisell2.event.search': string;
218
+ 'pisell2.event.empty.service': string;
219
+ 'pisell2.event.title': (val: number) => string;
220
+ 'pisell2.event.create.form': string;
221
+ 'pisell2.event.empty.event': string;
222
+ 'pisell2.event.error.holder': string;
223
+ 'pisell2.event.price.from': string;
224
+ 'pisell2.event.empty.holder.title': string;
225
+ 'pisell2.event.empty.holder.tip': string;
226
+ 'pisell2.event.empty.holder.continue.tip': string;
227
+ 'pisell2.event.empty.holder.go.back': string;
228
+ 'pisell2.event.empty.holder.continue.anyway': string;
229
+ 'pisell2.event.event.full.title': string;
230
+ 'pisell2.event.event.full.tip': string;
231
+ 'pisell2.event.event.full.ok': string;
232
+ 'pisell2.event.capacity.limit.reached.title': string;
233
+ 'pisell2.event.capacity.limit.reached.tip': string;
234
+ 'pisell2.event.schedule.item.expand': string;
235
+ 'pisell2.event.schedule.item.collapse': string;
236
+ 'pisell2.appointment.deposit': string;
237
+ 'pisell2.appointment.deposit.agreed': string;
238
+ 'pisell2.appointment.deposit.agree.policy': string;
239
+ 'pisell2.appointment.deposit.and': string;
240
+ 'pisell2.appointment.deposit.amount.tip1': string;
241
+ 'pisell2.appointment.deposit.amount.tip2': string;
242
+ 'pisell2.appointment.deposit.close': string;
243
+ 'pisell2.appointment.booking.empty.data': string;
244
+ };
245
+ };
246
+ export default _default;
@@ -0,0 +1,20 @@
1
+ import Login from './login';
2
+ import BookingInfo from './booking/info/index';
3
+ import Booking from './booking';
4
+ import BookingNotes from './booking/notes';
5
+ import BookingAddons from './booking/addons';
6
+ import BookingForms from './booking/forms';
7
+ import Schedules from './schedules';
8
+ import ProductExtension from './productExtension';
9
+ import RuleSetting from './ruleSetting';
10
+ import TaxSelect from './taxSelect';
11
+ import ToCPay from './pay/toC';
12
+ import Wallet from './wallet';
13
+ import WalletList from './walletList';
14
+ import WorkspaceListDetail from './workSpaceListDetail/';
15
+ import WorkspaceList from './workSpaceList';
16
+ import PisellSelectCustomerModal from './pisellSelectCustomerModal';
17
+ import SubTotal from './subTotal';
18
+ import EditBookingModal from './booking/editBookingModal';
19
+ import StepController from './stepController';
20
+ export { Login, BookingInfo, Booking, BookingNotes, BookingAddons, BookingForms, Schedules, ProductExtension, RuleSetting, TaxSelect, ToCPay, PisellSelectCustomerModal, Wallet, WalletList, WorkspaceList, WorkspaceListDetail, SubTotal, EditBookingModal, StepController };
@@ -1,9 +1,9 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
4
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
7
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
8
8
  function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
9
9
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ export interface GlobePayAliPayH5Ref {
4
+ init: (res: any) => void;
5
+ }
6
+ export interface GlobePayAliPayH5Props {
7
+ onChange?: (values: any) => void;
8
+ }
9
+ declare const _default: React.ForwardRefExoticComponent<GlobePayAliPayH5Props & React.RefAttributes<any>>;
10
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import './index.less';
2
+ declare const ThreedsLoading: ({ title, showSuccessBackButton, onSuccessBack }: any) => JSX.Element;
3
+ export default ThreedsLoading;
@@ -0,0 +1,61 @@
1
+ /**
2
+ * @title: 点击支付
3
+ * @description:
4
+ * @param {any} param1
5
+ * @return {*}
6
+ * @Author: Wzw
7
+ * @Date: 2022-10-22 10:05
8
+ */
9
+ export declare const startPayment: ({ orderId, cardInfo, payData }: any, callback?: any) => Promise<boolean | undefined>;
10
+ /*******
11
+ * @title: 步骤2
12
+ * @description: 提交卡信息到后端
13
+ * @return {*}
14
+ * @Author: Wzw
15
+ * @Date: 2022-10-18 10:26
16
+ */
17
+ export declare const checkEnrollment: (orderId: string, cardInfo: any, callback: any) => Promise<any>;
18
+ /**
19
+ * @title: 步骤3
20
+ * @description: 创建iframe, 监听
21
+ * @param {any} threeDSMethodData
22
+ * @return {*}
23
+ * @Author: Wzw
24
+ * @Date: 2022-10-18 10:36
25
+ */
26
+ export declare const createThreeDSMethodIframe: (threeDSMethodData: any, callback: any) => Promise<unknown>;
27
+ /**
28
+ * @title: 步骤4
29
+ * @description:
30
+ * @param {any} param1
31
+ * @return {*}
32
+ * @Author: Wzw
33
+ * @Date: 2022-10-18 10:43
34
+ */
35
+ export declare const checkTDSAuth: (step2: any, step3: any, callback?: any) => Promise<any>;
36
+ /**
37
+ * @title: 步骤5
38
+ * @description: 监听
39
+ * @param {any} challengeData
40
+ * @return {*}
41
+ * @Author: Wzw
42
+ * @Date: 2022-10-18 10:45
43
+ */
44
+ export declare const createChallengeIframe: (challengeData: any, callback?: any) => Promise<unknown>;
45
+ /**
46
+ * @title: 步骤6
47
+ * @description:
48
+ * @param {any} cres
49
+ * @return {*}
50
+ * @Author: Wzw
51
+ * @Date: 2022-10-18 10:48
52
+ */
53
+ export declare const checkPARes: (step2: any, step4: any, step5: any) => Promise<any>;
54
+ /**
55
+ * @title: 支付结束
56
+ * @description:
57
+ * @return {*}
58
+ * @Author: Wzw
59
+ * @Date: 2022-10-18 14:28
60
+ */
61
+ export declare const paymentEnd: (props: any, callback: any) => void;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ export interface SuperPayAliPayH5Ref {
4
+ init: (res: any) => void;
5
+ }
6
+ export interface SuperPayAliPayH5Props {
7
+ onChange?: (values: any) => void;
8
+ }
9
+ declare const _default: React.ForwardRefExoticComponent<SuperPayAliPayH5Props & React.RefAttributes<any>>;
10
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface PaymentMethodsRef {
3
+ onPay: (props: any) => void;
4
+ }
5
+ interface PaymentMethodsProps {
6
+ payCallback: (props: any) => void;
7
+ }
8
+ declare const _default: React.ForwardRefExoticComponent<PaymentMethodsProps & React.RefAttributes<unknown>>;
9
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import './index.less';
2
+ declare const _default: any;
3
+ export default _default;