@metamask-previews/design-system-react-native 0.4.1-preview.c08e845 → 0.5.1-preview.ab80aae

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +36 -1
  2. package/dist/components/AvatarGroup/AvatarGroup.types.cjs.map +1 -1
  3. package/dist/components/AvatarGroup/AvatarGroup.types.d.cts +5 -5
  4. package/dist/components/AvatarGroup/AvatarGroup.types.d.cts.map +1 -1
  5. package/dist/components/AvatarGroup/AvatarGroup.types.d.mts +5 -5
  6. package/dist/components/AvatarGroup/AvatarGroup.types.d.mts.map +1 -1
  7. package/dist/components/AvatarGroup/AvatarGroup.types.mjs.map +1 -1
  8. package/dist/components/ButtonIcon/ButtonIcon.cjs +1 -1
  9. package/dist/components/ButtonIcon/ButtonIcon.cjs.map +1 -1
  10. package/dist/components/ButtonIcon/ButtonIcon.constants.cjs +3 -3
  11. package/dist/components/ButtonIcon/ButtonIcon.constants.cjs.map +1 -1
  12. package/dist/components/ButtonIcon/ButtonIcon.constants.mjs +3 -3
  13. package/dist/components/ButtonIcon/ButtonIcon.constants.mjs.map +1 -1
  14. package/dist/components/ButtonIcon/ButtonIcon.mjs +1 -1
  15. package/dist/components/ButtonIcon/ButtonIcon.mjs.map +1 -1
  16. package/dist/components/Icon/Icon.assets.cjs +2 -0
  17. package/dist/components/Icon/Icon.assets.cjs.map +1 -1
  18. package/dist/components/Icon/Icon.assets.d.cts.map +1 -1
  19. package/dist/components/Icon/Icon.assets.d.mts.map +1 -1
  20. package/dist/components/Icon/Icon.assets.mjs +2 -0
  21. package/dist/components/Icon/Icon.assets.mjs.map +1 -1
  22. package/dist/components/Icon/assets/after-hours.svg +1 -0
  23. package/dist/components/Text/Text.types.cjs.map +1 -1
  24. package/dist/components/Text/Text.types.d.cts +1 -1
  25. package/dist/components/Text/Text.types.d.mts +1 -1
  26. package/dist/components/Text/Text.types.mjs.map +1 -1
  27. package/dist/components/temp-components/Jazzicon/Jazzicon.cjs.map +1 -1
  28. package/dist/components/temp-components/Jazzicon/Jazzicon.d.cts.map +1 -1
  29. package/dist/components/temp-components/Jazzicon/Jazzicon.d.mts.map +1 -1
  30. package/dist/components/temp-components/Jazzicon/Jazzicon.mjs.map +1 -1
  31. package/dist/types/index.cjs +260 -356
  32. package/dist/types/index.cjs.map +1 -1
  33. package/dist/types/index.d.cts +275 -247
  34. package/dist/types/index.d.cts.map +1 -1
  35. package/dist/types/index.d.mts +275 -247
  36. package/dist/types/index.d.mts.map +1 -1
  37. package/dist/types/index.mjs +248 -356
  38. package/dist/types/index.mjs.map +1 -1
  39. package/package.json +8 -8
@@ -1,28 +1,29 @@
1
1
  /**
2
2
  * AvatarBase - size
3
3
  */
4
- export declare enum AvatarBaseSize {
4
+ export type AvatarBaseSize = '16' | '24' | '32' | '40' | '48';
5
+ export declare const AvatarBaseSize: {
5
6
  /**
6
7
  * Represents an extra small avatar size (16px).
7
8
  */
8
- Xs = "16",
9
+ readonly Xs: "16";
9
10
  /**
10
11
  * Represents a small avatar size (24px).
11
12
  */
12
- Sm = "24",
13
+ readonly Sm: "24";
13
14
  /**
14
15
  * Represents a medium avatar size (32px).
15
16
  */
16
- Md = "32",
17
+ readonly Md: "32";
17
18
  /**
18
19
  * Represents a large avatar size (40px).
19
20
  */
20
- Lg = "40",
21
+ readonly Lg: "40";
21
22
  /**
22
23
  * Represents an extra large avatar size (48px).
23
24
  */
24
- Xl = "48"
25
- }
25
+ readonly Xl: "48";
26
+ };
26
27
  export { AvatarBaseSize as AvatarAccountSize };
27
28
  export { AvatarBaseSize as AvatarFaviconSize };
28
29
  export { AvatarBaseSize as AvatarGroupSize };
@@ -33,96 +34,105 @@ export { AvatarBaseSize as AvatarSize };
33
34
  /**
34
35
  * Avatar - shape
35
36
  */
36
- export declare enum AvatarShape {
37
+ export type AvatarShape = 'circle' | 'square';
38
+ export declare const AvatarShape: {
37
39
  /**
38
40
  * Represents a circular Avatar.
39
41
  */
40
- Circle = "circle",
42
+ readonly Circle: "circle";
41
43
  /**
42
44
  * Represents a squared Avatar
43
45
  */
44
- Square = "square"
45
- }
46
+ readonly Square: "square";
47
+ };
46
48
  export { AvatarShape as AvatarBaseShape };
