@redneckz/wildless-cms-uni-blocks 0.14.1053 → 0.14.1055

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.
@@ -3830,7 +3830,8 @@
3830
3830
  ...externalInputs,
3831
3831
  };
3832
3832
  const Component = fieldsRegister[String(input.name)];
3833
- return shouldRenderField({ input, field }) && Component ? (jsx(RefWrapper, { onFieldRef: field(input.name ?? '').setFieldRef, children: jsx(Component, { field: field, input: { ...input, disabled: params?.disabled }, params: params }) }, String(i))) : null;
3833
+ const disabled = params?.disabled ? { disabled: true } : {};
3834
+ return shouldRenderField({ input, field }) && Component ? (jsx(RefWrapper, { onFieldRef: field(input.name ?? '').setFieldRef, children: jsx(Component, { field: field, input: { ...input, ...disabled }, params: params }) }, String(i))) : null;
3834
3835
  };
3835
3836
 
3836
3837
  const inputColumnStyles = (column) => column === 2 ? '@xl:grid-cols-2 gap-x-m' : '@xl:grid-cols-1 gap-x-0';
@@ -12147,7 +12148,7 @@
12147
12148
 
12148
12149
  const DboClientStatusContent = JSX(() => {
12149
12150
  const { leadForm } = useRetailFormStore();
12150
- 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: [
12151
+ 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: [
12151
12152
  {
12152
12153
  label: 'Фамилия',
12153
12154
  description: leadForm?.surname,
@@ -14792,7 +14793,7 @@
14792
14793
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
14793
14794
  });
14794
14795
 
14795
- const packageVersion = "0.14.1052";
14796
+ const packageVersion = "0.14.1054";
14796
14797
 
14797
14798
  exports.Blocks = Blocks;
14798
14799
  exports.ContentPage = ContentPage;