@avento-space/ts-ui 1.2.3 → 1.2.5
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/README.md +180 -187
- package/dist/{card.wc-CLzyZAbJ.d.ts → card.wc-83Ws3o27.d.ts} +1 -1
- package/dist/{chunk-PIXJHFME.js → chunk-47AXL5HN.js} +79 -17
- package/dist/chunk-47AXL5HN.js.map +1 -0
- package/dist/{chunk-2UKGVIH2.js → chunk-6Y6GA2QS.js} +538 -371
- package/dist/chunk-6Y6GA2QS.js.map +1 -0
- package/dist/{chunk-NUMML2ZR.js → chunk-FPZL7HOP.js} +4 -4
- package/dist/{chunk-NUMML2ZR.js.map → chunk-FPZL7HOP.js.map} +1 -1
- package/dist/{chunk-NJHLJNRI.js → chunk-Q4KFLERV.js} +3 -3
- package/dist/chunk-Q4KFLERV.js.map +1 -0
- package/dist/chunk-YRHQNIPK.js +3 -0
- package/dist/{chunk-T7QLIHHU.js.map → chunk-YRHQNIPK.js.map} +1 -1
- package/dist/components/index.d.ts +9 -10
- package/dist/components/index.js +3 -3
- package/dist/define.js +4 -4
- package/dist/icons/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/react/index.d.ts +1 -1
- package/dist/slot.wc-BvIJg5UJ.d.ts +11 -0
- package/package.json +12 -1
- package/tailwind-plugin.cjs +236 -0
- package/dist/chunk-2UKGVIH2.js.map +0 -1
- package/dist/chunk-NJHLJNRI.js.map +0 -1
- package/dist/chunk-PIXJHFME.js.map +0 -1
- package/dist/chunk-T7QLIHHU.js +0 -3
package/README.md
CHANGED
|
@@ -1,187 +1,180 @@
|
|
|
1
|
-
# Avento TS UI
|
|
2
|
-
|
|
3
|
-
**Web Components UI library — framework-agnostic, signal-driven, tree-shakeable.**
|
|
4
|
-
|
|
5
|
-
Build reactive UIs with native web components. Works with any framework (React, Vue, Angular, or vanilla JS) or no framework at all.
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## Features
|
|
10
|
-
|
|
11
|
-
- **50+ production-ready components** — buttons, modals, tables, forms, overlays, and more
|
|
12
|
-
- **Shadow DOM** — encapsulated styles, no leaks
|
|
13
|
-
- **Signal-based reactivity** — fine-grained updates without virtual DOM
|
|
14
|
-
- **Tree-shakeable** — import only what you use
|
|
15
|
-
- **Framework-agnostic** — use directly as HTML tags or via React wrappers
|
|
16
|
-
- **Accessible** — WAI-ARIA patterns, keyboard navigation, focus management
|
|
17
|
-
- **Icon system** — 3000+ SVG icons built in
|
|
18
|
-
- **Zero dependencies** — only TypeScript
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
## Quick Start
|
|
23
|
-
|
|
24
|
-
### Install
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
npm install @avento-space/ts-ui
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
### Usage (vanilla JS / any framework)
|
|
31
|
-
|
|
32
|
-
```typescript
|
|
33
|
-
import { defineComponents } from '@avento-space/ts-ui';
|
|
34
|
-
|
|
35
|
-
// Register all components (prefix: u-)
|
|
36
|
-
defineComponents();
|
|
37
|
-
|
|
38
|
-
// Components are now available as HTML tags
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
```html
|
|
42
|
-
<u-button variant="primary">Click me</u-button>
|
|
43
|
-
<u-modal title="Hello" open>
|
|
44
|
-
<p>Modal content</p>
|
|
45
|
-
</u-modal>
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
### Usage with React
|
|
49
|
-
|
|
50
|
-
```tsx
|
|
51
|
-
import { defineComponents } from '@avento-space/ts-ui';
|
|
52
|
-
import { Button, Modal } from '@avento-space/ts-ui/react';
|
|
53
|
-
|
|
54
|
-
defineComponents();
|
|
55
|
-
|
|
56
|
-
function App() {
|
|
57
|
-
return (
|
|
58
|
-
<Button variant="primary" onClick={() => alert('Hi!')}>
|
|
59
|
-
Click me
|
|
60
|
-
</Button>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
---
|
|
66
|
-
|
|
67
|
-
## Components
|
|
68
|
-
|
|
69
|
-
| Component | Tag | Description |
|
|
70
|
-
|-----------|-----|-------------|
|
|
71
|
-
| Accordion | `<u-accordion>` | Collapsible sections |
|
|
72
|
-
| Badge | `<u-badge>` | Status indicators, labels |
|
|
73
|
-
| Box | `<u-box>` | Semantic layout wrapper |
|
|
74
|
-
| Breadcrumb | `<u-breadcrumb>` | Navigation trail |
|
|
75
|
-
| Button | `<u-button>` | Primary, secondary, ghost, danger, link |
|
|
76
|
-
| Calendar | `<u-calendar>` | Date picker |
|
|
77
|
-
| Card | `<u-card>` | Content container with header/footer |
|
|
78
|
-
| Checkbox | `<u-checkbox>` | Toggle option |
|
|
79
|
-
| Collection | `<u-collection>` | Managed item selection |
|
|
80
|
-
| Combobox | `<u-combobox>` | Autocomplete input |
|
|
81
|
-
| CommandPalette | `<u-command-palette>` | ⌘K command menu |
|
|
82
|
-
| Container | `<u-container>` | Max-width layout wrapper |
|
|
83
|
-
| ContextMenu | `<u-context-menu>` | Right-click menu |
|
|
84
|
-
| DataTable | `<u-data-table>` | Sortable, filterable table |
|
|
85
|
-
| DialogRoot | `<u-dialog-root>` | Dialog base behavior |
|
|
86
|
-
| DismissableLayer | `<u-dismissable-layer>` | Click-outside handler |
|
|
87
|
-
| Drawer | `<u-drawer>` | Slide-in panel |
|
|
88
|
-
| Dropdown | `<u-dropdown>` | Menu button |
|
|
89
|
-
| Field | `<u-field>` | Label + input wrapper |
|
|
90
|
-
| FocusManager | `<u-focus-manager>` | Keyboard focus orchestration |
|
|
91
|
-
| FocusScope | `<u-focus-scope>` | Isolated focus zone |
|
|
92
|
-
| FocusTrap | `<u-focus-trap>` | Tab cycle trapping |
|
|
93
|
-
| Form | `<u-form>` | Form validation wrapper |
|
|
94
|
-
| Grid | `<u-grid>` | CSS Grid layout |
|
|
95
|
-
| Hoverable | `<u-hoverable>` | Hover state behavior |
|
|
96
|
-
| Input | `<u-input>` | Text input |
|
|
97
|
-
| KeyboardNavigation | `<u-keyboard-navigation>` | Arrow key navigation |
|
|
98
|
-
| Label | `<u-label>` | Form label |
|
|
99
|
-
| Link | `<u-link>` | Styled anchor |
|
|
100
|
-
| List | `<u-list>` | Keyed list renderer |
|
|
101
|
-
| LiveRegion | `<u-live-region>` | Screen reader announcements |
|
|
102
|
-
| Modal | `<u-modal>` | Dialog overlay |
|
|
103
|
-
| Overlay | `<u-overlay>` | Backdrop layer |
|
|
104
|
-
| Popover | `<u-popover>` | Hover/focus tooltip-like |
|
|
105
|
-
| Popper | `<u-popper>` | Positioning utility |
|
|
106
|
-
| Portal | `<u-portal>` | Teleport to another node |
|
|
107
|
-
| Presence | `<u-presence>` | Mount/unmount animation |
|
|
108
|
-
| Pressable | `<u-pressable>` | Press interaction behavior |
|
|
109
|
-
| RadioGroup | `<u-radio-group>` | Radio button group |
|
|
110
|
-
| RouterView | `<u-router-view>` | Router outlet |
|
|
111
|
-
| Select | `<u-select>` | Native select replacement |
|
|
112
|
-
| Slot | `<u-slot>` | Named slot content |
|
|
113
|
-
| Sortable | `<u-sortable>` | Drag-to-reorder list |
|
|
114
|
-
| Spacer | `<u-spacer>` | Flex spacing utility |
|
|
115
|
-
| Stack / HStack | `<u-stack>` / `<u-hstack>` | Flexbox layouts |
|
|
116
|
-
| Switch | `<u-switch>` | Toggle control |
|
|
117
|
-
| Table | `<u-table>` | Data table |
|
|
118
|
-
| Tabs | `<u-tabs>` | Tabbed interface |
|
|
119
|
-
| Text | `<u-text>` | Typography with size/weight/color |
|
|
120
|
-
| Textarea | `<u-textarea>` | Multi-line input |
|
|
121
|
-
| Toast | `<u-toast>` | Notification popup |
|
|
122
|
-
| TooltipRoot | `<u-tooltip-root>` | Hover tooltip |
|
|
123
|
-
| Transition | `<u-transition>` | CSS transition behavior |
|
|
124
|
-
| Tree | `<u-tree>` | Hierarchical list |
|
|
125
|
-
| VisuallyHidden | `<u-visually-hidden>` | Screen reader-only content |
|
|
126
|
-
| Icon | `<u-icon>` | 3000+ SVG icons |
|
|
127
|
-
|
|
128
|
-
---
|
|
129
|
-
|
|
130
|
-
## Styling
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
```
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
| `npm run lint` | ESLint |
|
|
182
|
-
|
|
183
|
-
---
|
|
184
|
-
|
|
185
|
-
## License
|
|
186
|
-
|
|
187
|
-
MIT
|
|
1
|
+
# Avento TS UI
|
|
2
|
+
|
|
3
|
+
**Web Components UI library — framework-agnostic, signal-driven, tree-shakeable.**
|
|
4
|
+
|
|
5
|
+
Build reactive UIs with native web components. Works with any framework (React, Vue, Angular, or vanilla JS) or no framework at all.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- **50+ production-ready components** — buttons, modals, tables, forms, overlays, and more
|
|
12
|
+
- **Shadow DOM** — encapsulated styles, no leaks
|
|
13
|
+
- **Signal-based reactivity** — fine-grained updates without virtual DOM
|
|
14
|
+
- **Tree-shakeable** — import only what you use
|
|
15
|
+
- **Framework-agnostic** — use directly as HTML tags or via React wrappers
|
|
16
|
+
- **Accessible** — WAI-ARIA patterns, keyboard navigation, focus management
|
|
17
|
+
- **Icon system** — 3000+ SVG icons built in
|
|
18
|
+
- **Zero dependencies** — only TypeScript
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
### Install
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm install @avento-space/ts-ui
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Usage (vanilla JS / any framework)
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import { defineComponents } from '@avento-space/ts-ui';
|
|
34
|
+
|
|
35
|
+
// Register all components (prefix: u-)
|
|
36
|
+
defineComponents();
|
|
37
|
+
|
|
38
|
+
// Components are now available as HTML tags
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
```html
|
|
42
|
+
<u-button variant="primary">Click me</u-button>
|
|
43
|
+
<u-modal title="Hello" open>
|
|
44
|
+
<p>Modal content</p>
|
|
45
|
+
</u-modal>
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Usage with React
|
|
49
|
+
|
|
50
|
+
```tsx
|
|
51
|
+
import { defineComponents } from '@avento-space/ts-ui';
|
|
52
|
+
import { Button, Modal } from '@avento-space/ts-ui/react';
|
|
53
|
+
|
|
54
|
+
defineComponents();
|
|
55
|
+
|
|
56
|
+
function App() {
|
|
57
|
+
return (
|
|
58
|
+
<Button variant="primary" onClick={() => alert('Hi!')}>
|
|
59
|
+
Click me
|
|
60
|
+
</Button>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Components
|
|
68
|
+
|
|
69
|
+
| Component | Tag | Description |
|
|
70
|
+
|-----------|-----|-------------|
|
|
71
|
+
| Accordion | `<u-accordion>` | Collapsible sections |
|
|
72
|
+
| Badge | `<u-badge>` | Status indicators, labels |
|
|
73
|
+
| Box | `<u-box>` | Semantic layout wrapper |
|
|
74
|
+
| Breadcrumb | `<u-breadcrumb>` | Navigation trail |
|
|
75
|
+
| Button | `<u-button>` | Primary, secondary, ghost, danger, link |
|
|
76
|
+
| Calendar | `<u-calendar>` | Date picker |
|
|
77
|
+
| Card | `<u-card>` | Content container with header/footer |
|
|
78
|
+
| Checkbox | `<u-checkbox>` | Toggle option |
|
|
79
|
+
| Collection | `<u-collection>` | Managed item selection |
|
|
80
|
+
| Combobox | `<u-combobox>` | Autocomplete input |
|
|
81
|
+
| CommandPalette | `<u-command-palette>` | ⌘K command menu |
|
|
82
|
+
| Container | `<u-container>` | Max-width layout wrapper |
|
|
83
|
+
| ContextMenu | `<u-context-menu>` | Right-click menu |
|
|
84
|
+
| DataTable | `<u-data-table>` | Sortable, filterable table |
|
|
85
|
+
| DialogRoot | `<u-dialog-root>` | Dialog base behavior |
|
|
86
|
+
| DismissableLayer | `<u-dismissable-layer>` | Click-outside handler |
|
|
87
|
+
| Drawer | `<u-drawer>` | Slide-in panel |
|
|
88
|
+
| Dropdown | `<u-dropdown>` | Menu button |
|
|
89
|
+
| Field | `<u-field>` | Label + input wrapper |
|
|
90
|
+
| FocusManager | `<u-focus-manager>` | Keyboard focus orchestration |
|
|
91
|
+
| FocusScope | `<u-focus-scope>` | Isolated focus zone |
|
|
92
|
+
| FocusTrap | `<u-focus-trap>` | Tab cycle trapping |
|
|
93
|
+
| Form | `<u-form>` | Form validation wrapper |
|
|
94
|
+
| Grid | `<u-grid>` | CSS Grid layout |
|
|
95
|
+
| Hoverable | `<u-hoverable>` | Hover state behavior |
|
|
96
|
+
| Input | `<u-input>` | Text input |
|
|
97
|
+
| KeyboardNavigation | `<u-keyboard-navigation>` | Arrow key navigation |
|
|
98
|
+
| Label | `<u-label>` | Form label |
|
|
99
|
+
| Link | `<u-link>` | Styled anchor |
|
|
100
|
+
| List | `<u-list>` | Keyed list renderer |
|
|
101
|
+
| LiveRegion | `<u-live-region>` | Screen reader announcements |
|
|
102
|
+
| Modal | `<u-modal>` | Dialog overlay |
|
|
103
|
+
| Overlay | `<u-overlay>` | Backdrop layer |
|
|
104
|
+
| Popover | `<u-popover>` | Hover/focus tooltip-like |
|
|
105
|
+
| Popper | `<u-popper>` | Positioning utility |
|
|
106
|
+
| Portal | `<u-portal>` | Teleport to another node |
|
|
107
|
+
| Presence | `<u-presence>` | Mount/unmount animation |
|
|
108
|
+
| Pressable | `<u-pressable>` | Press interaction behavior |
|
|
109
|
+
| RadioGroup | `<u-radio-group>` | Radio button group |
|
|
110
|
+
| RouterView | `<u-router-view>` | Router outlet |
|
|
111
|
+
| Select | `<u-select>` | Native select replacement |
|
|
112
|
+
| Slot | `<u-slot>` | Named slot content |
|
|
113
|
+
| Sortable | `<u-sortable>` | Drag-to-reorder list |
|
|
114
|
+
| Spacer | `<u-spacer>` | Flex spacing utility |
|
|
115
|
+
| Stack / HStack | `<u-stack>` / `<u-hstack>` | Flexbox layouts |
|
|
116
|
+
| Switch | `<u-switch>` | Toggle control |
|
|
117
|
+
| Table | `<u-table>` | Data table |
|
|
118
|
+
| Tabs | `<u-tabs>` | Tabbed interface |
|
|
119
|
+
| Text | `<u-text>` | Typography with size/weight/color |
|
|
120
|
+
| Textarea | `<u-textarea>` | Multi-line input |
|
|
121
|
+
| Toast | `<u-toast>` | Notification popup |
|
|
122
|
+
| TooltipRoot | `<u-tooltip-root>` | Hover tooltip |
|
|
123
|
+
| Transition | `<u-transition>` | CSS transition behavior |
|
|
124
|
+
| Tree | `<u-tree>` | Hierarchical list |
|
|
125
|
+
| VisuallyHidden | `<u-visually-hidden>` | Screen reader-only content |
|
|
126
|
+
| Icon | `<u-icon>` | 3000+ SVG icons |
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## Styling
|
|
131
|
+
|
|
132
|
+
Components use **Shadow DOM**, so global CSS (Tailwind, modules, etc.) cannot style internal elements. Use **CSS custom properties** for design tokens and **`::part()` selectors** for targeting specific internal elements.
|
|
133
|
+
|
|
134
|
+
> 📖 **Full documentation:** [`docs/theming.md`](./docs/theming.md) — includes the complete token table, stacking/z-index guide, React patterns, migration notes, and the optional [Tailwind plugin](docs/theming.md#7-optional-tailwind-plugin) for autocomplete-friendly `--u-*` utilities.
|
|
135
|
+
|
|
136
|
+
```css
|
|
137
|
+
/* Token override — affects all components */
|
|
138
|
+
:root { --u-color-primary: #7c3aed; }
|
|
139
|
+
|
|
140
|
+
/* Part selector — styles the internal <button> */
|
|
141
|
+
u-button::part(button) { font-weight: 700; text-transform: uppercase; }
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## React Wrappers
|
|
147
|
+
|
|
148
|
+
```tsx
|
|
149
|
+
import { Button, Modal, Tabs, Text, Badge, Card } from '@avento-space/ts-ui/react';
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Each web component has a React wrapper that forwards props and refs.
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
## Icons
|
|
157
|
+
|
|
158
|
+
```html
|
|
159
|
+
<u-icon name="heart"></u-icon>
|
|
160
|
+
<u-icon name="settings" size="32" stroke-width="1.5"></u-icon>
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
3000+ icons available. See the icon registry for all names.
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Scripts
|
|
168
|
+
|
|
169
|
+
| Command | Description |
|
|
170
|
+
|---------|-------------|
|
|
171
|
+
| `npm run build` | Build with tsup (ESM + .d.ts) |
|
|
172
|
+
| `npm test` | Run vitest |
|
|
173
|
+
| `npm run typecheck` | TypeScript check |
|
|
174
|
+
| `npm run lint` | ESLint |
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## License
|
|
179
|
+
|
|
180
|
+
MIT
|
|
@@ -1624,4 +1624,4 @@ declare class UCard extends UElement {
|
|
|
1624
1624
|
_mount(): void;
|
|
1625
1625
|
}
|
|
1626
1626
|
|
|
1627
|
-
export { type
|
|
1627
|
+
export { type PortalProps as $, type AccordionItemProps as A, type BadgeProps as B, type CalendarProps as C, type DataTableColumn as D, type DrawerProps as E, type DrawerSide as F, type DropdownItem as G, type DropdownProps as H, type FieldProps as I, type FocusManagerProps as J, type FocusScopeProps as K, type FocusTrapProps as L, type FormProps as M, type GridProps as N, type HoverableProps as O, type InputProps as P, type KeyboardNavigationProps as Q, type LabelProps as R, type LinkProps as S, type ListProps as T, type LiveRegionPoliteness as U, type LiveRegionProps as V, type ModalProps as W, type OverlayProps as X, type PopoverProps as Y, type PopperPlacement as Z, type PopperProps as _, type AccordionProps as a, UPopover as a$, type PresenceAnimation as a0, type PresenceProps as a1, type PressableProps as a2, type RadioGroupProps as a3, type RadioProps as a4, type RouterViewProps as a5, type SelectOption as a6, type SelectProps as a7, type SortableProps as a8, type SpacerProps as a9, UCheckbox as aA, UCollection as aB, UCombobox as aC, UCommandPalette as aD, UContainer as aE, UContextMenu as aF, UDataTable as aG, UDialogRoot as aH, UDismissableLayer as aI, UDrawer as aJ, UDropdown as aK, UField as aL, UFocusManager as aM, UFocusScope as aN, UFocusTrap as aO, UForm as aP, UGrid as aQ, UHStack as aR, UHoverable as aS, UInput as aT, UKeyboardNavigation as aU, ULabel as aV, ULink as aW, UList as aX, ULiveRegion as aY, UModal as aZ, UOverlay as a_, type StackProps as aa, type SwitchProps as ab, type TableColumn as ac, type TableProps as ad, type TabsProps as ae, type TextColor as af, type TextProps as ag, type TextSize as ah, type TextWeight as ai, type TextareaProps as aj, type ToastOptions as ak, type ToastProps as al, type TooltipRootProps as am, type TransitionProps as an, type TransitionType as ao, type TreeNodeData as ap, type TreeProps as aq, UAccordion as ar, UAccordionItem as as, UAnimate as at, UBadge as au, UBox as av, UBreadcrumb as aw, UButton as ax, UCalendar as ay, UCard as az, type AnimatePreset as b, UPopper as b0, UPortal as b1, UPresence as b2, UPressable as b3, URadio as b4, URadioGroup as b5, URouterView as b6, USelect as b7, USortable as b8, USpacer as b9, UStack as ba, USwitch as bb, UTable as bc, UTabs as bd, UText as be, UTextarea as bf, UToast as bg, UTooltipRoot as bh, UTransition as bi, UTree as bj, UVirtualList as bk, UVisuallyHidden as bl, type VirtualListProps as bm, type VisuallyHiddenProps as bn, createControlledInput as bo, setPortalRoot as bp, type AnimateProps as c, type BadgeSize as d, type BadgeVariant as e, type BoxAs as f, type BoxProps as g, type BreadcrumbItem as h, type BreadcrumbProps as i, type ButtonProps as j, type CardPadding as k, type CardProps as l, type CardVariant as m, type CheckboxProps as n, type CollectionProps as o, type CollectionSelection as p, type ComboboxOption as q, type ComboboxProps as r, type CommandItem as s, type CommandPaletteProps as t, type ContainerProps as u, type ContextMenuItem as v, type ContextMenuProps as w, type DataTableProps as x, type DialogRootProps as y, type DismissableLayerProps as z };
|