@pantoken/components 1.0.3 → 1.1.1
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/alert.css +1 -1
- package/dist/billboard.css +1 -1
- package/dist/breadcrumb.css +1 -1
- package/dist/breadcrumb.link.css +1 -1
- package/dist/button.css +1 -1
- package/dist/close-button.css +1 -1
- package/dist/components.css +1 -1
- package/dist/heading.css +1 -1
- package/dist/icons/user-round-star.css +1 -0
- package/dist/icons/venetian-mask-stem.css +1 -0
- package/dist/icons.css +1 -1
- package/dist/index.d.mts +95 -95
- package/dist/index.mjs +126 -774
- package/dist/input-group.css +1 -1
- package/dist/list.css +1 -1
- package/dist/list.item.css +1 -1
- package/dist/modal.css +1 -1
- package/dist/model.json +14903 -0
- package/dist/number-input.css +1 -1
- package/dist/progress-circle.css +1 -1
- package/dist/progress.css +1 -1
- package/dist/radio.css +1 -1
- package/dist/range-input.css +1 -1
- package/dist/rating.css +1 -1
- package/dist/scaffold-preset.d.mts +2 -3
- package/dist/simple-select.css +1 -1
- package/dist/tag.css +1 -1
- package/dist/text-area.css +1 -1
- package/dist/text-input.css +1 -1
- package/dist/text.css +1 -1
- package/dist/toggle-details.css +1 -1
- package/dist/toggle-group.css +1 -1
- package/dist/tray.css +1 -1
- package/dist/tree-browser.css +1 -1
- package/dist/view.css +1 -1
- package/package.json +17 -15
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ELEVATION_NAMES, FOCUSABLE_SELECTOR, elevationDeclarations, focusOutlineDeclarations, focusOutlineRules } from "@pantoken/utils";
|
|
2
2
|
//#region src/lib/helpers.d.ts
|
|
3
3
|
/** The default class prefix (`instui` → `.instui-button`). */
|
|
4
|
-
declare const DEFAULT_PREFIX = "instui";
|
|
4
|
+
export declare const DEFAULT_PREFIX = "instui";
|
|
5
5
|
/** Theme keys emitted by `@pantoken/tokens`. */
|
|
6
6
|
type ComponentTheme = "rebrand" | "canvas" | "canvasHighContrast";
|
|
7
7
|
/** Options common to every builder. */
|
|
@@ -51,7 +51,7 @@ interface ProseOptions {
|
|
|
51
51
|
*
|
|
52
52
|
* @demo self:prose
|
|
53
53
|
*/
|
|
54
|
-
declare function proseCss(options?: ProseOptions): string;
|
|
54
|
+
export declare function proseCss(options?: ProseOptions): string;
|
|
55
55
|
//#endregion
|
|
56
56
|
//#region src/declarations/elevation/index.d.ts
|
|
57
57
|
/**
|
|
@@ -71,7 +71,7 @@ declare function proseCss(options?: ProseOptions): string;
|
|
|
71
71
|
*
|
|
72
72
|
* @demo self:elevation
|
|
73
73
|
*/
|
|
74
|
-
declare function elevationCss(options?: {
|
|
74
|
+
export declare function elevationCss(options?: {
|
|
75
75
|
selector?: string;
|
|
76
76
|
}): string;
|
|
77
77
|
//#endregion
|
|
@@ -87,298 +87,298 @@ declare function elevationCss(options?: {
|
|
|
87
87
|
*
|
|
88
88
|
* @demo self:focus-outline
|
|
89
89
|
*/
|
|
90
|
-
declare function focusOutlineCss(options?: {
|
|
90
|
+
export declare function focusOutlineCss(options?: {
|
|
91
91
|
selector?: string;
|
|
92
92
|
tokenSelector?: string;
|
|
93
93
|
}): string;
|
|
94
94
|
//#endregion
|
|
95
95
|
//#region src/components/button/index.d.ts
|
|
96
96
|
/** Standalone `button` stylesheet — the prefixed CSS for the action button, ready to ship as a `.css` file. */
|
|
97
|
-
declare const buttonCss: Definition["css"];
|
|
97
|
+
export declare const buttonCss: Definition["css"];
|
|
98
98
|
//#endregion
|
|
99
99
|
//#region src/components/alert/index.d.ts
|
|
100
100
|
/** Standalone `alert` stylesheet — the prefixed CSS for the status message, ready to ship as a `.css` file. */
|
|
101
|
-
declare const alertCss: Definition["css"];
|
|
101
|
+
export declare const alertCss: Definition["css"];
|
|
102
102
|
//#endregion
|
|
103
103
|
//#region src/components/badge/index.d.ts
|
|
104
104
|
/** Standalone `badge` stylesheet — the prefixed CSS for the count-and-status badge, ready to ship as a `.css` file. */
|
|
105
|
-
declare const badgeCss: Definition["css"];
|
|
105
|
+
export declare const badgeCss: Definition["css"];
|
|
106
106
|
//#endregion
|
|
107
107
|
//#region src/components/pill/index.d.ts
|
|
108
108
|
/** Standalone `pill` stylesheet — the prefixed CSS for the status pill, ready to ship as a `.css` file. */
|
|
109
|
-
declare const pillCss: Definition["css"];
|
|
109
|
+
export declare const pillCss: Definition["css"];
|
|
110
110
|
//#endregion
|
|
111
111
|
//#region src/components/tag/index.d.ts
|
|
112
112
|
/** Standalone `tag` stylesheet — the prefixed CSS for the chip, ready to ship as a `.css` file. */
|
|
113
|
-
declare const tagCss: Definition["css"];
|
|
113
|
+
export declare const tagCss: Definition["css"];
|
|
114
114
|
//#endregion
|
|
115
115
|
//#region src/components/avatar/index.d.ts
|
|
116
116
|
/** Standalone `avatar` stylesheet — the prefixed CSS for the avatar, ready to ship as a `.css` file. */
|
|
117
|
-
declare const avatarCss: Definition["css"];
|
|
117
|
+
export declare const avatarCss: Definition["css"];
|
|
118
118
|
//#endregion
|
|
119
119
|
//#region src/components/tabs/index.d.ts
|
|
120
120
|
/** Standalone `tabs` stylesheet — the prefixed CSS for the tabbed panels, ready to ship as a `.css` file. */
|
|
121
|
-
declare const tabsCss: Definition["css"];
|
|
121
|
+
export declare const tabsCss: Definition["css"];
|
|
122
122
|
//#endregion
|
|
123
123
|
//#region src/components/tabs/members/tab/index.d.ts
|
|
124
124
|
/** Standalone `tabs.tab` stylesheet. */
|
|
125
|
-
declare const tabsTabCss: Definition["css"];
|
|
125
|
+
export declare const tabsTabCss: Definition["css"];
|
|
126
126
|
//#endregion
|
|
127
127
|
//#region src/components/tabs/members/panel/index.d.ts
|
|
128
128
|
/** Standalone `tabs.panel` stylesheet. */
|
|
129
|
-
declare const tabsPanelCss: Definition["css"];
|
|
129
|
+
export declare const tabsPanelCss: Definition["css"];
|
|
130
130
|
//#endregion
|
|
131
131
|
//#region src/components/metric/index.d.ts
|
|
132
132
|
/** Standalone `metric` stylesheet — the prefixed CSS for the statistic, ready to ship as a `.css` file. */
|
|
133
|
-
declare const metricCss: Definition["css"];
|
|
133
|
+
export declare const metricCss: Definition["css"];
|
|
134
134
|
//#endregion
|
|
135
135
|
//#region src/components/img/index.d.ts
|
|
136
136
|
/** Standalone `img` stylesheet — the prefixed CSS for the styled image, ready to ship as a `.css` file. */
|
|
137
|
-
declare const imgCss: Definition["css"];
|
|
137
|
+
export declare const imgCss: Definition["css"];
|
|
138
138
|
//#endregion
|
|
139
139
|
//#region src/components/byline/index.d.ts
|
|
140
140
|
/** Standalone `byline` stylesheet — the prefixed CSS for the media object, ready to ship as a `.css` file. */
|
|
141
|
-
declare const bylineCss: Definition["css"];
|
|
141
|
+
export declare const bylineCss: Definition["css"];
|
|
142
142
|
//#endregion
|
|
143
143
|
//#region src/components/table/index.d.ts
|
|
144
144
|
/** Standalone `table` stylesheet — the prefixed CSS for the data table, ready to ship as a `.css` file. */
|
|
145
|
-
declare const tableCss: Definition["css"];
|
|
145
|
+
export declare const tableCss: Definition["css"];
|
|
146
146
|
//#endregion
|
|
147
147
|
//#region src/components/table/members/head/index.d.ts
|
|
148
148
|
/** Standalone `table.head` stylesheet. */
|
|
149
|
-
declare const tableHeadCss: Definition["css"];
|
|
149
|
+
export declare const tableHeadCss: Definition["css"];
|
|
150
150
|
//#endregion
|
|
151
151
|
//#region src/components/table/members/body/index.d.ts
|
|
152
152
|
/** Standalone `table.body` stylesheet. */
|
|
153
|
-
declare const tableBodyCss: Definition["css"];
|
|
153
|
+
export declare const tableBodyCss: Definition["css"];
|
|
154
154
|
//#endregion
|
|
155
155
|
//#region src/components/table/members/row/index.d.ts
|
|
156
156
|
/** Standalone `table.row` stylesheet. */
|
|
157
|
-
declare const tableRowCss: Definition["css"];
|
|
157
|
+
export declare const tableRowCss: Definition["css"];
|
|
158
158
|
//#endregion
|
|
159
159
|
//#region src/components/table/members/cell/index.d.ts
|
|
160
160
|
/** Standalone `table.cell` stylesheet. */
|
|
161
|
-
declare const tableCellCss: Definition["css"];
|
|
161
|
+
export declare const tableCellCss: Definition["css"];
|
|
162
162
|
//#endregion
|
|
163
163
|
//#region src/components/table/members/col-header/index.d.ts
|
|
164
164
|
/** Standalone `table.col-header` stylesheet. */
|
|
165
|
-
declare const tableColHeaderCss: Definition["css"];
|
|
165
|
+
export declare const tableColHeaderCss: Definition["css"];
|
|
166
166
|
//#endregion
|
|
167
167
|
//#region src/components/table/members/row-header/index.d.ts
|
|
168
168
|
/** Standalone `table.row-header` stylesheet. */
|
|
169
|
-
declare const tableRowHeaderCss: Definition["css"];
|
|
169
|
+
export declare const tableRowHeaderCss: Definition["css"];
|
|
170
170
|
//#endregion
|
|
171
171
|
//#region src/components/link/index.d.ts
|
|
172
172
|
/** Standalone `link` stylesheet — the prefixed CSS for the hyperlink, ready to ship as a `.css` file. */
|
|
173
|
-
declare const linkCss: Definition["css"];
|
|
173
|
+
export declare const linkCss: Definition["css"];
|
|
174
174
|
//#endregion
|
|
175
175
|
//#region src/components/list/index.d.ts
|
|
176
176
|
/** Standalone `list` stylesheet — the prefixed CSS for the spaced list, ready to ship as a `.css` file. */
|
|
177
|
-
declare const listCss: Definition["css"];
|
|
177
|
+
export declare const listCss: Definition["css"];
|
|
178
178
|
//#endregion
|
|
179
179
|
//#region src/components/list/members/item/index.d.ts
|
|
180
180
|
/** Standalone `list.item` stylesheet. */
|
|
181
|
-
declare const listItemCss: Definition["css"];
|
|
181
|
+
export declare const listItemCss: Definition["css"];
|
|
182
182
|
//#endregion
|
|
183
183
|
//#region src/components/mask/index.d.ts
|
|
184
184
|
/** The mask component as a standalone, header-wrapped stylesheet. */
|
|
185
|
-
declare const maskCss: Definition["css"];
|
|
185
|
+
export declare const maskCss: Definition["css"];
|
|
186
186
|
//#endregion
|
|
187
187
|
//#region src/components/checkbox/index.d.ts
|
|
188
188
|
/** Standalone `checkbox` stylesheet — the prefixed CSS for the checkbox and switch, ready to ship as a `.css` file. */
|
|
189
|
-
declare const checkboxCss: Definition["css"];
|
|
189
|
+
export declare const checkboxCss: Definition["css"];
|
|
190
190
|
//#endregion
|
|
191
191
|
//#region src/components/radio/index.d.ts
|
|
192
192
|
/** Standalone `radio` stylesheet — the prefixed CSS for the radio button, ready to ship as a `.css` file. */
|
|
193
|
-
declare const radioCss: Definition["css"];
|
|
193
|
+
export declare const radioCss: Definition["css"];
|
|
194
194
|
//#endregion
|
|
195
195
|
//#region src/components/spinner/index.d.ts
|
|
196
196
|
/** Standalone `spinner` stylesheet — the prefixed CSS for the loading ring, ready to ship as a `.css` file. */
|
|
197
|
-
declare const spinnerCss: Definition["css"];
|
|
197
|
+
export declare const spinnerCss: Definition["css"];
|
|
198
198
|
//#endregion
|
|
199
199
|
//#region src/components/progress/index.d.ts
|
|
200
200
|
/** Standalone `progress` stylesheet — the prefixed CSS for the progress bar, ready to ship as a `.css` file. */
|
|
201
|
-
declare const progressCss: Definition["css"];
|
|
201
|
+
export declare const progressCss: Definition["css"];
|
|
202
202
|
//#endregion
|
|
203
203
|
//#region src/components/menu/index.d.ts
|
|
204
204
|
/** Standalone `menu` stylesheet — the prefixed CSS for the dropdown menu, ready to ship as a `.css` file. */
|
|
205
|
-
declare const menuCss: Definition["css"];
|
|
205
|
+
export declare const menuCss: Definition["css"];
|
|
206
206
|
//#endregion
|
|
207
207
|
//#region src/components/menu/members/item/index.d.ts
|
|
208
208
|
/** Standalone `menu.item` stylesheet — the prefixed CSS for a menu entry, ready to ship as a `.css` file. */
|
|
209
|
-
declare const menuItemCss: Definition["css"];
|
|
209
|
+
export declare const menuItemCss: Definition["css"];
|
|
210
210
|
//#endregion
|
|
211
211
|
//#region src/components/menu/members/group/index.d.ts
|
|
212
212
|
/** Standalone `menu.group` stylesheet. */
|
|
213
|
-
declare const menuGroupCss: Definition["css"];
|
|
213
|
+
export declare const menuGroupCss: Definition["css"];
|
|
214
214
|
//#endregion
|
|
215
215
|
//#region src/components/menu/members/separator/index.d.ts
|
|
216
216
|
/** Standalone `menu.separator` stylesheet. */
|
|
217
|
-
declare const menuSeparatorCss: Definition["css"];
|
|
217
|
+
export declare const menuSeparatorCss: Definition["css"];
|
|
218
218
|
//#endregion
|
|
219
219
|
//#region src/components/modal/index.d.ts
|
|
220
220
|
/** Standalone `modal` stylesheet — the prefixed CSS for the dialog surface, ready to ship as a `.css` file. */
|
|
221
|
-
declare const modalCss: Definition["css"];
|
|
221
|
+
export declare const modalCss: Definition["css"];
|
|
222
222
|
//#endregion
|
|
223
223
|
//#region src/components/modal/members/header/index.d.ts
|
|
224
224
|
/** Standalone `modal.header` stylesheet. */
|
|
225
|
-
declare const modalHeaderCss: Definition["css"];
|
|
225
|
+
export declare const modalHeaderCss: Definition["css"];
|
|
226
226
|
//#endregion
|
|
227
227
|
//#region src/components/modal/members/body/index.d.ts
|
|
228
228
|
/** Standalone `modal.body` stylesheet. */
|
|
229
|
-
declare const modalBodyCss: Definition["css"];
|
|
229
|
+
export declare const modalBodyCss: Definition["css"];
|
|
230
230
|
//#endregion
|
|
231
231
|
//#region src/components/modal/members/footer/index.d.ts
|
|
232
232
|
/** Standalone `modal.footer` stylesheet. */
|
|
233
|
-
declare const modalFooterCss: Definition["css"];
|
|
233
|
+
export declare const modalFooterCss: Definition["css"];
|
|
234
234
|
//#endregion
|
|
235
235
|
//#region src/components/breadcrumb/index.d.ts
|
|
236
236
|
/** Standalone `breadcrumb` stylesheet — the prefixed CSS for the breadcrumb trail, ready to ship as a `.css` file. */
|
|
237
|
-
declare const breadcrumbCss: Definition["css"];
|
|
237
|
+
export declare const breadcrumbCss: Definition["css"];
|
|
238
238
|
//#endregion
|
|
239
239
|
//#region src/components/breadcrumb/members/link/index.d.ts
|
|
240
240
|
/** Standalone `breadcrumb.link` stylesheet. */
|
|
241
|
-
declare const breadcrumbLinkCss: Definition["css"];
|
|
241
|
+
export declare const breadcrumbLinkCss: Definition["css"];
|
|
242
242
|
//#endregion
|
|
243
243
|
//#region src/components/billboard/index.d.ts
|
|
244
244
|
/** Standalone `billboard` stylesheet — the prefixed CSS for the empty-state block, ready to ship as a `.css` file. */
|
|
245
|
-
declare const billboardCss: Definition["css"];
|
|
245
|
+
export declare const billboardCss: Definition["css"];
|
|
246
246
|
//#endregion
|
|
247
247
|
//#region src/components/rating/index.d.ts
|
|
248
248
|
/** Standalone `rating` stylesheet — the prefixed CSS for the star rating, ready to ship as a `.css` file. */
|
|
249
|
-
declare const ratingCss: Definition["css"];
|
|
249
|
+
export declare const ratingCss: Definition["css"];
|
|
250
250
|
//#endregion
|
|
251
251
|
//#region src/components/toggle-group/index.d.ts
|
|
252
252
|
/** Standalone `toggleGroup` stylesheet — the prefixed CSS for the bordered disclosure, ready to ship as a `.css` file. */
|
|
253
|
-
declare const toggleGroupCss: Definition["css"];
|
|
253
|
+
export declare const toggleGroupCss: Definition["css"];
|
|
254
254
|
//#endregion
|
|
255
255
|
//#region src/components/context-view/index.d.ts
|
|
256
256
|
/** Standalone `contextView` stylesheet — the prefixed CSS for the caret callout, ready to ship as a `.css` file. */
|
|
257
|
-
declare const contextViewCss: Definition["css"];
|
|
257
|
+
export declare const contextViewCss: Definition["css"];
|
|
258
258
|
//#endregion
|
|
259
259
|
//#region src/components/drawer-layout/index.d.ts
|
|
260
260
|
/** Standalone `drawer-layout` stylesheet — the prefixed CSS for a resizable side tray layout. */
|
|
261
|
-
declare const drawerLayoutCss: Definition["css"];
|
|
261
|
+
export declare const drawerLayoutCss: Definition["css"];
|
|
262
262
|
//#endregion
|
|
263
263
|
//#region src/components/drawer-layout/members/tray/index.d.ts
|
|
264
264
|
/** Standalone `drawer-layout.tray` stylesheet. */
|
|
265
|
-
declare const drawerLayoutTrayCss: Definition["css"];
|
|
265
|
+
export declare const drawerLayoutTrayCss: Definition["css"];
|
|
266
266
|
//#endregion
|
|
267
267
|
//#region src/components/drawer-layout/members/content/index.d.ts
|
|
268
268
|
/** Standalone `drawer-layout.content` stylesheet. */
|
|
269
|
-
declare const drawerLayoutContentCss: Definition["css"];
|
|
269
|
+
export declare const drawerLayoutContentCss: Definition["css"];
|
|
270
270
|
//#endregion
|
|
271
271
|
//#region src/components/progress-circle/index.d.ts
|
|
272
272
|
/** Standalone `progressCircle` stylesheet — the prefixed CSS for the progress ring, ready to ship as a `.css` file. */
|
|
273
|
-
declare const progressCircleCss: Definition["css"];
|
|
273
|
+
export declare const progressCircleCss: Definition["css"];
|
|
274
274
|
//#endregion
|
|
275
275
|
//#region src/components/pagination/index.d.ts
|
|
276
276
|
/** Standalone `pagination` stylesheet — the prefixed CSS for the page navigation, ready to ship as a `.css` file. */
|
|
277
|
-
declare const paginationCss: Definition["css"];
|
|
277
|
+
export declare const paginationCss: Definition["css"];
|
|
278
278
|
//#endregion
|
|
279
279
|
//#region src/components/pagination/members/page/index.d.ts
|
|
280
280
|
/** Standalone `pagination.page` stylesheet. */
|
|
281
|
-
declare const paginationPageCss: Definition["css"];
|
|
281
|
+
export declare const paginationPageCss: Definition["css"];
|
|
282
282
|
//#endregion
|
|
283
283
|
//#region src/components/toggle-details/index.d.ts
|
|
284
284
|
/** Standalone `toggleDetails` stylesheet — the prefixed CSS for the details disclosure, ready to ship as a `.css` file. */
|
|
285
|
-
declare const toggleDetailsCss: Definition["css"];
|
|
285
|
+
export declare const toggleDetailsCss: Definition["css"];
|
|
286
286
|
//#endregion
|
|
287
287
|
//#region src/components/file-drop/index.d.ts
|
|
288
288
|
/** Standalone `fileDrop` stylesheet — the prefixed CSS for the file dropzone, ready to ship as a `.css` file. */
|
|
289
|
-
declare const fileDropCss: Definition["css"];
|
|
289
|
+
export declare const fileDropCss: Definition["css"];
|
|
290
290
|
//#endregion
|
|
291
291
|
//#region src/components/side-nav-bar/index.d.ts
|
|
292
292
|
/** Standalone `sideNavBar` stylesheet — the prefixed CSS for the navigation rail, ready to ship as a `.css` file. */
|
|
293
|
-
declare const sideNavBarCss: Definition["css"];
|
|
293
|
+
export declare const sideNavBarCss: Definition["css"];
|
|
294
294
|
//#endregion
|
|
295
295
|
//#region src/components/side-nav-bar/members/item/index.d.ts
|
|
296
296
|
/** Standalone `side-nav-bar.item` stylesheet. */
|
|
297
|
-
declare const sideNavBarItemCss: Definition["css"];
|
|
297
|
+
export declare const sideNavBarItemCss: Definition["css"];
|
|
298
298
|
//#endregion
|
|
299
299
|
//#region src/components/tree-browser/index.d.ts
|
|
300
300
|
/** Standalone `treeBrowser` stylesheet — the prefixed CSS for the disclosure tree, ready to ship as a `.css` file. */
|
|
301
|
-
declare const treeBrowserCss: Definition["css"];
|
|
301
|
+
export declare const treeBrowserCss: Definition["css"];
|
|
302
302
|
//#endregion
|
|
303
303
|
//#region src/components/calendar/index.d.ts
|
|
304
304
|
/** Standalone `calendar` stylesheet — the prefixed CSS for the month grid, ready to ship as a `.css` file. */
|
|
305
|
-
declare const calendarCss: Definition["css"];
|
|
305
|
+
export declare const calendarCss: Definition["css"];
|
|
306
306
|
//#endregion
|
|
307
307
|
//#region src/components/calendar/members/day/index.d.ts
|
|
308
308
|
/** Standalone `calendar.day` stylesheet. */
|
|
309
|
-
declare const calendarDayCss: Definition["css"];
|
|
309
|
+
export declare const calendarDayCss: Definition["css"];
|
|
310
310
|
//#endregion
|
|
311
311
|
//#region src/components/popover/index.d.ts
|
|
312
312
|
/** Standalone `popover` stylesheet — the prefixed CSS for the popover surface, ready to ship as a `.css` file. */
|
|
313
|
-
declare const popoverCss: Definition["css"];
|
|
313
|
+
export declare const popoverCss: Definition["css"];
|
|
314
314
|
//#endregion
|
|
315
315
|
//#region src/components/tray/index.d.ts
|
|
316
316
|
/** Standalone `tray` stylesheet — the prefixed CSS for the sliding tray, ready to ship as a `.css` file. */
|
|
317
|
-
declare const trayCss: Definition["css"];
|
|
317
|
+
export declare const trayCss: Definition["css"];
|
|
318
318
|
//#endregion
|
|
319
319
|
//#region src/components/tooltip/index.d.ts
|
|
320
320
|
/** Standalone `tooltip` stylesheet — the prefixed CSS for the tooltip bubble, ready to ship as a `.css` file. */
|
|
321
|
-
declare const tooltipCss: Definition["css"];
|
|
321
|
+
export declare const tooltipCss: Definition["css"];
|
|
322
322
|
//#endregion
|
|
323
323
|
//#region src/components/range-input/index.d.ts
|
|
324
324
|
/** Standalone `rangeInput` stylesheet — the prefixed CSS for the range slider, ready to ship as a `.css` file. */
|
|
325
|
-
declare const rangeInputCss: Definition["css"];
|
|
325
|
+
export declare const rangeInputCss: Definition["css"];
|
|
326
326
|
//#endregion
|
|
327
327
|
//#region src/components/heading/index.d.ts
|
|
328
328
|
/** Standalone `heading` stylesheet — the prefixed CSS for the heading type, ready to ship as a `.css` file. */
|
|
329
|
-
declare const headingCss: Definition["css"];
|
|
329
|
+
export declare const headingCss: Definition["css"];
|
|
330
330
|
//#endregion
|
|
331
331
|
//#region src/components/text/index.d.ts
|
|
332
332
|
/** Standalone `text` stylesheet — the prefixed CSS for the body typography, ready to ship as a `.css` file. */
|
|
333
|
-
declare const textCss: Definition["css"];
|
|
333
|
+
export declare const textCss: Definition["css"];
|
|
334
334
|
//#endregion
|
|
335
335
|
//#region src/components/close-button/index.d.ts
|
|
336
336
|
/** Standalone `closeButton` stylesheet — the prefixed CSS for the close button, ready to ship as a `.css` file. */
|
|
337
|
-
declare const closeButtonCss: Definition["css"];
|
|
337
|
+
export declare const closeButtonCss: Definition["css"];
|
|
338
338
|
//#endregion
|
|
339
339
|
//#region src/components/text-input/index.d.ts
|
|
340
340
|
/** Standalone `textInput` stylesheet — the prefixed CSS for the text input, ready to ship as a `.css` file. */
|
|
341
|
-
declare const textInputCss: Definition["css"];
|
|
341
|
+
export declare const textInputCss: Definition["css"];
|
|
342
342
|
//#endregion
|
|
343
343
|
//#region src/components/text-area/index.d.ts
|
|
344
344
|
/** Standalone `textArea` stylesheet — the prefixed CSS for the textarea, ready to ship as a `.css` file. */
|
|
345
|
-
declare const textAreaCss: Definition["css"];
|
|
345
|
+
export declare const textAreaCss: Definition["css"];
|
|
346
346
|
//#endregion
|
|
347
347
|
//#region src/components/simple-select/index.d.ts
|
|
348
348
|
/** Standalone `simpleSelect` stylesheet — the prefixed CSS for the native select, ready to ship as a `.css` file. */
|
|
349
|
-
declare const simpleSelectCss: Definition["css"];
|
|
349
|
+
export declare const simpleSelectCss: Definition["css"];
|
|
350
350
|
//#endregion
|
|
351
351
|
//#region src/components/input-group/index.d.ts
|
|
352
352
|
/** Standalone `inputGroup` stylesheet — the prefixed CSS for the input group, ready to ship as a `.css` file. */
|
|
353
|
-
declare const inputGroupCss: Definition["css"];
|
|
353
|
+
export declare const inputGroupCss: Definition["css"];
|
|
354
354
|
//#endregion
|
|
355
355
|
//#region src/components/number-input/index.d.ts
|
|
356
356
|
/** Standalone `numberInput` stylesheet — the prefixed CSS for the number input, ready to ship as a `.css` file. */
|
|
357
|
-
declare const numberInputCss: Definition["css"];
|
|
357
|
+
export declare const numberInputCss: Definition["css"];
|
|
358
358
|
//#endregion
|
|
359
359
|
//#region src/components/in-place-edit/index.d.ts
|
|
360
360
|
/** Standalone `inPlaceEdit` stylesheet — the prefixed CSS for the in-place editor, ready to ship as a `.css` file. */
|
|
361
|
-
declare const inPlaceEditCss: Definition["css"];
|
|
361
|
+
export declare const inPlaceEditCss: Definition["css"];
|
|
362
362
|
//#endregion
|
|
363
363
|
//#region src/components/form-field-messages/index.d.ts
|
|
364
364
|
/** Standalone `formFieldMessages` stylesheet — the prefixed CSS for the field messages, ready to ship as a `.css` file. */
|
|
365
|
-
declare const formFieldMessagesCss: Definition["css"];
|
|
365
|
+
export declare const formFieldMessagesCss: Definition["css"];
|
|
366
366
|
//#endregion
|
|
367
367
|
//#region src/components/form-field/index.d.ts
|
|
368
368
|
/** Standalone `formField` stylesheet — the prefixed CSS for the form-field wrapper, ready to ship as a `.css` file. */
|
|
369
|
-
declare const formFieldCss: Definition["css"];
|
|
369
|
+
export declare const formFieldCss: Definition["css"];
|
|
370
370
|
//#endregion
|
|
371
371
|
//#region src/components/form-field-group/index.d.ts
|
|
372
372
|
/** Standalone `formFieldGroup` stylesheet — the prefixed CSS for the fieldset group, ready to ship as a `.css` file. */
|
|
373
|
-
declare const formFieldGroupCss: Definition["css"];
|
|
373
|
+
export declare const formFieldGroupCss: Definition["css"];
|
|
374
374
|
//#endregion
|
|
375
375
|
//#region src/components/radio-input-group/index.d.ts
|
|
376
376
|
/** Standalone `radioInputGroup` stylesheet — the prefixed CSS for the radio group, ready to ship as a `.css` file. */
|
|
377
|
-
declare const radioInputGroupCss: Definition["css"];
|
|
377
|
+
export declare const radioInputGroupCss: Definition["css"];
|
|
378
378
|
//#endregion
|
|
379
379
|
//#region src/components/view/index.d.ts
|
|
380
380
|
/** The View component as a standalone, header-wrapped stylesheet. */
|
|
381
|
-
declare const viewCss: Definition["css"];
|
|
381
|
+
export declare const viewCss: Definition["css"];
|
|
382
382
|
//#endregion
|
|
383
383
|
//#region src/components/select/index.d.ts
|
|
384
384
|
/**
|
|
@@ -403,63 +403,63 @@ declare const viewCss: Definition["css"];
|
|
|
403
403
|
*
|
|
404
404
|
* @demo self:simple-select
|
|
405
405
|
*/
|
|
406
|
-
declare function selectCss(options?: ComponentOptions): string;
|
|
406
|
+
export declare function selectCss(options?: ComponentOptions): string;
|
|
407
407
|
//#endregion
|
|
408
408
|
//#region src/utilities/spacing/index.d.ts
|
|
409
409
|
/** The spacing utilities as a standalone, header-wrapped stylesheet. */
|
|
410
|
-
declare const spacingUtilitiesCss: Definition["css"];
|
|
410
|
+
export declare const spacingUtilitiesCss: Definition["css"];
|
|
411
411
|
//#endregion
|
|
412
412
|
//#region src/utilities/gap/index.d.ts
|
|
413
413
|
/** The gap utility as a standalone, header-wrapped stylesheet. */
|
|
414
|
-
declare const gapCss: Definition["css"];
|
|
414
|
+
export declare const gapCss: Definition["css"];
|
|
415
415
|
//#endregion
|
|
416
416
|
//#region src/utilities/layout/index.d.ts
|
|
417
417
|
/** The layout utilities as a standalone, header-wrapped stylesheet. */
|
|
418
|
-
declare const layoutUtilitiesCss: Definition["css"];
|
|
418
|
+
export declare const layoutUtilitiesCss: Definition["css"];
|
|
419
419
|
//#endregion
|
|
420
420
|
//#region src/utilities/responsive/index.d.ts
|
|
421
421
|
/** The responsive-visibility utilities as a standalone, header-wrapped stylesheet. */
|
|
422
|
-
declare const responsiveUtilitiesCss: Definition["css"];
|
|
422
|
+
export declare const responsiveUtilitiesCss: Definition["css"];
|
|
423
423
|
//#endregion
|
|
424
424
|
//#region src/utilities/position/index.d.ts
|
|
425
425
|
/** The position utility as a standalone, header-wrapped stylesheet. */
|
|
426
|
-
declare const positionUtilitiesCss: Definition["css"];
|
|
426
|
+
export declare const positionUtilitiesCss: Definition["css"];
|
|
427
427
|
//#endregion
|
|
428
428
|
//#region src/utilities/overflow/index.d.ts
|
|
429
429
|
/** The overflow utility as a standalone, header-wrapped stylesheet. */
|
|
430
|
-
declare const overflowUtilitiesCss: Definition["css"];
|
|
430
|
+
export declare const overflowUtilitiesCss: Definition["css"];
|
|
431
431
|
//#endregion
|
|
432
432
|
//#region src/utilities/cursor/index.d.ts
|
|
433
433
|
/** The cursor utility as a standalone, header-wrapped stylesheet. */
|
|
434
|
-
declare const cursorUtilitiesCss: Definition["css"];
|
|
434
|
+
export declare const cursorUtilitiesCss: Definition["css"];
|
|
435
435
|
//#endregion
|
|
436
436
|
//#region src/utilities/stacking/index.d.ts
|
|
437
437
|
/** The stacking utility as a standalone, header-wrapped stylesheet. */
|
|
438
|
-
declare const stackingUtilityCss: Definition["css"];
|
|
438
|
+
export declare const stackingUtilityCss: Definition["css"];
|
|
439
439
|
//#endregion
|
|
440
440
|
//#region src/utilities/mask/index.d.ts
|
|
441
441
|
/** The mask utility as a standalone, header-wrapped stylesheet. */
|
|
442
|
-
declare const maskUtilityCss: Definition["css"];
|
|
442
|
+
export declare const maskUtilityCss: Definition["css"];
|
|
443
443
|
//#endregion
|
|
444
444
|
//#region src/utilities/transition/index.d.ts
|
|
445
445
|
/** The transition utility as a standalone, header-wrapped stylesheet. */
|
|
446
|
-
declare const transitionCss: Definition["css"];
|
|
446
|
+
export declare const transitionCss: Definition["css"];
|
|
447
447
|
//#endregion
|
|
448
448
|
//#region src/utilities/truncate/index.d.ts
|
|
449
449
|
/** The truncate utility as a standalone, header-wrapped stylesheet. */
|
|
450
|
-
declare const truncateCss: Definition["css"];
|
|
450
|
+
export declare const truncateCss: Definition["css"];
|
|
451
451
|
//#endregion
|
|
452
452
|
//#region src/utilities/icon/index.d.ts
|
|
453
453
|
/** The icon utility as a standalone, header-wrapped stylesheet. */
|
|
454
|
-
declare const iconCss: Definition["css"];
|
|
454
|
+
export declare const iconCss: Definition["css"];
|
|
455
455
|
//#endregion
|
|
456
456
|
//#region src/utilities/screen-reader-content/index.d.ts
|
|
457
457
|
/** The screen-reader-content utility as a standalone, header-wrapped stylesheet. */
|
|
458
|
-
declare const screenReaderContentCss: Definition["css"];
|
|
458
|
+
export declare const screenReaderContentCss: Definition["css"];
|
|
459
459
|
//#endregion
|
|
460
460
|
//#region src/utilities/visual-debug/index.d.ts
|
|
461
461
|
/** The visual-debug utility as a standalone, header-wrapped stylesheet. */
|
|
462
|
-
declare const visualDebugCss: Definition["css"];
|
|
462
|
+
export declare const visualDebugCss: Definition["css"];
|
|
463
463
|
//#endregion
|
|
464
464
|
//#region src/utilities/icon-glyphs/index.d.ts
|
|
465
465
|
/** Options for {@link iconGlyphsCss}. */
|
|
@@ -493,7 +493,7 @@ interface IconGlyphsOptions extends ComponentOptions {
|
|
|
493
493
|
* `icons.css`); the `icon` utility is the painter half (the shared `::before`). They share the `icon`
|
|
494
494
|
* demo.
|
|
495
495
|
*/
|
|
496
|
-
declare function iconGlyphsCss(names: readonly string[], options?: IconGlyphsOptions): string;
|
|
496
|
+
export declare function iconGlyphsCss(names: readonly string[], options?: IconGlyphsOptions): string;
|
|
497
497
|
//#endregion
|
|
498
498
|
//#region src/index.d.ts
|
|
499
499
|
/**
|
|
@@ -506,7 +506,7 @@ declare function iconGlyphsCss(names: readonly string[], options?: IconGlyphsOpt
|
|
|
506
506
|
*
|
|
507
507
|
* @returns The CSS string.
|
|
508
508
|
*/
|
|
509
|
-
declare function baseCss(): string;
|
|
509
|
+
export declare function baseCss(): string;
|
|
510
510
|
/**
|
|
511
511
|
* Build the aggregated component stylesheet: every component's rules in the `COMPONENTS` concat order.
|
|
512
512
|
* The size-alias and alias twins are appended PER COMPONENT (within its own chunk) so each alias
|
|
@@ -518,6 +518,6 @@ declare function baseCss(): string;
|
|
|
518
518
|
* @param options - {@link ComponentOptions}.
|
|
519
519
|
* @returns The CSS string.
|
|
520
520
|
*/
|
|
521
|
-
declare function componentsCss(options?: ComponentOptions): string;
|
|
521
|
+
export declare function componentsCss(options?: ComponentOptions): string;
|
|
522
522
|
//#endregion
|
|
523
|
-
export { type ComponentOptions,
|
|
523
|
+
export { type ComponentOptions, ELEVATION_NAMES, FOCUSABLE_SELECTOR, type IconGlyphsOptions, type ProseOptions, elevationDeclarations, focusOutlineDeclarations, focusOutlineRules };
|