design-system-silkhaus 3.10.0 → 3.11.0-beta-image-viewer.1
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/{ButtonsGroupSelector-Dt1072KD.js → ButtonsGroupSelector-CV01ZD7O.js} +4 -2
- package/dist/app/index.js +2 -2
- package/dist/index.d.ts +18 -1
- package/dist/index.js +11129 -9891
- package/dist/style.css +1 -1
- package/package.json +5 -4
|
@@ -3793,12 +3793,14 @@ const za = (e, t = "AED") => {
|
|
|
3793
3793
|
tertiary: "ds-text-Text-secondary ds-rounded-sm hover:ds-bg-Fills-quintiary active:ds-bg-Fills-quintiary focus:ds-bg-Fills-quadrutery disabled:ds-text-Fills-quadrutery disabled:ds-bg-Fills-quintiary",
|
|
3794
3794
|
quaternary: "ds-text-accentEggplant-100 ds-rounded-sm hover:ds-bg-Background-accentEggplant-5 active:ds-bg-Background-accentEggplant-5 focus:ds-bg-Background-accentEggplant-100 focus:ds-text-Text-textPrimaryDark disabled:ds-text-Background-accentEggplant-20",
|
|
3795
3795
|
small: "ds-py-1.5 ds-px-8 ds_SmallBodyEmphasized",
|
|
3796
|
-
large: "ds-py-3 ds-px-8 ds_MediumBodyEmphasized"
|
|
3796
|
+
large: "ds-py-3 ds-px-8 ds_MediumBodyEmphasized",
|
|
3797
|
+
empty: ""
|
|
3797
3798
|
}, $o = {
|
|
3798
3799
|
primary: "ds-bg-Background-accentEggplant-100 ds-text-Text-textPrimaryDark ds-rounded-none ds-border ds-border-white ds-shadow-[0px_0px_0px_1px_rgba(109,54,169,1)]",
|
|
3799
3800
|
secondary: "ds-rounded-sm ds-border ds-bg-Background-accentEggplant-5 ds-text-accentEggplant-100 ds-border-2 ds-border-Background-accentEggplant-100",
|
|
3800
3801
|
tertiary: "ds-text-Text-secondary ds-rounded-sm ds-bg-Fills-quadrutery",
|
|
3801
|
-
quaternary: "ds-rounded-sm ds-bg-Background-accentEggplant-100 ds-text-Text-textPrimaryDark"
|
|
3802
|
+
quaternary: "ds-rounded-sm ds-bg-Background-accentEggplant-100 ds-text-Text-textPrimaryDark",
|
|
3803
|
+
empty: "ds-rounded-sm ds-bg-none"
|
|
3802
3804
|
}, Vo = Fe.forwardRef(
|
|
3803
3805
|
(h, d) => {
|
|
3804
3806
|
var m = h, {
|
package/dist/app/index.js
CHANGED
|
@@ -10,8 +10,8 @@ var I = (s, e, a) => e in s ? J(s, e, { enumerable: !0, configurable: !0, writab
|
|
|
10
10
|
X.call(e, a) && I(s, a, e[a]);
|
|
11
11
|
return s;
|
|
12
12
|
}, k = (s, e) => K(s, L(e));
|
|
13
|
-
import { j as d, p as Y, u as Z, o as _, i as O, s as ss, r as es, v as ds, d as as, e as ls, f as ts, g as rs, a as m, F as ns, A as is, h as os, D as cs, x as us, C as fs, l as xs, k as ms, n as ps } from "../ButtonsGroupSelector-
|
|
14
|
-
import { w as ks } from "../ButtonsGroupSelector-
|
|
13
|
+
import { j as d, p as Y, u as Z, o as _, i as O, s as ss, r as es, v as ds, d as as, e as ls, f as ts, g as rs, a as m, F as ns, A as is, h as os, D as cs, x as us, C as fs, l as xs, k as ms, n as ps } from "../ButtonsGroupSelector-CV01ZD7O.js";
|
|
14
|
+
import { w as ks } from "../ButtonsGroupSelector-CV01ZD7O.js";
|
|
15
15
|
import { useState as b } from "react";
|
|
16
16
|
const hs = (s) => window.innerWidth < Y ? /* @__PURE__ */ d.jsx(R, x({}, s)) : /* @__PURE__ */ d.jsx(M, x({}, s));
|
|
17
17
|
hs.displayName = "Dropdown";
|
package/dist/index.d.ts
CHANGED
|
@@ -104,6 +104,10 @@ export declare interface AnimatedModalProps extends HTMLAttributes<HTMLDivElemen
|
|
|
104
104
|
overlayBlur?: boolean;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
export declare const ArrowLeftIcon: FC<{
|
|
108
|
+
className?: string;
|
|
109
|
+
}>;
|
|
110
|
+
|
|
107
111
|
export declare const ArrowRightIcon: FC<{
|
|
108
112
|
className?: string;
|
|
109
113
|
}>;
|
|
@@ -217,7 +221,7 @@ export declare const BurjKhalifaIcon: FC<{
|
|
|
217
221
|
export declare const Button: default_2.ForwardRefExoticComponent<ButtonProps & default_2.RefAttributes<HTMLButtonElement>>;
|
|
218
222
|
|
|
219
223
|
export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
220
|
-
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
|
|
224
|
+
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'empty';
|
|
221
225
|
size?: 'small' | 'large';
|
|
222
226
|
disabled?: true | false;
|
|
223
227
|
startIcon?: default_2.ReactNode;
|
|
@@ -691,6 +695,19 @@ export declare interface ImageCarouselProps extends default_2.HTMLAttributes<HTM
|
|
|
691
695
|
images: string[];
|
|
692
696
|
}
|
|
693
697
|
|
|
698
|
+
export declare interface ImageItem {
|
|
699
|
+
src: string;
|
|
700
|
+
caption: string;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
export declare const ImageViewer: FC<ImageViewerProps>;
|
|
704
|
+
|
|
705
|
+
export declare interface ImageViewerProps {
|
|
706
|
+
isOpen: boolean;
|
|
707
|
+
setOpen: (state: boolean) => void;
|
|
708
|
+
images: ImageItem[];
|
|
709
|
+
}
|
|
710
|
+
|
|
694
711
|
export declare const InfoIcon: FC<{
|
|
695
712
|
className?: string;
|
|
696
713
|
}>;
|