@signal9/era-ui 13.0.0 → 14.0.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.
- package/dist/docs/component-docs-core.js +2 -2
- package/dist/docs/consumer-import.d.ts +37 -0
- package/dist/docs/consumer-import.js +42 -0
- package/dist/docs/css-utilities.js +11 -0
- package/dist/era-ui.css +1 -1
- package/dist/generated-docs/accordion.md +1 -1
- package/dist/generated-docs/alert-dialog.md +1 -1
- package/dist/generated-docs/avatar.md +1 -1
- package/dist/generated-docs/calendar.md +1 -1
- package/dist/generated-docs/checkbox.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/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/link-preview.md +1 -1
- package/dist/generated-docs/llms-full.txt +48 -37
- package/dist/generated-docs/manifest.json +8 -8
- package/dist/generated-docs/menu.md +1 -1
- package/dist/generated-docs/menubar.md +1 -1
- package/dist/generated-docs/navigation-menu.md +1 -1
- package/dist/generated-docs/pagination.md +1 -1
- package/dist/generated-docs/pin-input.md +1 -1
- package/dist/generated-docs/popover.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/sheet.md +1 -1
- package/dist/generated-docs/slider.md +1 -1
- package/dist/generated-docs/step.md +1 -1
- package/dist/generated-docs/table.md +1 -1
- 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/toolbar.md +1 -1
- package/dist/generated-docs/tooltip.md +1 -1
- package/dist/generated-docs/utilities.md +11 -0
- package/dist/ui/pin-input/index.d.ts +1 -0
- package/dist/ui/pin-input/index.js +10 -0
- package/package.json +1 -1
- package/dist/docs/package-name.d.ts +0 -18
- package/dist/docs/package-name.js +0 -18
- package/dist/docs/quickstart.md +0 -43
|
@@ -5,7 +5,7 @@ Segmented start/end date input.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as DateRangeField from "@signal9/era-ui/date-range-field";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ Date range input with a calendar popover.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as DateRangePicker from "@signal9/era-ui/date-range-picker";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ Shows rich preview content when hovering a link.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as LinkPreview from "@signal9/era-ui/link-preview";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -170,6 +170,17 @@ motion):
|
|
|
170
170
|
| `text-body` | density-derived body/control text size |
|
|
171
171
|
| `p-gutter` / `gap-gutter` / `mt-gutter` / … | the spacing scale — EVERY spacing prefix works |
|
|
172
172
|
|
|
173
|
+
THE SPACING NAMES IN SIZE ORDER, smallest first, because the names do not
|
|
174
|
+
imply it and guessing gets it backwards:
|
|
175
|
+
|
|
176
|
+
gutter < panel < field < card < content
|
|
177
|
+
|
|
178
|
+
Measured at `data-mode="balanced"`: gutter 5px, field ~9px, card ~11px,
|
|
179
|
+
content ~22px. `gutter` is the TIGHT one — the gap between sibling controls
|
|
180
|
+
and a rail's own padding. `field` is a text input's side padding, not the
|
|
181
|
+
label-to-input gap. Reading them the other way round produces a layout whose
|
|
182
|
+
hierarchy is inverted and therefore reads flat.
|
|
183
|
+
|
|
173
184
|
The spacing names (`gutter`, `card`, `panel`, `content`, `menu`, `field`, the
|
|
174
185
|
`inset-*` and concentric `*-inset-*` insets, `glyph-*`) are registered as a
|
|
175
186
|
Tailwind spacing scale, so every prefix derives automatically: `p-`, `px-`,
|
|
@@ -1272,7 +1283,7 @@ An image with optional initials/icon fallback.
|
|
|
1272
1283
|
## Import
|
|
1273
1284
|
|
|
1274
1285
|
```ts
|
|
1275
|
-
import
|
|
1286
|
+
import * as Avatar from "@signal9/era-ui/avatar";
|
|
1276
1287
|
```
|
|
1277
1288
|
|
|
1278
1289
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1708,7 +1719,7 @@ A dialog anchored to a screen edge — a mobile drawer.
|
|
|
1708
1719
|
## Import
|
|
1709
1720
|
|
|
1710
1721
|
```ts
|
|
1711
|
-
import
|
|
1722
|
+
import * as Sheet from "@signal9/era-ui/sheet";
|
|
1712
1723
|
```
|
|
1713
1724
|
|
|
1714
1725
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1795,7 +1806,7 @@ Collapsible content sections.
|
|
|
1795
1806
|
## Import
|
|
1796
1807
|
|
|
1797
1808
|
```ts
|
|
1798
|
-
import
|
|
1809
|
+
import * as Accordion from "@signal9/era-ui/accordion";
|
|
1799
1810
|
```
|
|
1800
1811
|
|
|
1801
1812
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1857,7 +1868,7 @@ A modal confirmation before destructive actions.
|
|
|
1857
1868
|
## Import
|
|
1858
1869
|
|
|
1859
1870
|
```ts
|
|
1860
|
-
import
|
|
1871
|
+
import * as AlertDialog from "@signal9/era-ui/alert-dialog";
|
|
1861
1872
|
```
|
|
1862
1873
|
|
|
1863
1874
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -1943,7 +1954,7 @@ A date picker calendar grid.
|
|
|
1943
1954
|
## Import
|
|
1944
1955
|
|
|
1945
1956
|
```ts
|
|
1946
|
-
import
|
|
1957
|
+
import * as Calendar from "@signal9/era-ui/calendar";
|
|
1947
1958
|
```
|
|
1948
1959
|
|
|
1949
1960
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2074,7 +2085,7 @@ Toggleable check with indeterminate support.
|
|
|
2074
2085
|
## Import
|
|
2075
2086
|
|
|
2076
2087
|
```ts
|
|
2077
|
-
import
|
|
2088
|
+
import * as Checkbox from "@signal9/era-ui/checkbox";
|
|
2078
2089
|
```
|
|
2079
2090
|
|
|
2080
2091
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2121,7 +2132,7 @@ Show and hide content sections with a trigger.
|
|
|
2121
2132
|
## Import
|
|
2122
2133
|
|
|
2123
2134
|
```ts
|
|
2124
|
-
import
|
|
2135
|
+
import * as Collapsible from "@signal9/era-ui/collapsible";
|
|
2125
2136
|
```
|
|
2126
2137
|
|
|
2127
2138
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2156,7 +2167,7 @@ Search and select from a filtered list of options.
|
|
|
2156
2167
|
## Import
|
|
2157
2168
|
|
|
2158
2169
|
```ts
|
|
2159
|
-
import
|
|
2170
|
+
import * as Combobox from "@signal9/era-ui/combobox";
|
|
2160
2171
|
```
|
|
2161
2172
|
|
|
2162
2173
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2235,7 +2246,7 @@ A searchable command menu for quick navigation.
|
|
|
2235
2246
|
## Import
|
|
2236
2247
|
|
|
2237
2248
|
```ts
|
|
2238
|
-
import
|
|
2249
|
+
import * as Command from "@signal9/era-ui/command";
|
|
2239
2250
|
```
|
|
2240
2251
|
|
|
2241
2252
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2374,7 +2385,7 @@ Expandable inline step — tool calls, thinking, agent actions.
|
|
|
2374
2385
|
## Import
|
|
2375
2386
|
|
|
2376
2387
|
```ts
|
|
2377
|
-
import
|
|
2388
|
+
import * as Step from "@signal9/era-ui/step";
|
|
2378
2389
|
```
|
|
2379
2390
|
|
|
2380
2391
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2430,7 +2441,7 @@ Options and actions triggered by right-click.
|
|
|
2430
2441
|
## Import
|
|
2431
2442
|
|
|
2432
2443
|
```ts
|
|
2433
|
-
import
|
|
2444
|
+
import * as ContextMenu from "@signal9/era-ui/context-menu";
|
|
2434
2445
|
```
|
|
2435
2446
|
|
|
2436
2447
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2529,7 +2540,7 @@ Segmented date input with keyboard navigation.
|
|
|
2529
2540
|
## Import
|
|
2530
2541
|
|
|
2531
2542
|
```ts
|
|
2532
|
-
import
|
|
2543
|
+
import * as DateField from "@signal9/era-ui/date-field";
|
|
2533
2544
|
```
|
|
2534
2545
|
|
|
2535
2546
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2583,7 +2594,7 @@ Date input with a calendar popover.
|
|
|
2583
2594
|
## Import
|
|
2584
2595
|
|
|
2585
2596
|
```ts
|
|
2586
|
-
import
|
|
2597
|
+
import * as DatePicker from "@signal9/era-ui/date-picker";
|
|
2587
2598
|
```
|
|
2588
2599
|
|
|
2589
2600
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2768,7 +2779,7 @@ Segmented start/end date input.
|
|
|
2768
2779
|
## Import
|
|
2769
2780
|
|
|
2770
2781
|
```ts
|
|
2771
|
-
import
|
|
2782
|
+
import * as DateRangeField from "@signal9/era-ui/date-range-field";
|
|
2772
2783
|
```
|
|
2773
2784
|
|
|
2774
2785
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -2823,7 +2834,7 @@ Date range input with a calendar popover.
|
|
|
2823
2834
|
## Import
|
|
2824
2835
|
|
|
2825
2836
|
```ts
|
|
2826
|
-
import
|
|
2837
|
+
import * as DateRangePicker from "@signal9/era-ui/date-range-picker";
|
|
2827
2838
|
```
|
|
2828
2839
|
|
|
2829
2840
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3008,7 +3019,7 @@ A modal window for content or user input.
|
|
|
3008
3019
|
## Import
|
|
3009
3020
|
|
|
3010
3021
|
```ts
|
|
3011
|
-
import
|
|
3022
|
+
import * as Dialog from "@signal9/era-ui/dialog";
|
|
3012
3023
|
```
|
|
3013
3024
|
|
|
3014
3025
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3097,7 +3108,7 @@ A menu of selectable items.
|
|
|
3097
3108
|
## Import
|
|
3098
3109
|
|
|
3099
3110
|
```ts
|
|
3100
|
-
import
|
|
3111
|
+
import * as DropdownMenu from "@signal9/era-ui/dropdown-menu";
|
|
3101
3112
|
```
|
|
3102
3113
|
|
|
3103
3114
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3219,7 +3230,7 @@ A cross-platform scroll container.
|
|
|
3219
3230
|
## Import
|
|
3220
3231
|
|
|
3221
3232
|
```ts
|
|
3222
|
-
import
|
|
3233
|
+
import * as ScrollArea from "@signal9/era-ui/scroll-area";
|
|
3223
3234
|
```
|
|
3224
3235
|
|
|
3225
3236
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3317,7 +3328,7 @@ Shows rich preview content when hovering a link.
|
|
|
3317
3328
|
## Import
|
|
3318
3329
|
|
|
3319
3330
|
```ts
|
|
3320
|
-
import
|
|
3331
|
+
import * as LinkPreview from "@signal9/era-ui/link-preview";
|
|
3321
3332
|
```
|
|
3322
3333
|
|
|
3323
3334
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3403,7 +3414,7 @@ Headless menu primitives re-exported from bits-ui.
|
|
|
3403
3414
|
## Import
|
|
3404
3415
|
|
|
3405
3416
|
```ts
|
|
3406
|
-
import
|
|
3417
|
+
import * as Menu from "@signal9/era-ui/menu";
|
|
3407
3418
|
```
|
|
3408
3419
|
|
|
3409
3420
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3419,7 +3430,7 @@ A horizontal bar of dropdown menus.
|
|
|
3419
3430
|
## Import
|
|
3420
3431
|
|
|
3421
3432
|
```ts
|
|
3422
|
-
import
|
|
3433
|
+
import * as Menubar from "@signal9/era-ui/menubar";
|
|
3423
3434
|
```
|
|
3424
3435
|
|
|
3425
3436
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3549,7 +3560,7 @@ Headless navigation-menu primitives re-exported from bits-ui.
|
|
|
3549
3560
|
## Import
|
|
3550
3561
|
|
|
3551
3562
|
```ts
|
|
3552
|
-
import
|
|
3563
|
+
import * as NavigationMenu from "@signal9/era-ui/navigation-menu";
|
|
3553
3564
|
```
|
|
3554
3565
|
|
|
3555
3566
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3594,7 +3605,7 @@ Enables users to navigate through a series of pages.
|
|
|
3594
3605
|
## Import
|
|
3595
3606
|
|
|
3596
3607
|
```ts
|
|
3597
|
-
import
|
|
3608
|
+
import * as Pagination from "@signal9/era-ui/pagination";
|
|
3598
3609
|
```
|
|
3599
3610
|
|
|
3600
3611
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3654,7 +3665,7 @@ Enables users to input a sequence of one-character inputs.
|
|
|
3654
3665
|
## Import
|
|
3655
3666
|
|
|
3656
3667
|
```ts
|
|
3657
|
-
import
|
|
3668
|
+
import * as PinInput from "@signal9/era-ui/pin-input";
|
|
3658
3669
|
```
|
|
3659
3670
|
|
|
3660
3671
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3690,7 +3701,7 @@ A floating panel anchored to a trigger.
|
|
|
3690
3701
|
## Import
|
|
3691
3702
|
|
|
3692
3703
|
```ts
|
|
3693
|
-
import
|
|
3704
|
+
import * as Popover from "@signal9/era-ui/popover";
|
|
3694
3705
|
```
|
|
3695
3706
|
|
|
3696
3707
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3760,7 +3771,7 @@ Headless range-calendar primitives re-exported from bits-ui.
|
|
|
3760
3771
|
## Import
|
|
3761
3772
|
|
|
3762
3773
|
```ts
|
|
3763
|
-
import
|
|
3774
|
+
import * as RangeCalendar from "@signal9/era-ui/range-calendar";
|
|
3764
3775
|
```
|
|
3765
3776
|
|
|
3766
3777
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3776,7 +3787,7 @@ Groups radio items for single selection.
|
|
|
3776
3787
|
## Import
|
|
3777
3788
|
|
|
3778
3789
|
```ts
|
|
3779
|
-
import
|
|
3790
|
+
import * as RadioGroup from "@signal9/era-ui/radio-group";
|
|
3780
3791
|
```
|
|
3781
3792
|
|
|
3782
3793
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3812,7 +3823,7 @@ A star-style single-choice rating input.
|
|
|
3812
3823
|
## Import
|
|
3813
3824
|
|
|
3814
3825
|
```ts
|
|
3815
|
-
import
|
|
3826
|
+
import * as RatingGroup from "@signal9/era-ui/rating-group";
|
|
3816
3827
|
```
|
|
3817
3828
|
|
|
3818
3829
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3848,7 +3859,7 @@ A dropdown select menu.
|
|
|
3848
3859
|
## Import
|
|
3849
3860
|
|
|
3850
3861
|
```ts
|
|
3851
|
-
import
|
|
3862
|
+
import * as Select from "@signal9/era-ui/select";
|
|
3852
3863
|
```
|
|
3853
3864
|
|
|
3854
3865
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3920,7 +3931,7 @@ Enables value selection from a continuous range.
|
|
|
3920
3931
|
## Import
|
|
3921
3932
|
|
|
3922
3933
|
```ts
|
|
3923
|
-
import
|
|
3934
|
+
import * as Slider from "@signal9/era-ui/slider";
|
|
3924
3935
|
```
|
|
3925
3936
|
|
|
3926
3937
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -3996,7 +4007,7 @@ A tabular data display with rows, headers, and cells.
|
|
|
3996
4007
|
## Import
|
|
3997
4008
|
|
|
3998
4009
|
```ts
|
|
3999
|
-
import
|
|
4010
|
+
import * as Table from "@signal9/era-ui/table";
|
|
4000
4011
|
```
|
|
4001
4012
|
|
|
4002
4013
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4114,7 +4125,7 @@ Organizes content into tabbed sections.
|
|
|
4114
4125
|
## Import
|
|
4115
4126
|
|
|
4116
4127
|
```ts
|
|
4117
|
-
import
|
|
4128
|
+
import * as Tabs from "@signal9/era-ui/tabs";
|
|
4118
4129
|
```
|
|
4119
4130
|
|
|
4120
4131
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4167,7 +4178,7 @@ Segmented time input with keyboard navigation.
|
|
|
4167
4178
|
## Import
|
|
4168
4179
|
|
|
4169
4180
|
```ts
|
|
4170
|
-
import
|
|
4181
|
+
import * as TimeField from "@signal9/era-ui/time-field";
|
|
4171
4182
|
```
|
|
4172
4183
|
|
|
4173
4184
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4221,7 +4232,7 @@ Segmented start/end time input.
|
|
|
4221
4232
|
## Import
|
|
4222
4233
|
|
|
4223
4234
|
```ts
|
|
4224
|
-
import
|
|
4235
|
+
import * as TimeRangeField from "@signal9/era-ui/time-range-field";
|
|
4225
4236
|
```
|
|
4226
4237
|
|
|
4227
4238
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4276,7 +4287,7 @@ A set of toggle buttons with single or multiple selection.
|
|
|
4276
4287
|
## Import
|
|
4277
4288
|
|
|
4278
4289
|
```ts
|
|
4279
|
-
import
|
|
4290
|
+
import * as ToggleGroup from "@signal9/era-ui/toggle-group";
|
|
4280
4291
|
```
|
|
4281
4292
|
|
|
4282
4293
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4311,7 +4322,7 @@ Headless toolbar primitives re-exported from bits-ui.
|
|
|
4311
4322
|
## Import
|
|
4312
4323
|
|
|
4313
4324
|
```ts
|
|
4314
|
-
import
|
|
4325
|
+
import * as Toolbar from "@signal9/era-ui/toolbar";
|
|
4315
4326
|
```
|
|
4316
4327
|
|
|
4317
4328
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -4405,7 +4416,7 @@ Supplementary info on hover or focus.
|
|
|
4405
4416
|
## Import
|
|
4406
4417
|
|
|
4407
4418
|
```ts
|
|
4408
|
-
import
|
|
4419
|
+
import * as Tooltip from "@signal9/era-ui/tooltip";
|
|
4409
4420
|
```
|
|
4410
4421
|
|
|
4411
4422
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"slug": "utilities",
|
|
45
45
|
"title": "Utilities",
|
|
46
46
|
"summary": "The CSS classes era ships alongside the components — links, ink-centred text, shimmer, hidden scrollbars.",
|
|
47
|
-
"tokenEstimate":
|
|
47
|
+
"tokenEstimate": 10647,
|
|
48
48
|
"sections": [
|
|
49
49
|
"Overview",
|
|
50
50
|
"era-interactive",
|
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
"slug": "step",
|
|
469
469
|
"title": "Step",
|
|
470
470
|
"summary": "Expandable inline step — tool calls, thinking, agent actions.",
|
|
471
|
-
"tokenEstimate":
|
|
471
|
+
"tokenEstimate": 316,
|
|
472
472
|
"sections": [
|
|
473
473
|
"Import",
|
|
474
474
|
"Step.Root",
|
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
"slug": "date-range-field",
|
|
544
544
|
"title": "Date Range Field",
|
|
545
545
|
"summary": "Segmented start/end date input.",
|
|
546
|
-
"tokenEstimate":
|
|
546
|
+
"tokenEstimate": 298,
|
|
547
547
|
"sections": [
|
|
548
548
|
"Import",
|
|
549
549
|
"DateRangeField.Root",
|
|
@@ -693,7 +693,7 @@
|
|
|
693
693
|
"slug": "menu",
|
|
694
694
|
"title": "Menu",
|
|
695
695
|
"summary": "Headless menu primitives re-exported from bits-ui.",
|
|
696
|
-
"tokenEstimate":
|
|
696
|
+
"tokenEstimate": 50,
|
|
697
697
|
"sections": [
|
|
698
698
|
"Import"
|
|
699
699
|
],
|
|
@@ -755,7 +755,7 @@
|
|
|
755
755
|
"slug": "pagination",
|
|
756
756
|
"title": "Pagination",
|
|
757
757
|
"summary": "Enables users to navigate through a series of pages.",
|
|
758
|
-
"tokenEstimate":
|
|
758
|
+
"tokenEstimate": 374,
|
|
759
759
|
"sections": [
|
|
760
760
|
"Import",
|
|
761
761
|
"Pagination.Root",
|
|
@@ -871,7 +871,7 @@
|
|
|
871
871
|
"slug": "table",
|
|
872
872
|
"title": "Table",
|
|
873
873
|
"summary": "A tabular data display with rows, headers, and cells.",
|
|
874
|
-
"tokenEstimate":
|
|
874
|
+
"tokenEstimate": 733,
|
|
875
875
|
"sections": [
|
|
876
876
|
"Import",
|
|
877
877
|
"Table.Root",
|
|
@@ -917,7 +917,7 @@
|
|
|
917
917
|
"slug": "time-range-field",
|
|
918
918
|
"title": "Time Range Field",
|
|
919
919
|
"summary": "Segmented start/end time input.",
|
|
920
|
-
"tokenEstimate":
|
|
920
|
+
"tokenEstimate": 298,
|
|
921
921
|
"sections": [
|
|
922
922
|
"Import",
|
|
923
923
|
"TimeRangeField.Root",
|
|
@@ -943,7 +943,7 @@
|
|
|
943
943
|
"slug": "toolbar",
|
|
944
944
|
"title": "Toolbar",
|
|
945
945
|
"summary": "Headless toolbar primitives re-exported from bits-ui.",
|
|
946
|
-
"tokenEstimate":
|
|
946
|
+
"tokenEstimate": 53,
|
|
947
947
|
"sections": [
|
|
948
948
|
"Import"
|
|
949
949
|
],
|
|
@@ -5,7 +5,7 @@ Headless navigation-menu primitives re-exported from bits-ui.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as NavigationMenu from "@signal9/era-ui/navigation-menu";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ Enables users to navigate through a series of pages.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as Pagination from "@signal9/era-ui/pagination";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ Enables users to input a sequence of one-character inputs.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as PinInput from "@signal9/era-ui/pin-input";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ Headless range-calendar primitives re-exported from bits-ui.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as RangeCalendar from "@signal9/era-ui/range-calendar";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ A star-style single-choice rating input.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as RatingGroup from "@signal9/era-ui/rating-group";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|
|
@@ -5,7 +5,7 @@ Segmented start/end time input.
|
|
|
5
5
|
## Import
|
|
6
6
|
|
|
7
7
|
```ts
|
|
8
|
-
import
|
|
8
|
+
import * as TimeRangeField from "@signal9/era-ui/time-range-field";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Composed from sub-components — compose explicitly at the call site:
|