@kickstartds/ds-agency-premium 1.2.6 → 1.2.8--canary.156.b229fdd.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.
Files changed (54) hide show
  1. package/dist/{FeaturesProps-32f5bc0d.d.ts → FeaturesProps-79dea880.d.ts} +39 -39
  2. package/dist/{LogosProps-a8efd101.d.ts → LogosProps-8af8b3c7.d.ts} +3 -3
  3. package/dist/{SplitProps-89ef39c4.d.ts → PageIntroProps-f13f3e7c.d.ts} +8 -3
  4. package/dist/{StatsProps-17b0743a.d.ts → StatsProps-afa48599.d.ts} +3 -3
  5. package/dist/{TeaserCardProps-3fce7be4.d.ts → TeaserCardProps-95b399e9.d.ts} +4 -12
  6. package/dist/{TestimonialsProps-4b94faa8.d.ts → TestimonialsProps-d27ae4b4.d.ts} +3 -3
  7. package/dist/components/feature/index.d.ts +1 -1
  8. package/dist/components/features/features.schema.dereffed.json +4 -3
  9. package/dist/components/features/features.schema.json +3 -3
  10. package/dist/components/features/index.d.ts +1 -1
  11. package/dist/components/features/index.js +3 -3
  12. package/dist/components/logos/index.d.ts +1 -1
  13. package/dist/components/logos/index.js +2 -2
  14. package/dist/components/logos/logos.schema.dereffed.json +2 -2
  15. package/dist/components/logos/logos.schema.json +2 -2
  16. package/dist/components/page/page.schema.dereffed.json +49 -51
  17. package/dist/components/page-intro/index.d.ts +4 -0
  18. package/dist/components/page-intro/index.js +18 -0
  19. package/dist/components/page-intro/page-intro.css +8 -0
  20. package/dist/components/page-intro/page-intro.schema.dereffed.json +30 -0
  21. package/dist/components/page-intro/page-intro.schema.json +26 -0
  22. package/dist/components/page-wrapper/index.d.ts +2 -3
  23. package/dist/components/page-wrapper/index.js +6 -471
  24. package/dist/components/page-wrapper/tokens.css +3 -3
  25. package/dist/components/raw-page-wrapper/index.d.ts +3 -0
  26. package/dist/components/raw-page-wrapper/index.js +492 -0
  27. package/dist/components/section/index.d.ts +8 -8
  28. package/dist/components/section/index.js +1 -1
  29. package/dist/components/section/section.css +15 -3
  30. package/dist/components/section/section.schema.dereffed.json +49 -51
  31. package/dist/components/section/section.schema.json +4 -4
  32. package/dist/components/split/index.d.ts +9 -1
  33. package/dist/components/stats/index.d.ts +1 -1
  34. package/dist/components/stats/index.js +4 -4
  35. package/dist/components/stats/stats.schema.dereffed.json +2 -2
  36. package/dist/components/stats/stats.schema.json +2 -2
  37. package/dist/components/teaser-card/index.d.ts +1 -1
  38. package/dist/components/teaser-card/index.js +6 -3
  39. package/dist/components/teaser-card/teaser-card.schema.dereffed.json +4 -17
  40. package/dist/components/teaser-card/teaser-card.schema.json +5 -13
  41. package/dist/components/testimonials/index.d.ts +1 -1
  42. package/dist/components/testimonials/index.js +4 -4
  43. package/dist/components/testimonials/testimonials.schema.dereffed.json +2 -2
  44. package/dist/components/testimonials/testimonials.schema.json +2 -2
  45. package/dist/static/tokens-google.css +1553 -0
  46. package/dist/static/tokens-lughausen.css +1549 -0
  47. package/dist/static/tokens-telekom.css +1549 -0
  48. package/dist/static/tokens.css +1554 -0
  49. package/dist/tokens/tokens.css +3 -3
  50. package/dist/tokens/tokens.js +3 -3
  51. package/package.json +6 -9
  52. package/dist/tokens/themes.css +0 -4657
  53. package/dist/tokens/themes.css.d.ts +0 -0
  54. package/dist/tokens/themes.css.js +0 -1
@@ -217,13 +217,13 @@
217
217
  "title": "Tile Width",
218
218
  "description": "Set min-width for the tiles in the grid",
