takeat-design-system-ui-kit 1.1.11 → 1.1.12

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 (43) hide show
  1. package/dist/components/Badge/index.d.cts +1 -1
  2. package/dist/components/Badge/index.d.ts +1 -1
  3. package/dist/components/Button/index.d.cts +1 -1
  4. package/dist/components/Button/index.d.ts +1 -1
  5. package/dist/components/CollapsableMenu/index.cjs +10 -2
  6. package/dist/components/CollapsableMenu/index.cjs.map +1 -1
  7. package/dist/components/CollapsableMenu/index.css +2 -2
  8. package/dist/components/CollapsableMenu/index.css.map +1 -1
  9. package/dist/components/CollapsableMenu/index.js +10 -2
  10. package/dist/components/CollapsableMenu/index.js.map +1 -1
  11. package/dist/components/HighlightIcon/index.d.cts +1 -1
  12. package/dist/components/HighlightIcon/index.d.ts +1 -1
  13. package/dist/components/Image/index.cjs +10 -2
  14. package/dist/components/Image/index.cjs.map +1 -1
  15. package/dist/components/Image/index.css +2 -2
  16. package/dist/components/Image/index.css.map +1 -1
  17. package/dist/components/Image/index.js +10 -2
  18. package/dist/components/Image/index.js.map +1 -1
  19. package/dist/components/Select/index.cjs +32 -28
  20. package/dist/components/Select/index.cjs.map +1 -1
  21. package/dist/components/Select/index.css +1 -2
  22. package/dist/components/Select/index.css.map +1 -1
  23. package/dist/components/Select/index.js +33 -29
  24. package/dist/components/Select/index.js.map +1 -1
  25. package/dist/components/TakeatLogo/index.d.cts +1 -1
  26. package/dist/components/TakeatLogo/index.d.ts +1 -1
  27. package/dist/{index-MnS1OFJm.d.cts → index-C9UYe0UW.d.cts} +1 -1
  28. package/dist/{index-MnS1OFJm.d.ts → index-C9UYe0UW.d.ts} +1 -1
  29. package/dist/{index-CPcPCVHx.d.cts → index-CpMNKHas.d.cts} +1 -1
  30. package/dist/{index-CPcPCVHx.d.ts → index-CpMNKHas.d.ts} +1 -1
  31. package/dist/{index-BnVzp7Lc.d.cts → index-CtCRsHIv.d.cts} +1 -1
  32. package/dist/{index-BnVzp7Lc.d.ts → index-CtCRsHIv.d.ts} +1 -1
  33. package/dist/{index-BNAaK0Se.d.cts → index-OXa02Q_c.d.cts} +1 -1
  34. package/dist/{index-BNAaK0Se.d.ts → index-OXa02Q_c.d.ts} +1 -1
  35. package/dist/index.cjs +42 -30
  36. package/dist/index.cjs.map +1 -1
  37. package/dist/index.css +3 -4
  38. package/dist/index.css.map +1 -1
  39. package/dist/index.d.cts +4 -4
  40. package/dist/index.d.ts +4 -4
  41. package/dist/index.js +51 -39
  42. package/dist/index.js.map +1 -1
  43. package/package.json +1 -1
@@ -1,2 +1,2 @@
1
1
  import 'react';
2
- export { B as Badge, b as BadgeVariant } from '../../index-BNAaK0Se.cjs';
2
+ export { B as Badge, b as BadgeVariant } from '../../index-OXa02Q_c.cjs';
@@ -1,2 +1,2 @@
1
1
  import 'react';
2
- export { B as Badge, b as BadgeVariant } from '../../index-BNAaK0Se.js';
2
+ export { B as Badge, b as BadgeVariant } from '../../index-OXa02Q_c.js';
@@ -1,3 +1,3 @@
1
1
  import '@base-ui/react/button';
2
2
  import 'react';
3
- export { b as BUTTON_OPTIONS, B as Button } from '../../index-BnVzp7Lc.cjs';
3
+ export { b as BUTTON_OPTIONS, B as Button } from '../../index-CtCRsHIv.cjs';
@@ -1,3 +1,3 @@
1
1
  import '@base-ui/react/button';
2
2
  import 'react';
3
- export { b as BUTTON_OPTIONS, B as Button } from '../../index-BnVzp7Lc.js';
3
+ export { b as BUTTON_OPTIONS, B as Button } from '../../index-CtCRsHIv.js';
@@ -914,7 +914,15 @@ var placeholderContainer = "styles_placeholderContainer__dodte50";
914
914
  // src/components/Image/index.tsx
915
915
  var import_jsx_runtime14 = require("react/jsx-runtime");
916
916
  var Image = (0, import_react4.forwardRef)(function Image2({ as: Component = "img", ...props }, ref) {
917
- const { src, width, height, style: consumerStyle, onError, ...rest } = props;
917
+ const {
918
+ src,
919
+ width,
920
+ height,
921
+ style: consumerStyle,
922
+ className: consumerClassName = "",
923
+ onError,
924
+ ...rest
925
+ } = props;
918
926
  const [errored, setErrored] = (0, import_react4.useState)(false);
919
927
  (0, import_react4.useEffect)(() => {
920
928
  setErrored(false);
@@ -930,7 +938,7 @@ var Image = (0, import_react4.forwardRef)(function Image2({ as: Component = "img
930
938
  "div",
931
939
  {
932
940
  ref,
933
- className: placeholderContainer,
941
+ className: `${placeholderContainer} ${consumerClassName}`,
934
942
  style: {
935
943
  width: width != null ? width : void 0,
936
944
  height: height != null ? height : void 0,