47
49
  /**
48
50
  * AvatarAccount - variant
49
51
  */
50
- export declare enum AvatarAccountVariant {
51
- Blockies = "blockies",
52
- Jazzicon = "jazzicon",
53
- Maskicon = "maskicon"
54
- }
52
+ export type AvatarAccountVariant = 'blockies' | 'jazzicon' | 'maskicon';
53
+ export declare const AvatarAccountVariant: {
54
+ readonly Blockies: "blockies";
55
+ readonly Jazzicon: "jazzicon";
56
+ readonly Maskicon: "maskicon";
57
+ };
55
58
  /**
56
59
  * AvatarGroup - variant
57
60
  */
58
- export declare enum AvatarGroupVariant {
59
- Account = "Account",
60
- Favicon = "Favicon",
61
- Network = "Network",
62
- Token = "Token"
63
- }
61
+ export type AvatarGroupVariant = 'Account' | 'Favicon' | 'Network' | 'Token';
62
+ export declare const AvatarGroupVariant: {
63
+ readonly Account: "Account";
64
+ readonly Favicon: "Favicon";
65
+ readonly Network: "Network";
66
+ readonly Token: "Token";
67
+ };
64
68
  /**
65
69
  * AvatarIcon - severity
66
70
  */
67
- export declare enum AvatarIconSeverity {
68
- Neutral = "neutral",
69
- Info = "info",
70
- Success = "success",
71
- Error = "error",
72
- Warning = "warning"
73
- }
71
+ export type AvatarIconSeverity = 'neutral' | 'info' | 'success' | 'error' | 'warning';
72
+ export declare const AvatarIconSeverity: {
73
+ readonly Neutral: "neutral";
74
+ readonly Info: "info";
75
+ readonly Success: "success";
76
+ readonly Error: "error";
77
+ readonly Warning: "warning";
78
+ };
74
79
  /**
75
80
  * BadgeCount - size
76
81
  */
77
- export declare enum BadgeCountSize {
82
+ export type BadgeCountSize = 'Md' | 'Lg';
83
+ export declare const BadgeCountSize: {
78
84
  /**
79
85
  * Represents a medium badge count (14px height).
80
86
  */
81
- Md = "Md",
87
+ readonly Md: "Md";
82
88
  /**
83
89
  * Represents a large badge count (20px height).
84
90
  */
85
- Lg = "Lg"
86
- }
91
+ readonly Lg: "Lg";
92
+ };
87
93
  /**
88
94
  * BadgeStatus - status
89
95
  */
90
- export declare enum BadgeStatusStatus {
91
- Active = "active",
92
- Inactive = "inactive",
93
- Disconnected = "disconnected",
94
- New = "new",
95
- Attention = "attention"
96
- }
96
+ export type BadgeStatusStatus = 'active' | 'inactive' | 'disconnected' | 'new' | 'attention';
97
+ export declare const BadgeStatusStatus: {
98
+ readonly Active: "active";
99
+ readonly Inactive: "inactive";
100
+ readonly Disconnected: "disconnected";
101
+ readonly New: "new";
102
+ readonly Attention: "attention";
103
+ };
97
104
  /**
98
105
  * BadgeStatus - size
99
106
  */
100
- export declare enum BadgeStatusSize {
107
+ export type BadgeStatusSize = 'Md' | 'Lg';
108
+ export declare const BadgeStatusSize: {
101
109
  /**
102
110
  * Represents a medium badge status size (8px).
103
111
  */
104
- Md = "Md",
112
+ readonly Md: "Md";
105
113
  /**
106
114
  * Represents a large avatar size (10px).
107
115
  */
108
- Lg = "Lg"
109
- }
116
+ readonly Lg: "Lg";
117
+ };
110
118
  /**
111
119
  * BadgeWrapper - positionAnchorShape
112
120
  */
113
- export declare enum BadgeWrapperPositionAnchorShape {
114
- Rectangular = "Rectangular",
115
- Circular = "Circular"
116
- }
121
+ export type BadgeWrapperPositionAnchorShape = 'Rectangular' | 'Circular';
122
+ export declare const BadgeWrapperPositionAnchorShape: {
123
+ readonly Rectangular: "Rectangular";
124
+ readonly Circular: "Circular";
125
+ };
117
126
  /**
118
127
  * BadgeWrapper - position.
119
128
  */
120
- export declare enum BadgeWrapperPosition {
121
- TopRight = "TopRight",
122
- BottomRight = "BottomRight",
123
- BottomLeft = "BottomLeft",
124
- TopLeft = "TopLeft"
125
- }
129
+ export type BadgeWrapperPosition = 'TopRight' | 'BottomRight' | 'BottomLeft' | 'TopLeft';
130
+ export declare const BadgeWrapperPosition: {
131
+ readonly TopRight: "TopRight";
132
+ readonly BottomRight: "BottomRight";
133
+ readonly BottomLeft: "BottomLeft";
134
+ readonly TopLeft: "TopLeft";
135
+ };
126
136
  /**
127
137
  * BadgeWrapper - customPosition
128
138
  */
