@godxjp/ui 18.3.0 → 18.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/README.md +18 -3
  2. package/dist/app/theme-axes.d.ts +11 -3
  3. package/dist/app/theme-axes.js +2 -1
  4. package/dist/components/charts/chart-frame.d.ts +17 -3
  5. package/dist/components/charts/chart-frame.js +7 -1
  6. package/dist/components/charts/chart-summary.d.ts +21 -0
  7. package/dist/components/charts/chart-summary.js +32 -5
  8. package/dist/components/charts/compact-bar-trend.d.ts +29 -0
  9. package/dist/components/charts/compact-bar-trend.js +74 -0
  10. package/dist/components/charts/index.d.ts +3 -0
  11. package/dist/components/charts/index.js +2 -0
  12. package/dist/components/data-display/badge.d.ts +8 -0
  13. package/dist/components/data-display/badge.js +7 -1
  14. package/dist/components/data-display/data-table.d.ts +16 -1
  15. package/dist/components/data-display/data-table.js +56 -0
  16. package/dist/components/data-display/index.d.ts +3 -1
  17. package/dist/components/data-display/index.js +10 -1
  18. package/dist/components/data-display/list-row.d.ts +22 -4
  19. package/dist/components/data-display/list-row.js +21 -3
  20. package/dist/components/data-display/service-launcher-card.d.ts +40 -0
  21. package/dist/components/data-display/service-launcher-card.js +97 -0
  22. package/dist/components/data-entry/command-palette.d.ts +37 -0
  23. package/dist/components/data-entry/command-palette.js +125 -0
  24. package/dist/components/data-entry/index.d.ts +2 -0
  25. package/dist/components/data-entry/index.js +2 -0
  26. package/dist/components/feedback/dialog.d.ts +2 -0
  27. package/dist/components/feedback/dialog.js +42 -33
  28. package/dist/components/feedback/index.d.ts +4 -1
  29. package/dist/components/feedback/index.js +6 -2
  30. package/dist/components/feedback/sheet.d.ts +26 -4
  31. package/dist/components/feedback/sheet.js +54 -7
  32. package/dist/components/feedback/two-factor-setup.d.ts +31 -0
  33. package/dist/components/feedback/two-factor-setup.js +97 -0
  34. package/dist/components/general/index.d.ts +1 -1
  35. package/dist/components/general/logo.d.ts +42 -8
  36. package/dist/components/general/logo.js +67 -14
  37. package/dist/components/layout/app-shell.js +22 -6
  38. package/dist/components/layout/auth-divider.d.ts +7 -0
  39. package/dist/components/layout/auth-divider.js +21 -0
  40. package/dist/components/layout/auth-footer.d.ts +5 -0
  41. package/dist/components/layout/auth-footer.js +24 -0
  42. package/dist/components/layout/auth-identity.d.ts +5 -0
  43. package/dist/components/layout/auth-identity.js +17 -0
  44. package/dist/components/layout/auth-shell.d.ts +8 -1
  45. package/dist/components/layout/auth-shell.js +25 -6
  46. package/dist/components/layout/auth-stack.d.ts +4 -0
  47. package/dist/components/layout/auth-stack.js +8 -0
  48. package/dist/components/layout/centered-shell.d.ts +5 -2
  49. package/dist/components/layout/centered-shell.js +2 -1
  50. package/dist/components/layout/index.d.ts +18 -3
  51. package/dist/components/layout/index.js +17 -2
  52. package/dist/components/layout/legal-document-shell.d.ts +34 -0
  53. package/dist/components/layout/legal-document-shell.js +186 -0
  54. package/dist/components/layout/master-detail.d.ts +24 -0
  55. package/dist/components/layout/master-detail.js +48 -0
  56. package/dist/components/layout/org-switcher.d.ts +9 -0
  57. package/dist/components/layout/org-switcher.js +218 -0
  58. package/dist/components/layout/page-container.d.ts +1 -1
  59. package/dist/components/layout/page-container.js +3 -2
  60. package/dist/components/layout/sidebar-link.d.ts +43 -0
  61. package/dist/components/layout/sidebar-link.js +13 -0
  62. package/dist/components/layout/sidebar.d.ts +42 -5
  63. package/dist/components/layout/sidebar.js +170 -85
  64. package/dist/components/navigation/app-setting-picker.js +17 -6
  65. package/dist/components/navigation/filter-bar.d.ts +12 -3
  66. package/dist/components/navigation/filter-bar.js +8 -2
  67. package/dist/components/navigation/index.d.ts +2 -2
  68. package/dist/components/navigation/index.js +3 -1
  69. package/dist/components/navigation/tabs-scroll.d.ts +70 -0
  70. package/dist/components/navigation/tabs-scroll.js +76 -0
  71. package/dist/components/navigation/tabs.js +35 -20
  72. package/dist/email/brand-mark.d.ts +92 -0
  73. package/dist/email/brand-mark.js +83 -0
  74. package/dist/email/color.d.ts +52 -0
  75. package/dist/email/color.js +37 -0
  76. package/dist/email/geometry.d.ts +112 -0
  77. package/dist/email/geometry.js +89 -0
  78. package/dist/email/index.d.ts +78 -0
  79. package/dist/email/index.js +76 -0
  80. package/dist/email/inline-style.d.ts +25 -0
  81. package/dist/email/inline-style.js +21 -0
  82. package/dist/email/tokens.generated.d.ts +147 -0
  83. package/dist/email/tokens.generated.js +142 -0
  84. package/dist/i18n/messages/en.json +21 -2
  85. package/dist/i18n/messages/ja.json +21 -2
  86. package/dist/i18n/messages/vi.json +21 -2
  87. package/dist/inertia/index.d.ts +50 -0
  88. package/dist/inertia/index.js +5 -0
  89. package/dist/props/components/app.prop.d.ts +11 -1
  90. package/dist/props/components/charts.prop.d.ts +40 -1
  91. package/dist/props/components/data-display.prop.d.ts +13 -1
  92. package/dist/props/components/feedback.prop.d.ts +10 -0
  93. package/dist/props/components/index.d.ts +2 -2
  94. package/dist/props/components/layout.prop.d.ts +374 -11
  95. package/dist/props/components/layout.prop.js +1 -0
  96. package/dist/props/components/navigation.prop.d.ts +19 -1
  97. package/dist/props/registry.d.ts +291 -7
  98. package/dist/props/registry.js +341 -7
  99. package/dist/props/vocabulary/index.d.ts +1 -1
  100. package/dist/props/vocabulary/interaction.prop.d.ts +1 -1
  101. package/dist/props/vocabulary/layout.prop.d.ts +18 -0
  102. package/dist/styles/base.css +9 -3
  103. package/dist/styles/card-layout.css +162 -8
  104. package/dist/styles/chart-layout.css +97 -0
  105. package/dist/styles/control.css +48 -2
  106. package/dist/styles/data-display-layout.css +52 -6
  107. package/dist/styles/dialog-layout.css +105 -4
  108. package/dist/styles/fonts.css +29 -20
  109. package/dist/styles/index.css +11 -3
  110. package/dist/styles/layout.css +368 -2
  111. package/dist/styles/logo-layout.css +62 -0
  112. package/dist/styles/navigation-layout.css +43 -0
  113. package/dist/styles/shell-layout.css +505 -62
  114. package/dist/theme/dxs.canonical.css +76 -0
  115. package/dist/tokens/axes.css +39 -0
  116. package/dist/tokens/base.css +5 -0
  117. package/dist/tokens/components/card.css +52 -5
  118. package/dist/tokens/components/chart.css +47 -0
  119. package/dist/tokens/components/control.css +16 -0
  120. package/dist/tokens/components/email.css +66 -0
  121. package/dist/tokens/components/feedback.css +17 -0
  122. package/dist/tokens/components/legal-document.css +67 -0
  123. package/dist/tokens/components/list-row.css +23 -2
  124. package/dist/tokens/components/logo.css +32 -0
  125. package/dist/tokens/components/navigation.css +13 -0
  126. package/dist/tokens/components/sheet.css +19 -0
  127. package/dist/tokens/components/shell.css +149 -1
  128. package/dist/tokens/components/sidebar.css +33 -0
  129. package/dist/tokens/foundation.css +5 -2
  130. package/dist/tokens/semantic/layout.css +44 -2
  131. package/package.json +17 -6
