@kickstartds/ds-agency-premium 1.6.68--canary.1587.98fc9e3.0 → 1.6.68--canary.1593.79f68de.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/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-7caa223c.d.ts} +1 -1
- package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-7caa223c.d.ts} +1 -1
- package/dist/{HeroProps-f704d270.d.ts → HeroProps-aa4e6431.d.ts} +6 -1
- package/dist/{PageProps-aa29c554.d.ts → PageProps-7caa223c.d.ts} +1 -1
- package/dist/{SectionProps-a1b289ca.d.ts → SectionProps-7caa223c.d.ts} +10 -5
- package/dist/SliderProps-8a0dba0d.d.ts +1 -1
- package/dist/{VideoCurtainProps-6c625a69.d.ts → VideoCurtainProps-2b7b0265.d.ts} +1 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +29 -4
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/blog-post.schema.dereffed.json +29 -4
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/header/header.css +42 -6
- package/dist/components/header/index.js +5 -5
- package/dist/components/headline/headline.css +2 -2
- package/dist/components/hero/hero.css +8 -4
- package/dist/components/hero/hero.schema.dereffed.json +6 -0
- package/dist/components/hero/hero.schema.json +6 -0
- package/dist/components/hero/index.d.ts +1 -1
- package/dist/components/hero/index.js +2 -2
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/nav-dropdown/nav-dropdown.css +6 -2
- package/dist/components/nav-flyout/index.js +6 -8
- package/dist/components/nav-flyout/nav-flyout.css +14 -10
- package/dist/components/nav-main/index.js +0 -2
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page/page.schema.dereffed.json +29 -4
- package/dist/components/page-wrapper/tokens.css +9 -9
- package/dist/components/presets.json +37 -15
- package/dist/components/section/index.d.ts +1 -1
- package/dist/components/section/index.js +11 -3
- package/dist/components/section/section.css +29 -45
- package/dist/components/section/section.schema.dereffed.json +29 -4
- package/dist/components/section/section.schema.json +8 -7
- package/dist/components/slider/slider.schema.dereffed.json +6 -0
- package/dist/components/teaser-card/teaser-card.css +4 -5
- package/dist/components/video-curtain/index.d.ts +1 -1
- package/dist/components/video-curtain/index.js +8 -3
- package/dist/components/video-curtain/video-curtain.css +6 -3
- package/dist/components/video-curtain/video-curtain.schema.dereffed.json +3 -1
- package/dist/components/video-curtain/video-curtain.schema.json +1 -1
- package/dist/global.css +10 -16
- package/dist/static/img/about/cta.png +0 -0
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +9 -9
- package/dist/tokens/tokens.js +17 -17
- package/package.json +1 -1
- /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
|
@@ -25,9 +25,7 @@
|
|
|
25
25
|
"enum": [
|
|
26
26
|
"framed",
|
|
27
27
|
"deko",
|
|
28
|
-
"colorful"
|
|
29
|
-
"accentTransition",
|
|
30
|
-
"boldTransition"
|
|
28
|
+
"colorful"
|
|
31
29
|
]
|
|
32
30
|
},
|
|
33
31
|
"backgroundColor": {
|
|
@@ -41,6 +39,19 @@
|
|
|
41
39
|
],
|
|
42
40
|
"default": "default"
|
|
43
41
|
},
|
|
42
|
+
"transition": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"title": "Style",
|
|
45
|
+
"description": "Color of background",
|
|
46
|
+
"enum": [
|
|
47
|
+
"none",
|
|
48
|
+
"to-default",
|
|
49
|
+
"to-accent",
|
|
50
|
+
"to-bold",
|
|
51
|
+
"to-inverted"
|
|
52
|
+
],
|
|
53
|
+
"default": "default"
|
|
54
|
+
},
|
|
44
55
|
"backgroundImage": {
|
|
45
56
|
"title": "Background image",
|
|
46
57
|
"description": "Background image for the whole section",
|
|
@@ -854,6 +865,12 @@
|
|
|
854
865
|
"type": "string",
|
|
855
866
|
"default": "bottom"
|
|
856
867
|
},
|
|
868
|
+
"inverted": {
|
|
869
|
+
"type": "boolean",
|
|
870
|
+
"title": "Inverted",
|
|
871
|
+
"description": "Inverted color scheme for the box",
|
|
872
|
+
"default": false
|
|
873
|
+
},
|
|
857
874
|
"type": {
|
|
858
875
|
"const": "hero"
|
|
859
876
|
}
|
|
@@ -2050,6 +2067,12 @@
|
|
|
2050
2067
|
"type": "string",
|
|
2051
2068
|
"default": "bottom"
|
|
2052
2069
|
},
|
|
2070
|
+
"inverted": {
|
|
2071
|
+
"type": "boolean",
|
|
2072
|
+
"title": "Inverted",
|
|
2073
|
+
"description": "Inverted color scheme for the box",
|
|
2074
|
+
"default": false
|
|
2075
|
+
},
|
|
2053
2076
|
"type": {
|
|
2054
2077
|
"const": "hero"
|
|
2055
2078
|
}
|
|
@@ -3077,8 +3100,10 @@
|
|
|
3077
3100
|
"description": "Choose the alginment of the module content",
|
|
3078
3101
|
"enum": [
|
|
3079
3102
|
"center",
|
|
3103
|
+
"below",
|
|
3080
3104
|
"left",
|
|
3081
|
-
"right"
|
|
3105
|
+
"right",
|
|
3106
|
+
"corner"
|
|
3082
3107
|
],
|
|
3083
3108
|
"type": "string",
|
|
3084
3109
|
"default": "bottom"
|
|
@@ -16,13 +16,7 @@
|
|
|
16
16
|
"type": "string",
|
|
17
17
|
"title": "Style",
|
|
18
18
|
"description": "Style of background",
|
|
19
|
-
"enum": [
|
|
20
|
-
"framed",
|
|
21
|
-
"deko",
|
|
22
|
-
"colorful",
|
|
23
|
-
"accentTransition",
|
|
24
|
-
"boldTransition"
|
|
25
|
-
]
|
|
19
|
+
"enum": ["framed", "deko", "colorful"]
|
|
26
20
|
},
|
|
27
21
|
"backgroundColor": {
|
|
28
22
|
"type": "string",
|
|
@@ -31,6 +25,13 @@
|
|
|
31
25
|
"enum": ["default", "accent", "bold"],
|
|
32
26
|
"default": "default"
|
|
33
27
|
},
|
|
28
|
+
"transition": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"title": "Style",
|
|
31
|
+
"description": "Color of background",
|
|
32
|
+
"enum": ["none", "to-default", "to-accent", "to-bold", "to-inverted"],
|
|
33
|
+
"default": "default"
|
|
34
|
+
},
|
|
34
35
|
"backgroundImage": {
|
|
35
36
|
"title": "Background image",
|
|
36
37
|
"description": "Background image for the whole section",
|
|
@@ -117,18 +117,17 @@
|
|
|
117
117
|
.dsa-teaser-card--unset img {
|
|
118
118
|
height: 100%;
|
|
119
119
|
}
|
|
120
|
-
.dsa-teaser-card--row {
|
|
120
|
+
.dsa-teaser-card--row .c-teaser {
|
|
121
121
|
flex-direction: row;
|
|
122
122
|
}
|
|
123
|
-
.dsa-teaser-card--row .c-teaser__body {
|
|
123
|
+
.dsa-teaser-card--row .c-teaser .c-teaser__body {
|
|
124
124
|
justify-content: center;
|
|
125
125
|
flex-basis: 50%;
|
|
126
126
|
}
|
|
127
|
-
.dsa-teaser-card--row .c-teaser__body .c-teaser__text {
|
|
127
|
+
.dsa-teaser-card--row .c-teaser .c-teaser__body .c-teaser__text {
|
|
128
128
|
flex: 0;
|
|
129
129
|
}
|
|
130
|
-
.dsa-teaser-card--row > :first-child:not(.c-teaser__body) {
|
|
130
|
+
.dsa-teaser-card--row .c-teaser > :first-child:not(.c-teaser__body) {
|
|
131
131
|
flex: 50%;
|
|
132
|
-
border-radius: var(--dsa-teaser-card--border-radius) 0 0 var(--dsa-teaser-card--border-radius);
|
|
133
132
|
}
|
|
134
133
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { VideoCurtainProps } from "../../VideoCurtainProps-
|
|
3
|
+
import { VideoCurtainProps } from "../../VideoCurtainProps-2b7b0265.js";
|
|
4
4
|
declare const VideoCurtainContextDefault: import("react").ForwardRefExoticComponent<VideoCurtainProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const VideoCurtainContext: import("react").Context<import("react").ForwardRefExoticComponent<VideoCurtainProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const VideoCurtain: import("react").ForwardRefExoticComponent<VideoCurtainProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -15,11 +15,16 @@ const VideoCurtainContextDefault = forwardRef(({ headline, sub, text, highlightT
|
|
|
15
15
|
, {
|
|
16
16
|
// @ts-expect-error
|
|
17
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` : "", className), height: "fullScreen", inbox: true, box: {
|
|
18
|
-
inverted: true,
|
|
19
18
|
background: "transparent",
|
|
20
19
|
enabled: true,
|
|
21
|
-
vertical: "
|
|
22
|
-
|
|
20
|
+
vertical: textPosition === "below" || textPosition === "corner"
|
|
21
|
+
? "bottom"
|
|
22
|
+
: "center",
|
|
23
|
+
horizontal: textPosition === "left" || textPosition === "corner"
|
|
24
|
+
? "left"
|
|
25
|
+
: textPosition === "right"
|
|
26
|
+
? "right"
|
|
27
|
+
: "center",
|
|
23
28
|
link: {
|
|
24
29
|
// @ts-expect-error
|
|
25
30
|
buttons,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
--dsa-video-curtain__textbox--padding: var(--ks-spacing-inset-squish-xl);
|
|
14
14
|
--dsa-video-curtain__overlay--background: linear-gradient(
|
|
15
15
|
0deg,
|
|
16
|
-
var(--dsa-overlay-background-color) 15%,
|
|
16
|
+
var(--dsa-overlay-box--background-color) 15%,
|
|
17
17
|
transparent 50%
|
|
18
18
|
);
|
|
19
19
|
}
|
|
@@ -87,7 +87,10 @@
|
|
|
87
87
|
max-width: var(--c-visual_box--max-width);
|
|
88
88
|
padding: var(--c-visual_box--padding);
|
|
89
89
|
}
|
|
90
|
+
.c-visual.dsa-video-curtain .c-visual__box--transparent {
|
|
91
|
+
padding: 0;
|
|
92
|
+
}
|
|
90
93
|
.c-visual.dsa-video-curtain .c-visual__continue-btn {
|
|
91
|
-
color: var(--dsa-overlay-text-color, var(--ks-color-fg
|
|
92
|
-
filter: drop-shadow(
|
|
94
|
+
color: var(--dsa-overlay-text--text-color, var(--ks-color-fg));
|
|
95
|
+
filter: drop-shadow(var(--dsa-overlay-text--shadow, 0 0 10px var(--ks-color-bg-inverted-alpha-3-base)));
|
|
93
96
|
}
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"textPosition": {
|
|
62
62
|
"title": "Module aligment",
|
|
63
63
|
"description": "Choose the alginment of the module content",
|
|
64
|
-
"enum": ["center", "left", "right"],
|
|
64
|
+
"enum": ["center", "below", "left", "right", "corner"],
|
|
65
65
|
"type": "string",
|
|
66
66
|
"default": "bottom"
|
|
67
67
|
}
|
package/dist/global.css
CHANGED
|
@@ -291,15 +291,15 @@ h3 {
|
|
|
291
291
|
--c-rich-text_headline--margin:1.5em 0 1em;
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
|
-
:root,
|
|
295
|
-
[ks-inverted],
|
|
296
|
-
[ks-theme] {
|
|
294
|
+
:root, [ks-inverted], [ks-theme] {
|
|
297
295
|
--dsa-text-color-on-primary-base: var(--ks-color-fg-inverted);
|
|
298
296
|
--dsa-text-color-on-primary-inverted-base: var(--ks-color-fg);
|
|
299
|
-
--dsa-overlay-background-color: var(--ks-color-bg-
|
|
300
|
-
--dsa-overlay-background-color-inverted: var(--ks-color-bg-alpha-
|
|
301
|
-
--dsa-overlay-
|
|
302
|
-
--dsa-overlay-text-color
|
|
297
|
+
--dsa-overlay-box--background-color: var(--ks-color-bg-alpha-3);
|
|
298
|
+
--dsa-overlay-box--background-color-inverted: var(--ks-color-bg-inverted-alpha-3);
|
|
299
|
+
--dsa-overlay-box--backdrop-filter: blur(40px);
|
|
300
|
+
--dsa-overlay-box--text-color: var(--ks-color-fg);
|
|
301
|
+
--dsa-overlay-text--shadow: 0 0 10px var(--ks-color-fg-inverted);
|
|
302
|
+
--dsa-overlay-text--text-color: var(--ks-text-color-display);
|
|
303
303
|
--dsa-topic--font: var(--ks-font-display-m);
|
|
304
304
|
--dsa-topic--font-weight: var(--ks-font-weight-semi-bold);
|
|
305
305
|
--dsa-topic--color: var(--ks-text-color-display);
|
|
@@ -326,23 +326,17 @@ h3 {
|
|
|
326
326
|
--dsa-header--height: calc(var(--dsa-logo--height) + var(--ks-spacing-stack-m) + var(--ks-spacing-stack-m));
|
|
327
327
|
}
|
|
328
328
|
@media (min-width: 48em) {
|
|
329
|
-
:root,
|
|
330
|
-
[ks-inverted],
|
|
331
|
-
[ks-theme] {
|
|
329
|
+
:root, [ks-inverted], [ks-theme] {
|
|
332
330
|
--dsa-content--horizontal-spacing: var(--ks-spacing-inset-xl);
|
|
333
331
|
}
|
|
334
332
|
}
|
|
335
333
|
@media (min-width: 48em) {
|
|
336
|
-
:root,
|
|
337
|
-
[ks-inverted],
|
|
338
|
-
[ks-theme] {
|
|
334
|
+
:root, [ks-inverted], [ks-theme] {
|
|
339
335
|
--dsa-logo--height: 2.5rem;
|
|
340
336
|
}
|
|
341
337
|
}
|
|
342
338
|
@media (min-width: 62em) {
|
|
343
|
-
:root,
|
|
344
|
-
[ks-inverted],
|
|
345
|
-
[ks-theme] {
|
|
339
|
+
:root, [ks-inverted], [ks-theme] {
|
|
346
340
|
--dsa-logo--height: 3rem;
|
|
347
341
|
}
|
|
348
342
|
}
|
|
Binary file
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 12 May 2025
|
|
3
|
+
* Generated on Mon, 12 May 2025 12:52:04 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 Mon, 12 May 2025
|
|
2730
|
+
* Generated on Mon, 12 May 2025 12:52:08 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 Mon, 12 May 2025
|
|
5461
|
+
* Generated on Mon, 12 May 2025 12:52:06 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 Mon, 12 May 2025
|
|
8462
|
+
* Generated on Mon, 12 May 2025 12:52:10 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 12 May 2025
|
|
3
|
+
* Generated on Mon, 12 May 2025 12:52:01 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root, [ks-theme] {
|
|
@@ -205,18 +205,18 @@
|
|
|
205
205
|
--ks-border-width-default: 1px;
|
|
206
206
|
--ks-border-width-emphasized: 2px;
|
|
207
207
|
--ks-border-radius-control: 8px;
|
|
208
|
-
--ks-border-radius-card: 8px 8px 8px
|
|
209
|
-
--ks-border-radius-surface:
|
|
208
|
+
--ks-border-radius-card: 8px 8px 8px 32px;
|
|
209
|
+
--ks-border-radius-surface: 16px;
|
|
210
210
|
--ks-border-radius-pill: 999px;
|
|
211
211
|
--ks-border-radius-circle: 50%;
|
|
212
212
|
--ks-box-shadow-opacity-control: 0.2;
|
|
213
213
|
--ks-box-shadow-opacity-control-hover: 0.3;
|
|
214
214
|
--ks-box-shadow-opacity-control-inverted: 0.2;
|
|
215
215
|
--ks-box-shadow-opacity-control-inverted-hover: 0.3;
|
|
216
|
-
--ks-box-shadow-opacity-card: 0.
|
|
217
|
-
--ks-box-shadow-opacity-card-hover: 0.
|
|
218
|
-
--ks-box-shadow-opacity-card-inverted: 0.
|
|
219
|
-
--ks-box-shadow-opacity-card-inverted-hover: 0.
|
|
216
|
+
--ks-box-shadow-opacity-card: 0.1;
|
|
217
|
+
--ks-box-shadow-opacity-card-hover: 0.2;
|
|
218
|
+
--ks-box-shadow-opacity-card-inverted: 0.1;
|
|
219
|
+
--ks-box-shadow-opacity-card-inverted-hover: 0.2;
|
|
220
220
|
--ks-box-shadow-opacity-surface: 0.1;
|
|
221
221
|
--ks-box-shadow-opacity-surface-hover: 0.2;
|
|
222
222
|
--ks-box-shadow-opacity-surface-inverted: 0.1;
|
|
@@ -733,7 +733,7 @@
|
|
|
733
733
|
--ks-spacing-inset-stretch-m: var(--ks-spacing-l) var(--ks-spacing-m);
|
|
734
734
|
--ks-spacing-inset-stretch-l: var(--ks-spacing-xl) var(--ks-spacing-l);
|
|
735
735
|
--ks-spacing-inset-stretch-xl: var(--ks-spacing-xxl) var(--ks-spacing-xl);
|
|
736
|
-
--ks-text-color-default-base: var(--ks-color-fg-base);
|
|
736
|
+
--ks-text-color-default-base: var(--ks-color-fg-alpha-3-base);
|
|
737
737
|
--ks-text-color-default-interactive-base: var(--ks-color-link-base);
|
|
738
738
|
--ks-text-color-default-interactive-hover-base: var(--ks-color-link-base);
|
|
739
739
|
--ks-text-color-default-interactive-active-base: var(--ks-color-link-base);
|
|
@@ -842,7 +842,7 @@
|
|
|
842
842
|
--ks-timing-function-ease-in: ease-in;
|
|
843
843
|
--ks-timing-function-ease-in-out: ease-in-out;
|
|
844
844
|
--ks-timing-function-linear: linear;
|
|
845
|
-
--ks-transition-collapse: var(--ks-duration-
|
|
845
|
+
--ks-transition-collapse: var(--ks-duration-medium) var(--ks-timing-function-ease-out);
|
|
846
846
|
--ks-transition-hover: var(--ks-duration-fast) var(--ks-timing-function-ease-in-out);
|
|
847
847
|
--ks-transition-fade: var(--ks-duration-slow) var(--ks-timing-function-ease-out);
|
|
848
848
|
--ks-font-family-display: Inter, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
|
package/dist/tokens/tokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 12 May 2025
|
|
3
|
+
* Generated on Mon, 12 May 2025 12:52:02 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const KsBackgroundColorAccentBase = "#f3f3f4";
|
|
@@ -204,18 +204,18 @@ export const KsBorderColorNegativeInvertedTranslucentBase = "rgba(210, 29, 72, 0
|
|
|
204
204
|
export const KsBorderWidthDefault = "1px";
|
|
205
205
|
export const KsBorderWidthEmphasized = "2px";
|
|
206
206
|
export const KsBorderRadiusControl = "8px";
|
|
207
|
-
export const KsBorderRadiusCard = "8px 8px 8px
|
|
208
|
-
export const KsBorderRadiusSurface = "
|
|
207
|
+
export const KsBorderRadiusCard = "8px 8px 8px 32px";
|
|
208
|
+
export const KsBorderRadiusSurface = "16px";
|
|
209
209
|
export const KsBorderRadiusPill = "999px";
|
|
210
210
|
export const KsBorderRadiusCircle = "50%";
|
|
211
211
|
export const KsBoxShadowOpacityControl = "0.2";
|
|
212
212
|
export const KsBoxShadowOpacityControlHover = "0.3";
|
|
213
213
|
export const KsBoxShadowOpacityControlInverted = "0.2";
|
|
214
214
|
export const KsBoxShadowOpacityControlInvertedHover = "0.3";
|
|
215
|
-
export const KsBoxShadowOpacityCard = "0.
|
|
216
|
-
export const KsBoxShadowOpacityCardHover = "0.
|
|
217
|
-
export const KsBoxShadowOpacityCardInverted = "0.
|
|
218
|
-
export const KsBoxShadowOpacityCardInvertedHover = "0.
|
|
215
|
+
export const KsBoxShadowOpacityCard = "0.1";
|
|
216
|
+
export const KsBoxShadowOpacityCardHover = "0.2";
|
|
217
|
+
export const KsBoxShadowOpacityCardInverted = "0.1";
|
|
218
|
+
export const KsBoxShadowOpacityCardInvertedHover = "0.2";
|
|
219
219
|
export const KsBoxShadowOpacitySurface = "0.1";
|
|
220
220
|
export const KsBoxShadowOpacitySurfaceHover = "0.2";
|
|
221
221
|
export const KsBoxShadowOpacitySurfaceInverted = "0.1";
|
|
@@ -224,10 +224,10 @@ export const KsBoxShadowColorControl = "rgba(6,8,31,0.2)";
|
|
|
224
224
|
export const KsBoxShadowColorControlHover = "rgba(6,8,31,0.3)";
|
|
225
225
|
export const KsBoxShadowColorControlInverted = "rgba(6,8,31,0.2)";
|
|
226
226
|
export const KsBoxShadowColorControlInvertedHover = "rgba(6,8,31,0.3)";
|
|
227
|
-
export const KsBoxShadowColorCard = "rgba(6,8,31,0.
|
|
228
|
-
export const KsBoxShadowColorCardHover = "rgba(6,8,31,0.
|
|
229
|
-
export const KsBoxShadowColorCardInverted = "rgba(6,8,31,0.
|
|
230
|
-
export const KsBoxShadowColorCardInvertedHover = "rgba(6,8,31,0.
|
|
227
|
+
export const KsBoxShadowColorCard = "rgba(6,8,31,0.1)";
|
|
228
|
+
export const KsBoxShadowColorCardHover = "rgba(6,8,31,0.2)";
|
|
229
|
+
export const KsBoxShadowColorCardInverted = "rgba(6,8,31,0.1)";
|
|
230
|
+
export const KsBoxShadowColorCardInvertedHover = "rgba(6,8,31,0.2)";
|
|
231
231
|
export const KsBoxShadowColorSurface = "rgba(6,8,31,0.1)";
|
|
232
232
|
export const KsBoxShadowColorSurfaceHover = "rgba(6,8,31,0.2)";
|
|
233
233
|
export const KsBoxShadowColorSurfaceInverted = "rgba(6,8,31,0.1)";
|
|
@@ -236,10 +236,10 @@ export const KsBoxShadowControl = "0 1px 2.75px rgba(6,8,31,0.2)";
|
|
|
236
236
|
export const KsBoxShadowControlHover = "0 1px 5.5px rgba(6,8,31,0.3)";
|
|
237
237
|
export const KsBoxShadowControlInverted = "0 1px 2.75px rgba(6,8,31,0.2)";
|
|
238
238
|
export const KsBoxShadowControlInvertedHover = "0 1px 5.5px rgba(6,8,31,0.3)";
|
|
239
|
-
export const KsBoxShadowCard = "0 1px 5.5px rgba(6,8,31,0.
|
|
240
|
-
export const KsBoxShadowCardHover = "0 1px 11px rgba(6,8,31,0.
|
|
241
|
-
export const KsBoxShadowCardInverted = "0 1px 5.5px rgba(6,8,31,0.
|
|
242
|
-
export const KsBoxShadowCardInvertedHover = "0 1px 11px rgba(6,8,31,0.
|
|
239
|
+
export const KsBoxShadowCard = "0 1px 5.5px rgba(6,8,31,0.1)";
|
|
240
|
+
export const KsBoxShadowCardHover = "0 1px 11px rgba(6,8,31,0.2)";
|
|
241
|
+
export const KsBoxShadowCardInverted = "0 1px 5.5px rgba(6,8,31,0.1)";
|
|
242
|
+
export const KsBoxShadowCardInvertedHover = "0 1px 11px rgba(6,8,31,0.2)";
|
|
243
243
|
export const KsBoxShadowSurface = "0 1px 11px rgba(6,8,31,0.1)";
|
|
244
244
|
export const KsBoxShadowSurfaceHover = "0 1px 22px rgba(6,8,31,0.2)";
|
|
245
245
|
export const KsBoxShadowSurfaceInverted = "0 1px 11px rgba(6,8,31,0.1)";
|
|
@@ -737,7 +737,7 @@ export const KsSpacingInsetStretchS = "0.875rem 0.6364rem";
|
|
|
737
737
|
export const KsSpacingInsetStretchM = "1.2031rem 0.875rem";
|
|
738
738
|
export const KsSpacingInsetStretchL = "1.6543rem 1.2031rem";
|
|
739
739
|
export const KsSpacingInsetStretchXl = "2.2747rem 1.6543rem";
|
|
740
|
-
export const KsTextColorDefaultBase = "
|
|
740
|
+
export const KsTextColorDefaultBase = "rgba(6, 8, 31, 0.76)";
|
|
741
741
|
export const KsTextColorDefaultInteractiveBase = "#3065c0";
|
|
742
742
|
export const KsTextColorDefaultInteractiveHoverBase = "#3065c0";
|
|
743
743
|
export const KsTextColorDefaultInteractiveActiveBase = "#3065c0";
|
|
@@ -846,7 +846,7 @@ export const KsTimingFunctionEaseOut = "ease-out";
|
|
|
846
846
|
export const KsTimingFunctionEaseIn = "ease-in";
|
|
847
847
|
export const KsTimingFunctionEaseInOut = "ease-in-out";
|
|
848
848
|
export const KsTimingFunctionLinear = "linear";
|
|
849
|
-
export const KsTransitionCollapse = "
|
|
849
|
+
export const KsTransitionCollapse = "150ms ease-out";
|
|
850
850
|
export const KsTransitionHover = "100ms ease-in-out";
|
|
851
851
|
export const KsTransitionFade = "300ms ease-out";
|
|
852
852
|
export const KsFontFamilyDisplay = "Inter, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif";
|
package/package.json
CHANGED
|
File without changes
|