@redneckz/wildless-cms-uni-blocks 0.14.512 → 0.14.513
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 +2 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/ui-kit/BaseFiltration/FiltrationForm.js +1 -1
- package/dist/ui-kit/BaseFiltration/FiltrationForm.js.map +1 -1
- package/lib/ui-kit/BaseFiltration/FiltrationForm.js +1 -1
- package/lib/ui-kit/BaseFiltration/FiltrationForm.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +2 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/ui-kit/BaseFiltration/FiltrationForm.js +1 -1
- package/mobile/dist/ui-kit/BaseFiltration/FiltrationForm.js.map +1 -1
- package/mobile/lib/ui-kit/BaseFiltration/FiltrationForm.js +1 -1
- package/mobile/lib/ui-kit/BaseFiltration/FiltrationForm.js.map +1 -1
- package/mobile/src/ui-kit/BaseFiltration/FiltrationForm.tsx +1 -1
- package/package.json +1 -1
- package/src/ui-kit/BaseFiltration/FiltrationForm.tsx +1 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -2349,7 +2349,7 @@
|
|
|
2349
2349
|
return items.map((item) => (jsx(SlideCheckbox, { text: item?.title, value: [value].flatMap((_) => _).includes(item.value), onChange: () => handleChange(item.value), type: multiple ? 'checkbox' : 'radio' }, item.value)));
|
|
2350
2350
|
});
|
|
2351
2351
|
|
|
2352
|
-
const FiltrationForm = JSX(({ children, filtrationSchema, resetButton, field, reset }) => (jsxs("form", { className: "flex flex-col @4xl:flex-row justify-between bg-white p-4xl gap-s @4xl:gap-0", children: [jsxs("div", { className: "flex flex-col @4xl:flex-row gap-xl", children: [children, joinList((jsx("div", { className: "h-full w-px bg-gray" })))(Object.entries(filtrationSchema).map(renderFormItem(field)).filter(Boolean))] }), resetButton ? (jsx("div", { children: jsx(Button, { type: "reset", className: "w-full @4xl:w-56 @4xl:ml-s", onClick: reset, children: resetButton?.text }) })) : null] })));
|
|
2352
|
+
const FiltrationForm = JSX(({ children, filtrationSchema, resetButton, field, reset }) => (jsxs("form", { className: "flex flex-col @4xl:flex-row justify-between bg-white p-4xl gap-s @4xl:gap-0", children: [jsxs("div", { className: "flex flex-col @4xl:flex-row gap-xl", children: [children, joinList((jsx("div", { className: "h-full w-px bg-gray hidden @4xl:block" })))(Object.entries(filtrationSchema).map(renderFormItem(field)).filter(Boolean))] }), resetButton ? (jsx("div", { children: jsx(Button, { type: "reset", className: "w-full @4xl:w-56 @4xl:ml-s", onClick: reset, children: resetButton?.text }) })) : null] })));
|
|
2353
2353
|
const renderFormItem = (field) => ([key, item]) => {
|
|
2354
2354
|
const type = item?.type;
|
|
2355
2355
|
switch (type) {
|
|
@@ -6452,7 +6452,7 @@
|
|
|
6452
6452
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6453
6453
|
});
|
|
6454
6454
|
|
|
6455
|
-
const packageVersion = "0.14.
|
|
6455
|
+
const packageVersion = "0.14.512";
|
|
6456
6456
|
|
|
6457
6457
|
exports.Blocks = Blocks;
|
|
6458
6458
|
exports.ContentPage = ContentPage;
|