@@ -189,6 +189,16 @@ export declare const VOCABULARY_REGISTRY: {
189
189
  readonly category: "layout";
190
190
  readonly description: "CenteredShell column max-width — sm, md, lg";
191
191
  };
192
+ readonly CenteredShellAlignProp: {
193
+ readonly file: "vocabulary/layout.prop.ts";
194
+ readonly category: "layout";
195
+ readonly description: "CenteredShell column block alignment — start (flowing page), center (system surface)";
196
+ };
197
+ readonly AuthShellPresetProp: {
198
+ readonly file: "vocabulary/layout.prop.ts";
199
+ readonly category: "layout";
200
+ readonly description: "AuthShell named flow measure — default | device-authorization (380px card, 5px mobile gutter) | context-selection (25rem card, edge-to-edge mobile) | account-recovery (432px SCR-008 recovery/MFA panel, 15px mobile gutter)";
201
+ };
192
202
  readonly GapProp: {
193
203
  readonly file: "vocabulary/layout.prop.ts";
194
204
  readonly category: "layout";
@@ -217,7 +227,7 @@ export declare const VOCABULARY_REGISTRY: {
217
227
  readonly AppSettingPickerAppearanceProp: {
218
228
  readonly file: "vocabulary/interaction.prop.ts";
219
229
  readonly category: "interaction";
220
- readonly description: "AppSettingPicker trigger presentation: labeled (icon + value) | icon (square icon-only topbar trigger)";
230
+ readonly description: "AppSettingPicker trigger presentation: labeled (icon + value) | icon (square icon-only topbar trigger) | inline (compact text footer trigger)";
221
231
  };
222
232
  readonly ShapeProp: {
223
233
  readonly file: "vocabulary/interaction.prop.ts";
@@ -400,12 +410,25 @@ export declare const COMPONENT_PROP_REGISTRY: {
400
410
  readonly AppSettingPickerProp: {
401
411
  readonly group: "app";
402
412
  readonly file: "components/app.prop.ts";
403
- readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp", "ClassNameProp", "AppSettingPickerAppearanceProp"];
413
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "IdProp", "ClassNameProp", "AppSettingPickerAppearanceProp", {
414
+ readonly field: "compact";
415
+ readonly local: true;
416
+ readonly reason: "Trigger DENSITY for the picker only (sm control tier + content-hugging width) — orthogonal to `appearance`, and not the page-level DensityProp scope.";
417
+ }];
418
+ };
419
+ readonly PageContainerHeaderLayoutProp: {
420
+ readonly group: "layout";
421
+ readonly file: "components/layout.prop.ts";
422
+ readonly vocabulary: readonly [];
404
423
  };
405
424
  readonly PageContainerProp: {
406
425
  readonly group: "layout";
407
426
  readonly file: "components/layout.prop.ts";
408
- readonly vocabulary: readonly ["TitleProp", "SubtitleProp", "ExtraProp", "FooterProp", "BreadcrumbProp", "DensityProp", "PageContainerVariantProp"];
427
+ readonly vocabulary: readonly ["TitleProp", "SubtitleProp", "ExtraProp", "FooterProp", "BreadcrumbProp", "DensityProp", "PageContainerVariantProp", {
428
+ readonly field: "headerLayout";
429
+ readonly local: true;
430
+ readonly reason: "Header ARRANGEMENT of the title band vs the extra slot below the 640px step (stack | responsive-inline) — orthogonal to PageContainerVariantProp, which selects the page shell layout.";
431
+ }];
409
432
  };
410
433
  readonly FlexDirectionProp: {
411
434
  readonly group: "layout";
@@ -448,6 +471,58 @@ export declare const COMPONENT_PROP_REGISTRY: {
448
471
  readonly file: "components/layout.prop.ts";
449
472
  readonly vocabulary: readonly [];
450
473
  };
474
+ readonly MasterDetailRailWidthProp: {
475
+ readonly group: "layout";
476
+ readonly file: "components/layout.prop.ts";
477
+ readonly vocabulary: readonly [];
478
+ };
479
+ readonly MasterDetailRailProp: {
480
+ readonly group: "layout";
481
+ readonly file: "components/layout.prop.ts";
482
+ readonly vocabulary: readonly [];
483
+ };
484
+ readonly MasterDetailMasterViewportProp: {
485
+ readonly group: "layout";
486
+ readonly file: "components/layout.prop.ts";
487
+ readonly vocabulary: readonly [];
488
+ };
489
+ readonly MasterDetailProp: {
490
+ readonly group: "layout";
491
+ readonly file: "components/layout.prop.ts";
492
+ readonly vocabulary: readonly ["ChildrenProp", "BreakpointProp", "IdProp", {
493
+ readonly field: "master";
494
+ readonly local: true;
495
+ readonly reason: "Semantic selectable-collection slot paired with the detail children slot.";
496
+ }, {
497
+ readonly field: "rail";
498
+ readonly local: true;
499
+ readonly reason: "Semantic selector for which region owns the fixed track (master | detail).";
500
+ }, {
501
+ readonly field: "railWidth";
502
+ readonly local: true;
503
+ readonly reason: "Token-owned 300px/320px rail geometry preset.";
504
+ }, {
505
+ readonly field: "masterViewport";
506
+ readonly local: true;
507
+ readonly reason: "Token-owned bounded-collection preset (auto | compact | standard) for the master region's scroll viewport — geometry, not a raw pixel measure.";
508
+ }, {
509
+ readonly field: "collapseBelow";
510
+ readonly local: true;
511
+ readonly reason: "Per-instance override of the --master-detail-collapse-below stacking threshold.";
512
+ }, {
513
+ readonly field: "masterLabel";
514
+ readonly local: true;
515
+ readonly reason: "Accessible name for the master region landmark.";
516
+ }, {
517
+ readonly field: "detailLabel";
518
+ readonly local: true;
519
+ readonly reason: "Accessible name for the detail region landmark.";
520
+ }, {
521
+ readonly field: "detailId";
522
+ readonly local: true;
523
+ readonly reason: "Id of the detail region so master controls can wire aria-controls and focus.";
524
+ }];
525
+ };
451
526
  readonly PageInsetProp: {
452
527
  readonly group: "layout";
453
528
  readonly file: "components/layout.prop.ts";
@@ -461,12 +536,109 @@ export declare const COMPONENT_PROP_REGISTRY: {
461
536
  readonly AuthShellProp: {
462
537
  readonly group: "layout";
463
538
  readonly file: "components/layout.prop.ts";
464
- readonly vocabulary: readonly ["ChildrenProp", "ClassNameProp"];
539
+ readonly vocabulary: readonly ["ChildrenProp", "ClassNameProp", {
540
+ readonly field: "variant";
541
+ readonly local: true;
542
+ readonly reason: "Auth-shell geometry preset; canonical selects the shared DXS token contract.";
543
+ }, {
544
+ readonly field: "density";
545
+ readonly local: true;
546
+ readonly reason: "Auth-specific vertical-density scope for card descendants.";
547
+ }, "AuthShellPresetProp"];
548
+ };
549
+ readonly AuthDividerProp: {
550
+ readonly group: "layout";
551
+ readonly file: "components/layout.prop.ts";
552
+ readonly vocabulary: readonly ["LabelProp", "ClassNameProp"];
553
+ };
554
+ readonly AuthFooterProp: {
555
+ readonly group: "layout";
556
+ readonly file: "components/layout.prop.ts";
557
+ readonly vocabulary: readonly ["ClassNameProp", {
558
+ readonly field: "product";
559
+ readonly local: true;
560
+ readonly reason: "Consumer-owned host/product identity slot of the legal line, not a page TitleProp.";
561
+ }, {
562
+ readonly field: "terms";
563
+ readonly local: true;
564
+ readonly reason: "Consumer-owned Terms link/text slot — the library never invents legal navigation.";
565
+ }, {
566
+ readonly field: "privacy";
567
+ readonly local: true;
568
+ readonly reason: "Consumer-owned Privacy link/text slot — the library never invents legal navigation.";
569
+ }, {
570
+ readonly field: "locale";
571
+ readonly local: true;
572
+ readonly reason: "Optional consumer-owned locale control slot (an AppSettingPicker), not a locale value.";
573
+ }];
574
+ };
575
+ readonly AuthIdentityProp: {
576
+ readonly group: "layout";
577
+ readonly file: "components/layout.prop.ts";
578
+ readonly vocabulary: readonly ["TitleProp", "ClassNameProp", {
579
+ readonly field: "requester";
580
+ readonly local: true;
581
+ readonly reason: "Authoritative requesting-client context for a delegated auth flow (device grant / consent).";
582
+ }];
465
583
  };
466
584
  readonly CenteredShellProp: {
467
585
  readonly group: "layout";
468
586
  readonly file: "components/layout.prop.ts";
469
- readonly vocabulary: readonly ["ChildrenProp", "ClassNameProp", "CenteredShellWidthProp"];
587
+ readonly vocabulary: readonly ["ChildrenProp", "ClassNameProp", "CenteredShellWidthProp", "CenteredShellAlignProp"];
588
+ };
589
+ readonly LegalDocumentSectionProp: {
590
+ readonly group: "layout";
591
+ readonly file: "components/layout.prop.ts";
592
+ readonly vocabulary: readonly ["IdProp", "TitleProp", {
593
+ readonly field: "content";
594
+ readonly local: true;
595
+ readonly reason: "Consumer-owned legal body for one section — a content slot, not the ChildrenProp of the shell itself.";
596
+ }];
597
+ };
598
+ readonly LegalDocumentShellProp: {
599
+ readonly group: "layout";
600
+ readonly file: "components/layout.prop.ts";
601
+ readonly vocabulary: readonly ["TitleProp", "IdProp", "ClassNameProp", {
602
+ readonly field: "version";
603
+ readonly local: true;
604
+ readonly reason: "Document version identifier interpolated into a localized 'Version {version}'.";
605
+ }, {
606
+ readonly field: "effectiveDate";
607
+ readonly local: true;
608
+ readonly reason: "ISO 8601 date input formatted via Intl.DateTimeFormat in the active locale.";
609
+ }, {
610
+ readonly field: "summary";
611
+ readonly local: true;
612
+ readonly reason: "Plain-language document summary slot, distinct from a page SubtitleProp.";
613
+ }, {
614
+ readonly field: "contentsLabel";
615
+ readonly local: true;
616
+ readonly reason: "Accessible name + visible caption of the contents nav landmark (landmark-unique override).";
617
+ }, {
618
+ readonly field: "sections";
619
+ readonly local: true;
620
+ readonly reason: "Ordered LegalDocumentSectionProp[] driving both the contents list and the body.";
621
+ }, {
622
+ readonly field: "activeSection";
623
+ readonly local: true;
624
+ readonly reason: "Controlled active-section id — the X / defaultX / onXChange family (like open/onOpenChange); 'value' would be meaningless on a document shell.";
625
+ }, {
626
+ readonly field: "defaultActiveSection";
627
+ readonly local: true;
628
+ readonly reason: "Uncontrolled initial active-section id.";
629
+ }, {
630
+ readonly field: "onActiveSectionChange";
631
+ readonly local: true;
632
+ readonly reason: "Active-section change handler (anchor activation · hash deep link · scroll spy).";
633
+ }, {
634
+ readonly field: "documentNavigation";
635
+ readonly local: true;
636
+ readonly reason: "Rail slot for a switcher across the legal document set.";
637
+ }, {
638
+ readonly field: "footerAction";
639
+ readonly local: true;
640
+ readonly reason: "Document-footer slot for accept / download / print actions.";
641
+ }];
470
642
  };
471
643
  readonly SidebarProductProp: {
472
644
  readonly group: "layout";
@@ -478,11 +650,45 @@ export declare const COMPONENT_PROP_REGISTRY: {
478
650
  readonly file: "components/layout.prop.ts";
479
651
  readonly vocabulary: readonly ["IdProp", "LabelProp", "DisabledProp", "ChildrenProp"];
480
652
  };
653
+ readonly SidebarRenderItemProp: {
654
+ readonly group: "layout";
655
+ readonly file: "components/layout.prop.ts";
656
+ readonly vocabulary: readonly ["ClassNameProp", "ChildrenProp"];
657
+ };
658
+ readonly SidebarLinkProp: {
659
+ readonly group: "layout";
660
+ readonly file: "components/layout.prop.ts";
661
+ readonly vocabulary: readonly ["ClassNameProp", "ChildrenProp", "OnClickProp"];
662
+ };
663
+ readonly SidebarLinkComponentProp: {
664
+ readonly group: "layout";
665
+ readonly file: "components/layout.prop.ts";
666
+ readonly vocabulary: readonly [{
667
+ readonly field: "linkComponent";
668
+ readonly local: true;
669
+ readonly reason: "Component type alias for a framework router Link driven by SidebarLinkProp (gh#213).";
670
+ }];
671
+ };
481
672
  readonly SidebarSectionProp: {
482
673
  readonly group: "layout";
483
674
  readonly file: "components/layout.prop.ts";
484
675
  readonly vocabulary: readonly ["LabelProp"];
485
676
  };
677
+ readonly OrgSwitcherOrganization: {
678
+ readonly group: "layout";
679
+ readonly file: "components/layout.prop.ts";
680
+ readonly vocabulary: readonly ["IdProp", "LabelProp", "DisabledProp"];
681
+ };
682
+ readonly OrgSwitcherLabels: {
683
+ readonly group: "layout";
684
+ readonly file: "components/layout.prop.ts";
685
+ readonly vocabulary: readonly ["LabelProp"];
686
+ };
687
+ readonly OrgSwitcherProp: {
688
+ readonly group: "layout";
689
+ readonly file: "components/layout.prop.ts";
690
+ readonly vocabulary: readonly ["ValueProp", "OnValueChangeProp", "DisabledProp", "ClassNameProp"];
691
+ };
486
692
  readonly SidebarProp: {
487
693
  readonly group: "layout";
488
694
  readonly file: "components/layout.prop.ts";
@@ -727,7 +933,7 @@ export declare const COMPONENT_PROP_REGISTRY: {
727
933
  readonly DataTableProp: {
728
934
  readonly group: "data-display";
729
935
  readonly file: "components/data-display.prop.ts";
730
- readonly vocabulary: readonly ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp"];
936
+ readonly vocabulary: readonly ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp", "HandlerProp"];
731
937
  };
732
938
  readonly CredentialRevealProp: {
733
939
  readonly group: "data-display";
@@ -830,6 +1036,39 @@ export declare const COMPONENT_PROP_REGISTRY: {
830
1036
  readonly reason: "Category axis on the left.";
831
1037
  }];
832
1038
  };
1039
+ readonly CompactBarTrendProp: {
1040
+ readonly group: "data-display";
1041
+ readonly file: "components/charts.prop.ts";
1042
+ readonly vocabulary: readonly ["LabelProp", "DescriptionProp", "SizeProp", "FooterProp", "EmptyMessageProp", "ClassNameProp", "IdProp", {
1043
+ readonly field: "data";
1044
+ readonly local: true;
1045
+ readonly reason: "Chart row data (one bar per row).";
1046
+ }, {
1047
+ readonly field: "categoryKey";
1048
+ readonly local: true;
1049
+ readonly reason: "Accessor key for the bar's tick label.";
1050
+ }, {
1051
+ readonly field: "valueKey";
1052
+ readonly local: true;
1053
+ readonly reason: "Accessor key for the plotted numeric value.";
1054
+ }, {
1055
+ readonly field: "emphasizedIndex";
1056
+ readonly local: true;
1057
+ readonly reason: "Index of the highlighted 'current' bar (negative counts from the end).";
1058
+ }, {
1059
+ readonly field: "showCategoryLabels";
1060
+ readonly local: true;
1061
+ readonly reason: "Chart-specific tick-label toggle.";
1062
+ }, {
1063
+ readonly field: "numberFormat";
1064
+ readonly local: true;
1065
+ readonly reason: "Intl.NumberFormat options for the text alternative.";
1066
+ }, {
1067
+ readonly field: "ref";
1068
+ readonly local: true;
1069
+ readonly reason: "Forwarded ref to the <figure> element.";
1070
+ }];
1071
+ };
833
1072
  readonly AreaChartProp: {
834
1073
  readonly group: "data-display";
835
1074
  readonly file: "components/charts.prop.ts";
@@ -1000,6 +1239,11 @@ export declare const COMPONENT_PROP_REGISTRY: {
1000
1239
  readonly file: "components/feedback.prop.ts";
1001
1240
  readonly vocabulary: readonly ["ClassNameProp", "ChildrenProp"];
1002
1241
  };
1242
+ readonly SheetResponsiveProp: {
1243
+ readonly group: "feedback";
1244
+ readonly file: "components/feedback.prop.ts";
1245
+ readonly vocabulary: readonly [];
1246
+ };
1003
1247
  readonly SkeletonRowsProp: {
1004
1248
  readonly group: "feedback";
1005
1249
  readonly file: "components/feedback.prop.ts";
@@ -1010,10 +1254,15 @@ export declare const COMPONENT_PROP_REGISTRY: {
1010
1254
  readonly file: "components/navigation.prop.ts";
1011
1255
  readonly vocabulary: readonly ["OnClearFiltersProp", "HasActiveFiltersProp", "StickyProp", "ClassNameProp", "ChildrenProp"];
1012
1256
  };
1257
+ readonly FilterBarOverflowProp: {
1258
+ readonly group: "navigation";
1259
+ readonly file: "components/navigation.prop.ts";
1260
+ readonly vocabulary: readonly [];
1261
+ };
1013
1262
  readonly ToolbarGroupProp: {
1014
1263
  readonly group: "navigation";
1015
1264
  readonly file: "components/navigation.prop.ts";
1016
- readonly vocabulary: readonly ["LabelProp", "ClassNameProp", "ChildrenProp"];
1265
+ readonly vocabulary: readonly ["LabelProp", "IdProp", "ClassNameProp", "ChildrenProp"];
1017
1266
  };
1018
1267
  readonly PaginationProp: {
1019
1268
  readonly group: "navigation";
@@ -1080,6 +1329,21 @@ export declare const COMPONENT_PROP_REGISTRY: {
1080
1329
  readonly file: "components/ui/toggle.tsx";
1081
1330
  readonly vocabulary: readonly ["SizeProp", "ClassNameProp"];
1082
1331
  };
1332
+ readonly CommandPaletteProp: {
1333
+ readonly group: "data-entry";
1334
+ readonly file: "components/data-entry/command-palette.tsx";
1335
+ readonly vocabulary: readonly ["OpenProp", "DefaultOpenProp", "OnOpenChangeProp"];
1336
+ };
1337
+ readonly TwoFactorSetupProp: {
1338
+ readonly group: "feedback";
1339
+ readonly file: "components/feedback/two-factor-setup.tsx";
1340
+ readonly vocabulary: readonly ["OpenProp", "OnOpenChangeProp", "PendingProp"];
1341
+ };
1342
+ readonly AuthStackProp: {
1343
+ readonly group: "layout";
1344
+ readonly file: "components/layout/auth-stack.tsx";
1345
+ readonly vocabulary: readonly ["ChildrenProp", "ClassNameProp"];
1346
+ };
1083
1347
  readonly RatingProp: {
1084
1348
  readonly group: "data-entry";
1085
1349
  readonly file: "components/ui/rating.tsx";
@@ -1155,11 +1419,31 @@ export declare const COMPONENT_PROP_REGISTRY: {
1155
1419
  readonly file: "components/data-display/card.tsx";
1156
1420
  readonly vocabulary: readonly ["TitleProp", "ToneProp", "IconProp", "ClassNameProp"];
1157
1421
  };
1422
+ readonly ServiceLauncherCardProp: {
1423
+ readonly group: "data-display";
1424
+ readonly file: "components/data-display/service-launcher-card.tsx";
1425
+ readonly vocabulary: readonly ["TitleProp", "ToneProp", "IconProp", "ClassNameProp", "DisabledProp"];
1426
+ };
1427
+ readonly ServiceCatalogCtaProp: {
1428
+ readonly group: "data-display";
1429
+ readonly file: "components/data-display/service-launcher-card.tsx";
1430
+ readonly vocabulary: readonly ["TitleProp", "IconProp", "ClassNameProp"];
1431
+ };
1432
+ readonly ServiceLauncherCardSkeletonProp: {
1433
+ readonly group: "data-display";
1434
+ readonly file: "components/data-display/service-launcher-card.tsx";
1435
+ readonly vocabulary: readonly ["LabelProp", "ClassNameProp"];
1436
+ };
1158
1437
  readonly ResponsiveGridProp: {
1159
1438
  readonly group: "layout";
1160
1439
  readonly file: "components/layout/responsive-grid.tsx";
1161
1440
  readonly vocabulary: readonly ["GapProp", "ClassNameProp", "ChildrenProp"];
1162
1441
  };
1442
+ readonly MasterDetailProps: {
1443
+ readonly group: "layout";
1444
+ readonly file: "components/layout/master-detail.tsx";
1445
+ readonly vocabulary: readonly ["ChildrenProp"];
1446
+ };
1163
1447
  readonly SplitPaneProp: {
1164
1448
  readonly group: "layout";
1165
1449
  readonly file: "components/layout/split-pane.tsx";