@@ -143,186 +153,193 @@ export type BoxBorderWidth = 0 | 1 | 2 | 4 | 8;
143
153
  /**
144
154
  * Box - flexDirection
145
155
  */
146
- export declare enum BoxFlexDirection {
147
- Row = "flex-row",
148
- RowReverse = "flex-row-reverse",
149
- Column = "flex-col",
150
- ColumnReverse = "flex-col-reverse"
151
- }
156
+ export type BoxFlexDirection = 'flex-row' | 'flex-row-reverse' | 'flex-col' | 'flex-col-reverse';
157
+ export declare const BoxFlexDirection: {
158
+ readonly Row: "flex-row";
159
+ readonly RowReverse: "flex-row-reverse";
160
+ readonly Column: "flex-col";
161
+ readonly ColumnReverse: "flex-col-reverse";
162
+ };
152
163
  /**
153
164
  * Box - flexWrap
154
165
  */
155
- export declare enum BoxFlexWrap {
156
- NoWrap = "flex-nowrap",
157
- Wrap = "flex-wrap",
158
- WrapReverse = "flex-wrap-reverse"
159
- }
166
+ export type BoxFlexWrap = 'flex-nowrap' | 'flex-wrap' | 'flex-wrap-reverse';
167
+ export declare const BoxFlexWrap: {
168
+ readonly NoWrap: "flex-nowrap";
169
+ readonly Wrap: "flex-wrap";
170
+ readonly WrapReverse: "flex-wrap-reverse";
171
+ };
160
172
  /**
161
173
  * Box - alignItems
162
174
  */
163
- export declare enum BoxAlignItems {
164
- Start = "items-start",
165
- Center = "items-center",
166
- End = "items-end",
167
- Stretch = "items-stretch",
168
- Baseline = "items-baseline"
169
- }
175
+ export type BoxAlignItems = 'items-start' | 'items-center' | 'items-end' | 'items-stretch' | 'items-baseline';
176
+ export declare const BoxAlignItems: {
177
+ readonly Start: "items-start";
178
+ readonly Center: "items-center";
179
+ readonly End: "items-end";
180
+ readonly Stretch: "items-stretch";
181
+ readonly Baseline: "items-baseline";
182
+ };
170
183
  /**
171
184
  * Box - justifyContent
172
185
  */
173
- export declare enum BoxJustifyContent {
174
- Start = "justify-start",
175
- Center = "justify-center",
176
- End = "justify-end",
177
- Between = "justify-between",
178
- Around = "justify-around",
179
- Evenly = "justify-evenly"
180
- }
186
+ export type BoxJustifyContent = 'justify-start' | 'justify-center' | 'justify-end' | 'justify-between' | 'justify-around' | 'justify-evenly';
187
+ export declare const BoxJustifyContent: {
188
+ readonly Start: "justify-start";
189
+ readonly Center: "justify-center";
190
+ readonly End: "justify-end";
191
+ readonly Between: "justify-between";
192
+ readonly Around: "justify-around";
193
+ readonly Evenly: "justify-evenly";
194
+ };
181
195
  /**
182
196
  * Box - backgroundColor
183
197
  */
