css-tags 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +875 -0
  3. package/carousel.js +86 -0
  4. package/components/accessibility.css +51 -0
  5. package/components/actions.css +76 -0
  6. package/components/alert.css +122 -0
  7. package/components/application-patterns.css +122 -0
  8. package/components/badge.css +125 -0
  9. package/components/box-extra.css +220 -0
  10. package/components/box.css +75 -0
  11. package/components/card.css +130 -0
  12. package/components/carousel.css +76 -0
  13. package/components/chip.css +71 -0
  14. package/components/container.css +55 -0
  15. package/components/content-patterns.css +234 -0
  16. package/components/disclosure.css +581 -0
  17. package/components/divider.css +68 -0
  18. package/components/flex.css +59 -0
  19. package/components/form-patterns.css +273 -0
  20. package/components/form.css +130 -0
  21. package/components/grid.css +82 -0
  22. package/components/identity.css +59 -0
  23. package/components/img-container.css +141 -0
  24. package/components/img-container.js +75 -0
  25. package/components/list.css +69 -0
  26. package/components/loading.css +112 -0
  27. package/components/masonry.css +48 -0
  28. package/components/modal.css +73 -0
  29. package/components/navigation-patterns.css +245 -0
  30. package/components/navigation.css +200 -0
  31. package/components/popover.css +49 -0
  32. package/components/site-shell.css +180 -0
  33. package/components/status.css +110 -0
  34. package/components/table.css +98 -0
  35. package/components/tabs.css +103 -0
  36. package/components/tooltip.css +87 -0
  37. package/components/tooltips.css +73 -0
  38. package/components/view-transition.css +73 -0
  39. package/core/base.css +62 -0
  40. package/core/defaults.css +490 -0
  41. package/core/engine.css +32 -0
  42. package/core/mixins.css +376 -0
  43. package/core/palette-accent.css +8 -0
  44. package/core/palette-base.css +107 -0
  45. package/core/palette-extended.css +142 -0
  46. package/core/palette-feedback.css +62 -0
  47. package/core/palette.css +7 -0
  48. package/core/reset.css +270 -0
  49. package/core/text.css +171 -0
  50. package/core/theme.css +608 -0
  51. package/core/tokens.css +488 -0
  52. package/core/typography.css +327 -0
  53. package/index.css +66 -0
  54. package/layouts/layout-extra.css +204 -0
  55. package/layouts/layout-extras-helpers.css +19 -0
  56. package/layouts/layout.css +348 -0
  57. package/package.json +66 -0
  58. package/theme-generator.css +979 -0
  59. package/themes/example-brand.css +59 -0
  60. package/themes/theme-packs.css +31 -0
  61. package/types/css-tags.d.ts +482 -0
  62. package/utilities/utilities.css +564 -0
  63. package/view-transition.js +111 -0
