design-system-silkhaus 3.9.1 → 3.10.0-beta-image-viewer.2
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-D-Y2iTmE.js → ButtonsGroupSelector-BAlFswmU.js} +4 -2
- package/dist/app/index.js +2 -2
- package/dist/index.d.ts +18 -1
- package/dist/index.js +14091 -12860
- package/dist/style.css +1 -1
- package/package.json +5 -4
|
@@ -3773,12 +3773,14 @@ const za = (e, t = "AED") => {
|
|
|
3773
3773
|
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",
|
|
3774
3774
|
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",
|
|
3775
3775
|
small: "ds-py-1.5 ds-px-8 ds_SmallBodyEmphasized",
|
|
3776
|
-
large: "ds-py-3 ds-px-8 ds_MediumBodyEmphasized"
|
|
3776
|
+
large: "ds-py-3 ds-px-8 ds_MediumBodyEmphasized",
|
|
3777
|
+
empty: ""
|
|
3777
3778
|
}, $o = {
|
|
3778
3779
|
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)]",
|
|
3779
3780
|
secondary: "ds-rounded-sm ds-border ds-bg-Background-accentEggplant-5 ds-text-accentEggplant-100 ds-border-2 ds-border-Background-accentEggplant-100",
|
|
3780
3781
|
tertiary: "ds-text-Text-secondary ds-rounded-sm ds-bg-Fills-quadrutery",
|
|
3781
|
-
quaternary: "ds-rounded-sm ds-bg-Background-accentEggplant-100 ds-text-Text-textPrimaryDark"
|
|
3782
|
+
quaternary: "ds-rounded-sm ds-bg-Background-accentEggplant-100 ds-text-Text-textPrimaryDark",
|
|
3783
|
+
empty: "ds-rounded-sm ds-bg-none"
|
|
3782
3784
|
}, Vo = Fe.forwardRef(
|
|
3783
3785
|
(h, d) => {
|
|
3784
3786
|
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-BAlFswmU.js";
|
|
14
|
+
import { w as ks } from "../ButtonsGroupSelector-BAlFswmU.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
|
}>;
|
|
@@ -201,7 +205,7 @@ export declare const BurgerIcon: FC<{
|
|
|
201
205
|
export declare const Button: default_2.ForwardRefExoticComponent<ButtonProps & default_2.RefAttributes<HTMLButtonElement>>;
|
|
202
206
|
|
|
203
207
|
export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
204
|
-
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
|
|
208
|
+
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'empty';
|
|
205
209
|
size?: 'small' | 'large';
|
|
206
210
|
disabled?: true | false;
|
|
207
211
|
startIcon?: default_2.ReactNode;
|
|
@@ -635,6 +639,19 @@ export declare interface ImageCarouselProps extends default_2.HTMLAttributes<HTM
|
|
|
635
639
|
images: string[];
|
|
636
640
|
}
|
|
637
641
|
|
|
642
|
+
export declare interface ImageItem {
|
|
643
|
+
src: string;
|
|
644
|
+
caption: string;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
export declare const ImageViewer: FC<ImageViewerProps>;
|
|
648
|
+
|
|
649
|
+
export declare interface ImageViewerProps {
|
|
650
|
+
isOpen: boolean;
|
|
651
|
+
setOpen: (state: boolean) => void;
|
|
652
|
+
images: ImageItem[];
|
|
653
|
+
}
|
|
654
|
+
|
|
638
655
|
export declare const InfoIcon: FC<{
|
|
639
656
|
className?: string;
|
|
640
657
|
}>;
|