@kaio-xyz/design-system 1.1.34 → 1.1.35

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/dist/index.d.ts CHANGED
@@ -138,11 +138,10 @@ type SpinnedIconProps = {
138
138
  declare const SpinnedIcon: ({ size, duration, className, icon: Icon, ...rest }: SpinnedIconProps) => react_jsx_runtime.JSX.Element;
139
139
 
140
140
  type LoaderProps = PropsWithChildren<{
141
- fullPage?: boolean;
142
141
  text?: string;
143
142
  isLightOverlay?: boolean;
144
143
  }>;
145
- declare const Loader: ({ text, fullPage, isLightOverlay, children }: LoaderProps) => react_jsx_runtime.JSX.Element;
144
+ declare const Loader: ({ text, isLightOverlay, children }: LoaderProps) => react_jsx_runtime.JSX.Element;
146
145
 
147
146
  type CheckboxAttributes = Omit<InputHTMLAttributes<HTMLInputElement>, "id" | "size">;
148
147
  type Props = CheckboxAttributes & {
package/dist/index.esm.js CHANGED
@@ -495,8 +495,8 @@ FormSelect.displayName = "FormSelect";
495
495
  var style$j = {"root":"loader-module__root__qnInQ"};
496
496
 
497
497
  var Loader = function (_a) {
498
- var text = _a.text, _b = _a.fullPage, fullPage = _b === void 0 ? true : _b, _c = _a.isLightOverlay, isLightOverlay = _c === void 0 ? false : _c, children = _a.children;
499
- return (jsx("div", { className: style$j.root, "data-full-page": fullPage, "data-is-light-overlay": isLightOverlay, children: jsxs(Stack, { dataAlignItems: "center", children: [jsx(SpinnedIcon, { size: 50 }), text && jsx("p", { children: text }), children] }) }));
498
+ var text = _a.text, _b = _a.isLightOverlay, isLightOverlay = _b === void 0 ? false : _b, children = _a.children;
499
+ return (jsx("div", { className: style$j.root, "data-is-light-overlay": isLightOverlay, children: jsxs(Stack, { dataAlignItems: "center", children: [jsx(SpinnedIcon, { size: 50 }), text && jsx("p", { children: text }), children] }) }));
500
500
  };
501
501
 
502
502
  var style$i = {"root":"checkbox-module__root__W52jD","customCheckbox":"checkbox-module__customCheckbox__LACTE","label":"checkbox-module__label__ujd0G","frame":"checkbox-module__frame__njRTK","icon":"checkbox-module__icon__7kQzK"};