@norges-domstoler/dds-design-tokens 9.2.0 → 9.3.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/README.md +12 -12
- package/dist/cjs/generated-tokens/js/core-dark/ddsTokens.d.ts +8 -0
- package/dist/cjs/generated-tokens/js/core-light/ddsTokens.d.ts +8 -0
- package/dist/cjs/generated-tokens/js/public-dark/ddsTokens.d.ts +8 -0
- package/dist/cjs/generated-tokens/js/public-light/ddsTokens.d.ts +8 -0
- package/dist/cjs/index.js +64 -0
- package/dist/cjs/src/index.d.ts +32 -0
- package/dist/css/ddsTokens-core-dark.css +4 -0
- package/dist/css/ddsTokens-core-light.css +4 -0
- package/dist/css/ddsTokens-public-dark.css +4 -0
- package/dist/css/ddsTokens-public-light.css +4 -0
- package/dist/generated-tokens/js/core-dark/ddsTokens.d.ts +8 -0
- package/dist/generated-tokens/js/core-dark/ddsTokens.js +9 -1
- package/dist/generated-tokens/js/core-light/ddsTokens.d.ts +8 -0
- package/dist/generated-tokens/js/core-light/ddsTokens.js +9 -1
- package/dist/generated-tokens/js/public-dark/ddsTokens.d.ts +8 -0
- package/dist/generated-tokens/js/public-dark/ddsTokens.js +9 -1
- package/dist/generated-tokens/js/public-light/ddsTokens.d.ts +8 -0
- package/dist/generated-tokens/js/public-light/ddsTokens.js +9 -1
- package/dist/scss/_ddsTokens.scss +5 -1
- package/dist/src/index.d.ts +32 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Biblioteket inneholder design tokens brukt i [Elsa - domstolenes designsystem](https://design.domstol.no/): farger, typografi, osv. Design tokens kan brukes i domstolenes tjenester i bl.a. global styling og custom elementer. Ellers er det obligatorisk å bruke komponentbiblioteket [dds-components](https://www.npmjs.com/package/@norges-domstoler/dds-components) i domstolenes applikasjoner.
|
|
6
6
|
|
|
7
|
-
Design tokens kommer i
|
|
7
|
+
Design tokens kommer i flere temaer. Valg av tema styres med `<DdsProvider>` komponent som ligger i `dds-components`.
|
|
8
8
|
|
|
9
9
|
## 🔍 Oversikt
|
|
10
10
|
|
|
@@ -26,7 +26,7 @@ pnpm add @norges-domstoler/dds-design-tokens
|
|
|
26
26
|
|
|
27
27
|
## 🔨 Bruk
|
|
28
28
|
|
|
29
|
-
Design tokens er eksportert som JS-konstanter, CSS-variabler og SCSS-variabler. De brukes i kombinasjon med `<
|
|
29
|
+
Design tokens er eksportert som JS-konstanter, CSS-variabler og SCSS-variabler. De brukes i kombinasjon med `<DdsProvider>` komponent fra `@norges-domstoler/dds-components` biblioteket for å sette riktig tema. CSS-variabler brukes direkte fra `@norges-domstoler/dds-components` - se [README](https://github.com/domstolene/designsystem/blob/main/packages/components/README.md).
|
|
30
30
|
|
|
31
31
|
### CSS
|
|
32
32
|
|
|
@@ -42,16 +42,16 @@ Design tokens er eksportert som JS-konstanter, CSS-variabler og SCSS-variabler.
|
|
|
42
42
|
}
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
```
|
|
46
|
-
import {
|
|
45
|
+
```jsx
|
|
46
|
+
import { DdsProvider } from '@norges-domstoler/dds-components';
|
|
47
47
|
import './styles.css';
|
|
48
48
|
|
|
49
49
|
const Panel = <div className="panel"> tekst </div>;
|
|
50
50
|
|
|
51
51
|
const App = () => (
|
|
52
|
-
<
|
|
52
|
+
<DdsProvider>
|
|
53
53
|
<Panel />;
|
|
54
|
-
</
|
|
54
|
+
</DdsProvider>
|
|
55
55
|
);
|
|
56
56
|
```
|
|
57
57
|
|
|
@@ -60,7 +60,7 @@ const App = () => (
|
|
|
60
60
|
```js
|
|
61
61
|
import * as React from 'react';
|
|
62
62
|
import { ddsTokens } from '@norges-domstoler/dds-design-tokens';
|
|
63
|
-
import {
|
|
63
|
+
import { DdsProvider, useTheme } from '@norges-domstoler/dds-components';
|
|
64
64
|
|
|
65
65
|
const { theme } = useTheme();
|
|
66
66
|
|
|
@@ -70,9 +70,9 @@ const style = {
|
|
|
70
70
|
};
|
|
71
71
|
|
|
72
72
|
const App = () => (
|
|
73
|
-
<
|
|
73
|
+
<DdsProvider>
|
|
74
74
|
<div style={style}>Tekst</div>;
|
|
75
|
-
</
|
|
75
|
+
</DdsProvider>
|
|
76
76
|
);
|
|
77
77
|
```
|
|
78
78
|
|
|
@@ -91,14 +91,14 @@ SCSS-variabler refererer til CSS-variabler; theming skjer dermed utenfor SCSS. D
|
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
```js
|
|
94
|
-
import {
|
|
94
|
+
import { DdsProvider } from '@norges-domstoler/dds-components';
|
|
95
95
|
import './_styles.scss';
|
|
96
96
|
|
|
97
97
|
const Panel = <div className="panel"> tekst </div>;
|
|
98
98
|
|
|
99
99
|
const App = () => (
|
|
100
|
-
<
|
|
100
|
+
<DdsProvider>
|
|
101
101
|
<Panel />;
|
|
102
|
-
</
|
|
102
|
+
</DdsProvider>
|
|
103
103
|
);
|
|
104
104
|
```
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.625rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.625;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.187rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.187;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.5625rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.5625;
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.625rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.625;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.187rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.187;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.5625rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.5625;
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.8125rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.8125;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3.125rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3.125;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.5rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.5;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.8125;
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.8125rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.8125;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3.125rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3.125;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.5rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.5;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.8125;
|
package/dist/cjs/index.js
CHANGED
|
@@ -429,6 +429,14 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm$3 = 1;
|
|
|
429
429
|
const ddsFontBodyShortXsmallLetterSpacing$3 = "0.01em";
|
|
430
430
|
const ddsFontBodyShortXsmallParagraphSpacing$3 = "1em";
|
|
431
431
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm$3 = 1;
|
|
432
|
+
const ddsSizeHeightInputLarge$3 = "3.625rem";
|
|
433
|
+
const ddsSizeHeightInputLargeNumberRem$3 = 3.625; // Brukes i input og buttons
|
|
434
|
+
const ddsSizeHeightInputMedium$3 = "3rem";
|
|
435
|
+
const ddsSizeHeightInputMediumNumberRem$3 = 3; // Brukes i input og buttons
|
|
436
|
+
const ddsSizeHeightInputSmall$3 = "2.187rem";
|
|
437
|
+
const ddsSizeHeightInputSmallNumberRem$3 = 2.187; // Brukes i input og buttons
|
|
438
|
+
const ddsSizeHeightInputXsmall$3 = "1.5625rem";
|
|
439
|
+
const ddsSizeHeightInputXsmallNumberRem$3 = 1.5625; // Brukes i input og buttons
|
|
432
440
|
|
|
433
441
|
var ddsTokensCoreLight = /*#__PURE__*/Object.freeze({
|
|
434
442
|
__proto__: null,
|
|
@@ -814,6 +822,14 @@ var ddsTokensCoreLight = /*#__PURE__*/Object.freeze({
|
|
|
814
822
|
ddsShadowLarge: ddsShadowLarge$3,
|
|
815
823
|
ddsShadowMedium: ddsShadowMedium$3,
|
|
816
824
|
ddsShadowSmall: ddsShadowSmall$3,
|
|
825
|
+
ddsSizeHeightInputLarge: ddsSizeHeightInputLarge$3,
|
|
826
|
+
ddsSizeHeightInputLargeNumberRem: ddsSizeHeightInputLargeNumberRem$3,
|
|
827
|
+
ddsSizeHeightInputMedium: ddsSizeHeightInputMedium$3,
|
|
828
|
+
ddsSizeHeightInputMediumNumberRem: ddsSizeHeightInputMediumNumberRem$3,
|
|
829
|
+
ddsSizeHeightInputSmall: ddsSizeHeightInputSmall$3,
|
|
830
|
+
ddsSizeHeightInputSmallNumberRem: ddsSizeHeightInputSmallNumberRem$3,
|
|
831
|
+
ddsSizeHeightInputXsmall: ddsSizeHeightInputXsmall$3,
|
|
832
|
+
ddsSizeHeightInputXsmallNumberRem: ddsSizeHeightInputXsmallNumberRem$3,
|
|
817
833
|
ddsSizeIconComponent: ddsSizeIconComponent$3,
|
|
818
834
|
ddsSizeIconComponentNumberEm: ddsSizeIconComponentNumberEm$3,
|
|
819
835
|
ddsSizeIconLarge: ddsSizeIconLarge$3,
|
|
@@ -1291,6 +1307,14 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm$2 = 1;
|
|
|
1291
1307
|
const ddsFontBodyShortXsmallLetterSpacing$2 = "0.01em";
|
|
1292
1308
|
const ddsFontBodyShortXsmallParagraphSpacing$2 = "1em";
|
|
1293
1309
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm$2 = 1;
|
|
1310
|
+
const ddsSizeHeightInputLarge$2 = "3.625rem";
|
|
1311
|
+
const ddsSizeHeightInputLargeNumberRem$2 = 3.625; // Brukes i input og buttons
|
|
1312
|
+
const ddsSizeHeightInputMedium$2 = "3rem";
|
|
1313
|
+
const ddsSizeHeightInputMediumNumberRem$2 = 3; // Brukes i input og buttons
|
|
1314
|
+
const ddsSizeHeightInputSmall$2 = "2.187rem";
|
|
1315
|
+
const ddsSizeHeightInputSmallNumberRem$2 = 2.187; // Brukes i input og buttons
|
|
1316
|
+
const ddsSizeHeightInputXsmall$2 = "1.5625rem";
|
|
1317
|
+
const ddsSizeHeightInputXsmallNumberRem$2 = 1.5625; // Brukes i input og buttons
|
|
1294
1318
|
|
|
1295
1319
|
var ddsTokensCoreDark = /*#__PURE__*/Object.freeze({
|
|
1296
1320
|
__proto__: null,
|
|
@@ -1676,6 +1700,14 @@ var ddsTokensCoreDark = /*#__PURE__*/Object.freeze({
|
|
|
1676
1700
|
ddsShadowLarge: ddsShadowLarge$2,
|
|
1677
1701
|
ddsShadowMedium: ddsShadowMedium$2,
|
|
1678
1702
|
ddsShadowSmall: ddsShadowSmall$2,
|
|
1703
|
+
ddsSizeHeightInputLarge: ddsSizeHeightInputLarge$2,
|
|
1704
|
+
ddsSizeHeightInputLargeNumberRem: ddsSizeHeightInputLargeNumberRem$2,
|
|
1705
|
+
ddsSizeHeightInputMedium: ddsSizeHeightInputMedium$2,
|
|
1706
|
+
ddsSizeHeightInputMediumNumberRem: ddsSizeHeightInputMediumNumberRem$2,
|
|
1707
|
+
ddsSizeHeightInputSmall: ddsSizeHeightInputSmall$2,
|
|
1708
|
+
ddsSizeHeightInputSmallNumberRem: ddsSizeHeightInputSmallNumberRem$2,
|
|
1709
|
+
ddsSizeHeightInputXsmall: ddsSizeHeightInputXsmall$2,
|
|
1710
|
+
ddsSizeHeightInputXsmallNumberRem: ddsSizeHeightInputXsmallNumberRem$2,
|
|
1679
1711
|
ddsSizeIconComponent: ddsSizeIconComponent$2,
|
|
1680
1712
|
ddsSizeIconComponentNumberEm: ddsSizeIconComponentNumberEm$2,
|
|
1681
1713
|
ddsSizeIconLarge: ddsSizeIconLarge$2,
|
|
@@ -2153,6 +2185,14 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm$1 = 1;
|
|
|
2153
2185
|
const ddsFontBodyShortXsmallLetterSpacing$1 = "0.01em";
|
|
2154
2186
|
const ddsFontBodyShortXsmallParagraphSpacing$1 = "1em";
|
|
2155
2187
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm$1 = 1;
|
|
2188
|
+
const ddsSizeHeightInputLarge$1 = "3.8125rem";
|
|
2189
|
+
const ddsSizeHeightInputLargeNumberRem$1 = 3.8125; // Brukes i input og buttons
|
|
2190
|
+
const ddsSizeHeightInputMedium$1 = "3.125rem";
|
|
2191
|
+
const ddsSizeHeightInputMediumNumberRem$1 = 3.125; // Brukes i input og buttons
|
|
2192
|
+
const ddsSizeHeightInputSmall$1 = "2.5rem";
|
|
2193
|
+
const ddsSizeHeightInputSmallNumberRem$1 = 2.5; // Brukes i input og buttons
|
|
2194
|
+
const ddsSizeHeightInputXsmall$1 = "1.8125rem";
|
|
2195
|
+
const ddsSizeHeightInputXsmallNumberRem$1 = 1.8125; // Brukes i input og buttons
|
|
2156
2196
|
|
|
2157
2197
|
var ddsTokensPublicLight = /*#__PURE__*/Object.freeze({
|
|
2158
2198
|
__proto__: null,
|
|
@@ -2538,6 +2578,14 @@ var ddsTokensPublicLight = /*#__PURE__*/Object.freeze({
|
|
|
2538
2578
|
ddsShadowLarge: ddsShadowLarge$1,
|
|
2539
2579
|
ddsShadowMedium: ddsShadowMedium$1,
|
|
2540
2580
|
ddsShadowSmall: ddsShadowSmall$1,
|
|
2581
|
+
ddsSizeHeightInputLarge: ddsSizeHeightInputLarge$1,
|
|
2582
|
+
ddsSizeHeightInputLargeNumberRem: ddsSizeHeightInputLargeNumberRem$1,
|
|
2583
|
+
ddsSizeHeightInputMedium: ddsSizeHeightInputMedium$1,
|
|
2584
|
+
ddsSizeHeightInputMediumNumberRem: ddsSizeHeightInputMediumNumberRem$1,
|
|
2585
|
+
ddsSizeHeightInputSmall: ddsSizeHeightInputSmall$1,
|
|
2586
|
+
ddsSizeHeightInputSmallNumberRem: ddsSizeHeightInputSmallNumberRem$1,
|
|
2587
|
+
ddsSizeHeightInputXsmall: ddsSizeHeightInputXsmall$1,
|
|
2588
|
+
ddsSizeHeightInputXsmallNumberRem: ddsSizeHeightInputXsmallNumberRem$1,
|
|
2541
2589
|
ddsSizeIconComponent: ddsSizeIconComponent$1,
|
|
2542
2590
|
ddsSizeIconComponentNumberEm: ddsSizeIconComponentNumberEm$1,
|
|
2543
2591
|
ddsSizeIconLarge: ddsSizeIconLarge$1,
|
|
@@ -3015,6 +3063,14 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
3015
3063
|
const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
3016
3064
|
const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
3017
3065
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
3066
|
+
const ddsSizeHeightInputLarge = "3.8125rem";
|
|
3067
|
+
const ddsSizeHeightInputLargeNumberRem = 3.8125; // Brukes i input og buttons
|
|
3068
|
+
const ddsSizeHeightInputMedium = "3.125rem";
|
|
3069
|
+
const ddsSizeHeightInputMediumNumberRem = 3.125; // Brukes i input og buttons
|
|
3070
|
+
const ddsSizeHeightInputSmall = "2.5rem";
|
|
3071
|
+
const ddsSizeHeightInputSmallNumberRem = 2.5; // Brukes i input og buttons
|
|
3072
|
+
const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
3073
|
+
const ddsSizeHeightInputXsmallNumberRem = 1.8125; // Brukes i input og buttons
|
|
3018
3074
|
|
|
3019
3075
|
var ddsTokensPublicDark = /*#__PURE__*/Object.freeze({
|
|
3020
3076
|
__proto__: null,
|
|
@@ -3400,6 +3456,14 @@ var ddsTokensPublicDark = /*#__PURE__*/Object.freeze({
|
|
|
3400
3456
|
ddsShadowLarge: ddsShadowLarge,
|
|
3401
3457
|
ddsShadowMedium: ddsShadowMedium,
|
|
3402
3458
|
ddsShadowSmall: ddsShadowSmall,
|
|
3459
|
+
ddsSizeHeightInputLarge: ddsSizeHeightInputLarge,
|
|
3460
|
+
ddsSizeHeightInputLargeNumberRem: ddsSizeHeightInputLargeNumberRem,
|
|
3461
|
+
ddsSizeHeightInputMedium: ddsSizeHeightInputMedium,
|
|
3462
|
+
ddsSizeHeightInputMediumNumberRem: ddsSizeHeightInputMediumNumberRem,
|
|
3463
|
+
ddsSizeHeightInputSmall: ddsSizeHeightInputSmall,
|
|
3464
|
+
ddsSizeHeightInputSmallNumberRem: ddsSizeHeightInputSmallNumberRem,
|
|
3465
|
+
ddsSizeHeightInputXsmall: ddsSizeHeightInputXsmall,
|
|
3466
|
+
ddsSizeHeightInputXsmallNumberRem: ddsSizeHeightInputXsmallNumberRem,
|
|
3403
3467
|
ddsSizeIconComponent: ddsSizeIconComponent,
|
|
3404
3468
|
ddsSizeIconComponentNumberEm: ddsSizeIconComponentNumberEm,
|
|
3405
3469
|
ddsSizeIconLarge: ddsSizeIconLarge,
|
package/dist/cjs/src/index.d.ts
CHANGED
|
@@ -428,6 +428,14 @@ export declare const ddsTokens: {
|
|
|
428
428
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
429
429
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
430
430
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
431
|
+
ddsSizeHeightInputLarge: "3.625rem";
|
|
432
|
+
ddsSizeHeightInputLargeNumberRem: 3.625;
|
|
433
|
+
ddsSizeHeightInputMedium: "3rem";
|
|
434
|
+
ddsSizeHeightInputMediumNumberRem: 3;
|
|
435
|
+
ddsSizeHeightInputSmall: "2.187rem";
|
|
436
|
+
ddsSizeHeightInputSmallNumberRem: 2.187;
|
|
437
|
+
ddsSizeHeightInputXsmall: "1.5625rem";
|
|
438
|
+
ddsSizeHeightInputXsmallNumberRem: 1.5625;
|
|
431
439
|
};
|
|
432
440
|
'core-dark': {
|
|
433
441
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
@@ -858,6 +866,14 @@ export declare const ddsTokens: {
|
|
|
858
866
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
859
867
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
860
868
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
869
|
+
ddsSizeHeightInputLarge: "3.625rem";
|
|
870
|
+
ddsSizeHeightInputLargeNumberRem: 3.625;
|
|
871
|
+
ddsSizeHeightInputMedium: "3rem";
|
|
872
|
+
ddsSizeHeightInputMediumNumberRem: 3;
|
|
873
|
+
ddsSizeHeightInputSmall: "2.187rem";
|
|
874
|
+
ddsSizeHeightInputSmallNumberRem: 2.187;
|
|
875
|
+
ddsSizeHeightInputXsmall: "1.5625rem";
|
|
876
|
+
ddsSizeHeightInputXsmallNumberRem: 1.5625;
|
|
861
877
|
};
|
|
862
878
|
'public-light': {
|
|
863
879
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
@@ -1288,6 +1304,14 @@ export declare const ddsTokens: {
|
|
|
1288
1304
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
1289
1305
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
1290
1306
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
1307
|
+
ddsSizeHeightInputLarge: "3.8125rem";
|
|
1308
|
+
ddsSizeHeightInputLargeNumberRem: 3.8125;
|
|
1309
|
+
ddsSizeHeightInputMedium: "3.125rem";
|
|
1310
|
+
ddsSizeHeightInputMediumNumberRem: 3.125;
|
|
1311
|
+
ddsSizeHeightInputSmall: "2.5rem";
|
|
1312
|
+
ddsSizeHeightInputSmallNumberRem: 2.5;
|
|
1313
|
+
ddsSizeHeightInputXsmall: "1.8125rem";
|
|
1314
|
+
ddsSizeHeightInputXsmallNumberRem: 1.8125;
|
|
1291
1315
|
};
|
|
1292
1316
|
'public-dark': {
|
|
1293
1317
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
@@ -1718,5 +1742,13 @@ export declare const ddsTokens: {
|
|
|
1718
1742
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
1719
1743
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
1720
1744
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
1745
|
+
ddsSizeHeightInputLarge: "3.8125rem";
|
|
1746
|
+
ddsSizeHeightInputLargeNumberRem: 3.8125;
|
|
1747
|
+
ddsSizeHeightInputMedium: "3.125rem";
|
|
1748
|
+
ddsSizeHeightInputMediumNumberRem: 3.125;
|
|
1749
|
+
ddsSizeHeightInputSmall: "2.5rem";
|
|
1750
|
+
ddsSizeHeightInputSmallNumberRem: 2.5;
|
|
1751
|
+
ddsSizeHeightInputXsmall: "1.8125rem";
|
|
1752
|
+
ddsSizeHeightInputXsmallNumberRem: 1.8125;
|
|
1721
1753
|
};
|
|
1722
1754
|
};
|
|
@@ -364,4 +364,8 @@
|
|
|
364
364
|
--dds-font-body-short-small-paragraph-spacing: 1em;
|
|
365
365
|
--dds-font-body-short-xsmall-letter-spacing: 0.01em;
|
|
366
366
|
--dds-font-body-short-xsmall-paragraph-spacing: 1em;
|
|
367
|
+
--dds-size-height-input-large: 3.625rem; /* Brukes i input og buttons */
|
|
368
|
+
--dds-size-height-input-medium: 3rem; /* Brukes i input og buttons */
|
|
369
|
+
--dds-size-height-input-small: 2.187rem; /* Brukes i input og buttons */
|
|
370
|
+
--dds-size-height-input-xsmall: 1.5625rem; /* Brukes i input og buttons */
|
|
367
371
|
}
|
|
@@ -364,4 +364,8 @@
|
|
|
364
364
|
--dds-font-body-short-small-paragraph-spacing: 1em;
|
|
365
365
|
--dds-font-body-short-xsmall-letter-spacing: 0.01em;
|
|
366
366
|
--dds-font-body-short-xsmall-paragraph-spacing: 1em;
|
|
367
|
+
--dds-size-height-input-large: 3.625rem; /* Brukes i input og buttons */
|
|
368
|
+
--dds-size-height-input-medium: 3rem; /* Brukes i input og buttons */
|
|
369
|
+
--dds-size-height-input-small: 2.187rem; /* Brukes i input og buttons */
|
|
370
|
+
--dds-size-height-input-xsmall: 1.5625rem; /* Brukes i input og buttons */
|
|
367
371
|
}
|
|
@@ -364,4 +364,8 @@
|
|
|
364
364
|
--dds-font-body-short-small-paragraph-spacing: 1em;
|
|
365
365
|
--dds-font-body-short-xsmall-letter-spacing: 0.01em;
|
|
366
366
|
--dds-font-body-short-xsmall-paragraph-spacing: 1em;
|
|
367
|
+
--dds-size-height-input-large: 3.8125rem; /* Brukes i input og buttons */
|
|
368
|
+
--dds-size-height-input-medium: 3.125rem; /* Brukes i input og buttons */
|
|
369
|
+
--dds-size-height-input-small: 2.5rem; /* Brukes i input og buttons */
|
|
370
|
+
--dds-size-height-input-xsmall: 1.8125rem; /* Brukes i input og buttons */
|
|
367
371
|
}
|
|
@@ -364,4 +364,8 @@
|
|
|
364
364
|
--dds-font-body-short-small-paragraph-spacing: 1em;
|
|
365
365
|
--dds-font-body-short-xsmall-letter-spacing: 0.01em;
|
|
366
366
|
--dds-font-body-short-xsmall-paragraph-spacing: 1em;
|
|
367
|
+
--dds-size-height-input-large: 3.8125rem; /* Brukes i input og buttons */
|
|
368
|
+
--dds-size-height-input-medium: 3.125rem; /* Brukes i input og buttons */
|
|
369
|
+
--dds-size-height-input-small: 2.5rem; /* Brukes i input og buttons */
|
|
370
|
+
--dds-size-height-input-xsmall: 1.8125rem; /* Brukes i input og buttons */
|
|
367
371
|
}
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.625rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.625;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.187rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.187;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.5625rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.5625;
|
|
@@ -427,5 +427,13 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
427
427
|
const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
428
428
|
const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
429
429
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
430
|
+
const ddsSizeHeightInputLarge = "3.625rem";
|
|
431
|
+
const ddsSizeHeightInputLargeNumberRem = 3.625; // Brukes i input og buttons
|
|
432
|
+
const ddsSizeHeightInputMedium = "3rem";
|
|
433
|
+
const ddsSizeHeightInputMediumNumberRem = 3; // Brukes i input og buttons
|
|
434
|
+
const ddsSizeHeightInputSmall = "2.187rem";
|
|
435
|
+
const ddsSizeHeightInputSmallNumberRem = 2.187; // Brukes i input og buttons
|
|
436
|
+
const ddsSizeHeightInputXsmall = "1.5625rem";
|
|
437
|
+
const ddsSizeHeightInputXsmallNumberRem = 1.5625; // Brukes i input og buttons
|
|
430
438
|
|
|
431
|
-
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
439
|
+
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeHeightInputLarge, ddsSizeHeightInputLargeNumberRem, ddsSizeHeightInputMedium, ddsSizeHeightInputMediumNumberRem, ddsSizeHeightInputSmall, ddsSizeHeightInputSmallNumberRem, ddsSizeHeightInputXsmall, ddsSizeHeightInputXsmallNumberRem, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.625rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.625;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.187rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.187;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.5625rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.5625;
|
|
@@ -427,5 +427,13 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
427
427
|
const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
428
428
|
const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
429
429
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
430
|
+
const ddsSizeHeightInputLarge = "3.625rem";
|
|
431
|
+
const ddsSizeHeightInputLargeNumberRem = 3.625; // Brukes i input og buttons
|
|
432
|
+
const ddsSizeHeightInputMedium = "3rem";
|
|
433
|
+
const ddsSizeHeightInputMediumNumberRem = 3; // Brukes i input og buttons
|
|
434
|
+
const ddsSizeHeightInputSmall = "2.187rem";
|
|
435
|
+
const ddsSizeHeightInputSmallNumberRem = 2.187; // Brukes i input og buttons
|
|
436
|
+
const ddsSizeHeightInputXsmall = "1.5625rem";
|
|
437
|
+
const ddsSizeHeightInputXsmallNumberRem = 1.5625; // Brukes i input og buttons
|
|
430
438
|
|
|
431
|
-
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
439
|
+
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeHeightInputLarge, ddsSizeHeightInputLargeNumberRem, ddsSizeHeightInputMedium, ddsSizeHeightInputMediumNumberRem, ddsSizeHeightInputSmall, ddsSizeHeightInputSmallNumberRem, ddsSizeHeightInputXsmall, ddsSizeHeightInputXsmallNumberRem, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.8125rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.8125;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3.125rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3.125;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.5rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.5;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.8125;
|
|
@@ -427,5 +427,13 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
427
427
|
const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
428
428
|
const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
429
429
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
430
|
+
const ddsSizeHeightInputLarge = "3.8125rem";
|
|
431
|
+
const ddsSizeHeightInputLargeNumberRem = 3.8125; // Brukes i input og buttons
|
|
432
|
+
const ddsSizeHeightInputMedium = "3.125rem";
|
|
433
|
+
const ddsSizeHeightInputMediumNumberRem = 3.125; // Brukes i input og buttons
|
|
434
|
+
const ddsSizeHeightInputSmall = "2.5rem";
|
|
435
|
+
const ddsSizeHeightInputSmallNumberRem = 2.5; // Brukes i input og buttons
|
|
436
|
+
const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
437
|
+
const ddsSizeHeightInputXsmallNumberRem = 1.8125; // Brukes i input og buttons
|
|
430
438
|
|
|
431
|
-
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
439
|
+
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeHeightInputLarge, ddsSizeHeightInputLargeNumberRem, ddsSizeHeightInputMedium, ddsSizeHeightInputMediumNumberRem, ddsSizeHeightInputSmall, ddsSizeHeightInputSmallNumberRem, ddsSizeHeightInputXsmall, ddsSizeHeightInputXsmallNumberRem, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
@@ -426,3 +426,11 @@ export declare const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
426
426
|
export declare const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
427
427
|
export declare const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
428
428
|
export declare const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
429
|
+
export declare const ddsSizeHeightInputLarge = "3.8125rem";
|
|
430
|
+
export declare const ddsSizeHeightInputLargeNumberRem = 3.8125;
|
|
431
|
+
export declare const ddsSizeHeightInputMedium = "3.125rem";
|
|
432
|
+
export declare const ddsSizeHeightInputMediumNumberRem = 3.125;
|
|
433
|
+
export declare const ddsSizeHeightInputSmall = "2.5rem";
|
|
434
|
+
export declare const ddsSizeHeightInputSmallNumberRem = 2.5;
|
|
435
|
+
export declare const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
436
|
+
export declare const ddsSizeHeightInputXsmallNumberRem = 1.8125;
|
|
@@ -427,5 +427,13 @@ const ddsFontBodyShortSmallParagraphSpacingNumberEm = 1;
|
|
|
427
427
|
const ddsFontBodyShortXsmallLetterSpacing = "0.01em";
|
|
428
428
|
const ddsFontBodyShortXsmallParagraphSpacing = "1em";
|
|
429
429
|
const ddsFontBodyShortXsmallParagraphSpacingNumberEm = 1;
|
|
430
|
+
const ddsSizeHeightInputLarge = "3.8125rem";
|
|
431
|
+
const ddsSizeHeightInputLargeNumberRem = 3.8125; // Brukes i input og buttons
|
|
432
|
+
const ddsSizeHeightInputMedium = "3.125rem";
|
|
433
|
+
const ddsSizeHeightInputMediumNumberRem = 3.125; // Brukes i input og buttons
|
|
434
|
+
const ddsSizeHeightInputSmall = "2.5rem";
|
|
435
|
+
const ddsSizeHeightInputSmallNumberRem = 2.5; // Brukes i input og buttons
|
|
436
|
+
const ddsSizeHeightInputXsmall = "1.8125rem";
|
|
437
|
+
const ddsSizeHeightInputXsmallNumberRem = 1.8125; // Brukes i input og buttons
|
|
430
438
|
|
|
431
|
-
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
439
|
+
export { ddsBorderRadiusButton, ddsBorderRadiusButtonNumberPx, ddsBorderRadiusChip, ddsBorderRadiusChipNumberPx, ddsBorderRadiusInput, ddsBorderRadiusInputNumberPx, ddsBorderRadiusRounded, ddsBorderRadiusRoundedNumberPx, ddsBorderRadiusSurface, ddsBorderRadiusSurfaceNumberPx, ddsBreakpointLg, ddsBreakpointLgNumberPx, ddsBreakpointMd, ddsBreakpointMdNumberPx, ddsBreakpointSm, ddsBreakpointSmNumberPx, ddsBreakpointXl, ddsBreakpointXlNumberPx, ddsBreakpointXs, ddsBreakpointXsNumberPx, ddsColorBgDefault, ddsColorBgSubtle, ddsColorBorderActionDefault, ddsColorBorderActionHover, ddsColorBorderDanger, ddsColorBorderDefault, ddsColorBorderInfo, ddsColorBorderInverse, ddsColorBorderOnAction, ddsColorBorderSubtle, ddsColorBorderSuccess, ddsColorBorderWarning, ddsColorBrandPrimaryDefault, ddsColorBrandPrimaryMedium, ddsColorBrandPrimaryStrong, ddsColorBrandPrimarySubtle, ddsColorBrandSecondaryDefault, ddsColorBrandSecondaryMedium, ddsColorBrandSecondaryStrong, ddsColorBrandSecondarySubtle, ddsColorBrandTertiaryDefault, ddsColorBrandTertiaryMedium, ddsColorBrandTertiaryStrong, ddsColorBrandTertiarySubtle, ddsColorData01Border, ddsColorData01Default, ddsColorData01Subtle, ddsColorData02Border, ddsColorData02Default, ddsColorData02Subtle, ddsColorData03Border, ddsColorData03Default, ddsColorData03Subtle, ddsColorData04Border, ddsColorData04Default, ddsColorData04Subtle, ddsColorData05Border, ddsColorData05Default, ddsColorData05Subtle, ddsColorData06Border, ddsColorData06Default, ddsColorData06Subtle, ddsColorData07Border, ddsColorData07Default, ddsColorData07Subtle, ddsColorData08Border, ddsColorData08Default, ddsColorData08Subtle, ddsColorData09Border, ddsColorData09Default, ddsColorData09Subtle, ddsColorData10Border, ddsColorData10Default, ddsColorData10Subtle, ddsColorDataBlue100, ddsColorDataBlue200, ddsColorDataBlue300, ddsColorDataBlue400, ddsColorDataBlue500, ddsColorDataBlue600, ddsColorDataBlue700, ddsColorDataBlue800, ddsColorDataBlue900, ddsColorDataBrown100, ddsColorDataBrown200, ddsColorDataBrown300, ddsColorDataBrown400, ddsColorDataBrown500, ddsColorDataBrown600, ddsColorDataBrown700, ddsColorDataBrown800, ddsColorDataBrown900, ddsColorDataDeepblue100, ddsColorDataDeepblue200, ddsColorDataDeepblue300, ddsColorDataDeepblue400, ddsColorDataDeepblue500, ddsColorDataDeepblue600, ddsColorDataDeepblue700, ddsColorDataDeepblue800, ddsColorDataDeepblue900, ddsColorDataGray100, ddsColorDataGray200, ddsColorDataGray300, ddsColorDataGray400, ddsColorDataGray500, ddsColorDataGray600, ddsColorDataGray700, ddsColorDataGray800, ddsColorDataGray900, ddsColorDataGreen100, ddsColorDataGreen200, ddsColorDataGreen300, ddsColorDataGreen400, ddsColorDataGreen500, ddsColorDataGreen600, ddsColorDataGreen700, ddsColorDataGreen800, ddsColorDataGreen900, ddsColorDataMagenta100, ddsColorDataMagenta200, ddsColorDataMagenta300, ddsColorDataMagenta400, ddsColorDataMagenta500, ddsColorDataMagenta600, ddsColorDataMagenta700, ddsColorDataMagenta800, ddsColorDataMagenta900, ddsColorDataOlive100, ddsColorDataOlive200, ddsColorDataOlive300, ddsColorDataOlive400, ddsColorDataOlive500, ddsColorDataOlive600, ddsColorDataOlive700, ddsColorDataOlive800, ddsColorDataOlive900, ddsColorDataPurple100, ddsColorDataPurple200, ddsColorDataPurple300, ddsColorDataPurple400, ddsColorDataPurple500, ddsColorDataPurple600, ddsColorDataPurple700, ddsColorDataPurple800, ddsColorDataPurple900, ddsColorDataRed100, ddsColorDataRed200, ddsColorDataRed300, ddsColorDataRed400, ddsColorDataRed500, ddsColorDataRed600, ddsColorDataRed700, ddsColorDataRed800, ddsColorDataRed900, ddsColorDataTeal100, ddsColorDataTeal200, ddsColorDataTeal300, ddsColorDataTeal400, ddsColorDataTeal500, ddsColorDataTeal600, ddsColorDataTeal700, ddsColorDataTeal800, ddsColorDataTeal900, ddsColorFocusInside, ddsColorFocusOutside, ddsColorIconActionHover, ddsColorIconActionResting, ddsColorIconDanger, ddsColorIconDefault, ddsColorIconMedium, ddsColorIconOnAction, ddsColorIconOnDangerDefault, ddsColorIconOnDangerStrong, ddsColorIconOnInfoDefault, ddsColorIconOnInfoStrong, ddsColorIconOnInverse, ddsColorIconOnSuccessDefault, ddsColorIconOnSuccessStrong, ddsColorIconOnWarningDefault, ddsColorIconOnWarningStrong, ddsColorIconSubtle, ddsColorSurfaceActionDangerHover, ddsColorSurfaceActionDangerResting, ddsColorSurfaceActionHover, ddsColorSurfaceActionResting, ddsColorSurfaceActionSelected, ddsColorSurfaceActionSelectedDisabled, ddsColorSurfaceBackdropDefault, ddsColorSurfaceDangerDefault, ddsColorSurfaceDangerStrong, ddsColorSurfaceDefault, ddsColorSurfaceFieldDefault, ddsColorSurfaceFieldDisabled, ddsColorSurfaceHighlightedDefault, ddsColorSurfaceHoverDefault, ddsColorSurfaceHoverSubtle, ddsColorSurfaceInfoDefault, ddsColorSurfaceInfoStrong, ddsColorSurfaceInverseDefault, ddsColorSurfaceInverseHover, ddsColorSurfaceInverseSelected, ddsColorSurfaceMedium, ddsColorSurfaceNotification, ddsColorSurfacePaperDefault, ddsColorSurfaceScrollbar, ddsColorSurfaceSelectedDefault, ddsColorSurfaceSkeleton, ddsColorSurfaceSubtle, ddsColorSurfaceSuccessDefault, ddsColorSurfaceSuccessStrong, ddsColorSurfaceWarningDefault, ddsColorSurfaceWarningStrong, ddsColorTextActionHover, ddsColorTextActionResting, ddsColorTextActionVisited, ddsColorTextActionVisitedOnInverse, ddsColorTextDanger, ddsColorTextDefault, ddsColorTextMedium, ddsColorTextOnAction, ddsColorTextOnDataDefault, ddsColorTextOnDataSubtle, ddsColorTextOnInverse, ddsColorTextOnNotification, ddsColorTextOnPrimaryDefault, ddsColorTextOnPrimaryMedium, ddsColorTextOnPrimaryStrong, ddsColorTextOnPrimarySubtle, ddsColorTextOnSecondaryDefault, ddsColorTextOnSecondaryMedium, ddsColorTextOnSecondaryStrong, ddsColorTextOnSecondarySubtle, ddsColorTextOnStatusDefault, ddsColorTextOnStatusStrong, ddsColorTextOnTertiaryDefault, ddsColorTextOnTertiaryMedium, ddsColorTextOnTertiaryStrong, ddsColorTextOnTertiarySubtle, ddsColorTextRequiredfield, ddsColorTextSubtle, ddsFontBodyLongLarge, ddsFontBodyLongLargeLetterSpacing, ddsFontBodyLongLargeParagraphSpacing, ddsFontBodyLongLargeParagraphSpacingNumberEm, ddsFontBodyLongMedium, ddsFontBodyLongMediumLetterSpacing, ddsFontBodyLongMediumParagraphSpacing, ddsFontBodyLongMediumParagraphSpacingNumberEm, ddsFontBodyLongSmall, ddsFontBodyLongSmallLetterSpacing, ddsFontBodyLongSmallParagraphSpacing, ddsFontBodyLongSmallParagraphSpacingNumberEm, ddsFontBodyLongXsmall, ddsFontBodyLongXsmallLetterSpacing, ddsFontBodyLongXsmallParagraphSpacing, ddsFontBodyLongXsmallParagraphSpacingNumberEm, ddsFontBodyShortLarge, ddsFontBodyShortLargeLetterSpacing, ddsFontBodyShortLargeParagraphSpacing, ddsFontBodyShortLargeParagraphSpacingNumberEm, ddsFontBodyShortMedium, ddsFontBodyShortMediumLetterSpacing, ddsFontBodyShortMediumParagraphSpacing, ddsFontBodyShortMediumParagraphSpacingNumberEm, ddsFontBodyShortSmall, ddsFontBodyShortSmallLetterSpacing, ddsFontBodyShortSmallParagraphSpacing, ddsFontBodyShortSmallParagraphSpacingNumberEm, ddsFontBodyShortXsmall, ddsFontBodyShortXsmallLetterSpacing, ddsFontBodyShortXsmallParagraphSpacing, ddsFontBodyShortXsmallParagraphSpacingNumberEm, ddsFontCodeMedium, ddsFontCodeMediumLetterSpacing, ddsFontCodeMediumParagraphSpacing, ddsFontCodeMediumParagraphSpacingNumberEm, ddsFontFamilyMonospace, ddsFontFamilySans, ddsFontHeadingLarge, ddsFontHeadingLargeLetterSpacing, ddsFontHeadingLargeParagraphSpacing, ddsFontHeadingLargeParagraphSpacingNumberEm, ddsFontHeadingMedium, ddsFontHeadingMediumLetterSpacing, ddsFontHeadingMediumParagraphSpacing, ddsFontHeadingMediumParagraphSpacingNumberEm, ddsFontHeadingSmall, ddsFontHeadingSmallLetterSpacing, ddsFontHeadingSmallParagraphSpacing, ddsFontHeadingSmallParagraphSpacingNumberEm, ddsFontHeadingXlarge, ddsFontHeadingXlargeLetterSpacing, ddsFontHeadingXlargeParagraphSpacing, ddsFontHeadingXlargeParagraphSpacingNumberEm, ddsFontHeadingXsmall, ddsFontHeadingXsmallLetterSpacing, ddsFontHeadingXsmallParagraphSpacing, ddsFontHeadingXsmallParagraphSpacingNumberEm, ddsFontHeadingXxlarge, ddsFontHeadingXxlargeLetterSpacing, ddsFontHeadingXxlargeParagraphSpacing, ddsFontHeadingXxlargeParagraphSpacingNumberEm, ddsFontHeadingXxsmall, ddsFontHeadingXxsmallLetterSpacing, ddsFontHeadingXxsmallParagraphSpacing, ddsFontHeadingXxsmallParagraphSpacingNumberEm, ddsFontLabelMedium, ddsFontLabelMediumLetterSpacing, ddsFontLabelMediumParagraphSpacing, ddsFontLabelMediumParagraphSpacingNumberEm, ddsFontLeadMedium, ddsFontLeadMediumLetterSpacing, ddsFontLeadMediumParagraphSpacing, ddsFontLeadMediumParagraphSpacingNumberEm, ddsFontLetterSpacingLoose, ddsFontLetterSpacingNormal, ddsFontLetterSpacingTight, ddsFontLineheightX1, ddsFontLineheightX2, ddsFontLineheightX3, ddsFontParagraphSpacingHeading, ddsFontParagraphSpacingHeadingNumberEm, ddsFontParagraphSpacingLarge, ddsFontParagraphSpacingLargeNumberEm, ddsFontParagraphSpacingList, ddsFontParagraphSpacingListNumberEm, ddsFontParagraphSpacingMedium, ddsFontParagraphSpacingMediumNumberEm, ddsFontParagraphSpacingSmall, ddsFontParagraphSpacingSmallNumberEm, ddsFontSizeX075, ddsFontSizeX075NumberRem, ddsFontSizeX0875, ddsFontSizeX0875NumberRem, ddsFontSizeX1, ddsFontSizeX1125, ddsFontSizeX1125NumberRem, ddsFontSizeX125, ddsFontSizeX125NumberRem, ddsFontSizeX15, ddsFontSizeX15NumberRem, ddsFontSizeX1NumberRem, ddsFontSizeX2, ddsFontSizeX25, ddsFontSizeX25NumberRem, ddsFontSizeX2NumberRem, ddsFontSizeX3, ddsFontSizeX3NumberRem, ddsFontSizeX4, ddsFontSizeX4NumberRem, ddsFontSizeX5, ddsFontSizeX5NumberRem, ddsFontStyleItalic, ddsFontStyleNormal, ddsFontStyleUnderline, ddsFontWeightBold, ddsFontWeightLight, ddsFontWeightNormal, ddsFontWeightSemiBold, ddsGridLgCount, ddsGridLgGutterSize, ddsGridLgGutterSizeNumberPx, ddsGridMdCount, ddsGridMdGutterSize, ddsGridMdGutterSizeNumberPx, ddsGridSmCount, ddsGridSmGutterSize, ddsGridSmGutterSizeNumberPx, ddsGridXlCount, ddsGridXlGutterSize, ddsGridXlGutterSizeNumberPx, ddsGridXsCount, ddsGridXsGutterSize, ddsGridXsGutterSizeNumberPx, ddsMotionAnimationSkeleton, ddsMotionChevron, ddsMotionMicroState, ddsMotionSurface, ddsShadowLarge, ddsShadowMedium, ddsShadowSmall, ddsSizeHeightInputLarge, ddsSizeHeightInputLargeNumberRem, ddsSizeHeightInputMedium, ddsSizeHeightInputMediumNumberRem, ddsSizeHeightInputSmall, ddsSizeHeightInputSmallNumberRem, ddsSizeHeightInputXsmall, ddsSizeHeightInputXsmallNumberRem, ddsSizeIconComponent, ddsSizeIconComponentNumberEm, ddsSizeIconLarge, ddsSizeIconLargeNumberPx, ddsSizeIconMedium, ddsSizeIconMediumNumberPx, ddsSizeIconSmall, ddsSizeIconSmallNumberPx, ddsSpacingPaddingTopHeading, ddsSpacingPaddingTopHeadingNumberEm, ddsSpacingX0, ddsSpacingX0125, ddsSpacingX0125NumberRem, ddsSpacingX025, ddsSpacingX025NumberRem, ddsSpacingX05, ddsSpacingX05NumberRem, ddsSpacingX075, ddsSpacingX075NumberRem, ddsSpacingX0NumberRem, ddsSpacingX1, ddsSpacingX10, ddsSpacingX10NumberRem, ddsSpacingX15, ddsSpacingX15NumberRem, ddsSpacingX1NumberRem, ddsSpacingX2, ddsSpacingX25, ddsSpacingX25NumberRem, ddsSpacingX2NumberRem, ddsSpacingX3, ddsSpacingX3NumberRem, ddsSpacingX4, ddsSpacingX4NumberRem, ddsSpacingX6, ddsSpacingX6NumberRem, ddsZindexAbsoluteElement, ddsZindexDrawer, ddsZindexDrawerBackdrop, ddsZindexDropdown, ddsZindexModalBackdrop, ddsZindexOverflowmenu, ddsZindexPopover, ddsZindexSkiptocontent, ddsZindexSticky, ddsZindexTooltip };
|
|
@@ -361,4 +361,8 @@
|
|
|
361
361
|
$dds-font-body-short-small-letter-spacing: var(--dds-font-body-short-small-letter-spacing);
|
|
362
362
|
$dds-font-body-short-small-paragraph-spacing: var(--dds-font-body-short-small-paragraph-spacing);
|
|
363
363
|
$dds-font-body-short-xsmall-letter-spacing: var(--dds-font-body-short-xsmall-letter-spacing);
|
|
364
|
-
$dds-font-body-short-xsmall-paragraph-spacing: var(--dds-font-body-short-xsmall-paragraph-spacing);
|
|
364
|
+
$dds-font-body-short-xsmall-paragraph-spacing: var(--dds-font-body-short-xsmall-paragraph-spacing);
|
|
365
|
+
$dds-size-height-input-large: var(--dds-size-height-input-large); /* Brukes i input og buttons */
|
|
366
|
+
$dds-size-height-input-medium: var(--dds-size-height-input-medium); /* Brukes i input og buttons */
|
|
367
|
+
$dds-size-height-input-small: var(--dds-size-height-input-small); /* Brukes i input og buttons */
|
|
368
|
+
$dds-size-height-input-xsmall: var(--dds-size-height-input-xsmall); /* Brukes i input og buttons */
|
package/dist/src/index.d.ts
CHANGED
|
@@ -428,6 +428,14 @@ export declare const ddsTokens: {
|
|
|
428
428
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
429
429
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
430
430
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
431
|
+
ddsSizeHeightInputLarge: "3.625rem";
|
|
432
|
+
ddsSizeHeightInputLargeNumberRem: 3.625;
|
|
433
|
+
ddsSizeHeightInputMedium: "3rem";
|
|
434
|
+
ddsSizeHeightInputMediumNumberRem: 3;
|
|
435
|
+
ddsSizeHeightInputSmall: "2.187rem";
|
|
436
|
+
ddsSizeHeightInputSmallNumberRem: 2.187;
|
|
437
|
+
ddsSizeHeightInputXsmall: "1.5625rem";
|
|
438
|
+
ddsSizeHeightInputXsmallNumberRem: 1.5625;
|
|
431
439
|
};
|
|
432
440
|
'core-dark': {
|
|
433
441
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
@@ -858,6 +866,14 @@ export declare const ddsTokens: {
|
|
|
858
866
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
859
867
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
860
868
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
869
|
+
ddsSizeHeightInputLarge: "3.625rem";
|
|
870
|
+
ddsSizeHeightInputLargeNumberRem: 3.625;
|
|
871
|
+
ddsSizeHeightInputMedium: "3rem";
|
|
872
|
+
ddsSizeHeightInputMediumNumberRem: 3;
|
|
873
|
+
ddsSizeHeightInputSmall: "2.187rem";
|
|
874
|
+
ddsSizeHeightInputSmallNumberRem: 2.187;
|
|
875
|
+
ddsSizeHeightInputXsmall: "1.5625rem";
|
|
876
|
+
ddsSizeHeightInputXsmallNumberRem: 1.5625;
|
|
861
877
|
};
|
|
862
878
|
'public-light': {
|
|
863
879
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
@@ -1288,6 +1304,14 @@ export declare const ddsTokens: {
|
|
|
1288
1304
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
1289
1305
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
1290
1306
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
1307
|
+
ddsSizeHeightInputLarge: "3.8125rem";
|
|
1308
|
+
ddsSizeHeightInputLargeNumberRem: 3.8125;
|
|
1309
|
+
ddsSizeHeightInputMedium: "3.125rem";
|
|
1310
|
+
ddsSizeHeightInputMediumNumberRem: 3.125;
|
|
1311
|
+
ddsSizeHeightInputSmall: "2.5rem";
|
|
1312
|
+
ddsSizeHeightInputSmallNumberRem: 2.5;
|
|
1313
|
+
ddsSizeHeightInputXsmall: "1.8125rem";
|
|
1314
|
+
ddsSizeHeightInputXsmallNumberRem: 1.8125;
|
|
1291
1315
|
};
|
|
1292
1316
|
'public-dark': {
|
|
1293
1317
|
ddsFontFamilySans: "'IBM Plex Sans', Arial, sans-serif";
|
|
@@ -1718,5 +1742,13 @@ export declare const ddsTokens: {
|
|
|
1718
1742
|
ddsFontBodyShortXsmallLetterSpacing: "0.01em";
|
|
1719
1743
|
ddsFontBodyShortXsmallParagraphSpacing: "1em";
|
|
1720
1744
|
ddsFontBodyShortXsmallParagraphSpacingNumberEm: 1;
|
|
1745
|
+
ddsSizeHeightInputLarge: "3.8125rem";
|
|
1746
|
+
ddsSizeHeightInputLargeNumberRem: 3.8125;
|
|
1747
|
+
ddsSizeHeightInputMedium: "3.125rem";
|
|
1748
|
+
ddsSizeHeightInputMediumNumberRem: 3.125;
|
|
1749
|
+
ddsSizeHeightInputSmall: "2.5rem";
|
|
1750
|
+
ddsSizeHeightInputSmallNumberRem: 2.5;
|
|
1751
|
+
ddsSizeHeightInputXsmall: "1.8125rem";
|
|
1752
|
+
ddsSizeHeightInputXsmallNumberRem: 1.8125;
|
|
1721
1753
|
};
|
|
1722
1754
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@norges-domstoler/dds-design-tokens",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.3.0",
|
|
4
4
|
"description": "Design tokens used in Domstolenes designsystem",
|
|
5
5
|
"author": "DDS team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"elsa"
|
|
37
37
|
],
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@rollup/plugin-commonjs": "^29.0.
|
|
39
|
+
"@rollup/plugin-commonjs": "^29.0.3",
|
|
40
40
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
41
|
-
"@types/node": "^25.
|
|
41
|
+
"@types/node": "^25.9.1",
|
|
42
42
|
"@tokens-studio/sd-transforms": "^2.0.3",
|
|
43
43
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
44
44
|
"rollup": "^3.30.0",
|
|
45
45
|
"rollup-plugin-copy": "^3.5.0",
|
|
46
46
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
47
47
|
"rollup-plugin-sass": "^1.15.3",
|
|
48
|
-
"rollup-plugin-typescript2": "^0.
|
|
49
|
-
"style-dictionary": "^5.4.
|
|
48
|
+
"rollup-plugin-typescript2": "^0.37.0",
|
|
49
|
+
"style-dictionary": "^5.4.3",
|
|
50
50
|
"typescript": "^5.9.3"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|