@pisell/materials 6.2.38 → 6.2.40

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 (137) 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 +7 -7
  6. package/build/lowcode/preview.js +7 -7
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +36 -21
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +35 -20
  11. package/es/components/dataSourceComponents/dataSourceTable/BaseTable.js +11 -4
  12. package/es/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +1 -0
  13. package/es/components/dataSourceComponents/dataSourceTable/filter/index.js +7 -2
  14. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +2 -2
  15. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.js +33 -15
  16. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +2 -1
  17. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.js +92 -6
  18. package/es/components/dataSourceComponents/dataSourceTable/type.d.ts +5 -0
  19. package/es/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +1 -1
  20. package/es/components/dataSourceComponents/fields/Upload/BaseUpload.js +199 -19
  21. package/es/components/dataSourceComponents/fields/Upload/CameraPopover.js +66 -0
  22. package/es/components/dataSourceComponents/fields/Upload/index.less +35 -3
  23. package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
  24. package/es/components/dataSourceComponents/fields/index.d.ts +8 -8
  25. package/es/components/filter/types.d.ts +2 -0
  26. package/es/components/pisellCamera/index.js +228 -0
  27. package/es/components/pisellCamera/index.less +131 -0
  28. package/es/components/pisellCardList/index.js +3 -1
  29. package/es/components/pisellCheckboxGroup/index.js +15 -1
  30. package/es/components/pisellWalletPassCard/index.d.ts +1 -0
  31. package/es/components/pisellWalletPassCard/index.js +6 -1
  32. package/es/components/productCard/cartSkuCard/components/swipeAction/index.d.ts +2 -1
  33. package/es/components/productCard/cartSkuCard/components/swipeAction/index.js +74 -6
  34. package/es/components/productCard/cartSkuCard/components/swipeAction/index.less +39 -0
  35. package/es/components/productCard/cartSkuCard/index.js +2 -11
  36. package/es/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +2 -2
  37. package/es/components/table/Table/fields/index.d.ts +2 -2
  38. package/es/components/table/Table/fields/select/filterUtil/index.d.ts +1 -1
  39. package/es/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +1 -1
  40. package/es/components/table/Table/utils.d.ts +1 -1
  41. package/es/components/table/Table/utils.js +22 -1
  42. package/es/components/table/hooks/useTableSetting.d.ts +3 -4
  43. package/es/components/table/hooks/useTableSetting.js +113 -5
  44. package/es/components/table/index.js +14 -3
  45. package/es/components/table/types.d.ts +17 -0
  46. package/es/components/walletCard/Guide/index.js +12 -1
  47. package/es/components/walletCard/index.js +29 -3
  48. package/es/components/walletCard/index.less +27 -0
  49. package/es/locales/en-US.js +83 -69
  50. package/es/locales/zh-CN.js +84 -70
  51. package/es/locales/zh-TW.js +84 -70
  52. package/es/utils/index.d.ts +1 -1
  53. package/lib/components/dataSourceComponents/dataSourceTable/BaseTable.js +8 -2
  54. package/lib/components/dataSourceComponents/dataSourceTable/filter/index.d.ts +1 -0
  55. package/lib/components/dataSourceComponents/dataSourceTable/filter/index.js +7 -2
  56. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +2 -2
  57. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.js +20 -7
  58. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +2 -1
  59. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.js +78 -7
  60. package/lib/components/dataSourceComponents/dataSourceTable/type.d.ts +5 -0
  61. package/lib/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +1 -1
  62. package/lib/components/dataSourceComponents/fields/Upload/BaseUpload.js +168 -5
  63. package/lib/components/dataSourceComponents/fields/Upload/CameraPopover.js +95 -0
  64. package/lib/components/dataSourceComponents/fields/Upload/index.less +35 -3
  65. package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
  66. package/lib/components/dataSourceComponents/fields/index.d.ts +8 -8
  67. package/lib/components/filter/types.d.ts +2 -0
  68. package/lib/components/pisellCamera/index.js +222 -0
  69. package/lib/components/pisellCamera/index.less +131 -0
  70. package/lib/components/pisellCardList/index.js +3 -1
  71. package/lib/components/pisellCheckboxGroup/index.js +16 -0
  72. package/lib/components/pisellWalletPassCard/index.d.ts +1 -0
  73. package/lib/components/pisellWalletPassCard/index.js +9 -1
  74. package/lib/components/productCard/cartSkuCard/components/swipeAction/index.d.ts +2 -1
  75. package/lib/components/productCard/cartSkuCard/components/swipeAction/index.js +45 -11
  76. package/lib/components/productCard/cartSkuCard/components/swipeAction/index.less +39 -0
  77. package/lib/components/productCard/cartSkuCard/index.js +2 -13
  78. package/lib/components/table/Gallery/components/VirtualGrid/useGapSize.d.ts +2 -2
  79. package/lib/components/table/Table/fields/index.d.ts +2 -2
  80. package/lib/components/table/Table/fields/select/filterUtil/index.d.ts +1 -1
  81. package/lib/components/table/Table/fields/treeSelect/filterUtil/index.d.ts +1 -1
  82. package/lib/components/table/Table/utils.d.ts +1 -1
  83. package/lib/components/table/Table/utils.js +18 -1
  84. package/lib/components/table/hooks/useTableSetting.d.ts +3 -4
  85. package/lib/components/table/hooks/useTableSetting.js +114 -4
  86. package/lib/components/table/index.js +12 -1
  87. package/lib/components/table/types.d.ts +17 -0
  88. package/lib/components/walletCard/Guide/index.js +11 -1
  89. package/lib/components/walletCard/index.js +27 -3
  90. package/lib/components/walletCard/index.less +27 -0
  91. package/lib/locales/en-US.js +15 -1
  92. package/lib/locales/zh-CN.js +15 -1
  93. package/lib/locales/zh-TW.js +15 -1
  94. package/lib/utils/index.d.ts +1 -1
  95. package/lowcode/data-source-table/meta.ts +358 -66
  96. package/lowcode/form-item-upload/meta.ts +20 -5
  97. package/lowcode/pisell-upload/meta.ts +8 -0
  98. package/lowcode/pisell-wallet-pass-card/meta.ts +19 -0
  99. package/lowcode/table/meta.ts +104 -0
  100. package/lowcode/wallet-card/meta.ts +81 -63
  101. package/package.json +2 -1
  102. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +0 -98
  103. package/es/components/dataSourceComponents/fields/Upload/type.d.ts +0 -37
  104. package/es/components/pisell-config-provider/context.d.ts +0 -20
  105. package/es/components/pisell-config-provider/index.d.ts +0 -12
  106. package/es/components/pisellAdjustPrice/index.d.ts +0 -4
  107. package/es/components/pisellAdjustPrice/type.d.ts +0 -20
  108. package/es/components/pisellCheckboxGroup/index.d.ts +0 -36
  109. package/es/components/pisellQRScanner/index.d.ts +0 -37
  110. package/es/components/pisellText/components/Amount/index.d.ts +0 -20
  111. package/es/components/table/Table/AddFieldModal/index.d.ts +0 -3
  112. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +0 -11
  113. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +0 -21
  114. package/es/components/virtual-keyboard/Number/index.d.ts +0 -5
  115. package/es/components/virtual-keyboard/Number/types.d.ts +0 -25
  116. package/es/components/walletCard/index.d.ts +0 -67
  117. package/es/locales/en-US.d.ts +0 -278
  118. package/es/locales/zh-CN.d.ts +0 -273
  119. package/es/locales/zh-TW.d.ts +0 -273
  120. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +0 -98
  121. package/lib/components/dataSourceComponents/fields/Upload/type.d.ts +0 -37
  122. package/lib/components/pisell-config-provider/context.d.ts +0 -20
  123. package/lib/components/pisell-config-provider/index.d.ts +0 -12
  124. package/lib/components/pisellAdjustPrice/index.d.ts +0 -4
  125. package/lib/components/pisellAdjustPrice/type.d.ts +0 -20
  126. package/lib/components/pisellCheckboxGroup/index.d.ts +0 -36
  127. package/lib/components/pisellQRScanner/index.d.ts +0 -37
  128. package/lib/components/pisellText/components/Amount/index.d.ts +0 -20
  129. package/lib/components/table/Table/AddFieldModal/index.d.ts +0 -3
  130. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +0 -11
  131. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +0 -21
  132. package/lib/components/virtual-keyboard/Number/index.d.ts +0 -5
  133. package/lib/components/virtual-keyboard/Number/types.d.ts +0 -25
  134. package/lib/components/walletCard/index.d.ts +0 -67
  135. package/lib/locales/en-US.d.ts +0 -278
  136. package/lib/locales/zh-CN.d.ts +0 -273
  137. package/lib/locales/zh-TW.d.ts +0 -273
