@fluentui/web-components 3.0.0-beta.70 → 3.0.0-beta.71
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 +11 -2
- package/dist/dts/avatar/avatar.d.ts +1 -1
- package/dist/dts/menu-item/menu-item.styles.d.ts +0 -5
- package/dist/dts/styles/states/index.d.ts +439 -95
- package/dist/dts/utils/element-internals.d.ts +15 -0
- package/dist/esm/avatar/avatar.styles.js +32 -31
- package/dist/esm/avatar/avatar.styles.js.map +1 -1
- package/dist/esm/checkbox/checkbox.styles.js +1 -6
- package/dist/esm/checkbox/checkbox.styles.js.map +1 -1
- package/dist/esm/counter-badge/counter-badge.styles.js +1 -6
- package/dist/esm/counter-badge/counter-badge.styles.js.map +1 -1
- package/dist/esm/field/field.styles.js +1 -66
- package/dist/esm/field/field.styles.js.map +1 -1
- package/dist/esm/image/image.styles.js +8 -8
- package/dist/esm/image/image.styles.js.map +1 -1
- package/dist/esm/label/label.styles.js +4 -5
- package/dist/esm/label/label.styles.js.map +1 -1
- package/dist/esm/link/link.styles.js +3 -3
- package/dist/esm/link/link.styles.js.map +1 -1
- package/dist/esm/menu-item/menu-item.styles.js +1 -6
- package/dist/esm/menu-item/menu-item.styles.js.map +1 -1
- package/dist/esm/styles/states/index.js +437 -97
- package/dist/esm/styles/states/index.js.map +1 -1
- package/dist/esm/text/text.styles.js +20 -39
- package/dist/esm/text/text.styles.js.map +1 -1
- package/dist/esm/utils/element-internals.js +20 -0
- package/dist/esm/utils/element-internals.js.map +1 -1
- package/dist/web-components.d.ts +1 -1
- package/dist/web-components.js +130 -78
- package/dist/web-components.min.js +274 -274
- package/package.json +1 -1
|
@@ -1,256 +1,600 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Selector for the `
|
|
2
|
+
* Selector for the `align-end` state.
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const alignEndState: ":state(align-end)" | "[state--align-end]";
|
|
6
6
|
/**
|
|
7
|
-
* Selector for the `
|
|
7
|
+
* Selector for the `align-start` state.
|
|
8
8
|
* @public
|
|
9
9
|
*/
|
|
10
|
-
export declare const
|
|
10
|
+
export declare const alignStartState: ":state(align-start)" | "[state--align-start]";
|
|
11
11
|
/**
|
|
12
|
-
* Selector for the `
|
|
12
|
+
* Selector for the `anchor` state.
|
|
13
13
|
* @public
|
|
14
14
|
*/
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const anchorState: ":state(anchor)" | "[state--anchor]";
|
|
16
16
|
/**
|
|
17
|
-
* Selector for the `
|
|
17
|
+
* Selector for the `auto-resize` state.
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
export declare const
|
|
20
|
+
export declare const autoResizeState: ":state(auto-resize)" | "[state--auto-resize]";
|
|
21
21
|
/**
|
|
22
|
-
* Selector for the `
|
|
22
|
+
* Selector for the `bad-input` state.
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
export declare const
|
|
25
|
+
export declare const badInputState: ":state(bad-input)" | "[state--bad-input]";
|
|
26
26
|
/**
|
|
27
|
-
* Selector for the `
|
|
27
|
+
* Selector for the `beige` state.
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
export declare const
|
|
30
|
+
export declare const beigeState: ":state(beige)" | "[state--beige]";
|
|
31
31
|
/**
|
|
32
|
-
* Selector for the `
|
|
32
|
+
* Selector for the `block` state.
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
export declare const
|
|
35
|
+
export declare const blockState: ":state(block)" | "[state--block]";
|
|
36
36
|
/**
|
|
37
|
-
* Selector for the `
|
|
37
|
+
* Selector for the `blue` state.
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
export declare const
|
|
40
|
+
export declare const blueState: ":state(blue)" | "[state--blue]";
|
|
41
41
|
/**
|
|
42
|
-
* Selector for the `
|
|
42
|
+
* Selector for the `bold` state.
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
export declare const
|
|
45
|
+
export declare const boldState: ":state(bold)" | "[state--bold]";
|
|
46
46
|
/**
|
|
47
|
-
* Selector for the `
|
|
47
|
+
* Selector for the `bordered` state.
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
export declare const
|
|
50
|
+
export declare const borderedState: ":state(bordered)" | "[state--bordered]";
|
|
51
51
|
/**
|
|
52
|
-
* Selector for the `
|
|
52
|
+
* Selector for the `brand` state.
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
export declare const
|
|
55
|
+
export declare const brandState: ":state(brand)" | "[state--brand]";
|
|
56
56
|
/**
|
|
57
|
-
* Selector for the `
|
|
57
|
+
* Selector for the `brass` state.
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
export declare const
|
|
60
|
+
export declare const brassState: ":state(brass)" | "[state--brass]";
|
|
61
61
|
/**
|
|
62
|
-
* Selector for the `
|
|
62
|
+
* Selector for the `brown` state.
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
|
-
export declare const
|
|
65
|
+
export declare const brownState: ":state(brown)" | "[state--brown]";
|
|
66
|
+
/**
|
|
67
|
+
* Selector for the `center` state.
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export declare const centerState: ":state(center)" | "[state--center]";
|
|
71
|
+
/**
|
|
72
|
+
* Selector for the `checked` state.
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare const checkedState: ":state(checked)" | "[state--checked]";
|
|
66
76
|
/**
|
|
67
77
|
* Selector for the `circular` state.
|
|
68
78
|
* @public
|
|
69
79
|
*/
|
|
70
|
-
export declare const circularState:
|
|
80
|
+
export declare const circularState: ":state(circular)" | "[state--circular]";
|
|
71
81
|
/**
|
|
72
|
-
* Selector for the `
|
|
82
|
+
* Selector for the `cornflower` state.
|
|
73
83
|
* @public
|
|
74
84
|
*/
|
|
75
|
-
export declare const
|
|
85
|
+
export declare const cornflowerState: ":state(cornflower)" | "[state--cornflower]";
|
|
76
86
|
/**
|
|
77
|
-
* Selector for the `
|
|
87
|
+
* Selector for the `cranberry` state.
|
|
78
88
|
* @public
|
|
79
89
|
*/
|
|
80
|
-
export declare const
|
|
90
|
+
export declare const cranberryState: ":state(cranberry)" | "[state--cranberry]";
|
|
81
91
|
/**
|
|
82
|
-
* Selector for the `
|
|
92
|
+
* Selector for the `custom-error` state.
|
|
83
93
|
* @public
|
|
84
94
|
*/
|
|
85
|
-
export declare const
|
|
95
|
+
export declare const customErrorState: ":state(custom-error)" | "[state--custom-error]";
|
|
86
96
|
/**
|
|
87
|
-
* Selector for the `
|
|
97
|
+
* Selector for the `danger` state.
|
|
88
98
|
* @public
|
|
89
99
|
*/
|
|
90
|
-
export declare const
|
|
100
|
+
export declare const dangerState: ":state(danger)" | "[state--danger]";
|
|
91
101
|
/**
|
|
92
|
-
* Selector for the `
|
|
102
|
+
* Selector for the `dark-green` state.
|
|
93
103
|
* @public
|
|
94
104
|
*/
|
|
95
|
-
export declare const
|
|
105
|
+
export declare const darkGreenState: ":state(dark-green)" | "[state--dark-green]";
|
|
96
106
|
/**
|
|
97
|
-
* Selector for the `
|
|
107
|
+
* Selector for the `dark-red` state.
|
|
98
108
|
* @public
|
|
99
109
|
*/
|
|
100
|
-
export declare const
|
|
110
|
+
export declare const darkRedState: ":state(dark-red)" | "[state--dark-red]";
|
|
101
111
|
/**
|
|
102
|
-
* Selector for the `
|
|
112
|
+
* Selector for the `disabled` state.
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare const disabledState: ":state(disabled)" | "[state--disabled]";
|
|
116
|
+
/**
|
|
117
|
+
* Selector for the `display-shadow` state.
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare const displayShadowState: ":state(display-shadow)" | "[state--display-shadow]";
|
|
121
|
+
/**
|
|
122
|
+
* Selector for the `dot` state.
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export declare const dotState: ":state(dot)" | "[state--dot]";
|
|
126
|
+
/**
|
|
127
|
+
* Selector for the `end` state.
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export declare const endState: ":state(end)" | "[state--end]";
|
|
131
|
+
/**
|
|
132
|
+
* Selector for the `error` state.
|
|
103
133
|
* @public
|
|
104
134
|
*/
|
|
105
|
-
export declare const
|
|
135
|
+
export declare const errorState: ":state(error)" | "[state--error]";
|
|
136
|
+
/**
|
|
137
|
+
* Selector for the `expanded` state.
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
export declare const expandedState: ":state(expanded)" | "[state--expanded]";
|
|
106
141
|
/**
|
|
107
142
|
* Selector for the `extra-large` state.
|
|
108
143
|
* @public
|
|
109
144
|
*/
|
|
110
|
-
export declare const extraLargeState:
|
|
145
|
+
export declare const extraLargeState: ":state(extra-large)" | "[state--extra-large]";
|
|
111
146
|
/**
|
|
112
|
-
* Selector for the `
|
|
147
|
+
* Selector for the `extra-small` state.
|
|
113
148
|
* @public
|
|
114
149
|
*/
|
|
115
|
-
export declare const
|
|
150
|
+
export declare const extraSmallState: ":state(extra-small)" | "[state--extra-small]";
|
|
116
151
|
/**
|
|
117
|
-
* Selector for the `
|
|
152
|
+
* Selector for the `filled-darker` state.
|
|
118
153
|
* @public
|
|
119
154
|
*/
|
|
120
|
-
export declare const
|
|
155
|
+
export declare const filledDarkerState: ":state(filled-darker)" | "[state--filled-darker]";
|
|
121
156
|
/**
|
|
122
|
-
* Selector for the `
|
|
157
|
+
* Selector for the `filled-lighter` state.
|
|
123
158
|
* @public
|
|
124
159
|
*/
|
|
125
|
-
export declare const
|
|
160
|
+
export declare const filledLighterState: ":state(filled-lighter)" | "[state--filled-lighter]";
|
|
126
161
|
/**
|
|
127
|
-
* Selector for the `
|
|
162
|
+
* Selector for the `fit-center` state.
|
|
128
163
|
* @public
|
|
129
164
|
*/
|
|
130
|
-
export declare const
|
|
165
|
+
export declare const fitCenterState: ":state(fit-center)" | "[state--fit-center]";
|
|
131
166
|
/**
|
|
132
|
-
* Selector for the `
|
|
167
|
+
* Selector for the `fit-contain` state.
|
|
133
168
|
* @public
|
|
134
169
|
*/
|
|
135
|
-
export declare const
|
|
170
|
+
export declare const fitContainState: ":state(fit-contain)" | "[state--fit-contain]";
|
|
136
171
|
/**
|
|
137
|
-
* Selector for the `
|
|
172
|
+
* Selector for the `fit-cover` state.
|
|
138
173
|
* @public
|
|
139
174
|
*/
|
|
140
|
-
export declare const
|
|
175
|
+
export declare const fitCoverState: ":state(fit-cover)" | "[state--fit-cover]";
|
|
141
176
|
/**
|
|
142
|
-
* Selector for the `
|
|
177
|
+
* Selector for the `fit-none` state.
|
|
143
178
|
* @public
|
|
144
179
|
*/
|
|
145
|
-
export declare const
|
|
180
|
+
export declare const fitNoneState: ":state(fit-none)" | "[state--fit-none]";
|
|
146
181
|
/**
|
|
147
|
-
* Selector for the `
|
|
182
|
+
* Selector for the `focus-visible` state.
|
|
148
183
|
* @public
|
|
149
184
|
*/
|
|
150
|
-
export declare const
|
|
185
|
+
export declare const focusVisibleState: ":state(focus-visible)" | "[state--focus-visible]";
|
|
151
186
|
/**
|
|
152
|
-
* Selector for the `
|
|
187
|
+
* Selector for the `forest` state.
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export declare const forestState: ":state(forest)" | "[state--forest]";
|
|
191
|
+
/**
|
|
192
|
+
* Selector for the `ghost` state.
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
export declare const ghostState: ":state(ghost)" | "[state--ghost]";
|
|
196
|
+
/**
|
|
197
|
+
* Selector for the `gold` state.
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
export declare const goldState: ":state(gold)" | "[state--gold]";
|
|
201
|
+
/**
|
|
202
|
+
* Selector for the `grape` state.
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
export declare const grapeState: ":state(grape)" | "[state--grape]";
|
|
206
|
+
/**
|
|
207
|
+
* Selector for the `has-message` state.
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export declare const hasMessageState: ":state(has-message)" | "[state--has-message]";
|
|
211
|
+
/**
|
|
212
|
+
* Selector for the `huge` state.
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
export declare const hugeState: ":state(huge)" | "[state--huge]";
|
|
216
|
+
/**
|
|
217
|
+
* Selector for the `icon` state.
|
|
153
218
|
* @public
|
|
154
219
|
*/
|
|
155
|
-
export declare const
|
|
220
|
+
export declare const iconOnlyState: ":state(icon)" | "[state--icon]";
|
|
156
221
|
/**
|
|
157
222
|
* Selector for the `important` state.
|
|
158
223
|
* @public
|
|
159
224
|
*/
|
|
160
|
-
export declare const importantState:
|
|
225
|
+
export declare const importantState: ":state(important)" | "[state--important]";
|
|
226
|
+
/**
|
|
227
|
+
* Selector for the `indeterminate` state.
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
export declare const indeterminateState: ":state(indeterminate)" | "[state--indeterminate]";
|
|
161
231
|
/**
|
|
162
232
|
* Selector for the `informative` state.
|
|
163
233
|
* @public
|
|
164
234
|
*/
|
|
165
|
-
export declare const informativeState:
|
|
235
|
+
export declare const informativeState: ":state(informative)" | "[state--informative]";
|
|
236
|
+
/**
|
|
237
|
+
* Selector for the `inline` state.
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
export declare const inlineState: ":state(inline)" | "[state--inline]";
|
|
241
|
+
/**
|
|
242
|
+
* Selector for the `inset` state.
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export declare const insetState: ":state(inset)" | "[state--inset]";
|
|
246
|
+
/**
|
|
247
|
+
* Selector for the `inverted` state.
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export declare const invertedState: ":state(inverted)" | "[state--inverted]";
|
|
251
|
+
/**
|
|
252
|
+
* Selector for the `italic` state.
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
255
|
+
export declare const italicState: ":state(italic)" | "[state--italic]";
|
|
256
|
+
/**
|
|
257
|
+
* Selector for the `justify` state.
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
export declare const justifyState: ":state(justify)" | "[state--justify]";
|
|
261
|
+
/**
|
|
262
|
+
* Selector for the `large` state.
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
265
|
+
export declare const largeState: ":state(large)" | "[state--large]";
|
|
266
|
+
/**
|
|
267
|
+
* Selector for the `lavender` state.
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export declare const lavenderState: ":state(lavender)" | "[state--lavender]";
|
|
271
|
+
/**
|
|
272
|
+
* Selector for the `light-teal` state.
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
export declare const lightTealState: ":state(light-teal)" | "[state--light-teal]";
|
|
276
|
+
/**
|
|
277
|
+
* Selector for the `lilac` state.
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
export declare const lilacState: ":state(lilac)" | "[state--lilac]";
|
|
281
|
+
/**
|
|
282
|
+
* Selector for the `magenta` state.
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
285
|
+
export declare const magentaState: ":state(magenta)" | "[state--magenta]";
|
|
166
286
|
/**
|
|
167
287
|
* Selector for the `marigold` state.
|
|
168
288
|
* @public
|
|
169
289
|
*/
|
|
170
|
-
export declare const marigoldState:
|
|
290
|
+
export declare const marigoldState: ":state(marigold)" | "[state--marigold]";
|
|
291
|
+
/**
|
|
292
|
+
* Selector for the `medium` state.
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export declare const mediumState: ":state(medium)" | "[state--medium]";
|
|
296
|
+
/**
|
|
297
|
+
* Selector for the `mink` state.
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
export declare const minkState: ":state(mink)" | "[state--mink]";
|
|
301
|
+
/**
|
|
302
|
+
* Selector for the `monospace` state.
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
export declare const monospaceState: ":state(monospace)" | "[state--monospace]";
|
|
306
|
+
/**
|
|
307
|
+
* Selector for the `multiline` state.
|
|
308
|
+
* @public
|
|
309
|
+
*/
|
|
310
|
+
export declare const multiLineState: ":state(multiline)" | "[state--multiline]";
|
|
311
|
+
/**
|
|
312
|
+
* Selector for the `navy` state.
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
export declare const navyState: ":state(navy)" | "[state--navy]";
|
|
171
316
|
/**
|
|
172
317
|
* Selector for the `neutral` state.
|
|
173
318
|
* @public
|
|
174
319
|
*/
|
|
175
|
-
export declare const neutralState:
|
|
320
|
+
export declare const neutralState: ":state(neutral)" | "[state--neutral]";
|
|
176
321
|
/**
|
|
177
|
-
* Selector for the `
|
|
322
|
+
* Selector for the `nowrap` state.
|
|
178
323
|
* @public
|
|
179
324
|
*/
|
|
180
|
-
export declare const
|
|
325
|
+
export declare const nowrapState: ":state(nowrap)" | "[state--nowrap]";
|
|
181
326
|
/**
|
|
182
|
-
* Selector for the `
|
|
327
|
+
* Selector for the `numeric` state.
|
|
183
328
|
* @public
|
|
184
329
|
*/
|
|
185
|
-
export declare const
|
|
330
|
+
export declare const numericState: ":state(numeric)" | "[state--numeric]";
|
|
186
331
|
/**
|
|
187
|
-
* Selector for the `
|
|
332
|
+
* Selector for the `outline` state.
|
|
188
333
|
* @public
|
|
189
334
|
*/
|
|
190
|
-
export declare const
|
|
335
|
+
export declare const outlineState: ":state(outline)" | "[state--outline]";
|
|
191
336
|
/**
|
|
192
|
-
* Selector for the `
|
|
337
|
+
* Selector for the `pattern-mismatch` state.
|
|
193
338
|
* @public
|
|
194
339
|
*/
|
|
195
|
-
export declare const
|
|
340
|
+
export declare const patternMismatchState: ":state(pattern-mismatch)" | "[state--pattern-mismatch]";
|
|
196
341
|
/**
|
|
197
|
-
* Selector for the `
|
|
342
|
+
* Selector for the `peach` state.
|
|
198
343
|
* @public
|
|
199
344
|
*/
|
|
200
|
-
export declare const
|
|
345
|
+
export declare const peachState: ":state(peach)" | "[state--peach]";
|
|
201
346
|
/**
|
|
202
|
-
* Selector for the `
|
|
347
|
+
* Selector for the `pink` state.
|
|
203
348
|
* @public
|
|
204
349
|
*/
|
|
205
|
-
export declare const
|
|
350
|
+
export declare const pinkState: ":state(pink)" | "[state--pink]";
|
|
206
351
|
/**
|
|
207
|
-
* Selector for the `
|
|
352
|
+
* Selector for the `platinum` state.
|
|
208
353
|
* @public
|
|
209
354
|
*/
|
|
210
|
-
export declare const
|
|
355
|
+
export declare const platinumState: ":state(platinum)" | "[state--platinum]";
|
|
211
356
|
/**
|
|
212
|
-
* Selector for the `
|
|
357
|
+
* Selector for the `plum` state.
|
|
213
358
|
* @public
|
|
214
359
|
*/
|
|
215
|
-
export declare const
|
|
360
|
+
export declare const plumState: ":state(plum)" | "[state--plum]";
|
|
216
361
|
/**
|
|
217
|
-
* Selector for the `
|
|
362
|
+
* Selector for the `pressed` state.
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
export declare const pressedState: ":state(pressed)" | "[state--pressed]";
|
|
366
|
+
/**
|
|
367
|
+
* Selector for the `primary` state.
|
|
368
|
+
* @public
|
|
369
|
+
*/
|
|
370
|
+
export declare const primaryState: ":state(primary)" | "[state--primary]";
|
|
371
|
+
/**
|
|
372
|
+
* Selector for the `pumpkin` state.
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
export declare const pumpkinState: ":state(pumpkin)" | "[state--pumpkin]";
|
|
376
|
+
/**
|
|
377
|
+
* Selector for the `purple` state.
|
|
378
|
+
* @public
|
|
379
|
+
*/
|
|
380
|
+
export declare const purpleState: ":state(purple)" | "[state--purple]";
|
|
381
|
+
/**
|
|
382
|
+
* Selector for the `range-overflow` state.
|
|
218
383
|
* @public
|
|
219
384
|
*/
|
|
220
|
-
export declare const
|
|
385
|
+
export declare const rangeOverflowState: ":state(range-overflow)" | "[state--range-overflow]";
|
|
221
386
|
/**
|
|
222
|
-
* Selector for the `
|
|
387
|
+
* Selector for the `range-underflow` state.
|
|
223
388
|
* @public
|
|
224
389
|
*/
|
|
225
|
-
export declare const
|
|
390
|
+
export declare const rangeUnderflowState: ":state(range-underflow)" | "[state--range-underflow]";
|
|
391
|
+
/**
|
|
392
|
+
* Selector for the `red` state.
|
|
393
|
+
* @public
|
|
394
|
+
*/
|
|
395
|
+
export declare const redState: ":state(red)" | "[state--red]";
|
|
396
|
+
/**
|
|
397
|
+
* Selector for the `resize-both` state.
|
|
398
|
+
* @public
|
|
399
|
+
*/
|
|
400
|
+
export declare const resizeBothState: ":state(resize-both)" | "[state--resize-both]";
|
|
226
401
|
/**
|
|
227
402
|
* Selector for the `resize-horizontal` state.
|
|
228
403
|
* @public
|
|
229
404
|
*/
|
|
230
|
-
export declare const resizeHorizontalState:
|
|
405
|
+
export declare const resizeHorizontalState: ":state(resize-horizontal)" | "[state--resize-horizontal]";
|
|
231
406
|
/**
|
|
232
407
|
* Selector for the `resize-vertical` state.
|
|
233
408
|
* @public
|
|
234
409
|
*/
|
|
235
|
-
export declare const resizeVerticalState:
|
|
410
|
+
export declare const resizeVerticalState: ":state(resize-vertical)" | "[state--resize-vertical]";
|
|
236
411
|
/**
|
|
237
|
-
* Selector for the `
|
|
412
|
+
* Selector for the `rounded` state.
|
|
238
413
|
* @public
|
|
239
414
|
*/
|
|
240
|
-
export declare const
|
|
415
|
+
export declare const roundedState: ":state(rounded)" | "[state--rounded]";
|
|
241
416
|
/**
|
|
242
|
-
* Selector for the `
|
|
417
|
+
* Selector for the `royal-blue` state.
|
|
243
418
|
* @public
|
|
244
419
|
*/
|
|
245
|
-
export declare const
|
|
420
|
+
export declare const royalBlueState: ":state(royal-blue)" | "[state--royal-blue]";
|
|
246
421
|
/**
|
|
247
|
-
* Selector for the `
|
|
422
|
+
* Selector for the `seafoam` state.
|
|
423
|
+
* @public
|
|
424
|
+
*/
|
|
425
|
+
export declare const seafoamState: ":state(seafoam)" | "[state--seafoam]";
|
|
426
|
+
/**
|
|
427
|
+
* Selector for the `semibold` state.
|
|
428
|
+
* @public
|
|
429
|
+
*/
|
|
430
|
+
export declare const semiboldState: ":state(semibold)" | "[state--semibold]";
|
|
431
|
+
/**
|
|
432
|
+
* Selector for the `severe` state.
|
|
433
|
+
* @public
|
|
434
|
+
*/
|
|
435
|
+
export declare const severeState: ":state(severe)" | "[state--severe]";
|
|
436
|
+
/**
|
|
437
|
+
* Selector for the `shadow` state.
|
|
438
|
+
* @public
|
|
439
|
+
*/
|
|
440
|
+
export declare const shadowState: ":state(shadow)" | "[state--shadow]";
|
|
441
|
+
/**
|
|
442
|
+
* Selector for the `size1000` state.
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
export declare const size1000State: ":state(size-1000)" | "[state--size-1000]";
|
|
446
|
+
/**
|
|
447
|
+
* Selector for the `size100` state.
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
export declare const size100State: ":state(size-100)" | "[state--size-100]";
|
|
451
|
+
/**
|
|
452
|
+
* Selector for the `size200` state.
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
export declare const size200State: ":state(size-200)" | "[state--size-200]";
|
|
456
|
+
/**
|
|
457
|
+
* Selector for the `size400` state.
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
export declare const size400State: ":state(size-400)" | "[state--size-400]";
|
|
461
|
+
/**
|
|
462
|
+
* Selector for the `size500` state.
|
|
463
|
+
* @public
|
|
464
|
+
*/
|
|
465
|
+
export declare const size500State: ":state(size-500)" | "[state--size-500]";
|
|
466
|
+
/**
|
|
467
|
+
* Selector for the `size600` state.
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
export declare const size600State: ":state(size-600)" | "[state--size-600]";
|
|
471
|
+
/**
|
|
472
|
+
* Selector for the `size700` state.
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
475
|
+
export declare const size700State: ":state(size-700)" | "[state--size-700]";
|
|
476
|
+
/**
|
|
477
|
+
* Selector for the `size800` state.
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
export declare const size800State: ":state(size-800)" | "[state--size-800]";
|
|
481
|
+
/**
|
|
482
|
+
* Selector for the `size900` state.
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
485
|
+
export declare const size900State: ":state(size-900)" | "[state--size-900]";
|
|
486
|
+
/**
|
|
487
|
+
* Selector for the `small` state.
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
export declare const smallState: ":state(small)" | "[state--small]";
|
|
491
|
+
/**
|
|
492
|
+
* Selector for the `square` state.
|
|
248
493
|
* @public
|
|
249
494
|
*/
|
|
250
|
-
export declare const
|
|
251
|
-
export declare const userInvalidState: import("@microsoft/fast-element").CSSDirective;
|
|
495
|
+
export declare const squareState: ":state(square)" | "[state--square]";
|
|
252
496
|
/**
|
|
253
|
-
* Selector for the `
|
|
497
|
+
* Selector for the `steel` state.
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
500
|
+
export declare const steelState: ":state(steel)" | "[state--steel]";
|
|
501
|
+
/**
|
|
502
|
+
* Selector for the `step-mismatch` state.
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
export declare const stepMismatchState: ":state(step-mismatch)" | "[state--step-mismatch]";
|
|
506
|
+
/**
|
|
507
|
+
* Selector for the `strikethrough` state.
|
|
508
|
+
* @public
|
|
509
|
+
*/
|
|
510
|
+
export declare const strikethroughState: ":state(strikethrough)" | "[state--strikethrough]";
|
|
511
|
+
/**
|
|
512
|
+
* Selector for the `strong` state.
|
|
513
|
+
* @public
|
|
514
|
+
*/
|
|
515
|
+
export declare const strongState: ":state(strong)" | "[state--strong]";
|
|
516
|
+
/**
|
|
517
|
+
* Selector for the `submenu` state.
|
|
518
|
+
* @public
|
|
519
|
+
*/
|
|
520
|
+
export declare const submenuState: ":state(submenu)" | "[state--submenu]";
|
|
521
|
+
/**
|
|
522
|
+
* Selector for the `subtle` state.
|
|
523
|
+
* @public
|
|
524
|
+
*/
|
|
525
|
+
export declare const subtleState: ":state(subtle)" | "[state--subtle]";
|
|
526
|
+
/**
|
|
527
|
+
* Selector for the `success` state.
|
|
528
|
+
* @public
|
|
529
|
+
*/
|
|
530
|
+
export declare const successState: ":state(success)" | "[state--success]";
|
|
531
|
+
/**
|
|
532
|
+
* Selector for the `teal` state.
|
|
533
|
+
* @public
|
|
534
|
+
*/
|
|
535
|
+
export declare const tealState: ":state(teal)" | "[state--teal]";
|
|
536
|
+
/**
|
|
537
|
+
* Selector for the `tint` state.
|
|
538
|
+
* @public
|
|
539
|
+
*/
|
|
540
|
+
export declare const tintState: ":state(tint)" | "[state--tint]";
|
|
541
|
+
/**
|
|
542
|
+
* Selector for the `tiny` state.
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
export declare const tinyState: ":state(tiny)" | "[state--tiny]";
|
|
546
|
+
/**
|
|
547
|
+
* Selector for the `too-long` state.
|
|
548
|
+
* @public
|
|
549
|
+
*/
|
|
550
|
+
export declare const tooLongState: ":state(too-long)" | "[state--too-long]";
|
|
551
|
+
/**
|
|
552
|
+
* Selector for the `too-short` state.
|
|
553
|
+
* @public
|
|
554
|
+
*/
|
|
555
|
+
export declare const tooShortState: ":state(too-short)" | "[state--too-short]";
|
|
556
|
+
/**
|
|
557
|
+
* Selector for the `transparent` state.
|
|
558
|
+
* @public
|
|
559
|
+
*/
|
|
560
|
+
export declare const transparentState: ":state(transparent)" | "[state--transparent]";
|
|
561
|
+
/**
|
|
562
|
+
* Selector for the `truncate` state.
|
|
563
|
+
* @public
|
|
564
|
+
*/
|
|
565
|
+
export declare const truncateState: ":state(truncate)" | "[state--truncate]";
|
|
566
|
+
/**
|
|
567
|
+
* Selector for the `type-mismatch` state.
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
570
|
+
export declare const typeMismatchState: ":state(type-mismatch)" | "[state--type-mismatch]";
|
|
571
|
+
/**
|
|
572
|
+
* Selector for the `underline` state.
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
575
|
+
export declare const underlineState: ":state(underline)" | "[state--underline]";
|
|
576
|
+
/**
|
|
577
|
+
* Selector for the `user-invalid` state.
|
|
578
|
+
* @public
|
|
579
|
+
*/
|
|
580
|
+
export declare const userInvalidState: ":state(user-invalid)" | "[state--user-invalid]";
|
|
581
|
+
/**
|
|
582
|
+
* Selector for the `valid` state.
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
export declare const validState: ":state(valid)" | "[state--valid]";
|
|
586
|
+
/**
|
|
587
|
+
* Selector for the `value-missing` state.
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
export declare const valueMissingState: ":state(value-missing)" | "[state--value-missing]";
|
|
591
|
+
/**
|
|
592
|
+
* Selector for the `vertical` state.
|
|
593
|
+
* @public
|
|
594
|
+
*/
|
|
595
|
+
export declare const verticalState: ":state(vertical)" | "[state--vertical]";
|
|
596
|
+
/**
|
|
597
|
+
* Selector for the `warning` state.
|
|
254
598
|
* @public
|
|
255
599
|
*/
|
|
256
|
-
export declare const
|
|
600
|
+
export declare const warningState: ":state(warning)" | "[state--warning]";
|