@fluidattacks/design 1.2.3 → 1.2.4

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.
Files changed (42) hide show
  1. package/dist/design.js +2 -2
  2. package/dist/design.js.map +1 -1
  3. package/dist/design.mjs +11 -11
  4. package/dist/design.mjs.map +1 -1
  5. package/dist/src/components/@core/constants.d.ts +1 -0
  6. package/dist/src/components/@core/constants.d.ts.map +1 -0
  7. package/dist/src/components/@core/index.d.ts +1 -0
  8. package/dist/src/components/@core/index.d.ts.map +1 -0
  9. package/dist/src/components/@core/styles.d.ts +1 -0
  10. package/dist/src/components/@core/styles.d.ts.map +1 -0
  11. package/dist/src/components/@core/types.d.ts +1 -0
  12. package/dist/src/components/@core/types.d.ts.map +1 -0
  13. package/dist/src/components/@core/utils.d.ts +1 -0
  14. package/dist/src/components/@core/utils.d.ts.map +1 -0
  15. package/dist/src/components/@core/variants/utils.d.ts +1 -0
  16. package/dist/src/components/@core/variants/utils.d.ts.map +1 -0
  17. package/dist/src/components/cloud-image/index.d.ts +3 -9
  18. package/dist/src/components/cloud-image/index.d.ts.map +1 -0
  19. package/dist/src/components/cloud-image/types.d.ts +18 -0
  20. package/dist/src/components/cloud-image/types.d.ts.map +1 -0
  21. package/dist/src/components/colors/index.d.ts +1 -0
  22. package/dist/src/components/colors/index.d.ts.map +1 -0
  23. package/dist/src/components/container/index.d.ts +3 -1
  24. package/dist/src/components/container/index.d.ts.map +1 -0
  25. package/dist/src/components/container/styles.d.ts +1 -0
  26. package/dist/src/components/container/styles.d.ts.map +1 -0
  27. package/dist/src/components/container/types.d.ts +12 -3
  28. package/dist/src/components/container/types.d.ts.map +1 -0
  29. package/dist/src/components/logo/index.d.ts +2 -1
  30. package/dist/src/components/logo/index.d.ts.map +1 -0
  31. package/dist/src/components/logo/types.d.ts +8 -2
  32. package/dist/src/components/logo/types.d.ts.map +1 -0
  33. package/dist/src/hooks/index.d.ts +1 -0
  34. package/dist/src/hooks/index.d.ts.map +1 -0
  35. package/dist/src/hooks/use-cloudinary-image.d.ts +6 -0
  36. package/dist/src/hooks/use-cloudinary-image.d.ts.map +1 -0
  37. package/dist/src/index.d.ts +1 -0
  38. package/dist/src/index.d.ts.map +1 -0
  39. package/dist/vite.config.d.ts +1 -0
  40. package/dist/vite.config.d.ts.map +1 -0
  41. package/package.json +2 -2
  42. package/dist/eslint.config.d.mts +0 -2
package/dist/design.mjs CHANGED
@@ -6787,21 +6787,21 @@ const Uf = ({
6787
6787
  }), []);
6788
6788
  return Mn(() => r.image(t).format(e), [r, t, e]);
6789
6789
  }, Bf = ({
6790
- alt: t,
6791
- height: e,
6792
- publicId: r,
6793
- width: n,
6794
- plugins: o = [dl(), ml()]
6790
+ alt: t = "img",
6791
+ height: e = "",
6792
+ width: r = "",
6793
+ plugins: n = [dl(), ml()],
6794
+ publicId: o
6795
6795
  }) => {
6796
- const a = Uf({ publicId: r });
6796
+ const a = Uf({ publicId: o });
6797
6797
  return /* @__PURE__ */ Er.jsx(
6798
6798
  ql,
6799
6799
  {
6800
- alt: t ?? "img",
6800
+ alt: t,
6801
6801
  cldImg: a,
6802
- height: e ?? "",
6803
- plugins: o,
6804
- width: n ?? ""
6802
+ height: e,
6803
+ plugins: n,
6804
+ width: r
6805
6805
  }
6806
6806
  );
6807
6807
  }, zf = nt.memo(Bf), qf = so(Rc)`
@@ -6834,7 +6834,7 @@ const Uf = ({
6834
6834
  footer: { height: "57px", width: "315px" },
6835
6835
  header: { height: "35px", width: "160px" },
6836
6836
  icon: { height: "40px", width: "40px" }
6837
- }, fd = ({ src: t, variant: e }) => /* @__PURE__ */ Er.jsx(Gf, { ...Yf[e], children: /* @__PURE__ */ Er.jsx(zf, { alt: "logo", publicId: t }) });
6837
+ }, fd = ({ publicId: t, variant: e }) => /* @__PURE__ */ Er.jsx(Gf, { ...Yf[e], children: /* @__PURE__ */ Er.jsx(zf, { alt: "logo", publicId: t }) });
6838
6838
  export {
6839
6839
  Rc as BaseComponent,
6840
6840
  zf as CloudImage,