@redneckz/wildless-cms-uni-blocks 0.14.924 → 0.14.926
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/bundle/bundle.umd.js +6 -6
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/DebitForm/DebitFormStepsData.js +1 -1
- package/dist/components/DebitForm/DebitFormStepsData.js.map +1 -1
- package/dist/retail/components/ConsentBkiDialog/ConsentBkiDialog.js +1 -1
- package/dist/retail/components/ConsentBkiDialog/ConsentBkiDialog.js.map +1 -1
- package/dist/retail/components/Fields/LatinNameField.js +1 -1
- package/dist/retail/components/Fields/LatinSurnameField.js +1 -1
- package/dist/retail/hooks/useReferalProgramm.js +1 -1
- package/dist/retail/hooks/useReferalProgramm.js.map +1 -1
- package/lib/components/DebitForm/DebitFormStepsData.js +1 -1
- package/lib/components/DebitForm/DebitFormStepsData.js.map +1 -1
- package/lib/retail/components/ConsentBkiDialog/ConsentBkiDialog.js +1 -1
- package/lib/retail/components/ConsentBkiDialog/ConsentBkiDialog.js.map +1 -1
- package/lib/retail/components/Fields/LatinNameField.js +1 -1
- package/lib/retail/components/Fields/LatinSurnameField.js +1 -1
- package/lib/retail/hooks/useReferalProgramm.js +1 -1
- package/lib/retail/hooks/useReferalProgramm.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +6 -6
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/DebitForm/DebitFormStepsData.js +1 -1
- package/mobile/dist/components/DebitForm/DebitFormStepsData.js.map +1 -1
- package/mobile/dist/retail/components/ConsentBkiDialog/ConsentBkiDialog.js +1 -1
- package/mobile/dist/retail/components/ConsentBkiDialog/ConsentBkiDialog.js.map +1 -1
- package/mobile/dist/retail/components/Fields/LatinNameField.js +1 -1
- package/mobile/dist/retail/components/Fields/LatinSurnameField.js +1 -1
- package/mobile/dist/retail/hooks/useReferalProgramm.js +1 -1
- package/mobile/dist/retail/hooks/useReferalProgramm.js.map +1 -1
- package/mobile/lib/components/DebitForm/DebitFormStepsData.js +1 -1
- package/mobile/lib/components/DebitForm/DebitFormStepsData.js.map +1 -1
- package/mobile/lib/retail/components/ConsentBkiDialog/ConsentBkiDialog.js +1 -1
- package/mobile/lib/retail/components/ConsentBkiDialog/ConsentBkiDialog.js.map +1 -1
- package/mobile/lib/retail/components/Fields/LatinNameField.js +1 -1
- package/mobile/lib/retail/components/Fields/LatinSurnameField.js +1 -1
- package/mobile/lib/retail/hooks/useReferalProgramm.js +1 -1
- package/mobile/lib/retail/hooks/useReferalProgramm.js.map +1 -1
- package/mobile/src/components/DebitForm/DebitFormStepsData.tsx +1 -1
- package/mobile/src/retail/components/ConsentBkiDialog/ConsentBkiDialog.tsx +1 -1
- package/mobile/src/retail/components/Fields/LatinNameField.tsx +1 -1
- package/mobile/src/retail/components/Fields/LatinSurnameField.tsx +1 -1
- package/mobile/src/retail/hooks/useReferalProgramm.ts +1 -1
- package/package.json +1 -1
- package/src/components/DebitForm/DebitFormStepsData.tsx +1 -1
- package/src/retail/components/ConsentBkiDialog/ConsentBkiDialog.tsx +1 -1
- package/src/retail/components/Fields/LatinNameField.tsx +1 -1
- package/src/retail/components/Fields/LatinSurnameField.tsx +1 -1
- package/src/retail/hooks/useReferalProgramm.ts +1 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -5351,7 +5351,7 @@
|
|
|
5351
5351
|
};
|
|
5352
5352
|
const autoTranslateToLatin = (str) => str.replace(/[А-ЯЁа-яё,. -]/g, (_) => REPLACER[_.toLowerCase()].toUpperCase() || '');
|
|
5353
5353
|
|
|
5354
|
-
const MAX_LENGTH$1 =
|
|
5354
|
+
const MAX_LENGTH$1 = 21;
|
|
5355
5355
|
const LatinNameField = JSX(({ field, input }) => {
|
|
5356
5356
|
const latinSurname = field('latinSurname')?.value;
|
|
5357
5357
|
const name = field('name')?.value;
|
|
@@ -5367,7 +5367,7 @@
|
|
|
5367
5367
|
return (jsx(InputControl, { label: "\u0418\u043C\u044F", placeholder: "\u0418\u043C\u044F \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438\u043C\u0438 \u0431\u0443\u043A\u0432\u0430\u043C\u0438", maxLength: Math.max(MAX_LENGTH$1 - latinSurname?.length, 1), ...field(input?.name ?? ''), onChange: onChange, ...input }));
|
|
5368
5368
|
});
|
|
5369
5369
|
|
|
5370
|
-
const MAX_LENGTH =
|
|
5370
|
+
const MAX_LENGTH = 21;
|
|
5371
5371
|
const LatinSurnameField = JSX(({ field, input }) => {
|
|
5372
5372
|
const latinName = field('latinName')?.value;
|
|
5373
5373
|
const surname = field('surname')?.value;
|
|
@@ -5902,7 +5902,7 @@
|
|
|
5902
5902
|
const ConsentBkiDialog = JSX(({ onSubmit = noop, onClose = noop }) => {
|
|
5903
5903
|
const [confirmStatus, setConfirmStatus] = useState('');
|
|
5904
5904
|
const [showRefuseContent, setShowRefuseContent] = useState(false);
|
|
5905
|
-
const openDocument = useDocumentDialog(CONSENT_BKI_ID);
|
|
5905
|
+
const { openDocument } = useDocumentDialog(CONSENT_BKI_ID);
|
|
5906
5906
|
const handleSubmit = useCallback(() => {
|
|
5907
5907
|
onSubmit(confirmStatus);
|
|
5908
5908
|
}, [onSubmit, confirmStatus]);
|
|
@@ -6642,7 +6642,7 @@
|
|
|
6642
6642
|
{
|
|
6643
6643
|
aspectName: 'snowplowEvent',
|
|
6644
6644
|
params: {
|
|
6645
|
-
|
|
6645
|
+
eventAction: 'ownfin_referal_link_attributes',
|
|
6646
6646
|
eventJSON,
|
|
6647
6647
|
},
|
|
6648
6648
|
},
|
|
@@ -10293,7 +10293,7 @@
|
|
|
10293
10293
|
name: 'infoCard',
|
|
10294
10294
|
label:
|
|
10295
10295
|
// eslint-disable-next-line max-len
|
|
10296
|
-
'Количество символов ограничивается
|
|
10296
|
+
'Количество символов ограничивается 21. При этом, если фамилия и имя на карте содержит более 22 символов, то необходимо сократить имя и указывать на карте только первую букву имени и фамилию, если при таком сокращении фамилия и имя не умещается в количество символов – 21, то указывать только фамилию.',
|
|
10297
10297
|
},
|
|
10298
10298
|
],
|
|
10299
10299
|
},
|
|
@@ -12196,7 +12196,7 @@
|
|
|
12196
12196
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
12197
12197
|
});
|
|
12198
12198
|
|
|
12199
|
-
const packageVersion = "0.14.
|
|
12199
|
+
const packageVersion = "0.14.925";
|
|
12200
12200
|
|
|
12201
12201
|
exports.Blocks = Blocks;
|
|
12202
12202
|
exports.ContentPage = ContentPage;
|