@gostudent/shared-ui-library 1.0.0 → 1.2.0-DT-16585.1
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/.storybook/main.d.ts +5 -0
- package/dist/.storybook/main.d.ts.map +1 -0
- package/dist/.storybook/preview.d.ts +5 -0
- package/dist/.storybook/preview.d.ts.map +1 -0
- package/dist/index.d.ts +1 -3
- package/dist/index.js +50 -27
- package/dist/src/components/Button/Button.d.ts +17 -0
- package/dist/src/components/Button/Button.d.ts.map +1 -0
- package/dist/src/components/Button/index.d.ts +3 -0
- package/dist/src/components/Button/index.d.ts.map +1 -0
- package/dist/{components/Button → src/components/PlaceholderButton}/Button.d.ts +3 -3
- package/dist/src/components/PlaceholderButton/Button.d.ts.map +1 -0
- package/dist/src/components/PlaceholderButton/index.d.ts.map +1 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/stories/token-helpers.d.ts +11 -0
- package/dist/src/stories/token-helpers.d.ts.map +1 -0
- package/dist/src/tokens/output/base/breakpoints/tokens.d.ts +10 -0
- package/dist/src/tokens/output/base/breakpoints/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/font-desktop/tokens.d.ts +28 -0
- package/dist/src/tokens/output/base/font-desktop/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/font-mobile/tokens.d.ts +28 -0
- package/dist/src/tokens/output/base/font-mobile/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/global-colours/tokens.d.ts +35 -0
- package/dist/src/tokens/output/base/global-colours/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/radius/tokens.d.ts +10 -0
- package/dist/src/tokens/output/base/radius/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/semantic-border/tokens.d.ts +7 -0
- package/dist/src/tokens/output/base/semantic-border/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/semantic-texts/tokens.d.ts +16 -0
- package/dist/src/tokens/output/base/semantic-texts/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/spacing/tokens.d.ts +12 -0
- package/dist/src/tokens/output/base/spacing/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/stroke/tokens.d.ts +8 -0
- package/dist/src/tokens/output/base/stroke/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/base/tokens.d.ts +107 -0
- package/dist/src/tokens/output/base/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/gs/semantic-colors/tokens.d.ts +49 -0
- package/dist/src/tokens/output/gs/semantic-colors/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/gs/tokens.d.ts +64 -0
- package/dist/src/tokens/output/gs/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/sk/semantic-colors/tokens.d.ts +49 -0
- package/dist/src/tokens/output/sk/semantic-colors/tokens.d.ts.map +1 -0
- package/dist/src/tokens/output/sk/tokens.d.ts +74 -0
- package/dist/src/tokens/output/sk/tokens.d.ts.map +1 -0
- package/dist/themes/style.css +1 -1
- package/package.json +58 -8
- package/src/tokens/output/base/breakpoints/tokens.d.ts +11 -0
- package/src/tokens/output/base/breakpoints/tokens.js +9 -0
- package/src/tokens/output/base/breakpoints/tokens.ts +11 -0
- package/src/tokens/output/base/breakpoints/variables.css +12 -0
- package/src/tokens/output/base/font-desktop/tokens.d.ts +29 -0
- package/src/tokens/output/base/font-desktop/tokens.js +27 -0
- package/src/tokens/output/base/font-desktop/tokens.ts +29 -0
- package/src/tokens/output/base/font-desktop/variables.css +30 -0
- package/src/tokens/output/base/font-mobile/tokens.d.ts +29 -0
- package/src/tokens/output/base/font-mobile/tokens.js +27 -0
- package/src/tokens/output/base/font-mobile/tokens.ts +29 -0
- package/src/tokens/output/base/font-mobile/variables.css +30 -0
- package/src/tokens/output/base/global-colours/tokens.d.ts +36 -0
- package/src/tokens/output/base/global-colours/tokens.js +34 -0
- package/src/tokens/output/base/global-colours/tokens.ts +36 -0
- package/src/tokens/output/base/global-colours/variables.css +37 -0
- package/src/tokens/output/base/radius/tokens.d.ts +11 -0
- package/src/tokens/output/base/radius/tokens.js +9 -0
- package/src/tokens/output/base/radius/tokens.ts +11 -0
- package/src/tokens/output/base/radius/variables.css +12 -0
- package/src/tokens/output/base/semantic-border/tokens.d.ts +8 -0
- package/src/tokens/output/base/semantic-border/tokens.js +6 -0
- package/src/tokens/output/base/semantic-border/tokens.ts +8 -0
- package/src/tokens/output/base/semantic-border/variables.css +9 -0
- package/src/tokens/output/base/semantic-texts/tokens.d.ts +17 -0
- package/src/tokens/output/base/semantic-texts/tokens.js +15 -0
- package/src/tokens/output/base/semantic-texts/tokens.ts +17 -0
- package/src/tokens/output/base/semantic-texts/variables.css +18 -0
- package/src/tokens/output/base/spacing/tokens.d.ts +13 -0
- package/src/tokens/output/base/spacing/tokens.js +11 -0
- package/src/tokens/output/base/spacing/tokens.ts +13 -0
- package/src/tokens/output/base/spacing/variables.css +14 -0
- package/src/tokens/output/base/stroke/tokens.d.ts +9 -0
- package/src/tokens/output/base/stroke/tokens.js +7 -0
- package/src/tokens/output/base/stroke/tokens.ts +9 -0
- package/src/tokens/output/base/stroke/variables.css +10 -0
- package/src/tokens/output/base/tokens.d.ts +108 -0
- package/src/tokens/output/base/tokens.js +106 -0
- package/src/tokens/output/base/tokens.ts +108 -0
- package/src/tokens/output/base/variables.css +109 -0
- package/src/tokens/output/gs/semantic-colors/tokens.d.ts +50 -0
- package/src/tokens/output/gs/semantic-colors/tokens.js +48 -0
- package/src/tokens/output/gs/semantic-colors/tokens.ts +50 -0
- package/src/tokens/output/gs/semantic-colors/variables.css +51 -0
- package/src/tokens/output/gs/tokens.d.ts +65 -0
- package/src/tokens/output/gs/tokens.js +63 -0
- package/src/tokens/output/gs/tokens.ts +65 -0
- package/src/tokens/output/gs/variables.css +66 -0
- package/src/tokens/output/sk/semantic-colors/tokens.d.ts +50 -0
- package/src/tokens/output/sk/semantic-colors/tokens.js +48 -0
- package/src/tokens/output/sk/semantic-colors/tokens.ts +50 -0
- package/src/tokens/output/sk/semantic-colors/variables.css +51 -0
- package/src/tokens/output/sk/tokens.d.ts +75 -0
- package/src/tokens/output/sk/tokens.js +73 -0
- package/src/tokens/output/sk/tokens.ts +75 -0
- package/src/tokens/output/sk/variables.css +76 -0
- package/dist/components/Button/Button.d.ts.map +0 -1
- package/dist/components/Button/index.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- /package/dist/{components/Button → src/components/PlaceholderButton}/index.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../.storybook/main.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D,QAAA,MAAM,MAAM,EAAE,eAcb,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preview.d.ts","sourceRoot":"","sources":["../../.storybook/preview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,4BAA4B,CAAC;AACpC,OAAO,4BAA4B,CAAC;AAEpC,QAAA,MAAM,OAAO,EAAE,OAiCd,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,29 +1,52 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import { jsxs as z, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
const m = "_root_1dd3g_9", g = "_icon_1dd3g_28", p = "_label_1dd3g_34", y = "_primary_1dd3g_40", X = "_secondary_1dd3g_68", x = "_link_1dd3g_101", b = "_sizeXl_1dd3g_131", M = "_sizeLg_1dd3g_138", k = "_sizeMd_1dd3g_145", u = "_sizeSm_1dd3g_152", L = "_sizeXs_1dd3g_159", N = "_sizeXxs_1dd3g_166", s = {
|
|
3
|
+
root: m,
|
|
4
|
+
icon: g,
|
|
5
|
+
label: p,
|
|
6
|
+
primary: y,
|
|
7
|
+
secondary: X,
|
|
8
|
+
link: x,
|
|
9
|
+
sizeXl: b,
|
|
10
|
+
sizeLg: M,
|
|
11
|
+
sizeMd: k,
|
|
12
|
+
sizeSm: u,
|
|
13
|
+
sizeXs: L,
|
|
14
|
+
sizeXxs: N
|
|
15
|
+
}, S = {
|
|
16
|
+
xxs: s.sizeXxs,
|
|
17
|
+
xs: s.sizeXs,
|
|
18
|
+
sm: s.sizeSm,
|
|
19
|
+
md: s.sizeMd,
|
|
20
|
+
lg: s.sizeLg,
|
|
21
|
+
xl: s.sizeXl
|
|
22
|
+
}, f = {
|
|
23
|
+
primary: s.primary,
|
|
24
|
+
secondary: s.secondary,
|
|
25
|
+
link: s.link
|
|
26
|
+
};
|
|
27
|
+
function B({
|
|
28
|
+
variant: d = "primary",
|
|
29
|
+
size: _ = "md",
|
|
30
|
+
children: e,
|
|
31
|
+
disabled: a = !1,
|
|
32
|
+
leftIcon: n,
|
|
33
|
+
rightIcon: o,
|
|
34
|
+
className: c,
|
|
35
|
+
onClick: l,
|
|
36
|
+
type: t = "button"
|
|
37
|
+
}) {
|
|
38
|
+
const r = [
|
|
39
|
+
s.root,
|
|
40
|
+
f[d],
|
|
41
|
+
S[_],
|
|
42
|
+
c
|
|
43
|
+
].filter(Boolean).join(" ");
|
|
44
|
+
return /* @__PURE__ */ z("button", { type: t, disabled: a, onClick: l, className: r, children: [
|
|
45
|
+
n && /* @__PURE__ */ i("span", { className: s.icon, children: n }),
|
|
46
|
+
e && /* @__PURE__ */ i("span", { className: s.label, children: e }),
|
|
47
|
+
o && /* @__PURE__ */ i("span", { className: s.icon, children: o })
|
|
48
|
+
] });
|
|
49
|
+
}
|
|
27
50
|
export {
|
|
28
|
-
|
|
51
|
+
B as Button
|
|
29
52
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export type ButtonVariant = 'primary' | 'secondary' | 'link';
|
|
4
|
+
export type ButtonSize = 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
5
|
+
export interface ButtonProps {
|
|
6
|
+
variant?: ButtonVariant;
|
|
7
|
+
size?: ButtonSize;
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
leftIcon?: React.ReactNode;
|
|
11
|
+
rightIcon?: React.ReactNode;
|
|
12
|
+
className?: string;
|
|
13
|
+
onClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
14
|
+
type?: 'button' | 'submit' | 'reset';
|
|
15
|
+
}
|
|
16
|
+
export declare function Button({ variant, size, children, disabled, leftIcon, rightIcon, className, onClick, type, }: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,WAAW,GAAG,MAAM,CAAC;AAC7D,MAAM,MAAM,UAAU,GAAG,KAAK,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAElE,MAAM,WAAW,WAAW;IAC1B,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;IACrD,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAC;CACtC;AAiBD,wBAAgB,MAAM,CAAC,EACrB,OAAmB,EACnB,IAAW,EACX,QAAQ,EACR,QAAgB,EAChB,QAAQ,EACR,SAAS,EACT,SAAS,EACT,OAAO,EACP,IAAe,GAChB,EAAE,WAAW,2CAiBb"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,YAAY,EAAE,WAAW,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -2,15 +2,15 @@ import { default as React } from 'react';
|
|
|
2
2
|
|
|
3
3
|
export interface ButtonProps {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* PlaceholderButton label text
|
|
6
6
|
*/
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* PlaceholderButton variant
|
|
10
10
|
*/
|
|
11
11
|
variant?: 'primary' | 'secondary' | 'success' | 'warning' | 'error';
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* PlaceholderButton size
|
|
14
14
|
*/
|
|
15
15
|
size?: 'small' | 'medium' | 'large';
|
|
16
16
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/PlaceholderButton/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;IACpE;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED;;GAEG;AACH,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAgBxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PlaceholderButton/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,YAAY,EAAE,WAAW,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare function parseCssVars(css: string): Record<string, string>;
|
|
2
|
+
export declare function extractVarName(ref: string): string;
|
|
3
|
+
export declare function getGroup(varName: string): string;
|
|
4
|
+
export declare function groupLabel(group: string): string;
|
|
5
|
+
export declare function CopyButton({ text }: {
|
|
6
|
+
text: string;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function ColorSwatch({ value }: {
|
|
9
|
+
value: string;
|
|
10
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=token-helpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"token-helpers.d.ts","sourceRoot":"","sources":["../../../src/stories/token-helpers.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAMhE;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAElD;AAED,wBAAgB,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAIhD;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAEhD;AAED,wBAAgB,UAAU,CAAC,EAAE,IAAI,EAAE,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,2CA4BpD;AAED,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,2CAMvD"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly breakpointDesktopLayoutGridWidth: "var(--breakpoint-desktop-layout-grid-width)";
|
|
3
|
+
readonly breakpointDesktopFullScreen: "var(--breakpoint-desktop-full-screen)";
|
|
4
|
+
readonly breakpointTabletLayoutGridWidth: "var(--breakpoint-tablet-layout-grid-width)";
|
|
5
|
+
readonly breakpointTabletFullScreen: "var(--breakpoint-tablet-full-screen)";
|
|
6
|
+
readonly breakpointMobileLayoutGridWidth: "var(--breakpoint-mobile-layout-grid-width)";
|
|
7
|
+
readonly breakpointMobileFullScreen: "var(--breakpoint-mobile-full-screen)";
|
|
8
|
+
};
|
|
9
|
+
export type TokenKey = keyof typeof t;
|
|
10
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/breakpoints/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;CAOJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly fontDesktopFamilyWorksans: "var(--font-desktop-family-worksans)";
|
|
3
|
+
readonly fontDesktopWeightRegular: "var(--font-desktop-weight-regular)";
|
|
4
|
+
readonly fontDesktopWeightMedium: "var(--font-desktop-weight-medium)";
|
|
5
|
+
readonly fontDesktopWeightSemiBold: "var(--font-desktop-weight-semi-bold)";
|
|
6
|
+
readonly fontDesktopWeightBold: "var(--font-desktop-weight-bold)";
|
|
7
|
+
readonly fontDesktopWeightExtraBold: "var(--font-desktop-weight-extra-bold)";
|
|
8
|
+
readonly fontDesktopSizeXxs: "var(--font-desktop-size-xxs)";
|
|
9
|
+
readonly fontDesktopSizeXs: "var(--font-desktop-size-xs)";
|
|
10
|
+
readonly fontDesktopSizeSm: "var(--font-desktop-size-sm)";
|
|
11
|
+
readonly fontDesktopSizeMd: "var(--font-desktop-size-md)";
|
|
12
|
+
readonly fontDesktopSizeLg: "var(--font-desktop-size-lg)";
|
|
13
|
+
readonly fontDesktopSizeXl: "var(--font-desktop-size-xl)";
|
|
14
|
+
readonly fontDesktopSize2xl: "var(--font-desktop-size-2xl)";
|
|
15
|
+
readonly fontDesktopSize3xl: "var(--font-desktop-size-3xl)";
|
|
16
|
+
readonly fontDesktopSize4xl: "var(--font-desktop-size-4xl)";
|
|
17
|
+
readonly fontDesktopLineHeightXxs: "var(--font-desktop-line-height-xxs)";
|
|
18
|
+
readonly fontDesktopLineHeightXs: "var(--font-desktop-line-height-xs)";
|
|
19
|
+
readonly fontDesktopLineHeightSm: "var(--font-desktop-line-height-sm)";
|
|
20
|
+
readonly fontDesktopLineHeightMd: "var(--font-desktop-line-height-md)";
|
|
21
|
+
readonly fontDesktopLineHeightLg: "var(--font-desktop-line-height-lg)";
|
|
22
|
+
readonly fontDesktopLineHeightXl: "var(--font-desktop-line-height-xl)";
|
|
23
|
+
readonly fontDesktopLineHeight2xl: "var(--font-desktop-line-height-2xl)";
|
|
24
|
+
readonly fontDesktopLineHeight3xl: "var(--font-desktop-line-height-3xl)";
|
|
25
|
+
readonly fontDesktopLineHeight4xl: "var(--font-desktop-line-height-4xl)";
|
|
26
|
+
};
|
|
27
|
+
export type TokenKey = keyof typeof t;
|
|
28
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/font-desktop/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;CAyBJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly fontMobileFamilyWorksans: "var(--font-mobile-family-worksans)";
|
|
3
|
+
readonly fontMobileWeightRegular: "var(--font-mobile-weight-regular)";
|
|
4
|
+
readonly fontMobileWeightMedium: "var(--font-mobile-weight-medium)";
|
|
5
|
+
readonly fontMobileWeightSemiBold: "var(--font-mobile-weight-semi-bold)";
|
|
6
|
+
readonly fontMobileWeightBold: "var(--font-mobile-weight-bold)";
|
|
7
|
+
readonly fontMobileWeightExtraBold: "var(--font-mobile-weight-extra-bold)";
|
|
8
|
+
readonly fontMobileSizeXxs: "var(--font-mobile-size-xxs)";
|
|
9
|
+
readonly fontMobileSizeXs: "var(--font-mobile-size-xs)";
|
|
10
|
+
readonly fontMobileSizeSm: "var(--font-mobile-size-sm)";
|
|
11
|
+
readonly fontMobileSizeMd: "var(--font-mobile-size-md)";
|
|
12
|
+
readonly fontMobileSizeLg: "var(--font-mobile-size-lg)";
|
|
13
|
+
readonly fontMobileSizeXl: "var(--font-mobile-size-xl)";
|
|
14
|
+
readonly fontMobileSize2xll: "var(--font-mobile-size-2xll)";
|
|
15
|
+
readonly fontMobileSize3xl: "var(--font-mobile-size-3xl)";
|
|
16
|
+
readonly fontMobileSize4xl: "var(--font-mobile-size-4xl)";
|
|
17
|
+
readonly fontMobileLineHeightXxs: "var(--font-mobile-line-height-xxs)";
|
|
18
|
+
readonly fontMobileLineHeightXs: "var(--font-mobile-line-height-xs)";
|
|
19
|
+
readonly fontMobileLineHeightSm: "var(--font-mobile-line-height-sm)";
|
|
20
|
+
readonly fontMobileLineHeightMd: "var(--font-mobile-line-height-md)";
|
|
21
|
+
readonly fontMobileLineHeightLg: "var(--font-mobile-line-height-lg)";
|
|
22
|
+
readonly fontMobileLineHeightXl: "var(--font-mobile-line-height-xl)";
|
|
23
|
+
readonly fontMobileLineHeight2xl: "var(--font-mobile-line-height-2xl)";
|
|
24
|
+
readonly fontMobileLineHeight3xl: "var(--font-mobile-line-height-3xl)";
|
|
25
|
+
readonly fontMobileLineHeight4xl: "var(--font-mobile-line-height-4xl)";
|
|
26
|
+
};
|
|
27
|
+
export type TokenKey = keyof typeof t;
|
|
28
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/font-mobile/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;CAyBJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly error50: "var(--error-50)";
|
|
3
|
+
readonly error500: "var(--error-500)";
|
|
4
|
+
readonly error700: "var(--error-700)";
|
|
5
|
+
readonly success50: "var(--success-50)";
|
|
6
|
+
readonly success500: "var(--success-500)";
|
|
7
|
+
readonly success700: "var(--success-700)";
|
|
8
|
+
readonly warning50: "var(--warning-50)";
|
|
9
|
+
readonly warning500: "var(--warning-500)";
|
|
10
|
+
readonly warning700: "var(--warning-700)";
|
|
11
|
+
readonly colorBlack: "var(--color-black)";
|
|
12
|
+
readonly colorWhite: "var(--color-white)";
|
|
13
|
+
readonly steel50: "var(--steel-50)";
|
|
14
|
+
readonly steel100: "var(--steel-100)";
|
|
15
|
+
readonly steel200: "var(--steel-200)";
|
|
16
|
+
readonly steel300: "var(--steel-300)";
|
|
17
|
+
readonly steel400: "var(--steel-400)";
|
|
18
|
+
readonly steel500: "var(--steel-500)";
|
|
19
|
+
readonly steel600: "var(--steel-600)";
|
|
20
|
+
readonly steel700: "var(--steel-700)";
|
|
21
|
+
readonly steel800: "var(--steel-800)";
|
|
22
|
+
readonly steel900: "var(--steel-900)";
|
|
23
|
+
readonly grey50: "var(--grey-50)";
|
|
24
|
+
readonly grey100: "var(--grey-100)";
|
|
25
|
+
readonly grey200: "var(--grey-200)";
|
|
26
|
+
readonly grey300: "var(--grey-300)";
|
|
27
|
+
readonly grey400: "var(--grey-400)";
|
|
28
|
+
readonly grey500: "var(--grey-500)";
|
|
29
|
+
readonly grey600: "var(--grey-600)";
|
|
30
|
+
readonly grey700: "var(--grey-700)";
|
|
31
|
+
readonly grey800: "var(--grey-800)";
|
|
32
|
+
readonly grey900: "var(--grey-900)";
|
|
33
|
+
};
|
|
34
|
+
export type TokenKey = keyof typeof t;
|
|
35
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/global-colours/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly radiusXs: "var(--radius-xs)";
|
|
3
|
+
readonly radiusSm: "var(--radius-sm)";
|
|
4
|
+
readonly radiusMd: "var(--radius-md)";
|
|
5
|
+
readonly radiusLg: "var(--radius-lg)";
|
|
6
|
+
readonly radiusXl: "var(--radius-xl)";
|
|
7
|
+
readonly radiusFull: "var(--radius-full)";
|
|
8
|
+
};
|
|
9
|
+
export type TokenKey = keyof typeof t;
|
|
10
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/radius/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;CAOJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/semantic-border/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;CAIJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly textButtonFontSizeXxs: "var(--text-button-font-size-xxs)";
|
|
3
|
+
readonly textButtonFontSizeXs: "var(--text-button-font-size-xs)";
|
|
4
|
+
readonly textButtonFontSizeSm: "var(--text-button-font-size-sm)";
|
|
5
|
+
readonly textButtonFontSizeMd: "var(--text-button-font-size-md)";
|
|
6
|
+
readonly textButtonFontSizeLg: "var(--text-button-font-size-lg)";
|
|
7
|
+
readonly textButtonFontSizeXl: "var(--text-button-font-size-xl)";
|
|
8
|
+
readonly textButtonLineHeightXxs: "var(--text-button-line-height-xxs)";
|
|
9
|
+
readonly textButtonLineHeightXs: "var(--text-button-line-height-xs)";
|
|
10
|
+
readonly textButtonLineHeightSm: "var(--text-button-line-height-sm)";
|
|
11
|
+
readonly textButtonLineHeightMd: "var(--text-button-line-height-md)";
|
|
12
|
+
readonly textButtonLineHeightLg: "var(--text-button-line-height-lg)";
|
|
13
|
+
readonly textButtonLineHeightXl: "var(--text-button-line-height-xl)";
|
|
14
|
+
};
|
|
15
|
+
export type TokenKey = keyof typeof t;
|
|
16
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/semantic-texts/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;;;;;CAaJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly spacingXxs: "var(--spacing-xxs)";
|
|
3
|
+
readonly spacing3xl: "var(--spacing-3xl)";
|
|
4
|
+
readonly spacing2xl: "var(--spacing-2xl)";
|
|
5
|
+
readonly spacingXl: "var(--spacing-xl)";
|
|
6
|
+
readonly spacingLg: "var(--spacing-lg)";
|
|
7
|
+
readonly spacingXs: "var(--spacing-xs)";
|
|
8
|
+
readonly spacingMd: "var(--spacing-md)";
|
|
9
|
+
readonly spacingSm: "var(--spacing-sm)";
|
|
10
|
+
};
|
|
11
|
+
export type TokenKey = keyof typeof t;
|
|
12
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/spacing/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;CASJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/base/stroke/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;CAKJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly fontDesktopFamilyWorksans: "var(--font-desktop-family-worksans)";
|
|
3
|
+
readonly fontDesktopWeightRegular: "var(--font-desktop-weight-regular)";
|
|
4
|
+
readonly fontDesktopWeightMedium: "var(--font-desktop-weight-medium)";
|
|
5
|
+
readonly fontDesktopWeightSemiBold: "var(--font-desktop-weight-semi-bold)";
|
|
6
|
+
readonly fontDesktopWeightBold: "var(--font-desktop-weight-bold)";
|
|
7
|
+
readonly fontDesktopWeightExtraBold: "var(--font-desktop-weight-extra-bold)";
|
|
8
|
+
readonly fontDesktopSizeXxs: "var(--font-desktop-size-xxs)";
|
|
9
|
+
readonly fontDesktopSizeXs: "var(--font-desktop-size-xs)";
|
|
10
|
+
readonly fontDesktopSizeSm: "var(--font-desktop-size-sm)";
|
|
11
|
+
readonly fontDesktopSizeMd: "var(--font-desktop-size-md)";
|
|
12
|
+
readonly fontDesktopSizeLg: "var(--font-desktop-size-lg)";
|
|
13
|
+
readonly fontDesktopSizeXl: "var(--font-desktop-size-xl)";
|
|
14
|
+
readonly fontDesktopSize2xl: "var(--font-desktop-size-2xl)";
|
|
15
|
+
readonly fontDesktopSize3xl: "var(--font-desktop-size-3xl)";
|
|
16
|
+
readonly fontDesktopSize4xl: "var(--font-desktop-size-4xl)";
|
|
17
|
+
readonly fontDesktopLineHeightXxs: "var(--font-desktop-line-height-xxs)";
|
|
18
|
+
readonly fontDesktopLineHeightXs: "var(--font-desktop-line-height-xs)";
|
|
19
|
+
readonly fontDesktopLineHeightSm: "var(--font-desktop-line-height-sm)";
|
|
20
|
+
readonly fontDesktopLineHeightMd: "var(--font-desktop-line-height-md)";
|
|
21
|
+
readonly fontDesktopLineHeightLg: "var(--font-desktop-line-height-lg)";
|
|
22
|
+
readonly fontDesktopLineHeightXl: "var(--font-desktop-line-height-xl)";
|
|
23
|
+
readonly fontDesktopLineHeight2xl: "var(--font-desktop-line-height-2xl)";
|
|
24
|
+
readonly fontDesktopLineHeight3xl: "var(--font-desktop-line-height-3xl)";
|
|
25
|
+
readonly fontDesktopLineHeight4xl: "var(--font-desktop-line-height-4xl)";
|
|
26
|
+
readonly fontMobileFamilyWorksans: "var(--font-mobile-family-worksans)";
|
|
27
|
+
readonly fontMobileWeightRegular: "var(--font-mobile-weight-regular)";
|
|
28
|
+
readonly fontMobileWeightMedium: "var(--font-mobile-weight-medium)";
|
|
29
|
+
readonly fontMobileWeightSemiBold: "var(--font-mobile-weight-semi-bold)";
|
|
30
|
+
readonly fontMobileWeightBold: "var(--font-mobile-weight-bold)";
|
|
31
|
+
readonly fontMobileWeightExtraBold: "var(--font-mobile-weight-extra-bold)";
|
|
32
|
+
readonly fontMobileSizeXxs: "var(--font-mobile-size-xxs)";
|
|
33
|
+
readonly fontMobileSizeXs: "var(--font-mobile-size-xs)";
|
|
34
|
+
readonly fontMobileSizeSm: "var(--font-mobile-size-sm)";
|
|
35
|
+
readonly fontMobileSizeMd: "var(--font-mobile-size-md)";
|
|
36
|
+
readonly fontMobileSizeLg: "var(--font-mobile-size-lg)";
|
|
37
|
+
readonly fontMobileSizeXl: "var(--font-mobile-size-xl)";
|
|
38
|
+
readonly fontMobileSize2xll: "var(--font-mobile-size-2xll)";
|
|
39
|
+
readonly fontMobileSize3xl: "var(--font-mobile-size-3xl)";
|
|
40
|
+
readonly fontMobileSize4xl: "var(--font-mobile-size-4xl)";
|
|
41
|
+
readonly fontMobileLineHeightXxs: "var(--font-mobile-line-height-xxs)";
|
|
42
|
+
readonly fontMobileLineHeightXs: "var(--font-mobile-line-height-xs)";
|
|
43
|
+
readonly fontMobileLineHeightSm: "var(--font-mobile-line-height-sm)";
|
|
44
|
+
readonly fontMobileLineHeightMd: "var(--font-mobile-line-height-md)";
|
|
45
|
+
readonly fontMobileLineHeightLg: "var(--font-mobile-line-height-lg)";
|
|
46
|
+
readonly fontMobileLineHeightXl: "var(--font-mobile-line-height-xl)";
|
|
47
|
+
readonly fontMobileLineHeight2xl: "var(--font-mobile-line-height-2xl)";
|
|
48
|
+
readonly fontMobileLineHeight3xl: "var(--font-mobile-line-height-3xl)";
|
|
49
|
+
readonly fontMobileLineHeight4xl: "var(--font-mobile-line-height-4xl)";
|
|
50
|
+
readonly breakpointDesktopLayoutGridWidth: "var(--breakpoint-desktop-layout-grid-width)";
|
|
51
|
+
readonly breakpointDesktopFullScreen: "var(--breakpoint-desktop-full-screen)";
|
|
52
|
+
readonly breakpointTabletLayoutGridWidth: "var(--breakpoint-tablet-layout-grid-width)";
|
|
53
|
+
readonly breakpointTabletFullScreen: "var(--breakpoint-tablet-full-screen)";
|
|
54
|
+
readonly breakpointMobileLayoutGridWidth: "var(--breakpoint-mobile-layout-grid-width)";
|
|
55
|
+
readonly breakpointMobileFullScreen: "var(--breakpoint-mobile-full-screen)";
|
|
56
|
+
readonly error50: "var(--error-50)";
|
|
57
|
+
readonly error500: "var(--error-500)";
|
|
58
|
+
readonly error700: "var(--error-700)";
|
|
59
|
+
readonly success50: "var(--success-50)";
|
|
60
|
+
readonly success500: "var(--success-500)";
|
|
61
|
+
readonly success700: "var(--success-700)";
|
|
62
|
+
readonly warning50: "var(--warning-50)";
|
|
63
|
+
readonly warning500: "var(--warning-500)";
|
|
64
|
+
readonly warning700: "var(--warning-700)";
|
|
65
|
+
readonly colorBlack: "var(--color-black)";
|
|
66
|
+
readonly colorWhite: "var(--color-white)";
|
|
67
|
+
readonly steel50: "var(--steel-50)";
|
|
68
|
+
readonly steel100: "var(--steel-100)";
|
|
69
|
+
readonly steel200: "var(--steel-200)";
|
|
70
|
+
readonly steel300: "var(--steel-300)";
|
|
71
|
+
readonly steel400: "var(--steel-400)";
|
|
72
|
+
readonly steel500: "var(--steel-500)";
|
|
73
|
+
readonly steel600: "var(--steel-600)";
|
|
74
|
+
readonly steel700: "var(--steel-700)";
|
|
75
|
+
readonly steel800: "var(--steel-800)";
|
|
76
|
+
readonly steel900: "var(--steel-900)";
|
|
77
|
+
readonly grey50: "var(--grey-50)";
|
|
78
|
+
readonly grey100: "var(--grey-100)";
|
|
79
|
+
readonly grey200: "var(--grey-200)";
|
|
80
|
+
readonly grey300: "var(--grey-300)";
|
|
81
|
+
readonly grey400: "var(--grey-400)";
|
|
82
|
+
readonly grey500: "var(--grey-500)";
|
|
83
|
+
readonly grey600: "var(--grey-600)";
|
|
84
|
+
readonly grey700: "var(--grey-700)";
|
|
85
|
+
readonly grey800: "var(--grey-800)";
|
|
86
|
+
readonly grey900: "var(--grey-900)";
|
|
87
|
+
readonly spacingXxs: "var(--spacing-xxs)";
|
|
88
|
+
readonly spacing3xl: "var(--spacing-3xl)";
|
|
89
|
+
readonly spacing2xl: "var(--spacing-2xl)";
|
|
90
|
+
readonly spacingXl: "var(--spacing-xl)";
|
|
91
|
+
readonly spacingLg: "var(--spacing-lg)";
|
|
92
|
+
readonly spacingXs: "var(--spacing-xs)";
|
|
93
|
+
readonly spacingMd: "var(--spacing-md)";
|
|
94
|
+
readonly spacingSm: "var(--spacing-sm)";
|
|
95
|
+
readonly radiusXs: "var(--radius-xs)";
|
|
96
|
+
readonly radiusSm: "var(--radius-sm)";
|
|
97
|
+
readonly radiusMd: "var(--radius-md)";
|
|
98
|
+
readonly radiusLg: "var(--radius-lg)";
|
|
99
|
+
readonly radiusXl: "var(--radius-xl)";
|
|
100
|
+
readonly radiusFull: "var(--radius-full)";
|
|
101
|
+
readonly sm: "var(--sm)";
|
|
102
|
+
readonly md: "var(--md)";
|
|
103
|
+
readonly lg: "var(--lg)";
|
|
104
|
+
readonly xs: "var(--xs)";
|
|
105
|
+
};
|
|
106
|
+
export type TokenKey = keyof typeof t;
|
|
107
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../src/tokens/output/base/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwGJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const t: {
|
|
2
|
+
readonly colorButtonPrimaryBackgroundDefault: "var(--color-button-primary-background-default)";
|
|
3
|
+
readonly colorButtonPrimaryBackgroundHover: "var(--color-button-primary-background-hover)";
|
|
4
|
+
readonly colorButtonPrimaryBackgroundPressed: "var(--color-button-primary-background-pressed)";
|
|
5
|
+
readonly colorButtonPrimaryBackgroundDisabled: "var(--color-button-primary-background-disabled)";
|
|
6
|
+
readonly colorButtonPrimaryBackgroundFocus: "var(--color-button-primary-background-focus)";
|
|
7
|
+
readonly colorButtonPrimaryTextDefault: "var(--color-button-primary-text-default)";
|
|
8
|
+
readonly colorButtonPrimaryTextDisabled: "var(--color-button-primary-text-disabled)";
|
|
9
|
+
readonly colorButtonPrimaryBorderFocusOutside: "var(--color-button-primary-border-focus-outside)";
|
|
10
|
+
readonly colorButtonPrimaryBorderDisabled: "var(--color-button-primary-border-disabled)";
|
|
11
|
+
readonly colorButtonPrimaryBorderFocusInside: "var(--color-button-primary-border-focus-inside)";
|
|
12
|
+
readonly colorButtonSecondaryBackgroundDefault: "var(--color-button-secondary-background-default)";
|
|
13
|
+
readonly colorButtonSecondaryBackgroundHover: "var(--color-button-secondary-background-hover)";
|
|
14
|
+
readonly colorButtonSecondaryBackgroundPressed: "var(--color-button-secondary-background-pressed)";
|
|
15
|
+
readonly colorButtonSecondaryBackgroundDisabled: "var(--color-button-secondary-background-disabled)";
|
|
16
|
+
readonly colorButtonSecondaryBackgroundFocus: "var(--color-button-secondary-background-focus)";
|
|
17
|
+
readonly colorButtonSecondaryBorderDefault: "var(--color-button-secondary-border-default)";
|
|
18
|
+
readonly colorButtonSecondaryBorderFocusInside: "var(--color-button-secondary-border-focus-inside)";
|
|
19
|
+
readonly colorButtonSecondaryBorderDisabled: "var(--color-button-secondary-border-disabled)";
|
|
20
|
+
readonly colorButtonSecondaryBorderHover: "var(--color-button-secondary-border-hover)";
|
|
21
|
+
readonly colorButtonSecondaryBorderPressed: "var(--color-button-secondary-border-pressed)";
|
|
22
|
+
readonly colorButtonSecondaryBorderFocusOutside: "var(--color-button-secondary-border-focus-outside)";
|
|
23
|
+
readonly colorButtonSecondaryTextDefaultFocus: "var(--color-button-secondary-text-default-focus)";
|
|
24
|
+
readonly colorButtonSecondaryTextHoverPressed: "var(--color-button-secondary-text-hover-pressed)";
|
|
25
|
+
readonly colorButtonSecondaryTextDisabled: "var(--color-button-secondary-text-disabled)";
|
|
26
|
+
readonly colorButtonLinkBackgroundDefault: "var(--color-button-link-background-default)";
|
|
27
|
+
readonly colorButtonLinkBackgroundHover: "var(--color-button-link-background-hover)";
|
|
28
|
+
readonly colorButtonLinkBackgroundPressed: "var(--color-button-link-background-pressed)";
|
|
29
|
+
readonly colorButtonLinkBackgroundFocus: "var(--color-button-link-background-focus)";
|
|
30
|
+
readonly colorButtonLinkBackgroundDisabled: "var(--color-button-link-background-disabled)";
|
|
31
|
+
readonly colorButtonLinkTextDefault: "var(--color-button-link-text-default)";
|
|
32
|
+
readonly colorButtonLinkTextHover: "var(--color-button-link-text-hover)";
|
|
33
|
+
readonly colorButtonLinkTextPressed: "var(--color-button-link-text-pressed)";
|
|
34
|
+
readonly colorButtonLinkTextDisabled: "var(--color-button-link-text-disabled)";
|
|
35
|
+
readonly colorButtonLinkTextFocus: "var(--color-button-link-text-focus)";
|
|
36
|
+
readonly colorButtonLinkBorderFocus: "var(--color-button-link-border-focus)";
|
|
37
|
+
readonly colorOverlay50: "var(--color-overlay-50)";
|
|
38
|
+
readonly colorFeedbackPositiveBackground: "var(--color-feedback-positive-background)";
|
|
39
|
+
readonly colorFeedbackPositiveIcon: "var(--color-feedback-positive-icon)";
|
|
40
|
+
readonly colorFeedbackPositiveBorder: "var(--color-feedback-positive-border)";
|
|
41
|
+
readonly colorFeedbackNegativeBackground: "var(--color-feedback-negative-background)";
|
|
42
|
+
readonly colorFeedbackNegativeIcon: "var(--color-feedback-negative-icon)";
|
|
43
|
+
readonly colorFeedbackNegativeBorder: "var(--color-feedback-negative-border)";
|
|
44
|
+
readonly colorFeedbackWarningBackground: "var(--color-feedback-warning-background)";
|
|
45
|
+
readonly colorFeedbackWarningIcon: "var(--color-feedback-warning-icon)";
|
|
46
|
+
readonly colorFeedbackWarningBorder: "var(--color-feedback-warning-border)";
|
|
47
|
+
};
|
|
48
|
+
export type TokenKey = keyof typeof t;
|
|
49
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../../../src/tokens/output/gs/semantic-colors/tokens.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CJ,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,CAAC"}
|