@pisell/materials 1.0.803 → 1.0.805

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 (127) 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/meta.js +1 -1
  5. package/build/lowcode/render/default/view.css +1 -1
  6. package/build/lowcode/render/default/view.js +5 -5
  7. package/build/lowcode/view.css +1 -1
  8. package/build/lowcode/view.js +4 -4
  9. package/es/components/appVersionControl/index.d.ts +4 -0
  10. package/es/components/dataSourceComponents/dataSourceForm/utils.d.ts +56 -0
  11. package/es/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -0
  12. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +39 -0
  13. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +98 -0
  14. package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +79 -0
  15. package/es/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +16 -0
  16. package/es/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +16 -0
  17. package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +25 -0
  18. package/es/components/drag-sort-tree/index.d.ts +3 -0
  19. package/es/components/login-and-register/index.d.ts +82 -0
  20. package/es/components/page/index.d.ts +1 -0
  21. package/es/components/page/index.js +1 -5
  22. package/es/components/pisell-config-provider/index.d.ts +12 -0
  23. package/es/components/pisellAvatar/index.d.ts +19 -0
  24. package/es/components/pisellCardList/index.d.ts +2 -0
  25. package/es/components/pisellCardList/index.js +4 -0
  26. package/es/components/pisellCheckboxGroup/index.d.ts +36 -0
  27. package/es/components/pisellCustomCheckboxGroup/index.d.ts +16 -0
  28. package/es/components/pisellEmpty/index.d.ts +19 -0
  29. package/es/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +4 -0
  30. package/es/components/pisellInformationEntry/index.d.ts +33 -0
  31. package/es/components/pisellMenu/types.d.ts +26 -0
  32. package/es/components/pisellText/components/Amount/index.d.ts +20 -0
  33. package/es/components/pisellWalletPassCard/index.d.ts +2 -0
  34. package/es/components/pisellWalletPassCard/index.js +80 -13
  35. package/es/components/productCard/components/AmountFooter/index.d.ts +0 -1
  36. package/es/components/productCard/components/AmountFooter/index.js +22 -6
  37. package/es/components/productCard/components/AmountFooter/index.less +28 -1
  38. package/es/components/productCard/components/Header/Actions/index.d.ts +3 -0
  39. package/es/components/productCard/components/Header/DeleteButton/index.d.ts +3 -0
  40. package/es/components/productCard/components/Header/EditButton/index.d.ts +4 -0
  41. package/es/components/productCard/components/Header/index.d.ts +4 -0
  42. package/es/components/productCard/components/MultiDay/index.d.ts +4 -0
  43. package/es/components/productCard/components/Packages/components/collapsibleList/utils.d.ts +2 -0
  44. package/es/components/productCard/components/Sales/index.d.ts +4 -0
  45. package/es/components/productCard/components/Time/components/Like/index.d.ts +9 -0
  46. package/es/components/productCard/components/Time/components/SelectHolder/index.d.ts +3 -0
  47. package/es/components/productCard/components/Time/components/SelectResource/index.d.ts +18 -0
  48. package/es/components/productCard/components/Time/index.d.ts +3 -0
  49. package/es/components/productCard/components/Time/index.js +5 -3
  50. package/es/components/productCard/locales.d.ts +63 -0
  51. package/es/components/productCard/status.d.ts +32 -0
  52. package/es/components/productCard/types.d.ts +83 -0
  53. package/es/components/productCard/utils.d.ts +31 -0
  54. package/es/components/table/Actions/component/ExportImport/index.d.ts +7 -0
  55. package/es/components/table/Gallery/components/GalleryItem/index.d.ts +14 -0
  56. package/es/components/table/Gallery/index.d.ts +5 -0
  57. package/es/components/table/Table/index.d.ts +4 -0
  58. package/es/components/table/Table/utils.d.ts +173 -0
  59. package/es/components/table/hooks/useTableSetting.d.ts +22 -0
  60. package/es/components/table/hooks/useTransDataSource.d.ts +12 -0
  61. package/es/components/table/types.d.ts +253 -0
  62. package/es/components/versionModal/index.d.ts +24 -0
  63. package/es/components/walletCard/index.d.ts +65 -0
  64. package/es/locales/en-US.d.ts +276 -0
  65. package/es/locales/zh-CN.d.ts +271 -0
  66. package/es/locales/zh-TW.d.ts +271 -0
  67. package/lib/components/appVersionControl/index.d.ts +4 -0
  68. package/lib/components/dataSourceComponents/dataSourceForm/utils.d.ts +56 -0
  69. package/lib/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -0
  70. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +39 -0
  71. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +98 -0
  72. package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +79 -0
  73. package/lib/components/dataSourceComponents/fields/Input.Mobile/WithMode.d.ts +16 -0
  74. package/lib/components/dataSourceComponents/fields/Input.Phone/WithMode.d.ts +16 -0
  75. package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +25 -0
  76. package/lib/components/drag-sort-tree/index.d.ts +3 -0
  77. package/lib/components/login-and-register/index.d.ts +82 -0
  78. package/lib/components/page/index.d.ts +1 -0
  79. package/lib/components/page/index.js +0 -4
  80. package/lib/components/pisell-config-provider/index.d.ts +12 -0
  81. package/lib/components/pisellAvatar/index.d.ts +19 -0
  82. package/lib/components/pisellCardList/index.d.ts +2 -0
  83. package/lib/components/pisellCardList/index.js +4 -0
  84. package/lib/components/pisellCheckboxGroup/index.d.ts +36 -0
  85. package/lib/components/pisellCustomCheckboxGroup/index.d.ts +16 -0
  86. package/lib/components/pisellEmpty/index.d.ts +19 -0
  87. package/lib/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +4 -0
  88. package/lib/components/pisellInformationEntry/index.d.ts +33 -0
  89. package/lib/components/pisellMenu/types.d.ts +26 -0
  90. package/lib/components/pisellText/components/Amount/index.d.ts +20 -0
  91. package/lib/components/pisellWalletPassCard/index.d.ts +2 -0
  92. package/lib/components/pisellWalletPassCard/index.js +43 -11
  93. package/lib/components/productCard/components/AmountFooter/index.d.ts +0 -1
  94. package/lib/components/productCard/components/AmountFooter/index.js +16 -6
  95. package/lib/components/productCard/components/AmountFooter/index.less +28 -1
  96. package/lib/components/productCard/components/Header/Actions/index.d.ts +3 -0
  97. package/lib/components/productCard/components/Header/DeleteButton/index.d.ts +3 -0
  98. package/lib/components/productCard/components/Header/EditButton/index.d.ts +4 -0
  99. package/lib/components/productCard/components/Header/index.d.ts +4 -0
  100. package/lib/components/productCard/components/MultiDay/index.d.ts +4 -0
  101. package/lib/components/productCard/components/Packages/components/collapsibleList/utils.d.ts +2 -0
  102. package/lib/components/productCard/components/Sales/index.d.ts +4 -0
  103. package/lib/components/productCard/components/Time/components/Like/index.d.ts +9 -0
  104. package/lib/components/productCard/components/Time/components/SelectHolder/index.d.ts +3 -0
  105. package/lib/components/productCard/components/Time/components/SelectResource/index.d.ts +18 -0
  106. package/lib/components/productCard/components/Time/index.d.ts +3 -0
  107. package/lib/components/productCard/components/Time/index.js +5 -3
  108. package/lib/components/productCard/locales.d.ts +63 -0
  109. package/lib/components/productCard/status.d.ts +32 -0
  110. package/lib/components/productCard/types.d.ts +83 -0
  111. package/lib/components/productCard/utils.d.ts +31 -0
  112. package/lib/components/table/Actions/component/ExportImport/index.d.ts +7 -0
  113. package/lib/components/table/Gallery/components/GalleryItem/index.d.ts +14 -0
  114. package/lib/components/table/Gallery/index.d.ts +5 -0
  115. package/lib/components/table/Table/index.d.ts +4 -0
  116. package/lib/components/table/Table/utils.d.ts +173 -0
  117. package/lib/components/table/hooks/useTableSetting.d.ts +22 -0
  118. package/lib/components/table/hooks/useTransDataSource.d.ts +12 -0
  119. package/lib/components/table/types.d.ts +253 -0
  120. package/lib/components/versionModal/index.d.ts +24 -0
  121. package/lib/components/walletCard/index.d.ts +65 -0
  122. package/lib/locales/en-US.d.ts +276 -0
  123. package/lib/locales/zh-CN.d.ts +271 -0
  124. package/lib/locales/zh-TW.d.ts +271 -0
  125. package/lowcode/pisell-card-list/meta.ts +5 -0
  126. package/lowcode/pisell-wallet-pass-card/meta.ts +6 -1
  127. package/package.json +3 -3
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ import { PisellContextType } from '../../../pisell-config-provider/context';
3
+ export interface AmountProps extends React.HTMLAttributes<HTMLSpanElement> {
4
+ /** 平台 */
5
+ platform?: PisellContextType['platform'];
6
+ /** 当前数值 */
7
+ value?: number | string;
8
+ /** 小数点后位数 默认是小数点后2位 */
9
+ precision?: number;
10
+ /** 显示货币符号 指的是 ¥$ 等货币符号等显隐,默认是展示 */
11
+ showCurrencySymbol?: boolean;
12
+ /** 千分位 指的是长金额的千分位逗号隔开,比如“123, 245, 315” 这种展现形式,默认是关闭 */
13
+ useThousandsSeparator?: boolean;
14
+ /** 整数位隐藏小数 指的是如果价格为整数,后面的".00" 将被省略以节省页面空间 */
15
+ hideDecimalForWholeNumbers?: boolean;
16
+ /** 货币符号 */
17
+ symbol?: string;
18
+ }
19
+ declare const Amount: (props: AmountProps) => JSX.Element;
20
+ export default Amount;
@@ -75,6 +75,8 @@ export interface PisellWalletPassCardProps {
75
75
  };
