@sentropic/design-system-tokens 0.10.0 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/anatomy.d.ts +58 -1
- package/dist/anatomy.d.ts.map +1 -1
- package/dist/anatomy.js +1 -1
- package/dist/component.d.ts +341 -0
- package/dist/component.d.ts.map +1 -1
- package/dist/component.js +564 -36
- package/dist/component.js.map +1 -1
- package/package.json +1 -1
package/dist/anatomy.d.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* while this number is still moving (cf. spec §5).
|
|
15
15
|
*/
|
|
16
16
|
import type { TokenTree } from "./foundation.js";
|
|
17
|
-
export declare const ANATOMY_VERSION = "1.
|
|
17
|
+
export declare const ANATOMY_VERSION = "1.5.0";
|
|
18
18
|
/** A CSS-ready value: a literal or a `var(--st-*)` reference. */
|
|
19
19
|
export type CssValue = string;
|
|
20
20
|
/**
|
|
@@ -56,6 +56,17 @@ export interface ShapeAnatomy {
|
|
|
56
56
|
* The per-side borders are RESOLVED here (already combining width + style +
|
|
57
57
|
* color into a CSS-ready shorthand) so a component applies them verbatim with
|
|
58
58
|
* no per-theme branching.
|
|
59
|
+
*
|
|
60
|
+
* v1.3.0 (additive, F3/F4):
|
|
61
|
+
* - `radiusTop` — per-field TOP-corner radius, resolved CSS-ready. The base
|
|
62
|
+
* `shape.radius` is a single uniform value; a filled-underline field can
|
|
63
|
+
* round only its TOP corners (DSFR « Champ de saisie » = 4px top / 0 bottom)
|
|
64
|
+
* while the bottom corners keep `shape.radius`. Defaults to the theme's own
|
|
65
|
+
* `shape.radius` so a boxed field stays uniform → no Sent Tech regression.
|
|
66
|
+
* - `underline` — the bottom rule rendered as a `box-shadow inset` instead of a
|
|
67
|
+
* `border-bottom` (the real DSFR/Carbon technique). `none` for an outline
|
|
68
|
+
* field (its rule is a real 4-side border); `inset 0 -<w> 0 0 <color>` for a
|
|
69
|
+
* filled-underline field, whose `borderBottom` then becomes `none`.
|
|
59
70
|
*/
|
|
60
71
|
export type FieldStyle = "outline" | "filled-underline";
|
|
61
72
|
export interface FieldAnatomy {
|
|
@@ -68,6 +79,52 @@ export interface FieldAnatomy {
|
|
|
68
79
|
borderRight: CssValue;
|
|
69
80
|
borderBottom: CssValue;
|
|
70
81
|
borderLeft: CssValue;
|
|
82
|
+
/**
|
|
83
|
+
* TOP-corner radius (v1.3.0). Defaults to the theme's `shape.radius` so a
|
|
84
|
+
* boxed field is unchanged; a filled-underline field may round only its top
|
|
85
|
+
* (DSFR = 4px) while the bottom corners keep `shape.radius`.
|
|
86
|
+
*/
|
|
87
|
+
radiusTop: CssValue;
|
|
88
|
+
/**
|
|
89
|
+
* Bottom-rule box-shadow (v1.3.0). `none` for an outline field (it draws a
|
|
90
|
+
* real border); `inset 0 -<width> 0 0 <color>` for a filled-underline field,
|
|
91
|
+
* which renders its bottom rule via this shadow instead of `border-bottom`.
|
|
92
|
+
*/
|
|
93
|
+
underline: CssValue;
|
|
94
|
+
/**
|
|
95
|
+
* Focus box-shadow for the field (v1.3.0), composed so the resting underline
|
|
96
|
+
* is never lost incoherently. An `outline`-strategy theme (DSFR) keeps the
|
|
97
|
+
* underline as its box-shadow at focus (its ring is a separate native
|
|
98
|
+
* `outline`); an `inset`/`ring`-strategy theme composes its focus ring AND the
|
|
99
|
+
* underline into one valid box-shadow list. An outline field with no underline
|
|
100
|
+
* resolves to the theme's plain focus box-shadow.
|
|
101
|
+
*/
|
|
102
|
+
focusShadow: CssValue;
|
|
103
|
+
/**
|
|
104
|
+
* Native `<select>` rendering primitive (v1.4.0, F5/F9). A native `<select>`
|
|
105
|
+
* with `appearance: auto` has its `line-height` FORCED to `normal` by the
|
|
106
|
+
* browser UA (proven on Chrome); only `appearance: none` lets the author
|
|
107
|
+
* `line-height` take effect (the real DSFR/Carbon selects use `appearance:
|
|
108
|
+
* none` + a custom chevron, which is why they render 24px/18px). Defaults to
|
|
109
|
+
* `auto` so the base Sent Tech select keeps its NATIVE arrow + render
|
|
110
|
+
* (unchanged); a filled-underline theme sets `none` so the anatomy line-height
|
|
111
|
+
* applies and the chevron is drawn by `selectChevron`.
|
|
112
|
+
*/
|
|
113
|
+
selectAppearance: CssValue;
|
|
114
|
+
/**
|
|
115
|
+
* Custom chevron background for the `<select>` when `selectAppearance` is
|
|
116
|
+
* `none` (the native arrow is then suppressed). `none` for the base (native
|
|
117
|
+
* arrow kept); a `url(...) no-repeat ...` background for a filled-underline
|
|
118
|
+
* theme. Applied as the select `background-image`/position so the arrow
|
|
119
|
+
* survives `appearance: none`.
|
|
120
|
+
*/
|
|
121
|
+
selectChevron: CssValue;
|
|
122
|
+
/**
|
|
123
|
+
* Right padding of the `<select>` reserving room for the chevron (F9). Defaults
|
|
124
|
+
* to the prior `2rem` arrow gap (base unchanged); DSFR reserves 40px, Carbon
|
|
125
|
+
* 48px to match the real `.fr-select` / `.bx--select-input` chevron gutter.
|
|
126
|
+
*/
|
|
127
|
+
selectPaddingRight: CssValue;
|
|
71
128
|
}
|
|
72
129
|
/** Density = the geometric envelope of a control for one size. */
|
|
73
130
|
export interface DensityAnatomy {
|
package/dist/anatomy.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anatomy.d.ts","sourceRoot":"","sources":["../src/anatomy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAEjD,eAAO,MAAM,eAAe,UAAU,CAAC;AAEvC,iEAAiE;AACjE,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAE9B;;;;;;;GAOG;AACH,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;AAEpE,MAAM,WAAW,YAAY;IAI3B,CAAC,GAAG,EAAE,MAAM,GAAG,QAAQ,CAAC;IACxB,QAAQ,EAAE,aAAa,CAAC;IACxB,KAAK,EAAE,QAAQ,CAAC;IAChB,MAAM,EAAE,QAAQ,CAAC;IACjB,KAAK,EAAE,QAAQ,CAAC;IAChB,gEAAgE;IAChE,KAAK,EAAE,QAAQ,CAAC;CACjB;AAED,gCAAgC;AAChC,MAAM,WAAW,YAAY;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,QAAQ,CAAC;IACxB,MAAM,EAAE,QAAQ,CAAC;IACjB,WAAW,EAAE,QAAQ,CAAC;IACtB,WAAW,EAAE,QAAQ,CAAC;CACvB;AAED
|
|
1
|
+
{"version":3,"file":"anatomy.d.ts","sourceRoot":"","sources":["../src/anatomy.ts"],"names":[],"mappings":"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"}
|
package/dist/anatomy.js
CHANGED
package/dist/component.d.ts
CHANGED
|
@@ -54,6 +54,146 @@ interface FieldInput {
|
|
|
54
54
|
fillBg?: string;
|
|
55
55
|
underlineColor?: string;
|
|
56
56
|
underlineWidth?: string;
|
|
57
|
+
radiusTop?: string;
|
|
58
|
+
underlineMode?: string;
|
|
59
|
+
selectAppearance?: string;
|
|
60
|
+
selectChevron?: string;
|
|
61
|
+
selectPaddingRight?: string;
|
|
62
|
+
}
|
|
63
|
+
interface CardInput {
|
|
64
|
+
borderWidth?: string;
|
|
65
|
+
background?: string;
|
|
66
|
+
fontSize?: string;
|
|
67
|
+
lineHeight?: string;
|
|
68
|
+
letterSpacing?: string;
|
|
69
|
+
}
|
|
70
|
+
interface ButtonSecondaryInput {
|
|
71
|
+
background?: string;
|
|
72
|
+
border?: string;
|
|
73
|
+
hoverBackground?: string;
|
|
74
|
+
}
|
|
75
|
+
interface TabsInput {
|
|
76
|
+
activeText?: string;
|
|
77
|
+
activeBackground?: string;
|
|
78
|
+
inactiveBackground?: string;
|
|
79
|
+
activeWeight?: string;
|
|
80
|
+
paddingBlock?: string;
|
|
81
|
+
paddingInline?: string;
|
|
82
|
+
fontSize?: string;
|
|
83
|
+
lineHeight?: string;
|
|
84
|
+
indicatorSide?: string;
|
|
85
|
+
indicatorMode?: string;
|
|
86
|
+
}
|
|
87
|
+
interface PaginationInput {
|
|
88
|
+
background?: string;
|
|
89
|
+
border?: string;
|
|
90
|
+
borderWidth?: string;
|
|
91
|
+
text?: string;
|
|
92
|
+
radius?: string;
|
|
93
|
+
activeBackground?: string;
|
|
94
|
+
activeText?: string;
|
|
95
|
+
activeBorder?: string;
|
|
96
|
+
activeBorderWidth?: string;
|
|
97
|
+
activeWeight?: string;
|
|
98
|
+
disabledText?: string;
|
|
99
|
+
paddingBlock?: string;
|
|
100
|
+
paddingInline?: string;
|
|
101
|
+
minSize?: string;
|
|
102
|
+
fontSize?: string;
|
|
103
|
+
lineHeight?: string;
|
|
104
|
+
letterSpacing?: string;
|
|
105
|
+
}
|
|
106
|
+
interface BreadcrumbInput {
|
|
107
|
+
text?: string;
|
|
108
|
+
linkText?: string;
|
|
109
|
+
currentText?: string;
|
|
110
|
+
separator?: string;
|
|
111
|
+
fontSize?: string;
|
|
112
|
+
lineHeight?: string;
|
|
113
|
+
letterSpacing?: string;
|
|
114
|
+
currentWeight?: string;
|
|
115
|
+
}
|
|
116
|
+
interface AlertInput {
|
|
117
|
+
background?: string;
|
|
118
|
+
text?: string;
|
|
119
|
+
borderTop?: string;
|
|
120
|
+
borderRight?: string;
|
|
121
|
+
borderBottom?: string;
|
|
122
|
+
accentWidth?: string;
|
|
123
|
+
filetWidth?: string;
|
|
124
|
+
paddingTop?: string;
|
|
125
|
+
paddingRight?: string;
|
|
126
|
+
paddingBottom?: string;
|
|
127
|
+
paddingLeft?: string;
|
|
128
|
+
fontSize?: string;
|
|
129
|
+
lineHeight?: string;
|
|
130
|
+
letterSpacing?: string;
|
|
131
|
+
accentInfo?: string;
|
|
132
|
+
accentSuccess?: string;
|
|
133
|
+
accentWarning?: string;
|
|
134
|
+
accentError?: string;
|
|
135
|
+
}
|
|
136
|
+
interface AccordionInput {
|
|
137
|
+
text?: string;
|
|
138
|
+
paddingBlock?: string;
|
|
139
|
+
paddingInline?: string;
|
|
140
|
+
fontSize?: string;
|
|
141
|
+
fontWeight?: string;
|
|
142
|
+
lineHeight?: string;
|
|
143
|
+
}
|
|
144
|
+
interface TagInput {
|
|
145
|
+
radius?: string;
|
|
146
|
+
paddingBlock?: string;
|
|
147
|
+
paddingInline?: string;
|
|
148
|
+
fontSize?: string;
|
|
149
|
+
fontWeight?: string;
|
|
150
|
+
lineHeight?: string;
|
|
151
|
+
letterSpacing?: string;
|
|
152
|
+
textTransform?: string;
|
|
153
|
+
minHeight?: string;
|
|
154
|
+
neutralBackground?: string;
|
|
155
|
+
neutralText?: string;
|
|
156
|
+
}
|
|
157
|
+
interface BadgeInput {
|
|
158
|
+
radius?: string;
|
|
159
|
+
paddingBlock?: string;
|
|
160
|
+
paddingInline?: string;
|
|
161
|
+
fontSize?: string;
|
|
162
|
+
fontWeight?: string;
|
|
163
|
+
lineHeight?: string;
|
|
164
|
+
letterSpacing?: string;
|
|
165
|
+
textTransform?: string;
|
|
166
|
+
minHeight?: string;
|
|
167
|
+
infoBackground?: string;
|
|
168
|
+
infoText?: string;
|
|
169
|
+
}
|
|
170
|
+
interface ChoiceInput {
|
|
171
|
+
labelFontSize?: string;
|
|
172
|
+
labelLineHeight?: string;
|
|
173
|
+
radioLineHeight?: string;
|
|
174
|
+
labelLetterSpacing?: string;
|
|
175
|
+
labelColor?: string;
|
|
176
|
+
}
|
|
177
|
+
interface SearchInput {
|
|
178
|
+
paddingBlock?: string;
|
|
179
|
+
paddingInline?: string;
|
|
180
|
+
fontSize?: string;
|
|
181
|
+
lineHeight?: string;
|
|
182
|
+
letterSpacing?: string;
|
|
183
|
+
}
|
|
184
|
+
interface ToggleInput {
|
|
185
|
+
trackRadius?: string;
|
|
186
|
+
trackPadding?: string;
|
|
187
|
+
trackWidth?: string;
|
|
188
|
+
trackHeight?: string;
|
|
189
|
+
thumbSize?: string;
|
|
190
|
+
trackColor?: string;
|
|
191
|
+
trackCheckedColor?: string;
|
|
192
|
+
thumbColor?: string;
|
|
193
|
+
fontSize?: string;
|
|
194
|
+
lineHeight?: string;
|
|
195
|
+
letterSpacing?: string;
|
|
196
|
+
textColor?: string;
|
|
57
197
|
}
|
|
58
198
|
interface FoundationInput {
|
|
59
199
|
radius: {
|
|
@@ -104,6 +244,21 @@ interface FoundationInput {
|
|
|
104
244
|
};
|
|
105
245
|
focus?: FocusInput;
|
|
106
246
|
field?: FieldInput;
|
|
247
|
+
card?: CardInput;
|
|
248
|
+
tabs?: TabsInput;
|
|
249
|
+
buttonSecondary?: ButtonSecondaryInput;
|
|
250
|
+
pagination?: PaginationInput;
|
|
251
|
+
breadcrumb?: BreadcrumbInput;
|
|
252
|
+
alert?: AlertInput;
|
|
253
|
+
accordion?: AccordionInput;
|
|
254
|
+
tag?: TagInput;
|
|
255
|
+
badge?: BadgeInput;
|
|
256
|
+
choice?: ChoiceInput;
|
|
257
|
+
search?: SearchInput;
|
|
258
|
+
toggle?: ToggleInput;
|
|
259
|
+
buttonDensity?: Partial<Record<"sm" | "md" | "lg", Partial<DensityAnatomy> & {
|
|
260
|
+
paddingInlineEnd?: string;
|
|
261
|
+
}>>;
|
|
107
262
|
}
|
|
108
263
|
/**
|
|
109
264
|
* Construit la couche `component` à partir d'un `semantic` et d'un `foundation`
|
|
@@ -118,6 +273,8 @@ export declare function createComponent(semantic: SemanticInput, foundation: Fou
|
|
|
118
273
|
readonly primaryBackground: string;
|
|
119
274
|
readonly primaryText: string;
|
|
120
275
|
readonly secondaryBackground: string;
|
|
276
|
+
readonly secondaryBorder: string;
|
|
277
|
+
readonly secondaryHoverBackground: string;
|
|
121
278
|
readonly secondaryText: string;
|
|
122
279
|
readonly anatomy: ComponentAnatomy;
|
|
123
280
|
};
|
|
@@ -137,6 +294,52 @@ export declare function createComponent(semantic: SemanticInput, foundation: Fou
|
|
|
137
294
|
readonly warningBorder: string;
|
|
138
295
|
readonly errorBorder: string;
|
|
139
296
|
readonly radius: string;
|
|
297
|
+
readonly borderTop: string;
|
|
298
|
+
readonly borderRight: string;
|
|
299
|
+
readonly borderBottom: string;
|
|
300
|
+
readonly accentWidth: string;
|
|
301
|
+
readonly filetWidth: string;
|
|
302
|
+
readonly paddingTop: string;
|
|
303
|
+
readonly paddingRight: string;
|
|
304
|
+
readonly paddingBottom: string;
|
|
305
|
+
readonly paddingLeft: string;
|
|
306
|
+
readonly fontSize: string;
|
|
307
|
+
readonly lineHeight: string;
|
|
308
|
+
readonly letterSpacing: string;
|
|
309
|
+
};
|
|
310
|
+
readonly accordion: {
|
|
311
|
+
readonly text: string;
|
|
312
|
+
readonly paddingBlock: string;
|
|
313
|
+
readonly paddingInline: string;
|
|
314
|
+
readonly fontSize: string;
|
|
315
|
+
readonly fontWeight: string;
|
|
316
|
+
readonly lineHeight: string;
|
|
317
|
+
};
|
|
318
|
+
readonly tag: {
|
|
319
|
+
readonly radius: string;
|
|
320
|
+
readonly paddingBlock: string;
|
|
321
|
+
readonly paddingInline: string;
|
|
322
|
+
readonly fontSize: string;
|
|
323
|
+
readonly fontWeight: string;
|
|
324
|
+
readonly lineHeight: string;
|
|
325
|
+
readonly letterSpacing: string;
|
|
326
|
+
readonly textTransform: string;
|
|
327
|
+
readonly minHeight: string;
|
|
328
|
+
readonly neutralBackground: string;
|
|
329
|
+
readonly neutralText: string;
|
|
330
|
+
};
|
|
331
|
+
readonly badge: {
|
|
332
|
+
readonly radius: string;
|
|
333
|
+
readonly paddingBlock: string;
|
|
334
|
+
readonly paddingInline: string;
|
|
335
|
+
readonly fontSize: string;
|
|
336
|
+
readonly fontWeight: string;
|
|
337
|
+
readonly lineHeight: string;
|
|
338
|
+
readonly letterSpacing: string;
|
|
339
|
+
readonly textTransform: string;
|
|
340
|
+
readonly minHeight: string;
|
|
341
|
+
readonly infoBackground: string;
|
|
342
|
+
readonly infoText: string;
|
|
140
343
|
};
|
|
141
344
|
readonly card: {
|
|
142
345
|
readonly background: string;
|
|
@@ -209,6 +412,27 @@ export declare function createComponent(semantic: SemanticInput, foundation: Fou
|
|
|
209
412
|
readonly switchTrack: string;
|
|
210
413
|
readonly switchTrackChecked: string;
|
|
211
414
|
readonly switchThumb: string;
|
|
415
|
+
readonly choiceLabelFontSize: string;
|
|
416
|
+
readonly choiceLabelLineHeight: string;
|
|
417
|
+
readonly choiceRadioLineHeight: string;
|
|
418
|
+
readonly choiceLabelLetterSpacing: string;
|
|
419
|
+
readonly choiceLabelColor: string;
|
|
420
|
+
readonly toggleTrackRadius: string;
|
|
421
|
+
readonly toggleTrackPadding: string;
|
|
422
|
+
readonly toggleTrackWidth: string;
|
|
423
|
+
readonly toggleTrackHeight: string;
|
|
424
|
+
readonly toggleThumbSize: string;
|
|
425
|
+
readonly toggleFontSize: string;
|
|
426
|
+
readonly toggleLineHeight: string;
|
|
427
|
+
readonly toggleLetterSpacing: string;
|
|
428
|
+
readonly toggleTextColor: string;
|
|
429
|
+
};
|
|
430
|
+
readonly search: {
|
|
431
|
+
readonly paddingBlock: string;
|
|
432
|
+
readonly paddingInline: string;
|
|
433
|
+
readonly fontSize: string;
|
|
434
|
+
readonly lineHeight: string;
|
|
435
|
+
readonly letterSpacing: string;
|
|
212
436
|
};
|
|
213
437
|
readonly overlay: {
|
|
214
438
|
readonly backdrop: string;
|
|
@@ -269,10 +493,20 @@ export declare function createComponent(semantic: SemanticInput, foundation: Fou
|
|
|
269
493
|
};
|
|
270
494
|
readonly tabs: {
|
|
271
495
|
readonly activeText: string;
|
|
496
|
+
readonly activeBackground: string;
|
|
497
|
+
readonly inactiveBackground: string;
|
|
498
|
+
readonly activeWeight: string;
|
|
272
499
|
readonly inactiveText: string;
|
|
273
500
|
readonly border: string;
|
|
274
501
|
readonly indicator: string;
|
|
275
502
|
readonly panelBackground: string;
|
|
503
|
+
readonly tabPaddingBlock: string;
|
|
504
|
+
readonly tabPaddingInline: string;
|
|
505
|
+
readonly tabFontSize: string;
|
|
506
|
+
readonly tabLineHeight: string;
|
|
507
|
+
readonly activeBorderTopWidth: string;
|
|
508
|
+
readonly activeBorderBottomWidth: string;
|
|
509
|
+
readonly activeShadow: string;
|
|
276
510
|
readonly anatomy: ComponentAnatomy;
|
|
277
511
|
};
|
|
278
512
|
readonly pagination: {
|
|
@@ -283,12 +517,26 @@ export declare function createComponent(semantic: SemanticInput, foundation: Fou
|
|
|
283
517
|
readonly activeText: string;
|
|
284
518
|
readonly disabledText: string;
|
|
285
519
|
readonly radius: string;
|
|
520
|
+
readonly borderWidth: string;
|
|
521
|
+
readonly activeBorder: string;
|
|
522
|
+
readonly activeBorderWidth: string;
|
|
523
|
+
readonly activeWeight: string;
|
|
524
|
+
readonly paddingBlock: string;
|
|
525
|
+
readonly paddingInline: string;
|
|
526
|
+
readonly minSize: string;
|
|
527
|
+
readonly fontSize: string;
|
|
528
|
+
readonly lineHeight: string;
|
|
529
|
+
readonly letterSpacing: string;
|
|
286
530
|
};
|
|
287
531
|
readonly breadcrumb: {
|
|
288
532
|
readonly text: string;
|
|
289
533
|
readonly currentText: string;
|
|
290
534
|
readonly separator: string;
|
|
291
535
|
readonly linkText: string;
|
|
536
|
+
readonly fontSize: string;
|
|
537
|
+
readonly lineHeight: string;
|
|
538
|
+
readonly letterSpacing: string;
|
|
539
|
+
readonly currentWeight: string;
|
|
292
540
|
};
|
|
293
541
|
readonly sideNav: {
|
|
294
542
|
readonly background: string;
|
|
@@ -322,6 +570,8 @@ export declare const component: {
|
|
|
322
570
|
readonly primaryBackground: string;
|
|
323
571
|
readonly primaryText: string;
|
|
324
572
|
readonly secondaryBackground: string;
|
|
573
|
+
readonly secondaryBorder: string;
|
|
574
|
+
readonly secondaryHoverBackground: string;
|
|
325
575
|
readonly secondaryText: string;
|
|
326
576
|
readonly anatomy: ComponentAnatomy;
|
|
327
577
|
};
|
|
@@ -341,6 +591,52 @@ export declare const component: {
|
|
|
341
591
|
readonly warningBorder: string;
|
|
342
592
|
readonly errorBorder: string;
|
|
343
593
|
readonly radius: string;
|
|
594
|
+
readonly borderTop: string;
|
|
595
|
+
readonly borderRight: string;
|
|
596
|
+
readonly borderBottom: string;
|
|
597
|
+
readonly accentWidth: string;
|
|
598
|
+
readonly filetWidth: string;
|
|
599
|
+
readonly paddingTop: string;
|
|
600
|
+
readonly paddingRight: string;
|
|
601
|
+
readonly paddingBottom: string;
|
|
602
|
+
readonly paddingLeft: string;
|
|
603
|
+
readonly fontSize: string;
|
|
604
|
+
readonly lineHeight: string;
|
|
605
|
+
readonly letterSpacing: string;
|
|
606
|
+
};
|
|
607
|
+
readonly accordion: {
|
|
608
|
+
readonly text: string;
|
|
609
|
+
readonly paddingBlock: string;
|
|
610
|
+
readonly paddingInline: string;
|
|
611
|
+
readonly fontSize: string;
|
|
612
|
+
readonly fontWeight: string;
|
|
613
|
+
readonly lineHeight: string;
|
|
614
|
+
};
|
|
615
|
+
readonly tag: {
|
|
616
|
+
readonly radius: string;
|
|
617
|
+
readonly paddingBlock: string;
|
|
618
|
+
readonly paddingInline: string;
|
|
619
|
+
readonly fontSize: string;
|
|
620
|
+
readonly fontWeight: string;
|
|
621
|
+
readonly lineHeight: string;
|
|
622
|
+
readonly letterSpacing: string;
|
|
623
|
+
readonly textTransform: string;
|
|
624
|
+
readonly minHeight: string;
|
|
625
|
+
readonly neutralBackground: string;
|
|
626
|
+
readonly neutralText: string;
|
|
627
|
+
};
|
|
628
|
+
readonly badge: {
|
|
629
|
+
readonly radius: string;
|
|
630
|
+
readonly paddingBlock: string;
|
|
631
|
+
readonly paddingInline: string;
|
|
632
|
+
readonly fontSize: string;
|
|
633
|
+
readonly fontWeight: string;
|
|
634
|
+
readonly lineHeight: string;
|
|
635
|
+
readonly letterSpacing: string;
|
|
636
|
+
readonly textTransform: string;
|
|
637
|
+
readonly minHeight: string;
|
|
638
|
+
readonly infoBackground: string;
|
|
639
|
+
readonly infoText: string;
|
|
344
640
|
};
|
|
345
641
|
readonly card: {
|
|
346
642
|
readonly background: string;
|
|
@@ -413,6 +709,27 @@ export declare const component: {
|
|
|
413
709
|
readonly switchTrack: string;
|
|
414
710
|
readonly switchTrackChecked: string;
|
|
415
711
|
readonly switchThumb: string;
|
|
712
|
+
readonly choiceLabelFontSize: string;
|
|
713
|
+
readonly choiceLabelLineHeight: string;
|
|
714
|
+
readonly choiceRadioLineHeight: string;
|
|
715
|
+
readonly choiceLabelLetterSpacing: string;
|
|
716
|
+
readonly choiceLabelColor: string;
|
|
717
|
+
readonly toggleTrackRadius: string;
|
|
718
|
+
readonly toggleTrackPadding: string;
|
|
719
|
+
readonly toggleTrackWidth: string;
|
|
720
|
+
readonly toggleTrackHeight: string;
|
|
721
|
+
readonly toggleThumbSize: string;
|
|
722
|
+
readonly toggleFontSize: string;
|
|
723
|
+
readonly toggleLineHeight: string;
|
|
724
|
+
readonly toggleLetterSpacing: string;
|
|
725
|
+
readonly toggleTextColor: string;
|
|
726
|
+
};
|
|
727
|
+
readonly search: {
|
|
728
|
+
readonly paddingBlock: string;
|
|
729
|
+
readonly paddingInline: string;
|
|
730
|
+
readonly fontSize: string;
|
|
731
|
+
readonly lineHeight: string;
|
|
732
|
+
readonly letterSpacing: string;
|
|
416
733
|
};
|
|
417
734
|
readonly overlay: {
|
|
418
735
|
readonly backdrop: string;
|
|
@@ -473,10 +790,20 @@ export declare const component: {
|
|
|
473
790
|
};
|
|
474
791
|
readonly tabs: {
|
|
475
792
|
readonly activeText: string;
|
|
793
|
+
readonly activeBackground: string;
|
|
794
|
+
readonly inactiveBackground: string;
|
|
795
|
+
readonly activeWeight: string;
|
|
476
796
|
readonly inactiveText: string;
|
|
477
797
|
readonly border: string;
|
|
478
798
|
readonly indicator: string;
|
|
479
799
|
readonly panelBackground: string;
|
|
800
|
+
readonly tabPaddingBlock: string;
|
|
801
|
+
readonly tabPaddingInline: string;
|
|
802
|
+
readonly tabFontSize: string;
|
|
803
|
+
readonly tabLineHeight: string;
|
|
804
|
+
readonly activeBorderTopWidth: string;
|
|
805
|
+
readonly activeBorderBottomWidth: string;
|
|
806
|
+
readonly activeShadow: string;
|
|
480
807
|
readonly anatomy: ComponentAnatomy;
|
|
481
808
|
};
|
|
482
809
|
readonly pagination: {
|
|
@@ -487,12 +814,26 @@ export declare const component: {
|
|
|
487
814
|
readonly activeText: string;
|
|
488
815
|
readonly disabledText: string;
|
|
489
816
|
readonly radius: string;
|
|
817
|
+
readonly borderWidth: string;
|
|
818
|
+
readonly activeBorder: string;
|
|
819
|
+
readonly activeBorderWidth: string;
|
|
820
|
+
readonly activeWeight: string;
|
|
821
|
+
readonly paddingBlock: string;
|
|
822
|
+
readonly paddingInline: string;
|
|
823
|
+
readonly minSize: string;
|
|
824
|
+
readonly fontSize: string;
|
|
825
|
+
readonly lineHeight: string;
|
|
826
|
+
readonly letterSpacing: string;
|
|
490
827
|
};
|
|
491
828
|
readonly breadcrumb: {
|
|
492
829
|
readonly text: string;
|
|
493
830
|
readonly currentText: string;
|
|
494
831
|
readonly separator: string;
|
|
495
832
|
readonly linkText: string;
|
|
833
|
+
readonly fontSize: string;
|
|
834
|
+
readonly lineHeight: string;
|
|
835
|
+
readonly letterSpacing: string;
|
|
836
|
+
readonly currentWeight: string;
|
|
496
837
|
};
|
|
497
838
|
readonly sideNav: {
|
|
498
839
|
readonly background: string;
|
package/dist/component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../src/component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,cAAc,EAAgB,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAKtG,UAAU,aAAa;IACrB,OAAO,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/F,IAAI,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IAC3F,MAAM,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC3I,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,CAAC;IAChE,QAAQ,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAC5E,IAAI,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC;CACtF;AAKD,KAAK,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,IAAI,EAAE,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;AACjF,KAAK,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,MAAM,EAAE,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;AAEhH,UAAU,UAAU;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAMD,UAAU,UAAU;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../src/component.ts"],"names":[],"mappings":"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"}
|