@midas-ds/components 8.2.0 → 9.0.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/CHANGELOG.md +36 -0
- package/README.md +4 -4
- package/accordion/Accordion.d.ts +1 -1
- package/button/Button.d.ts +1 -1
- package/card/Card.d.ts +29 -32
- package/index.cjs +32 -32
- package/index.css +1 -1
- package/index.js +5651 -5547
- package/label/Label.d.ts +1 -1
- package/modal/Dialog.d.ts +2 -2
- package/package.json +1 -1
- package/spinner/Spinner.d.ts +1 -1
- package/table/Table.d.ts +1 -1
- package/tabs/Tabs.d.ts +1 -1
- package/textfield/TextArea.d.ts +4 -1
- package/textfield/TextField.d.ts +2 -0
- package/textfield/TextFieldBase.d.ts +5 -0
- package/theme/index.d.ts +34 -30
- package/theme/tokens.d.ts +40 -30
- package/theme.cjs +1 -1
- package/theme.js +2 -2
- package/tokens-CzvFRHfr.cjs +1 -0
- package/{tokens-Dq5vcWLv.js → tokens-n8UPYzPD.js} +43 -32
- package/utils/intl/useMessageFormatter.d.ts +1 -1
- package/utils/storybook.d.ts +1 -0
- package/tokens-CIuAmuws.cjs +0 -1
package/label/Label.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { LabelProps as AriaLabelProps } from 'react-aria-components';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
export interface LabelProps extends AriaLabelProps {
|
|
4
4
|
/**
|
|
5
|
-
* @deprecated Please use Label without variant for label-02, and for label-01 use Text component with slot: 'description'
|
|
5
|
+
* @deprecated since v8.2.0 Please use Label without variant for label-02, and for label-01 use Text component with slot: 'description'
|
|
6
6
|
*/
|
|
7
7
|
variant?: 'label-01' | 'label-02';
|
|
8
8
|
}
|
package/modal/Dialog.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ interface DialogProps extends AriaDialogProps {
|
|
|
10
10
|
title?: React.ReactNode;
|
|
11
11
|
children: React.ReactNode;
|
|
12
12
|
}
|
|
13
|
-
/** @deprecated since
|
|
13
|
+
/** @deprecated since v6.0.0 use Modal instead.
|
|
14
14
|
* See docs {@link https://designsystem.migrationsverket.se/|Midas}
|
|
15
15
|
*/
|
|
16
16
|
export declare const Dialog: React.FC<DialogProps>;
|
|
17
|
-
/** @deprecated since
|
|
17
|
+
/** @deprecated since v6.0.0, use DialogTrigger instead.
|
|
18
18
|
* See docs {@link https://designsystem.migrationsverket.se/|Midas}
|
|
19
19
|
*/
|
|
20
20
|
export declare const ModalTrigger: React.FC<OverlayTriggerProps & {
|
package/package.json
CHANGED
package/spinner/Spinner.d.ts
CHANGED
package/table/Table.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RowProps, TableHeaderProps, ColumnProps, TableProps as AriaTableProps, CellProps, TableBody } from 'react-aria-components';
|
|
2
2
|
export interface TableProps extends AriaTableProps {
|
|
3
3
|
/**
|
|
4
|
-
* @deprecated This variant will be replaced with a new scaling api accross all components.
|
|
4
|
+
* @deprecated since v8.0.0 This variant will be replaced with a new scaling api accross all components.
|
|
5
5
|
*/
|
|
6
6
|
narrow?: boolean;
|
|
7
7
|
/**
|
package/tabs/Tabs.d.ts
CHANGED
package/textfield/TextArea.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { TextFieldBaseProps } from './TextFieldBase';
|
|
2
2
|
import { TextAreaProps as AriaTextAreaProps } from 'react-aria-components';
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
export interface TextAreaProps extends Omit<TextFieldBaseProps, 'children' | 'type'> {
|
|
4
|
+
export interface TextAreaProps extends Omit<TextFieldBaseProps, 'children' | 'type' | 'pattern'> {
|
|
5
5
|
className?: AriaTextAreaProps['className'];
|
|
6
|
+
form?: string;
|
|
7
|
+
rows?: number;
|
|
8
|
+
wrap?: string;
|
|
6
9
|
}
|
|
7
10
|
export declare const TextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
package/textfield/TextField.d.ts
CHANGED
|
@@ -3,5 +3,7 @@ import { InputProps } from './Input';
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
export interface TextFieldProps extends Omit<TextFieldBaseProps, 'children'> {
|
|
5
5
|
className?: InputProps['className'];
|
|
6
|
+
form?: string;
|
|
7
|
+
list?: string;
|
|
6
8
|
}
|
|
7
9
|
export declare const TextField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TextFieldProps, ValidationResult } from 'react-aria-components';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
+
export type Size = 'medium' | 'large';
|
|
3
4
|
export interface TextFieldBaseProps extends Omit<TextFieldProps, 'className'> {
|
|
4
5
|
children?: React.ReactNode;
|
|
5
6
|
/** Specify label displayed above the TextField*/
|
|
@@ -15,5 +16,9 @@ export interface TextFieldBaseProps extends Omit<TextFieldProps, 'className'> {
|
|
|
15
16
|
* false
|
|
16
17
|
*/
|
|
17
18
|
showCounter?: boolean;
|
|
19
|
+
/** Component size (large: height 48px, medium: height 40px)
|
|
20
|
+
* @default 'large'
|
|
21
|
+
* */
|
|
22
|
+
size?: Size;
|
|
18
23
|
}
|
|
19
24
|
export declare const TextFieldBase: React.ForwardRefExoticComponent<TextFieldBaseProps & React.RefAttributes<HTMLDivElement>>;
|
package/theme/index.d.ts
CHANGED
|
@@ -53,25 +53,26 @@ export declare const theme: {
|
|
|
53
53
|
};
|
|
54
54
|
typography: {
|
|
55
55
|
fontFamily: string;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
56
|
+
lineHeight10: number;
|
|
57
|
+
lineHeight20: number;
|
|
58
|
+
lineHeight30: number;
|
|
59
|
+
lineHeight40: number;
|
|
60
|
+
lineHeight50: number;
|
|
61
|
+
lineHeight60: number;
|
|
62
|
+
lineHeight70: number;
|
|
63
|
+
lineHeight80: number;
|
|
64
|
+
lineHeight90: number;
|
|
65
|
+
lineHeight100: number;
|
|
66
|
+
fontSize10: string;
|
|
67
|
+
fontSize20: string;
|
|
68
|
+
fontSize30: string;
|
|
69
|
+
fontSize40: string;
|
|
70
|
+
fontSize50: string;
|
|
71
|
+
fontSize60: string;
|
|
72
|
+
fontSize70: string;
|
|
73
|
+
fontSize80: string;
|
|
74
|
+
fontSize90: string;
|
|
75
|
+
fontSize100: string;
|
|
75
76
|
weightThin: number;
|
|
76
77
|
weightExtraLight: number;
|
|
77
78
|
weightLight: number;
|
|
@@ -83,18 +84,18 @@ export declare const theme: {
|
|
|
83
84
|
weightBlack: number;
|
|
84
85
|
};
|
|
85
86
|
spacing: {
|
|
86
|
-
'01': string;
|
|
87
|
-
'02': string;
|
|
88
|
-
'03': string;
|
|
89
|
-
'04': string;
|
|
90
|
-
'05': string;
|
|
91
|
-
'06': string;
|
|
92
|
-
'07': string;
|
|
93
|
-
'08': string;
|
|
94
|
-
'09': string;
|
|
95
87
|
'10': string;
|
|
96
|
-
'
|
|
97
|
-
'
|
|
88
|
+
'20': string;
|
|
89
|
+
'30': string;
|
|
90
|
+
'40': string;
|
|
91
|
+
'50': string;
|
|
92
|
+
'60': string;
|
|
93
|
+
'70': string;
|
|
94
|
+
'80': string;
|
|
95
|
+
'90': string;
|
|
96
|
+
'100': string;
|
|
97
|
+
'110': string;
|
|
98
|
+
'120': string;
|
|
98
99
|
};
|
|
99
100
|
states: {
|
|
100
101
|
focus: string;
|
|
@@ -182,6 +183,7 @@ export declare const theme: {
|
|
|
182
183
|
textInverse: string;
|
|
183
184
|
textDisabled: string;
|
|
184
185
|
textInvalid: string;
|
|
186
|
+
textWarning: string;
|
|
185
187
|
textPlaceholder: string;
|
|
186
188
|
buttonBackgroundPrimary: string;
|
|
187
189
|
buttonBackgroundPrimaryHover: string;
|
|
@@ -198,6 +200,8 @@ export declare const theme: {
|
|
|
198
200
|
buttonBackgroundSkeleton: string;
|
|
199
201
|
buttonBorderSecondary: string;
|
|
200
202
|
logoPrimary: string;
|
|
203
|
+
menuItemBackgroundHover: string;
|
|
204
|
+
menuItemBackgroundSelected: string;
|
|
201
205
|
};
|
|
202
206
|
zIndex: {
|
|
203
207
|
base: number;
|
package/theme/tokens.d.ts
CHANGED
|
@@ -51,25 +51,26 @@ export declare const baseColors: {
|
|
|
51
51
|
};
|
|
52
52
|
export declare const typography: {
|
|
53
53
|
fontFamily: string;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
54
|
+
lineHeight10: number;
|
|
55
|
+
lineHeight20: number;
|
|
56
|
+
lineHeight30: number;
|
|
57
|
+
lineHeight40: number;
|
|
58
|
+
lineHeight50: number;
|
|
59
|
+
lineHeight60: number;
|
|
60
|
+
lineHeight70: number;
|
|
61
|
+
lineHeight80: number;
|
|
62
|
+
lineHeight90: number;
|
|
63
|
+
lineHeight100: number;
|
|
64
|
+
fontSize10: string;
|
|
65
|
+
fontSize20: string;
|
|
66
|
+
fontSize30: string;
|
|
67
|
+
fontSize40: string;
|
|
68
|
+
fontSize50: string;
|
|
69
|
+
fontSize60: string;
|
|
70
|
+
fontSize70: string;
|
|
71
|
+
fontSize80: string;
|
|
72
|
+
fontSize90: string;
|
|
73
|
+
fontSize100: string;
|
|
73
74
|
weightThin: number;
|
|
74
75
|
weightExtraLight: number;
|
|
75
76
|
weightLight: number;
|
|
@@ -81,18 +82,18 @@ export declare const typography: {
|
|
|
81
82
|
weightBlack: number;
|
|
82
83
|
};
|
|
83
84
|
export declare const spacing: {
|
|
84
|
-
'01': string;
|
|
85
|
-
'02': string;
|
|
86
|
-
'03': string;
|
|
87
|
-
'04': string;
|
|
88
|
-
'05': string;
|
|
89
|
-
'06': string;
|
|
90
|
-
'07': string;
|
|
91
|
-
'08': string;
|
|
92
|
-
'09': string;
|
|
93
85
|
'10': string;
|
|
94
|
-
'
|
|
95
|
-
'
|
|
86
|
+
'20': string;
|
|
87
|
+
'30': string;
|
|
88
|
+
'40': string;
|
|
89
|
+
'50': string;
|
|
90
|
+
'60': string;
|
|
91
|
+
'70': string;
|
|
92
|
+
'80': string;
|
|
93
|
+
'90': string;
|
|
94
|
+
'100': string;
|
|
95
|
+
'110': string;
|
|
96
|
+
'120': string;
|
|
96
97
|
};
|
|
97
98
|
export declare const states: {
|
|
98
99
|
focus: string;
|
|
@@ -139,6 +140,9 @@ export declare const semantic: {
|
|
|
139
140
|
borderSecondary: string;
|
|
140
141
|
borderSubtle: string;
|
|
141
142
|
borderTertiary: string;
|
|
143
|
+
/**
|
|
144
|
+
* @deprecated Deprecated in 8.2.0. Use `supportBorderWarning` instead.
|
|
145
|
+
*/
|
|
142
146
|
borderInvalid: string;
|
|
143
147
|
borderDisabled: string;
|
|
144
148
|
field01: string;
|
|
@@ -179,7 +183,11 @@ export declare const semantic: {
|
|
|
179
183
|
textOnColor: string;
|
|
180
184
|
textInverse: string;
|
|
181
185
|
textDisabled: string;
|
|
186
|
+
/**
|
|
187
|
+
* @deprecated Deprecated in 8.4.0 - Please use textWarning instead.
|
|
188
|
+
*/
|
|
182
189
|
textInvalid: string;
|
|
190
|
+
textWarning: string;
|
|
183
191
|
textPlaceholder: string;
|
|
184
192
|
buttonBackgroundPrimary: string;
|
|
185
193
|
buttonBackgroundPrimaryHover: string;
|
|
@@ -196,6 +204,8 @@ export declare const semantic: {
|
|
|
196
204
|
buttonBackgroundSkeleton: string;
|
|
197
205
|
buttonBorderSecondary: string;
|
|
198
206
|
logoPrimary: string;
|
|
207
|
+
menuItemBackgroundHover: string;
|
|
208
|
+
menuItemBackgroundSelected: string;
|
|
199
209
|
};
|
|
200
210
|
export declare const zIndex: {
|
|
201
211
|
base: number;
|
package/theme.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./tokens-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./tokens-CzvFRHfr.cjs"),s={...e.tokens};exports.baseColors=e.baseColors;exports.breakpoints=e.breakpoints;exports.semantic=e.semantic;exports.spacing=e.spacing;exports.states=e.states;exports.transitions=e.transitions;exports.typography=e.typography;exports.windowSizes=e.windowSizes;exports.zIndex=e.zIndex;exports.theme=s;
|
package/theme.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { t as s } from "./tokens-
|
|
2
|
-
import { b as n, f as r, s as i, c as p, d as m, e as c, a as b, w as d, z as f } from "./tokens-
|
|
1
|
+
import { t as s } from "./tokens-n8UPYzPD.js";
|
|
2
|
+
import { b as n, f as r, s as i, c as p, d as m, e as c, a as b, w as d, z as f } from "./tokens-n8UPYzPD.js";
|
|
3
3
|
const t = { ...s };
|
|
4
4
|
export {
|
|
5
5
|
n as baseColors,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const r={black:"#000000",white:"#ffffff",blackHover:"#0d0d0d",whiteHover:"#e6e6e6",gray10:"#f2f2f2",gray20:"#e6e6e6",gray30:"#d9d9d9",gray40:"#cccccc",gray50:"#bfbfbf",gray60:"#b3b3b3",gray70:"#a6a6a6",gray80:"#999999",gray90:"#8c8c8c",gray100:"#808080",gray110:"#737373",gray120:"#666666",gray130:"#5d5d5d",gray140:"#525252",gray150:"#474747",gray160:"#383838",gray170:"#333333",gray180:"#262626",gray190:"#212121",gray200:"#171717",blue10:"#eaf2f6",blue20:"#d5e5ed",blue40:"#abcbdb",blue60:"#82b0c9",blue80:"#5897b8",blue90:"#4289ad",blue100:"#2e7ca5",blue140:"#25607f",blue170:"#143c50",purple80:"#b46ab4",purple140:"#954b95",red100:"#b90835",signalBlue10:"#eaf2f6",signalBlue100:"#0066cc",signalGreen20:"#d5f2d9",signalGreen30:"#bae5c5",signalGreen100:"#008d3c",signalYellow10:"#fff8e1",signalYellow100:"#fdb813",signalRed20:"#ffdfdf",signalRed30:"#fcc8c8",signalRed80:"#eb4e4e",signalRed100:"#e62323",signalRed160:"#b31b1b",signalRed180:"#801313"},a={fontFamily:'"Inter", sans-serif',lineHeight10:1,lineHeight20:1.125,lineHeight30:1.25,lineHeight40:1.375,lineHeight50:1.5,lineHeight60:1.75,lineHeight70:2,lineHeight80:2.25,lineHeight90:2.5,lineHeight100:2.75,fontSize10:"0.75rem",fontSize20:"0.875rem",fontSize30:"1rem",fontSize40:"1.125rem",fontSize50:"1.25rem",fontSize60:"1.5rem",fontSize70:"1.75rem",fontSize80:"2rem",fontSize90:"2.25rem",fontSize100:"2.625rem",weightThin:100,weightExtraLight:200,weightLight:300,weightRegular:400,weightMedium:500,weightSemiBold:600,weightBold:700,weightExtraBold:800,weightBlack:900},g={10:"0.125rem",20:"0.25rem",30:"0.5rem",40:"0.75rem",50:"1rem",60:"1.5rem",70:"2rem",80:"2.5rem",90:"3rem",100:"4rem",110:"5rem",120:"6rem"},i={focus:"0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white)"},t={slow:"500ms",normal:"300ms",fast:"250ms"},e={md:768,lg:1200,xl:1440},l={sm:`(max-width: ${e.md-1}px)`,md:`(min-width: ${e.md}px)`,lg:`(min-width: ${e.lg}px)`,xl:`(min-width: ${e.xl}px)`,forcedColorsMode:"(forced-colors: active)",darkMode:"(prefers-color-scheme: dark)",prefersReducedMotion:"(prefers-reduced-motion: reduced)"},d={background:`light-dark(${r.white}, ${r.gray200})`,backgroundHover:`light-dark(${r.whiteHover}, ${r.gray190})`,backgroundInverse:`light-dark(${r.gray200}, ${r.gray10})`,layer01:`light-dark(${r.gray10}, ${r.gray180})`,layerHover01:`light-dark(${r.gray20}, ${r.gray170})`,layerSelected01:`light-dark(${r.gray30}, ${r.gray160})`,layerSelectedHover01:`light-dark(${r.gray40}, ${r.gray150})`,layer02:`light-dark(${r.white}, ${r.gray160})`,layerHover02:`light-dark(${r.whiteHover}, ${r.gray150})`,layerSelected02:`light-dark(${r.gray30}, ${r.gray140})`,layerSelectedHover02:`light-dark(${r.gray40}, ${r.gray130})`,layerAccent01:`light-dark(${r.gray30}, ${r.gray160})`,layerAccentHover01:`light-dark(${r.gray40}, ${r.gray150})`,layerAccentSelected01:`light-dark(${r.gray50}, ${r.gray140})`,layerAccent02:`light-dark(${r.gray10}, ${r.gray180})`,layerAccentHover02:`light-dark(${r.gray20}, ${r.gray170})`,layerAccentSelected02:`light-dark(${r.gray30}, ${r.gray160})`,brandPrimary:`light-dark(${r.red100}, ${r.red100})`,borderPrimary:`light-dark(${r.gray200}, ${r.gray10})`,borderSecondary:`light-dark(${r.gray110}, ${r.gray90})`,borderSubtle:`light-dark(${r.gray50}, ${r.gray160})`,borderTertiary:`light-dark(${r.blue170}, ${r.blue100})`,borderInvalid:`light-dark(${r.signalRed100}, ${r.signalRed80})`,borderDisabled:`light-dark(${r.gray50}, ${r.gray140})`,field01:`light-dark(${r.gray10}, ${r.gray180})`,fieldHover01:`light-dark(${r.gray20}, ${r.gray170})`,fieldActive01:`light-dark(${r.gray30}, ${r.gray160})`,field02:`light-dark(${r.white}, ${r.gray160})`,fieldHover02:`light-dark(${r.whiteHover}, ${r.gray150})`,fieldActive02:`light-dark(${r.gray30}, ${r.gray140})`,fieldDisabled:`light-dark(${r.gray10}, ${r.gray180})`,fieldSkeleton:`light-dark(${r.gray10}, ${r.gray180})`,iconPrimary:`light-dark(${r.gray200}, ${r.gray10})`,iconSecondary:`light-dark(${r.gray140}, ${r.gray70})`,iconTertiary:`light-dark(${r.blue170}, ${r.gray10})`,iconInverse:`light-dark(${r.white}, ${r.gray200})`,iconOnColor:`light-dark(${r.white}, ${r.white})`,iconDisabled:`light-dark(${r.gray50}, ${r.gray140})`,iconSuccess:`light-dark(${r.signalGreen100}, ${r.signalGreen100})`,iconInfo:`light-dark(${r.signalBlue100}, ${r.signalBlue100})`,iconWarning:`light-dark(${r.signalRed100}, ${r.signalRed100})`,iconImportant:`light-dark(${r.signalYellow100}, ${r.signalYellow100})`,linkEnabled:`light-dark(${r.blue100}, ${r.blue90})`,linkHover:`light-dark(${r.blue170}, ${r.blue80})`,linkPressed:`light-dark(${r.gray200}, ${r.blue60})`,linkVisited:`light-dark(${r.purple140}, ${r.purple80})`,supportBorderSuccess:`light-dark(${r.signalGreen100}, ${r.signalGreen100})`,supportBorderInfo:`light-dark(${r.signalBlue100}, ${r.signalBlue100})`,supportBorderImportant:`light-dark(${r.signalYellow100}, ${r.signalYellow100})`,supportBorderWarning:`light-dark(${r.signalRed100}, ${r.signalRed100})`,supportBackgroundSuccess:`light-dark(${r.signalGreen20}, ${r.gray180})`,supportBackgroundSuccessHover:`light-dark(${r.signalGreen30}, ${r.gray170})`,supportBackgroundInfo:`light-dark(${r.signalBlue10}, ${r.gray180})`,supportBackgroundImportant:`light-dark(${r.signalYellow10}, ${r.gray180})`,supportBackgroundWarning:`light-dark(${r.signalRed20}, ${r.gray180})`,supportBackgroundWarningHover:`light-dark(${r.signalRed30}, ${r.gray170})`,textPrimary:`light-dark(${r.gray200}, ${r.gray10})`,textSecondary:`light-dark(${r.gray140}, ${r.gray70})`,textTertiary:`light-dark(${r.blue170}, ${r.gray10})`,textOnColor:`light-dark(${r.white}, ${r.white})`,textInverse:`light-dark(${r.gray10}, ${r.gray200})`,textDisabled:`light-dark(${r.gray50}, ${r.gray140})`,textInvalid:`light-dark(${r.signalRed100}, ${r.signalRed80})`,textWarning:`light-dark(${r.signalRed100}, ${r.signalRed80})`,textPlaceholder:`light-dark(${r.gray70}, ${r.gray140})`,buttonBackgroundPrimary:`light-dark(${r.blue170}, ${r.blue100})`,buttonBackgroundPrimaryHover:`light-dark(${r.blue140}, ${r.blue140})`,buttonBackgroundPrimaryActive:`light-dark(${r.blue100}, ${r.blue170})`,buttonBackgroundSecondary:`light-dark(${r.white}, ${r.gray200})`,buttonBackgroundSecondaryHover:`light-dark(${r.whiteHover}, ${r.gray190})`,buttonBackgroundSecondaryActive:`light-dark(${r.gray30}, ${r.gray180})`,buttonBackgroundTertiaryHover:`light-dark(${r.whiteHover}, ${r.gray190})`,buttonBackgroundTertiaryActive:`light-dark(${r.gray30}, ${r.gray180})`,buttonBackgroundDanger:`light-dark(${r.signalRed100}, ${r.signalRed100})`,buttonBackgroundDangerHover:`light-dark(${r.signalRed160}, ${r.signalRed160})`,buttonBackgroundDangerActive:`light-dark(${r.signalRed180}, ${r.signalRed180})`,buttonBackgroundDisabled:`light-dark(${r.gray10}, ${r.gray180})`,buttonBackgroundSkeleton:`light-dark(${r.gray10}, ${r.gray180})`,buttonBorderSecondary:`light-dark(${r.blue170}, ${r.gray10})`,logoPrimary:`light-dark(${r.red100}, ${r.white})`,menuItemBackgroundHover:`light-dark(${r.gray20}, ${r.gray190})`,menuItemBackgroundSelected:`light-dark(${r.gray10}, ${r.gray180})`},n={base:1,above:10,modal:1e3,toast:1100,skipToContent:1200},o=Object.freeze(Object.defineProperty({__proto__:null,baseColors:r,breakpoints:l,semantic:d,spacing:g,states:i,transitions:t,typography:a,windowSizes:e,zIndex:n},Symbol.toStringTag,{value:"Module"}));exports.baseColors=r;exports.breakpoints=l;exports.semantic=d;exports.spacing=g;exports.states=i;exports.tokens=o;exports.transitions=t;exports.typography=a;exports.windowSizes=e;exports.zIndex=n;
|
|
@@ -50,43 +50,45 @@ const r = {
|
|
|
50
50
|
signalRed180: "#801313"
|
|
51
51
|
}, a = {
|
|
52
52
|
fontFamily: '"Inter", sans-serif',
|
|
53
|
-
|
|
53
|
+
lineHeight10: 1,
|
|
54
54
|
// 16px
|
|
55
|
-
|
|
55
|
+
lineHeight20: 1.125,
|
|
56
56
|
// 18px (18/16)
|
|
57
|
-
|
|
57
|
+
lineHeight30: 1.25,
|
|
58
58
|
// 20px (20/16)
|
|
59
|
-
|
|
59
|
+
lineHeight40: 1.375,
|
|
60
60
|
// 22px (22/16)
|
|
61
|
-
|
|
61
|
+
lineHeight50: 1.5,
|
|
62
62
|
// 24px (24/16)
|
|
63
|
-
|
|
63
|
+
lineHeight60: 1.75,
|
|
64
64
|
// 28px (28/16)
|
|
65
|
-
|
|
65
|
+
lineHeight70: 2,
|
|
66
66
|
// 32px (32/16)
|
|
67
|
-
|
|
67
|
+
lineHeight80: 2.25,
|
|
68
68
|
// 36px (36/16)
|
|
69
|
-
|
|
69
|
+
lineHeight90: 2.5,
|
|
70
70
|
// 40px (40/16)
|
|
71
|
-
|
|
71
|
+
lineHeight100: 2.75,
|
|
72
|
+
// 44px (44/16)
|
|
73
|
+
fontSize10: "0.75rem",
|
|
72
74
|
// 12px (12/16)
|
|
73
|
-
|
|
75
|
+
fontSize20: "0.875rem",
|
|
74
76
|
// 14px (14/16)
|
|
75
|
-
|
|
77
|
+
fontSize30: "1rem",
|
|
76
78
|
// 16px (16/16)
|
|
77
|
-
|
|
79
|
+
fontSize40: "1.125rem",
|
|
78
80
|
// 18px (18/16)
|
|
79
|
-
|
|
81
|
+
fontSize50: "1.25rem",
|
|
80
82
|
// 20px (20/16)
|
|
81
|
-
|
|
83
|
+
fontSize60: "1.5rem",
|
|
82
84
|
// 24px (24/16)
|
|
83
|
-
|
|
85
|
+
fontSize70: "1.75rem",
|
|
84
86
|
// 28px (28/16)
|
|
85
|
-
|
|
87
|
+
fontSize80: "2rem",
|
|
86
88
|
// 32px (32/16)
|
|
87
|
-
|
|
89
|
+
fontSize90: "2.25rem",
|
|
88
90
|
// 36px (36/16)
|
|
89
|
-
|
|
91
|
+
fontSize100: "2.625rem",
|
|
90
92
|
// 42px (40/16)
|
|
91
93
|
weightThin: 100,
|
|
92
94
|
weightExtraLight: 200,
|
|
@@ -98,29 +100,29 @@ const r = {
|
|
|
98
100
|
weightExtraBold: 800,
|
|
99
101
|
weightBlack: 900
|
|
100
102
|
}, g = {
|
|
101
|
-
|
|
103
|
+
10: "0.125rem",
|
|
102
104
|
// 2px
|
|
103
|
-
|
|
105
|
+
20: "0.25rem",
|
|
104
106
|
// 4px
|
|
105
|
-
|
|
107
|
+
30: "0.5rem",
|
|
106
108
|
// 8px
|
|
107
|
-
|
|
109
|
+
40: "0.75rem",
|
|
108
110
|
// 12px
|
|
109
|
-
|
|
111
|
+
50: "1rem",
|
|
110
112
|
// 16px
|
|
111
|
-
|
|
113
|
+
60: "1.5rem",
|
|
112
114
|
// 24px
|
|
113
|
-
|
|
115
|
+
70: "2rem",
|
|
114
116
|
// 32px
|
|
115
|
-
|
|
117
|
+
80: "2.5rem",
|
|
116
118
|
// 40px
|
|
117
|
-
|
|
119
|
+
90: "3rem",
|
|
118
120
|
// 48px
|
|
119
|
-
|
|
121
|
+
100: "4rem",
|
|
120
122
|
// 64px
|
|
121
|
-
|
|
123
|
+
110: "5rem",
|
|
122
124
|
// 80px
|
|
123
|
-
|
|
125
|
+
120: "6rem"
|
|
124
126
|
// 96px
|
|
125
127
|
}, i = {
|
|
126
128
|
focus: "0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white)"
|
|
@@ -163,6 +165,9 @@ const r = {
|
|
|
163
165
|
borderSecondary: `light-dark(${r.gray110}, ${r.gray90})`,
|
|
164
166
|
borderSubtle: `light-dark(${r.gray50}, ${r.gray160})`,
|
|
165
167
|
borderTertiary: `light-dark(${r.blue170}, ${r.blue100})`,
|
|
168
|
+
/**
|
|
169
|
+
* @deprecated Deprecated in 8.2.0. Use `supportBorderWarning` instead.
|
|
170
|
+
*/
|
|
166
171
|
borderInvalid: `light-dark(${r.signalRed100}, ${r.signalRed80})`,
|
|
167
172
|
borderDisabled: `light-dark(${r.gray50}, ${r.gray140})`,
|
|
168
173
|
field01: `light-dark(${r.gray10}, ${r.gray180})`,
|
|
@@ -203,7 +208,11 @@ const r = {
|
|
|
203
208
|
textOnColor: `light-dark(${r.white}, ${r.white})`,
|
|
204
209
|
textInverse: `light-dark(${r.gray10}, ${r.gray200})`,
|
|
205
210
|
textDisabled: `light-dark(${r.gray50}, ${r.gray140})`,
|
|
211
|
+
/**
|
|
212
|
+
* @deprecated Deprecated in 8.4.0 - Please use textWarning instead.
|
|
213
|
+
*/
|
|
206
214
|
textInvalid: `light-dark(${r.signalRed100}, ${r.signalRed80})`,
|
|
215
|
+
textWarning: `light-dark(${r.signalRed100}, ${r.signalRed80})`,
|
|
207
216
|
textPlaceholder: `light-dark(${r.gray70}, ${r.gray140})`,
|
|
208
217
|
buttonBackgroundPrimary: `light-dark(${r.blue170}, ${r.blue100})`,
|
|
209
218
|
buttonBackgroundPrimaryHover: `light-dark(${r.blue140}, ${r.blue140})`,
|
|
@@ -219,7 +228,9 @@ const r = {
|
|
|
219
228
|
buttonBackgroundDisabled: `light-dark(${r.gray10}, ${r.gray180})`,
|
|
220
229
|
buttonBackgroundSkeleton: `light-dark(${r.gray10}, ${r.gray180})`,
|
|
221
230
|
buttonBorderSecondary: `light-dark(${r.blue170}, ${r.gray10})`,
|
|
222
|
-
logoPrimary: `light-dark(${r.red100}, ${r.white})
|
|
231
|
+
logoPrimary: `light-dark(${r.red100}, ${r.white})`,
|
|
232
|
+
menuItemBackgroundHover: `light-dark(${r.gray20}, ${r.gray190})`,
|
|
233
|
+
menuItemBackgroundSelected: `light-dark(${r.gray10}, ${r.gray180})`
|
|
223
234
|
}, n = {
|
|
224
235
|
base: 1,
|
|
225
236
|
above: 10,
|
|
@@ -6,6 +6,6 @@ export type FormatMessage = (key: string, variables?: {
|
|
|
6
6
|
* Handles formatting ICU Message strings to create localized strings for the current locale.
|
|
7
7
|
* Automatically updates when the locale changes, and handles caching of messages for performance.
|
|
8
8
|
* @param strings - A mapping of languages to strings by key.
|
|
9
|
-
* @deprecated - use useLocalizedStringFormatter instead.
|
|
9
|
+
* @deprecated since v7.0.0 - use useLocalizedStringFormatter instead.
|
|
10
10
|
*/
|
|
11
11
|
export declare function useMessageFormatter(strings: LocalizedStrings): FormatMessage;
|
package/utils/storybook.d.ts
CHANGED
package/tokens-CIuAmuws.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const r={black:"#000000",white:"#ffffff",blackHover:"#0d0d0d",whiteHover:"#e6e6e6",gray10:"#f2f2f2",gray20:"#e6e6e6",gray30:"#d9d9d9",gray40:"#cccccc",gray50:"#bfbfbf",gray60:"#b3b3b3",gray70:"#a6a6a6",gray80:"#999999",gray90:"#8c8c8c",gray100:"#808080",gray110:"#737373",gray120:"#666666",gray130:"#5d5d5d",gray140:"#525252",gray150:"#474747",gray160:"#383838",gray170:"#333333",gray180:"#262626",gray190:"#212121",gray200:"#171717",blue10:"#eaf2f6",blue20:"#d5e5ed",blue40:"#abcbdb",blue60:"#82b0c9",blue80:"#5897b8",blue90:"#4289ad",blue100:"#2e7ca5",blue140:"#25607f",blue170:"#143c50",purple80:"#b46ab4",purple140:"#954b95",red100:"#b90835",signalBlue10:"#eaf2f6",signalBlue100:"#0066cc",signalGreen20:"#d5f2d9",signalGreen30:"#bae5c5",signalGreen100:"#008d3c",signalYellow10:"#fff8e1",signalYellow100:"#fdb813",signalRed20:"#ffdfdf",signalRed30:"#fcc8c8",signalRed80:"#eb4e4e",signalRed100:"#e62323",signalRed160:"#b31b1b",signalRed180:"#801313"},a={fontFamily:'"Inter", sans-serif',lineHeight01:1,lineHeight02:1.125,lineHeight03:1.25,lineHeight04:1.375,lineHeight05:1.5,lineHeight06:1.75,lineHeight07:2,lineHeight08:2.25,lineHeight09:2.5,size01:"0.75rem",size02:"0.875rem",size03:"1rem",size04:"1.125rem",size05:"1.25rem",size06:"1.5rem",size07:"1.75rem",size08:"2rem",size09:"2.25rem",size10:"2.625rem",weightThin:100,weightExtraLight:200,weightLight:300,weightRegular:400,weightMedium:500,weightSemiBold:600,weightBold:700,weightExtraBold:800,weightBlack:900},g={"01":"0.125rem","02":"0.25rem","03":"0.5rem","04":"0.75rem","05":"1rem","06":"1.5rem","07":"2rem","08":"2.5rem","09":"3rem",10:"4rem",11:"5rem",12:"6rem"},i={focus:"0 0 0 2px light-dark(white, black), 0 0 0 4px light-dark(black, white)"},l={slow:"500ms",normal:"300ms",fast:"250ms"},e={md:768,lg:1200,xl:1440},t={sm:`(max-width: ${e.md-1}px)`,md:`(min-width: ${e.md}px)`,lg:`(min-width: ${e.lg}px)`,xl:`(min-width: ${e.xl}px)`,forcedColorsMode:"(forced-colors: active)",darkMode:"(prefers-color-scheme: dark)",prefersReducedMotion:"(prefers-reduced-motion: reduced)"},d={background:`light-dark(${r.white}, ${r.gray200})`,backgroundHover:`light-dark(${r.whiteHover}, ${r.gray190})`,backgroundInverse:`light-dark(${r.gray200}, ${r.gray10})`,layer01:`light-dark(${r.gray10}, ${r.gray180})`,layerHover01:`light-dark(${r.gray20}, ${r.gray170})`,layerSelected01:`light-dark(${r.gray30}, ${r.gray160})`,layerSelectedHover01:`light-dark(${r.gray40}, ${r.gray150})`,layer02:`light-dark(${r.white}, ${r.gray160})`,layerHover02:`light-dark(${r.whiteHover}, ${r.gray150})`,layerSelected02:`light-dark(${r.gray30}, ${r.gray140})`,layerSelectedHover02:`light-dark(${r.gray40}, ${r.gray130})`,layerAccent01:`light-dark(${r.gray30}, ${r.gray160})`,layerAccentHover01:`light-dark(${r.gray40}, ${r.gray150})`,layerAccentSelected01:`light-dark(${r.gray50}, ${r.gray140})`,layerAccent02:`light-dark(${r.gray10}, ${r.gray180})`,layerAccentHover02:`light-dark(${r.gray20}, ${r.gray170})`,layerAccentSelected02:`light-dark(${r.gray30}, ${r.gray160})`,brandPrimary:`light-dark(${r.red100}, ${r.red100})`,borderPrimary:`light-dark(${r.gray200}, ${r.gray10})`,borderSecondary:`light-dark(${r.gray110}, ${r.gray90})`,borderSubtle:`light-dark(${r.gray50}, ${r.gray160})`,borderTertiary:`light-dark(${r.blue170}, ${r.blue100})`,borderInvalid:`light-dark(${r.signalRed100}, ${r.signalRed80})`,borderDisabled:`light-dark(${r.gray50}, ${r.gray140})`,field01:`light-dark(${r.gray10}, ${r.gray180})`,fieldHover01:`light-dark(${r.gray20}, ${r.gray170})`,fieldActive01:`light-dark(${r.gray30}, ${r.gray160})`,field02:`light-dark(${r.white}, ${r.gray160})`,fieldHover02:`light-dark(${r.whiteHover}, ${r.gray150})`,fieldActive02:`light-dark(${r.gray30}, ${r.gray140})`,fieldDisabled:`light-dark(${r.gray10}, ${r.gray180})`,fieldSkeleton:`light-dark(${r.gray10}, ${r.gray180})`,iconPrimary:`light-dark(${r.gray200}, ${r.gray10})`,iconSecondary:`light-dark(${r.gray140}, ${r.gray70})`,iconTertiary:`light-dark(${r.blue170}, ${r.gray10})`,iconInverse:`light-dark(${r.white}, ${r.gray200})`,iconOnColor:`light-dark(${r.white}, ${r.white})`,iconDisabled:`light-dark(${r.gray50}, ${r.gray140})`,iconSuccess:`light-dark(${r.signalGreen100}, ${r.signalGreen100})`,iconInfo:`light-dark(${r.signalBlue100}, ${r.signalBlue100})`,iconWarning:`light-dark(${r.signalRed100}, ${r.signalRed100})`,iconImportant:`light-dark(${r.signalYellow100}, ${r.signalYellow100})`,linkEnabled:`light-dark(${r.blue100}, ${r.blue90})`,linkHover:`light-dark(${r.blue170}, ${r.blue80})`,linkPressed:`light-dark(${r.gray200}, ${r.blue60})`,linkVisited:`light-dark(${r.purple140}, ${r.purple80})`,supportBorderSuccess:`light-dark(${r.signalGreen100}, ${r.signalGreen100})`,supportBorderInfo:`light-dark(${r.signalBlue100}, ${r.signalBlue100})`,supportBorderImportant:`light-dark(${r.signalYellow100}, ${r.signalYellow100})`,supportBorderWarning:`light-dark(${r.signalRed100}, ${r.signalRed100})`,supportBackgroundSuccess:`light-dark(${r.signalGreen20}, ${r.gray180})`,supportBackgroundSuccessHover:`light-dark(${r.signalGreen30}, ${r.gray170})`,supportBackgroundInfo:`light-dark(${r.signalBlue10}, ${r.gray180})`,supportBackgroundImportant:`light-dark(${r.signalYellow10}, ${r.gray180})`,supportBackgroundWarning:`light-dark(${r.signalRed20}, ${r.gray180})`,supportBackgroundWarningHover:`light-dark(${r.signalRed30}, ${r.gray170})`,textPrimary:`light-dark(${r.gray200}, ${r.gray10})`,textSecondary:`light-dark(${r.gray140}, ${r.gray70})`,textTertiary:`light-dark(${r.blue170}, ${r.gray10})`,textOnColor:`light-dark(${r.white}, ${r.white})`,textInverse:`light-dark(${r.gray10}, ${r.gray200})`,textDisabled:`light-dark(${r.gray50}, ${r.gray140})`,textInvalid:`light-dark(${r.signalRed100}, ${r.signalRed80})`,textPlaceholder:`light-dark(${r.gray70}, ${r.gray140})`,buttonBackgroundPrimary:`light-dark(${r.blue170}, ${r.blue100})`,buttonBackgroundPrimaryHover:`light-dark(${r.blue140}, ${r.blue140})`,buttonBackgroundPrimaryActive:`light-dark(${r.blue100}, ${r.blue170})`,buttonBackgroundSecondary:`light-dark(${r.white}, ${r.gray200})`,buttonBackgroundSecondaryHover:`light-dark(${r.whiteHover}, ${r.gray190})`,buttonBackgroundSecondaryActive:`light-dark(${r.gray30}, ${r.gray180})`,buttonBackgroundTertiaryHover:`light-dark(${r.whiteHover}, ${r.gray190})`,buttonBackgroundTertiaryActive:`light-dark(${r.gray30}, ${r.gray180})`,buttonBackgroundDanger:`light-dark(${r.signalRed100}, ${r.signalRed100})`,buttonBackgroundDangerHover:`light-dark(${r.signalRed160}, ${r.signalRed160})`,buttonBackgroundDangerActive:`light-dark(${r.signalRed180}, ${r.signalRed180})`,buttonBackgroundDisabled:`light-dark(${r.gray10}, ${r.gray180})`,buttonBackgroundSkeleton:`light-dark(${r.gray10}, ${r.gray180})`,buttonBorderSecondary:`light-dark(${r.blue170}, ${r.gray10})`,logoPrimary:`light-dark(${r.red100}, ${r.white})`},n={base:1,above:10,modal:1e3,toast:1100,skipToContent:1200},o=Object.freeze(Object.defineProperty({__proto__:null,baseColors:r,breakpoints:t,semantic:d,spacing:g,states:i,transitions:l,typography:a,windowSizes:e,zIndex:n},Symbol.toStringTag,{value:"Module"}));exports.baseColors=r;exports.breakpoints=t;exports.semantic=d;exports.spacing=g;exports.states=i;exports.tokens=o;exports.transitions=l;exports.typography=a;exports.windowSizes=e;exports.zIndex=n;
|