76
76
  };
77
77
  };
78
+ /** 编辑编辑按钮后,弹窗展示之前 */
79
+ beforeEdit?: (value: any) => Promise<any> | boolean | void;
78
80
  /** 编辑弹窗点击提交 */
79
81
  onConfirmEdit?: (value: any) => void;
80
82
  [key: string]: any;
@@ -4,6 +4,9 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
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
5
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
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
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
8
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
9
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
7
10
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
8
11
  function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
9
12
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
@@ -101,6 +104,7 @@ var PisellWalletPassCard = function PisellWalletPassCard(props) {
101
104
  discount = props.discount,
102
105
  showActions = props.showActions,
103
106
  actions = props.actions,
107
+ beforeEdit = props.beforeEdit,
104
108
  onConfirmEdit = props.onConfirmEdit,
105
109
  originData = props.originData,
106
110
  _props$style = props.style,
@@ -124,19 +128,82 @@ var PisellWalletPassCard = function PisellWalletPassCard(props) {
124
128
  });
125
129
  setIsShowDetail(true);
126
130
  };
127
- var onEdit = function onEdit() {
128
- var _actions$edit, _actions$edit2;
129
- if (disabled || disabledReason || !(actions !== null && actions !== void 0 && (_actions$edit = actions.edit) !== null && _actions$edit !== void 0 && _actions$edit.visible) || !(actions !== null && actions !== void 0 && (_actions$edit2 = actions.edit) !== null && _actions$edit2 !== void 0 && _actions$edit2.enableDialog)) return;
130
- form.setFieldsValue({
131
- name: name,
132
- storeName: storeName,
133
- balance: balance,
134
- redeem: redeem,
135
- code: code,
136
- validDate: dayjs(validDate)
137
- });
138
- setIsShowEdit(true);
139
- };
131
+ var onEdit = /*#__PURE__*/function () {
132
+ var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
133
+ var _actions$edit, _actions$edit2;
134
+ var executeEdit, result, shouldProceed;
135
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
136
+ while (1) switch (_context.prev = _context.next) {
137
+ case 0:
138
+ if (!(disabled || disabledReason || !(actions !== null && actions !== void 0 && (_actions$edit = actions.edit) !== null && _actions$edit !== void 0 && _actions$edit.visible) || !(actions !== null && actions !== void 0 && (_actions$edit2 = actions.edit) !== null && _actions$edit2 !== void 0 && _actions$edit2.enableDialog))) {
139
+ _context.next = 2;
140
+ break;
141
+ }
142
+ return _context.abrupt("return");
143
+ case 2:
144
+ executeEdit = function executeEdit() {
145
+ form.setFieldsValue({
146
+ name: name,
147
+ storeName: storeName,
148
+ balance: balance,
149
+ redeem: redeem,
150
+ code: code,
151
+ validDate: dayjs(validDate)
152
+ });
153
+ setIsShowEdit(true);
154
+ };
155
+ if (beforeEdit) {
156
+ _context.next = 6;
157
+ break;
158
+ }
159
+ executeEdit();
160
+ return _context.abrupt("return");
161
+ case 6:
162
+ _context.prev = 6;
163
+ result = beforeEdit({
164
+ id: id,
165
+ name: name,
166
+ storeName: storeName,
167
+ balance: balance,
168
+ redeem: redeem,
169
+ code: code,
170
+ validDate: validDate,
171
+ originData: originData
172
+ }); // 处理 Promise 情况
173
+ if (!(result instanceof Promise)) {
174
+ _context.next = 14;
175
+ break;
176
+ }
177
+ _context.next = 11;
178
+ return result;
179
+ case 11:
180
+ shouldProceed = _context.sent;
181
+ if (shouldProceed !== false) {
182
+ // 显式检查 false
183
+ executeEdit();
184
+ }
185
+ return _context.abrupt("return");
186
+ case 14:
187
+ // 处理同步情况
188
+ if (result !== false) {
189
+ executeEdit();
190
+ }
191
+ _context.next = 20;
192
+ break;
193
+ case 17:
194
+ _context.prev = 17;
195
+ _context.t0 = _context["catch"](6);
196
+ console.error('Before edit check failed:', _context.t0);
197
+ case 20:
198
+ case "end":
199
+ return _context.stop();
200
+ }
201
+ }, _callee, null, [[6, 17]]);
202
+ }));
203
+ return function onEdit() {
204
+ return _ref.apply(this, arguments);
205
+ };
206
+ }();
140
207
 
