@kickstartds/ds-agency-premium 1.6.69--canary.45.1730.0 → 1.6.69--canary.45.1732.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-7caa223c.d.ts → BlogOverviewProps-9f207f1c.d.ts} +1 -1
- package/dist/{BlogPostProps-c760fd2a.d.ts → BlogPostProps-6b3cff22.d.ts} +1 -1
- package/dist/{PageProps-7caa223c.d.ts → PageProps-aa29c554.d.ts} +1 -1
- package/dist/{SectionProps-00ddee3a.d.ts → SectionProps-7caa223c.d.ts} +1 -1
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page-wrapper/index.js +16 -0
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/pagination/index.d.ts +25 -0
- package/dist/components/pagination/index.js +26 -0
- package/dist/components/pagination/pagination.css +30 -0
- package/dist/components/pagination/pagination.schema.dereffed.json +33 -0
- package/dist/components/pagination/pagination.schema.json +27 -0
- package/dist/components/presets.json +39 -0
- package/dist/components/section/index.d.ts +1 -1
- package/dist/tokens/IconSprite.js +16 -0
- package/dist/tokens/icon-sprite.html +6 -0
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +3 -1
- package/package.json +1 -1
- /package/dist/{ImageStoryProps-00ddee3a.d.ts → ImageStoryProps-e853e1e7.d.ts} +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
-
import { SectionProps } from "./SectionProps-
|
|
6
|
+
import { SectionProps } from "./SectionProps-7caa223c.js";
|
|
7
7
|
import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
|
|
8
8
|
import { CtaProps } from "./CtaProps-babe4ee6.js";
|
|
9
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
|
|
7
7
|
import { BlogAsideProps } from "./BlogAsideProps-c760fd2a.js";
|
|
8
|
-
import { SectionProps } from "./SectionProps-
|
|
8
|
+
import { SectionProps } from "./SectionProps-7caa223c.js";
|
|
9
9
|
import { CtaProps } from "./CtaProps-babe4ee6.js";
|
|
10
10
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
11
11
|
/**
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
-
import { SectionProps } from "./SectionProps-
|
|
6
|
+
import { SectionProps } from "./SectionProps-7caa223c.js";
|
|
7
7
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
8
8
|
/**
|
|
9
9
|
* Collection of sections (with their contents) to render on the page
|
|
@@ -10,7 +10,7 @@ import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-40f6c7f5.js";
|
|
12
12
|
import { HtmlProps } from "./HtmlProps-9d091769.js";
|
|
13
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
|
|
14
14
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
15
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
16
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
1
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
|
|
4
4
|
export type { BlogOverviewProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-6b3cff22.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
3
|
+
import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
|
|
4
4
|
declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -29,8 +29,8 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
33
|
-
export * from "../../BlogOverviewProps-
|
|
34
|
-
export * from "../../PageProps-
|
|
32
|
+
export * from "../../BlogPostProps-6b3cff22.js";
|
|
33
|
+
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
34
|
+
export * from "../../PageProps-aa29c554.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
|
36
36
|
export * from "../../EventDetailProps-42a7eebe.js";
|
|
@@ -70,6 +70,22 @@ var IconSprite = (() => /*#__PURE__*/ jsxs("svg", {
|
|
|
70
70
|
children: /*#__PURE__*/ jsx("path", {
|
|
71
71
|
d: "M13.4 12L18.7 6.7C19.1 6.3 19.1 5.7 18.7 5.3C18.3 4.9 17.7 4.9 17.3 5.3L12 10.6L6.7 5.3C6.3 4.9 5.7 4.9 5.3 5.3C4.9 5.7 4.9 6.3 5.3 6.7L10.6 12L5.3 17.3C4.9 17.7 4.9 18.3 5.3 18.7C5.5 18.9 5.7 19 6 19C6.3 19 6.5 18.9 6.7 18.7L12 13.4L17.3 18.7C17.5 18.9 17.8 19 18 19C18.2 19 18.5 18.9 18.7 18.7C19.1 18.3 19.1 17.7 18.7 17.3L13.4 12Z"
|
|
72
72
|
})
|
|
73
|
+
}), /*#__PURE__*/ jsxs("symbol", {
|
|
74
|
+
id: "icon-skip-back",
|
|
75
|
+
viewBox: "0 0 24 24",
|
|
76
|
+
children: [/*#__PURE__*/ jsx("path", {
|
|
77
|
+
d: "M18.375 3.21875C18.6752 2.97861 19.0871 2.93211 19.4336 3.09863C19.7799 3.26521 20 3.61571 20 4V20C20 20.3843 19.7799 20.7348 19.4336 20.9014C19.0871 21.0679 18.6752 21.0214 18.375 20.7812L8.375 12.7813C8.13778 12.5915 8 12.3038 8 12C8 11.6962 8.13778 11.4085 8.375 11.2188L18.375 3.21875ZM10.6016 12L18 17.918V6.08106L10.6016 12Z"
|
|
78
|
+
}), /*#__PURE__*/ jsx("path", {
|
|
79
|
+
d: "M4 19V5C4 4.44772 4.44772 4 5 4C5.55228 4 6 4.44772 6 5V19C6 19.5523 5.55228 20 5 20C4.44772 20 4 19.5523 4 19Z"
|
|
80
|
+
})]
|
|
81
|
+
}), /*#__PURE__*/ jsxs("symbol", {
|
|
82
|
+
id: "icon-skip-forward",
|
|
83
|
+
viewBox: "0 0 24 24",
|
|
84
|
+
children: [/*#__PURE__*/ jsx("path", {
|
|
85
|
+
d: "M4.56641 3.09863C4.91287 2.93211 5.32483 2.97861 5.625 3.21875L15.625 11.2188C15.8622 11.4085 16 11.6962 16 12C16 12.3038 15.8622 12.5915 15.625 12.7813L5.625 20.7812C5.32483 21.0214 4.91287 21.0679 4.56641 20.9014C4.22012 20.7348 4 20.3843 4 20V4C4 3.61571 4.22012 3.26521 4.56641 3.09863ZM6 17.918L13.3984 12L6 6.08106V17.918Z"
|
|
86
|
+
}), /*#__PURE__*/ jsx("path", {
|
|
87
|
+
d: "M18 19V5C18 4.44772 18.4477 4 19 4C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20C18.4477 20 18 19.5523 18 19Z"
|
|
88
|
+
})]
|
|
73
89
|
}), /*#__PURE__*/ jsxs("symbol", {
|
|
74
90
|
id: "icon-zoom",
|
|
75
91
|
viewBox: "0 0 24 24",
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HTMLAttributes } from "react";
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
6
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
7
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
8
|
+
*/
|
|
9
|
+
interface PaginationProps {
|
|
10
|
+
pages?: {
|
|
11
|
+
/**
|
|
12
|
+
* The URL to the page
|
|
13
|
+
*/
|
|
14
|
+
url: string;
|
|
15
|
+
/**
|
|
16
|
+
* Indicates if the page is currently active
|
|
17
|
+
*/
|
|
18
|
+
active?: boolean;
|
|
19
|
+
}[];
|
|
20
|
+
}
|
|
21
|
+
declare const PaginationContextDefault: import("react").ForwardRefExoticComponent<PaginationProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
22
|
+
declare const PaginationContext: import("react").Context<import("react").ForwardRefExoticComponent<PaginationProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
23
|
+
declare const Pagination: import("react").ForwardRefExoticComponent<PaginationProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
24
|
+
export type { PaginationProps };
|
|
25
|
+
export { PaginationContextDefault, PaginationContext, Pagination };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import "./pagination.css";
|
|
2
|
+
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
3
|
+
import classnames from 'classnames';
|
|
4
|
+
import { forwardRef, createContext, useContext } from 'react';
|
|
5
|
+
import { Icon } from '@kickstartds/base/lib/icon';
|
|
6
|
+
import { Link } from '@kickstartds/base/lib/link';
|
|
7
|
+
|
|
8
|
+
const PaginationContextDefault = forwardRef(({ pages }, ref) => {
|
|
9
|
+
return (jsxs("div", { className: "dsa-pagination", ref: ref, children: [pages.findIndex((page) => page.active) !== 0 && (jsxs(Fragment, { children: [jsx(Link, { className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--skip-back", href: pages[0]?.url, children: jsx(Icon, { icon: "skip-back" }) }), jsx(Link, { className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--prev", href: (() => {
|
|
10
|
+
const activeIndex = pages.findIndex((page) => page.active);
|
|
11
|
+
// Use the url of the next item after the active one, or "#" if at the end
|
|
12
|
+
return pages[activeIndex - 1]?.url || "#";
|
|
13
|
+
})(), children: jsx(Icon, { icon: "chevron-left" }) })] })), pages.map((page, index) => (jsx(Link, { className: classnames("dsa-pagination__link", page.active && "dsa-pagination__link--active"), href: page.url, children: (index + 1).toString() }, index))), pages.findIndex((page) => page.active) !== pages.length - 1 && (jsxs(Fragment, { children: [jsx(Link, { className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--next", href: (() => {
|
|
14
|
+
const activeIndex = pages.findIndex((page) => page.active);
|
|
15
|
+
// Use the url of the next item after the active one, or "#" if at the end
|
|
16
|
+
return pages[activeIndex + 1]?.url || "#";
|
|
17
|
+
})(), children: jsx(Icon, { icon: "chevron-right" }) }), jsx(Link, { className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--skip-forward", href: pages[pages.length - 1]?.url, children: jsx(Icon, { icon: "skip-forward" }) })] }))] }));
|
|
18
|
+
});
|
|
19
|
+
const PaginationContext = createContext(PaginationContextDefault);
|
|
20
|
+
const Pagination = forwardRef((props, ref) => {
|
|
21
|
+
const Component = useContext(PaginationContext);
|
|
22
|
+
return jsx(Component, { ...props, ref: ref });
|
|
23
|
+
});
|
|
24
|
+
Pagination.displayName = "Pagination";
|
|
25
|
+
|
|
26
|
+
export { Pagination, PaginationContext, PaginationContextDefault };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.dsa-pagination {
|
|
2
|
+
display: flex;
|
|
3
|
+
gap: var(--dsa-pagination--gap, var(--ks-spacing-stack-xs));
|
|
4
|
+
}
|
|
5
|
+
.dsa-pagination__link {
|
|
6
|
+
--g-link--background: transparent;
|
|
7
|
+
--g-link--background-hover: var(--ks-color-fg-alpha-8);
|
|
8
|
+
--g-link--color: var(--ks-text-color-interface-interactive);
|
|
9
|
+
--g-link--color-hover: var(--ks-text-color-interface-interactive);
|
|
10
|
+
--g-link--border-radius: var(--ks-border-radius-control);
|
|
11
|
+
font: var(--ks-font-interface-s);
|
|
12
|
+
line-height: 1;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: center;
|
|
16
|
+
width: 3em;
|
|
17
|
+
padding: 0.5em;
|
|
18
|
+
aspect-ratio: 1;
|
|
19
|
+
}
|
|
20
|
+
.dsa-pagination__link--icon .icon {
|
|
21
|
+
width: 1.25em;
|
|
22
|
+
height: 1.25em;
|
|
23
|
+
fill: var(--g-link--color);
|
|
24
|
+
}
|
|
25
|
+
.dsa-pagination__link--active {
|
|
26
|
+
--g-link--background: var(--ks-background-color-primary-interactive);
|
|
27
|
+
--g-link--background-hover: var(--ks-background-color-primary-interactive-hover);
|
|
28
|
+
--g-link--color: var(--dsa-text-color-on-primary);
|
|
29
|
+
--g-link--color-hover: var(--dsa-text-color-on-primary);
|
|
30
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://schema.mydesignsystem.com/pagination.schema.json",
|
|
4
|
+
"title": "Pagination",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"pages": {
|
|
8
|
+
"type": "array",
|
|
9
|
+
"items": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {
|
|
12
|
+
"url": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "The URL to the page"
|
|
15
|
+
},
|
|
16
|
+
"active": {
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
"description": "Indicates if the page is currently active",
|
|
19
|
+
"default": false
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"required": [
|
|
23
|
+
"url"
|
|
24
|
+
],
|
|
25
|
+
"additionalProperties": false
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"type": {
|
|
29
|
+
"const": "pagination"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"additionalProperties": false
|
|
33
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://schema.mydesignsystem.com/pagination.schema.json",
|
|
4
|
+
"title": "Pagination",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"pages": {
|
|
8
|
+
"type": "array",
|
|
9
|
+
"items": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {
|
|
12
|
+
"url": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "The URL to the page"
|
|
15
|
+
},
|
|
16
|
+
"active": {
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
"description": "Indicates if the page is currently active",
|
|
19
|
+
"default": false
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"required": ["url"]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"additionalProperties": false
|
|
27
|
+
}
|
|
@@ -3008,6 +3008,45 @@
|
|
|
3008
3008
|
},
|
|
3009
3009
|
"screenshot": "img/screenshots/components-mosaic--colorful-text-with-illustrations.png"
|
|
3010
3010
|
},
|
|
3011
|
+
{
|
|
3012
|
+
"id": "industry-pagination--default",
|
|
3013
|
+
"group": "Industry/Pagination",
|
|
3014
|
+
"name": "Default",
|
|
3015
|
+
"code": "<Pagination\n pages={[\n {\n active: false,\n url: 'https://example.com/page1'\n },\n {\n active: false,\n url: 'https://example.com/page2'\n },\n {\n active: false,\n url: 'https://example.com/page3'\n },\n {\n active: false,\n url: 'https://example.com/page4'\n },\n {\n active: false,\n url: 'https://example.com/page5'\n },\n {\n active: false,\n url: 'https://example.com/page6'\n },\n {\n active: true,\n url: 'https://example.com/page7'\n }\n ]}\n />",
|
|
3016
|
+
"args": {
|
|
3017
|
+
"pages": [
|
|
3018
|
+
{
|
|
3019
|
+
"active": false,
|
|
3020
|
+
"url": "https://example.com/page1"
|
|
3021
|
+
},
|
|
3022
|
+
{
|
|
3023
|
+
"active": false,
|
|
3024
|
+
"url": "https://example.com/page2"
|
|
3025
|
+
},
|
|
3026
|
+
{
|
|
3027
|
+
"active": false,
|
|
3028
|
+
"url": "https://example.com/page3"
|
|
3029
|
+
},
|
|
3030
|
+
{
|
|
3031
|
+
"active": false,
|
|
3032
|
+
"url": "https://example.com/page4"
|
|
3033
|
+
},
|
|
3034
|
+
{
|
|
3035
|
+
"active": false,
|
|
3036
|
+
"url": "https://example.com/page5"
|
|
3037
|
+
},
|
|
3038
|
+
{
|
|
3039
|
+
"active": false,
|
|
3040
|
+
"url": "https://example.com/page6"
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
"active": true,
|
|
3044
|
+
"url": "https://example.com/page7"
|
|
3045
|
+
}
|
|
3046
|
+
]
|
|
3047
|
+
},
|
|
3048
|
+
"screenshot": "img/screenshots/industry-pagination--default.png"
|
|
3049
|
+
},
|
|
3011
3050
|
{
|
|
3012
3051
|
"id": "layout-section--cards",
|
|
3013
3052
|
"group": "Layout/Section",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes, FC, PropsWithChildren } from "react";
|
|
3
|
-
import { SectionProps } from "../../SectionProps-
|
|
3
|
+
import { SectionProps } from "../../SectionProps-7caa223c.js";
|
|
4
4
|
declare const SectionContextDefault: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const SectionContext: import("react").Context<import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const Section: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -42,6 +42,22 @@ export default (() => /*#__PURE__*/_jsxs("svg", {
|
|
|
42
42
|
children: /*#__PURE__*/_jsx("path", {
|
|
43
43
|
d: "M13.4 12L18.7 6.7C19.1 6.3 19.1 5.7 18.7 5.3C18.3 4.9 17.7 4.9 17.3 5.3L12 10.6L6.7 5.3C6.3 4.9 5.7 4.9 5.3 5.3C4.9 5.7 4.9 6.3 5.3 6.7L10.6 12L5.3 17.3C4.9 17.7 4.9 18.3 5.3 18.7C5.5 18.9 5.7 19 6 19C6.3 19 6.5 18.9 6.7 18.7L12 13.4L17.3 18.7C17.5 18.9 17.8 19 18 19C18.2 19 18.5 18.9 18.7 18.7C19.1 18.3 19.1 17.7 18.7 17.3L13.4 12Z"
|
|
44
44
|
})
|
|
45
|
+
}), /*#__PURE__*/_jsxs("symbol", {
|
|
46
|
+
id: "icon-skip-back",
|
|
47
|
+
viewBox: "0 0 24 24",
|
|
48
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
49
|
+
d: "M18.375 3.21875C18.6752 2.97861 19.0871 2.93211 19.4336 3.09863C19.7799 3.26521 20 3.61571 20 4V20C20 20.3843 19.7799 20.7348 19.4336 20.9014C19.0871 21.0679 18.6752 21.0214 18.375 20.7812L8.375 12.7813C8.13778 12.5915 8 12.3038 8 12C8 11.6962 8.13778 11.4085 8.375 11.2188L18.375 3.21875ZM10.6016 12L18 17.918V6.08106L10.6016 12Z"
|
|
50
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
51
|
+
d: "M4 19V5C4 4.44772 4.44772 4 5 4C5.55228 4 6 4.44772 6 5V19C6 19.5523 5.55228 20 5 20C4.44772 20 4 19.5523 4 19Z"
|
|
52
|
+
})]
|
|
53
|
+
}), /*#__PURE__*/_jsxs("symbol", {
|
|
54
|
+
id: "icon-skip-forward",
|
|
55
|
+
viewBox: "0 0 24 24",
|
|
56
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
57
|
+
d: "M4.56641 3.09863C4.91287 2.93211 5.32483 2.97861 5.625 3.21875L15.625 11.2188C15.8622 11.4085 16 11.6962 16 12C16 12.3038 15.8622 12.5915 15.625 12.7813L5.625 20.7812C5.32483 21.0214 4.91287 21.0679 4.56641 20.9014C4.22012 20.7348 4 20.3843 4 20V4C4 3.61571 4.22012 3.26521 4.56641 3.09863ZM6 17.918L13.3984 12L6 6.08106V17.918Z"
|
|
58
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
59
|
+
d: "M18 19V5C18 4.44772 18.4477 4 19 4C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20C18.4477 20 18 19.5523 18 19Z"
|
|
60
|
+
})]
|
|
45
61
|
}), /*#__PURE__*/_jsxs("symbol", {
|
|
46
62
|
id: "icon-zoom",
|
|
47
63
|
viewBox: "0 0 24 24",
|
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
<path d="M9 19C8.7 19 8.5 18.9 8.3 18.7C7.9 18.3 7.9 17.7 8.3 17.3L13.6 12L8.3 6.7C7.9 6.3 7.9 5.7 8.3 5.3C8.7 4.9 9.3 4.9 9.7 5.3L15.7 11.3C16.1 11.7 16.1 12.3 15.7 12.7L9.7 18.7C9.5 18.9 9.3 19 9 19Z"/>
|
|
11
11
|
</symbol><symbol id="icon-close" viewBox="0 0 24 24">
|
|
12
12
|
<path d="M13.4 12L18.7 6.7C19.1 6.3 19.1 5.7 18.7 5.3C18.3 4.9 17.7 4.9 17.3 5.3L12 10.6L6.7 5.3C6.3 4.9 5.7 4.9 5.3 5.3C4.9 5.7 4.9 6.3 5.3 6.7L10.6 12L5.3 17.3C4.9 17.7 4.9 18.3 5.3 18.7C5.5 18.9 5.7 19 6 19C6.3 19 6.5 18.9 6.7 18.7L12 13.4L17.3 18.7C17.5 18.9 17.8 19 18 19C18.2 19 18.5 18.9 18.7 18.7C19.1 18.3 19.1 17.7 18.7 17.3L13.4 12Z"/>
|
|
13
|
+
</symbol><symbol id="icon-skip-back" viewBox="0 0 24 24">
|
|
14
|
+
<path d="M18.375 3.21875C18.6752 2.97861 19.0871 2.93211 19.4336 3.09863C19.7799 3.26521 20 3.61571 20 4V20C20 20.3843 19.7799 20.7348 19.4336 20.9014C19.0871 21.0679 18.6752 21.0214 18.375 20.7812L8.375 12.7813C8.13778 12.5915 8 12.3038 8 12C8 11.6962 8.13778 11.4085 8.375 11.2188L18.375 3.21875ZM10.6016 12L18 17.918V6.08106L10.6016 12Z"/>
|
|
15
|
+
<path d="M4 19V5C4 4.44772 4.44772 4 5 4C5.55228 4 6 4.44772 6 5V19C6 19.5523 5.55228 20 5 20C4.44772 20 4 19.5523 4 19Z"/>
|
|
16
|
+
</symbol><symbol id="icon-skip-forward" viewBox="0 0 24 24">
|
|
17
|
+
<path d="M4.56641 3.09863C4.91287 2.93211 5.32483 2.97861 5.625 3.21875L15.625 11.2188C15.8622 11.4085 16 11.6962 16 12C16 12.3038 15.8622 12.5915 15.625 12.7813L5.625 20.7812C5.32483 21.0214 4.91287 21.0679 4.56641 20.9014C4.22012 20.7348 4 20.3843 4 20V4C4 3.61571 4.22012 3.26521 4.56641 3.09863ZM6 17.918L13.3984 12L6 6.08106V17.918Z"/>
|
|
18
|
+
<path d="M18 19V5C18 4.44772 18.4477 4 19 4C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20C18.4477 20 18 19.5523 18 19Z"/>
|
|
13
19
|
</symbol><symbol id="icon-zoom" viewBox="0 0 24 24">
|
|
14
20
|
<path d="M21.7 20.3L18 16.6C19.2 15.1 20 13.1 20 11C20 6 16 2 11 2C6 2 2 6 2 11C2 16 6 20 11 20C13.1 20 15.1 19.3 16.6 18L20.3 21.7C20.5 21.9 20.8 22 21 22C21.2 22 21.5 21.9 21.7 21.7C22.1 21.3 22.1 20.7 21.7 20.3ZM4 11C4 7.1 7.1 4 11 4C14.9 4 18 7.1 18 11C18 12.9 17.2 14.7 16 15.9C14.7 17.2 13 17.9 11.1 17.9C7.1 18 4 14.9 4 11Z"/>
|
|
15
21
|
<path d="M14 10H12V8C12 7.4 11.6 7 11 7C10.4 7 10 7.4 10 8V10H8C7.4 10 7 10.4 7 11C7 11.6 7.4 12 8 12H10V14C10 14.6 10.4 15 11 15C11.6 15 12 14.6 12 14V12H14C14.6 12 15 11.6 15 11C15 10.4 14.6 10 14 10Z"/>
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu, 26 Jun 2025 11:
|
|
3
|
+
* Generated on Thu, 26 Jun 2025 11:30:49 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 Thu, 26 Jun 2025 11:
|
|
2730
|
+
* Generated on Thu, 26 Jun 2025 11:30:53 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 Thu, 26 Jun 2025 11:
|
|
5461
|
+
* Generated on Thu, 26 Jun 2025 11:30:51 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 Thu, 26 Jun 2025 11:
|
|
8462
|
+
* Generated on Thu, 26 Jun 2025 11:30:55 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu, 26 Jun 2025 11:
|
|
3
|
+
* Generated on Thu, 26 Jun 2025 11:30:47 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const KsBackgroundColorAccentBase = "#f3f3f4";
|
|
@@ -928,6 +928,8 @@ export const IconsChevronDown = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 2
|
|
|
928
928
|
export const IconsChevronLeft = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M15 5C15.3 5 15.5 5.1 15.7 5.3C16.1 5.7 16.1 6.3 15.7 6.7L10.4 12L15.7 17.3C16.1 17.7 16.1 18.3 15.7 18.7C15.3 19.1 14.7 19.1 14.3 18.7L8.3 12.7C7.9 12.3 7.9 11.7 8.3 11.3L14.3 5.3C14.5 5.1 14.7 5 15 5Z\"\n />\n</svg>";
|
|
929
929
|
export const IconsChevronRight = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M9 19C8.7 19 8.5 18.9 8.3 18.7C7.9 18.3 7.9 17.7 8.3 17.3L13.6 12L8.3 6.7C7.9 6.3 7.9 5.7 8.3 5.3C8.7 4.9 9.3 4.9 9.7 5.3L15.7 11.3C16.1 11.7 16.1 12.3 15.7 12.7L9.7 18.7C9.5 18.9 9.3 19 9 19Z\" />\n</svg>";
|
|
930
930
|
export const IconsClose = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M13.4 12L18.7 6.7C19.1 6.3 19.1 5.7 18.7 5.3C18.3 4.9 17.7 4.9 17.3 5.3L12 10.6L6.7 5.3C6.3 4.9 5.7 4.9 5.3 5.3C4.9 5.7 4.9 6.3 5.3 6.7L10.6 12L5.3 17.3C4.9 17.7 4.9 18.3 5.3 18.7C5.5 18.9 5.7 19 6 19C6.3 19 6.5 18.9 6.7 18.7L12 13.4L17.3 18.7C17.5 18.9 17.8 19 18 19C18.2 19 18.5 18.9 18.7 18.7C19.1 18.3 19.1 17.7 18.7 17.3L13.4 12Z\" />\n</svg>";
|
|
931
|
+
export const IconsSkipBack = "<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M18.375 3.21875C18.6752 2.97861 19.0871 2.93211 19.4336 3.09863C19.7799 3.26521 20 3.61571 20 4V20C20 20.3843 19.7799 20.7348 19.4336 20.9014C19.0871 21.0679 18.6752 21.0214 18.375 20.7812L8.375 12.7813C8.13778 12.5915 8 12.3038 8 12C8 11.6962 8.13778 11.4085 8.375 11.2188L18.375 3.21875ZM10.6016 12L18 17.918V6.08106L10.6016 12Z\"\n />\n <path\n d=\"M4 19V5C4 4.44772 4.44772 4 5 4C5.55228 4 6 4.44772 6 5V19C6 19.5523 5.55228 20 5 20C4.44772 20 4 19.5523 4 19Z\"\n />\n</svg>";
|
|
932
|
+
export const IconsSkipForward = "<svg viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M4.56641 3.09863C4.91287 2.93211 5.32483 2.97861 5.625 3.21875L15.625 11.2188C15.8622 11.4085 16 11.6962 16 12C16 12.3038 15.8622 12.5915 15.625 12.7813L5.625 20.7812C5.32483 21.0214 4.91287 21.0679 4.56641 20.9014C4.22012 20.7348 4 20.3843 4 20V4C4 3.61571 4.22012 3.26521 4.56641 3.09863ZM6 17.918L13.3984 12L6 6.08106V17.918Z\"\n />\n <path\n d=\"M18 19V5C18 4.44772 18.4477 4 19 4C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20C18.4477 20 18 19.5523 18 19Z\"\n />\n</svg>";
|
|
931
933
|
export const IconsZoom = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M21.7 20.3L18 16.6C19.2 15.1 20 13.1 20 11C20 6 16 2 11 2C6 2 2 6 2 11C2 16 6 20 11 20C13.1 20 15.1 19.3 16.6 18L20.3 21.7C20.5 21.9 20.8 22 21 22C21.2 22 21.5 21.9 21.7 21.7C22.1 21.3 22.1 20.7 21.7 20.3ZM4 11C4 7.1 7.1 4 11 4C14.9 4 18 7.1 18 11C18 12.9 17.2 14.7 16 15.9C14.7 17.2 13 17.9 11.1 17.9C7.1 18 4 14.9 4 11Z\" />\n <path\n d=\"M14 10H12V8C12 7.4 11.6 7 11 7C10.4 7 10 7.4 10 8V10H8C7.4 10 7 10.4 7 11C7 11.6 7.4 12 8 12H10V14C10 14.6 10.4 15 11 15C11.6 15 12 14.6 12 14V12H14C14.6 12 15 11.6 15 11C15 10.4 14.6 10 14 10Z\" />\n</svg>";
|
|
932
934
|
export const IconsArrowDown = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M19.7 11.3C19.3 10.9 18.7 10.9 18.3 11.3L13 16.6V5C13 4.4 12.6 4 12 4C11.4 4 11 4.4 11 5V16.6L5.7 11.3C5.3 10.9 4.7 10.9 4.3 11.3C3.9 11.7 3.9 12.3 4.3 12.7L11.3 19.7C11.4 19.8 11.5 19.9 11.6 19.9C11.7 20 11.9 20 12 20C12.1 20 12.3 20 12.4 19.9C12.5 19.8 12.6 19.8 12.7 19.7L19.7 12.7C20.1 12.3 20.1 11.7 19.7 11.3Z\" />\n</svg>";
|
|
933
935
|
export const IconsDate = "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M19 3H17V2C17 1.4 16.6 1 16 1C15.4 1 15 1.4 15 2V3H9V2C9 1.4 8.6 1 8 1C7.4 1 7 1.4 7 2V3H5C3.3 3 2 4.3 2 6V20C2 21.7 3.3 23 5 23H19C20.7 23 22 21.7 22 20V6C22 4.3 20.7 3 19 3ZM5 5H7V6C7 6.6 7.4 7 8 7C8.6 7 9 6.6 9 6V5H15V6C15 6.6 15.4 7 16 7C16.6 7 17 6.6 17 6V5H19C19.6 5 20 5.4 20 6V9H4V6C4 5.4 4.4 5 5 5ZM19 21H5C4.4 21 4 20.6 4 20V11H20V20C20 20.6 19.6 21 19 21Z\" />\n</svg>";
|
package/package.json
CHANGED
|
File without changes
|