@redneckz/wildless-cms-uni-blocks 0.14.769 → 0.14.770

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.
@@ -2369,7 +2369,7 @@
2369
2369
  'backdrop-blur': blur,
2370
2370
  }), children: jsx("div", { className: style('inline-block', 'animate-spin rounded-full', 'border-solid border-current', 'border-r-transparent', size === 'small' ? 'border-4 h-8 w-8' : 'border-8 h-28 w-28', color), role: "status" }) })));
2371
2371
 
2372
- const SubmitButton = JSX(({ isLoading, disabled, children, ...rest }) => (jsxs(Button, { type: "submit", disabled: isLoading || disabled, ...rest, children: [isLoading ? jsx(Loader, { blur: true, size: "small" }) : null, children] })));
2372
+ const SubmitButton = JSX(({ isLoading, disabled, children, className, ...rest }) => (jsxs(Button, { type: "submit", className: style('relative', className), disabled: isLoading || disabled, ...rest, children: [isLoading ? jsx(Loader, { blur: true, size: "small" }) : null, children] })));
2373
2373
 
2374
2374
  const themeStyle = {
2375
2375
  primary: themeStyle$1.primary,
@@ -7009,7 +7009,7 @@
7009
7009
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
7010
7010
  });
7011
7011
 
7012
- const packageVersion = "0.14.768";
7012
+ const packageVersion = "0.14.769";
7013
7013
 
7014
7014
  exports.Blocks = Blocks;
7015
7015
  exports.ContentPage = ContentPage;