141
208
  // 添加长按相关处理函数
142
209
  var handleTouchStart = function handleTouchStart() {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import './index.less';
3
2
  declare const Footer: ({ item, hideDivider, type, isOnlyTotal }: any) => JSX.Element;
4
3
  export default Footer;
@@ -1,6 +1,6 @@
1
1
  import React, { useMemo } from 'react';
2
2
  import classNames from 'classnames';
3
- import { Tooltip } from 'antd';
3
+ import { Tag, Tooltip } from 'antd';
4
4
  import { QuestionCircleOutlined } from '@ant-design/icons';
5
5
  import { _formatAmount } from "../Packages/utils";
6
6
  import Divider from "../Divider";
@@ -31,6 +31,24 @@ var Footer = function Footer(_ref) {
31
31
  if (!origin_total) return false;
32
32
  return Number(total) != Number(origin_total);
33
33
  }, [total, origin_total]);
34
+ var renderDiscountReason = function renderDiscountReason() {
35
+ if (isDiscount && discount_reason && type === 'total') {
36
+ if (Array.isArray(discount_reason)) {
37
+ return /*#__PURE__*/React.createElement("div", {
38
+ className: "".concat(prefix, "product-item-discount-reason")
39
+ }, discount_reason.map(function (reason, index) {
40
+ return /*#__PURE__*/React.createElement(Tag, {
41
+ key: index,
42
+ color: "red"
43
+ }, reason);
44
+ }));
45
+ }
46
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Divider, null), /*#__PURE__*/React.createElement("div", {
47
+ className: "".concat(prefix, "product-item-discount-reason")
48
+ }, /*#__PURE__*/React.createElement("span", null, "".concat(locales.getText('pisell2.product.card.discount.reason'), ": ").concat(discount_reason))));
49
+ }
50
+ return null;
51
+ };
34
52
  return /*#__PURE__*/React.createElement(React.Fragment, null, !hideDivider ? /*#__PURE__*/React.createElement(Divider, {
35
53
  type: type !== 'total' ? 'inside' : ''
36
54
  }) : null, /*#__PURE__*/React.createElement("div", {
@@ -49,10 +67,8 @@ var Footer = function Footer(_ref) {
49
67
  }
50
68
  })) : null), /*#__PURE__*/React.createElement("span", null, "\xD7".concat(num))) : null, /*#__PURE__*/React.createElement("span", {
51
69
  className: "".concat(prefix, "packages-product-footer-total")
52
- }, _formatAmount(total * num, symbol))), isDiscount ? /*#__PURE__*/React.createElement("div", {
53
- className: "".concat(prefix, "packages-product-footer-discount")
54
- }, !isOnlyTotal ? /*#__PURE__*/React.createElement("span", null, _formatAmount(origin_total, symbol)) : null, /*#__PURE__*/React.createElement("span", null, _formatAmount(origin_total * num, symbol, 2))) : null), isDiscount && discount_reason && type === 'total' ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Divider, null), /*#__PURE__*/React.createElement("div", {
55
- className: "".concat(prefix, "product-item-discount-reason")
56
- }, /*#__PURE__*/React.createElement("span", null, "".concat(locales.getText('pisell2.product.card.discount.reason'), ": ").concat(discount_reason)))) : null);
70
+ }, isDiscount ? /*#__PURE__*/React.createElement("span", {
71
+ className: "".concat(prefix, "packages-product-footer-origin-total")
72
+ }, symbol, " ", _formatAmount(origin_total * num, '', 2)) : null, /*#__PURE__*/React.createElement("span", null, symbol, " ", _formatAmount(total * num, ''))))), renderDiscountReason());
57
73
  };