184
- export declare enum BoxBackgroundColor {
198
+ export type BoxBackgroundColor = 'bg-default' | 'bg-alternative' | 'bg-section' | 'bg-subsection' | 'bg-muted' | 'bg-primary-default' | 'bg-primary-alternative' | 'bg-primary-muted' | 'bg-primary-inverse' | 'bg-error-default' | 'bg-error-alternative' | 'bg-error-muted' | 'bg-error-inverse' | 'bg-warning-default' | 'bg-warning-alternative' | 'bg-warning-muted' | 'bg-warning-inverse' | 'bg-success-default' | 'bg-success-alternative' | 'bg-success-muted' | 'bg-success-inverse' | 'bg-info-default' | 'bg-info-muted' | 'bg-info-inverse' | 'bg-flask-default' | 'bg-flask-inverse' | 'bg-overlay-alternative' | 'bg-overlay-default' | 'bg-overlay-inverse' | 'bg-transparent';
199
+ export declare const BoxBackgroundColor: {
185
200
  /** Default background color */
186
- BackgroundDefault = "bg-default",
201
+ readonly BackgroundDefault: "bg-default";
187
202
  /** Alternative background color */
188
- BackgroundAlternative = "bg-alternative",
203
+ readonly BackgroundAlternative: "bg-alternative";
189
204
  /** Section background color */
190
- BackgroundSection = "bg-section",
205
+ readonly BackgroundSection: "bg-section";
191
206
  /** Subsection background color */
192
- BackgroundSubsection = "bg-subsection",
207
+ readonly BackgroundSubsection: "bg-subsection";
193
208
  /** Muted background color */
194
- BackgroundMuted = "bg-muted",
209
+ readonly BackgroundMuted: "bg-muted";
195
210
  /** Primary default background color */
196
- PrimaryDefault = "bg-primary-default",
211
+ readonly PrimaryDefault: "bg-primary-default";
197
212
  /** Primary alternative background color */
198
- PrimaryAlternative = "bg-primary-alternative",
213
+ readonly PrimaryAlternative: "bg-primary-alternative";
199
214
  /** Primary muted background color */
200
- PrimaryMuted = "bg-primary-muted",
215
+ readonly PrimaryMuted: "bg-primary-muted";
201
216
  /** Primary inverse background color */
202
- PrimaryInverse = "bg-primary-inverse",
217
+ readonly PrimaryInverse: "bg-primary-inverse";
203
218
  /** Error default background color */
204
- ErrorDefault = "bg-error-default",
219
+ readonly ErrorDefault: "bg-error-default";
205
220
  /** Error alternative background color */
206
- ErrorAlternative = "bg-error-alternative",
221
+ readonly ErrorAlternative: "bg-error-alternative";
207
222
  /** Error muted background color */
208
- ErrorMuted = "bg-error-muted",
223
+ readonly ErrorMuted: "bg-error-muted";
209
224
  /** Error inverse background color */
210
- ErrorInverse = "bg-error-inverse",
225
+ readonly ErrorInverse: "bg-error-inverse";
211
226
  /** Warning default background color */
212
- WarningDefault = "bg-warning-default",
227
+ readonly WarningDefault: "bg-warning-default";
213
228
  /** Warning alternative background color */
214
- WarningAlternative = "bg-warning-alternative",
229
+ readonly WarningAlternative: "bg-warning-alternative";
215
230
  /** Warning muted background color */
216
- WarningMuted = "bg-warning-muted",
231
+ readonly WarningMuted: "bg-warning-muted";
217
232
  /** Warning inverse background color */
218
- WarningInverse = "bg-warning-inverse",
233
+ readonly WarningInverse: "bg-warning-inverse";
219
234
  /** Success default background color */
220
- SuccessDefault = "bg-success-default",
235
+ readonly SuccessDefault: "bg-success-default";
221
236
  /** Success alternative background color */
222
- SuccessAlternative = "bg-success-alternative",
237
+ readonly SuccessAlternative: "bg-success-alternative";
223
238
  /** Success muted background color */
224
- SuccessMuted = "bg-success-muted",
239
+ readonly SuccessMuted: "bg-success-muted";
225
240
  /** Success inverse background color */
226
- SuccessInverse = "bg-success-inverse",
241
+ readonly SuccessInverse: "bg-success-inverse";
227
242
  /** Info default background color */
228
- InfoDefault = "bg-info-default",
243
+ readonly InfoDefault: "bg-info-default";
229
244
  /** Info muted background color */
230
- InfoMuted = "bg-info-muted",
245
+ readonly InfoMuted: "bg-info-muted";
231
246
  /** Info inverse background color */
232
- InfoInverse = "bg-info-inverse",
247
+ readonly InfoInverse: "bg-info-inverse";
233
248
  /** Flask default background color */
234
- FlaskDefault = "bg-flask-default",
249
+ readonly FlaskDefault: "bg-flask-default";
235
250
  /** Flask inverse background color */
236
- FlaskInverse = "bg-flask-inverse",
251
+ readonly FlaskInverse: "bg-flask-inverse";
237
252
  /** Overlay alternative background color */
238
- OverlayAlternative = "bg-overlay-alternative",
253
+ readonly OverlayAlternative: "bg-overlay-alternative";
239
254
  /** Overlay default background color */
240
- OverlayDefault = "bg-overlay-default",
255
+ readonly OverlayDefault: "bg-overlay-default";
241
256
  /** Overlay inverse background color */
242
- OverlayInverse = "bg-overlay-inverse",
257
+ readonly OverlayInverse: "bg-overlay-inverse";
243
258
  /** Transparent background color */
244
- Transparent = "bg-transparent"
245
- }
259
+ readonly Transparent: "bg-transparent";
260
+ };
246
261
  /**
247
262
  * Box - borderColor
248
263
  */
