@signal9/era-ui 12.1.0 → 12.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/badge.md +1 -1
- package/dist/docs/button.md +1 -1
- package/dist/docs/chip.md +1 -1
- package/dist/docs/component-docs-core.js +2 -1
- package/dist/docs/package-name.d.ts +18 -0
- package/dist/docs/package-name.js +18 -0
- package/dist/docs/quickstart.md +1 -1
- package/dist/docs/separator.md +1 -1
- package/dist/docs/table.md +1 -1
- package/dist/generated-docs/accordion.md +1 -1
- package/dist/generated-docs/alert-dialog.md +1 -1
- package/dist/generated-docs/aspect-ratio.md +1 -1
- package/dist/generated-docs/avatar.md +1 -1
- package/dist/generated-docs/badge.md +2 -2
- package/dist/generated-docs/bar.md +1 -1
- package/dist/generated-docs/button-group.md +1 -1
- package/dist/generated-docs/button.md +2 -2
- package/dist/generated-docs/calendar.md +1 -1
- package/dist/generated-docs/card.md +1 -1
- package/dist/generated-docs/checkbox.md +1 -1
- package/dist/generated-docs/chip.md +2 -2
- package/dist/generated-docs/code-block.md +1 -1
- package/dist/generated-docs/collapsible.md +1 -1
- package/dist/generated-docs/combobox.md +1 -1
- package/dist/generated-docs/command.md +1 -1
- package/dist/generated-docs/context-menu.md +1 -1
- package/dist/generated-docs/copy-button.md +1 -1
- package/dist/generated-docs/cycle.md +1 -1
- package/dist/generated-docs/date-field.md +1 -1
- package/dist/generated-docs/date-picker.md +1 -1
- package/dist/generated-docs/date-range-field.md +1 -1
- package/dist/generated-docs/date-range-picker.md +1 -1
- package/dist/generated-docs/dialog.md +1 -1
- package/dist/generated-docs/dropdown-menu.md +1 -1
- package/dist/generated-docs/file-upload.md +1 -1
- package/dist/generated-docs/input.md +1 -1
- package/dist/generated-docs/kv.md +1 -1
- package/dist/generated-docs/label.md +1 -1
- package/dist/generated-docs/link-preview.md +1 -1
- package/dist/generated-docs/llms-full.txt +66 -66
- package/dist/generated-docs/logo.md +1 -1
- package/dist/generated-docs/manifest.json +61 -61
- package/dist/generated-docs/menu.md +1 -1
- package/dist/generated-docs/menubar.md +1 -1
- package/dist/generated-docs/meter.md +1 -1
- package/dist/generated-docs/mode.md +1 -1
- package/dist/generated-docs/navigation-menu.md +1 -1
- package/dist/generated-docs/pagination.md +1 -1
- package/dist/generated-docs/pane.md +1 -1
- package/dist/generated-docs/pin-input.md +1 -1
- package/dist/generated-docs/popover.md +1 -1
- package/dist/generated-docs/progress.md +1 -1
- package/dist/generated-docs/radio-group.md +1 -1
- package/dist/generated-docs/range-calendar.md +1 -1
- package/dist/generated-docs/rating-group.md +1 -1
- package/dist/generated-docs/scroll-area.md +1 -1
- package/dist/generated-docs/select.md +1 -1
- package/dist/generated-docs/separator.md +2 -2
- package/dist/generated-docs/sheet.md +1 -1
- package/dist/generated-docs/skeleton.md +1 -1
- package/dist/generated-docs/slider.md +1 -1
- package/dist/generated-docs/step.md +1 -1
- package/dist/generated-docs/switch.md +1 -1
- package/dist/generated-docs/table.md +2 -2
- package/dist/generated-docs/tabs.md +1 -1
- package/dist/generated-docs/time-field.md +1 -1
- package/dist/generated-docs/time-range-field.md +1 -1
- package/dist/generated-docs/toggle-group.md +1 -1
- package/dist/generated-docs/toggle.md +1 -1
- package/dist/generated-docs/toolbar.md +1 -1
- package/dist/generated-docs/tooltip.md +1 -1
- package/dist/generated-docs/video-player.md +1 -1
- package/dist/ui/pane/pane-root.svelte +35 -1
- package/package.json +1 -1
|
@@ -1192,7 +1192,7 @@ Maintains a specified aspect ratio for content.
|
|
|
1192
1192
|
## Import
|
|
1193
1193
|
|
|
1194
1194
|
```ts
|
|
1195
|
-
import { AspectRatio } from "
|
|
1195
|
+
import { AspectRatio } from "@signal9/era-ui/aspect-ratio";
|
|
1196
1196
|
```
|
|
1197
1197
|
|
|
1198
1198
|
## Props
|
|
@@ -1214,7 +1214,7 @@ A small label for status or categorization.
|
|
|
1214
1214
|
## Import
|
|
1215
1215
|
|
|
1216
1216
|
```ts
|
|
1217
|
-
import { Badge } from "
|
|
1217
|
+
import { Badge } from "@signal9/era-ui/badge";
|
|
1218
1218
|
```
|
|
1219
1219
|
|
|
1220
1220
|
## Props
|
|
@@ -1231,7 +1231,7 @@ Inherits all props from `HTMLAttributes<HTMLSpanElement>`.
|
|
|
1231
1231
|
|
|
1232
1232
|
```svelte
|
|
1233
1233
|
<script>
|
|
1234
|
-
import { Badge } from '
|
|
1234
|
+
import { Badge } from '@signal9/era-ui/badge';
|
|
1235
1235
|
</script>
|
|
1236
1236
|
|
|
1237
1237
|
<Badge>draft</Badge>
|
|
@@ -1257,7 +1257,7 @@ An image with optional initials/icon fallback.
|
|
|
1257
1257
|
## Import
|
|
1258
1258
|
|
|
1259
1259
|
```ts
|
|
1260
|
-
import { Avatar } from "
|
|
1260
|
+
import { Avatar } from "@signal9/era-ui/avatar";
|
|
1261
1261
|
```
|
|
1262
1262
|
|
|
1263
1263
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1301,7 +1301,7 @@ A flex container for toolbars and headers, in three heights.
|
|
|
1301
1301
|
## Import
|
|
1302
1302
|
|
|
1303
1303
|
```ts
|
|
1304
|
-
import { Bar } from "
|
|
1304
|
+
import { Bar } from "@signal9/era-ui/bar";
|
|
1305
1305
|
```
|
|
1306
1306
|
|
|
1307
1307
|
## Props
|
|
@@ -1329,7 +1329,7 @@ A flexible button or link element.
|
|
|
1329
1329
|
## Import
|
|
1330
1330
|
|
|
1331
1331
|
```ts
|
|
1332
|
-
import { Button } from "
|
|
1332
|
+
import { Button } from "@signal9/era-ui/button";
|
|
1333
1333
|
```
|
|
1334
1334
|
|
|
1335
1335
|
## Props
|
|
@@ -1354,7 +1354,7 @@ and screen-reader accessible names don't change shape mid-flight. |
|
|
|
1354
1354
|
|
|
1355
1355
|
```svelte
|
|
1356
1356
|
<script>
|
|
1357
|
-
import { Button } from '
|
|
1357
|
+
import { Button } from '@signal9/era-ui/button';
|
|
1358
1358
|
</script>
|
|
1359
1359
|
|
|
1360
1360
|
<Button onclick={() => console.log('clicked')}>Save</Button>
|
|
@@ -1381,7 +1381,7 @@ Groups buttons with consistent spacing.
|
|
|
1381
1381
|
## Import
|
|
1382
1382
|
|
|
1383
1383
|
```ts
|
|
1384
|
-
import { ButtonGroup } from "
|
|
1384
|
+
import { ButtonGroup } from "@signal9/era-ui/button-group";
|
|
1385
1385
|
```
|
|
1386
1386
|
|
|
1387
1387
|
## Props
|
|
@@ -1405,7 +1405,7 @@ A draggable floating window with a handle bar.
|
|
|
1405
1405
|
## Import
|
|
1406
1406
|
|
|
1407
1407
|
```ts
|
|
1408
|
-
import { Pane } from "
|
|
1408
|
+
import { Pane } from "@signal9/era-ui/pane";
|
|
1409
1409
|
```
|
|
1410
1410
|
|
|
1411
1411
|
## Props
|
|
@@ -1444,7 +1444,7 @@ A surface container that can behave as a link or button.
|
|
|
1444
1444
|
## Import
|
|
1445
1445
|
|
|
1446
1446
|
```ts
|
|
1447
|
-
import { Card } from "
|
|
1447
|
+
import { Card } from "@signal9/era-ui/card";
|
|
1448
1448
|
```
|
|
1449
1449
|
|
|
1450
1450
|
## Props
|
|
@@ -1477,7 +1477,7 @@ An interactive, optionally dismissible token.
|
|
|
1477
1477
|
## Import
|
|
1478
1478
|
|
|
1479
1479
|
```ts
|
|
1480
|
-
import { Chip } from "
|
|
1480
|
+
import { Chip } from "@signal9/era-ui/chip";
|
|
1481
1481
|
```
|
|
1482
1482
|
|
|
1483
1483
|
## Props
|
|
@@ -1496,7 +1496,7 @@ that nests inside an md container (a select trigger, a button). |
|
|
|
1496
1496
|
|
|
1497
1497
|
```svelte
|
|
1498
1498
|
<script>
|
|
1499
|
-
import { Chip } from '
|
|
1499
|
+
import { Chip } from '@signal9/era-ui/chip';
|
|
1500
1500
|
|
|
1501
1501
|
let tags = $state(['alpha', 'beta', 'gamma']);
|
|
1502
1502
|
</script>
|
|
@@ -1524,7 +1524,7 @@ A code snippet with optional copy button.
|
|
|
1524
1524
|
## Import
|
|
1525
1525
|
|
|
1526
1526
|
```ts
|
|
1527
|
-
import { CodeBlock } from "
|
|
1527
|
+
import { CodeBlock } from "@signal9/era-ui/code-block";
|
|
1528
1528
|
```
|
|
1529
1529
|
|
|
1530
1530
|
## Props
|
|
@@ -1549,7 +1549,7 @@ An icon button that copies text and cross-fades to a result glyph.
|
|
|
1549
1549
|
## Import
|
|
1550
1550
|
|
|
1551
1551
|
```ts
|
|
1552
|
-
import { CopyButton } from "
|
|
1552
|
+
import { CopyButton } from "@signal9/era-ui/copy-button";
|
|
1553
1553
|
```
|
|
1554
1554
|
|
|
1555
1555
|
## Props
|
|
@@ -1583,7 +1583,7 @@ A single button that steps through an ordered set of states.
|
|
|
1583
1583
|
## Import
|
|
1584
1584
|
|
|
1585
1585
|
```ts
|
|
1586
|
-
import { Cycle } from "
|
|
1586
|
+
import { Cycle } from "@signal9/era-ui/cycle";
|
|
1587
1587
|
```
|
|
1588
1588
|
|
|
1589
1589
|
## Props
|
|
@@ -1617,7 +1617,7 @@ A key-value pair display using Badge.
|
|
|
1617
1617
|
## Import
|
|
1618
1618
|
|
|
1619
1619
|
```ts
|
|
1620
|
-
import { KV } from "
|
|
1620
|
+
import { KV } from "@signal9/era-ui/kv";
|
|
1621
1621
|
```
|
|
1622
1622
|
|
|
1623
1623
|
## Props
|
|
@@ -1642,7 +1642,7 @@ A visual divider between content.
|
|
|
1642
1642
|
## Import
|
|
1643
1643
|
|
|
1644
1644
|
```ts
|
|
1645
|
-
import { Separator } from "
|
|
1645
|
+
import { Separator } from "@signal9/era-ui/separator";
|
|
1646
1646
|
```
|
|
1647
1647
|
|
|
1648
1648
|
## Props
|
|
@@ -1658,7 +1658,7 @@ Inherits all props from `Separator.RootProps`.
|
|
|
1658
1658
|
|
|
1659
1659
|
```svelte
|
|
1660
1660
|
<script>
|
|
1661
|
-
import { Separator } from '
|
|
1661
|
+
import { Separator } from '@signal9/era-ui/separator';
|
|
1662
1662
|
</script>
|
|
1663
1663
|
|
|
1664
1664
|
<p>
|
|
@@ -1686,7 +1686,7 @@ A dialog anchored to a screen edge — a mobile drawer.
|
|
|
1686
1686
|
## Import
|
|
1687
1687
|
|
|
1688
1688
|
```ts
|
|
1689
|
-
import { Sheet } from "
|
|
1689
|
+
import { Sheet } from "@signal9/era-ui/sheet";
|
|
1690
1690
|
```
|
|
1691
1691
|
|
|
1692
1692
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1702,7 +1702,7 @@ A placeholder shimmer for loading states.
|
|
|
1702
1702
|
## Import
|
|
1703
1703
|
|
|
1704
1704
|
```ts
|
|
1705
|
-
import { Skeleton } from "
|
|
1705
|
+
import { Skeleton } from "@signal9/era-ui/skeleton";
|
|
1706
1706
|
```
|
|
1707
1707
|
|
|
1708
1708
|
## Props
|
|
@@ -1725,7 +1725,7 @@ A toggle switch control.
|
|
|
1725
1725
|
## Import
|
|
1726
1726
|
|
|
1727
1727
|
```ts
|
|
1728
|
-
import { Switch } from "
|
|
1728
|
+
import { Switch } from "@signal9/era-ui/switch";
|
|
1729
1729
|
```
|
|
1730
1730
|
|
|
1731
1731
|
## Props
|
|
@@ -1748,7 +1748,7 @@ A two-state toggle button.
|
|
|
1748
1748
|
## Import
|
|
1749
1749
|
|
|
1750
1750
|
```ts
|
|
1751
|
-
import { Toggle } from "
|
|
1751
|
+
import { Toggle } from "@signal9/era-ui/toggle";
|
|
1752
1752
|
```
|
|
1753
1753
|
|
|
1754
1754
|
## Props
|
|
@@ -1773,7 +1773,7 @@ Collapsible content sections.
|
|
|
1773
1773
|
## Import
|
|
1774
1774
|
|
|
1775
1775
|
```ts
|
|
1776
|
-
import { Accordion } from "
|
|
1776
|
+
import { Accordion } from "@signal9/era-ui/accordion";
|
|
1777
1777
|
```
|
|
1778
1778
|
|
|
1779
1779
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1835,7 +1835,7 @@ A modal confirmation before destructive actions.
|
|
|
1835
1835
|
## Import
|
|
1836
1836
|
|
|
1837
1837
|
```ts
|
|
1838
|
-
import { AlertDialog } from "
|
|
1838
|
+
import { AlertDialog } from "@signal9/era-ui/alert-dialog";
|
|
1839
1839
|
```
|
|
1840
1840
|
|
|
1841
1841
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1921,7 +1921,7 @@ A date picker calendar grid.
|
|
|
1921
1921
|
## Import
|
|
1922
1922
|
|
|
1923
1923
|
```ts
|
|
1924
|
-
import { Calendar } from "
|
|
1924
|
+
import { Calendar } from "@signal9/era-ui/calendar";
|
|
1925
1925
|
```
|
|
1926
1926
|
|
|
1927
1927
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2052,7 +2052,7 @@ Toggleable check with indeterminate support.
|
|
|
2052
2052
|
## Import
|
|
2053
2053
|
|
|
2054
2054
|
```ts
|
|
2055
|
-
import { Checkbox } from "
|
|
2055
|
+
import { Checkbox } from "@signal9/era-ui/checkbox";
|
|
2056
2056
|
```
|
|
2057
2057
|
|
|
2058
2058
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2099,7 +2099,7 @@ Show and hide content sections with a trigger.
|
|
|
2099
2099
|
## Import
|
|
2100
2100
|
|
|
2101
2101
|
```ts
|
|
2102
|
-
import { Collapsible } from "
|
|
2102
|
+
import { Collapsible } from "@signal9/era-ui/collapsible";
|
|
2103
2103
|
```
|
|
2104
2104
|
|
|
2105
2105
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2134,7 +2134,7 @@ Search and select from a filtered list of options.
|
|
|
2134
2134
|
## Import
|
|
2135
2135
|
|
|
2136
2136
|
```ts
|
|
2137
|
-
import { Combobox } from "
|
|
2137
|
+
import { Combobox } from "@signal9/era-ui/combobox";
|
|
2138
2138
|
```
|
|
2139
2139
|
|
|
2140
2140
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2213,7 +2213,7 @@ A searchable command menu for quick navigation.
|
|
|
2213
2213
|
## Import
|
|
2214
2214
|
|
|
2215
2215
|
```ts
|
|
2216
|
-
import { Command } from "
|
|
2216
|
+
import { Command } from "@signal9/era-ui/command";
|
|
2217
2217
|
```
|
|
2218
2218
|
|
|
2219
2219
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2352,7 +2352,7 @@ Expandable inline step — tool calls, thinking, agent actions.
|
|
|
2352
2352
|
## Import
|
|
2353
2353
|
|
|
2354
2354
|
```ts
|
|
2355
|
-
import { Step } from "
|
|
2355
|
+
import { Step } from "@signal9/era-ui/step";
|
|
2356
2356
|
```
|
|
2357
2357
|
|
|
2358
2358
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2408,7 +2408,7 @@ Options and actions triggered by right-click.
|
|
|
2408
2408
|
## Import
|
|
2409
2409
|
|
|
2410
2410
|
```ts
|
|
2411
|
-
import { ContextMenu } from "
|
|
2411
|
+
import { ContextMenu } from "@signal9/era-ui/context-menu";
|
|
2412
2412
|
```
|
|
2413
2413
|
|
|
2414
2414
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2507,7 +2507,7 @@ Segmented date input with keyboard navigation.
|
|
|
2507
2507
|
## Import
|
|
2508
2508
|
|
|
2509
2509
|
```ts
|
|
2510
|
-
import { DateField } from "
|
|
2510
|
+
import { DateField } from "@signal9/era-ui/date-field";
|
|
2511
2511
|
```
|
|
2512
2512
|
|
|
2513
2513
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2561,7 +2561,7 @@ Date input with a calendar popover.
|
|
|
2561
2561
|
## Import
|
|
2562
2562
|
|
|
2563
2563
|
```ts
|
|
2564
|
-
import { DatePicker } from "
|
|
2564
|
+
import { DatePicker } from "@signal9/era-ui/date-picker";
|
|
2565
2565
|
```
|
|
2566
2566
|
|
|
2567
2567
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2746,7 +2746,7 @@ Segmented start/end date input.
|
|
|
2746
2746
|
## Import
|
|
2747
2747
|
|
|
2748
2748
|
```ts
|
|
2749
|
-
import { DateRangeField } from "
|
|
2749
|
+
import { DateRangeField } from "@signal9/era-ui/date-range-field";
|
|
2750
2750
|
```
|
|
2751
2751
|
|
|
2752
2752
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2801,7 +2801,7 @@ Date range input with a calendar popover.
|
|
|
2801
2801
|
## Import
|
|
2802
2802
|
|
|
2803
2803
|
```ts
|
|
2804
|
-
import { DateRangePicker } from "
|
|
2804
|
+
import { DateRangePicker } from "@signal9/era-ui/date-range-picker";
|
|
2805
2805
|
```
|
|
2806
2806
|
|
|
2807
2807
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2986,7 +2986,7 @@ A modal window for content or user input.
|
|
|
2986
2986
|
## Import
|
|
2987
2987
|
|
|
2988
2988
|
```ts
|
|
2989
|
-
import { Dialog } from "
|
|
2989
|
+
import { Dialog } from "@signal9/era-ui/dialog";
|
|
2990
2990
|
```
|
|
2991
2991
|
|
|
2992
2992
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3075,7 +3075,7 @@ A menu of selectable items.
|
|
|
3075
3075
|
## Import
|
|
3076
3076
|
|
|
3077
3077
|
```ts
|
|
3078
|
-
import { DropdownMenu } from "
|
|
3078
|
+
import { DropdownMenu } from "@signal9/era-ui/dropdown-menu";
|
|
3079
3079
|
```
|
|
3080
3080
|
|
|
3081
3081
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3174,7 +3174,7 @@ A file input with click-to-browse and drag-and-drop.
|
|
|
3174
3174
|
## Import
|
|
3175
3175
|
|
|
3176
3176
|
```ts
|
|
3177
|
-
import { FileUpload } from "
|
|
3177
|
+
import { FileUpload } from "@signal9/era-ui/file-upload";
|
|
3178
3178
|
```
|
|
3179
3179
|
|
|
3180
3180
|
## Props
|
|
@@ -3197,7 +3197,7 @@ A cross-platform scroll container.
|
|
|
3197
3197
|
## Import
|
|
3198
3198
|
|
|
3199
3199
|
```ts
|
|
3200
|
-
import { ScrollArea } from "
|
|
3200
|
+
import { ScrollArea } from "@signal9/era-ui/scroll-area";
|
|
3201
3201
|
```
|
|
3202
3202
|
|
|
3203
3203
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3267,7 +3267,7 @@ A text input field, with textarea variant.
|
|
|
3267
3267
|
## Import
|
|
3268
3268
|
|
|
3269
3269
|
```ts
|
|
3270
|
-
import { Input } from "
|
|
3270
|
+
import { Input } from "@signal9/era-ui/input";
|
|
3271
3271
|
```
|
|
3272
3272
|
|
|
3273
3273
|
## Props
|
|
@@ -3295,7 +3295,7 @@ Shows rich preview content when hovering a link.
|
|
|
3295
3295
|
## Import
|
|
3296
3296
|
|
|
3297
3297
|
```ts
|
|
3298
|
-
import { LinkPreview } from "
|
|
3298
|
+
import { LinkPreview } from "@signal9/era-ui/link-preview";
|
|
3299
3299
|
```
|
|
3300
3300
|
|
|
3301
3301
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3330,7 +3330,7 @@ Identifies or describes associated UI elements.
|
|
|
3330
3330
|
## Import
|
|
3331
3331
|
|
|
3332
3332
|
```ts
|
|
3333
|
-
import { Label } from "
|
|
3333
|
+
import { Label } from "@signal9/era-ui/label";
|
|
3334
3334
|
```
|
|
3335
3335
|
|
|
3336
3336
|
## Props
|
|
@@ -3352,7 +3352,7 @@ The signalnine dish mark, reactive to a state preset.
|
|
|
3352
3352
|
## Import
|
|
3353
3353
|
|
|
3354
3354
|
```ts
|
|
3355
|
-
import { Logo } from "
|
|
3355
|
+
import { Logo } from "@signal9/era-ui/logo";
|
|
3356
3356
|
```
|
|
3357
3357
|
|
|
3358
3358
|
## Props
|
|
@@ -3381,7 +3381,7 @@ Headless menu primitives re-exported from bits-ui.
|
|
|
3381
3381
|
## Import
|
|
3382
3382
|
|
|
3383
3383
|
```ts
|
|
3384
|
-
import { Menu } from "
|
|
3384
|
+
import { Menu } from "@signal9/era-ui/menu";
|
|
3385
3385
|
```
|
|
3386
3386
|
|
|
3387
3387
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3397,7 +3397,7 @@ A horizontal bar of dropdown menus.
|
|
|
3397
3397
|
## Import
|
|
3398
3398
|
|
|
3399
3399
|
```ts
|
|
3400
|
-
import { Menubar } from "
|
|
3400
|
+
import { Menubar } from "@signal9/era-ui/menubar";
|
|
3401
3401
|
```
|
|
3402
3402
|
|
|
3403
3403
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3505,7 +3505,7 @@ Displays a value within a known range.
|
|
|
3505
3505
|
## Import
|
|
3506
3506
|
|
|
3507
3507
|
```ts
|
|
3508
|
-
import { Meter } from "
|
|
3508
|
+
import { Meter } from "@signal9/era-ui/meter";
|
|
3509
3509
|
```
|
|
3510
3510
|
|
|
3511
3511
|
## Props
|
|
@@ -3527,7 +3527,7 @@ Headless navigation-menu primitives re-exported from bits-ui.
|
|
|
3527
3527
|
## Import
|
|
3528
3528
|
|
|
3529
3529
|
```ts
|
|
3530
|
-
import { NavigationMenu } from "
|
|
3530
|
+
import { NavigationMenu } from "@signal9/era-ui/navigation-menu";
|
|
3531
3531
|
```
|
|
3532
3532
|
|
|
3533
3533
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3543,7 +3543,7 @@ Scoped density / surface / corners override for any subtree.
|
|
|
3543
3543
|
## Import
|
|
3544
3544
|
|
|
3545
3545
|
```ts
|
|
3546
|
-
import { Mode } from "
|
|
3546
|
+
import { Mode } from "@signal9/era-ui/mode";
|
|
3547
3547
|
```
|
|
3548
3548
|
|
|
3549
3549
|
## Props
|
|
@@ -3572,7 +3572,7 @@ Enables users to navigate through a series of pages.
|
|
|
3572
3572
|
## Import
|
|
3573
3573
|
|
|
3574
3574
|
```ts
|
|
3575
|
-
import { Pagination } from "
|
|
3575
|
+
import { Pagination } from "@signal9/era-ui/pagination";
|
|
3576
3576
|
```
|
|
3577
3577
|
|
|
3578
3578
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3632,7 +3632,7 @@ Enables users to input a sequence of one-character inputs.
|
|
|
3632
3632
|
## Import
|
|
3633
3633
|
|
|
3634
3634
|
```ts
|
|
3635
|
-
import { PinInput } from "
|
|
3635
|
+
import { PinInput } from "@signal9/era-ui/pin-input";
|
|
3636
3636
|
```
|
|
3637
3637
|
|
|
3638
3638
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3668,7 +3668,7 @@ A floating panel anchored to a trigger.
|
|
|
3668
3668
|
## Import
|
|
3669
3669
|
|
|
3670
3670
|
```ts
|
|
3671
|
-
import { Popover } from "
|
|
3671
|
+
import { Popover } from "@signal9/era-ui/popover";
|
|
3672
3672
|
```
|
|
3673
3673
|
|
|
3674
3674
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3716,7 +3716,7 @@ Shows the completion status of a task.
|
|
|
3716
3716
|
## Import
|
|
3717
3717
|
|
|
3718
3718
|
```ts
|
|
3719
|
-
import { Progress } from "
|
|
3719
|
+
import { Progress } from "@signal9/era-ui/progress";
|
|
3720
3720
|
```
|
|
3721
3721
|
|
|
3722
3722
|
## Props
|
|
@@ -3738,7 +3738,7 @@ Headless range-calendar primitives re-exported from bits-ui.
|
|
|
3738
3738
|
## Import
|
|
3739
3739
|
|
|
3740
3740
|
```ts
|
|
3741
|
-
import { RangeCalendar } from "
|
|
3741
|
+
import { RangeCalendar } from "@signal9/era-ui/range-calendar";
|
|
3742
3742
|
```
|
|
3743
3743
|
|
|
3744
3744
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3754,7 +3754,7 @@ Groups radio items for single selection.
|
|
|
3754
3754
|
## Import
|
|
3755
3755
|
|
|
3756
3756
|
```ts
|
|
3757
|
-
import { RadioGroup } from "
|
|
3757
|
+
import { RadioGroup } from "@signal9/era-ui/radio-group";
|
|
3758
3758
|
```
|
|
3759
3759
|
|
|
3760
3760
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3790,7 +3790,7 @@ A star-style single-choice rating input.
|
|
|
3790
3790
|
## Import
|
|
3791
3791
|
|
|
3792
3792
|
```ts
|
|
3793
|
-
import { RatingGroup } from "
|
|
3793
|
+
import { RatingGroup } from "@signal9/era-ui/rating-group";
|
|
3794
3794
|
```
|
|
3795
3795
|
|
|
3796
3796
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3826,7 +3826,7 @@ A dropdown select menu.
|
|
|
3826
3826
|
## Import
|
|
3827
3827
|
|
|
3828
3828
|
```ts
|
|
3829
|
-
import { Select } from "
|
|
3829
|
+
import { Select } from "@signal9/era-ui/select";
|
|
3830
3830
|
```
|
|
3831
3831
|
|
|
3832
3832
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3898,7 +3898,7 @@ Enables value selection from a continuous range.
|
|
|
3898
3898
|
## Import
|
|
3899
3899
|
|
|
3900
3900
|
```ts
|
|
3901
|
-
import { Slider } from "
|
|
3901
|
+
import { Slider } from "@signal9/era-ui/slider";
|
|
3902
3902
|
```
|
|
3903
3903
|
|
|
3904
3904
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3974,7 +3974,7 @@ A tabular data display with rows, headers, and cells.
|
|
|
3974
3974
|
## Import
|
|
3975
3975
|
|
|
3976
3976
|
```ts
|
|
3977
|
-
import { Table } from "
|
|
3977
|
+
import { Table } from "@signal9/era-ui/table";
|
|
3978
3978
|
```
|
|
3979
3979
|
|
|
3980
3980
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4049,7 +4049,7 @@ Inherits all props from `HTMLTdAttributes`.
|
|
|
4049
4049
|
|
|
4050
4050
|
```svelte
|
|
4051
4051
|
<script lang="ts">
|
|
4052
|
-
import { Table } from '
|
|
4052
|
+
import { Table } from '@signal9/era-ui/table';
|
|
4053
4053
|
|
|
4054
4054
|
const rows = [
|
|
4055
4055
|
{ id: 1, name: 'Ada', role: 'Engineer' },
|
|
@@ -4092,7 +4092,7 @@ Organizes content into tabbed sections.
|
|
|
4092
4092
|
## Import
|
|
4093
4093
|
|
|
4094
4094
|
```ts
|
|
4095
|
-
import { Tabs } from "
|
|
4095
|
+
import { Tabs } from "@signal9/era-ui/tabs";
|
|
4096
4096
|
```
|
|
4097
4097
|
|
|
4098
4098
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4145,7 +4145,7 @@ Segmented time input with keyboard navigation.
|
|
|
4145
4145
|
## Import
|
|
4146
4146
|
|
|
4147
4147
|
```ts
|
|
4148
|
-
import { TimeField } from "
|
|
4148
|
+
import { TimeField } from "@signal9/era-ui/time-field";
|
|
4149
4149
|
```
|
|
4150
4150
|
|
|
4151
4151
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4199,7 +4199,7 @@ Segmented start/end time input.
|
|
|
4199
4199
|
## Import
|
|
4200
4200
|
|
|
4201
4201
|
```ts
|
|
4202
|
-
import { TimeRangeField } from "
|
|
4202
|
+
import { TimeRangeField } from "@signal9/era-ui/time-range-field";
|
|
4203
4203
|
```
|
|
4204
4204
|
|
|
4205
4205
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4254,7 +4254,7 @@ A set of toggle buttons with single or multiple selection.
|
|
|
4254
4254
|
## Import
|
|
4255
4255
|
|
|
4256
4256
|
```ts
|
|
4257
|
-
import { ToggleGroup } from "
|
|
4257
|
+
import { ToggleGroup } from "@signal9/era-ui/toggle-group";
|
|
4258
4258
|
```
|
|
4259
4259
|
|
|
4260
4260
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4289,7 +4289,7 @@ Headless toolbar primitives re-exported from bits-ui.
|
|
|
4289
4289
|
## Import
|
|
4290
4290
|
|
|
4291
4291
|
```ts
|
|
4292
|
-
import { Toolbar } from "
|
|
4292
|
+
import { Toolbar } from "@signal9/era-ui/toolbar";
|
|
4293
4293
|
```
|
|
4294
4294
|
|
|
4295
4295
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4305,7 +4305,7 @@ A vidstack-powered player with support for MP4, HLS, and live streams.
|
|
|
4305
4305
|
## Import
|
|
4306
4306
|
|
|
4307
4307
|
```ts
|
|
4308
|
-
import { VideoPlayer } from "
|
|
4308
|
+
import { VideoPlayer } from "@signal9/era-ui/video-player";
|
|
4309
4309
|
```
|
|
4310
4310
|
|
|
4311
4311
|
## Props
|
|
@@ -4383,7 +4383,7 @@ Supplementary info on hover or focus.
|
|
|
4383
4383
|
## Import
|
|
4384
4384
|
|
|
4385
4385
|
```ts
|
|
4386
|
-
import { Tooltip } from "
|
|
4386
|
+
import { Tooltip } from "@signal9/era-ui/tooltip";
|
|
4387
4387
|
```
|
|
4388
4388
|
|
|
4389
4389
|
Composed from sub-components — compose explicitly at the call site:
|