58
74
  export default Footer;
@@ -35,6 +35,19 @@
35
35
  color: var(--Gray-900, #101828);
36
36
  }
37
37
 
38
+ &-packages-product-footer-origin-total {
39
+ color: var(--Gray-500, #667085);
40
+ text-align: center;
41
+ font-size: 12px;
42
+ font-style: normal;
43
+ font-weight: 400;
44
+ line-height: 18px; /* 150% */
45
+ text-decoration-line: line-through;
46
+ margin-right: 8px;
47
+ display: inline-block;
48
+ transform: translateY(-1px);
49
+ }
50
+
38
51
  &-packages-product-hide-divider-footer {
39
52
  margin-top: 8px;
40
53
  }
@@ -45,6 +58,20 @@
45
58
  font-style: normal;
46
59
  font-weight: 400;
47
60
  line-height: 20px;
48
- white-space: break-spaces;
61
+ margin-top: 4px;
62
+ display: flex;
63
+ flex-wrap: wrap;
64
+ gap: 4px;
65
+ overflow: hidden;
66
+
67
+ >span {
68
+ display: inline-block;
69
+ max-width: 100%;
70
+ text-overflow: ellipsis;
71
+ white-space: nowrap;
72
+ overflow: hidden;
73
+ border-radius: 4px;
74
+ margin: 0;
75
+ }
49
76
  }