249
- export declare enum BoxBorderColor {
264
+ export type BoxBorderColor = 'border-background-default' | 'border-default' | 'border-muted' | 'border-primary-default' | 'border-primary-alternative' | 'border-primary-muted' | 'border-primary-inverse' | 'border-error-default' | 'border-error-alternative' | 'border-error-muted' | 'border-error-inverse' | 'border-warning-default' | 'border-warning-alternative' | 'border-warning-muted' | 'border-warning-inverse' | 'border-success-default' | 'border-success-alternative' | 'border-success-muted' | 'border-success-inverse' | 'border-info-default' | 'border-info-alternative' | 'border-info-muted' | 'border-info-inverse' | 'border-flask-default' | 'border-flask-inverse' | 'border-overlay-alternative' | 'border-overlay-default' | 'border-overlay-inverse' | 'border-transparent';
265
+ export declare const BoxBorderColor: {
250
266
  /** Background default for cut out effect*/
251
- BackgroundDefault = "border-background-default",
267
+ readonly BackgroundDefault: "border-background-default";
252
268
  /** Default border color */
253
- BorderDefault = "border-default",
269
+ readonly BorderDefault: "border-default";
254
270
  /** Muted border color */
255
- BorderMuted = "border-muted",
271
+ readonly BorderMuted: "border-muted";
256
272
  /** Primary default border color */
257
- PrimaryDefault = "border-primary-default",
273
+ readonly PrimaryDefault: "border-primary-default";
258
274
  /** Primary alternative border color */
259
- PrimaryAlternative = "border-primary-alternative",
275
+ readonly PrimaryAlternative: "border-primary-alternative";
260
276
  /** Primary muted border color */
261
- PrimaryMuted = "border-primary-muted",
277
+ readonly PrimaryMuted: "border-primary-muted";
262
278
  /** Primary inverse border color */
263
- PrimaryInverse = "border-primary-inverse",
279
+ readonly PrimaryInverse: "border-primary-inverse";
264
280
  /** Error default border color */
265
- ErrorDefault = "border-error-default",
281
+ readonly ErrorDefault: "border-error-default";
266
282
  /** Error alternative border color */
267
- ErrorAlternative = "border-error-alternative",
283
+ readonly ErrorAlternative: "border-error-alternative";
268
284
  /** Error muted border color */
269
- ErrorMuted = "border-error-muted",
285
+ readonly ErrorMuted: "border-error-muted";
270
286
  /** Error inverse border color */
271
- ErrorInverse = "border-error-inverse",
287
+ readonly ErrorInverse: "border-error-inverse";
272
288
  /** Warning default border color */
273
- WarningDefault = "border-warning-default",
289
+ readonly WarningDefault: "border-warning-default";
274
290
  /** Warning alternative border color */
275
- WarningAlternative = "border-warning-alternative",
291
+ readonly WarningAlternative: "border-warning-alternative";
276
292
  /** Warning muted border color */
277
- WarningMuted = "border-warning-muted",
293
+ readonly WarningMuted: "border-warning-muted";
278
294
  /** Warning inverse border color */
279
- WarningInverse = "border-warning-inverse",
295
+ readonly WarningInverse: "border-warning-inverse";
280
296
  /** Success default border color */
281
- SuccessDefault = "border-success-default",
297
+ readonly SuccessDefault: "border-success-default";
282
298
  /** Success alternative border color */
283
- SuccessAlternative = "border-success-alternative",
299
+ readonly SuccessAlternative: "border-success-alternative";
284
300
  /** Success muted border color */
285
- SuccessMuted = "border-success-muted",
301
+ readonly SuccessMuted: "border-success-muted";
286
302
  /** Success inverse border color */
287
- SuccessInverse = "border-success-inverse",
303
+ readonly SuccessInverse: "border-success-inverse";
288
304
  /** Info default border color */
289
- InfoDefault = "border-info-default",
305
+ readonly InfoDefault: "border-info-default";
290
306
  /** Info alternative border color */
291
- InfoAlternative = "border-info-alternative",
307
+ readonly InfoAlternative: "border-info-alternative";
292
308
  /** Info muted border color */
293
- InfoMuted = "border-info-muted",
309
+ readonly InfoMuted: "border-info-muted";
294
310
  /** Info inverse border color */
295
- InfoInverse = "border-info-inverse",
311
+ readonly InfoInverse: "border-info-inverse";
296
312
  /** Flask default border color */
297
- FlaskDefault = "border-flask-default",
313
+ readonly FlaskDefault: "border-flask-default";
298
314
  /** Flask inverse border color */
299
- FlaskInverse = "border-flask-inverse",
315
+ readonly FlaskInverse: "border-flask-inverse";
300
316
  /** Overlay alternative border color */
301
- OverlayAlternative = "border-overlay-alternative",
317
+ readonly OverlayAlternative: "border-overlay-alternative";
302
318
  /** Overlay default border color */
303
- OverlayDefault = "border-overlay-default",
319
+ readonly OverlayDefault: "border-overlay-default";
304
320
  /** Overlay inverse border color */
305
- OverlayInverse = "border-overlay-inverse",
321
+ readonly OverlayInverse: "border-overlay-inverse";
306
322
  /** Transparent border color */
307
- Transparent = "border-transparent"
308
- }
323
+ readonly Transparent: "border-transparent";
324
+ };
309
325
  /**
310
326
  * ButtonBase - size
311
327
  */
312
- export declare enum ButtonBaseSize {
328
+ export type ButtonBaseSize = 'sm' | 'md' | 'lg';
329
+ export declare const ButtonBaseSize: {
313
330
  /**
314
331
  * Represents a small button size (32px).
315
332
  */
316
- Sm = "sm",
333
+ readonly Sm: "sm";
317
334
  /**
318
335
  * Represents a medium button size (40px).
319
336
  */
320
- Md = "md",
337
+ readonly Md: "md";
321
338
  /**
322
339
  * Represents a large button size (48px).
323
340
  */
324
- Lg = "lg"
325
- }
341
+ readonly Lg: "lg";
342
+ };
326
343
  export { ButtonBaseSize as ButtonSize };
327
344
  export { ButtonBaseSize as ButtonPrimarySize };
328
345
  export { ButtonBaseSize as ButtonSecondarySize };
