@pisell/materials 6.0.18 → 6.0.20
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.
- package/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +7 -7
- package/build/lowcode/preview.js +146 -146
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +51 -20
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +51 -20
- package/es/components/badge/index.d.ts +7 -0
- package/es/components/badge/index.js +44 -0
- package/es/components/badge/index.less +2 -0
- package/es/components/buttonGroupEdit/index.d.ts +8 -0
- package/es/components/buttonGroupEdit/index.js +408 -0
- package/es/components/buttonGroupPreview/index.d.ts +19 -0
- package/es/components/buttonGroupPreview/index.js +74 -0
- package/es/components/cardMetricItem/index.d.ts +12 -0
- package/es/components/cardMetricItem/index.js +39 -0
- package/es/components/cardMetricItem/index.less +39 -0
- package/es/components/cardPro/index.d.ts +3 -0
- package/es/components/cardPro/index.js +66 -0
- package/es/components/cardPro/index.less +55 -0
- package/es/components/cropPhoto/index.d.ts +3 -0
- package/es/components/cropPhoto/index.js +72 -0
- package/es/components/cropPhoto/index.less +15 -0
- package/es/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -2
- package/es/components/dataSourceComponents/dataSourceMenu/Basic.js +13 -3
- package/es/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -2
- package/es/components/dataSourceComponents/fields/Input/WithMode.js +24 -1
- package/es/components/dataSourceComponents/fields/Input.Mobile/serve.js +31 -3
- package/es/components/dataSourceComponents/fields/Input.Phone/serve.js +31 -3
- package/es/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Input.Url/ReadPretty.less +2 -0
- package/es/components/dataSourceComponents/fields/Upload/BaseUpload.js +102 -141
- package/es/components/dataSourceComponents/fields/Upload/WithMode.js +6 -3
- package/es/components/dataSourceComponents/fields/Upload/serve.js +13 -3
- package/es/components/dataSourceComponents/fields/Upload/shopUploadServe.d.ts +56 -0
- package/es/components/dataSourceComponents/fields/Upload/shopUploadServe.js +396 -0
- package/es/components/dataSourceComponents/fields/Upload/type.d.ts +1 -0
- package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -0
- package/es/components/dataSourceComponents/fields/Upload/utils.js +17 -2
- package/es/components/dataSourceComponents/fields/index.d.ts +8 -8
- package/es/components/dataSourceComponents/hooks/usePlatform.d.ts +3 -0
- package/es/components/dataSourceComponents/hooks/usePlatform.js +12 -0
- package/es/components/login-and-register/index.js +23 -21
- package/es/components/login-and-register/index.less +7 -7
- package/es/components/page/index.js +23 -57
- package/es/components/pisellAnchor/index.d.ts +23 -0
- package/es/components/pisellAnchor/index.js +303 -0
- package/es/components/pisellAnchor/index.less +197 -0
- package/es/components/pisellNavigationMenu/PisellNavigationMenu.js +18 -2
- package/es/components/pisellQrcode/index.d.ts +10 -0
- package/es/components/pisellQrcode/index.js +70 -0
- package/es/components/pisellQrcode/index.less +41 -0
- package/es/components/pisellStatisticList/index.d.ts +3 -0
- package/es/components/pisellStatisticList/index.js +17 -5
- package/es/components/pisellStatisticList/index.less +1 -1
- package/es/components/pisellText/components/Amount/index.d.ts +2 -0
- package/es/components/pisellText/components/Amount/index.js +3 -2
- package/es/components/pisellWalletPassCard/index.d.ts +4 -4
- package/es/components/pisellWalletPassCard/index.js +28 -12
- package/es/components/pisellWalletPassCard/index.less +26 -4
- package/es/components/record-view/index.d.ts +13 -5
- package/es/components/record-view/index.js +81 -30
- package/es/components/record-view/index.less +37 -2
- package/es/components/table/Table/utils.d.ts +1 -1
- package/es/components/tabs/index.d.ts +1 -0
- package/es/components/tabs/index.js +25 -7
- package/es/components/tabs/index.less +5 -5
- package/es/components/walletCard/Guest/index.d.ts +3 -0
- package/es/components/walletCard/Guest/index.js +83 -0
- package/es/components/walletCard/Guest/index.less +71 -0
- package/es/components/walletCard/index.d.ts +65 -0
- package/es/components/walletCard/index.js +402 -0
- package/es/components/walletCard/index.less +267 -0
- package/es/index.d.ts +10 -1
- package/es/index.js +10 -1
- package/es/locales/en-US.d.ts +38 -2
- package/es/locales/en-US.js +55 -10
- package/es/locales/index.js +4 -2
- package/es/locales/zh-CN.d.ts +36 -0
- package/es/locales/zh-CN.js +41 -1
- package/es/locales/zh-TW.d.ts +36 -0
- package/es/locales/zh-TW.js +41 -1
- package/es/utils/index.d.ts +1 -0
- package/es/utils/index.js +3 -0
- package/es/utils/platform.d.ts +1 -1
- package/lib/components/badge/index.d.ts +7 -0
- package/lib/components/badge/index.js +70 -0
- package/lib/components/badge/index.less +2 -0
- package/lib/components/buttonGroupEdit/index.d.ts +8 -0
- package/lib/components/buttonGroupEdit/index.js +317 -0
- package/lib/components/buttonGroupPreview/index.d.ts +19 -0
- package/lib/components/buttonGroupPreview/index.js +79 -0
- package/lib/components/cardMetricItem/index.d.ts +12 -0
- package/lib/components/cardMetricItem/index.js +75 -0
- package/lib/components/cardMetricItem/index.less +39 -0
- package/lib/components/cardPro/index.d.ts +3 -0
- package/lib/components/cardPro/index.js +98 -0
- package/lib/components/cardPro/index.less +55 -0
- package/lib/components/cropPhoto/index.d.ts +3 -0
- package/lib/components/cropPhoto/index.js +70 -0
- package/lib/components/cropPhoto/index.less +15 -0
- package/lib/components/dataSourceComponents/dataSourceMenu/Basic.d.ts +8 -2
- package/lib/components/dataSourceComponents/dataSourceMenu/Basic.js +12 -3
- package/lib/components/dataSourceComponents/dataSourceMenu/index.d.ts +8 -2
- package/lib/components/dataSourceComponents/fields/Input/WithMode.js +21 -0
- package/lib/components/dataSourceComponents/fields/Input.Mobile/serve.js +37 -3
- package/lib/components/dataSourceComponents/fields/Input.Phone/serve.js +37 -3
- package/lib/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Input.Url/ReadPretty.less +2 -0
- package/lib/components/dataSourceComponents/fields/Upload/BaseUpload.js +47 -72
- package/lib/components/dataSourceComponents/fields/Upload/WithMode.js +11 -9
- package/lib/components/dataSourceComponents/fields/Upload/serve.js +11 -2
- package/lib/components/dataSourceComponents/fields/Upload/shopUploadServe.d.ts +56 -0
- package/lib/components/dataSourceComponents/fields/Upload/shopUploadServe.js +247 -0
- package/lib/components/dataSourceComponents/fields/Upload/type.d.ts +1 -0
- package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -0
- package/lib/components/dataSourceComponents/fields/Upload/utils.js +17 -2
- package/lib/components/dataSourceComponents/fields/index.d.ts +8 -8
- package/lib/components/dataSourceComponents/hooks/usePlatform.d.ts +3 -0
- package/lib/components/dataSourceComponents/hooks/usePlatform.js +51 -0
- package/lib/components/login-and-register/index.js +23 -21
- package/lib/components/login-and-register/index.less +7 -7
- package/lib/components/page/index.js +37 -65
- package/lib/components/pisellAnchor/index.d.ts +23 -0
- package/lib/components/pisellAnchor/index.js +251 -0
- package/lib/components/pisellAnchor/index.less +197 -0
- package/lib/components/pisellNavigationMenu/PisellNavigationMenu.js +24 -3
- package/lib/components/pisellQrcode/index.d.ts +10 -0
- package/lib/components/pisellQrcode/index.js +82 -0
- package/lib/components/pisellQrcode/index.less +41 -0
- package/lib/components/pisellStatisticList/index.d.ts +3 -0
- package/lib/components/pisellStatisticList/index.js +35 -15
- package/lib/components/pisellStatisticList/index.less +1 -1
- package/lib/components/pisellText/components/Amount/index.d.ts +2 -0
- package/lib/components/pisellText/components/Amount/index.js +2 -1
- package/lib/components/pisellWalletPassCard/index.d.ts +4 -4
- package/lib/components/pisellWalletPassCard/index.js +17 -9
- package/lib/components/pisellWalletPassCard/index.less +26 -4
- package/lib/components/record-view/index.d.ts +13 -5
- package/lib/components/record-view/index.js +63 -11
- package/lib/components/record-view/index.less +37 -2
- package/lib/components/table/Table/utils.d.ts +1 -1
- package/lib/components/tabs/index.d.ts +1 -0
- package/lib/components/tabs/index.js +12 -1
- package/lib/components/tabs/index.less +5 -5
- package/lib/components/walletCard/Guest/index.d.ts +3 -0
- package/lib/components/walletCard/Guest/index.js +138 -0
- package/lib/components/walletCard/Guest/index.less +71 -0
- package/lib/components/walletCard/index.d.ts +65 -0
- package/lib/components/walletCard/index.js +374 -0
- package/lib/components/walletCard/index.less +267 -0
- package/lib/index.d.ts +10 -1
- package/lib/index.js +26 -1
- package/lib/locales/en-US.d.ts +38 -2
- package/lib/locales/en-US.js +41 -3
- package/lib/locales/index.js +4 -2
- package/lib/locales/zh-CN.d.ts +36 -0
- package/lib/locales/zh-CN.js +41 -1
- package/lib/locales/zh-TW.d.ts +36 -0
- package/lib/locales/zh-TW.js +41 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.js +6 -1
- package/lib/utils/platform.d.ts +1 -1
- package/lowcode/badge/meta.ts +20 -11
- package/lowcode/badge/snippets.ts +2 -0
- package/lowcode/button/meta.ts +2 -6
- package/lowcode/button-group/meta.ts +198 -0
- package/lowcode/button-group/snippets.ts +68 -0
- package/lowcode/button-group-edit/meta.ts +32 -0
- package/lowcode/button-group-edit/snippets.ts +98 -0
- package/lowcode/button-group-preview/meta.ts +55 -0
- package/lowcode/button-group-preview/snippets.ts +57 -0
- package/lowcode/card/snippets.ts +55 -55
- package/lowcode/card-metric-item/meta.ts +83 -0
- package/lowcode/card-metric-item/snippets.ts +13 -0
- package/lowcode/card-pro/meta.ts +338 -0
- package/lowcode/card-pro/snippe.ts +39 -0
- package/lowcode/crop-photo/meta.ts +77 -0
- package/lowcode/crop-photo/snippe.ts +12 -0
- package/lowcode/form-item-input/snippets.ts +1 -1
- package/lowcode/form-item-upload/meta.ts +11 -0
- package/lowcode/pisell-anchor/meta.ts +118 -0
- package/lowcode/pisell-anchor/snippets.ts +26 -0
- package/lowcode/pisell-card/meta.ts +63 -27
- package/lowcode/pisell-card/snippets.ts +6 -0
- package/lowcode/pisell-modal.information/meta.ts +8 -0
- package/lowcode/pisell-qrcode/__screenshots__/upload-1.png +0 -0
- package/lowcode/pisell-qrcode/meta.ts +46 -0
- package/lowcode/pisell-qrcode/snippets.ts +13 -0
- package/lowcode/pisell-tooltip/meta.ts +1 -1
- package/lowcode/record-view/meta.ts +20 -0
- package/lowcode/section-footers/meta.ts +66 -0
- package/lowcode/section-footers/snippe.ts +21 -0
- package/lowcode/spin/meta.ts +9 -0
- package/lowcode/tag/meta.ts +6 -0
- package/lowcode/timeline/meta.ts +32 -9
- package/lowcode/timeline/snippets.ts +12 -2
- package/lowcode/timeline.item/meta.ts +1 -1
- package/lowcode/wallet-card/meta.ts +283 -0
- package/lowcode/wallet-card/snippets.ts +44 -0
- package/package.json +5 -1
package/lib/index.js
CHANGED
|
@@ -36,13 +36,17 @@ __export(src_exports, {
|
|
|
36
36
|
AutoComplete: () => import_auto_complete.default,
|
|
37
37
|
AutoCompleteNumber: () => import_auto_complete_number.default,
|
|
38
38
|
Avatar: () => import_antd.Avatar,
|
|
39
|
-
Badge: () =>
|
|
39
|
+
Badge: () => import_badge.default,
|
|
40
40
|
BaseTranslation: () => import_BaseTranslation.default,
|
|
41
41
|
BatchEditor: () => import_batch_editor.default,
|
|
42
42
|
Breadcrumb: () => import_antd.Breadcrumb,
|
|
43
43
|
Button: () => import_button.default,
|
|
44
|
+
ButtonGroupEdit: () => import_buttonGroupEdit.default,
|
|
45
|
+
ButtonGroupPreview: () => import_buttonGroupPreview.default,
|
|
44
46
|
Calendar: () => import_calendar.default,
|
|
45
47
|
Card: () => import_antd.Card,
|
|
48
|
+
CardMetricItem: () => import_cardMetricItem.default,
|
|
49
|
+
CardPro: () => import_cardPro.default,
|
|
46
50
|
Carousel: () => import_antd.Carousel,
|
|
47
51
|
Cascader: () => import_cascader.default,
|
|
48
52
|
Checkbox: () => import_checkbox.default,
|
|
@@ -52,6 +56,7 @@ __export(src_exports, {
|
|
|
52
56
|
ColorPicker: () => import_antd.ColorPicker,
|
|
53
57
|
Component: () => import_component.default,
|
|
54
58
|
ConfigProvider: () => import_config_provider.default,
|
|
59
|
+
CropPhoto: () => import_cropPhoto.default,
|
|
55
60
|
CustomSelect: () => import_customSelect.default,
|
|
56
61
|
DataSourceForm: () => import_dataSourceForm.default,
|
|
57
62
|
DataSourceImage: () => import_dataSourceImage.default,
|
|
@@ -103,6 +108,7 @@ __export(src_exports, {
|
|
|
103
108
|
PisellAdjustPrice: () => import_pisellAdjustPrice.default,
|
|
104
109
|
PisellAdjustPriceInputNumber: () => import_PisellAdjustPriceInputNumber.default,
|
|
105
110
|
PisellAlert: () => import_pisellAlert.default,
|
|
111
|
+
PisellAnchor: () => import_pisellAnchor.default,
|
|
106
112
|
PisellAppCard: () => import_pisellAppCard.default,
|
|
107
113
|
PisellAvatar: () => import_pisellAvatar.default,
|
|
108
114
|
PisellCard: () => import_pisellCard.default,
|
|
@@ -130,6 +136,7 @@ __export(src_exports, {
|
|
|
130
136
|
PisellNumberKeyboard: () => import_Number.default,
|
|
131
137
|
PisellPriceKeyboard: () => import_Amount.default,
|
|
132
138
|
PisellQRScanner: () => import_pisellQRScanner.default,
|
|
139
|
+
PisellQrcode: () => import_pisellQrcode.default,
|
|
133
140
|
PisellRow: () => import_pisellRow.default,
|
|
134
141
|
PisellScan: () => import_pisellScan.default,
|
|
135
142
|
PisellSider: () => import_sider.default,
|
|
@@ -179,6 +186,7 @@ __export(src_exports, {
|
|
|
179
186
|
Upload: () => import_upload.default,
|
|
180
187
|
VirtualKeyboard: () => import_virtual_keyboard.default,
|
|
181
188
|
VirtualKeyboardTime: () => import_Time.default,
|
|
189
|
+
WalletCard: () => import_walletCard.default,
|
|
182
190
|
getBankCardTypeImg: () => import_utils.getBankCardTypeImg,
|
|
183
191
|
globalConfig: () => import_context.globalConfig,
|
|
184
192
|
loginAndRegister: () => import_login_and_register.default,
|
|
@@ -191,14 +199,20 @@ module.exports = __toCommonJS(src_exports);
|
|
|
191
199
|
var import_antd = require("antd");
|
|
192
200
|
var import_auto_complete = __toESM(require("./components/auto-complete"));
|
|
193
201
|
var import_auto_complete_number = __toESM(require("./components/auto-complete-number"));
|
|
202
|
+
var import_badge = __toESM(require("./components/badge"));
|
|
194
203
|
var import_batch_editor = __toESM(require("./components/batch-editor"));
|
|
195
204
|
var import_button = __toESM(require("./components/button"));
|
|
205
|
+
var import_buttonGroupEdit = __toESM(require("./components/buttonGroupEdit"));
|
|
206
|
+
var import_buttonGroupPreview = __toESM(require("./components/buttonGroupPreview"));
|
|
196
207
|
var import_calendar = __toESM(require("./components/calendar"));
|
|
208
|
+
var import_cardMetricItem = __toESM(require("./components/cardMetricItem"));
|
|
209
|
+
var import_cardPro = __toESM(require("./components/cardPro"));
|
|
197
210
|
var import_cascader = __toESM(require("./components/cascader"));
|
|
198
211
|
var import_checkbox = __toESM(require("./components/checkbox"));
|
|
199
212
|
var import_classicLayout = __toESM(require("./components/classicLayout"));
|
|
200
213
|
var import_component = __toESM(require("./components/component"));
|
|
201
214
|
var import_config_provider = __toESM(require("./components/config-provider"));
|
|
215
|
+
var import_cropPhoto = __toESM(require("./components/cropPhoto"));
|
|
202
216
|
var import_dataSourceForm = __toESM(require("./components/dataSourceComponents/dataSourceForm"));
|
|
203
217
|
var import_group = __toESM(require("./components/dataSourceComponents/dataSourceForm/group"));
|
|
204
218
|
var import_JsonWrapperProvider = __toESM(require("./components/dataSourceComponents/dataSourceForm/provider/jsonWrapper/JsonWrapperProvider"));
|
|
@@ -244,6 +258,7 @@ var import_usePisellConfig = __toESM(require("./components/pisell-config-provide
|
|
|
244
258
|
var import_pisellAdjustPrice = __toESM(require("./components/pisellAdjustPrice"));
|
|
245
259
|
var import_PisellAdjustPriceInputNumber = __toESM(require("./components/pisellAdjustPrice/PisellAdjustPriceInputNumber"));
|
|
246
260
|
var import_pisellAlert = __toESM(require("./components/pisellAlert"));
|
|
261
|
+
var import_pisellAnchor = __toESM(require("./components/pisellAnchor"));
|
|
247
262
|
var import_pisellAvatar = __toESM(require("./components/pisellAvatar"));
|
|
248
263
|
var import_pisellCard = __toESM(require("./components/pisellCard"));
|
|
249
264
|
var import_pisellCardList = __toESM(require("./components/pisellCardList"));
|
|
@@ -257,6 +272,7 @@ var import_pisellFloatingPanel = __toESM(require("./components/pisellFloatingPan
|
|
|
257
272
|
var import_pisellInformationEntry = __toESM(require("./components/pisellInformationEntry"));
|
|
258
273
|
var import_pisellInput = __toESM(require("./components/pisellInput"));
|
|
259
274
|
var import_utils = require("./components/pisellInput/components/BankCard/utils");
|
|
275
|
+
var import_pisellQrcode = __toESM(require("./components/pisellQrcode"));
|
|
260
276
|
var import_pisellLayout = __toESM(require("./components/pisellLayout"));
|
|
261
277
|
var import_content = __toESM(require("./components/pisellLayout/content"));
|
|
262
278
|
var import_footer = __toESM(require("./components/pisellLayout/footer"));
|
|
@@ -298,6 +314,7 @@ var import_virtual_keyboard = __toESM(require("./components/virtual-keyboard"));
|
|
|
298
314
|
var import_Amount = __toESM(require("./components/virtual-keyboard/Amount"));
|
|
299
315
|
var import_Number = __toESM(require("./components/virtual-keyboard/Number"));
|
|
300
316
|
var import_Time = __toESM(require("./components/virtual-keyboard/Time"));
|
|
317
|
+
var import_walletCard = __toESM(require("./components/walletCard"));
|
|
301
318
|
var import_versionModal = __toESM(require("./components/versionModal"));
|
|
302
319
|
var import_iconSelect = __toESM(require("./components/iconSelect"));
|
|
303
320
|
var import_customSelect = __toESM(require("./components/customSelect"));
|
|
@@ -321,8 +338,12 @@ var import_BaseTranslation = __toESM(require("./components/dataSourceComponents/
|
|
|
321
338
|
BatchEditor,
|
|
322
339
|
Breadcrumb,
|
|
323
340
|
Button,
|
|
341
|
+
ButtonGroupEdit,
|
|
342
|
+
ButtonGroupPreview,
|
|
324
343
|
Calendar,
|
|
325
344
|
Card,
|
|
345
|
+
CardMetricItem,
|
|
346
|
+
CardPro,
|
|
326
347
|
Carousel,
|
|
327
348
|
Cascader,
|
|
328
349
|
Checkbox,
|
|
@@ -332,6 +353,7 @@ var import_BaseTranslation = __toESM(require("./components/dataSourceComponents/
|
|
|
332
353
|
ColorPicker,
|
|
333
354
|
Component,
|
|
334
355
|
ConfigProvider,
|
|
356
|
+
CropPhoto,
|
|
335
357
|
CustomSelect,
|
|
336
358
|
DataSourceForm,
|
|
337
359
|
DataSourceImage,
|
|
@@ -383,6 +405,7 @@ var import_BaseTranslation = __toESM(require("./components/dataSourceComponents/
|
|
|
383
405
|
PisellAdjustPrice,
|
|
384
406
|
PisellAdjustPriceInputNumber,
|
|
385
407
|
PisellAlert,
|
|
408
|
+
PisellAnchor,
|
|
386
409
|
PisellAppCard,
|
|
387
410
|
PisellAvatar,
|
|
388
411
|
PisellCard,
|
|
@@ -410,6 +433,7 @@ var import_BaseTranslation = __toESM(require("./components/dataSourceComponents/
|
|
|
410
433
|
PisellNumberKeyboard,
|
|
411
434
|
PisellPriceKeyboard,
|
|
412
435
|
PisellQRScanner,
|
|
436
|
+
PisellQrcode,
|
|
413
437
|
PisellRow,
|
|
414
438
|
PisellScan,
|
|
415
439
|
PisellSider,
|
|
@@ -459,6 +483,7 @@ var import_BaseTranslation = __toESM(require("./components/dataSourceComponents/
|
|
|
459
483
|
Upload,
|
|
460
484
|
VirtualKeyboard,
|
|
461
485
|
VirtualKeyboardTime,
|
|
486
|
+
WalletCard,
|
|
462
487
|
getBankCardTypeImg,
|
|
463
488
|
globalConfig,
|
|
464
489
|
loginAndRegister,
|
package/lib/locales/en-US.d.ts
CHANGED
|
@@ -114,11 +114,13 @@ declare const _default: {
|
|
|
114
114
|
'pisell-input-copy': string;
|
|
115
115
|
'pisell-empty-description-no-data': string;
|
|
116
116
|
'pisell-information-entry-input-search': string;
|
|
117
|
+
'pisell-information-entry-input-confirm': string;
|
|
117
118
|
'pisell-information-entry-scan-exit': string;
|
|
118
119
|
'pisell-wallet-pass-card-detail': string;
|
|
119
120
|
'pisell-wallet-pass-card-redeem': string;
|
|
120
121
|
'pisell-wallet-pass-card-balance': string;
|
|
121
122
|
'pisell-wallet-pass-card-valid-to': string;
|
|
123
|
+
'pisell-wallet-pass-card-expireDate': string;
|
|
122
124
|
'pisell-adjust-price-price-override': string;
|
|
123
125
|
'pisell-adjust-price-discount': string;
|
|
124
126
|
'pisell-adjust-price-discount-amount': string;
|
|
@@ -131,6 +133,8 @@ declare const _default: {
|
|
|
131
133
|
'pisell-data-source-table-edit': string;
|
|
132
134
|
'pisell-data-source-table-detail': string;
|
|
133
135
|
'pisell-data-source-table-delete': string;
|
|
136
|
+
'pisell-record-view-available': string;
|
|
137
|
+
'pisell-record-view-unavailable': string;
|
|
134
138
|
'pisell-data-source-form-required-message': string;
|
|
135
139
|
'pisell-data-source-form-email-message': string;
|
|
136
140
|
'pisell-data-source-form-domain-message': string;
|
|
@@ -145,6 +149,9 @@ declare const _default: {
|
|
|
145
149
|
'pisell-number-format-thousand': string;
|
|
146
150
|
'pisell-number-format-million': string;
|
|
147
151
|
'pisell-number-format-billion': string;
|
|
152
|
+
'walletCard-done': string;
|
|
153
|
+
'walletCard-qrcode': string;
|
|
154
|
+
'walletCard-barcode': string;
|
|
148
155
|
'pisell-upload-button': string;
|
|
149
156
|
'pisell-upload-setting-size-error': (maxSize: number) => string;
|
|
150
157
|
'pisell-upload-setting-type-error': (type: string) => string;
|
|
@@ -159,6 +166,12 @@ declare const _default: {
|
|
|
159
166
|
'pisell-action-get-data': string;
|
|
160
167
|
'pisell-action-delete-success': string;
|
|
161
168
|
'pisell-action-delete-failed': string;
|
|
169
|
+
'walletCard-piont': string;
|
|
170
|
+
'walletCard-rechargeable': string;
|
|
171
|
+
'walletCard-voucher': string;
|
|
172
|
+
'walletCard-discount': string;
|
|
173
|
+
'pisellQrcode-done': string;
|
|
174
|
+
'pisellQrcode-qrcode': string;
|
|
162
175
|
'pisell-delete-confirm-title': string;
|
|
163
176
|
'pisell-delete-confirm-content': string;
|
|
164
177
|
'pisell-delete-confirm-ok': string;
|
|
@@ -206,14 +219,16 @@ declare const _default: {
|
|
|
206
219
|
'pisell-lowcode-navigation-menu-add-sub-menu': string;
|
|
207
220
|
'pisell-lowcode-navigation-menu-add-page': string;
|
|
208
221
|
'pisell-lowcode-navigation-menu-add-page-tip': string;
|
|
222
|
+
'pisell-lowcode-navigation-menu-tag-base': string;
|
|
223
|
+
'pisell-lowcode-navigation-menu-tag-pisell1': string;
|
|
209
224
|
'pisell-data-source-form-app-identifier-pattern': string;
|
|
210
225
|
'pisell-data-source-form-app-identifier-start-with-letter': string;
|
|
211
|
-
'pisell-data-source-form-app-identifier-special-ends': string;
|
|
212
|
-
'pisell-data-source-form-app-identifier-consecutive-special': string;
|
|
213
226
|
'pisell-group-permissions-rule-required': string;
|
|
214
227
|
'pisell-group-permissions-rule-limit': string;
|
|
215
228
|
'pisell-data-source-form-app-identifier-letters-only': string;
|
|
216
229
|
'pisell-data-source-form-app-identifier-alphanumeric': string;
|
|
230
|
+
'pisell-data-source-form-app-identifier-special-ends': string;
|
|
231
|
+
'pisell-data-source-form-app-identifier-consecutive-special': string;
|
|
217
232
|
"qrscanner-loading": string;
|
|
218
233
|
"qrscanner-success": string;
|
|
219
234
|
"qrscanner-success-qrcode": string;
|
|
@@ -223,5 +238,26 @@ declare const _default: {
|
|
|
223
238
|
"qrscanner-error-no-code": string;
|
|
224
239
|
"qrscanner-error-camera-init": string;
|
|
225
240
|
"qrscanner-error-process-image": string;
|
|
241
|
+
'pisell-login-and-register-title': string;
|
|
242
|
+
'pisell-login-and-register-subtitle': string;
|
|
243
|
+
'pisell-login-and-register-email-label': string;
|
|
244
|
+
'pisell-login-and-register-email-placeholder': string;
|
|
245
|
+
'pisell-login-and-register-password-label': string;
|
|
246
|
+
'pisell-login-and-register-password-placeholder': string;
|
|
247
|
+
'pisell-login-and-register-email-error': string;
|
|
248
|
+
'pisell-login-and-register-email-error-valid': string;
|
|
249
|
+
'pisell-login-and-register-password-error': string;
|
|
250
|
+
'pisell-login-and-register-login': string;
|
|
251
|
+
'pisell-login-and-register-google': string;
|
|
252
|
+
'pisell-login-and-register-facebook': string;
|
|
253
|
+
'pisell-login-and-register-apple': string;
|
|
254
|
+
'pisell-login-and-register-sign-up': string;
|
|
255
|
+
'pisell-login-and-register-login-tab': string;
|
|
256
|
+
'pisell-login-and-register-register-tab': string;
|
|
257
|
+
'pisell-login-and-register-register-email-placeholder': string;
|
|
258
|
+
'pisell-login-and-register-register-password-placeholder': string;
|
|
259
|
+
'pisell-login-and-register-register-button-text': string;
|
|
260
|
+
'pisell-login-and-register-remember-me': string;
|
|
261
|
+
'pisell-login-and-register-forgot-password': string;
|
|
226
262
|
};
|
|
227
263
|
export default _default;
|
package/lib/locales/en-US.js
CHANGED
|
@@ -145,12 +145,14 @@ var en_US_default = {
|
|
|
145
145
|
"pisell-empty-description-no-data": "No Data",
|
|
146
146
|
// 信息录入组件
|
|
147
147
|
"pisell-information-entry-input-search": "Search",
|
|
148
|
+
"pisell-information-entry-input-confirm": "Confirm",
|
|
148
149
|
"pisell-information-entry-scan-exit": "Exit",
|
|
149
150
|
// 钱包卡片组件
|
|
150
151
|
"pisell-wallet-pass-card-detail": "Detail",
|
|
151
152
|
"pisell-wallet-pass-card-redeem": "Redeem",
|
|
152
153
|
"pisell-wallet-pass-card-balance": "Balance",
|
|
153
154
|
"pisell-wallet-pass-card-valid-to": "Valid to",
|
|
155
|
+
"pisell-wallet-pass-card-expireDate": "Long term",
|
|
154
156
|
// 金额修改组件
|
|
155
157
|
"pisell-adjust-price-price-override": "Price override",
|
|
156
158
|
"pisell-adjust-price-discount": "Discount",
|
|
@@ -165,6 +167,9 @@ var en_US_default = {
|
|
|
165
167
|
"pisell-data-source-table-edit": "Edit",
|
|
166
168
|
"pisell-data-source-table-detail": "Detail",
|
|
167
169
|
"pisell-data-source-table-delete": "Delete",
|
|
170
|
+
// recordView组件
|
|
171
|
+
"pisell-record-view-available": "Available",
|
|
172
|
+
"pisell-record-view-unavailable": "No available",
|
|
168
173
|
"pisell-data-source-form-required-message": "This field is required",
|
|
169
174
|
"pisell-data-source-form-email-message": "Please enter a valid email address",
|
|
170
175
|
"pisell-data-source-form-domain-message": "Please enter a valid domain",
|
|
@@ -180,6 +185,10 @@ var en_US_default = {
|
|
|
180
185
|
"pisell-number-format-thousand": "K",
|
|
181
186
|
"pisell-number-format-million": "M",
|
|
182
187
|
"pisell-number-format-billion": "B",
|
|
188
|
+
//walletCard 组件
|
|
189
|
+
"walletCard-done": "Done",
|
|
190
|
+
"walletCard-qrcode": "QR code",
|
|
191
|
+
"walletCard-barcode": "Bar code",
|
|
183
192
|
// 上传组件
|
|
184
193
|
"pisell-upload-button": "Upload",
|
|
185
194
|
"pisell-upload-setting-size-error": (maxSize) => `Each file should not exceed ${maxSize}MB in size.`,
|
|
@@ -197,6 +206,13 @@ var en_US_default = {
|
|
|
197
206
|
"pisell-action-get-data": "Please get data first",
|
|
198
207
|
"pisell-action-delete-success": "Deleted successfully",
|
|
199
208
|
"pisell-action-delete-failed": "Delete failed, please try again",
|
|
209
|
+
"walletCard-piont": "Points",
|
|
210
|
+
"walletCard-rechargeable": "Balance",
|
|
211
|
+
"walletCard-voucher": "Voucher",
|
|
212
|
+
"walletCard-discount": "Discount",
|
|
213
|
+
//PisellQrcode组件
|
|
214
|
+
"pisellQrcode-done": "Done",
|
|
215
|
+
"pisellQrcode-qrcode": "QR code",
|
|
200
216
|
"pisell-delete-confirm-title": "Confirm Delete",
|
|
201
217
|
"pisell-delete-confirm-content": "Are you sure you want to delete this record? This action cannot be undone.",
|
|
202
218
|
"pisell-delete-confirm-ok": "Delete",
|
|
@@ -250,11 +266,11 @@ var en_US_default = {
|
|
|
250
266
|
"pisell-lowcode-navigation-menu-add-sub-menu": "Add submenu",
|
|
251
267
|
"pisell-lowcode-navigation-menu-add-page": "Add page",
|
|
252
268
|
"pisell-lowcode-navigation-menu-add-page-tip": "No navigation found. Please add a submenu or page.",
|
|
269
|
+
"pisell-lowcode-navigation-menu-tag-base": "Base",
|
|
270
|
+
"pisell-lowcode-navigation-menu-tag-pisell1": "Pisell 1.0",
|
|
253
271
|
// 应用标识符
|
|
254
272
|
"pisell-data-source-form-app-identifier-pattern": "Can only contain lowercase letters, numbers, hyphens, dots, and underscores",
|
|
255
273
|
"pisell-data-source-form-app-identifier-start-with-letter": "Must start with a letter",
|
|
256
|
-
"pisell-data-source-form-app-identifier-special-ends": "Cannot end with a hyphen, dot, or underscore",
|
|
257
|
-
"pisell-data-source-form-app-identifier-consecutive-special": "Cannot contain consecutive hyphens, dots, or underscores",
|
|
258
274
|
// TODO(reilly): Added new properties to `zh-CN.ts`, so adding them here to avoid errors.
|
|
259
275
|
// Please update these translations as needed
|
|
260
276
|
"pisell-group-permissions-rule-required": "Required",
|
|
@@ -272,5 +288,27 @@ var en_US_default = {
|
|
|
272
288
|
"qrscanner-error-load-failed": "Failed to read file",
|
|
273
289
|
"qrscanner-error-no-code": "No QR code or barcode detected.",
|
|
274
290
|
"qrscanner-error-camera-init": "Cannot start camera. Please make sure it's authorized.",
|
|
275
|
-
"qrscanner-error-process-image": "Error processing image"
|
|
291
|
+
"qrscanner-error-process-image": "Error processing image",
|
|
292
|
+
// 登录注册组件
|
|
293
|
+
"pisell-login-and-register-title": "Log in to your account",
|
|
294
|
+
"pisell-login-and-register-subtitle": "Welcome back! Please enter your details.",
|
|
295
|
+
"pisell-login-and-register-email-label": "Email",
|
|
296
|
+
"pisell-login-and-register-email-placeholder": "Enter your email",
|
|
297
|
+
"pisell-login-and-register-password-label": "Password",
|
|
298
|
+
"pisell-login-and-register-password-placeholder": "Enter your password",
|
|
299
|
+
"pisell-login-and-register-email-error": "Please input your email!",
|
|
300
|
+
"pisell-login-and-register-email-error-valid": "Please enter a valid email!",
|
|
301
|
+
"pisell-login-and-register-password-error": "Please enter the correct password",
|
|
302
|
+
"pisell-login-and-register-login": "Log in",
|
|
303
|
+
"pisell-login-and-register-google": "Continue with Google",
|
|
304
|
+
"pisell-login-and-register-facebook": "Continue with Facebook",
|
|
305
|
+
"pisell-login-and-register-apple": "Continue with Apple",
|
|
306
|
+
"pisell-login-and-register-sign-up": "Don't have an account? Sign up",
|
|
307
|
+
"pisell-login-and-register-login-tab": "Login",
|
|
308
|
+
"pisell-login-and-register-register-tab": "Register",
|
|
309
|
+
"pisell-login-and-register-register-email-placeholder": "Enter your email",
|
|
310
|
+
"pisell-login-and-register-register-password-placeholder": "Create a password",
|
|
311
|
+
"pisell-login-and-register-register-button-text": "Create account",
|
|
312
|
+
"pisell-login-and-register-remember-me": "Remember me",
|
|
313
|
+
"pisell-login-and-register-forgot-password": "Forgot password?"
|
|
276
314
|
};
|
package/lib/locales/index.js
CHANGED
|
@@ -41,14 +41,16 @@ var langMap = {
|
|
|
41
41
|
"en-US": import_en_US.default,
|
|
42
42
|
"zh-TW": import_zh_TW.default,
|
|
43
43
|
"zh-HK": import_zh_TW.default,
|
|
44
|
-
"en": import_en_US.default
|
|
44
|
+
"en": import_en_US.default,
|
|
45
|
+
"original": import_en_US.default
|
|
45
46
|
};
|
|
46
47
|
var getText = (id) => {
|
|
48
|
+
var _a;
|
|
47
49
|
if (!id) {
|
|
48
50
|
return;
|
|
49
51
|
}
|
|
50
52
|
let locale = (0, import_locale.getCurrentLocale)();
|
|
51
|
-
return langMap[locale][id] || id;
|
|
53
|
+
return ((_a = langMap == null ? void 0 : langMap[locale]) == null ? void 0 : _a[id]) || id;
|
|
52
54
|
};
|
|
53
55
|
// Annotate the CommonJS export names for ESM import in node:
|
|
54
56
|
0 && (module.exports = {
|
package/lib/locales/zh-CN.d.ts
CHANGED
|
@@ -114,11 +114,13 @@ declare const _default: {
|
|
|
114
114
|
'pisell-input-copy': string;
|
|
115
115
|
'pisell-empty-description-no-data': string;
|
|
116
116
|
'pisell-information-entry-input-search': string;
|
|
117
|
+
'pisell-information-entry-input-confirm': string;
|
|
117
118
|
'pisell-information-entry-scan-exit': string;
|
|
118
119
|
'pisell-wallet-pass-card-detail': string;
|
|
119
120
|
'pisell-wallet-pass-card-redeem': string;
|
|
120
121
|
'pisell-wallet-pass-card-balance': string;
|
|
121
122
|
'pisell-wallet-pass-card-valid-to': string;
|
|
123
|
+
'pisell-wallet-pass-card-expireDate': string;
|
|
122
124
|
'pisell-adjust-price-price-override': string;
|
|
123
125
|
'pisell-adjust-price-discount': string;
|
|
124
126
|
'pisell-adjust-price-discount-amount': string;
|
|
@@ -131,6 +133,8 @@ declare const _default: {
|
|
|
131
133
|
'pisell-data-source-table-edit': string;
|
|
132
134
|
'pisell-data-source-table-detail': string;
|
|
133
135
|
'pisell-data-source-table-delete': string;
|
|
136
|
+
'pisell-record-view-available': string;
|
|
137
|
+
'pisell-record-view-unavailable': string;
|
|
134
138
|
'pisell-data-source-form-required-message': string;
|
|
135
139
|
'pisell-data-source-form-email-message': string;
|
|
136
140
|
'pisell-data-source-form-domain-message': string;
|
|
@@ -145,6 +149,9 @@ declare const _default: {
|
|
|
145
149
|
'pisell-number-format-thousand': string;
|
|
146
150
|
'pisell-number-format-million': string;
|
|
147
151
|
'pisell-number-format-billion': string;
|
|
152
|
+
'walletCard-done': string;
|
|
153
|
+
'walletCard-qrcode': string;
|
|
154
|
+
'walletCard-barcode': string;
|
|
148
155
|
'pisell-upload-button': string;
|
|
149
156
|
'pisell-upload-setting-size-error': (maxSize: number) => string;
|
|
150
157
|
'pisell-upload-setting-type-error': (type: string) => string;
|
|
@@ -159,6 +166,12 @@ declare const _default: {
|
|
|
159
166
|
'pisell-action-get-data': string;
|
|
160
167
|
'pisell-action-delete-success': string;
|
|
161
168
|
'pisell-action-delete-failed': string;
|
|
169
|
+
'walletCard-piont': string;
|
|
170
|
+
'walletCard-rechargeable': string;
|
|
171
|
+
'walletCard-voucher': string;
|
|
172
|
+
'walletCard-discount': string;
|
|
173
|
+
'pisellQrcode-done': string;
|
|
174
|
+
'pisellQrcode-qrcode': string;
|
|
162
175
|
'pisell-delete-confirm-title': string;
|
|
163
176
|
'pisell-delete-confirm-content': string;
|
|
164
177
|
'pisell-delete-confirm-ok': string;
|
|
@@ -205,6 +218,8 @@ declare const _default: {
|
|
|
205
218
|
'pisell-lowcode-navigation-menu-add-sub-menu': string;
|
|
206
219
|
'pisell-lowcode-navigation-menu-add-page': string;
|
|
207
220
|
'pisell-lowcode-navigation-menu-add-page-tip': string;
|
|
221
|
+
'pisell-lowcode-navigation-menu-tag-base': string;
|
|
222
|
+
'pisell-lowcode-navigation-menu-tag-pisell1': string;
|
|
208
223
|
'pisell-data-source-form-app-identifier-pattern': string;
|
|
209
224
|
'pisell-data-source-form-app-identifier-start-with-letter': string;
|
|
210
225
|
'pisell-data-source-form-app-identifier-special-ends': string;
|
|
@@ -218,5 +233,26 @@ declare const _default: {
|
|
|
218
233
|
"qrscanner-error-no-code": string;
|
|
219
234
|
"qrscanner-error-camera-init": string;
|
|
220
235
|
"qrscanner-error-process-image": string;
|
|
236
|
+
'pisell-login-and-register-title': string;
|
|
237
|
+
'pisell-login-and-register-subtitle': string;
|
|
238
|
+
'pisell-login-and-register-email-label': string;
|
|
239
|
+
'pisell-login-and-register-email-placeholder': string;
|
|
240
|
+
'pisell-login-and-register-password-label': string;
|
|
241
|
+
'pisell-login-and-register-password-placeholder': string;
|
|
242
|
+
'pisell-login-and-register-email-error': string;
|
|
243
|
+
'pisell-login-and-register-email-error-valid': string;
|
|
244
|
+
'pisell-login-and-register-password-error': string;
|
|
245
|
+
'pisell-login-and-register-login': string;
|
|
246
|
+
'pisell-login-and-register-google': string;
|
|
247
|
+
'pisell-login-and-register-facebook': string;
|
|
248
|
+
'pisell-login-and-register-apple': string;
|
|
249
|
+
'pisell-login-and-register-sign-up': string;
|
|
250
|
+
'pisell-login-and-register-login-tab': string;
|
|
251
|
+
'pisell-login-and-register-register-tab': string;
|
|
252
|
+
'pisell-login-and-register-register-email-placeholder': string;
|
|
253
|
+
'pisell-login-and-register-register-password-placeholder': string;
|
|
254
|
+
'pisell-login-and-register-register-button-text': string;
|
|
255
|
+
'pisell-login-and-register-remember-me': string;
|
|
256
|
+
'pisell-login-and-register-forgot-password': string;
|
|
221
257
|
};
|
|
222
258
|
export default _default;
|
package/lib/locales/zh-CN.js
CHANGED
|
@@ -145,12 +145,14 @@ var zh_CN_default = {
|
|
|
145
145
|
"pisell-empty-description-no-data": "暂无数据",
|
|
146
146
|
// 信息录入组件
|
|
147
147
|
"pisell-information-entry-input-search": "搜索",
|
|
148
|
+
"pisell-information-entry-input-confirm": "确认",
|
|
148
149
|
"pisell-information-entry-scan-exit": "退出",
|
|
149
150
|
// 钱包卡片组件
|
|
150
151
|
"pisell-wallet-pass-card-detail": "详情",
|
|
151
152
|
"pisell-wallet-pass-card-redeem": "兑换",
|
|
152
153
|
"pisell-wallet-pass-card-balance": "余额",
|
|
153
154
|
"pisell-wallet-pass-card-valid-to": "有效期至",
|
|
155
|
+
"pisell-wallet-pass-card-expireDate": "长期",
|
|
154
156
|
// 金额修改组件
|
|
155
157
|
"pisell-adjust-price-price-override": "一口价",
|
|
156
158
|
"pisell-adjust-price-discount": "折扣",
|
|
@@ -164,6 +166,9 @@ var zh_CN_default = {
|
|
|
164
166
|
"pisell-data-source-table-edit": "编辑",
|
|
165
167
|
"pisell-data-source-table-detail": "详情",
|
|
166
168
|
"pisell-data-source-table-delete": "删除",
|
|
169
|
+
// recordView组件
|
|
170
|
+
"pisell-record-view-available": "可用",
|
|
171
|
+
"pisell-record-view-unavailable": "不可用",
|
|
167
172
|
"pisell-data-source-form-required-message": "该字段为必填项",
|
|
168
173
|
"pisell-data-source-form-email-message": "请输入有效的电子邮件地址",
|
|
169
174
|
"pisell-data-source-form-domain-message": "请输入有效的域名",
|
|
@@ -179,6 +184,10 @@ var zh_CN_default = {
|
|
|
179
184
|
"pisell-number-format-thousand": "千",
|
|
180
185
|
"pisell-number-format-million": "百万",
|
|
181
186
|
"pisell-number-format-billion": "十亿",
|
|
187
|
+
//walletCard 组件
|
|
188
|
+
"walletCard-done": "完成",
|
|
189
|
+
"walletCard-qrcode": "二维码",
|
|
190
|
+
"walletCard-barcode": "条形码",
|
|
182
191
|
// 上传组件
|
|
183
192
|
"pisell-upload-button": "上传",
|
|
184
193
|
"pisell-upload-setting-size-error": (maxSize) => `每个文件的大小不超过${maxSize}MB`,
|
|
@@ -196,6 +205,13 @@ var zh_CN_default = {
|
|
|
196
205
|
"pisell-action-get-data": "请先获取数据",
|
|
197
206
|
"pisell-action-delete-success": "删除成功",
|
|
198
207
|
"pisell-action-delete-failed": "删除失败,请重试",
|
|
208
|
+
"walletCard-piont": "积分",
|
|
209
|
+
"walletCard-rechargeable": "余额",
|
|
210
|
+
"walletCard-voucher": "代金券",
|
|
211
|
+
"walletCard-discount": "折扣卡",
|
|
212
|
+
//PisellQrcode组件
|
|
213
|
+
"pisellQrcode-done": "完成",
|
|
214
|
+
"pisellQrcode-qrcode": "二维码",
|
|
199
215
|
"pisell-delete-confirm-title": "确认删除",
|
|
200
216
|
"pisell-delete-confirm-content": "确定要删除该条记录吗? 此操作无法撤销。",
|
|
201
217
|
"pisell-delete-confirm-ok": "删除",
|
|
@@ -247,6 +263,8 @@ var zh_CN_default = {
|
|
|
247
263
|
"pisell-lowcode-navigation-menu-add-sub-menu": "添加子菜单",
|
|
248
264
|
"pisell-lowcode-navigation-menu-add-page": "添加页面",
|
|
249
265
|
"pisell-lowcode-navigation-menu-add-page-tip": "没有找到导航,请添加子菜单或页面。",
|
|
266
|
+
"pisell-lowcode-navigation-menu-tag-base": "基础",
|
|
267
|
+
"pisell-lowcode-navigation-menu-tag-pisell1": "Pisell 1.0",
|
|
250
268
|
// 应用标识符
|
|
251
269
|
"pisell-data-source-form-app-identifier-pattern": "只能包含小写字母、数字、连字符、点和下划线",
|
|
252
270
|
"pisell-data-source-form-app-identifier-start-with-letter": "必须以字母开头",
|
|
@@ -261,5 +279,27 @@ var zh_CN_default = {
|
|
|
261
279
|
"qrscanner-error-load-failed": "读取文件失败",
|
|
262
280
|
"qrscanner-error-no-code": "未检测到二维码或条形码",
|
|
263
281
|
"qrscanner-error-camera-init": "无法启动摄像头,请确保已授权",
|
|
264
|
-
"qrscanner-error-process-image": "处理图像时出错"
|
|
282
|
+
"qrscanner-error-process-image": "处理图像时出错",
|
|
283
|
+
// 登录注册组件
|
|
284
|
+
"pisell-login-and-register-title": "登录到您的账户",
|
|
285
|
+
"pisell-login-and-register-subtitle": "欢迎回来!请输入您的详细信息。",
|
|
286
|
+
"pisell-login-and-register-email-label": "邮箱",
|
|
287
|
+
"pisell-login-and-register-email-placeholder": "输入您的邮箱",
|
|
288
|
+
"pisell-login-and-register-password-label": "密码",
|
|
289
|
+
"pisell-login-and-register-password-placeholder": "输入您的密码",
|
|
290
|
+
"pisell-login-and-register-email-error": "请输入您的邮箱!",
|
|
291
|
+
"pisell-login-and-register-email-error-valid": "请输入有效的邮箱!",
|
|
292
|
+
"pisell-login-and-register-password-error": "请输入正确的密码",
|
|
293
|
+
"pisell-login-and-register-login": "登录",
|
|
294
|
+
"pisell-login-and-register-google": "继续使用Google",
|
|
295
|
+
"pisell-login-and-register-facebook": "继续使用Facebook",
|
|
296
|
+
"pisell-login-and-register-apple": "继续使用Apple",
|
|
297
|
+
"pisell-login-and-register-sign-up": "没有账户?注册",
|
|
298
|
+
"pisell-login-and-register-login-tab": "登录",
|
|
299
|
+
"pisell-login-and-register-register-tab": "注册",
|
|
300
|
+
"pisell-login-and-register-register-email-placeholder": "输入您的邮箱",
|
|
301
|
+
"pisell-login-and-register-register-password-placeholder": "创建密码",
|
|
302
|
+
"pisell-login-and-register-register-button-text": "创建账户",
|
|
303
|
+
"pisell-login-and-register-remember-me": "记住我",
|
|
304
|
+
"pisell-login-and-register-forgot-password": "忘记密码?"
|
|
265
305
|
};
|
package/lib/locales/zh-TW.d.ts
CHANGED
|
@@ -114,11 +114,13 @@ declare const _default: {
|
|
|
114
114
|
'pisell-input-copy': string;
|
|
115
115
|
'pisell-empty-description-no-data': string;
|
|
116
116
|
'pisell-information-entry-input-search': string;
|
|
117
|
+
'pisell-information-entry-input-confirm': string;
|
|
117
118
|
'pisell-information-entry-scan-exit': string;
|
|
118
119
|
'pisell-wallet-pass-card-detail': string;
|
|
119
120
|
'pisell-wallet-pass-card-redeem': string;
|
|
120
121
|
'pisell-wallet-pass-card-balance': string;
|
|
121
122
|
'pisell-wallet-pass-card-valid-to': string;
|
|
123
|
+
'pisell-wallet-pass-card-expireDate': string;
|
|
122
124
|
'pisell-adjust-price-price-override': string;
|
|
123
125
|
'pisell-adjust-price-discount': string;
|
|
124
126
|
'pisell-adjust-price-discount-amount': string;
|
|
@@ -131,6 +133,8 @@ declare const _default: {
|
|
|
131
133
|
'pisell-data-source-table-edit': string;
|
|
132
134
|
'pisell-data-source-table-detail': string;
|
|
133
135
|
'pisell-data-source-table-delete': string;
|
|
136
|
+
'pisell-record-view-available': string;
|
|
137
|
+
'pisell-record-view-unavailable': string;
|
|
134
138
|
'pisell-data-source-form-required-message': string;
|
|
135
139
|
'pisell-data-source-form-email-message': string;
|
|
136
140
|
'pisell-data-source-form-domain-message': string;
|
|
@@ -144,6 +148,9 @@ declare const _default: {
|
|
|
144
148
|
'pisell-number-format-thousand': string;
|
|
145
149
|
'pisell-number-format-million': string;
|
|
146
150
|
'pisell-number-format-billion': string;
|
|
151
|
+
'walletCard-done': string;
|
|
152
|
+
'walletCard-qrcode': string;
|
|
153
|
+
'walletCard-barcode': string;
|
|
147
154
|
'pisell-upload-button': string;
|
|
148
155
|
'pisell-upload-setting-size-error': (maxSize: number) => string;
|
|
149
156
|
'pisell-upload-setting-type-error': (type: string) => string;
|
|
@@ -158,6 +165,12 @@ declare const _default: {
|
|
|
158
165
|
'pisell-action-get-data': string;
|
|
159
166
|
'pisell-action-delete-success': string;
|
|
160
167
|
'pisell-action-delete-failed': string;
|
|
168
|
+
'walletCard-piont': string;
|
|
169
|
+
'walletCard-rechargeable': string;
|
|
170
|
+
'walletCard-voucher': string;
|
|
171
|
+
'walletCard-discount': string;
|
|
172
|
+
'pisellQrcode-done': string;
|
|
173
|
+
'pisellQrcode-qrcode': string;
|
|
161
174
|
'pisell-delete-confirm-title': string;
|
|
162
175
|
'pisell-delete-confirm-content': string;
|
|
163
176
|
'pisell-delete-confirm-ok': string;
|
|
@@ -205,6 +218,8 @@ declare const _default: {
|
|
|
205
218
|
'pisell-lowcode-navigation-menu-add-sub-menu': string;
|
|
206
219
|
'pisell-lowcode-navigation-menu-add-page': string;
|
|
207
220
|
'pisell-lowcode-navigation-menu-add-page-tip': string;
|
|
221
|
+
'pisell-lowcode-navigation-menu-tag-base': string;
|
|
222
|
+
'pisell-lowcode-navigation-menu-tag-pisell1': string;
|
|
208
223
|
'pisell-data-source-form-app-identifier-pattern': string;
|
|
209
224
|
'pisell-data-source-form-app-identifier-start-with-letter': string;
|
|
210
225
|
'pisell-data-source-form-app-identifier-special-ends': string;
|
|
@@ -218,5 +233,26 @@ declare const _default: {
|
|
|
218
233
|
"qrscanner-error-no-code": string;
|
|
219
234
|
"qrscanner-error-camera-init": string;
|
|
220
235
|
"qrscanner-error-process-image": string;
|
|
236
|
+
'pisell-login-and-register-title': string;
|
|
237
|
+
'pisell-login-and-register-subtitle': string;
|
|
238
|
+
'pisell-login-and-register-email-label': string;
|
|
239
|
+
'pisell-login-and-register-email-placeholder': string;
|
|
240
|
+
'pisell-login-and-register-password-label': string;
|
|
241
|
+
'pisell-login-and-register-password-placeholder': string;
|
|
242
|
+
'pisell-login-and-register-email-error': string;
|
|
243
|
+
'pisell-login-and-register-email-error-valid': string;
|
|
244
|
+
'pisell-login-and-register-password-error': string;
|
|
245
|
+
'pisell-login-and-register-login': string;
|
|
246
|
+
'pisell-login-and-register-google': string;
|
|
247
|
+
'pisell-login-and-register-facebook': string;
|
|
248
|
+
'pisell-login-and-register-apple': string;
|
|
249
|
+
'pisell-login-and-register-sign-up': string;
|
|
250
|
+
'pisell-login-and-register-login-tab': string;
|
|
251
|
+
'pisell-login-and-register-register-tab': string;
|
|
252
|
+
'pisell-login-and-register-register-email-placeholder': string;
|
|
253
|
+
'pisell-login-and-register-register-password-placeholder': string;
|
|
254
|
+
'pisell-login-and-register-register-button-text': string;
|
|
255
|
+
'pisell-login-and-register-remember-me': string;
|
|
256
|
+
'pisell-login-and-register-forgot-password': string;
|
|
221
257
|
};
|
|
222
258
|
export default _default;
|