@@ -1,50 +1,50 @@
1
1
  export default {
2
- "table-filter-search": "Search",
3
- "table-filter-clear": "Clear",
4
- "table-filter-filter": "Filter",
5
- "table-filter-min": "Min",
6
- "table-filter-max": "Max",
7
- "table-pagination-previous": "Previous",
8
- "table-pagination-next": "Next",
9
- "table-pagination-total": function tablePaginationTotal(current, total) {
2
+ 'table-filter-search': 'Search',
3
+ 'table-filter-clear': 'Clear',
4
+ 'table-filter-filter': 'Filter',
5
+ 'table-filter-min': 'Min',
6
+ 'table-filter-max': 'Max',
7
+ 'table-pagination-previous': 'Previous',
8
+ 'table-pagination-next': 'Next',
9
+ 'table-pagination-total': function tablePaginationTotal(current, total) {
10
10
  return "Page ".concat(current, " of ").concat(total);
11
11
  },
12
- "select-dropdown-render-select-all": "Select all",
13
- "select-dropdown-render-search": "Search",
14
- "sort-button-text": "Sort",
15
- "sort-oldest-to-newest": "Oldest to newest",
16
- "sort-newest-to-oldest": "Newest to oldest",
17
- "sort-a-z": "A to Z",
18
- "sort-z-a": "Z to A",
19
- "sort-from-morning-to-night": "From morning to night",
20
- "sort-from-evening-to-morning": "From evening to morning",
21
- "sort-0-9": "0 ~ 9",
22
- "sort-9-0": "9 ~ 0",
23
- "table-action-filter-button": "Filter",
24
- "table-action-filter-quick-filter": "Quick Filter",
25
- "table-action-filter-quick-filter-tip": function tableActionFilterQuickFilterTip(count) {
12
+ 'select-dropdown-render-select-all': 'Select all',
13
+ 'select-dropdown-render-search': 'Search',
14
+ 'sort-button-text': 'Sort',
15
+ 'sort-oldest-to-newest': 'Oldest to newest',
16
+ 'sort-newest-to-oldest': 'Newest to oldest',
17
+ 'sort-a-z': 'A to Z',
18
+ 'sort-z-a': 'Z to A',
19
+ 'sort-from-morning-to-night': 'From morning to night',
20
+ 'sort-from-evening-to-morning': 'From evening to morning',
21
+ 'sort-0-9': '0 ~ 9',
22
+ 'sort-9-0': '9 ~ 0',
23
+ 'table-action-filter-button': 'Filter',
24
+ 'table-action-filter-quick-filter': 'Quick Filter',
25
+ 'table-action-filter-quick-filter-tip': function tableActionFilterQuickFilterTip(count) {
26
26
  return "Enable quick filtering directly on the page for convenient filtering operations, with a maximum of ".concat(count, " filters allowed.");
27
27
  },
28
- "table-action-filter-other-filter": "Filter",
29
- "table-action-filter-other-filter-tip": function tableActionFilterOtherFilterTip() {
30
- return "Select filter criteria in the list to perform filtering operations and display corresponding results.";
28
+ 'table-action-filter-other-filter': 'Filter',
29
+ 'table-action-filter-other-filter-tip': function tableActionFilterOtherFilterTip() {
30
+ return 'Select filter criteria in the list to perform filtering operations and display corresponding results.';
31
31
  },
32
- "table-action-group-by-title": "Group by",
33
- "table-action-group-by-title-tip": "Please select the field from the dropdown menu to group the data for better organization and browsing.",
34
- "table-action-column-title": "Header settings",
35
- "table-column-group-records": "records",
36
- "table-column-group-lock-tip": "Fixed column immutable order",
37
- "table-column-drag-sort-disabled-tip": "Automatic sorting is enabled, manual dragging is disabled.",
38
- "table-action-filter-no-filter": "No filter options available.",
39
- "table-action-range-picker-presets-today": "Today",
40
- "table-action-range-picker-presets-yesterday": "Yesterday",
41
- "table-action-range-picker-presets-last-3-day": "Last 3 Days",
42
- "table-action-range-picker-presets-last-7-day": "Last 7 Days",
43
- "table-action-range-picker-presets-last-14-day": "Last 14 Days",
44
- "table-action-range-picker-presets-last-30-day": "Last 30 Days",
45
- "table-action-range-picker-presets-last-90-day": "Last 90 Days",
46
- "virtual-keyboard-time-now": "Now",
47
- "virtual-keyboard-time-ok": "OK",
32
+ 'table-action-group-by-title': 'Group by',
33
+ 'table-action-group-by-title-tip': 'Please select the field from the dropdown menu to group the data for better organization and browsing.',
34
+ 'table-action-column-title': 'Header settings',
35
+ 'table-column-group-records': 'records',
36
+ 'table-column-group-lock-tip': 'Fixed column immutable order',
37
+ 'table-column-drag-sort-disabled-tip': 'Automatic sorting is enabled, manual dragging is disabled.',
38
+ 'table-action-filter-no-filter': 'No filter options available.',
39
+ 'table-action-range-picker-presets-today': 'Today',
40
+ 'table-action-range-picker-presets-yesterday': 'Yesterday',
41
+ 'table-action-range-picker-presets-last-3-day': 'Last 3 Days',
42
+ 'table-action-range-picker-presets-last-7-day': 'Last 7 Days',
43
+ 'table-action-range-picker-presets-last-14-day': 'Last 14 Days',
44
+ 'table-action-range-picker-presets-last-30-day': 'Last 30 Days',
45
+ 'table-action-range-picker-presets-last-90-day': 'Last 90 Days',
46
+ 'virtual-keyboard-time-now': 'Now',
47
+ 'virtual-keyboard-time-ok': 'OK',
48
48
  'batch-editor-batch-edit': 'Batch edit',
49
49
  'batch-editor-actions': 'Actions',
50
50
  'batch-editor-remove': 'Remove',
@@ -54,7 +54,7 @@ export default {
54
54
  'batch-editor-confirm': 'Confirm',
55
55
  'batch-editor-batch-remove': 'Batch remove',
56
56
  'batch-editor-quick-edit': 'Quick edit',
57
- 'batch-editor-what-price': "What price",
57
+ 'batch-editor-what-price': 'What price',
58
58
  'batch-editor-quick-edit-title': function batchEditorQuickEditTitle(product, num) {
59
59
  return "You have selected ".concat(num, " products including ").concat(product);
60
60
  },
@@ -131,7 +131,7 @@ export default {
131
131
  'date-picker-first_day_of_next_month': 'First day of next month',
132
132
  'date-picker-last_day_of_last_month': 'Last day of last month',
133
133
  'date-picker-invalid-date': 'Invalid date',
134
- "date-picker-apply": "Apply",
134
+ 'date-picker-apply': 'Apply',
135
135
  'date-picker-shortcut-custom': 'Custom',
136
136
  'pisell-input-copy-success': 'Copy Success',
137
137
  'pisell-input-copy': 'Copy',
@@ -155,14 +155,15 @@ export default {
155
155
  'pisell-wallet-pass-card-required': 'This field is required',
156
156
  'pisell-wallet-pass-card-expireDate': 'Long term',
157
157
  // 金额修改组件
158
- 'pisell-adjust-price-price-override': "Price override",
159
- 'pisell-adjust-price-discount': "Discount",
160
- 'pisell-adjust-price-discount-amount': "Amount",
161
- 'pisell-adjust-price-discount-percentage': "Percentage",
162
- 'pisell-adjust-price-total-after-discount': "Total after discount: ",
163
- 'pisell-adjust-price-discount-can-be-maximum': "Discount can be maximum",
158
+ 'pisell-adjust-price-price-override': 'Price override',
159
+ 'pisell-adjust-price-discount': 'Discount',
160
+ 'pisell-adjust-price-discount-amount': 'Amount',
161
+ 'pisell-adjust-price-discount-percentage': 'Percentage',
162
+ 'pisell-adjust-price-total-after-discount': 'Total after discount: ',
163
+ 'pisell-adjust-price-discount-can-be-maximum': 'Discount can be maximum',
164
164
  'pisell-discount-card-title': 'Discount',
165
165
  'pisell-discount-card-unit': 'off',
166
+ 'pisell-discount-card-fixed-amount-prefix': 'Save',
166
167
  // 数据源表格
167
168
  'pisell-data-source-table-add': 'Add',
168
169
  'pisell-data-source-table-edit': 'Edit',
@@ -198,6 +199,7 @@ export default {
198
199
  'walletCard-done': 'Done',
199
200
  'walletCard-qrcode': 'QR code',
200
201
  'walletCard-barcode': 'Bar code',
202
+ 'walletCard-viewPin': 'View PIN',
201
203
  // 上传组件
202
204
  'pisell-upload-button': 'Upload',
203
205
  'pisell-upload-setting-size-error': function pisellUploadSettingSizeError(maxSize) {
@@ -273,7 +275,7 @@ export default {
273
275
  'pisell-lowcode-app-version-control-new-version': 'New version',
274
276
  'pisell-lowcode-app-version-control-promote-to-live': 'Promote to live',
275
277
  'pisell-lowcode-app-version-control-promote-version': function pisellLowcodeAppVersionControlPromoteVersion(version) {
276
- return "Promote version ".concat(version || "", "?");
278
+ return "Promote version ".concat(version || '', "?");
277
279
  },
278
280
  'pisell-lowcode-app-version-control-promote-version-describe': 'Are you sure you want to promote this version?',
279
281
  'pisell-lowcode-app-version-control-promote-version-ok': 'Promote',
@@ -285,12 +287,12 @@ export default {
285
287
  'pisell-lowcode-navigation-menu-add-sub-menu': 'Add submenu',
286
288
  'pisell-lowcode-navigation-menu-add-page': 'Add page',
287
289
  'pisell-lowcode-navigation-menu-add-page-tip': 'No navigation found. Please add a submenu or page.',
288
- 'pisell-lowcode-navigation-menu-tag-base': "Base",
289
- 'pisell-lowcode-navigation-menu-tag-proCode': "Pro code",
290
- 'pisell-lowcode-navigation-menu-tag-pisell1': "Pisell 1.0",
291
- 'pisell-lowcode-navigation-menu-tag-group': "Group",
292
- 'pisell-lowcode-navigation-menu-tag-sub-menu': "Submenu",
293
- 'pisell-lowcode-navigation-menu-tag-custom': "Custom",
290
+ 'pisell-lowcode-navigation-menu-tag-base': 'Base',
291
+ 'pisell-lowcode-navigation-menu-tag-proCode': 'Pro code',
292
+ 'pisell-lowcode-navigation-menu-tag-pisell1': 'Pisell 1.0',
293
+ 'pisell-lowcode-navigation-menu-tag-group': 'Group',
294
+ 'pisell-lowcode-navigation-menu-tag-sub-menu': 'Submenu',
295
+ 'pisell-lowcode-navigation-menu-tag-custom': 'Custom',
294
296
  // 应用标识符
295
297
  'pisell-data-source-form-app-identifier-pattern': 'Can only contain lowercase letters, numbers, hyphens, dots, and underscores',
296
298
  'pisell-data-source-form-app-identifier-start-with-letter': 'Must start with a letter',
@@ -303,15 +305,15 @@ export default {
303
305
  'pisell-data-source-form-app-identifier-special-ends': 'Cannot end with a hyphen, dot, or underscore',
304
306
  'pisell-data-source-form-app-identifier-consecutive-special': 'Cannot contain consecutive hyphens, dots, or underscores',
305
307
  // QR Scanner related texts
306
- "qrscanner-loading": "Recognizing QR code...",
307
- "qrscanner-success": "Successfully recognized: ",
308
- "qrscanner-success-qrcode": "QR code successfully recognized: ",
309
- "qrscanner-success-barcode": "Barcode successfully recognized: ",
310
- "qrscanner-error-upload-image": "Please upload an image file",
311
- "qrscanner-error-load-failed": "Failed to read file",
312
- "qrscanner-error-no-code": "No QR code or barcode detected.",
313
- "qrscanner-error-camera-init": "Cannot start camera. Please make sure it's authorized.",
314
- "qrscanner-error-process-image": "Error processing image",
308
+ 'qrscanner-loading': 'Recognizing QR code...',
309
+ 'qrscanner-success': 'Successfully recognized: ',
310
+ 'qrscanner-success-qrcode': 'QR code successfully recognized: ',
311
+ 'qrscanner-success-barcode': 'Barcode successfully recognized: ',
312
+ 'qrscanner-error-upload-image': 'Please upload an image file',
313
+ 'qrscanner-error-load-failed': 'Failed to read file',
314
+ 'qrscanner-error-no-code': 'No QR code or barcode detected.',
315
+ 'qrscanner-error-camera-init': "Cannot start camera. Please make sure it's authorized.",
316
+ 'qrscanner-error-process-image': 'Error processing image',
315
317
  // 登录注册组件
316
318
  'pisell-login-and-register-title': 'Log in to your account',
317
319
  'pisell-login-and-register-subtitle': 'Welcome back! Please enter your details.',
@@ -335,8 +337,20 @@ export default {
335
337
  'pisell-login-and-register-remember-me': 'Remember me',
336
338
  'pisell-login-and-register-forgot-password': 'Forgot password?',
337
339
  // 商品券组件
338
- 'pisell2.text.goodpass.product-vouchers': "Promotions & Vouchers",
339
- 'pisell2.text.goodpass.last-settlement': "(Last payment)",
340
- 'pisell2.text.goodpass.view-more': "View More",
341
- 'pisell2.text.goodpass.save': "Save"
340
+ 'pisell2.text.goodpass.product-vouchers': 'Promotions & Vouchers',
341
+ 'pisell2.text.goodpass.last-settlement': '(Last payment)',
342
+ 'pisell2.text.goodpass.view-more': 'View More',
343
+ 'pisell2.text.goodpass.save': 'Save',
344
+ // 相机组件
345
+ 'pisell-camera-no-camera-accessible': 'No camera accessible',
346
+ 'pisell-camera-permission-denied': 'Permission denied',
347
+ 'pisell-camera-switch-camera': 'Switch camera',
348
+ 'pisell-camera-canvas': 'Canvas not supported',
349
+ 'pisell-camera-checking': 'Detecting camera...',
350
+ 'pisell-camera-no-camera-desc': 'Please check if your device has a camera or grant browser permission to access camera',
351
+ // 拍照组件
352
+ 'pisell-upload-camera-local-files': 'Local Files',
353
+ 'pisell-upload-camera-capture': 'Capture',
354
+ 'pisell-upload-camera-retake': 'Retake',
355
+ 'pisell-upload-camera-use': 'Use photo'
342
356
  };
@@ -1,50 +1,50 @@
1
1
  export default {
2
- "table-filter-search": "搜索",
3
- "table-filter-clear": "清除",
4
- "table-filter-filter": "筛选",
5
- "table-filter-min": "最小",
6
- "table-filter-max": "最大",
7
- "table-pagination-previous": "上一页",
8
- "table-pagination-next": "下一页",
9
- "table-pagination-total": function tablePaginationTotal(current, total) {
2
+ 'table-filter-search': '搜索',
3
+ 'table-filter-clear': '清除',
4
+ 'table-filter-filter': '筛选',
5
+ 'table-filter-min': '最小',
6
+ 'table-filter-max': '最大',
7
+ 'table-pagination-previous': '上一页',
8
+ 'table-pagination-next': '下一页',
9
+ 'table-pagination-total': function tablePaginationTotal(current, total) {
10
10
  return "\u7B2C".concat(current, "\u9875 \u5171").concat(total, "\u9875");
11
11
  },
12
- "select-dropdown-render-select-all": "全选",
13
- "select-dropdown-render-search": "搜索",
14
- "sort-button-text": "排序",
15
- "sort-oldest-to-newest": "从旧到新",
16
- "sort-newest-to-oldest": "从新到旧",
17
- "sort-a-z": "A 到 Z",
18
- "sort-z-a": "Z 到 A",
19
- "sort-from-morning-to-night": "从早到晚",
20
- "sort-from-evening-to-morning": "从晚到早",
21
- "sort-0-9": "0 ~ 9",
22
- "sort-9-0": "9 ~ 0",
23
- "table-action-filter-button": "筛选",
24
- "table-action-filter-quick-filter": "快捷筛选",
25
- "table-action-filter-quick-filter-tip": function tableActionFilterQuickFilterTip(count) {
12
+ 'select-dropdown-render-select-all': '全选',
13
+ 'select-dropdown-render-search': '搜索',
14
+ 'sort-button-text': '排序',
15
+ 'sort-oldest-to-newest': '从旧到新',
16
+ 'sort-newest-to-oldest': '从新到旧',
17
+ 'sort-a-z': 'A 到 Z',
18
+ 'sort-z-a': 'Z 到 A',
19
+ 'sort-from-morning-to-night': '从早到晚',
20
+ 'sort-from-evening-to-morning': '从晚到早',
21
+ 'sort-0-9': '0 ~ 9',
22
+ 'sort-9-0': '9 ~ 0',
23
+ 'table-action-filter-button': '筛选',
24
+ 'table-action-filter-quick-filter': '快捷筛选',
25
+ 'table-action-filter-quick-filter-tip': function tableActionFilterQuickFilterTip(count) {
26
26
  return "\u5728\u9875\u9762\u4E0A\u76F4\u63A5\u542F\u7528\u5FEB\u901F\u7B5B\u9009\uFF0C\u4EE5\u4FBF\u8FDB\u884C\u65B9\u4FBF\u7684\u7B5B\u9009\u64CD\u4F5C\uFF0C\u6700\u591A\u5141\u8BB8\u4F7F\u7528".concat(count, "\u4E2A\u7B5B\u9009\u5668\u3002");
27
27
  },
28
- "table-action-filter-other-filter": "筛选",
29
- "table-action-filter-other-filter-tip": function tableActionFilterOtherFilterTip() {
30
- return "在列表中选择筛选条件进行筛选操作,并显示相应的结果。";
28
+ 'table-action-filter-other-filter': '筛选',
29
+ 'table-action-filter-other-filter-tip': function tableActionFilterOtherFilterTip() {
30
+ return '在列表中选择筛选条件进行筛选操作,并显示相应的结果。';
31
31
  },
32
- "table-action-group-by-title": "分组条件",
33
- "table-action-group-by-title-tip": "请从下拉菜单中选择要分组的字段,以便更好地组织和浏览数据。",
34
- "table-action-column-title": "表头设置",
35
- "table-column-group-records": "条记录",
36
- "table-column-group-lock-tip": "固定列不可移动顺序",
37
- "table-column-drag-sort-disabled-tip": "已开启自动排序,无法手动拖拽",
38
- "table-action-filter-no-filter": "没有可用的筛选器。",
39
- "table-action-range-picker-presets-today": "今天",
40
- "table-action-range-picker-presets-yesterday": "昨天",
41
- "table-action-range-picker-presets-last-3-day": "过去3天",
42
- "table-action-range-picker-presets-last-7-day": "过去7天",
43
- "table-action-range-picker-presets-last-14-day": "过去14天",
44
- "table-action-range-picker-presets-last-30-day": "过去30天",
45
- "table-action-range-picker-presets-last-90-day": "过去90天",
46
- "virtual-keyboard-time-now": "此刻",
47
- "virtual-keyboard-time-ok": "确定",
32
+ 'table-action-group-by-title': '分组条件',
33
+ 'table-action-group-by-title-tip': '请从下拉菜单中选择要分组的字段,以便更好地组织和浏览数据。',
34
+ 'table-action-column-title': '表头设置',
35
+ 'table-column-group-records': '条记录',
36
+ 'table-column-group-lock-tip': '固定列不可移动顺序',
37
+ 'table-column-drag-sort-disabled-tip': '已开启自动排序,无法手动拖拽',
38
+ 'table-action-filter-no-filter': '没有可用的筛选器。',
39
+ 'table-action-range-picker-presets-today': '今天',
40
+ 'table-action-range-picker-presets-yesterday': '昨天',
41
+ 'table-action-range-picker-presets-last-3-day': '过去3天',
42
+ 'table-action-range-picker-presets-last-7-day': '过去7天',
43
+ 'table-action-range-picker-presets-last-14-day': '过去14天',
44
+ 'table-action-range-picker-presets-last-30-day': '过去30天',
45
+ 'table-action-range-picker-presets-last-90-day': '过去90天',
46
+ 'virtual-keyboard-time-now': '此刻',
47
+ 'virtual-keyboard-time-ok': '确定',
48
48
  'batch-editor-batch-edit': '批量编辑',
49
49
  'batch-editor-actions': '操作',
50
50
  'batch-editor-remove': '移除',
@@ -54,7 +54,7 @@ export default {
54
54
  'batch-editor-confirm': '确认',
55
55
  'batch-editor-batch-remove': '批量移除',
56
56
  'batch-editor-quick-edit': '快速编辑',
57
- 'batch-editor-what-price': "什么价格",
57
+ 'batch-editor-what-price': '什么价格',
58
58
  'batch-editor-quick-edit-title': function batchEditorQuickEditTitle(product, num) {
59
59
  return "\u60A8\u5DF2\u9009\u62E9 ".concat(product, " \u7B49").concat(num, "\u4EF6\u5546\u54C1");
60
60
  },
@@ -131,7 +131,7 @@ export default {
131
131
  'date-picker-first_day_of_next_month': '下个月的第一天',
132
132
  'date-picker-last_day_of_last_month': '上个月的最后一天',
133
133
  'date-picker-invalid-date': '无效日期',
134
- "date-picker-apply": "确定",
134
+ 'date-picker-apply': '确定',
135
135
  'date-picker-shortcut-custom': '自定义',
136
136
  'pisell-input-copy-success': '复制成功',
137
137
  'pisell-input-copy': '复制',
@@ -155,14 +155,15 @@ export default {
155
155
  'pisell-wallet-pass-card-required': '此字段必填',
156
156
  'pisell-wallet-pass-card-expireDate': '长期',
157
157
  // 金额修改组件
158
- 'pisell-adjust-price-price-override': "一口价",
159
- 'pisell-adjust-price-discount': "折扣",
160
- 'pisell-adjust-price-discount-amount': "金额",
161
- 'pisell-adjust-price-discount-percentage': "百分比",
162
- 'pisell-adjust-price-total-after-discount': "打折后总价",
163
- 'pisell-adjust-price-discount-can-be-maximum': "折扣最高可达",
158
+ 'pisell-adjust-price-price-override': '一口价',
159
+ 'pisell-adjust-price-discount': '折扣',
160
+ 'pisell-adjust-price-discount-amount': '金额',
161
+ 'pisell-adjust-price-discount-percentage': '百分比',
162
+ 'pisell-adjust-price-total-after-discount': '打折后总价',
163
+ 'pisell-adjust-price-discount-can-be-maximum': '折扣最高可达',
164
164
  'pisell-discount-card-title': '折扣',
165
165
  'pisell-discount-card-unit': '折扣',
166
+ 'pisell-discount-card-fixed-amount-prefix': '立减',
166
167
  'pisell-data-source-table-add': '添加',
167
168
  'pisell-data-source-table-edit': '编辑',
168
169
  'pisell-data-source-table-detail': '详情',
@@ -197,6 +198,7 @@ export default {
197
198
  'walletCard-done': '完成',
198
199
  'walletCard-qrcode': '二维码',
199
200
  'walletCard-barcode': '条形码',
201
+ 'walletCard-viewPin': '查看PIN',
200
202
  // 上传组件
201
203
  'pisell-upload-button': '上传',
202
204
  'pisell-upload-setting-size-error': function pisellUploadSettingSizeError(maxSize) {
@@ -270,7 +272,7 @@ export default {
270
272
  'pisell-lowcode-app-version-control-new-version': '新版本',
271
273
  'pisell-lowcode-app-version-control-promote-to-live': '发布正式版',
272
274
  'pisell-lowcode-app-version-control-promote-version': function pisellLowcodeAppVersionControlPromoteVersion(version) {
273
- return "\u53D1\u5E03\u7248\u672C ".concat(version || "", "?");
275
+ return "\u53D1\u5E03\u7248\u672C ".concat(version || '', "?");
274
276
  },
275
277
  'pisell-lowcode-app-version-control-promote-version-describe': '您确定要发布此版本吗?',
276
278
  'pisell-lowcode-app-version-control-promote-version-ok': '发布',
@@ -282,27 +284,27 @@ export default {
282
284
  'pisell-lowcode-navigation-menu-add-sub-menu': '添加子菜单',
283
285
  'pisell-lowcode-navigation-menu-add-page': '添加页面',
284
286
  'pisell-lowcode-navigation-menu-add-page-tip': '没有找到导航,请添加子菜单或页面。',
285
- 'pisell-lowcode-navigation-menu-tag-base': "基础",
286
- 'pisell-lowcode-navigation-menu-tag-proCode': "Pro code",
287
- 'pisell-lowcode-navigation-menu-tag-pisell1': "Pisell 1.0",
288
- 'pisell-lowcode-navigation-menu-tag-group': "分组",
289
- 'pisell-lowcode-navigation-menu-tag-sub-menu': "子菜单",
290
- 'pisell-lowcode-navigation-menu-tag-custom': "自定义",
287
+ 'pisell-lowcode-navigation-menu-tag-base': '基础',
288
+ 'pisell-lowcode-navigation-menu-tag-proCode': 'Pro code',
289
+ 'pisell-lowcode-navigation-menu-tag-pisell1': 'Pisell 1.0',
290
+ 'pisell-lowcode-navigation-menu-tag-group': '分组',
291
+ 'pisell-lowcode-navigation-menu-tag-sub-menu': '子菜单',
292
+ 'pisell-lowcode-navigation-menu-tag-custom': '自定义',
291
293
  // 应用标识符
292
294
  'pisell-data-source-form-app-identifier-pattern': '只能包含小写字母、数字、连字符、点和下划线',
293
295
  'pisell-data-source-form-app-identifier-start-with-letter': '必须以字母开头',
294
296
  'pisell-data-source-form-app-identifier-special-ends': '不能以连字符、点或下划线结尾',
295
297
  'pisell-data-source-form-app-identifier-consecutive-special': '不能包含连续的连字符、点或下划线',
296
298
  // QR Scanner 相关文案
297
- "qrscanner-loading": "正在识别二维码...",
298
- "qrscanner-success": "识别成功: ",
299
- "qrscanner-success-qrcode": "二维码识别成功: ",
300
- "qrscanner-success-barcode": "条形码识别成功: ",
301
- "qrscanner-error-upload-image": "请上传图片文件",
302
- "qrscanner-error-load-failed": "读取文件失败",
303
- "qrscanner-error-no-code": "未检测到二维码或条形码",
304
- "qrscanner-error-camera-init": "无法启动摄像头,请确保已授权",
305
- "qrscanner-error-process-image": "处理图像时出错",
299
+ 'qrscanner-loading': '正在识别二维码...',
300
+ 'qrscanner-success': '识别成功: ',
301
+ 'qrscanner-success-qrcode': '二维码识别成功: ',
302
+ 'qrscanner-success-barcode': '条形码识别成功: ',
303
+ 'qrscanner-error-upload-image': '请上传图片文件',
304
+ 'qrscanner-error-load-failed': '读取文件失败',
305
+ 'qrscanner-error-no-code': '未检测到二维码或条形码',
306
+ 'qrscanner-error-camera-init': '无法启动摄像头,请确保已授权',
307
+ 'qrscanner-error-process-image': '处理图像时出错',
306
308
  // 登录注册组件
307
309
  'pisell-login-and-register-title': '登录到您的账户',
308
310
  'pisell-login-and-register-subtitle': '欢迎回来!请输入您的详细信息。',
@@ -317,7 +319,7 @@ export default {
317
319
  'pisell-login-and-register-google': '继续使用Google',
318
320
  'pisell-login-and-register-facebook': '继续使用Facebook',
319
321
  'pisell-login-and-register-apple': '继续使用Apple',
320
- 'pisell-login-and-register-sign-up': "没有账户?注册",
322
+ 'pisell-login-and-register-sign-up': '没有账户?注册',
321
323
  'pisell-login-and-register-login-tab': '登录',
322
324
  'pisell-login-and-register-register-tab': '注册',
323
325
  'pisell-login-and-register-register-email-placeholder': '输入您的邮箱',
@@ -326,8 +328,20 @@ export default {
326
328
  'pisell-login-and-register-remember-me': '记住我',
327
329
  'pisell-login-and-register-forgot-password': '忘记密码?',
328
330
  // 商品券
329
- 'pisell2.text.goodpass.product-vouchers': "优惠促销",
330
- 'pisell2.text.goodpass.last-settlement': "(上次结算)",
331
- 'pisell2.text.goodpass.view-more': "查看更多",
332
- 'pisell2.text.goodpass.save': "节省"
331
+ 'pisell2.text.goodpass.product-vouchers': '优惠促销',
332
+ 'pisell2.text.goodpass.last-settlement': '(上次结算)',
333
+ 'pisell2.text.goodpass.view-more': '查看更多',
334
+ 'pisell2.text.goodpass.save': '节省',
335
+ // 相机组件
336
+ 'pisell-camera-no-camera-accessible': '没有找到摄像头',
337
+ 'pisell-camera-permission-denied': '没有权限使用摄像头',
338
+ 'pisell-camera-switch-camera': '切换摄像头',
339
+ 'pisell-camera-canvas': 'canvas不支持',
340
+ 'pisell-camera-checking': '正在检测摄像头...',
341
+ 'pisell-camera-no-camera-desc': '请检查设备是否连接摄像头或授权浏览器访问摄像头',
342
+ // 拍照组件
343
+ 'pisell-upload-camera-local-files': '本地文件',
344
+ 'pisell-upload-camera-capture': '拍摄/拍照',
345
+ 'pisell-upload-camera-retake': '重拍',
346
+ 'pisell-upload-camera-use': '使用照片'
333
347
  };