@@ -330,195 +347,205 @@ export { ButtonBaseSize as ButtonTertiarySize };
330
347
  /**
331
348
  * Button - variant
332
349
  */
333
- export declare enum ButtonVariant {
334
- Primary = "Primary",
335
- Secondary = "Secondary",
336
- Tertiary = "Tertiary"
337
- }
350
+ export type ButtonVariant = 'Primary' | 'Secondary' | 'Tertiary';
351
+ export declare const ButtonVariant: {
352
+ readonly Primary: "Primary";
353
+ readonly Secondary: "Secondary";
354
+ readonly Tertiary: "Tertiary";
355
+ };
338
356
  /**
339
357
  * ButtonIcon - size
340
358
  */
341
- export declare enum ButtonIconSize {
359
+ export type ButtonIconSize = 'sm' | 'md' | 'lg';
360
+ export declare const ButtonIconSize: {
342
361
  /**
343
362
  * Represents a small button size (24px).
344
363
  */
345
- Sm = "sm",
364
+ readonly Sm: "sm";
346
365
  /**
347
366
  * Represents a medium button size (32px).
348
367
  */
349
- Md = "md",
368
+ readonly Md: "md";
350
369
  /**
351
370
  * Represents a large button size (40px).
352
371
  */
353
- Lg = "lg"
354
- }
372
+ readonly Lg: "lg";
373
+ };
355
374
  /**
356
375
  * Text - variant
357
376
  */
358
- export declare enum TextVariant {
359
- DisplayLg = "display-lg",
360
- DisplayMd = "display-md",
361
- HeadingLg = "heading-lg",
362
- HeadingMd = "heading-md",
363
- HeadingSm = "heading-sm",
364
- BodyLg = "body-lg",
365
- BodyMd = "body-md",
366
- BodySm = "body-sm",
367
- BodyXs = "body-xs",
368
- PageHeading = "page-heading",
369
- SectionHeading = "section-heading",
370
- ButtonLabelMd = "button-label-md",
371
- ButtonLabelLg = "button-label-lg",
372
- AmountDisplayLg = "amount-display-lg"
373
- }
377
+ export type TextVariant = 'display-lg' | 'display-md' | 'heading-lg' | 'heading-md' | 'heading-sm' | 'body-lg' | 'body-md' | 'body-sm' | 'body-xs' | 'page-heading' | 'section-heading' | 'button-label-md' | 'button-label-lg' | 'amount-display-lg';
378
+ export declare const TextVariant: {
379
+ readonly DisplayLg: "display-lg";
380
+ readonly DisplayMd: "display-md";
381
+ readonly HeadingLg: "heading-lg";
382
+ readonly HeadingMd: "heading-md";
383
+ readonly HeadingSm: "heading-sm";
384
+ readonly BodyLg: "body-lg";
385
+ readonly BodyMd: "body-md";
386
+ readonly BodySm: "body-sm";
387
+ readonly BodyXs: "body-xs";
388
+ readonly PageHeading: "page-heading";
389
+ readonly SectionHeading: "section-heading";
390
+ readonly ButtonLabelMd: "button-label-md";
391
+ readonly ButtonLabelLg: "button-label-lg";
392
+ readonly AmountDisplayLg: "amount-display-lg";
393
+ };
374
394
  /**
375
395
  * Text - color
376
396
  */