@@ -0,0 +1,59 @@
1
+ /* example-brand.css */
2
+
3
+ /* Brand A: Ocean */
4
+ :root[data-theme="ocean"] {
5
+ --accent-h: 200;
6
+ --accent-c: 0.16;
7
+ --accent-l: 60%;
8
+ --secondary-hue-shift: 40;
9
+ --tertiary-hue-shift: -80;
10
+ }
11
+
12
+ /* Brand B: Sunrise */
13
+ :root[data-theme="sunrise"] {
14
+ --accent-h: 30;
15
+ --accent-c: 0.18;
16
+ --accent-l: 62%;
17
+ --secondary-hue-shift: 60;
18
+ --tertiary-hue-shift: -90;
19
+ }
20
+
21
+ /* Brand C: Forest */
22
+ :root[data-theme="forest"] {
23
+ --accent-h: 145;
24
+ --accent-c: 0.16;
25
+ --accent-l: 58%;
26
+ --secondary-hue-shift: 50;
27
+ --tertiary-hue-shift: -100;
28
+ }
29
+
30
+ /* Optional dark tweaks per brand */
31
+ @media (prefers-color-scheme: dark) {
32
+ :root:not([data-color-scheme="light"])[data-theme="ocean"] {
33
+ --accent-c: 0.20;
34
+ --accent-l: 70%;
35
+ }
36
+ :root:not([data-color-scheme="light"])[data-theme="sunrise"] {
37
+ --accent-c: 0.22;
38
+ --accent-l: 72%;
39
+ }
40
+ :root:not([data-color-scheme="light"])[data-theme="forest"] {
41
+ --accent-c: 0.18;
42
+ --accent-l: 68%;
43
+ }
44
+ }
45
+
46
+ :root[data-color-scheme="dark"][data-theme="ocean"] {
47
+ --accent-c: 0.20;
48
+ --accent-l: 70%;
49
+ }
50
+
51
+ :root[data-color-scheme="dark"][data-theme="sunrise"] {
52
+ --accent-c: 0.22;
53
+ --accent-l: 72%;
54
+ }
55
+
56
+ :root[data-color-scheme="dark"][data-theme="forest"] {
57
+ --accent-c: 0.18;
58
+ --accent-l: 68%;
59
+ }
@@ -0,0 +1,31 @@
1
+ /* theme-packs.css */
2
+
3
+ /* Ocean */
4
+ :root[data-theme="ocean"] {
5
+ --accent-h: 200; --accent-c: 0.16; --accent-l: 60%;
6
+ --secondary-hue-shift: 40; --tertiary-hue-shift: -80;
7
+ }
8
+ @media (prefers-color-scheme: dark) {
9
+ :root:not([data-color-scheme="light"])[data-theme="ocean"] { --accent-c: 0.20; --accent-l: 70%; }
10
+ }
11
+ :root[data-color-scheme="dark"][data-theme="ocean"] { --accent-c: 0.20; --accent-l: 70%; }
12
+
13
+ /* Sunrise */
14
+ :root[data-theme="sunrise"] {
15
+ --accent-h: 30; --accent-c: 0.18; --accent-l: 62%;
16
+ --secondary-hue-shift: 60; --tertiary-hue-shift: -90;
17
+ }
18
+ @media (prefers-color-scheme: dark) {
19
+ :root:not([data-color-scheme="light"])[data-theme="sunrise"] { --accent-c: 0.22; --accent-l: 72%; }
20
+ }
21
+ :root[data-color-scheme="dark"][data-theme="sunrise"] { --accent-c: 0.22; --accent-l: 72%; }
22
+
23
+ /* Forest */
24
+ :root[data-theme="forest"] {
25
+ --accent-h: 145; --accent-c: 0.16; --accent-l: 58%;
26
+ --secondary-hue-shift: 50; --tertiary-hue-shift: -100;
27
+ }
28
+ @media (prefers-color-scheme: dark) {
29
+ :root:not([data-color-scheme="light"])[data-theme="forest"] { --accent-c: 0.18; --accent-l: 68%; }
30
+ }
31
+ :root[data-color-scheme="dark"][data-theme="forest"] { --accent-c: 0.18; --accent-l: 68%; }
@@ -0,0 +1,482 @@
1
+ /**
2
+ * TypeScript declarations for CSS Tags custom elements.
3
+ *
4
+ * Include this file from tsconfig.json or with a triple-slash reference to add
5
+ * the elements to document.createElement() and the global JSX namespace.
6
+ */
7
+
8
+ export {};
9
+
10
+ declare global {
11
+ namespace CSSTags {
12
+ type BooleanAttribute = boolean | "" | "true" | "false";
13
+ type CSSValue = string;
14
+ /** Values accepted by the root `data-color-scheme` override. */
15
+ type ColorScheme = "light" | "dark";
16
+
17
+ /** Typed authoring inputs accepted by the documentation theme creator. */
18
+ interface ThemeOverrides {
19
+ "--accent-h"?: CSSValue;
20
+ "--accent-c"?: CSSValue;
21
+ "--accent-l"?: CSSValue;
22
+ "--surface-saturation"?: CSSValue;
23
+ "--secondary-hue-shift"?: CSSValue;
24
+ "--tertiary-hue-shift"?: CSSValue;
25
+ "--contrast-factor"?: CSSValue;
26
+ "--success-h"?: CSSValue;
27
+ "--warning-h"?: CSSValue;
28
+ "--error-h"?: CSSValue;
29
+ "--info-h"?: CSSValue;
30
+ "--density-factor"?: CSSValue;
31
+ "--radius-factor"?: CSSValue;
32
+ "--font-size-prose"?: CSSValue;
33
+ "--line-height-prose"?: CSSValue;
34
+ "--measure-prose"?: CSSValue;
35
+ "--font-size-ui"?: CSSValue;
36
+ "--font-size-control"?: CSSValue;
37
+ "--font-weight-heading"?: CSSValue;
38
+ "--letter-spacing-heading"?: CSSValue;
39
+ }
40
+
41
+ interface GlobalAttributes {
42
+ id?: string;
43
+ class?: string;
44
+ className?: string;
45
+ slot?: string;
46
+ style?: string | Partial<CSSStyleDeclaration>;
47
+ title?: string;
48
+ role?: string;
49
+ tabindex?: number | string;
50
+ hidden?: boolean;
51
+ children?: unknown;
52
+ [attribute: `aria-${string}`]: string | number | boolean | undefined;
53
+ [attribute: `data-${string}`]: unknown;
54
+ }
55
+
56
+ interface LayoutAttributes extends GlobalAttributes {
57
+ gap?: CSSValue;
58
+ align?: CSSValue;
59
+ center?: BooleanAttribute;
60
+ "container-query"?: BooleanAttribute;
61
+ }
62
+
63
+ interface LayoutGridAttributes extends LayoutAttributes {
64
+ "min-item-size"?: CSSValue;
65
+ }
66
+
67
+ interface LayoutSplitAttributes extends LayoutAttributes {
68
+ fraction?: CSSValue;
69
+ breakpoint?: CSSValue;
70
+ "force-stack"?: BooleanAttribute;
71
+ "no-stack"?: BooleanAttribute;
72
+ }
73
+
74
+ interface LayoutClusterAttributes extends LayoutAttributes {
75
+ justify?: CSSValue;
76
+ }
77
+
78
+ interface LayoutReelAttributes extends LayoutAttributes {
79
+ "no-scrollbar"?: BooleanAttribute;
80
+ }
81
+
82
+ interface LayoutSwitcherAttributes extends LayoutAttributes {
83
+ threshold?: CSSValue;
84
+ }
85
+
86
+ interface LayoutPadAttributes extends LayoutAttributes {
87
+ padding?: CSSValue;
88
+ "padding-x"?: CSSValue;
89
+ "padding-y"?: CSSValue;
90
+ }
91
+
92
+ interface LayoutCenterAttributes extends LayoutAttributes {
93
+ "max-width"?: CSSValue;
94
+ gutters?: CSSValue;
95
+ "and-text"?: BooleanAttribute;
96
+ }
97
+
98
+ interface LayoutFrameAttributes extends LayoutAttributes {
99
+ ratio?: CSSValue;
100
+ }
101
+
102
+ interface LayoutSidebarAttributes extends LayoutAttributes {
103
+ breakpoint?: CSSValue;
104
+ "side-width"?: CSSValue;
105
+ "content-min-width"?: CSSValue;
106
+ side?: "left" | "right";
107
+ }
108
+
109
+ interface LayoutPageAttributes extends LayoutAttributes {
110
+ "min-height"?: CSSValue;
111
+ }
112
+
113
+ interface SurfaceAttributes extends GlobalAttributes {
114
+ padding?: CSSValue;
115
+ margin?: CSSValue;
116
+ radius?: CSSValue;
117
+ bg?: CSSValue;
118
+ color?: CSSValue;
119
+ }
120
+
121
+ interface CardAttributes extends GlobalAttributes {
122
+ "data-card-layout"?: "adaptive" | string;
123
+ }
124
+
125
+ interface BoxAttributes extends GlobalAttributes {
126
+ display?: CSSValue;
127
+ gap?: CSSValue;
128
+ p?: CSSValue;
129
+ px?: CSSValue;
130
+ py?: CSSValue;
131
+ m?: CSSValue;
132
+ mx?: CSSValue;
133
+ my?: CSSValue;
134
+ width?: CSSValue;
135
+ height?: CSSValue;
136
+ "max-width"?: CSSValue;
137
+ bg?: CSSValue;
138
+ color?: CSSValue;
139
+ border?: CSSValue;
140
+ radius?: CSSValue;
141
+ align?: CSSValue;
142
+ }
143
+
144
+ interface ContainerAttributes extends GlobalAttributes {
145
+ "max-width-sm"?: CSSValue;
146
+ "max-width-md"?: CSSValue;
147
+ "max-width-lg"?: CSSValue;
148
+ "max-width-xl"?: CSSValue;
149
+ pad?: CSSValue;
150
+ }
151
+
152
+ interface FluidContainerAttributes extends GlobalAttributes {}
153
+
154
+ interface BadgeAttributes extends GlobalAttributes {
155
+ size?: "sm" | "md" | "lg";
156
+ variant?: "subtle" | "default" | "muted" | "overt";
157
+ status?: "success" | "warning" | "error" | "info" | "primary" | "overt";
158
+ }
159
+
160
+ interface ChipAttributes extends GlobalAttributes {
161
+ size?: "sm" | "md" | "lg";
162
+ variant?: "subtle" | "default" | "muted" | "overt";
163
+ removable?: BooleanAttribute;
164
+ }
165
+
166
+ interface TextAttributes extends GlobalAttributes {
167
+ variant?: "lead" | "caption" | "eyebrow";
168
+ size?: "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl";
169
+ weight?: "thin" | "light" | "normal" | "medium" | "semibold" | "bold" | "black";
170
+ tracking?: "tighter" | "tight" | "normal" | "wide" | "wider" | "widest";
171
+ color?: CSSValue;
172
+ leading?: "none" | "tight" | "snug" | "normal" | "relaxed" | "loose";
173
+ align?: CSSValue;
174
+ transform?: CSSValue;
175
+ "font-style"?: CSSValue;
176
+ wrap?: CSSValue;
177
+ display?: "inline" | "block";
178
+ measure?: "body" | "heading" | "wide";
179
+ truncate?: BooleanAttribute;
180
+ lines?: "2" | "3" | "4" | "5" | 2 | 3 | 4 | 5;
181
+ }
182
+
183
+ interface TooltipAttributes extends GlobalAttributes {
184
+ content?: string;
185
+ place?: "top" | "right" | "bottom" | "left";
186
+ position?: "top" | "right" | "bottom" | "left";
187
+ }
188
+
189
+ interface GridAttributes extends LayoutAttributes {
190
+ display?: CSSValue;
191
+ columns?: CSSValue;
192
+ rows?: CSSValue;
193
+ areas?: CSSValue;
194
+ lanes?: string | number;
195
+ "flow-tolerance"?: CSSValue;
196
+ "justify-items"?: CSSValue;
197
+ "align-items"?: CSSValue;
198
+ "col-rule-width"?: CSSValue;
199
+ "col-rule-style"?: CSSValue;
200
+ "col-rule-color"?: CSSValue;
201
+ "row-rule-width"?: CSSValue;
202
+ "row-rule-style"?: CSSValue;
203
+ "row-rule-color"?: CSSValue;
204
+ }
205
+
206
+ interface FlexAttributes extends LayoutAttributes {
207
+ direction?: CSSValue;
208
+ justify?: CSSValue;
209
+ wrap?: CSSValue;
210
+ }
211
+
212
+ interface ImageContainerAttributes extends GlobalAttributes {
213
+ "aspect-ratio"?: CSSValue;
214
+ "object-fit"?: CSSValue;
215
+ "object-position"?: CSSValue;
216
+ radius?: CSSValue;
217
+ bg?: CSSValue;
218
+ shadow?: CSSValue;
219
+ transition?: CSSValue;
220
+ lazy?: BooleanAttribute;
221
+ "fallback-src"?: string;
222
+ src?: string;
223
+ srcset?: string;
224
+ sizes?: string;
225
+ alt?: string;
226
+ responsive?: BooleanAttribute;
227
+ "mobile-aspect-ratio"?: CSSValue;
228
+ "desktop-aspect-ratio"?: CSSValue;
229
+ "error-message"?: string;
230
+ theme?: "card" | "hero" | "thumbnail";
231
+ }
232
+
233
+ interface ListAttributes extends GlobalAttributes {
234
+ padding?: CSSValue;
235
+ margin?: CSSValue;
236
+ gap?: CSSValue;
237
+ indent?: CSSValue;
238
+ inline?: BooleanAttribute;
239
+ }
240
+
241
+ interface ListItemAttributes extends GlobalAttributes {
242
+ type?: string;
243
+ "marker-color"?: CSSValue;
244
+ icon?: string;
245
+ "icon-size"?: CSSValue;
246
+ "icon-color"?: CSSValue;
247
+ }
248
+
249
+ interface DividerAttributes extends GlobalAttributes {
250
+ orientation?: "horizontal" | "vertical";
251
+ vertical?: BooleanAttribute;
252
+ strength?: "muted" | "subtle" | "default" | "overt" | "accent";
253
+ }
254
+
255
+ interface CarouselAttributes extends GlobalAttributes {
256
+ duration?: CSSValue;
257
+ "timing-function"?: CSSValue;
258
+ radius?: CSSValue;
259
+ width?: CSSValue;
260
+ loop?: BooleanAttribute;
261
+ }
262
+
263
+ interface CarouselTriggerAttributes extends GlobalAttributes {
264
+ direction?: "prev" | "next";
265
+ disabled?: BooleanAttribute;
266
+ }
267
+
268
+ interface ModalDialogAttributes extends GlobalAttributes {
269
+ open?: BooleanAttribute;
270
+ }
271
+
272
+ interface MasonryAttributes extends GlobalAttributes {
273
+ direction?: CSSValue;
274
+ cols?: CSSValue;
275
+ rows?: CSSValue;
276
+ gap?: CSSValue;
277
+ tolerance?: CSSValue;
278
+ }
279
+
280
+ interface NavbarAttributes extends GlobalAttributes {
281
+ sticky?: BooleanAttribute;
282
+ }
283
+
284
+ interface SiteHeaderAttributes extends GlobalAttributes {
285
+ sticky?: BooleanAttribute;
286
+ elevated?: BooleanAttribute;
287
+ compact?: BooleanAttribute;
288
+ }
289
+
290
+ interface SiteFooterAttributes extends GlobalAttributes {
291
+ bordered?: BooleanAttribute;
292
+ compact?: BooleanAttribute;
293
+ centered?: BooleanAttribute;
294
+ }
295
+
296
+ interface ViewPageAttributes extends GlobalAttributes {
297
+ active?: BooleanAttribute;
298
+ }
299
+
300
+ interface ViewTriggerAttributes extends GlobalAttributes {
301
+ to?: string;
302
+ href?: string;
303
+ }
304
+
305
+ interface SizedComponentAttributes extends GlobalAttributes {
306
+ size?: "sm" | "md" | "lg";
307
+ "data-size"?: "sm" | "md" | "lg";
308
+ }
309
+
310
+ interface InputGroupAttributes extends GlobalAttributes {
311
+ "data-stack"?: "auto" | "true" | "false";
312
+ }
313
+
314
+ interface AvatarAttributes extends SizedComponentAttributes {
315
+ shape?: "circle" | "square";
316
+ "data-shape"?: "circle" | "square";
317
+ }
318
+
319
+ interface BubbleAttributes extends GlobalAttributes {
320
+ "data-sender"?: "self" | "other";
321
+ }
322
+
323
+ interface SnapFeedAttributes extends GlobalAttributes {
324
+ "aria-label"?: string;
325
+ }
326
+
327
+ interface ContentHeaderAttributes extends GlobalAttributes {}
328
+
329
+ interface MediaObjectAttributes extends GlobalAttributes {}
330
+
331
+ interface EmptyStateAttributes extends GlobalAttributes {}
332
+
333
+ interface AlertAttributes extends GlobalAttributes {
334
+ status?: "success" | "warning" | "error" | "info";
335
+ density?: "compact" | "spacious";
336
+ "data-status"?: "success" | "warning" | "error" | "info";
337
+ "data-density"?: "compact" | "spacious";
338
+ }
339
+
340
+ interface IntrinsicElements {
341
+ "layout-grid": LayoutGridAttributes;
342
+ "layout-split": LayoutSplitAttributes;
343
+ "layout-stack": LayoutAttributes;
344
+ "layout-cluster": LayoutClusterAttributes;
345
+ "layout-reel": LayoutReelAttributes;
346
+ "layout-switcher": LayoutSwitcherAttributes;
347
+ "layout-pad": LayoutPadAttributes;
348
+ "layout-center": LayoutCenterAttributes;
349
+ "layout-inline-center": LayoutCenterAttributes;
350
+ "layout-frame": LayoutFrameAttributes;
351
+ "layout-sidebar": LayoutSidebarAttributes;
352
+ "layout-page": LayoutPageAttributes;
353
+ card: CardAttributes;
354
+ "card-media": GlobalAttributes;
355
+ "card-body": GlobalAttributes;
356
+ "card-header": GlobalAttributes;
357
+ "card-content": GlobalAttributes;
358
+ "card-footer": GlobalAttributes;
359
+ box: BoxAttributes;
360
+ badge: BadgeAttributes;
361
+ chip: ChipAttributes;
362
+ text: TextAttributes;
363
+ eyebrow: GlobalAttributes;
364
+ container: ContainerAttributes;
365
+ "fluid-container": FluidContainerAttributes;
366
+ grid: GridAttributes;
367
+ flex: FlexAttributes;
368
+ "img-container": ImageContainerAttributes;
369
+ list: ListAttributes;
370
+ "list-item": ListItemAttributes;
371
+ "list-divider": GlobalAttributes;
372
+ divider: DividerAttributes;
373
+ carousel: CarouselAttributes;
374
+ "carousel-item": GlobalAttributes;
375
+ "carousel-trigger": CarouselTriggerAttributes;
376
+ tooltip: TooltipAttributes;
377
+ "masonry-layout": MasonryAttributes;
378
+ "data-table": GlobalAttributes;
379
+ "modal-dialog": ModalDialogAttributes;
380
+ "nav-navbar": NavbarAttributes;
381
+ "site-header": SiteHeaderAttributes;
382
+ "site-footer": SiteFooterAttributes;
383
+ "view-transitions": GlobalAttributes;
384
+ "view-transition": GlobalAttributes;
385
+ "view-page": ViewPageAttributes;
386
+ "nav-trigger": ViewTriggerAttributes;
387
+ "icon-button": SizedComponentAttributes;
388
+ "floating-action": SizedComponentAttributes;
389
+ "input-group": InputGroupAttributes;
390
+ "search-input": GlobalAttributes;
391
+ "file-dropzone": GlobalAttributes;
392
+ "rating-output": GlobalAttributes;
393
+ "rating-input": GlobalAttributes;
394
+ "reaction-select": GlobalAttributes;
395
+ "user-avatar": AvatarAttributes;
396
+ "avatar-group": GlobalAttributes;
397
+ "tool-bar": GlobalAttributes;
398
+ "nav-list": GlobalAttributes;
399
+ "icon-rail": GlobalAttributes;
400
+ "message-bubble": BubbleAttributes;
401
+ "log-card": GlobalAttributes;
402
+ "snap-feed": SnapFeedAttributes;
403
+ "content-header": ContentHeaderAttributes;
404
+ "media-object": MediaObjectAttributes;
405
+ "empty-state": EmptyStateAttributes;
406
+ "alert-message": AlertAttributes;
407
+ }
408
+ }
409
+
410
+ interface HTMLElementTagNameMap {
411
+ "layout-grid": HTMLElement;
412
+ "layout-split": HTMLElement;
413
+ "layout-stack": HTMLElement;
414
+ "layout-cluster": HTMLElement;
415
+ "layout-reel": HTMLElement;
416
+ "layout-switcher": HTMLElement;
417
+ "layout-pad": HTMLElement;
418
+ "layout-center": HTMLElement;
419
+ "layout-inline-center": HTMLElement;
420
+ "layout-frame": HTMLElement;
421
+ "layout-sidebar": HTMLElement;
422
+ "layout-page": HTMLElement;
423
+ card: HTMLElement;
424
+ "card-media": HTMLElement;
425
+ "card-body": HTMLElement;
426
+ "card-header": HTMLElement;
427
+ "card-content": HTMLElement;
428
+ "card-footer": HTMLElement;
429
+ box: HTMLElement;
430
+ badge: HTMLElement;
431
+ chip: HTMLElement;
432
+ text: HTMLElement;
433
+ eyebrow: HTMLElement;
434
+ container: HTMLElement;
435
+ "fluid-container": HTMLElement;
436
+ grid: HTMLElement;
437
+ flex: HTMLElement;
438
+ "img-container": HTMLElement;
439
+ list: HTMLElement;
440
+ "list-item": HTMLElement;
441
+ "list-divider": HTMLElement;
442
+ divider: HTMLElement;
443
+ carousel: HTMLElement;
444
+ "carousel-item": HTMLElement;
445
+ "carousel-trigger": HTMLElement;
446
+ tooltip: HTMLElement;
447
+ "masonry-layout": HTMLElement;
448
+ "data-table": HTMLElement;
449
+ "modal-dialog": HTMLElement;
450
+ "nav-navbar": HTMLElement;
451
+ "site-header": HTMLElement;
452
+ "site-footer": HTMLElement;
453
+ "view-transitions": HTMLElement;
454
+ "view-transition": HTMLElement;
455
+ "view-page": HTMLElement;
456
+ "nav-trigger": HTMLElement;
457
+ "icon-button": HTMLElement;
458
+ "floating-action": HTMLElement;
459
+ "input-group": HTMLElement;
460
+ "search-input": HTMLElement;
461
+ "file-dropzone": HTMLElement;
462
+ "rating-output": HTMLElement;
463
+ "rating-input": HTMLElement;
464
+ "reaction-select": HTMLElement;
465
+ "user-avatar": HTMLElement;
466
+ "avatar-group": HTMLElement;
467
+ "tool-bar": HTMLElement;
468
+ "nav-list": HTMLElement;
469
+ "icon-rail": HTMLElement;
470
+ "message-bubble": HTMLElement;
471
+ "log-card": HTMLElement;
472
+ "snap-feed": HTMLElement;
473
+ "content-header": HTMLElement;
474
+ "media-object": HTMLElement;
475
+ "empty-state": HTMLElement;
476
+ "alert-message": HTMLElement;
477
+ }
478
+
479
+ namespace JSX {
480
+ interface IntrinsicElements extends CSSTags.IntrinsicElements {}
481
+ }
482
+ }