@estiva-app/ui 0.22.0 → 0.24.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/README.md +21 -0
- package/dist/AppShell.d.ts.map +1 -1
- package/dist/AttachmentCard.d.ts.map +1 -1
- package/dist/Banner.d.ts +20 -2
- package/dist/Banner.d.ts.map +1 -1
- package/dist/ContainerHeader.d.ts +25 -0
- package/dist/ContainerHeader.d.ts.map +1 -0
- package/dist/EmptyState.d.ts +10 -1
- package/dist/EmptyState.d.ts.map +1 -1
- package/dist/Form.d.ts.map +1 -1
- package/dist/IconButton.d.ts +9 -1
- package/dist/IconButton.d.ts.map +1 -1
- package/dist/PreviewCard.d.ts +9 -2
- package/dist/PreviewCard.d.ts.map +1 -1
- package/dist/SectionHeader.d.ts +7 -1
- package/dist/SectionHeader.d.ts.map +1 -1
- package/dist/Select.d.ts +11 -3
- package/dist/Select.d.ts.map +1 -1
- package/dist/Tooltip.d.ts +13 -1
- package/dist/Tooltip.d.ts.map +1 -1
- package/dist/eslint/index.js +2 -1
- package/dist/eslint/index.js.map +2 -2
- package/dist/eslint/no-restyled-part.d.ts.map +1 -1
- package/dist/gates/app-checks.d.ts.map +1 -1
- package/dist/gates/{chunk-ZGJ2J5NU.js → chunk-EA33NP5B.js} +275 -11
- package/dist/gates/chunk-EA33NP5B.js.map +7 -0
- package/dist/gates/{chunk-AUXD4GCY.js → chunk-GTQZEHPC.js} +15 -1
- package/dist/gates/chunk-GTQZEHPC.js.map +7 -0
- package/dist/gates/cli.js +1 -1
- package/dist/gates/create-app.d.ts +2 -0
- package/dist/gates/create-app.d.ts.map +1 -1
- package/dist/gates/create-app.js +1 -1
- package/dist/gates/index.js +25 -3
- package/dist/gates/index.js.map +2 -2
- package/dist/gates/status.d.ts +2 -0
- package/dist/gates/status.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +196 -156
- package/dist/index.js.map +4 -4
- package/dist/registry/app-DQI6WLHR.js +10 -0
- package/dist/registry/app.d.ts +21 -0
- package/dist/registry/app.d.ts.map +1 -0
- package/dist/registry/build-LGFCCOLR.js +27 -0
- package/dist/registry/build-LGFCCOLR.js.map +7 -0
- package/dist/registry/build.d.ts +68 -2
- package/dist/registry/build.d.ts.map +1 -1
- package/dist/registry/{chunk-MRSBS5OP.js → chunk-E4JNV7PC.js} +68 -12
- package/dist/registry/chunk-E4JNV7PC.js.map +7 -0
- package/dist/registry/{chunk-QDYGB3QN.js → chunk-NJN4MQAM.js} +60 -15
- package/dist/registry/chunk-NJN4MQAM.js.map +7 -0
- package/dist/registry/{chunk-IJNCYVH4.js → chunk-W2B2G7OE.js} +34 -9
- package/dist/registry/chunk-W2B2G7OE.js.map +7 -0
- package/dist/registry/chunk-WMFF3MPP.js +648 -0
- package/dist/registry/chunk-WMFF3MPP.js.map +7 -0
- package/dist/registry/cli.js +81 -26
- package/dist/registry/cli.js.map +3 -3
- package/dist/registry/find.d.ts +12 -1
- package/dist/registry/find.d.ts.map +1 -1
- package/dist/registry/index.d.ts +5 -2
- package/dist/registry/index.d.ts.map +1 -1
- package/dist/registry/index.js +11 -3
- package/dist/registry/schema.d.ts +83 -6
- package/dist/registry/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/registry.json +283 -95
- package/src/AppShell.mdx +10 -0
- package/src/AppShell.test.tsx +16 -0
- package/src/AppShell.tsx +4 -1
- package/src/AttachmentCard.mdx +9 -0
- package/src/AttachmentCard.test.tsx +10 -0
- package/src/AttachmentCard.tsx +8 -5
- package/src/Avatar.mdx +13 -3
- package/src/AvatarGroup.mdx +4 -0
- package/src/Banner.mdx +30 -7
- package/src/Banner.stories.tsx +22 -0
- package/src/Banner.test.tsx +35 -0
- package/src/Banner.tsx +34 -9
- package/src/Breadcrumb.mdx +10 -0
- package/src/Button.mdx +14 -3
- package/src/Card.mdx +9 -0
- package/src/Checkbox.mdx +10 -0
- package/src/Chip.mdx +4 -0
- package/src/ChipInput.mdx +12 -0
- package/src/CollapsibleSection.mdx +9 -0
- package/src/CommandPalette.mdx +14 -2
- package/src/ConfirmDialog.mdx +11 -0
- package/src/ContainerHeader.mdx +60 -0
- package/src/ContainerHeader.stories.tsx +62 -0
- package/src/ContainerHeader.test.tsx +47 -0
- package/src/ContainerHeader.tsx +45 -0
- package/src/DialogShell.mdx +14 -0
- package/src/Divider.mdx +9 -1
- package/src/EditableText.mdx +11 -0
- package/src/EmptyState.mdx +27 -4
- package/src/EmptyState.stories.tsx +6 -1
- package/src/EmptyState.test.tsx +18 -1
- package/src/EmptyState.tsx +14 -1
- package/src/Field.mdx +10 -1
- package/src/FieldLine.mdx +9 -1
- package/src/FilePicker.mdx +8 -0
- package/src/Form.mdx +10 -0
- package/src/Form.test.tsx +26 -0
- package/src/Form.tsx +7 -0
- package/src/IconButton.mdx +16 -2
- package/src/IconButton.stories.tsx +3 -0
- package/src/IconButton.test.tsx +25 -0
- package/src/IconButton.tsx +61 -46
- package/src/IdentityMenu.mdx +9 -0
- package/src/InlineChip.mdx +8 -0
- package/src/Kbd.mdx +4 -0
- package/src/Link.mdx +10 -0
- package/src/Menu.mdx +16 -1
- package/src/MenuItem.mdx +12 -2
- package/src/NavItem.mdx +8 -0
- package/src/Person.mdx +4 -0
- package/src/PersonTrigger.mdx +9 -0
- package/src/Popover.mdx +21 -0
- package/src/PreviewCard.mdx +19 -4
- package/src/PreviewCard.tsx +11 -4
- package/src/ProgressBar.mdx +8 -0
- package/src/Property.mdx +4 -0
- package/src/Rail.mdx +9 -1
- package/src/RailItem.mdx +8 -0
- package/src/Reaction.mdx +9 -0
- package/src/ReactionPicker.mdx +8 -0
- package/src/ScrollArea.mdx +13 -2
- package/src/SearchInput.mdx +9 -0
- package/src/SectionHeader.mdx +13 -0
- package/src/SectionHeader.stories.tsx +9 -0
- package/src/SectionHeader.test.tsx +9 -0
- package/src/SectionHeader.tsx +8 -2
- package/src/SectionLabel.mdx +4 -0
- package/src/Select.mdx +21 -2
- package/src/Select.stories.tsx +4 -1
- package/src/Select.test.tsx +17 -0
- package/src/Select.tsx +34 -13
- package/src/Sidebar.mdx +8 -0
- package/src/Skeleton.mdx +4 -0
- package/src/Tabs.mdx +12 -1
- package/src/TextInput.mdx +8 -0
- package/src/Textarea.mdx +8 -0
- package/src/Toast.mdx +12 -1
- package/src/Toolbar.mdx +11 -0
- package/src/Tooltip.mdx +26 -2
- package/src/Tooltip.stories.tsx +26 -0
- package/src/Tooltip.test.tsx +29 -0
- package/src/Tooltip.tsx +17 -4
- package/src/TopBar.mdx +4 -0
- package/src/eslint/no-rebuilt-behaviour.ts +1 -1
- package/src/eslint/no-restyled-part.ts +1 -0
- package/src/gates/app-checks.ts +23 -1
- package/src/gates/create-app.test.ts +77 -6
- package/src/gates/create-app.ts +288 -15
- package/src/gates/status.ts +16 -0
- package/src/index.ts +1 -0
- package/src/pages.test.ts +142 -0
- package/src/registry/app.test.ts +562 -0
- package/src/registry/app.ts +854 -0
- package/src/registry/build.ts +114 -25
- package/src/registry/cli.ts +105 -42
- package/src/registry/find.ts +45 -8
- package/src/registry/index.ts +8 -1
- package/src/registry/registry.test.ts +5 -5
- package/src/registry/schema.ts +163 -12
- package/tailwind-preset.js +22 -1
- package/dist/gates/chunk-AUXD4GCY.js.map +0 -7
- package/dist/gates/chunk-ZGJ2J5NU.js.map +0 -7
- package/dist/registry/build-GOVLABI6.js +0 -13
- package/dist/registry/chunk-IJNCYVH4.js.map +0 -7
- package/dist/registry/chunk-MRSBS5OP.js.map +0 -7
- package/dist/registry/chunk-QDYGB3QN.js.map +0 -7
- /package/dist/registry/{build-GOVLABI6.js.map → app-DQI6WLHR.js.map} +0 -0
package/registry.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"schemaVersion":
|
|
2
|
+
"schemaVersion": 2,
|
|
3
3
|
"builtFrom": {
|
|
4
|
+
"kind": "package",
|
|
4
5
|
"repo": "estiva-ui",
|
|
5
6
|
"package": "@estiva-app/ui",
|
|
6
|
-
"packageVersion": "0.
|
|
7
|
-
"exports":
|
|
8
|
-
"typeExports":
|
|
7
|
+
"packageVersion": "0.24.0",
|
|
8
|
+
"exports": 82,
|
|
9
|
+
"typeExports": 92,
|
|
10
|
+
"files": null
|
|
9
11
|
},
|
|
10
12
|
"storybook": {
|
|
11
13
|
"docsPath": "/?path=/docs/{docsId}",
|
|
@@ -85,7 +87,8 @@
|
|
|
85
87
|
"migrationStage": null,
|
|
86
88
|
"docsId": "frame-appshell--docs",
|
|
87
89
|
"storyId": "frame-appshell--solid",
|
|
88
|
-
"docPage": "src/AppShell.mdx"
|
|
90
|
+
"docPage": "src/AppShell.mdx",
|
|
91
|
+
"app": null
|
|
89
92
|
},
|
|
90
93
|
{
|
|
91
94
|
"name": "AttachmentCard",
|
|
@@ -187,7 +190,8 @@
|
|
|
187
190
|
"migrationStage": null,
|
|
188
191
|
"docsId": "components-attachmentcard--docs",
|
|
189
192
|
"storyId": "components-attachmentcard--document",
|
|
190
|
-
"docPage": "src/AttachmentCard.mdx"
|
|
193
|
+
"docPage": "src/AttachmentCard.mdx",
|
|
194
|
+
"app": null
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"name": "Avatar",
|
|
@@ -246,7 +250,8 @@
|
|
|
246
250
|
"migrationStage": null,
|
|
247
251
|
"docsId": "primitives-avatar--docs",
|
|
248
252
|
"storyId": "primitives-avatar--initials",
|
|
249
|
-
"docPage": "src/Avatar.mdx"
|
|
253
|
+
"docPage": "src/Avatar.mdx",
|
|
254
|
+
"app": null
|
|
250
255
|
},
|
|
251
256
|
{
|
|
252
257
|
"name": "AvatarGroup",
|
|
@@ -276,7 +281,8 @@
|
|
|
276
281
|
"migrationStage": null,
|
|
277
282
|
"docsId": "primitives-avatargroup--docs",
|
|
278
283
|
"storyId": "primitives-avatargroup--three-members",
|
|
279
|
-
"docPage": "src/AvatarGroup.mdx"
|
|
284
|
+
"docPage": "src/AvatarGroup.mdx",
|
|
285
|
+
"app": null
|
|
280
286
|
},
|
|
281
287
|
{
|
|
282
288
|
"name": "Banner",
|
|
@@ -295,9 +301,21 @@
|
|
|
295
301
|
},
|
|
296
302
|
{
|
|
297
303
|
"name": "children",
|
|
298
|
-
"takes": "
|
|
304
|
+
"takes": "anything",
|
|
299
305
|
"required": true,
|
|
300
|
-
"note":
|
|
306
|
+
"note": "The one line. Text, or text with a name in `font-medium`."
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "icon",
|
|
310
|
+
"takes": "anything",
|
|
311
|
+
"required": false,
|
|
312
|
+
"note": "A 16px icon before the line, in the tone's colour (Katerina, 2026-09-18: Peek's composer strip became a Banner)."
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"name": "action",
|
|
316
|
+
"takes": "a handler",
|
|
317
|
+
"required": false,
|
|
318
|
+
"note": "The one thing to do: the package's Button, muted and small, at the end of the line."
|
|
301
319
|
},
|
|
302
320
|
{
|
|
303
321
|
"name": "onDismiss",
|
|
@@ -339,7 +357,8 @@
|
|
|
339
357
|
"migrationStage": null,
|
|
340
358
|
"docsId": "feedback-banner--docs",
|
|
341
359
|
"storyId": "feedback-banner--ok",
|
|
342
|
-
"docPage": "src/Banner.mdx"
|
|
360
|
+
"docPage": "src/Banner.mdx",
|
|
361
|
+
"app": null
|
|
343
362
|
},
|
|
344
363
|
{
|
|
345
364
|
"name": "Breadcrumb",
|
|
@@ -369,7 +388,8 @@
|
|
|
369
388
|
"migrationStage": null,
|
|
370
389
|
"docsId": "navigation-breadcrumb--docs",
|
|
371
390
|
"storyId": "navigation-breadcrumb--on-an-item",
|
|
372
|
-
"docPage": "src/Breadcrumb.mdx"
|
|
391
|
+
"docPage": "src/Breadcrumb.mdx",
|
|
392
|
+
"app": null
|
|
373
393
|
},
|
|
374
394
|
{
|
|
375
395
|
"name": "Button",
|
|
@@ -448,7 +468,8 @@
|
|
|
448
468
|
"migrationStage": null,
|
|
449
469
|
"docsId": "primitives-button--docs",
|
|
450
470
|
"storyId": "primitives-button--primary",
|
|
451
|
-
"docPage": "src/Button.mdx"
|
|
471
|
+
"docPage": "src/Button.mdx",
|
|
472
|
+
"app": null
|
|
452
473
|
},
|
|
453
474
|
{
|
|
454
475
|
"name": "Card",
|
|
@@ -557,7 +578,8 @@
|
|
|
557
578
|
"migrationStage": null,
|
|
558
579
|
"docsId": "primitives-card--docs",
|
|
559
580
|
"storyId": "primitives-card--surface",
|
|
560
|
-
"docPage": "src/Card.mdx"
|
|
581
|
+
"docPage": "src/Card.mdx",
|
|
582
|
+
"app": null
|
|
561
583
|
},
|
|
562
584
|
{
|
|
563
585
|
"name": "Checkbox",
|
|
@@ -638,7 +660,8 @@
|
|
|
638
660
|
"migrationStage": null,
|
|
639
661
|
"docsId": "inputs-checkbox--docs",
|
|
640
662
|
"storyId": "inputs-checkbox--unchecked",
|
|
641
|
-
"docPage": "src/Checkbox.mdx"
|
|
663
|
+
"docPage": "src/Checkbox.mdx",
|
|
664
|
+
"app": null
|
|
642
665
|
},
|
|
643
666
|
{
|
|
644
667
|
"name": "Chip",
|
|
@@ -698,7 +721,8 @@
|
|
|
698
721
|
"migrationStage": null,
|
|
699
722
|
"docsId": "primitives-chip--docs",
|
|
700
723
|
"storyId": "primitives-chip--neutral",
|
|
701
|
-
"docPage": "src/Chip.mdx"
|
|
724
|
+
"docPage": "src/Chip.mdx",
|
|
725
|
+
"app": null
|
|
702
726
|
},
|
|
703
727
|
{
|
|
704
728
|
"name": "ChipInput",
|
|
@@ -799,7 +823,8 @@
|
|
|
799
823
|
"migrationStage": null,
|
|
800
824
|
"docsId": "inputs-chipinput--docs",
|
|
801
825
|
"storyId": "inputs-chipinput--type-to-search",
|
|
802
|
-
"docPage": "src/ChipInput.mdx"
|
|
826
|
+
"docPage": "src/ChipInput.mdx",
|
|
827
|
+
"app": null
|
|
803
828
|
},
|
|
804
829
|
{
|
|
805
830
|
"name": "cn",
|
|
@@ -816,7 +841,8 @@
|
|
|
816
841
|
"migrationStage": null,
|
|
817
842
|
"docsId": null,
|
|
818
843
|
"storyId": null,
|
|
819
|
-
"docPage": null
|
|
844
|
+
"docPage": null,
|
|
845
|
+
"app": null
|
|
820
846
|
},
|
|
821
847
|
{
|
|
822
848
|
"name": "CollapsibleSection",
|
|
@@ -913,7 +939,8 @@
|
|
|
913
939
|
"migrationStage": null,
|
|
914
940
|
"docsId": "navigation-collapsiblesection--docs",
|
|
915
941
|
"storyId": "navigation-collapsiblesection--default",
|
|
916
|
-
"docPage": "src/CollapsibleSection.mdx"
|
|
942
|
+
"docPage": "src/CollapsibleSection.mdx",
|
|
943
|
+
"app": null
|
|
917
944
|
},
|
|
918
945
|
{
|
|
919
946
|
"name": "CommandPalette",
|
|
@@ -988,7 +1015,8 @@
|
|
|
988
1015
|
"migrationStage": null,
|
|
989
1016
|
"docsId": "overlays-commandpalette--docs",
|
|
990
1017
|
"storyId": "overlays-commandpalette--first-level",
|
|
991
|
-
"docPage": "src/CommandPalette.mdx"
|
|
1018
|
+
"docPage": "src/CommandPalette.mdx",
|
|
1019
|
+
"app": null
|
|
992
1020
|
},
|
|
993
1021
|
{
|
|
994
1022
|
"name": "CommandPaletteAnswer",
|
|
@@ -1018,7 +1046,8 @@
|
|
|
1018
1046
|
"migrationStage": null,
|
|
1019
1047
|
"docsId": "overlays-commandpalette--docs",
|
|
1020
1048
|
"storyId": "overlays-commandpalette--first-level",
|
|
1021
|
-
"docPage": null
|
|
1049
|
+
"docPage": null,
|
|
1050
|
+
"app": null
|
|
1022
1051
|
},
|
|
1023
1052
|
{
|
|
1024
1053
|
"name": "CommandPaletteForm",
|
|
@@ -1084,7 +1113,8 @@
|
|
|
1084
1113
|
"migrationStage": null,
|
|
1085
1114
|
"docsId": "overlays-commandpalette--docs",
|
|
1086
1115
|
"storyId": "overlays-commandpalette--first-level",
|
|
1087
|
-
"docPage": null
|
|
1116
|
+
"docPage": null,
|
|
1117
|
+
"app": null
|
|
1088
1118
|
},
|
|
1089
1119
|
{
|
|
1090
1120
|
"name": "CommandPaletteQuote",
|
|
@@ -1108,7 +1138,8 @@
|
|
|
1108
1138
|
"migrationStage": null,
|
|
1109
1139
|
"docsId": "overlays-commandpalette--docs",
|
|
1110
1140
|
"storyId": "overlays-commandpalette--first-level",
|
|
1111
|
-
"docPage": null
|
|
1141
|
+
"docPage": null,
|
|
1142
|
+
"app": null
|
|
1112
1143
|
},
|
|
1113
1144
|
{
|
|
1114
1145
|
"name": "CommandPaletteSearch",
|
|
@@ -1180,7 +1211,8 @@
|
|
|
1180
1211
|
"migrationStage": null,
|
|
1181
1212
|
"docsId": "overlays-commandpalette--docs",
|
|
1182
1213
|
"storyId": "overlays-commandpalette--first-level",
|
|
1183
|
-
"docPage": null
|
|
1214
|
+
"docPage": null,
|
|
1215
|
+
"app": null
|
|
1184
1216
|
},
|
|
1185
1217
|
{
|
|
1186
1218
|
"name": "CommandPaletteWorking",
|
|
@@ -1210,7 +1242,8 @@
|
|
|
1210
1242
|
"migrationStage": null,
|
|
1211
1243
|
"docsId": "overlays-commandpalette--docs",
|
|
1212
1244
|
"storyId": "overlays-commandpalette--first-level",
|
|
1213
|
-
"docPage": null
|
|
1245
|
+
"docPage": null,
|
|
1246
|
+
"app": null
|
|
1214
1247
|
},
|
|
1215
1248
|
{
|
|
1216
1249
|
"name": "ConfirmDialog",
|
|
@@ -1277,7 +1310,51 @@
|
|
|
1277
1310
|
"migrationStage": null,
|
|
1278
1311
|
"docsId": "overlays-confirmdialog--docs",
|
|
1279
1312
|
"storyId": "overlays-confirmdialog--destructive",
|
|
1280
|
-
"docPage": "src/ConfirmDialog.mdx"
|
|
1313
|
+
"docPage": "src/ConfirmDialog.mdx",
|
|
1314
|
+
"app": null
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"name": "ContainerHeader",
|
|
1318
|
+
"repo": "estiva-ui",
|
|
1319
|
+
"kind": "component",
|
|
1320
|
+
"importPath": "@estiva-app/ui",
|
|
1321
|
+
"sourceFile": "src/ContainerHeader.tsx",
|
|
1322
|
+
"purpose": "The bar across the top of a column — a list, a thread, a side panel: its title, and the buttons that act on the whole column at the right edge. 48px, with a hairline under it.",
|
|
1323
|
+
"purposeFrom": "page",
|
|
1324
|
+
"props": [
|
|
1325
|
+
{
|
|
1326
|
+
"name": "title",
|
|
1327
|
+
"takes": "anything",
|
|
1328
|
+
"required": true,
|
|
1329
|
+
"note": "A string keeps the one-line treatment; a node is drawn as given."
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"name": "chevron",
|
|
1333
|
+
"takes": "true/false",
|
|
1334
|
+
"required": false,
|
|
1335
|
+
"note": "A chevron after the title, for a title that opens something."
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"name": "actions",
|
|
1339
|
+
"takes": "anything",
|
|
1340
|
+
"required": false,
|
|
1341
|
+
"note": "The column's own buttons, at the right edge: IconButtons with tooltips, 4px apart."
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"name": "className",
|
|
1345
|
+
"takes": "text",
|
|
1346
|
+
"required": false,
|
|
1347
|
+
"note": null
|
|
1348
|
+
}
|
|
1349
|
+
],
|
|
1350
|
+
"variants": [],
|
|
1351
|
+
"ownsBehaviours": [],
|
|
1352
|
+
"status": "stable",
|
|
1353
|
+
"migrationStage": null,
|
|
1354
|
+
"docsId": "navigation-containerheader--docs",
|
|
1355
|
+
"storyId": "navigation-containerheader--default",
|
|
1356
|
+
"docPage": "src/ContainerHeader.mdx",
|
|
1357
|
+
"app": null
|
|
1281
1358
|
},
|
|
1282
1359
|
{
|
|
1283
1360
|
"name": "DialogShell",
|
|
@@ -1359,7 +1436,7 @@
|
|
|
1359
1436
|
},
|
|
1360
1437
|
{
|
|
1361
1438
|
"id": "page-keys",
|
|
1362
|
-
"behaviour": "
|
|
1439
|
+
"behaviour": "Takes its keys by itself"
|
|
1363
1440
|
},
|
|
1364
1441
|
{
|
|
1365
1442
|
"id": "focus",
|
|
@@ -1378,7 +1455,8 @@
|
|
|
1378
1455
|
"migrationStage": null,
|
|
1379
1456
|
"docsId": "overlays-dialogshell--docs",
|
|
1380
1457
|
"storyId": "overlays-dialogshell--default",
|
|
1381
|
-
"docPage": "src/DialogShell.mdx"
|
|
1458
|
+
"docPage": "src/DialogShell.mdx",
|
|
1459
|
+
"app": null
|
|
1382
1460
|
},
|
|
1383
1461
|
{
|
|
1384
1462
|
"name": "Divider",
|
|
@@ -1444,7 +1522,8 @@
|
|
|
1444
1522
|
"migrationStage": null,
|
|
1445
1523
|
"docsId": "primitives-divider--docs",
|
|
1446
1524
|
"storyId": "primitives-divider--default",
|
|
1447
|
-
"docPage": "src/Divider.mdx"
|
|
1525
|
+
"docPage": "src/Divider.mdx",
|
|
1526
|
+
"app": null
|
|
1448
1527
|
},
|
|
1449
1528
|
{
|
|
1450
1529
|
"name": "EditableText",
|
|
@@ -1516,7 +1595,8 @@
|
|
|
1516
1595
|
"migrationStage": null,
|
|
1517
1596
|
"docsId": "inputs-editabletext--docs",
|
|
1518
1597
|
"storyId": "inputs-editabletext--title",
|
|
1519
|
-
"docPage": "src/EditableText.mdx"
|
|
1598
|
+
"docPage": "src/EditableText.mdx",
|
|
1599
|
+
"app": null
|
|
1520
1600
|
},
|
|
1521
1601
|
{
|
|
1522
1602
|
"name": "EmptyState",
|
|
@@ -1545,6 +1625,12 @@
|
|
|
1545
1625
|
"required": false,
|
|
1546
1626
|
"note": "`page` when the whole page is empty; `section` when one part of it is."
|
|
1547
1627
|
},
|
|
1628
|
+
{
|
|
1629
|
+
"name": "action",
|
|
1630
|
+
"takes": "a handler",
|
|
1631
|
+
"required": false,
|
|
1632
|
+
"note": "The one thing to do about it — \"New topic\", \"Try again\" — drawn 16px under the line as the package's Button, outlined (Katerina, 2026-09-18)."
|
|
1633
|
+
},
|
|
1548
1634
|
{
|
|
1549
1635
|
"name": "className",
|
|
1550
1636
|
"takes": "text",
|
|
@@ -1566,7 +1652,8 @@
|
|
|
1566
1652
|
"migrationStage": null,
|
|
1567
1653
|
"docsId": "feedback-emptystate--docs",
|
|
1568
1654
|
"storyId": "feedback-emptystate--page",
|
|
1569
|
-
"docPage": "src/EmptyState.mdx"
|
|
1655
|
+
"docPage": "src/EmptyState.mdx",
|
|
1656
|
+
"app": null
|
|
1570
1657
|
},
|
|
1571
1658
|
{
|
|
1572
1659
|
"name": "EnterHint",
|
|
@@ -1590,7 +1677,8 @@
|
|
|
1590
1677
|
"migrationStage": null,
|
|
1591
1678
|
"docsId": "overlays-menu--docs",
|
|
1592
1679
|
"storyId": "overlays-menu--items",
|
|
1593
|
-
"docPage": null
|
|
1680
|
+
"docPage": null,
|
|
1681
|
+
"app": null
|
|
1594
1682
|
},
|
|
1595
1683
|
{
|
|
1596
1684
|
"name": "Field",
|
|
@@ -1643,7 +1731,8 @@
|
|
|
1643
1731
|
"migrationStage": null,
|
|
1644
1732
|
"docsId": "inputs-field--docs",
|
|
1645
1733
|
"storyId": "inputs-field--default",
|
|
1646
|
-
"docPage": "src/Field.mdx"
|
|
1734
|
+
"docPage": "src/Field.mdx",
|
|
1735
|
+
"app": null
|
|
1647
1736
|
},
|
|
1648
1737
|
{
|
|
1649
1738
|
"name": "FieldLine",
|
|
@@ -1693,7 +1782,8 @@
|
|
|
1693
1782
|
"migrationStage": null,
|
|
1694
1783
|
"docsId": "inputs-field-line--docs",
|
|
1695
1784
|
"storyId": "inputs-field-line--helper",
|
|
1696
|
-
"docPage": "src/FieldLine.mdx"
|
|
1785
|
+
"docPage": "src/FieldLine.mdx",
|
|
1786
|
+
"app": null
|
|
1697
1787
|
},
|
|
1698
1788
|
{
|
|
1699
1789
|
"name": "FilePicker",
|
|
@@ -1717,7 +1807,8 @@
|
|
|
1717
1807
|
"migrationStage": null,
|
|
1718
1808
|
"docsId": "inputs-filepicker--docs",
|
|
1719
1809
|
"storyId": "inputs-filepicker--default",
|
|
1720
|
-
"docPage": "src/FilePicker.mdx"
|
|
1810
|
+
"docPage": "src/FilePicker.mdx",
|
|
1811
|
+
"app": null
|
|
1721
1812
|
},
|
|
1722
1813
|
{
|
|
1723
1814
|
"name": "Form",
|
|
@@ -1764,7 +1855,8 @@
|
|
|
1764
1855
|
"migrationStage": null,
|
|
1765
1856
|
"docsId": "inputs-form--docs",
|
|
1766
1857
|
"storyId": "inputs-form--default",
|
|
1767
|
-
"docPage": "src/Form.mdx"
|
|
1858
|
+
"docPage": "src/Form.mdx",
|
|
1859
|
+
"app": null
|
|
1768
1860
|
},
|
|
1769
1861
|
{
|
|
1770
1862
|
"name": "hueFor",
|
|
@@ -1781,7 +1873,8 @@
|
|
|
1781
1873
|
"migrationStage": null,
|
|
1782
1874
|
"docsId": "primitives-avatar--docs",
|
|
1783
1875
|
"storyId": "primitives-avatar--initials",
|
|
1784
|
-
"docPage": null
|
|
1876
|
+
"docPage": null,
|
|
1877
|
+
"app": null
|
|
1785
1878
|
},
|
|
1786
1879
|
{
|
|
1787
1880
|
"name": "IconButton",
|
|
@@ -1834,6 +1927,12 @@
|
|
|
1834
1927
|
"required": false,
|
|
1835
1928
|
"note": "Why the action cannot succeed right now."
|
|
1836
1929
|
},
|
|
1930
|
+
{
|
|
1931
|
+
"name": "href",
|
|
1932
|
+
"takes": "text",
|
|
1933
|
+
"required": false,
|
|
1934
|
+
"note": "A link that looks like an icon button: an anchor, so the address stays real for a modified click or a new tab, as `Link` keeps it."
|
|
1935
|
+
},
|
|
1837
1936
|
{
|
|
1838
1937
|
"name": "children",
|
|
1839
1938
|
"takes": "anything",
|
|
@@ -1878,7 +1977,8 @@
|
|
|
1878
1977
|
"migrationStage": null,
|
|
1879
1978
|
"docsId": "primitives-iconbutton--docs",
|
|
1880
1979
|
"storyId": "primitives-iconbutton--muted",
|
|
1881
|
-
"docPage": "src/IconButton.mdx"
|
|
1980
|
+
"docPage": "src/IconButton.mdx",
|
|
1981
|
+
"app": null
|
|
1882
1982
|
},
|
|
1883
1983
|
{
|
|
1884
1984
|
"name": "IdentityMenu",
|
|
@@ -1950,7 +2050,8 @@
|
|
|
1950
2050
|
"migrationStage": null,
|
|
1951
2051
|
"docsId": "navigation-identitymenu--docs",
|
|
1952
2052
|
"storyId": "navigation-identitymenu--anonymous",
|
|
1953
|
-
"docPage": "src/IdentityMenu.mdx"
|
|
2053
|
+
"docPage": "src/IdentityMenu.mdx",
|
|
2054
|
+
"app": null
|
|
1954
2055
|
},
|
|
1955
2056
|
{
|
|
1956
2057
|
"name": "IdentityPanel",
|
|
@@ -2022,7 +2123,8 @@
|
|
|
2022
2123
|
"migrationStage": null,
|
|
2023
2124
|
"docsId": "navigation-identitymenu--docs",
|
|
2024
2125
|
"storyId": "navigation-identitymenu--anonymous",
|
|
2025
|
-
"docPage": null
|
|
2126
|
+
"docPage": null,
|
|
2127
|
+
"app": null
|
|
2026
2128
|
},
|
|
2027
2129
|
{
|
|
2028
2130
|
"name": "initialsFor",
|
|
@@ -2039,7 +2141,8 @@
|
|
|
2039
2141
|
"migrationStage": null,
|
|
2040
2142
|
"docsId": "primitives-avatar--docs",
|
|
2041
2143
|
"storyId": "primitives-avatar--initials",
|
|
2042
|
-
"docPage": null
|
|
2144
|
+
"docPage": null,
|
|
2145
|
+
"app": null
|
|
2043
2146
|
},
|
|
2044
2147
|
{
|
|
2045
2148
|
"name": "INLINE_CHIP_CLASSES",
|
|
@@ -2056,7 +2159,8 @@
|
|
|
2056
2159
|
"migrationStage": null,
|
|
2057
2160
|
"docsId": "components-inlinechip--docs",
|
|
2058
2161
|
"storyId": "components-inlinechip--neutral",
|
|
2059
|
-
"docPage": null
|
|
2162
|
+
"docPage": null,
|
|
2163
|
+
"app": null
|
|
2060
2164
|
},
|
|
2061
2165
|
{
|
|
2062
2166
|
"name": "INLINE_CHIP_TONE_CLASSES",
|
|
@@ -2073,7 +2177,8 @@
|
|
|
2073
2177
|
"migrationStage": null,
|
|
2074
2178
|
"docsId": "components-inlinechip--docs",
|
|
2075
2179
|
"storyId": "components-inlinechip--neutral",
|
|
2076
|
-
"docPage": null
|
|
2180
|
+
"docPage": null,
|
|
2181
|
+
"app": null
|
|
2077
2182
|
},
|
|
2078
2183
|
{
|
|
2079
2184
|
"name": "InlineChip",
|
|
@@ -2115,7 +2220,8 @@
|
|
|
2115
2220
|
"migrationStage": null,
|
|
2116
2221
|
"docsId": "components-inlinechip--docs",
|
|
2117
2222
|
"storyId": "components-inlinechip--neutral",
|
|
2118
|
-
"docPage": "src/InlineChip.mdx"
|
|
2223
|
+
"docPage": "src/InlineChip.mdx",
|
|
2224
|
+
"app": null
|
|
2119
2225
|
},
|
|
2120
2226
|
{
|
|
2121
2227
|
"name": "inlineChipClassName",
|
|
@@ -2132,7 +2238,8 @@
|
|
|
2132
2238
|
"migrationStage": null,
|
|
2133
2239
|
"docsId": "components-inlinechip--docs",
|
|
2134
2240
|
"storyId": "components-inlinechip--neutral",
|
|
2135
|
-
"docPage": null
|
|
2241
|
+
"docPage": null,
|
|
2242
|
+
"app": null
|
|
2136
2243
|
},
|
|
2137
2244
|
{
|
|
2138
2245
|
"name": "InputChip",
|
|
@@ -2186,7 +2293,8 @@
|
|
|
2186
2293
|
"migrationStage": null,
|
|
2187
2294
|
"docsId": "inputs-chipinput--docs",
|
|
2188
2295
|
"storyId": "inputs-chipinput--type-to-search",
|
|
2189
|
-
"docPage": null
|
|
2296
|
+
"docPage": null,
|
|
2297
|
+
"app": null
|
|
2190
2298
|
},
|
|
2191
2299
|
{
|
|
2192
2300
|
"name": "Kbd",
|
|
@@ -2216,7 +2324,8 @@
|
|
|
2216
2324
|
"migrationStage": null,
|
|
2217
2325
|
"docsId": "primitives-kbd--docs",
|
|
2218
2326
|
"storyId": "primitives-kbd--default",
|
|
2219
|
-
"docPage": "src/Kbd.mdx"
|
|
2327
|
+
"docPage": "src/Kbd.mdx",
|
|
2328
|
+
"app": null
|
|
2220
2329
|
},
|
|
2221
2330
|
{
|
|
2222
2331
|
"name": "Link",
|
|
@@ -2283,7 +2392,8 @@
|
|
|
2283
2392
|
"migrationStage": null,
|
|
2284
2393
|
"docsId": "navigation-link--docs",
|
|
2285
2394
|
"storyId": "navigation-link--text",
|
|
2286
|
-
"docPage": "src/Link.mdx"
|
|
2395
|
+
"docPage": "src/Link.mdx",
|
|
2396
|
+
"app": null
|
|
2287
2397
|
},
|
|
2288
2398
|
{
|
|
2289
2399
|
"name": "Menu",
|
|
@@ -2373,7 +2483,7 @@
|
|
|
2373
2483
|
},
|
|
2374
2484
|
{
|
|
2375
2485
|
"id": "page-keys",
|
|
2376
|
-
"behaviour": "
|
|
2486
|
+
"behaviour": "Takes its keys by itself"
|
|
2377
2487
|
},
|
|
2378
2488
|
{
|
|
2379
2489
|
"id": "follow",
|
|
@@ -2392,7 +2502,8 @@
|
|
|
2392
2502
|
"migrationStage": null,
|
|
2393
2503
|
"docsId": "overlays-menu--docs",
|
|
2394
2504
|
"storyId": "overlays-menu--items",
|
|
2395
|
-
"docPage": "src/Menu.mdx"
|
|
2505
|
+
"docPage": "src/Menu.mdx",
|
|
2506
|
+
"app": null
|
|
2396
2507
|
},
|
|
2397
2508
|
{
|
|
2398
2509
|
"name": "MenuItem",
|
|
@@ -2484,7 +2595,8 @@
|
|
|
2484
2595
|
"migrationStage": null,
|
|
2485
2596
|
"docsId": "overlays-menuitem--docs",
|
|
2486
2597
|
"storyId": "overlays-menuitem--default",
|
|
2487
|
-
"docPage": "src/MenuItem.mdx"
|
|
2598
|
+
"docPage": "src/MenuItem.mdx",
|
|
2599
|
+
"app": null
|
|
2488
2600
|
},
|
|
2489
2601
|
{
|
|
2490
2602
|
"name": "MenuPanel",
|
|
@@ -2508,7 +2620,8 @@
|
|
|
2508
2620
|
"migrationStage": null,
|
|
2509
2621
|
"docsId": "overlays-menu--docs",
|
|
2510
2622
|
"storyId": "overlays-menu--items",
|
|
2511
|
-
"docPage": null
|
|
2623
|
+
"docPage": null,
|
|
2624
|
+
"app": null
|
|
2512
2625
|
},
|
|
2513
2626
|
{
|
|
2514
2627
|
"name": "MenuRow",
|
|
@@ -2538,7 +2651,8 @@
|
|
|
2538
2651
|
"migrationStage": null,
|
|
2539
2652
|
"docsId": "overlays-menu--docs",
|
|
2540
2653
|
"storyId": "overlays-menu--items",
|
|
2541
|
-
"docPage": null
|
|
2654
|
+
"docPage": null,
|
|
2655
|
+
"app": null
|
|
2542
2656
|
},
|
|
2543
2657
|
{
|
|
2544
2658
|
"name": "MenuSection",
|
|
@@ -2574,7 +2688,8 @@
|
|
|
2574
2688
|
"migrationStage": null,
|
|
2575
2689
|
"docsId": "overlays-menu--docs",
|
|
2576
2690
|
"storyId": "overlays-menu--items",
|
|
2577
|
-
"docPage": null
|
|
2691
|
+
"docPage": null,
|
|
2692
|
+
"app": null
|
|
2578
2693
|
},
|
|
2579
2694
|
{
|
|
2580
2695
|
"name": "MenuSub",
|
|
@@ -2622,7 +2737,8 @@
|
|
|
2622
2737
|
"migrationStage": null,
|
|
2623
2738
|
"docsId": "overlays-menu--docs",
|
|
2624
2739
|
"storyId": "overlays-menu--items",
|
|
2625
|
-
"docPage": null
|
|
2740
|
+
"docPage": null,
|
|
2741
|
+
"app": null
|
|
2626
2742
|
},
|
|
2627
2743
|
{
|
|
2628
2744
|
"name": "NavItem",
|
|
@@ -2682,7 +2798,8 @@
|
|
|
2682
2798
|
"migrationStage": null,
|
|
2683
2799
|
"docsId": "frame-navitem--docs",
|
|
2684
2800
|
"storyId": "frame-navitem--default",
|
|
2685
|
-
"docPage": "src/NavItem.mdx"
|
|
2801
|
+
"docPage": "src/NavItem.mdx",
|
|
2802
|
+
"app": null
|
|
2686
2803
|
},
|
|
2687
2804
|
{
|
|
2688
2805
|
"name": "Person",
|
|
@@ -2730,7 +2847,8 @@
|
|
|
2730
2847
|
"migrationStage": null,
|
|
2731
2848
|
"docsId": "components-person--docs",
|
|
2732
2849
|
"storyId": "components-person--named",
|
|
2733
|
-
"docPage": "src/Person.mdx"
|
|
2850
|
+
"docPage": "src/Person.mdx",
|
|
2851
|
+
"app": null
|
|
2734
2852
|
},
|
|
2735
2853
|
{
|
|
2736
2854
|
"name": "PersonTrigger",
|
|
@@ -2784,7 +2902,8 @@
|
|
|
2784
2902
|
"migrationStage": null,
|
|
2785
2903
|
"docsId": "components-persontrigger--docs",
|
|
2786
2904
|
"storyId": "components-persontrigger--row",
|
|
2787
|
-
"docPage": "src/PersonTrigger.mdx"
|
|
2905
|
+
"docPage": "src/PersonTrigger.mdx",
|
|
2906
|
+
"app": null
|
|
2788
2907
|
},
|
|
2789
2908
|
{
|
|
2790
2909
|
"name": "Popover",
|
|
@@ -2906,7 +3025,7 @@
|
|
|
2906
3025
|
},
|
|
2907
3026
|
{
|
|
2908
3027
|
"id": "page-keys",
|
|
2909
|
-
"behaviour": "
|
|
3028
|
+
"behaviour": "Takes its keys by itself"
|
|
2910
3029
|
},
|
|
2911
3030
|
{
|
|
2912
3031
|
"id": "follow",
|
|
@@ -2917,7 +3036,8 @@
|
|
|
2917
3036
|
"migrationStage": null,
|
|
2918
3037
|
"docsId": "overlays-popover--docs",
|
|
2919
3038
|
"storyId": "overlays-popover--default",
|
|
2920
|
-
"docPage": "src/Popover.mdx"
|
|
3039
|
+
"docPage": "src/Popover.mdx",
|
|
3040
|
+
"app": null
|
|
2921
3041
|
},
|
|
2922
3042
|
{
|
|
2923
3043
|
"name": "PreviewCard",
|
|
@@ -2962,7 +3082,13 @@
|
|
|
2962
3082
|
"name": "className",
|
|
2963
3083
|
"takes": "text",
|
|
2964
3084
|
"required": false,
|
|
2965
|
-
"note": "On the card's surface: its width
|
|
3085
|
+
"note": "On the card's surface: its width."
|
|
3086
|
+
},
|
|
3087
|
+
{
|
|
3088
|
+
"name": "contentClassName",
|
|
3089
|
+
"takes": "text",
|
|
3090
|
+
"required": false,
|
|
3091
|
+
"note": "On the scrolling content: its padding (default 12px) and rhythm."
|
|
2966
3092
|
},
|
|
2967
3093
|
{
|
|
2968
3094
|
"name": "wrapperClassName",
|
|
@@ -3004,7 +3130,8 @@
|
|
|
3004
3130
|
"migrationStage": null,
|
|
3005
3131
|
"docsId": "overlays-previewcard--docs",
|
|
3006
3132
|
"storyId": "overlays-previewcard--default",
|
|
3007
|
-
"docPage": "src/PreviewCard.mdx"
|
|
3133
|
+
"docPage": "src/PreviewCard.mdx",
|
|
3134
|
+
"app": null
|
|
3008
3135
|
},
|
|
3009
3136
|
{
|
|
3010
3137
|
"name": "ProgressBar",
|
|
@@ -3069,7 +3196,8 @@
|
|
|
3069
3196
|
"migrationStage": null,
|
|
3070
3197
|
"docsId": "feedback-progressbar--docs",
|
|
3071
3198
|
"storyId": "feedback-progressbar--default",
|
|
3072
|
-
"docPage": "src/ProgressBar.mdx"
|
|
3199
|
+
"docPage": "src/ProgressBar.mdx",
|
|
3200
|
+
"app": null
|
|
3073
3201
|
},
|
|
3074
3202
|
{
|
|
3075
3203
|
"name": "Property",
|
|
@@ -3119,7 +3247,8 @@
|
|
|
3119
3247
|
"migrationStage": null,
|
|
3120
3248
|
"docsId": "primitives-property--docs",
|
|
3121
3249
|
"storyId": "primitives-property--row",
|
|
3122
|
-
"docPage": "src/Property.mdx"
|
|
3250
|
+
"docPage": "src/Property.mdx",
|
|
3251
|
+
"app": null
|
|
3123
3252
|
},
|
|
3124
3253
|
{
|
|
3125
3254
|
"name": "Rail",
|
|
@@ -3155,7 +3284,8 @@
|
|
|
3155
3284
|
"migrationStage": null,
|
|
3156
3285
|
"docsId": "frame-rail--docs",
|
|
3157
3286
|
"storyId": "frame-rail--default",
|
|
3158
|
-
"docPage": "src/Rail.mdx"
|
|
3287
|
+
"docPage": "src/Rail.mdx",
|
|
3288
|
+
"app": null
|
|
3159
3289
|
},
|
|
3160
3290
|
{
|
|
3161
3291
|
"name": "RailItem",
|
|
@@ -3203,7 +3333,8 @@
|
|
|
3203
3333
|
"migrationStage": null,
|
|
3204
3334
|
"docsId": "frame-railitem--docs",
|
|
3205
3335
|
"storyId": "frame-railitem--default",
|
|
3206
|
-
"docPage": "src/RailItem.mdx"
|
|
3336
|
+
"docPage": "src/RailItem.mdx",
|
|
3337
|
+
"app": null
|
|
3207
3338
|
},
|
|
3208
3339
|
{
|
|
3209
3340
|
"name": "Reaction",
|
|
@@ -3250,7 +3381,8 @@
|
|
|
3250
3381
|
"migrationStage": null,
|
|
3251
3382
|
"docsId": "components-reaction--docs",
|
|
3252
3383
|
"storyId": "components-reaction--default",
|
|
3253
|
-
"docPage": "src/Reaction.mdx"
|
|
3384
|
+
"docPage": "src/Reaction.mdx",
|
|
3385
|
+
"app": null
|
|
3254
3386
|
},
|
|
3255
3387
|
{
|
|
3256
3388
|
"name": "ReactionPicker",
|
|
@@ -3298,7 +3430,8 @@
|
|
|
3298
3430
|
"migrationStage": null,
|
|
3299
3431
|
"docsId": "components-reactionpicker--docs",
|
|
3300
3432
|
"storyId": "components-reactionpicker--default",
|
|
3301
|
-
"docPage": "src/ReactionPicker.mdx"
|
|
3433
|
+
"docPage": "src/ReactionPicker.mdx",
|
|
3434
|
+
"app": null
|
|
3302
3435
|
},
|
|
3303
3436
|
{
|
|
3304
3437
|
"name": "ScrollArea",
|
|
@@ -3376,7 +3509,8 @@
|
|
|
3376
3509
|
"migrationStage": null,
|
|
3377
3510
|
"docsId": "layout-scrollarea--docs",
|
|
3378
3511
|
"storyId": "layout-scrollarea--default",
|
|
3379
|
-
"docPage": "src/ScrollArea.mdx"
|
|
3512
|
+
"docPage": "src/ScrollArea.mdx",
|
|
3513
|
+
"app": null
|
|
3380
3514
|
},
|
|
3381
3515
|
{
|
|
3382
3516
|
"name": "SearchInput",
|
|
@@ -3411,7 +3545,8 @@
|
|
|
3411
3545
|
"migrationStage": null,
|
|
3412
3546
|
"docsId": "inputs-searchinput--docs",
|
|
3413
3547
|
"storyId": "inputs-searchinput--default",
|
|
3414
|
-
"docPage": "src/SearchInput.mdx"
|
|
3548
|
+
"docPage": "src/SearchInput.mdx",
|
|
3549
|
+
"app": null
|
|
3415
3550
|
},
|
|
3416
3551
|
{
|
|
3417
3552
|
"name": "SectionHeader",
|
|
@@ -3464,6 +3599,12 @@
|
|
|
3464
3599
|
"required": false,
|
|
3465
3600
|
"note": "`hover` reveals the actions while the row is hovered or focused; `always` keeps them."
|
|
3466
3601
|
},
|
|
3602
|
+
{
|
|
3603
|
+
"name": "hover",
|
|
3604
|
+
"takes": "fill | none",
|
|
3605
|
+
"required": false,
|
|
3606
|
+
"note": "`fill` lights the row under the pointer when it does something (a toggle, actions); `none` keeps it still — a heading whose actions are always shown, where the buttons light up on their own (UIG-14, Katerina, 19 September)."
|
|
3607
|
+
},
|
|
3467
3608
|
{
|
|
3468
3609
|
"name": "render",
|
|
3469
3610
|
"takes": "useRender.RenderProp",
|
|
@@ -3484,6 +3625,13 @@
|
|
|
3484
3625
|
"hover",
|
|
3485
3626
|
"always"
|
|
3486
3627
|
]
|
|
3628
|
+
},
|
|
3629
|
+
{
|
|
3630
|
+
"prop": "hover",
|
|
3631
|
+
"values": [
|
|
3632
|
+
"fill",
|
|
3633
|
+
"none"
|
|
3634
|
+
]
|
|
3487
3635
|
}
|
|
3488
3636
|
],
|
|
3489
3637
|
"ownsBehaviours": [],
|
|
@@ -3491,7 +3639,8 @@
|
|
|
3491
3639
|
"migrationStage": null,
|
|
3492
3640
|
"docsId": "navigation-sectionheader--docs",
|
|
3493
3641
|
"storyId": "navigation-sectionheader--plain",
|
|
3494
|
-
"docPage": "src/SectionHeader.mdx"
|
|
3642
|
+
"docPage": "src/SectionHeader.mdx",
|
|
3643
|
+
"app": null
|
|
3495
3644
|
},
|
|
3496
3645
|
{
|
|
3497
3646
|
"name": "SectionLabel",
|
|
@@ -3535,7 +3684,8 @@
|
|
|
3535
3684
|
"migrationStage": null,
|
|
3536
3685
|
"docsId": "primitives-sectionlabel--docs",
|
|
3537
3686
|
"storyId": "primitives-sectionlabel--default",
|
|
3538
|
-
"docPage": "src/SectionLabel.mdx"
|
|
3687
|
+
"docPage": "src/SectionLabel.mdx",
|
|
3688
|
+
"app": null
|
|
3539
3689
|
},
|
|
3540
3690
|
{
|
|
3541
3691
|
"name": "Select",
|
|
@@ -3594,6 +3744,12 @@
|
|
|
3594
3744
|
"required": false,
|
|
3595
3745
|
"note": null
|
|
3596
3746
|
},
|
|
3747
|
+
{
|
|
3748
|
+
"name": "disabledReason",
|
|
3749
|
+
"takes": "text",
|
|
3750
|
+
"required": false,
|
|
3751
|
+
"note": "Why it cannot be changed right now (UIG-14, Katerina, 19 September)."
|
|
3752
|
+
},
|
|
3597
3753
|
{
|
|
3598
3754
|
"name": "className",
|
|
3599
3755
|
"takes": "text",
|
|
@@ -3625,7 +3781,7 @@
|
|
|
3625
3781
|
},
|
|
3626
3782
|
{
|
|
3627
3783
|
"id": "page-keys",
|
|
3628
|
-
"behaviour": "
|
|
3784
|
+
"behaviour": "Takes its keys by itself"
|
|
3629
3785
|
},
|
|
3630
3786
|
{
|
|
3631
3787
|
"id": "follow",
|
|
@@ -3644,7 +3800,8 @@
|
|
|
3644
3800
|
"migrationStage": null,
|
|
3645
3801
|
"docsId": "inputs-select--docs",
|
|
3646
3802
|
"storyId": "inputs-select--default",
|
|
3647
|
-
"docPage": "src/Select.mdx"
|
|
3803
|
+
"docPage": "src/Select.mdx",
|
|
3804
|
+
"app": null
|
|
3648
3805
|
},
|
|
3649
3806
|
{
|
|
3650
3807
|
"name": "Sidebar",
|
|
@@ -3680,7 +3837,8 @@
|
|
|
3680
3837
|
"migrationStage": null,
|
|
3681
3838
|
"docsId": "frame-sidebar--docs",
|
|
3682
3839
|
"storyId": "frame-sidebar--composed",
|
|
3683
|
-
"docPage": "src/Sidebar.mdx"
|
|
3840
|
+
"docPage": "src/Sidebar.mdx",
|
|
3841
|
+
"app": null
|
|
3684
3842
|
},
|
|
3685
3843
|
{
|
|
3686
3844
|
"name": "SkeletonBar",
|
|
@@ -3710,7 +3868,8 @@
|
|
|
3710
3868
|
"migrationStage": null,
|
|
3711
3869
|
"docsId": "feedback-skeleton--docs",
|
|
3712
3870
|
"storyId": "feedback-skeleton--list",
|
|
3713
|
-
"docPage": null
|
|
3871
|
+
"docPage": null,
|
|
3872
|
+
"app": null
|
|
3714
3873
|
},
|
|
3715
3874
|
{
|
|
3716
3875
|
"name": "SkeletonList",
|
|
@@ -3740,7 +3899,8 @@
|
|
|
3740
3899
|
"migrationStage": null,
|
|
3741
3900
|
"docsId": "feedback-skeleton--docs",
|
|
3742
3901
|
"storyId": "feedback-skeleton--list",
|
|
3743
|
-
"docPage": null
|
|
3902
|
+
"docPage": null,
|
|
3903
|
+
"app": null
|
|
3744
3904
|
},
|
|
3745
3905
|
{
|
|
3746
3906
|
"name": "SkeletonRow",
|
|
@@ -3764,7 +3924,8 @@
|
|
|
3764
3924
|
"migrationStage": null,
|
|
3765
3925
|
"docsId": "feedback-skeleton--docs",
|
|
3766
3926
|
"storyId": "feedback-skeleton--list",
|
|
3767
|
-
"docPage": null
|
|
3927
|
+
"docPage": null,
|
|
3928
|
+
"app": null
|
|
3768
3929
|
},
|
|
3769
3930
|
{
|
|
3770
3931
|
"name": "Tabs",
|
|
@@ -3834,7 +3995,7 @@
|
|
|
3834
3995
|
},
|
|
3835
3996
|
{
|
|
3836
3997
|
"id": "page-keys",
|
|
3837
|
-
"behaviour": "
|
|
3998
|
+
"behaviour": "Takes its keys by itself"
|
|
3838
3999
|
},
|
|
3839
4000
|
{
|
|
3840
4001
|
"id": "walking",
|
|
@@ -3849,7 +4010,8 @@
|
|
|
3849
4010
|
"migrationStage": null,
|
|
3850
4011
|
"docsId": "navigation-tabs--docs",
|
|
3851
4012
|
"storyId": "navigation-tabs--with-counts",
|
|
3852
|
-
"docPage": "src/Tabs.mdx"
|
|
4013
|
+
"docPage": "src/Tabs.mdx",
|
|
4014
|
+
"app": null
|
|
3853
4015
|
},
|
|
3854
4016
|
{
|
|
3855
4017
|
"name": "Textarea",
|
|
@@ -3866,7 +4028,8 @@
|
|
|
3866
4028
|
"migrationStage": null,
|
|
3867
4029
|
"docsId": "inputs-textarea--docs",
|
|
3868
4030
|
"storyId": "inputs-textarea--empty",
|
|
3869
|
-
"docPage": "src/Textarea.mdx"
|
|
4031
|
+
"docPage": "src/Textarea.mdx",
|
|
4032
|
+
"app": null
|
|
3870
4033
|
},
|
|
3871
4034
|
{
|
|
3872
4035
|
"name": "TextInput",
|
|
@@ -3903,7 +4066,8 @@
|
|
|
3903
4066
|
"migrationStage": null,
|
|
3904
4067
|
"docsId": "inputs-textinput--docs",
|
|
3905
4068
|
"storyId": "inputs-textinput--empty",
|
|
3906
|
-
"docPage": "src/TextInput.mdx"
|
|
4069
|
+
"docPage": "src/TextInput.mdx",
|
|
4070
|
+
"app": null
|
|
3907
4071
|
},
|
|
3908
4072
|
{
|
|
3909
4073
|
"name": "Toast",
|
|
@@ -3981,7 +4145,8 @@
|
|
|
3981
4145
|
"migrationStage": null,
|
|
3982
4146
|
"docsId": "feedback-toast--docs",
|
|
3983
4147
|
"storyId": "feedback-toast--neutral",
|
|
3984
|
-
"docPage": "src/Toast.mdx"
|
|
4148
|
+
"docPage": "src/Toast.mdx",
|
|
4149
|
+
"app": null
|
|
3985
4150
|
},
|
|
3986
4151
|
{
|
|
3987
4152
|
"name": "ToastProvider",
|
|
@@ -4005,7 +4170,8 @@
|
|
|
4005
4170
|
"migrationStage": null,
|
|
4006
4171
|
"docsId": "feedback-toast--docs",
|
|
4007
4172
|
"storyId": "feedback-toast--neutral",
|
|
4008
|
-
"docPage": null
|
|
4173
|
+
"docPage": null,
|
|
4174
|
+
"app": null
|
|
4009
4175
|
},
|
|
4010
4176
|
{
|
|
4011
4177
|
"name": "Toolbar",
|
|
@@ -4069,7 +4235,7 @@
|
|
|
4069
4235
|
},
|
|
4070
4236
|
{
|
|
4071
4237
|
"id": "page-keys",
|
|
4072
|
-
"behaviour": "
|
|
4238
|
+
"behaviour": "Takes its keys by itself"
|
|
4073
4239
|
},
|
|
4074
4240
|
{
|
|
4075
4241
|
"id": "walking",
|
|
@@ -4084,7 +4250,8 @@
|
|
|
4084
4250
|
"migrationStage": null,
|
|
4085
4251
|
"docsId": "primitives-toolbar--docs",
|
|
4086
4252
|
"storyId": "primitives-toolbar--default",
|
|
4087
|
-
"docPage": "src/Toolbar.mdx"
|
|
4253
|
+
"docPage": "src/Toolbar.mdx",
|
|
4254
|
+
"app": null
|
|
4088
4255
|
},
|
|
4089
4256
|
{
|
|
4090
4257
|
"name": "ToolbarButton",
|
|
@@ -4143,6 +4310,12 @@
|
|
|
4143
4310
|
"required": false,
|
|
4144
4311
|
"note": "Why the action cannot succeed right now."
|
|
4145
4312
|
},
|
|
4313
|
+
{
|
|
4314
|
+
"name": "href",
|
|
4315
|
+
"takes": "text",
|
|
4316
|
+
"required": false,
|
|
4317
|
+
"note": "A link that looks like an icon button: an anchor, so the address stays real for a modified click or a new tab, as `Link` keeps it."
|
|
4318
|
+
},
|
|
4146
4319
|
{
|
|
4147
4320
|
"name": "children",
|
|
4148
4321
|
"takes": "anything",
|
|
@@ -4174,7 +4347,8 @@
|
|
|
4174
4347
|
"migrationStage": null,
|
|
4175
4348
|
"docsId": "primitives-toolbar--docs",
|
|
4176
4349
|
"storyId": "primitives-toolbar--default",
|
|
4177
|
-
"docPage": null
|
|
4350
|
+
"docPage": null,
|
|
4351
|
+
"app": null
|
|
4178
4352
|
},
|
|
4179
4353
|
{
|
|
4180
4354
|
"name": "ToolbarInput",
|
|
@@ -4206,7 +4380,8 @@
|
|
|
4206
4380
|
"migrationStage": null,
|
|
4207
4381
|
"docsId": "primitives-toolbar--docs",
|
|
4208
4382
|
"storyId": "primitives-toolbar--default",
|
|
4209
|
-
"docPage": null
|
|
4383
|
+
"docPage": null,
|
|
4384
|
+
"app": null
|
|
4210
4385
|
},
|
|
4211
4386
|
{
|
|
4212
4387
|
"name": "ToolbarSeparator",
|
|
@@ -4230,7 +4405,8 @@
|
|
|
4230
4405
|
"migrationStage": null,
|
|
4231
4406
|
"docsId": "primitives-toolbar--docs",
|
|
4232
4407
|
"storyId": "primitives-toolbar--default",
|
|
4233
|
-
"docPage": null
|
|
4408
|
+
"docPage": null,
|
|
4409
|
+
"app": null
|
|
4234
4410
|
},
|
|
4235
4411
|
{
|
|
4236
4412
|
"name": "Tooltip",
|
|
@@ -4277,7 +4453,8 @@
|
|
|
4277
4453
|
"migrationStage": null,
|
|
4278
4454
|
"docsId": "primitives-tooltip--docs",
|
|
4279
4455
|
"storyId": "primitives-tooltip--default",
|
|
4280
|
-
"docPage": "src/Tooltip.mdx"
|
|
4456
|
+
"docPage": "src/Tooltip.mdx",
|
|
4457
|
+
"app": null
|
|
4281
4458
|
},
|
|
4282
4459
|
{
|
|
4283
4460
|
"name": "TooltipProvider",
|
|
@@ -4319,7 +4496,8 @@
|
|
|
4319
4496
|
"migrationStage": null,
|
|
4320
4497
|
"docsId": "primitives-tooltip--docs",
|
|
4321
4498
|
"storyId": "primitives-tooltip--default",
|
|
4322
|
-
"docPage": null
|
|
4499
|
+
"docPage": null,
|
|
4500
|
+
"app": null
|
|
4323
4501
|
},
|
|
4324
4502
|
{
|
|
4325
4503
|
"name": "TopBar",
|
|
@@ -4381,7 +4559,8 @@
|
|
|
4381
4559
|
"migrationStage": null,
|
|
4382
4560
|
"docsId": "frame-topbar--docs",
|
|
4383
4561
|
"storyId": "frame-topbar--solid",
|
|
4384
|
-
"docPage": "src/TopBar.mdx"
|
|
4562
|
+
"docPage": "src/TopBar.mdx",
|
|
4563
|
+
"app": null
|
|
4385
4564
|
},
|
|
4386
4565
|
{
|
|
4387
4566
|
"name": "useToast",
|
|
@@ -4398,7 +4577,8 @@
|
|
|
4398
4577
|
"migrationStage": null,
|
|
4399
4578
|
"docsId": "feedback-toast--docs",
|
|
4400
4579
|
"storyId": "feedback-toast--neutral",
|
|
4401
|
-
"docPage": null
|
|
4580
|
+
"docPage": null,
|
|
4581
|
+
"app": null
|
|
4402
4582
|
},
|
|
4403
4583
|
{
|
|
4404
4584
|
"name": "WithTooltip",
|
|
@@ -4433,6 +4613,12 @@
|
|
|
4433
4613
|
"required": false,
|
|
4434
4614
|
"note": "Extra classes on the wrapper — e.g. `min-w-0 shrink` so a truncating label keeps truncating inside it."
|
|
4435
4615
|
},
|
|
4616
|
+
{
|
|
4617
|
+
"name": "inline",
|
|
4618
|
+
"takes": "true/false",
|
|
4619
|
+
"required": false,
|
|
4620
|
+
"note": "For a trigger inside a line of text — a reference, a name in a sentence: the wrapper is a `<span>`, because a `<div>` is not allowed inside a paragraph (UIG-14, Katerina, 19 September)."
|
|
4621
|
+
},
|
|
4436
4622
|
{
|
|
4437
4623
|
"name": "children",
|
|
4438
4624
|
"takes": "anything",
|
|
@@ -4463,8 +4649,10 @@
|
|
|
4463
4649
|
"migrationStage": null,
|
|
4464
4650
|
"docsId": "primitives-tooltip--docs",
|
|
4465
4651
|
"storyId": "primitives-tooltip--default",
|
|
4466
|
-
"docPage": null
|
|
4652
|
+
"docPage": null,
|
|
4653
|
+
"app": null
|
|
4467
4654
|
}
|
|
4468
4655
|
],
|
|
4469
|
-
"excluded": []
|
|
4656
|
+
"excluded": [],
|
|
4657
|
+
"filesWithoutParts": []
|
|
4470
4658
|
}
|