377
- export declare enum TextColor {
397
+ export type TextColor = 'text-default' | 'text-alternative' | 'text-muted' | 'text-overlay-inverse' | 'text-primary-default' | 'text-primary-alternative' | 'text-primary-inverse' | 'text-primary-default-pressed' | 'text-error-default' | 'text-error-alternative' | 'text-error-inverse' | 'text-error-default-pressed' | 'text-warning-default' | 'text-warning-inverse' | 'text-warning-default-pressed' | 'text-success-default' | 'text-success-inverse' | 'text-success-default-pressed' | 'text-info-default' | 'text-info-inverse' | 'text-transparent';
398
+ export declare const TextColor: {
378
399
  /** For default neutral text. */
379
- TextDefault = "text-default",
400
+ readonly TextDefault: "text-default";
380
401
  /** For softer contrast neutral text */
381
- TextAlternative = "text-alternative",
402
+ readonly TextAlternative: "text-alternative";
382
403
  /** For the softest contrast neutral text (not accessible) */
383
- TextMuted = "text-muted",
404
+ readonly TextMuted: "text-muted";
384
405
  /** For elements used on top of overlay/alternative. */
385
- OverlayInverse = "text-overlay-inverse",
406
+ readonly OverlayInverse: "text-overlay-inverse";
386
407
  /** For interactive, active, and selected semantics. */
387
- PrimaryDefault = "text-primary-default",
408
+ readonly PrimaryDefault: "text-primary-default";
388
409
  /** For softer variants of primary text. */
389
- PrimaryAlternative = "text-primary-alternative",
410
+ readonly PrimaryAlternative: "text-primary-alternative";
390
411
  /** For elements used on top of primary/default. */
391
- PrimaryInverse = "text-primary-inverse",
412
+ readonly PrimaryInverse: "text-primary-inverse";
392
413
  /** For primary text in a pressed state. */
393
- PrimaryDefaultPressed = "text-primary-default-pressed",
414
+ readonly PrimaryDefaultPressed: "text-primary-default-pressed";
394
415
  /** For critical alert text. */
395
- ErrorDefault = "text-error-default",
416
+ readonly ErrorDefault: "text-error-default";
396
417
  /** For stronger contrast error text. */
397
- ErrorAlternative = "text-error-alternative",
418
+ readonly ErrorAlternative: "text-error-alternative";
398
419
  /** For elements used on top of error/default. */
399
- ErrorInverse = "text-error-inverse",
420
+ readonly ErrorInverse: "text-error-inverse";
400
421
  /** For critical alert text in a pressed state. */
401
- ErrorDefaultPressed = "text-error-default-pressed",
422
+ readonly ErrorDefaultPressed: "text-error-default-pressed";
402
423
  /** For caution alert text. */
403
- WarningDefault = "text-warning-default",
424
+ readonly WarningDefault: "text-warning-default";
404
425
  /** For elements used on top of warning/default. */
405
- WarningInverse = "text-warning-inverse",
426
+ readonly WarningInverse: "text-warning-inverse";
406
427
  /** For caution text in a pressed state. */
407
- WarningDefaultPressed = "text-warning-default-pressed",
428
+ readonly WarningDefaultPressed: "text-warning-default-pressed";
408
429
  /** For positive semantic text. */
409
- SuccessDefault = "text-success-default",
430
+ readonly SuccessDefault: "text-success-default";
410
431
  /** For elements used on top of success/default. */
411
- SuccessInverse = "text-success-inverse",
432
+ readonly SuccessInverse: "text-success-inverse";
412
433
  /** For positive text in a pressed state. */
413
- SuccessDefaultPressed = "text-success-default-pressed",
434
+ readonly SuccessDefaultPressed: "text-success-default-pressed";
414
435
  /** For informational read-only text. */
415
- InfoDefault = "text-info-default",
436
+ readonly InfoDefault: "text-info-default";
416
437
  /** For elements used on top of info/default. */
417
- InfoInverse = "text-info-inverse",
438
+ readonly InfoInverse: "text-info-inverse";
418
439
  /** Make the text color transparent. */
419
- Transparent = "text-transparent"
420
- }
440
+ readonly Transparent: "text-transparent";
441
+ };
421
442
  /**
422
443
  * Text - fontWeight
423
444
  */
424
- export declare enum FontWeight {
445
+ export type FontWeight = '700' | '500' | '400';
446
+ export declare const FontWeight: {
425
447
  /**
426
- * Weight - 600
448
+ * Weight - 700
427
449
  */
428
- Bold = "600",
450
+ readonly Bold: "700";
429
451
  /**
430
452
  * Weight - 500
431
453
  */
432
- Medium = "500",
454
+ readonly Medium: "500";
433
455
  /**
434
456
  * Weight - 400
435
457
  */
436
- Regular = "400"
437
- }
458
+ readonly Regular: "400";
459
+ };
438
460
  /**
439
461
  * Text - fontStyle
440
462
  */
441
- export declare enum FontStyle {
442
- Italic = "italic",
443
- Normal = "normal"
444
- }
463
+ export type FontStyle = 'italic' | 'normal';
464
+ export declare const FontStyle: {
465
+ readonly Italic: "italic";
466
+ readonly Normal: "normal";
467
+ };
445
468
  /**
446
469
  * Text - fontFamily
447
470
  */
448
- export declare enum FontFamily {
449
- Default = "default",
450
- Accent = "accent",
451
- Hero = "hero"
452
- }
471
+ export type FontFamily = 'default' | 'accent' | 'hero';
472
+ export declare const FontFamily: {
473
+ readonly Default: "default";
474
+ readonly Accent: "accent";
475
+ readonly Hero: "hero";
476
+ };
453
477
  /**
454
478
  * TextButton - Size
455
479
  */
456
- export declare enum TextButtonSize {
457
- BodyLg = "body-lg",
458
- BodyMd = "body-md",
459
- BodySm = "body-sm",
460
- BodyXs = "body-xs"
461
- }
480
+ export type TextButtonSize = 'body-lg' | 'body-md' | 'body-sm' | 'body-xs';
481
+ export declare const TextButtonSize: {
482
+ readonly BodyLg: "body-lg";
483
+ readonly BodyMd: "body-md";
484
+ readonly BodySm: "body-sm";
485
+ readonly BodyXs: "body-xs";
486
+ };
462
487
  /**
463
488
  * Icon - color
464
489
  */
