@kickstartds/ds-agency-premium 1.2.34 → 1.3.0--canary.8.347.0
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/blog-aside/index.js +1 -0
- package/dist/components/blog-head/index.js +1 -0
- package/dist/components/blog-overview/index.d.ts +4 -1
- package/dist/components/blog-overview/index.js +2 -1
- package/dist/components/blog-post/index.d.ts +4 -1
- package/dist/components/blog-post/index.js +1 -0
- package/dist/components/blog-teaser/index.js +1 -0
- package/dist/components/button-group/index.js +1 -0
- package/dist/components/cta/index.js +1 -0
- package/dist/components/faq/index.js +1 -0
- package/dist/components/feature/index.js +1 -0
- package/dist/components/features/index.js +1 -0
- package/dist/components/footer/index.js +1 -0
- package/dist/components/gallery/index.js +1 -0
- package/dist/components/header/index.js +1 -0
- package/dist/components/headline/index.js +2 -3
- package/dist/components/hero/index.d.ts +6 -3
- package/dist/components/hero/index.js +11 -5
- package/dist/components/image-story/index.d.ts +6 -3
- package/dist/components/image-story/index.js +11 -5
- package/dist/components/image-text/index.js +1 -0
- package/dist/components/logos/index.d.ts +6 -3
- package/dist/components/logos/index.js +11 -5
- package/dist/components/mosaic/index.d.ts +6 -3
- package/dist/components/mosaic/index.js +10 -3
- package/dist/components/page/page.schema.dereffed.json +8 -1
- package/dist/components/page-wrapper/index.js +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +47 -43
- package/dist/components/providers/index.js +1 -1
- package/dist/components/section/section.schema.dereffed.json +8 -1
- package/dist/components/slider/index.d.ts +3 -2
- package/dist/components/slider/index.js +2 -1
- package/dist/components/slider/slider.schema.dereffed.json +8 -1
- package/dist/components/stat/index.js +1 -0
- package/dist/components/stats/index.d.ts +6 -3
- package/dist/components/stats/index.js +11 -5
- package/dist/components/teaser-card/index.js +1 -1
- package/dist/components/testimonial/index.js +1 -0
- package/dist/components/testimonials/index.d.ts +7 -4
- package/dist/components/testimonials/index.js +15 -9
- package/dist/components/text/index.js +1 -0
- package/dist/components/video-curtain/index.d.ts +6 -3
- package/dist/components/video-curtain/index.js +11 -5
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +18 -18
|
@@ -14,7 +14,7 @@ import '../section/js/Section.client.js';
|
|
|
14
14
|
import '@kickstartds/core/lib/component';
|
|
15
15
|
import '@kickstartds/base/lib/teaser-box';
|
|
16
16
|
import '@kickstartds/core/lib/container';
|
|
17
|
-
import '
|
|
17
|
+
import 'markdown-to-jsx';
|
|
18
18
|
import '@kickstartds/base/lib/headline';
|
|
19
19
|
import '@kickstartds/base/lib/button-group';
|
|
20
20
|
|
|
@@ -1383,7 +1383,14 @@
|
|
|
1383
1383
|
"type": "string"
|
|
1384
1384
|
},
|
|
1385
1385
|
"typeProp": {
|
|
1386
|
-
"
|
|
1386
|
+
"title": "Type",
|
|
1387
|
+
"description": "Type of the movement",
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"enum": [
|
|
1390
|
+
"slider",
|
|
1391
|
+
"carousel"
|
|
1392
|
+
],
|
|
1393
|
+
"default": "carousel"
|
|
1387
1394
|
}
|
|
1388
1395
|
},
|
|
1389
1396
|
"additionalProperties": false
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HTMLAttributes } from "react";
|
|
2
3
|
import { SliderProps } from "../../SliderProps-8cae490d.js";
|
|
3
|
-
declare const Slider:
|
|
4
|
+
declare const Slider: import("react").ForwardRefExoticComponent<SliderProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
5
|
export { Slider };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import "./slider.css";
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
|
+
import { forwardRef } from 'react';
|
|
3
4
|
import { Slider as Slider$1 } from '@kickstartds/content/lib/slider';
|
|
4
5
|
|
|
5
|
-
const Slider = ({ gap, type, autoplay, arrows, teaseNeighbours, equalHeight, children, ...props }) => (jsx(Slider$1, { gap: gap, type: type, arrows: arrows, autoplay: autoplay, teaseNeighbours: teaseNeighbours, equalHeight: equalHeight, ...props, children: children }));
|
|
6
|
+
const Slider = forwardRef(({ gap, type, autoplay, arrows, teaseNeighbours, equalHeight, children, ...props }, ref) => (jsx(Slider$1, { gap: gap, type: type, arrows: arrows, autoplay: autoplay, teaseNeighbours: teaseNeighbours, equalHeight: equalHeight, ...props, ref: ref, children: children })));
|
|
6
7
|
|
|
7
8
|
export { Slider };
|
|
@@ -51,7 +51,14 @@
|
|
|
51
51
|
"type": "string"
|
|
52
52
|
},
|
|
53
53
|
"typeProp": {
|
|
54
|
-
"
|
|
54
|
+
"title": "Type",
|
|
55
|
+
"description": "Type of the movement",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"enum": [
|
|
58
|
+
"slider",
|
|
59
|
+
"carousel"
|
|
60
|
+
],
|
|
61
|
+
"default": "carousel"
|
|
55
62
|
}
|
|
56
63
|
},
|
|
57
64
|
"additionalProperties": false
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HTMLAttributes } from "react";
|
|
2
3
|
import { StatsProps } from "../../StatsProps-bf5ef578.js";
|
|
3
|
-
declare const
|
|
4
|
-
|
|
4
|
+
declare const StatsContextDefault: import("react").ForwardRefExoticComponent<StatsProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
|
+
declare const StatsContext: import("react").Context<import("react").ForwardRefExoticComponent<StatsProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
|
+
declare const Stats: import("react").ForwardRefExoticComponent<StatsProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
export { StatsContextDefault, StatsContext, Stats };
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import "./stats.css";
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
|
-
import { createElement } from 'react';
|
|
3
|
+
import { forwardRef, createElement, createContext, useContext } from 'react';
|
|
4
4
|
import { Stat } from '../stat/index.js';
|
|
5
5
|
import '@kickstartds/content/lib/count-up';
|
|
6
6
|
|
|
7
|
-
const
|
|
8
|
-
return (jsx("div", { className: "dsa-stats", children: stats.map((item, index) => (createElement(Stat, { ...item, key: index }))) }));
|
|
9
|
-
};
|
|
7
|
+
const StatsContextDefault = forwardRef(({ stat: stats = [], ...rest }, ref) => {
|
|
8
|
+
return (jsx("div", { ...rest, ref: ref, className: "dsa-stats", children: stats.map((item, index) => (createElement(Stat, { ...item, key: index }))) }));
|
|
9
|
+
});
|
|
10
|
+
const StatsContext = createContext(StatsContextDefault);
|
|
11
|
+
const Stats = forwardRef((props, ref) => {
|
|
12
|
+
const Component = useContext(StatsContext);
|
|
13
|
+
return jsx(Component, { ...props, ref: ref });
|
|
14
|
+
});
|
|
15
|
+
Stats.displayName = "Stats";
|
|
10
16
|
|
|
11
|
-
export { Stats };
|
|
17
|
+
export { Stats, StatsContext, StatsContextDefault };
|
|
@@ -14,12 +14,12 @@ const TeaserCardContextDefault = forwardRef(({ headline, text, button, target, i
|
|
|
14
14
|
target: target,
|
|
15
15
|
icon: button?.chevron ? "chevron-right" : undefined,
|
|
16
16
|
}, image: image, ref: ref }) })));
|
|
17
|
-
TeaserCardContextDefault.displayName = "TeaserCard";
|
|
18
17
|
const TeaserCardContext = createContext(TeaserCardContextDefault);
|
|
19
18
|
const TeaserCard = forwardRef((props, ref) => {
|
|
20
19
|
const Component = useContext(TeaserCardContext);
|
|
21
20
|
return jsx(Component, { ...props, ref: ref });
|
|
22
21
|
});
|
|
22
|
+
TeaserCard.displayName = "TeaserCard";
|
|
23
23
|
const TeaserBoxProvider = (props) => (jsx(TeaserBoxContext.Provider, { ...props, value: TeaserCard }));
|
|
24
24
|
|
|
25
25
|
export { TeaserBoxProvider, TeaserCard, TeaserCardContext, TeaserCardContextDefault };
|
|
@@ -8,5 +8,6 @@ const Testimonial = forwardRef((props, ref) => {
|
|
|
8
8
|
const Component = useContext(TestimonialContext);
|
|
9
9
|
return jsx(Component, { ...props, ref: ref });
|
|
10
10
|
});
|
|
11
|
+
Testimonial.displayName = "Testimonial";
|
|
11
12
|
|
|
12
13
|
export { Testimonial, TestimonialContext, TestimonialContextDefault };
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HTMLAttributes } from "react";
|
|
2
3
|
import { TestimonialsProps } from "../../TestimonialsProps-f7211553.js";
|
|
3
4
|
import { SliderProps } from "../../SliderProps-8cae490d.js";
|
|
4
5
|
interface ConditionalSliderProps extends SliderProps {
|
|
5
6
|
layout: "slider" | "list" | "alternating";
|
|
6
7
|
}
|
|
7
|
-
declare const ConditionalSlider:
|
|
8
|
-
declare const
|
|
9
|
-
|
|
8
|
+
declare const ConditionalSlider: import("react").ForwardRefExoticComponent<ConditionalSliderProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const TestimonialsContextDefault: import("react").ForwardRefExoticComponent<TestimonialsProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const TestimonialsContext: import("react").Context<import("react").ForwardRefExoticComponent<TestimonialsProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
11
|
+
declare const Testimonials: import("react").ForwardRefExoticComponent<TestimonialsProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
+
export { ConditionalSlider, TestimonialsContextDefault, TestimonialsContext, Testimonials };
|
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
import "./testimonials.css";
|
|
2
|
-
import { createElement } from 'react';
|
|
2
|
+
import { forwardRef, createElement, createContext, useContext } from 'react';
|
|
3
3
|
import { jsx } from 'react/jsx-runtime';
|
|
4
4
|
import { Slider } from '../slider/index.js';
|
|
5
5
|
import { Testimonial } from '../testimonial/index.js';
|
|
6
6
|
import '@kickstartds/content/lib/slider';
|
|
7
7
|
import '@kickstartds/content/lib/quote';
|
|
8
8
|
|
|
9
|
-
const ConditionalSlider = ({ layout, children, arrows, nav, ...props }) => {
|
|
9
|
+
const ConditionalSlider = forwardRef(({ layout, children, arrows, nav, ...props }, ref) => {
|
|
10
10
|
if (layout === "slider") {
|
|
11
|
-
return (jsx(Slider, { className: "dsa-testimonials dsa-testimonials--slider", arrows: arrows, nav: nav, ...props, children: children }));
|
|
11
|
+
return (jsx(Slider, { className: "dsa-testimonials dsa-testimonials--slider", arrows: arrows, nav: nav, ...props, ref: ref, children: children }));
|
|
12
12
|
}
|
|
13
13
|
else {
|
|
14
|
-
return (jsx("div", { className: "dsa-testimonials dsa-testimonials--list", ...props, children: children }));
|
|
14
|
+
return (jsx("div", { className: "dsa-testimonials dsa-testimonials--list", ...props, ref: ref, children: children }));
|
|
15
15
|
}
|
|
16
|
-
};
|
|
17
|
-
const
|
|
18
|
-
return (jsx(ConditionalSlider, { layout: layout, arrows: true, nav: true, ...props, children:
|
|
19
|
-
};
|
|
16
|
+
});
|
|
17
|
+
const TestimonialsContextDefault = forwardRef(({ testimonial: testimonials = [], layout = "slider", ...props }, ref) => {
|
|
18
|
+
return (jsx(ConditionalSlider, { layout: layout, arrows: true, nav: true, ...props, ref: ref, children: testimonials.map((testimonial, index) => (createElement(Testimonial, { ...testimonial, index: index, layout: layout, key: index }))) }));
|
|
19
|
+
});
|
|
20
|
+
const TestimonialsContext = createContext(TestimonialsContextDefault);
|
|
21
|
+
const Testimonials = forwardRef((props, ref) => {
|
|
22
|
+
const Component = useContext(TestimonialsContext);
|
|
23
|
+
return jsx(Component, { ...props, ref: ref });
|
|
24
|
+
});
|
|
25
|
+
Testimonials.displayName = "Testimonials";
|
|
20
26
|
|
|
21
|
-
export { ConditionalSlider, Testimonials };
|
|
27
|
+
export { ConditionalSlider, Testimonials, TestimonialsContext, TestimonialsContextDefault };
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HTMLAttributes } from "react";
|
|
2
3
|
import { VideoCurtainProps } from "../../VideoCurtainProps-6c625a69.js";
|
|
3
|
-
declare const
|
|
4
|
-
|
|
4
|
+
declare const VideoCurtainContextDefault: import("react").ForwardRefExoticComponent<VideoCurtainProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
|
+
declare const VideoCurtainContext: import("react").Context<import("react").ForwardRefExoticComponent<VideoCurtainProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
|
+
declare const VideoCurtain: import("react").ForwardRefExoticComponent<VideoCurtainProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
export { VideoCurtainContextDefault, VideoCurtainContext, VideoCurtain };
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import "./video-curtain.css";
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
|
+
import { forwardRef, createContext, useContext } from 'react';
|
|
3
4
|
import { VisualContextDefault } from '@kickstartds/content/lib/visual';
|
|
4
5
|
import classnames from 'classnames';
|
|
5
6
|
import { Container } from '@kickstartds/core/lib/container';
|
|
6
7
|
import { ButtonContext } from '@kickstartds/base/lib/button';
|
|
7
8
|
import { useButtonGroup } from '../button-group/index.js';
|
|
8
|
-
import 'react';
|
|
9
9
|
import '@kickstartds/base/lib/button-group';
|
|
10
10
|
|
|
11
|
-
const
|
|
11
|
+
const VideoCurtainContextDefault = forwardRef(({ headline, sub, text, highlightText, colorNeutral, textPosition, overlay, video, buttons = [], ...rest }, ref) => {
|
|
12
12
|
const ButtonGroup = useButtonGroup();
|
|
13
13
|
return (jsx(ButtonContext.Provider
|
|
14
14
|
// @ts-expect-error
|
|
15
15
|
, {
|
|
16
16
|
// @ts-expect-error
|
|
17
|
-
value: ButtonGroup, children: jsx(Container, { name: "visual", children: jsx(VisualContextDefault, { skipButton: true, className: classnames(`dsa-video-curtain`, highlightText ? `dsa-video-curtain--highlight-text` : "", colorNeutral ? `dsa-video-curtain--color-neutral` : ""), height: "fullScreen", inbox: true, box: {
|
|
17
|
+
value: ButtonGroup, children: jsx(Container, { name: "visual", children: jsx(VisualContextDefault, { ...rest, ref: ref, skipButton: true, className: classnames(`dsa-video-curtain`, highlightText ? `dsa-video-curtain--highlight-text` : "", colorNeutral ? `dsa-video-curtain--color-neutral` : ""), height: "fullScreen", inbox: true, box: {
|
|
18
18
|
background: "transparent",
|
|
19
19
|
enabled: true,
|
|
20
20
|
vertical: "center",
|
|
@@ -42,6 +42,12 @@ const VideoCurtain = ({ headline, sub, text, highlightText, colorNeutral, textPo
|
|
|
42
42
|
srcDesktop: video.srcDesktop,
|
|
43
43
|
},
|
|
44
44
|
} }) }) }));
|
|
45
|
-
};
|
|
45
|
+
});
|
|
46
|
+
const VideoCurtainContext = createContext(VideoCurtainContextDefault);
|
|
47
|
+
const VideoCurtain = forwardRef((props, ref) => {
|
|
48
|
+
const Component = useContext(VideoCurtainContext);
|
|
49
|
+
return jsx(Component, { ...props, ref: ref });
|
|
50
|
+
});
|
|
51
|
+
VideoCurtain.displayName = "VideoCurtain";
|
|
46
52
|
|
|
47
|
-
export { VideoCurtain };
|
|
53
|
+
export { VideoCurtain, VideoCurtainContext, VideoCurtainContextDefault };
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 15 Apr 2024 13:52:30 GMT
|
|
4
4
|
*/
|
|
5
5
|
:root [ks-theme=business] {
|
|
6
6
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -2727,7 +2727,7 @@
|
|
|
2727
2727
|
}
|
|
2728
2728
|
/**
|
|
2729
2729
|
* Do not edit directly
|
|
2730
|
-
* Generated on
|
|
2730
|
+
* Generated on Mon, 15 Apr 2024 13:52:34 GMT
|
|
2731
2731
|
*/
|
|
2732
2732
|
:root [ks-theme=google] {
|
|
2733
2733
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -5458,7 +5458,7 @@
|
|
|
5458
5458
|
}
|
|
5459
5459
|
/**
|
|
5460
5460
|
* Do not edit directly
|
|
5461
|
-
* Generated on
|
|
5461
|
+
* Generated on Mon, 15 Apr 2024 13:52:32 GMT
|
|
5462
5462
|
*/
|
|
5463
5463
|
:root [ks-theme=ngo] {
|
|
5464
5464
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -8459,7 +8459,7 @@
|
|
|
8459
8459
|
}
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Do not edit directly
|
|
8462
|
-
* Generated on
|
|
8462
|
+
* Generated on Mon, 15 Apr 2024 13:52:37 GMT
|
|
8463
8463
|
*/
|
|
8464
8464
|
:root [ks-theme=telekom] {
|
|
8465
8465
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kickstartds/ds-agency-premium",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0--canary.8.347.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@bedrock-layout/primitives": "^3.0.23",
|
|
75
75
|
"@bedrock-layout/spacing-constants": "^3.2.5",
|
|
76
76
|
"classnames": "^2.3.2",
|
|
77
|
-
"
|
|
77
|
+
"markdown-to-jsx": "^7.3.2"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@auto-it/npm": "^11.0.1",
|
|
@@ -84,24 +84,24 @@
|
|
|
84
84
|
"@kickstartds/content": "^4.0.0",
|
|
85
85
|
"@kickstartds/core": "^4.0.2",
|
|
86
86
|
"@kickstartds/form": "^4.0.2",
|
|
87
|
-
"@kickstartds/
|
|
88
|
-
"@kickstartds/
|
|
89
|
-
"@kickstartds/storybook-addon-
|
|
87
|
+
"@kickstartds/jsonschema-utils": "^3.0.13",
|
|
88
|
+
"@kickstartds/jsonschema2types": "^1.1.37",
|
|
89
|
+
"@kickstartds/storybook-addon-component-tokens": "^3.0.0",
|
|
90
|
+
"@kickstartds/storybook-addon-html": "^1.0.0",
|
|
91
|
+
"@kickstartds/storybook-addon-jsonschema": "^4.0.0",
|
|
90
92
|
"@kickstartds/style-dictionary": "^4.0.2",
|
|
91
|
-
"@storybook/addon-a11y": "^
|
|
92
|
-
"@storybook/addon-actions": "^
|
|
93
|
-
"@storybook/addon-essentials": "^
|
|
94
|
-
"@storybook/addon-links": "^
|
|
95
|
-
"@storybook/
|
|
96
|
-
"@storybook/
|
|
97
|
-
"@storybook/
|
|
98
|
-
"@storybook/react": "^7.6.7",
|
|
99
|
-
"@storybook/react-vite": "^7.6.7",
|
|
100
|
-
"@storybook/test-runner": "^0.16.0",
|
|
93
|
+
"@storybook/addon-a11y": "^8.0.5",
|
|
94
|
+
"@storybook/addon-actions": "^8.0.5",
|
|
95
|
+
"@storybook/addon-essentials": "^8.0.5",
|
|
96
|
+
"@storybook/addon-links": "^8.0.5",
|
|
97
|
+
"@storybook/react": "^8.0.5",
|
|
98
|
+
"@storybook/react-vite": "^8.0.5",
|
|
99
|
+
"@storybook/test-runner": "^0.17.0",
|
|
101
100
|
"@testing-library/react": "^14.1.2",
|
|
102
101
|
"@types/jest": "^29.5.11",
|
|
103
102
|
"@types/jest-image-snapshot": "^6.4.0",
|
|
104
103
|
"@types/react": "^18.2.21",
|
|
104
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
105
105
|
"auto": "^11.0.1",
|
|
106
106
|
"change-case": "^4.1.2",
|
|
107
107
|
"chokidar-cli": "^3.0.0",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"happy-dom": "^13.3.1",
|
|
115
115
|
"husky": "^8.0.3",
|
|
116
116
|
"jest-image-snapshot": "^6.4.0",
|
|
117
|
-
"kickstartds": "^3.0.0
|
|
117
|
+
"kickstartds": "^3.0.0",
|
|
118
118
|
"lazysizes": "^5.3.2",
|
|
119
119
|
"npm-run-all": "^4.1.5",
|
|
120
120
|
"patch-package": "^8.0.0",
|
|
@@ -129,9 +129,9 @@
|
|
|
129
129
|
"rollup-plugin-ts": "^3.4.4",
|
|
130
130
|
"sass": "^1.66.1",
|
|
131
131
|
"sass-loader": "^13.3.3",
|
|
132
|
-
"storybook": "^
|
|
132
|
+
"storybook": "^8.0.5",
|
|
133
133
|
"storybook-addon-playroom": "^5.0.0",
|
|
134
|
-
"storybook-design-token": "3.
|
|
134
|
+
"storybook-design-token": "^3.1.0",
|
|
135
135
|
"style-loader": "^3.3.3",
|
|
136
136
|
"typescript": "^5.2.2",
|
|
137
137
|
"vitest": "^1.2.1"
|