@pisell/materials 3.3.6 → 3.3.7

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 (27) 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.js +1 -1
  6. package/build/lowcode/view.js +1 -1
  7. package/es/components/pisellWalletPassCard/index.d.ts +1 -0
  8. package/es/components/productCard/components/Time/components/SelectHolder/index.d.ts +3 -0
  9. package/es/components/productCard/components/Time/components/SelectHolder/index.js +8 -2
  10. package/es/components/productCard/index.js +0 -1
  11. package/lib/components/pisellWalletPassCard/index.d.ts +1 -0
  12. package/lib/components/productCard/components/Time/components/SelectHolder/index.d.ts +3 -0
  13. package/lib/components/productCard/components/Time/components/SelectHolder/index.js +5 -7
  14. package/lib/components/productCard/index.js +0 -1
  15. package/package.json +3 -3
  16. package/es/components/pisellCheckboxGroup/index.d.ts +0 -36
  17. package/es/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +0 -4
  18. package/es/components/pisellInformationEntry/index.d.ts +0 -33
  19. package/es/locales/en-US.d.ts +0 -273
  20. package/es/locales/zh-CN.d.ts +0 -268
  21. package/es/locales/zh-TW.d.ts +0 -268
  22. package/lib/components/pisellCheckboxGroup/index.d.ts +0 -36
  23. package/lib/components/pisellInformationEntry/hooks/useNativeScanner.d.ts +0 -4
  24. package/lib/components/pisellInformationEntry/index.d.ts +0 -33
  25. package/lib/locales/en-US.d.ts +0 -273
  26. package/lib/locales/zh-CN.d.ts +0 -268
  27. package/lib/locales/zh-TW.d.ts +0 -268
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import './index.less';
2
3
  export interface PisellWalletPassCardProps {
3
4
  id: number;
@@ -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;
@@ -25,6 +25,10 @@ var SelectHolder = function SelectHolder(_ref) {
25
25
  _useState2 = _slicedToArray(_useState, 2),
26
26
  selectedValue = _useState2[0],
27
27
  setSelectedValue = _useState2[1];
28
+ var _useState3 = useState(false),
29
+ _useState4 = _slicedToArray(_useState3, 2),
30
+ open = _useState4[0],
31
+ setOpen = _useState4[1];
28
32
  useEffect(function () {
29
33
  setSelectedValue(value);
30
34
  }, [value]);
@@ -41,14 +45,16 @@ var SelectHolder = function SelectHolder(_ref) {
41
45
  e.preventDefault();
42
46
  e.stopPropagation();
43
47
  onAddHolder();
48
+ setOpen(false);
44
49
  };
45
- console.log(lists, isShowAddHolderButton, addHolderButtonText, 'select-holder');
46
50
  var isError = useMemo(function () {
47
51
  if (!selectedValue && isErrorHolder) return true;
48
52
  }, [selectedValue, isErrorHolder]);
49
53
  return /*#__PURE__*/React.createElement("div", {
50
54
  className: "pisell-lowcode-product-card-select-holder ".concat(isError ? 'pisell-lowcode-product-card-select-holder-error' : '')
51
55
  }, /*#__PURE__*/React.createElement(Select, {
56
+ open: open,
57
+ onDropdownVisibleChange: setOpen,
52
58
  onClick: function onClick(e) {
53
59
  return e.stopPropagation();
54
60
  },
@@ -60,7 +66,7 @@ var SelectHolder = function SelectHolder(_ref) {
60
66
  return _onChange('');
61
67
  },
62
68
  value: selectedValue,
63
- placeholder: locales.getText('pisell2.product.card.add.holder.placeholder')(''),
69
+ placeholder: locales.getText('pisell2.product.card.add.holder.placeholder')(addHolderButtonText),
64
70
  onChange: function onChange(val) {
65
71
  setSelectedValue(val);
66
72
  var item = lists.find(function (d) {
@@ -54,7 +54,6 @@ var ProductCard = function ProductCard(props) {
54
54
  var useOpenNoteRef = useRef();
55
55
  var locale = (utils === null || utils === void 0 || (_utils$storage = utils.storage) === null || _utils$storage === void 0 ? void 0 : _utils$storage.get('umi_locale')) || localStorage.getItem('umi_locale');
56
56
  locales.init(localeTexts, locale || 'en');
57
- console.log(dataSource, isShowImage, isShowNote, 'dataSource');
58
57
  var image = dataSource.image,
59
58
  bundle = dataSource.bundle,
60
59
  relation_products = dataSource.relation_products,
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import './index.less';
2
3
  export interface PisellWalletPassCardProps {
3
4
  id: number;
@@ -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;
@@ -50,6 +50,7 @@ var SelectHolder = ({
50
50
  allowClear = false
51
51
  }) => {
52
52
  const [selectedValue, setSelectedValue] = (0, import_react.useState)();
53
+ const [open, setOpen] = (0, import_react.useState)(false);
53
54
  (0, import_react.useEffect)(() => {
54
55
  setSelectedValue(value);
55
56
  }, [value]);
@@ -57,13 +58,8 @@ var SelectHolder = ({
57
58
  e.preventDefault();
58
59
  e.stopPropagation();
59
60
  onAddHolder();
61
+ setOpen(false);
60
62
  };
61
- console.log(
62
- lists,
63
- isShowAddHolderButton,
64
- addHolderButtonText,
65
- "select-holder"
66
- );
67
63
  const isError = (0, import_react.useMemo)(() => {
68
64
  if (!selectedValue && isErrorHolder) return true;
69
65
  }, [selectedValue, isErrorHolder]);
@@ -75,6 +71,8 @@ var SelectHolder = ({
75
71
  /* @__PURE__ */ import_react.default.createElement(
76
72
  import_antd.Select,
77
73
  {
74
+ open,
75
+ onDropdownVisibleChange: setOpen,
78
76
  onClick: (e) => e.stopPropagation(),
79
77
  mode: holderMode,
80
78
  size: "large",
@@ -84,7 +82,7 @@ var SelectHolder = ({
84
82
  value: selectedValue,
85
83
  placeholder: import_utils.locales.getText(
86
84
  "pisell2.product.card.add.holder.placeholder"
87
- )(""),
85
+ )(addHolderButtonText),
88
86
  onChange: (val) => {
89
87
  setSelectedValue(val);
90
88
  const item = lists.find((d) => d.id === val);
@@ -74,7 +74,6 @@ var ProductCard = (props) => {
74
74
  const useOpenNoteRef = (0, import_react.useRef)();
75
75
  const locale = ((_a = utils == null ? void 0 : utils.storage) == null ? void 0 : _a.get("umi_locale")) || localStorage.getItem("umi_locale");
76
76
  import_utils.locales.init(import_locales.default, locale || "en");
77
- console.log(dataSource, isShowImage, isShowNote, "dataSource");
78
77
  const {
79
78
  image,
80
79
  bundle,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisell/materials",
3
- "version": "3.3.6",
3
+ "version": "3.3.7",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./es/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -71,9 +71,9 @@
71
71
  "swiper": "^8.4.7",
72
72
  "react-barcode": "^1.5.3",
73
73
  "vod-js-sdk-v6": "^1.4.11",
74
- "@pisell/icon": "0.0.11",
74
+ "@pisell/date-picker": "3.0.2",
75
75
  "@pisell/utils": "1.0.42",
76
- "@pisell/date-picker": "3.0.2"
76
+ "@pisell/icon": "0.0.11"
77
77
  },
78
78
  "peerDependencies": {
79
79
  "react": "^18.0.0",
@@ -1,36 +0,0 @@
1
- import React from 'react';
2
- import { PisellContextType } from '../pisell-config-provider/context';
3
- import './index.less';
4
- export interface PisellCheckboxGroupOption {
5
- label: string;
6
- value: string;
7
- disabled?: boolean;
8
- [key: string]: any;
9
- }
10
- declare type PisellCheckboxGroupValue = string | string[] | any;
11
- export interface PisellCheckboxGroupProps extends React.HTMLAttributes<HTMLDivElement> {
12
- platform?: PisellContextType['platform'];
13
- direction?: 'horizontal' | 'vertical';
14
- fullWidth?: boolean;
15
- gap?: number;
16
- padding?: number;
17
- options: PisellCheckboxGroupOption[];
18
- onChange?: (value: PisellCheckboxGroupValue, item: PisellCheckboxGroupOption) => void;
19
- value?: PisellCheckboxGroupValue;
20
- renderOption?: (option: PisellCheckboxGroupOption, active: boolean, index: number) => React.ReactNode;
21
- rowKey?: string;
22
- mode?: 'multiple' | 'single';
23
- iconPosition?: 'left' | 'right' | 'hide';
24
- optionClassName?: string;
25
- optionActiveClassName?: string;
26
- }
27
- /**
28
- * @title: PisellCheckboxGroup
29
- * @description: 选中组件
30
- * @param {PisellCheckboxGroupProps} props
31
- * @return {*}
32
- * @Author: zhiwei.Wang
33
- * @Date: 2024-08-16 10:34
34
- */
35
- declare const PisellCheckboxGroup: (props: PisellCheckboxGroupProps) => JSX.Element;
36
- export default PisellCheckboxGroup;
@@ -1,4 +0,0 @@
1
- export declare const useNativeScanner: (onChange?: ((val: string) => void) | undefined) => {
2
- activeNativeScanner: () => void;
3
- isTerminal: any;
4
- };
@@ -1,33 +0,0 @@
1
- import React from 'react';
2
- import { PisellContextType } from '../pisell-config-provider/context';
3
- import './index.less';
4
- export declare type EntryModeType = {
5
- /**
6
- * 录入模式名称
7
- * scanCode: 扫码录入
8
- * input: 手动录入
9
- * scanner: 扫码枪录入
10
- * nfc: NFC录入
11
- */
12
- type: 'scanCode' | 'input' | 'scanner' | 'nfc';
13
- /**
14
- * 录入模式文案 没有使用默认文案
15
- */
16
- name?: string;
17
- };
18
- export interface PisellInformationEntryProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title' | 'onChange'> {
19
- /** 平台 */
20
- platform?: PisellContextType['platform'];
21
- /** 录入模式 */
22
- entryModes: EntryModeType[];
23
- /** 标题文案 */
24
- title?: React.ReactNode;
25
- /** 搜索框描述文案 */
26
- searchDescribe?: React.ReactNode;
27
- /** 录入信息值改变 */
28
- onChange?: (val: string) => void;
29
- /** 录入类型切换时候触发的 */
30
- onChangeType?: (val: null | EntryModeType['type']) => void;
31
- }
32
- declare const PisellInformationEntry: (props: PisellInformationEntryProps) => JSX.Element;
33
- export default PisellInformationEntry;
@@ -1,273 +0,0 @@
1
- declare const _default: {
2
- "table-filter-search": string;
3
- "table-filter-clear": string;
4
- "table-filter-filter": string;
5
- "table-filter-min": string;
6
- "table-filter-max": string;
7
- "table-pagination-previous": string;
8
- "table-pagination-next": string;
9
- "table-pagination-total": (current: string, total: string) => string;
10
- "select-dropdown-render-select-all": string;
11
- "select-dropdown-render-search": string;
12
- "sort-button-text": string;
13
- "sort-oldest-to-newest": string;
14
- "sort-newest-to-oldest": string;
15
- "sort-a-z": string;
16
- "sort-z-a": string;
17
- "sort-from-morning-to-night": string;
18
- "sort-from-evening-to-morning": string;
19
- "sort-0-9": string;
20
- "sort-9-0": string;
21
- "table-action-filter-button": string;
22
- "table-action-filter-quick-filter": string;
23
- "table-action-filter-quick-filter-tip": (count: number) => string;
24
- "table-action-filter-other-filter": string;
25
- "table-action-filter-other-filter-tip": () => string;
26
- "table-action-group-by-title": string;
27
- "table-action-group-by-title-tip": string;
28
- "table-action-column-title": string;
29
- "table-column-group-records": string;
30
- "table-column-group-lock-tip": string;
31
- "table-column-drag-sort-disabled-tip": string;
32
- "table-action-filter-no-filter": string;
33
- "table-action-range-picker-presets-today": string;
34
- "table-action-range-picker-presets-yesterday": string;
35
- "table-action-range-picker-presets-last-3-day": string;
36
- "table-action-range-picker-presets-last-7-day": string;
37
- "table-action-range-picker-presets-last-14-day": string;
38
- "table-action-range-picker-presets-last-30-day": string;
39
- "table-action-range-picker-presets-last-90-day": string;
40
- "virtual-keyboard-time-now": string;
41
- "virtual-keyboard-time-ok": string;
42
- 'batch-editor-batch-edit': string;
43
- 'batch-editor-actions': string;
44
- 'batch-editor-remove': string;
45
- 'batch-editor-price': string;
46
- 'batch-editor-cancel': string;
47
- 'batch-editor-search': string;
48
- 'batch-editor-confirm': string;
49
- 'batch-editor-batch-remove': string;
50
- 'batch-editor-quick-edit': string;
51
- 'batch-editor-what-price': string;
52
- 'batch-editor-quick-edit-title': (product: string, num: string) => string;
53
- 'batch-editor-quick-edit-title-2': (product: string) => string;
54
- 'table-action-export-import-export-success': string;
55
- 'table-action-export-import-button': string;
56
- 'table-action-export-import-export-range': string;
57
- 'table-action-export-import-current-page': string;
58
- 'table-action-export-import-all-records': string;
59
- 'table-action-export-import-selected-records': string;
60
- 'table-action-export-import-selected': string;
61
- 'table-action-export-import-item': (length: number) => string;
62
- 'table-action-export-import-product': string;
63
- 'table-action-export-import-table-text-input-title': string;
64
- 'table-action-export-import-table-text-input-describe': string;
65
- 'table-action-export-import-table-error-file': string;
66
- 'table-action-export-import-import-success': string;
67
- 'table-action-export-import-import-phone': string;
68
- 'table-action-export-import-table-success-download': string;
69
- 'table-action-export-import-table-textimport-product': string;
70
- 'table-action-export-import-table-text-product-template': string;
71
- 'table-action-export-import-table-text-click-download': string;
72
- 'table-action-export-import-table-text-edit-file': string;
73
- 'table-action-export-import-button-import': string;
74
- 'table-action-export-import-cancel': string;
75
- 'table-action-export-import-file-completed': string;
76
- 'table-action-export-import-file-processing': string;
77
- 'table-action-export-import-file-pending': string;
78
- 'table-action-export-import-file-refresh': string;
79
- 'table-action-export-import-export-title': string;
80
- 'table-action-export-import-file-hint': string;
81
- 'table-action-export-import-file-name': string;
82
- 'table-action-export-import-file-content': string;
83
- 'table-action-export-import-file-content-all': string;
84
- 'table-action-export-import-file-content-part': string;
85
- 'table-action-export-import-file-status': string;
86
- 'table-action-export-import-file-account': string;
87
- 'table-action-export-import-file-created': string;
88
- 'table-action-export-import-file-record': (length: number) => string;
89
- 'table-action-export-import-import-title': string;
90
- 'table-action-export-import-log-hint': string;
91
- 'table-action-export-import-log-name': string;
92
- 'table-action-export-import-log-result': string;
93
- 'table-action-export-import-log-ok': (num: number) => string;
94
- 'table-action-export-import-log-err': (num: number) => string;
95
- 'table-action-export-import-log-check': string;
96
- 'table-action-export-import-log-detail-title': string;
97
- 'table-action-export-import-log-err-log': string;
98
- 'table-action-export-import-log-copy': string;
99
- 'table-action-export-import-table-success-copy': string;
100
- 'drag-sort-tree-unavailable-today-tip': string;
101
- 'date-picker-today': string;
102
- 'date-picker-yesterday': string;
103
- 'date-picker-tomorrow': string;
104
- 'date-picker-next_monday': string;
105
- 'date-picker-last_friday': string;
106
- 'date-picker-first_day_of_this_month': string;
107
- 'date-picker-last_day_of_this_month': string;
108
- 'date-picker-first_day_of_next_month': string;
109
- 'date-picker-last_day_of_last_month': string;
110
- 'date-picker-invalid-date': string;
111
- "date-picker-apply": string;
112
- 'date-picker-shortcut-custom': string;
113
- 'pisell-input-copy-success': string;
114
- 'pisell-input-copy': string;
115
- 'pisell-empty-description-no-data': string;
116
- 'pisell-information-entry-input-search': string;
117
- 'pisell-information-entry-input-confirm': string;
118
- 'pisell-information-entry-scan-exit': string;
119
- 'pisell-wallet-pass-card-detail': string;
120
- 'pisell-wallet-pass-card-edit': string;
121
- 'pisell-wallet-pass-card-name': string;
122
- 'pisell-wallet-pass-card-store-name': string;
123
- 'pisell-wallet-pass-card-balance': string;
124
- 'pisell-wallet-pass-card-redeem': string;
125
- 'pisell-wallet-pass-card-code': string;
126
- 'pisell-wallet-pass-card-valid-to': string;
127
- 'pisell-wallet-pass-card-confirm': string;
128
- 'pisell-wallet-pass-card-cancel': string;
129
- 'pisell-wallet-pass-card-required': string;
130
- 'pisell-wallet-pass-card-expireDate': string;
131
- 'pisell-adjust-price-price-override': string;
132
- 'pisell-adjust-price-discount': string;
133
- 'pisell-adjust-price-discount-amount': string;
134
- 'pisell-adjust-price-discount-percentage': string;
135
- 'pisell-adjust-price-total-after-discount': string;
136
- 'pisell-adjust-price-discount-can-be-maximum': string;
137
- 'pisell-discount-card-title': string;
138
- 'pisell-discount-card-unit': string;
139
- 'pisell-data-source-table-add': string;
140
- 'pisell-data-source-table-edit': string;
141
- 'pisell-data-source-table-detail': string;
142
- 'pisell-data-source-table-delete': string;
143
- 'pisell-record-view-available': string;
144
- 'pisell-record-view-unavailable': string;
145
- 'pisell-data-source-form-required-message': string;
146
- 'pisell-data-source-form-email-message': string;
147
- 'pisell-data-source-form-domain-message': string;
148
- 'pisell-data-source-form-url-message': string;
149
- 'pisell-data-source-form-phone-message': string;
150
- 'pisell-data-source-form-min-length-message': (minLength: number) => string;
151
- 'pisell-data-source-form-max-length-message': (maxLength: number) => string;
152
- 'pisell-data-source-form-min-value-message': (minValue: number) => string;
153
- 'pisell-data-source-form-max-value-message': (maxValue: number) => string;
154
- 'pisell-data-source-form-mobile-message': string;
155
- 'pisell-data-source-form-pattern-message': string;
156
- 'pisell-number-format-thousand': string;
157
- 'pisell-number-format-million': string;
158
- 'pisell-number-format-billion': string;
159
- 'walletCard-done': string;
160
- 'walletCard-qrcode': string;
161
- 'walletCard-barcode': string;
162
- 'pisell-upload-button': string;
163
- 'pisell-upload-setting-size-error': (maxSize: number) => string;
164
- 'pisell-upload-setting-type-error': (type: string) => string;
165
- 'pisell-upload-count-error': (count: number) => string;
166
- 'pisell-upload-error': (name: string) => string;
167
- 'pisell-upload-multilingual-title': string;
168
- 'pisell-upload-multilingual-item-title-original': string;
169
- 'pisell-upload-multilingual-item-title-en': string;
170
- 'pisell-upload-multilingual-item-title-zh-CN': string;
171
- 'pisell-upload-multilingual-item-title-zh-HK': string;
172
- 'pisell-color-picker-default': string;
173
- 'pisell-action-get-data': string;
174
- 'pisell-action-delete-success': string;
175
- 'pisell-action-delete-failed': string;
176
- 'walletCard-piont': string;
177
- 'walletCard-rechargeable': string;
178
- 'walletCard-voucher': string;
179
- 'walletCard-discount': string;
180
- 'pisellQrcode-done': string;
181
- 'pisellQrcode-qrcode': string;
182
- 'pisell-delete-confirm-title': string;
183
- 'pisell-delete-confirm-content': string;
184
- 'pisell-delete-confirm-ok': string;
185
- 'pisell-delete-confirm-cancel': string;
186
- 'pisell-design-mode-action-disabled': string;
187
- 'pisell-translation-original': string;
188
- 'pisell-version-modal-title': string;
189
- 'pisell-version-modal-current-version': string;
190
- 'pisell-version-modal-version': string;
191
- 'pisell-version-modal-update-notes': string;
192
- 'pisell-version-modal-patch': string;
193
- 'pisell-version-modal-minor': string;
194
- 'pisell-version-modal-major': string;
195
- 'pisell-version-modal-custom': string;
196
- 'pisell-version-modal-cancel': string;
197
- 'pisell-version-modal-confirm': string;
198
- 'pisell-version-modal-describe-update-notes': string;
199
- 'pisell-version-modal-version-error': string;
200
- 'pisell-version-modal-version-required': string;
201
- 'pisell-version-modal-based-on-version': string;
202
- 'subdomain-error-too-short': string;
203
- 'subdomain-error-too-long': string;
204
- 'subdomain-error-pattern': string;
205
- 'subdomain-error-numbers-only': string;
206
- 'subdomain-error-hyphen-ends': string;
207
- 'subdomain-error-consecutive-hyphens': string;
208
- 'subdomain-error-required': string;
209
- 'pisell-icon-select-outlined': string;
210
- 'pisell-icon-select-filled': string;
211
- 'pisell-icon-select-two-tone': string;
212
- 'pisell-icon-select-iconfont': string;
213
- 'pisell-icon-select-search': string;
214
- 'pisell-icon-select-select': string;
215
- 'pisell-lowcode-app-version-control-live': string;
216
- 'pisell-lowcode-app-version-control-draft': string;
217
- 'pisell-lowcode-app-version-control-deprecated': string;
218
- 'pisell-lowcode-app-version-control-new-version': string;
219
- 'pisell-lowcode-app-version-control-promote-to-live': string;
220
- 'pisell-lowcode-app-version-control-promote-version': (version: string) => string;
221
- 'pisell-lowcode-app-version-control-promote-version-describe': string;
222
- 'pisell-lowcode-app-version-control-promote-version-ok': string;
223
- 'pisell-lowcode-app-version-control-promote-version-cancel': string;
224
- 'pisell-lowcode-app-version-control-version-exists': string;
225
- 'pisell-lowcode-drop-sort-add': string;
226
- 'pisell-lowcode-navigation-menu-add-sub-menu': string;
227
- 'pisell-lowcode-navigation-menu-add-page': string;
228
- 'pisell-lowcode-navigation-menu-add-page-tip': string;
229
- 'pisell-lowcode-navigation-menu-tag-base': string;
230
- 'pisell-lowcode-navigation-menu-tag-pisell1': string;
231
- 'pisell-data-source-form-app-identifier-pattern': string;
232
- 'pisell-data-source-form-app-identifier-start-with-letter': string;
233
- 'pisell-group-permissions-rule-required': string;
234
- 'pisell-group-permissions-rule-limit': string;
235
- 'pisell-data-source-form-app-identifier-letters-only': string;
236
- 'pisell-data-source-form-app-identifier-alphanumeric': string;
237
- 'pisell-data-source-form-app-identifier-special-ends': string;
238
- 'pisell-data-source-form-app-identifier-consecutive-special': string;
239
- "qrscanner-loading": string;
240
- "qrscanner-success": string;
241
- "qrscanner-success-qrcode": string;
242
- "qrscanner-success-barcode": string;
243
- "qrscanner-error-upload-image": string;
244
- "qrscanner-error-load-failed": string;
245
- "qrscanner-error-no-code": string;
246
- "qrscanner-error-camera-init": string;
247
- "qrscanner-error-process-image": string;
248
- 'pisell-login-and-register-title': string;
249
- 'pisell-login-and-register-subtitle': string;
250
- 'pisell-login-and-register-email-label': string;
251
- 'pisell-login-and-register-email-placeholder': string;
252
- 'pisell-login-and-register-password-label': string;
253
- 'pisell-login-and-register-password-placeholder': string;
254
- 'pisell-login-and-register-email-error': string;
255
- 'pisell-login-and-register-email-error-valid': string;
256
- 'pisell-login-and-register-password-error': string;
257
- 'pisell-login-and-register-login': string;
258
- 'pisell-login-and-register-google': string;
259
- 'pisell-login-and-register-facebook': string;
260
- 'pisell-login-and-register-apple': string;
261
- 'pisell-login-and-register-sign-up': string;
262
- 'pisell-login-and-register-login-tab': string;
263
- 'pisell-login-and-register-register-tab': string;
264
- 'pisell-login-and-register-register-email-placeholder': string;
265
- 'pisell-login-and-register-register-password-placeholder': string;
266
- 'pisell-login-and-register-register-button-text': string;
267
- 'pisell-login-and-register-remember-me': string;
268
- 'pisell-login-and-register-forgot-password': string;
269
- 'pisell2.text.goodpass.product-vouchers': string;
270
- 'pisell2.text.goodpass.view-more': string;
271
- 'pisell2.text.goodpass.save': string;
272
- };
273
- export default _default;