465
- export declare enum IconColor {
490
+ export type IconColor = 'text-icon-default' | 'text-icon-alternative' | 'text-icon-muted' | 'text-overlay-inverse' | 'text-primary-default' | 'text-primary-alternative' | 'text-primary-inverse' | 'text-primary-default-pressed' | 'text-error-default' | 'text-error-alternative' | 'text-error-inverse' | 'text-error-default-pressed' | 'text-warning-default' | 'text-warning-inverse' | 'text-warning-default-pressed' | 'text-success-default' | 'text-success-inverse' | 'text-success-default-pressed' | 'text-info-default' | 'text-info-inverse';
491
+ export declare const IconColor: {
466
492
  /** For default neutral icons */
467
- IconDefault = "text-icon-default",
493
+ readonly IconDefault: "text-icon-default";
468
494
  /** For softer neutral icons */
469
- IconAlternative = "text-icon-alternative",
495
+ readonly IconAlternative: "text-icon-alternative";
470
496
  /** For the weakest contrast neutral icons (not accessible) */
471
- IconMuted = "text-icon-muted",
497
+ readonly IconMuted: "text-icon-muted";
472
498
  /** For elements used on top of overlay/alternative. Used for text, icon, or border */
473
- OverlayInverse = "text-overlay-inverse",
499
+ readonly OverlayInverse: "text-overlay-inverse";
474
500
  /** For interactive, active, and selected semantics. Used for text, background, icon, or border */
475
- PrimaryDefault = "text-primary-default",
501
+ readonly PrimaryDefault: "text-primary-default";
476
502
  /** For softer variants of primary interactive elements */
477
- PrimaryAlternative = "text-primary-alternative",
503
+ readonly PrimaryAlternative: "text-primary-alternative";
478
504
  /** For elements used on top of primary/default. Used for text, icon, or border */
479
- PrimaryInverse = "text-primary-inverse",
505
+ readonly PrimaryInverse: "text-primary-inverse";
480
506
  /** For primary interactive elements in a pressed state */
481
- PrimaryDefaultPressed = "text-primary-default-pressed",
507
+ readonly PrimaryDefaultPressed: "text-primary-default-pressed";
482
508
  /** For critical alert semantic elements. Used for text, background, icon, or border */
483
- ErrorDefault = "text-error-default",
509
+ readonly ErrorDefault: "text-error-default";
484
510
  /** For softer variants of error elements */
485
- ErrorAlternative = "text-error-alternative",
511
+ readonly ErrorAlternative: "text-error-alternative";
486
512
  /** For elements used on top of error/default. Used for text, icon, or border */
487
- ErrorInverse = "text-error-inverse",
513
+ readonly ErrorInverse: "text-error-inverse";
488
514
  /** For critical alert semantic elements in a pressed state */
489
- ErrorDefaultPressed = "text-error-default-pressed",
515
+ readonly ErrorDefaultPressed: "text-error-default-pressed";
490
516
  /** For caution alert semantic elements. Used for text, background, icon, or border */
491
- WarningDefault = "text-warning-default",
517
+ readonly WarningDefault: "text-warning-default";
492
518
  /** For elements used on top of warning/default. Used for text, icon, or border */
493
- WarningInverse = "text-warning-inverse",
519
+ readonly WarningInverse: "text-warning-inverse";
494
520
  /** For caution alert semantic elements in a pressed state */
495
- WarningDefaultPressed = "text-warning-default-pressed",
521
+ readonly WarningDefaultPressed: "text-warning-default-pressed";
496
522
  /** For positive semantic elements. Used for text, background, icon, or border */
497
- SuccessDefault = "text-success-default",
523
+ readonly SuccessDefault: "text-success-default";
498
524
  /** For elements used on top of success/default. Used for text, icon, or border */
499
- SuccessInverse = "text-success-inverse",
525
+ readonly SuccessInverse: "text-success-inverse";
500
526
  /** For positive semantic elements in a pressed state */
501
- SuccessDefaultPressed = "text-success-default-pressed",
527
+ readonly SuccessDefaultPressed: "text-success-default-pressed";
502
528
  /** For informational read-only elements. Used for text, background, icon, or border */
503
- InfoDefault = "text-info-default",
529
+ readonly InfoDefault: "text-info-default";
504
530
  /** For elements used on top of info/default. Used for text, icon, or border */
505
- InfoInverse = "text-info-inverse"
506
- }
531
+ readonly InfoInverse: "text-info-inverse";
532
+ };
507
533
  /**
508
534
  * Icon - size
509
535
  */
510
- export declare enum IconSize {
536
+ export type IconSize = '12' | '16' | '20' | '24' | '32';
537
+ export declare const IconSize: {
511
538
  /** Extra small - 12px */
512
- Xs = "12",
539
+ readonly Xs: "12";
513
540
  /** Small - 16px */
514
- Sm = "16",
541
+ readonly Sm: "16";
515
542
  /** Medium - 20px (Default) */
516
- Md = "20",
543
+ readonly Md: "20";
517
544
  /** Large - 24px */
518
- Lg = "24",
545
+ readonly Lg: "24";
519
546
  /** Extra large - 32px */
520
- Xl = "32"
521
- }
547
+ readonly Xl: "32";
548
+ };
522
549
  /**
523
550
  * Icon - name
524
551
  */
@@ -529,6 +556,7 @@ export declare enum IconName {
529
556
  AddCircle = "AddCircle",
530
557
  AddSquare = "AddSquare",
531
558
  Add = "Add",
559
+ AfterHours = "AfterHours",
532
560
  Ai = "Ai",
533
561
  AlternateEmail = "AlternateEmail",
534
562
  AppleLogo = "AppleLogo",