219
219
  "enum": [
220
- "smallest",
221
- "default",
220
+ "control",
221
+ "card",
222
+ "narrow",
222
223
  "medium",
223
- "large",
224
- "largest"
224
+ "wide"
225
225
  ],
226
- "default": "default"
226
+ "default": "cards"
227
227
  }
228
228
  },
229
229
  "additionalProperties": false
@@ -490,9 +490,9 @@
490
490
  },
491
491
  "additionalProperties": false
492
492
  },
493
- "items": {
493
+ "features": {
494
494
  "type": "array",
495
- "title": "Items",
495
+ "title": "Features",
496
496
  "description": "The features to display",
497
497
  "items": {
498
498
  "type": "object",
@@ -548,7 +548,8 @@
548
548
  },
549
549
  "additionalProperties": false,
550
550
  "required": [
551
- "title"
551
+ "title",
552
+ "text"
552
553
  ]
553
554
  },
554
555
  "minItems": 1,
@@ -1058,9 +1059,9 @@
1058
1059
  "Your Success, Our Commitment"
1059
1060
  ]
1060
1061
  },
1061
- "items": {
1062
+ "logos": {
1062
1063
  "type": "array",
1063
- "title": "Items",
1064
+ "title": "Logos",
1064
1065
  "description": "The logos to display",
1065
1066
  "items": {
1066
1067
  "type": "object",
@@ -1296,6 +1297,36 @@
1296
1297
  },
1297
1298
  "additionalProperties": false
1298
1299
  },
1300
+ {
1301
+ "$schema": "http://json-schema.org/draft-07/schema#",
1302
+ "$id": "http://schema.mydesignsystem.com/page-intro.schema.json",
1303
+ "title": "Page Intro",
1304
+ "type": "object",
1305
+ "properties": {
1306
+ "headline": {
1307
+ "type": "string"
1308
+ },
1309
+ "sub": {
1310
+ "type": "string"
1311
+ },
1312
+ "link": {
1313
+ "type": "object",
1314
+ "properties": {
1315
+ "href": {
1316
+ "type": "string"
1317
+ },
1318
+ "label": {
1319
+ "type": "string"
1320
+ }
1321
+ },
1322
+ "additionalProperties": false
1323
+ },
1324
+ "type": {
1325
+ "const": "page-intro"
1326
+ }
1327
+ },
1328
+ "additionalProperties": false
1329
+ },
1299
1330
  {
1300
1331
  "$schema": "http://json-schema.org/draft-07/schema#",
1301
1332
  "$id": "http://schema.mydesignsystem.com/slider.schema.json",
@@ -1354,26 +1385,6 @@
1354
1385
  },
1355
1386
  "additionalProperties": false
1356
1387
  },
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
1388
  {
1378
1389
  "$schema": "http://json-schema.org/draft-07/schema#",
1379
1390
  "$id": "http://schema.mydesignsystem.com/stats.schema.json",
@@ -1381,9 +1392,9 @@
1381
1392
  "description": "Component used to display stats with a number upcounter",
1382
1393
  "type": "object",
1383
1394
  "properties": {
1384
- "items": {
1385
- "title": "Items",
1395
+ "stats": {
1386
1396
  "type": "array",
1397
+ "title": "Stats",
1387
1398
  "description": "The stats to display with a number upcounter",
1388
1399
  "items": {
1389
1400
  "type": "object",
@@ -1489,25 +1500,15 @@
1489
1500
  "properties": {
1490
1501
  "label": {
1491
1502
  "title": "Label",
1492
- "type": "string",
1493
- "description": "Label of the button. Still A11Y relevant when the button is hidden."
1494
- },
1495
- "chevron": {
1496
- "title": "Icon",
1497
- "description": "Toggle chevron icon",
1498
- "type": "boolean",
1499
- "default": false
1503
+ "type": "string"
1500
1504
  },
1501
- "hidden": {
1505
+ "displayButton": {
1502
1506
  "type": "boolean",
1503
1507
  "title": "Display Button",
1504
1508
  "description": "Toggle wether you want the card to have a visible button or not",
1505
- "default": false
1509
+ "default": true
1506
1510
  }
1507
1511
  },
1508
- "required": [
1509
- "label"
1510
- ],
1511
1512
  "additionalProperties": false
1512
1513
  },
1513
1514
  "image": {
@@ -1532,10 +1533,7 @@
1532
1533
  }
1533
1534
  },
1534
1535
  "additionalProperties": false,
1535
- "required": [
1536
- "topic",
1537
- "target"
1538
- ]
1536
+ "required": []
1539
1537
  },
1540
1538
  {
1541
1539
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -1555,9 +1553,9 @@
1555
1553
  ],
1556
1554
  "default": "slider"
1557
1555
  },
1558
- "items": {
1556
+ "testimonials": {
1559
1557
  "type": "array",
1560
- "title": "Items",
1558
+ "title": "Testimonials",
1561
1559
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
1562
1560
  "items": {
1563
1561
  "type": "object",
@@ -0,0 +1,4 @@
1
+ import { FC, PropsWithChildren } from "react";
2
+ import { PageIntroProps } from "../../PageIntroProps-f13f3e7c.js";
3
+ declare const PageIntro: FC<PropsWithChildren<PageIntroProps>>;
4
+ export { PageIntro };
@@ -0,0 +1,18 @@
1
+ import "./page-intro.css";
2
+ import { jsx, jsxs } from 'react/jsx-runtime';
3
+ import { Headline } from '@kickstartds/base/lib/headline';
4
+ import { Link } from '@kickstartds/base/lib/link';
5
+ import { Icon } from '@kickstartds/base/lib/icon';
6
+ import { Section } from '../section/index.js';
7
+ import 'react';
8
+ import 'classnames';
9
+ import '@kickstartds/core/lib/react';
10
+ import '@kickstartds/base/lib/section';
11
+ import '../section/js/Section.client.js';
12
+ import '@kickstartds/core/lib/component';
13
+
14
+ const PageIntro = ({ headline, sub, link, }) => {
15
+ return (jsx(Section, { headerSpacing: true, className: "l-section--page-intro", children: jsxs("div", { className: "c-page-intro", children: [jsxs(Link, { href: link.href, className: "g-link", children: [jsx(Icon, { icon: "arrow-left" }), link.label] }), jsx(Headline, { text: headline, sub: sub, level: "h1", style: "h1" })] }) }));
16
+ };
17
+
18
+ export { PageIntro };
@@ -0,0 +1,8 @@
1
+ .l-section.l-section--page-intro {
2
+ background: var(--dsa-interface--gradient);
3
+ }
4
+ .l-section.l-section--page-intro .c-page-intro {
5
+ display: flex;
6
+ flex-direction: column;
7
+ gap: var(--ks-spacing-stack-s);
8
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "http://schema.mydesignsystem.com/page-intro.schema.json",
4
+ "title": "Page Intro",
5
+ "type": "object",
6
+ "properties": {
7
+ "headline": {
8
+ "type": "string"
9
+ },
10
+ "sub": {
11
+ "type": "string"
12
+ },
13
+ "link": {
14
+ "type": "object",
15
+ "properties": {
16
+ "href": {
17
+ "type": "string"
18
+ },
19
+ "label": {
20
+ "type": "string"
21
+ }
22
+ },
23
+ "additionalProperties": false
24
+ },
25
+ "type": {
26
+ "const": "page-intro"
27
+ }
28
+ },
29
+ "additionalProperties": false
30
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "http://schema.mydesignsystem.com/page-intro.schema.json",
4
+ "title": "Page Intro",
5
+ "type": "object",
6
+ "properties": {
7
+ "headline": {
8
+ "type": "string"
9
+ },
10
+ "sub": {
11
+ "type": "string"
12
+ },
13
+ "link": {
14
+ "type": "object",
15
+ "properties": {
16
+ "href": {
17
+ "type": "string"
18
+ },
19
+ "label": {
20
+ "type": "string"
21
+ }
22
+ }
23
+ }
24
+ },
25
+ "additionalProperties": false
26
+ }
@@ -1,3 +1,2 @@
1
- import { FC, PropsWithChildren } from "react";
2
- declare const PageWrapper: FC<PropsWithChildren>;
3
- export { PageWrapper };
1
+ import { RawPageWrapper as PageWrapper } from "../raw-page-wrapper/index.js";
2
+ export { PageWrapper as default, PageWrapper };