50
77
  }
@@ -0,0 +1,3 @@
1
+ import './index.less';
2
+ declare const Actions: ({ children, style }: any) => JSX.Element | null;
3
+ export default Actions;
@@ -0,0 +1,3 @@
1
+ import './index.less';
2
+ declare const DeleteButton: ({ onDelete, type }: any) => JSX.Element;
3
+ export default DeleteButton;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import './index.less';
3
+ declare const EditButton: ({ onEdit }: any) => JSX.Element;
4
+ export default EditButton;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import './index.less';
3
+ declare const Header: (props: any) => JSX.Element;
4
+ export default Header;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import './index.less';
3
+ declare const MultiDay: ({ dataSource, hideDivider }: any) => JSX.Element;
4
+ export default MultiDay;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const renderBundles: (item: any, hidePrice?: boolean, isShowPackageNote?: boolean) => JSX.Element;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import './index.less';
3
+ declare const Sales: ({ item, isShowNote }: any) => JSX.Element | null;
4
+ export default Sales;
@@ -0,0 +1,9 @@
1
+ import './index.less';
2
+ declare const Like: ({ status, onLike, className, style, isShowChangeResource, }: {
3
+ style?: any;
4
+ status: string;
5
+ onLike?: any;
6
+ className?: string | undefined;
7
+ isShowChangeResource?: boolean | undefined;
8
+ }) => JSX.Element;
9
+ export default Like;
@@ -0,0 +1,3 @@
1
+ import './index.less';
2
+ declare const SelectHolder: ({ lists, value, onChange, holderMode, isShowAddHolderButton, onAddHolder, addHolderButtonText, onClearHolder, isErrorHolder, allowClear, }: any) => JSX.Element;
3
+ export default SelectHolder;
@@ -0,0 +1,18 @@
1
+ import './index.less';
2
+ interface ResourceItem {
3
+ id: string | number;
4
+ label: string;
5
+ isError?: boolean;
6
+ [key: string]: any;
7
+ }
8
+ interface SelectResourceProps {
9
+ lists: ResourceItem[];
10
+ value: any;
11
+ onChange: (val: any) => void;
12
+ resourceMode?: 'multiple' | 'tags' | undefined;
13
+ maxLength?: number;
14
+ isParallelResource?: boolean;
15
+ [key: string]: any;
16
+ }
17
+ declare const SelectResource: ({ lists, value, onChange, resourceMode, allowClear, onClearResource, maxLength, isErrorResource, resourceErrorText, ...props }: SelectResourceProps) => JSX.Element;
18
+ export default SelectResource;
@@ -0,0 +1,3 @@
1
+ import './index.less';
2
+ declare const Time: ({ item, isShowHolder, onLike, isShowChangeResource, changeResource, changeHolder, isShowChangeHolder, holderMode, onAddHolder, isShowAddHolderButton, onClearHolder, onClearResource, }: any) => JSX.Element | null;
3
+ export default Time;
@@ -43,12 +43,14 @@ var Time = function Time(_ref) {
43
43
  allowClearResource = item.allowClearResource,
44
44
  isErrorResource = item.isErrorResource,
45
45
  resourceErrorText = item.resourceErrorText,
46
- isMultipleResource = item.isMultipleResource;
46
+ isMultipleResource = item.isMultipleResource,
47
+ _item$isShowChangeHol = item.isShowChangeHolder,
48
+ itemIsShowChangeHolder = _item$isShowChangeHol === void 0 ? true : _item$isShowChangeHol;
47
49
  var holderCom = useMemo(function () {
48
50
  if (!isShowHolder) return null;
49
51
 
50
52
  // 可以控制选择holder
51
- if (isShowChangeHolder) {
53
+ if (isShowChangeHolder && itemIsShowChangeHolder) {
52
54
  return /*#__PURE__*/React.createElement(SelectHolder, {
53
55
  lists: holders,
54
56
  value: holder_id,
@@ -67,7 +69,7 @@ var Time = function Time(_ref) {
67
69
  className: "".concat(prefix, "product-holder-wrap")
68
70
  }, holder_title);
69
71
  }
70
- }, [isShowHolder, holder_id, holder_title, holderMode, holders, isShowAddHolderButton, isShowChangeHolder, isErrorHolder, addHolderButtonText, allowClearHolder]);
72
+ }, [isShowHolder, holder_id, holder_title, holderMode, holders, isShowAddHolderButton, isShowChangeHolder, isErrorHolder, addHolderButtonText, allowClearHolder, itemIsShowChangeHolder]);
71
73
  var likeCom = useCallback(function (status, item) {
72
74
  return /*#__PURE__*/React.createElement(Like, {
73
75
  isShowChangeResource: isShowChangeResource,
@@ -0,0 +1,63 @@
1
+ declare const _default: {
2
+ en: {
3
+ 'pisell2.product.card.day': (val: number) => string;
4
+ 'pisell2.product.card.day.event': (val: number) => string;
5
+ 'pisell2.product.card.minute': (val: number) => string;
6
+ 'pisell2.product.card.discount.reason': string;
7
+ 'pisell2.product.card.discount.note': string;
8
+ 'pisell2.product.card.edit': string;
9
+ 'pisell2.product.card.discount.add.note': string;
10
+ 'pisell2.product.card.discount.edit.note': string;
11
+ 'pisell2.product.card.confirm': string;
12
+ 'pisell2.product.card.cancel': string;
13
+ 'pisell2.product.card.note.pla': string;
14
+ 'pisell2.product.card.items.package': string;
15
+ 'pisell2.product.card.view-all': string;
16
+ 'pisell2.product.card.view-less': string;
17
+ 'pisell2.product.card.add.holder.button.text': (val: string) => string;
18
+ 'pisell2.product.card.add.holder.placeholder': (val: string) => string;
19
+ 'pisell2.product.card.hour.minute': (hour: number, minute: number) => string;
20
+ 'pisell2.product.card.sales': string;
21
+ };
22
+ 'zh-CN': {
23
+ 'pisell2.product.card.edit': string;
24
+ 'pisell2.product.card.day': (val: number) => string;
25
+ 'pisell2.product.card.day.event': (val: number) => string;
26
+ 'pisell2.product.card.minute': (val: number) => string;
27
+ 'pisell2.product.card.discount.reason': string;
28
+ 'pisell2.product.card.discount.note': string;
29
+ 'pisell2.product.card.discount.add.note': string;
30
+ 'pisell2.product.card.discount.edit.note': string;
31
+ 'pisell2.product.card.confirm': string;
32
+ 'pisell2.product.card.cancel': string;
33
+ 'pisell2.product.card.note.pla': string;
34
+ 'pisell2.product.card.items.package': string;
35
+ 'pisell2.product.card.view-all': string;
36
+ 'pisell2.product.card.view-less': string;
37
+ 'pisell2.product.card.add.holder.button.text': (val: string) => string;
38
+ 'pisell2.product.card.add.holder.placeholder': (val: string) => string;
39
+ 'pisell2.product.card.hour.minute': (hour: number, minute: number) => string;
40
+ 'pisell2.product.card.sales': string;
41
+ };
42
+ 'zh-HK': {
43
+ 'pisell2.product.card.edit': string;
44
+ 'pisell2.product.card.day': (val: number) => string;
45
+ 'pisell2.product.card.day.event': (val: number) => string;
46
+ 'pisell2.product.card.minute': (val: number) => string;
47
+ 'pisell2.product.card.discount.reason': string;
48
+ 'pisell2.product.card.discount.note': string;
49
+ 'pisell2.product.card.discount.add.note': string;
50
+ 'pisell2.product.card.discount.edit.note': string;
51
+ 'pisell2.product.card.confirm': string;
52
+ 'pisell2.product.card.cancel': string;
53
+ 'pisell2.product.card.note.pla': string;
54
+ 'pisell2.product.card.items.package': string;
55
+ 'pisell2.product.card.view-all': string;
56
+ 'pisell2.product.card.view-less': string;
57
+ 'pisell2.product.card.add.holder.button.text': (val: string) => string;
58
+ 'pisell2.product.card.add.holder.placeholder': (val: string) => string;
59
+ 'pisell2.product.card.hour.minute': (hour: number, minute: number) => string;
60
+ 'pisell2.product.card.sales': string;
61
+ };
62
+ };
63
+ export default _default;
@@ -0,0 +1,32 @@
1
+ import { ProductCardTypes, bundleType, optionType, productType } from './types';
2
+ /**
3
+ * @title: 套餐数据
4
+ * @description:
5
+ * @return {*}
6
+ * @Author: WangHan
7
+ * @Date: 2025-01-02 23:21
8
+ */
9
+ export declare const defaultBundle: bundleType;
10
+ /**
11
+ * @description: 单规格
12
+ * @return {*}
13
+ * @Author: WangHan
14
+ * @Date: 2025-01-02 23:00
15
+ */
16
+ export declare const defaultOption: optionType;
17
+ /**
18
+ * @title: 商品商品类型
19
+ * @description:
20
+ * @return {*}
21
+ * @Author: WangHan
22
+ * @Date: 2025-01-02 22:48
23
+ */
24
+ export declare const defaultProduct: productType;
25
+ /**
26
+ * @title: 默认数据
27
+ * @description:
28
+ * @return {*}
29
+ * @Author: WangHan
30
+ * @Date: 2024-12-12 16:49
31
+ */
32
+ export declare const defaultValue: ProductCardTypes;
@@ -0,0 +1,83 @@
1
+ export declare type bundleType = {
2
+ id: number;
3
+ name: string;
4
+ num: number;
5
+ price: number;
6
+ total: number;
7
+ origin_total?: number;
8
+ price_type?: string;
9
+ options?: optionType[];
10
+ };
11
+ /**
12
+ * @description:
13
+ * @return {*}
14
+ * @Author: WangHan
15
+ * @Date: 2025-01-02 23:00
16
+ */
17
+ export declare type optionType = {
18
+ id: number;
19
+ name: string;
20
+ num: number;
21
+ price: number;
22
+ total: number;
23
+ origin_total?: number;
24
+ };
25
+ /**
26
+ * @title: 商品商品类型
27
+ * @description:
28
+ * @return {*}
29
+ * @Author: WangHan
30
+ * @Date: 2025-01-02 22:48
31
+ */
32
+ export declare type productType = {
33
+ _id: string | number;
34
+ id: number;
35
+ name: string;
36
+ price: number;
37
+ total: number;
38
+ num: number;
39
+ origin_total?: number;
40
+ image?: string;
41
+ isShowNote?: boolean;
42
+ note?: string;
43
+ like_status?: string;
44
+ bundle?: bundleType[];
45
+ options?: optionType[];
46
+ isShowAction?: boolean;
47
+ actionText?: string;
48
+ errorMessage?: string;
49
+ product_option_string?: string;
50
+ discount_reason?: string;
51
+ relation_products?: any[];
52
+ resource_id?: string | number;
53
+ relation_form_name?: string;
54
+ holder_title?: string;
55
+ start_date?: string;
56
+ end_date?: string;
57
+ is_show_duration?: boolean;
58
+ is_show_week?: boolean;
59
+ };
60
+ /**
61
+ * 排序总配置
62
+ */
63
+ export declare type ProductCardTypes = {
64
+ dataSource: productType;
65
+ isShowImage?: boolean;
66
+ isShowHolder?: boolean;
67
+ isShowNote?: boolean;
68
+ isShowPackageNote?: boolean;
69
+ isShowDelete?: boolean;
70
+ disabledEdit?: boolean;
71
+ locale?: string;
72
+ symbol?: string;
73
+ isShowChangeHolder?: boolean;
74
+ isShowChangeResource?: boolean;
75
+ isShowChangeDate?: boolean;
76
+ onAction?: (val: any) => void;
77
+ onDelete?: (val: any) => void;
78
+ onNote?: (val: any) => void;
79
+ onLike?: (val: any) => void;
80
+ onCard?: (val: any) => void;
81
+ onChangeResource?: (val: any) => void;
82
+ [key: string]: any;
83
+ };
@@ -0,0 +1,31 @@
1
+ import 'dayjs/locale/zh-cn';
2
+ import 'dayjs/locale/en';
3
+ import 'dayjs/locale/zh-tw';
4
+ /**
5
+ * @title: 是否英文
6
+ * @description:
7
+ * @param {any} item
8
+ * @return {*}
9
+ * @Author: WangHan
10
+ * @Date: 2024-12-28 22:49
11
+ */
12
+ export declare const isEn: (item: any) => boolean;
13
+ /**
14
+ * @title: 跨日预约时间
15
+ * @description:
16
+ * @param {any} item
17
+ * @return {*}
18
+ * @Author: WangHan
19
+ * @Date: 2024-12-28 22:50
20
+ */
21
+ export declare const formatMultiDayDate: (item: any) => string;
22
+ /**
23
+ * @title: 格式化服务的 开始时间-结束时间-时长, 用于展示
24
+ * @description:
25
+ * @param {any} item
26
+ * @param {any} currentDate
27
+ * @return {*}
28
+ * @Author: zhiwei.Wang
29
+ * @Date: 2024-04-26 14:04
30
+ */
31
+ export declare const getServiceTime: (item: any, currentDate: any) => string;
@@ -0,0 +1,7 @@
1
+ import { ExportImportType } from '../../../types';
2
+ import './index.less';
3
+ declare type ExportImportProps = {
4
+ exportImport: ExportImportType;
5
+ };
6
+ declare const ExportImport: ({ exportImport }: ExportImportProps) => JSX.Element;
7
+ export default ExportImport;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import { GallerySettingType, GallerySettingValueType } from "../../../types";
3
+ import "./index.less";
4
+ declare type GalleryItemProps = {
5
+ record: Record<string, any>;
6
+ gallery: GallerySettingType;
7
+ columnsMap: Map<string, Record<string, any>>;
8
+ index: number;
9
+ gallerySetting: GallerySettingValueType;
10
+ columns: Record<string, any>[];
11
+ onClick: React.MouseEventHandler<HTMLDivElement>;
12
+ };
13
+ declare const GalleryItem: (props: GalleryItemProps) => JSX.Element;
14
+ export default GalleryItem;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { GalleryProps } from './types';
3
+ import './index.less';
4
+ declare const _default: React.MemoExoticComponent<(props: GalleryProps) => JSX.Element>;
5
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ declare const _default: React.NamedExoticComponent<any>;
4
+ export default _default;