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.
- package/dist/components/Badge/index.d.cts +1 -1
- package/dist/components/Badge/index.d.ts +1 -1
- package/dist/components/Button/index.d.cts +1 -1
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/CollapsableMenu/index.cjs +10 -2
- package/dist/components/CollapsableMenu/index.cjs.map +1 -1
- package/dist/components/CollapsableMenu/index.css +2 -2
- package/dist/components/CollapsableMenu/index.css.map +1 -1
- package/dist/components/CollapsableMenu/index.js +10 -2
- package/dist/components/CollapsableMenu/index.js.map +1 -1
- package/dist/components/HighlightIcon/index.d.cts +1 -1
- package/dist/components/HighlightIcon/index.d.ts +1 -1
- package/dist/components/Image/index.cjs +10 -2
- package/dist/components/Image/index.cjs.map +1 -1
- package/dist/components/Image/index.css +2 -2
- package/dist/components/Image/index.css.map +1 -1
- package/dist/components/Image/index.js +10 -2
- package/dist/components/Image/index.js.map +1 -1
- package/dist/components/Select/index.cjs +32 -28
- package/dist/components/Select/index.cjs.map +1 -1
- package/dist/components/Select/index.css +1 -2
- package/dist/components/Select/index.css.map +1 -1
- package/dist/components/Select/index.js +33 -29
- package/dist/components/Select/index.js.map +1 -1
- package/dist/components/TakeatLogo/index.d.cts +1 -1
- package/dist/components/TakeatLogo/index.d.ts +1 -1
- package/dist/{index-MnS1OFJm.d.cts → index-C9UYe0UW.d.cts} +1 -1
- package/dist/{index-MnS1OFJm.d.ts → index-C9UYe0UW.d.ts} +1 -1
- package/dist/{index-CPcPCVHx.d.cts → index-CpMNKHas.d.cts} +1 -1
- package/dist/{index-CPcPCVHx.d.ts → index-CpMNKHas.d.ts} +1 -1
- package/dist/{index-BnVzp7Lc.d.cts → index-CtCRsHIv.d.cts} +1 -1
- package/dist/{index-BnVzp7Lc.d.ts → index-CtCRsHIv.d.ts} +1 -1
- package/dist/{index-BNAaK0Se.d.cts → index-OXa02Q_c.d.cts} +1 -1
- package/dist/{index-BNAaK0Se.d.ts → index-OXa02Q_c.d.ts} +1 -1
- package/dist/index.cjs +42 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +3 -4
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +51 -39
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'react';
|
|
2
|
-
export { B as Badge, b as BadgeVariant } from '../../index-
|
|
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-
|
|
2
|
+
export { B as Badge, b as BadgeVariant } from '../../index-OXa02Q_c.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 {
|
|
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,
|