@kickstartds/ds-agency-premium 1.2.7 → 1.2.8
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/page/page.schema.dereffed.json +0 -20
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/section/index.d.ts +1 -2
- package/dist/components/section/section.schema.dereffed.json +0 -20
- package/dist/components/section/section.schema.json +0 -3
- package/dist/components/split/index.d.ts +9 -1
- package/dist/tokens/themes.css +3 -3
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- package/dist/SplitProps-89ef39c4.d.ts +0 -9
|
@@ -1354,26 +1354,6 @@
|
|
|
1354
1354
|
},
|
|
1355
1355
|
"additionalProperties": false
|
|
1356
1356
|
},
|
|
1357
|
-
{
|
|
1358
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1359
|
-
"$id": "http://schema.mydesignsystem.com/split.schema.json",
|
|
1360
|
-
"title": "Split",
|
|
1361
|
-
"type": "object",
|
|
1362
|
-
"properties": {
|
|
1363
|
-
"layout": {
|
|
1364
|
-
"type": "string",
|
|
1365
|
-
"enum": [
|
|
1366
|
-
"sidebarRight",
|
|
1367
|
-
"sidebarLeft",
|
|
1368
|
-
"even"
|
|
1369
|
-
]
|
|
1370
|
-
},
|
|
1371
|
-
"type": {
|
|
1372
|
-
"const": "split"
|
|
1373
|
-
}
|
|
1374
|
-
},
|
|
1375
|
-
"additionalProperties": false
|
|
1376
|
-
},
|
|
1377
1357
|
{
|
|
1378
1358
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1379
1359
|
"$id": "http://schema.mydesignsystem.com/stats.schema.json",
|
|
@@ -16,7 +16,6 @@ import { ImageTextProps } from "../../ImageTextProps-9286cca4.js";
|
|
|
16
16
|
import { LogosProps } from "../../LogosProps-a8efd101.js";
|
|
17
17
|
import { MosaicProps } from "../../MosaicProps-aacb9422.js";
|
|
18
18
|
import { SliderProps } from "../../SliderProps-8cae490d.js";
|
|
19
|
-
import { SplitProps } from "../../SplitProps-89ef39c4.js";
|
|
20
19
|
import { StatsProps } from "../../StatsProps-17b0743a.js";
|
|
21
20
|
import { TeaserCardProps } from "../../TeaserCardProps-3fce7be4.js";
|
|
22
21
|
import { TestimonialsProps } from "../../TestimonialsProps-4b94faa8.js";
|
|
@@ -106,7 +105,7 @@ type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
|
|
|
106
105
|
/**
|
|
107
106
|
* Allowed components for content
|
|
108
107
|
*/
|
|
109
|
-
type Content = (CtaProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps |
|
|
108
|
+
type Content = (CtaProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
110
109
|
/**
|
|
111
110
|
* Buttons of the Button Group
|
|
112
111
|
*/
|
|
@@ -1340,26 +1340,6 @@
|
|
|
1340
1340
|
},
|
|
1341
1341
|
"additionalProperties": false
|
|
1342
1342
|
},
|
|
1343
|
-
{
|
|
1344
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1345
|
-
"$id": "http://schema.mydesignsystem.com/split.schema.json",
|
|
1346
|
-
"title": "Split",
|
|
1347
|
-
"type": "object",
|
|
1348
|
-
"properties": {
|
|
1349
|
-
"layout": {
|
|
1350
|
-
"type": "string",
|
|
1351
|
-
"enum": [
|
|
1352
|
-
"sidebarRight",
|
|
1353
|
-
"sidebarLeft",
|
|
1354
|
-
"even"
|
|
1355
|
-
]
|
|
1356
|
-
},
|
|
1357
|
-
"type": {
|
|
1358
|
-
"const": "split"
|
|
1359
|
-
}
|
|
1360
|
-
},
|
|
1361
|
-
"additionalProperties": false
|
|
1362
|
-
},
|
|
1363
1343
|
{
|
|
1364
1344
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1365
1345
|
"$id": "http://schema.mydesignsystem.com/stats.schema.json",
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { FC, PropsWithChildren } from "react";
|
|
2
|
-
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
5
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
6
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
7
|
+
*/
|
|
8
|
+
interface SplitProps {
|
|
9
|
+
layout?: "sidebarRight" | "sidebarLeft" | "even";
|
|
10
|
+
}
|
|
3
11
|
declare const Split: FC<PropsWithChildren<SplitProps>>;
|
|
4
12
|
export { Split };
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Tue, 23 Jan 2024
|
|
3
|
+
* Generated on Tue, 23 Jan 2024 12:16:19 GMT
|
|
4
4
|
*/
|
|
5
5
|
:root [ks-theme=google] {
|
|
6
6
|
--ks-background-color-accent-base: var(--ks-color-bg-inverted-alpha-9-base);
|
|
@@ -1555,7 +1555,7 @@
|
|
|
1555
1555
|
}
|
|
1556
1556
|
/**
|
|
1557
1557
|
* Do not edit directly
|
|
1558
|
-
* Generated on Tue, 23 Jan 2024
|
|
1558
|
+
* Generated on Tue, 23 Jan 2024 12:16:17 GMT
|
|
1559
1559
|
*/
|
|
1560
1560
|
:root [ks-theme=lughausen] {
|
|
1561
1561
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -3106,7 +3106,7 @@
|
|
|
3106
3106
|
}
|
|
3107
3107
|
/**
|
|
3108
3108
|
* Do not edit directly
|
|
3109
|
-
* Generated on Tue, 23 Jan 2024
|
|
3109
|
+
* Generated on Tue, 23 Jan 2024 12:16:21 GMT
|
|
3110
3110
|
*/
|
|
3111
3111
|
:root [ks-theme=telekom] {
|
|
3112
3112
|
--ks-background-color-accent-base: var(--ks-color-bg-inverted-alpha-9-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was automatically generated by json-schema-to-typescript.
|
|
3
|
-
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
|
-
* and run json-schema-to-typescript to regenerate this file.
|
|
5
|
-
*/
|
|
6
|
-
interface SplitProps {
|
|
7
|
-
layout?: "sidebarRight" | "sidebarLeft" | "even";
|
|
8
|
-
}
|
|
9
|
-
export { SplitProps };
|