@redneckz/wildless-cms-uni-blocks 0.14.1050 → 0.14.1052
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 +3 -3
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/DebitForm/DboClientStatusContent.js +1 -1
- package/dist/components/DebitForm/DboClientStatusContent.js.map +1 -1
- package/dist/components/DebitForm/DebitFormStatus.js +1 -1
- package/dist/components/DebitForm/DebitFormStatus.js.map +1 -1
- package/lib/components/DebitForm/DboClientStatusContent.js +1 -1
- package/lib/components/DebitForm/DboClientStatusContent.js.map +1 -1
- package/lib/components/DebitForm/DebitFormStatus.js +1 -1
- package/lib/components/DebitForm/DebitFormStatus.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -3
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/DebitForm/DboClientStatusContent.js +1 -1
- package/mobile/dist/components/DebitForm/DboClientStatusContent.js.map +1 -1
- package/mobile/dist/components/DebitForm/DebitFormStatus.js +1 -1
- package/mobile/dist/components/DebitForm/DebitFormStatus.js.map +1 -1
- package/mobile/lib/components/DebitForm/DboClientStatusContent.js +1 -1
- package/mobile/lib/components/DebitForm/DboClientStatusContent.js.map +1 -1
- package/mobile/lib/components/DebitForm/DebitFormStatus.js +1 -1
- package/mobile/lib/components/DebitForm/DebitFormStatus.js.map +1 -1
- package/mobile/src/components/DebitForm/DboClientStatusContent.tsx +1 -1
- package/mobile/src/components/DebitForm/DebitFormStatus.tsx +2 -2
- package/package.json +1 -1
- package/src/components/DebitForm/DboClientStatusContent.tsx +1 -1
- package/src/components/DebitForm/DebitFormStatus.tsx +2 -2
- package/src/icons/IconName.ts +4 -4
package/bundle/bundle.umd.js
CHANGED
|
@@ -12127,7 +12127,7 @@
|
|
|
12127
12127
|
window.location.href = url;
|
|
12128
12128
|
};
|
|
12129
12129
|
const DebitFormStatus = JSX(({ title, description: dsc, sectionInfo, buttonText, isDboClient, isOffice, ...props }) => {
|
|
12130
|
-
return (jsxs(BlockWrapper, { ...props, children: [jsx("div", { className: "flex flex-col md:flex-row items-center", children: jsx(Headline, { headlineVersion: "M", title: title, description: dsc, align: "text-left", padding: "p-xl", className: "w-full" }) }), jsx(SectionInfo, { items: sectionInfo }), isOffice ? (jsxs("div", { className: "flex flex-col md:flex-row md:gap-lg", children: [jsx(Button, { onClick: () => openLink(PRELOGIN_LINK), className: "w-full mt-lg", version: "primary", children: "\u0423\u0437\u043D\u0430\u0442\u044C \u0441\u0442\u0430\u0442\u0443\u0441 \u0437\u0430\u044F\u0432\u043A\u0438" }), jsx(LinkButton, { href: "/natural", text: "\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0443\u044E", version: "primary", className: "w-full mt-lg" })] })) : null, !isOffice && buttonText ? (jsx(LinkButton, { href: "/natural", text: buttonText, version: "primary", className: "w-full mt-lg" })) : null, isDboClient ? (jsxs("div", { className: "flex flex-col md:flex-row md:gap-lg", children: [jsx(LinkButton, { href: "/natural/debetcards", text: "\u0417\u0430\
|
|
12130
|
+
return (jsxs(BlockWrapper, { ...props, children: [jsx("div", { className: "flex flex-col md:flex-row items-center", children: jsx(Headline, { headlineVersion: "M", title: title, description: dsc, align: "text-left", padding: "p-xl", className: "w-full" }) }), jsx(SectionInfo, { items: sectionInfo }), isOffice ? (jsxs("div", { className: "flex flex-col md:flex-row md:gap-lg", children: [jsx(Button, { onClick: () => openLink(PRELOGIN_LINK), className: "w-full mt-lg", version: "primary", children: "\u0423\u0437\u043D\u0430\u0442\u044C \u0441\u0442\u0430\u0442\u0443\u0441 \u0437\u0430\u044F\u0432\u043A\u0438" }), jsx(LinkButton, { href: "/natural", text: "\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0443\u044E", version: "primary", className: "w-full mt-lg" })] })) : null, !isOffice && buttonText ? (jsx(LinkButton, { href: "/natural", text: buttonText, version: "primary", className: "w-full mt-lg" })) : null, isDboClient ? (jsxs("div", { className: "flex flex-col md:flex-row md:gap-lg", children: [jsx(LinkButton, { href: "/natural/debetcards#form", text: "\u0417\u0430\u043A\u0430\u0437\u0430\u0442\u044C \u0437\u0432\u043E\u043D\u043E\u043A", version: "primary", className: "w-full mt-lg" }), jsx(LinkButton, { href: INTERNET_BANK_LINK, text: "\u0412\u044B\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043A\u0430\u0440\u0442\u0443 \u0432 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0438", version: "primary", className: "w-full mt-lg" })] })) : null] }));
|
|
12131
12131
|
});
|
|
12132
12132
|
const SectionInfo = ({ title, items, }) => {
|
|
12133
12133
|
if (!items) {
|
|
@@ -12139,7 +12139,7 @@
|
|
|
12139
12139
|
|
|
12140
12140
|
const DboClientStatusContent = JSX(() => {
|
|
12141
12141
|
const { leadForm } = useRetailFormStore();
|
|
12142
|
-
return (jsx(DebitFormStatus, { title: `${leadForm?.name} ${leadForm?.middleName},`, description: "\
|
|
12142
|
+
return (jsx(DebitFormStatus, { title: `${leadForm?.name} ${leadForm?.middleName},`, description: "\u0412\u0430\u043C \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u043E\u0444\u043E\u0440\u043C\u043B\u0435\u043D\u0438\u0435 \u0437\u0430\u044F\u0432\u043A\u0438 \u0432 \u043C\u043E\u0431\u0438\u043B\u044C\u043D\u043E\u043C \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0438 \u0431\u0430\u043D\u043A\u0430 \u043B\u0438\u0431\u043E \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043E\u0431\u0440\u0430\u0442\u0438\u0442\u044C\u0441\u044F \u0437\u0430 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0432 \u043A\u043E\u043D\u0442\u0430\u043A\u0442-\u0446\u0435\u043D\u0442\u0440 \u0411\u0430\u043D\u043A\u0430 \u043F\u043E \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443 8 800 100-0-100", sectionInfo: [
|
|
12143
12143
|
{
|
|
12144
12144
|
label: 'Фамилия',
|
|
12145
12145
|
description: leadForm?.surname,
|
|
@@ -14784,7 +14784,7 @@
|
|
|
14784
14784
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
14785
14785
|
});
|
|
14786
14786
|
|
|
14787
|
-
const packageVersion = "0.14.
|
|
14787
|
+
const packageVersion = "0.14.1051";
|
|
14788
14788
|
|
|
14789
14789
|
exports.Blocks = Blocks;
|
|
14790
14790
|
exports.ContentPage = ContentPage;
|