@codemonster-ru/vueforge 0.93.0 → 0.95.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 (152) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.d.ts +60 -3
  3. package/dist/index.ts.mjs +16895 -10584
  4. package/dist/index.ts.umd.js +17 -14
  5. package/dist/package/components/__tests__/activity-feed.test.d.ts +1 -0
  6. package/dist/package/components/__tests__/advanced-filter-panel.test.d.ts +1 -0
  7. package/dist/package/components/__tests__/app-bar.test.d.ts +1 -0
  8. package/dist/package/components/__tests__/audit-log-viewer.test.d.ts +1 -0
  9. package/dist/package/components/__tests__/bottom-sheet.test.d.ts +1 -0
  10. package/dist/package/components/__tests__/bulk-action-bar.test.d.ts +1 -0
  11. package/dist/package/components/__tests__/cascade-select.test.d.ts +1 -0
  12. package/dist/package/components/__tests__/code-editor.test.d.ts +1 -0
  13. package/dist/package/components/__tests__/comment-thread.test.d.ts +1 -0
  14. package/dist/package/components/__tests__/confirm-popup.test.d.ts +1 -0
  15. package/dist/package/components/__tests__/data-table-toolbar.test.d.ts +1 -0
  16. package/dist/package/components/__tests__/diff-viewer.test.d.ts +1 -0
  17. package/dist/package/components/__tests__/dynamic-dialog.test.d.ts +1 -0
  18. package/dist/package/components/__tests__/file-manager.test.d.ts +1 -0
  19. package/dist/package/components/__tests__/footer.test.d.ts +1 -0
  20. package/dist/package/components/__tests__/infinite-scroll.test.d.ts +1 -0
  21. package/dist/package/components/__tests__/inline-message.test.d.ts +1 -0
  22. package/dist/package/components/__tests__/json-viewer.test.d.ts +1 -0
  23. package/dist/package/components/__tests__/kpi-stat-card.test.d.ts +1 -0
  24. package/dist/package/components/__tests__/member-picker.test.d.ts +1 -0
  25. package/dist/package/components/__tests__/meter-group.test.d.ts +1 -0
  26. package/dist/package/components/__tests__/navigation-rail.test.d.ts +1 -0
  27. package/dist/package/components/__tests__/overlay-badge.directive.test.d.ts +1 -0
  28. package/dist/package/components/__tests__/overlay-badge.test.d.ts +1 -0
  29. package/dist/package/components/__tests__/page-layout.test.d.ts +1 -0
  30. package/dist/package/components/__tests__/permission-matrix.test.d.ts +1 -0
  31. package/dist/package/components/__tests__/query-builder.test.d.ts +1 -0
  32. package/dist/package/components/__tests__/resizable-sidebar.test.d.ts +1 -0
  33. package/dist/package/components/__tests__/saved-views-manager.test.d.ts +1 -0
  34. package/dist/package/components/__tests__/scheduler.test.d.ts +1 -0
  35. package/dist/package/components/__tests__/show-hide.test.d.ts +1 -0
  36. package/dist/package/components/__tests__/split-layout.test.d.ts +1 -0
  37. package/dist/package/components/__tests__/sticky-region.test.d.ts +1 -0
  38. package/dist/package/components/__tests__/tab-menu.test.d.ts +1 -0
  39. package/dist/package/components/__tests__/tiered-menu.test.d.ts +1 -0
  40. package/dist/package/components/accordion-context.d.ts +2 -0
  41. package/dist/package/components/accordion.vue.d.ts +23 -0
  42. package/dist/package/components/activity-feed.vue.d.ts +79 -0
  43. package/dist/package/components/advanced-filter-panel-types.d.ts +30 -0
  44. package/dist/package/components/advanced-filter-panel.vue.d.ts +45 -0
  45. package/dist/package/components/app-bar.vue.d.ts +47 -0
  46. package/dist/package/components/audit-log-viewer.vue.d.ts +72 -0
  47. package/dist/package/components/block-ui.vue.d.ts +1 -1
  48. package/dist/package/components/bottom-sheet.vue.d.ts +57 -0
  49. package/dist/package/components/bulk-action-bar-types.d.ts +11 -0
  50. package/dist/package/components/bulk-action-bar.vue.d.ts +36 -0
  51. package/dist/package/components/cascade-select-types.d.ts +8 -0
  52. package/dist/package/components/cascade-select.vue.d.ts +96 -0
  53. package/dist/package/components/chart.vue.d.ts +1 -1
  54. package/dist/package/components/code-editor-adapter.d.ts +56 -0
  55. package/dist/package/components/code-editor.vue.d.ts +85 -0
  56. package/dist/package/components/command-palette.vue.d.ts +32 -1
  57. package/dist/package/components/comment-thread.vue.d.ts +74 -0
  58. package/dist/package/components/confirm-dialog.vue.d.ts +1 -1
  59. package/dist/package/components/confirm-popup.vue.d.ts +383 -0
  60. package/dist/package/components/context-menu.vue.d.ts +1 -1
  61. package/dist/package/components/data-table-toolbar-types.d.ts +6 -0
  62. package/dist/package/components/data-table-toolbar.vue.d.ts +62 -0
  63. package/dist/package/components/data-table.vue.d.ts +51 -7
  64. package/dist/package/components/data-view.vue.d.ts +1 -1
  65. package/dist/package/components/date-range-picker.vue.d.ts +1 -1
  66. package/dist/package/components/datepicker.vue.d.ts +1 -1
  67. package/dist/package/components/datetimepicker.vue.d.ts +1 -1
  68. package/dist/package/components/diff-viewer.vue.d.ts +45 -0
  69. package/dist/package/components/drawer.vue.d.ts +1 -1
  70. package/dist/package/components/dropdown.vue.d.ts +1 -1
  71. package/dist/package/components/dynamic-dialog.vue.d.ts +35 -0
  72. package/dist/package/components/file-manager.vue.d.ts +89 -0
  73. package/dist/package/components/footer.vue.d.ts +45 -0
  74. package/dist/package/components/hide.vue.d.ts +29 -0
  75. package/dist/package/components/infinite-scroll.vue.d.ts +72 -0
  76. package/dist/package/components/inline-message.vue.d.ts +40 -0
  77. package/dist/package/components/json-viewer.vue.d.ts +57 -0
  78. package/dist/package/components/kanban-board.vue.d.ts +15 -27
  79. package/dist/package/components/kpi-stat-card.vue.d.ts +46 -0
  80. package/dist/package/components/member-picker.vue.d.ts +89 -0
  81. package/dist/package/components/meter-group.vue.d.ts +46 -0
  82. package/dist/package/components/navigation-rail.vue.d.ts +289 -0
  83. package/dist/package/components/notification-center.vue.d.ts +35 -11
  84. package/dist/package/components/overlay-badge-utils.d.ts +23 -0
  85. package/dist/package/components/overlay-badge.vue.d.ts +39 -0
  86. package/dist/package/components/overlay-panel.vue.d.ts +6 -6
  87. package/dist/package/components/page-layout.vue.d.ts +84 -0
  88. package/dist/package/components/permission-matrix.vue.d.ts +48 -0
  89. package/dist/package/components/popover.vue.d.ts +1 -1
  90. package/dist/package/components/query-builder-group.vue.d.ts +37 -0
  91. package/dist/package/components/query-builder-types.d.ts +28 -0
  92. package/dist/package/components/query-builder.vue.d.ts +40 -0
  93. package/dist/package/components/rating.vue.d.ts +4 -0
  94. package/dist/package/components/resizable-sidebar.vue.d.ts +73 -0
  95. package/dist/package/components/saved-views-manager-types.d.ts +8 -0
  96. package/dist/package/components/saved-views-manager.vue.d.ts +58 -0
  97. package/dist/package/components/scheduler.vue.d.ts +61 -0
  98. package/dist/package/components/scroll-panel.vue.d.ts +1 -1
  99. package/dist/package/components/scroll-top.vue.d.ts +1 -1
  100. package/dist/package/components/show.vue.d.ts +29 -0
  101. package/dist/package/components/sidebar.vue.d.ts +4 -4
  102. package/dist/package/components/split-button.vue.d.ts +7 -7
  103. package/dist/package/components/split-layout.vue.d.ts +73 -0
  104. package/dist/package/components/splitter.vue.d.ts +2 -2
  105. package/dist/package/components/sticky-region.vue.d.ts +35 -0
  106. package/dist/package/components/tab-menu.vue.d.ts +33 -0
  107. package/dist/package/components/terminal.vue.d.ts +2 -2
  108. package/dist/package/components/tiered-menu.vue.d.ts +34 -0
  109. package/dist/package/components/toast.vue.d.ts +1 -1
  110. package/dist/package/components/tooltip.vue.d.ts +1 -1
  111. package/dist/package/components/tour.vue.d.ts +1 -1
  112. package/dist/package/components/tree-node.vue.d.ts +2 -0
  113. package/dist/package/components/tree-select.vue.d.ts +1 -1
  114. package/dist/package/components/tree-table.vue.d.ts +3 -3
  115. package/dist/package/components/tree.vue.d.ts +23 -1
  116. package/dist/package/config/locale-text.d.ts +10 -0
  117. package/dist/package/config/theme-core.d.ts +777 -0
  118. package/dist/package/directives/overlay-badge.d.ts +3 -0
  119. package/dist/package/services/__tests__/dynamic-dialog-service.test.d.ts +1 -0
  120. package/dist/package/services/dynamic-dialog-service.d.ts +41 -0
  121. package/dist/package/themes/default/components/activity-feed.d.ts +35 -0
  122. package/dist/package/themes/default/components/advanced-filter-panel.d.ts +19 -0
  123. package/dist/package/themes/default/components/app-bar.d.ts +14 -0
  124. package/dist/package/themes/default/components/audit-log-viewer.d.ts +20 -0
  125. package/dist/package/themes/default/components/bottom-sheet.d.ts +32 -0
  126. package/dist/package/themes/default/components/bulk-action-bar.d.ts +19 -0
  127. package/dist/package/themes/default/components/code-editor.d.ts +27 -0
  128. package/dist/package/themes/default/components/comment-thread.d.ts +24 -0
  129. package/dist/package/themes/default/components/confirm-popup.d.ts +11 -0
  130. package/dist/package/themes/default/components/data-table-toolbar.d.ts +21 -0
  131. package/dist/package/themes/default/components/diff-viewer.d.ts +34 -0
  132. package/dist/package/themes/default/components/file-manager.d.ts +55 -0
  133. package/dist/package/themes/default/components/footer.d.ts +13 -0
  134. package/dist/package/themes/default/components/infinite-scroll.d.ts +23 -0
  135. package/dist/package/themes/default/components/inline-message.d.ts +47 -0
  136. package/dist/package/themes/default/components/json-viewer.d.ts +33 -0
  137. package/dist/package/themes/default/components/kpi-stat-card.d.ts +24 -0
  138. package/dist/package/themes/default/components/member-picker.d.ts +34 -0
  139. package/dist/package/themes/default/components/meter-group.d.ts +22 -0
  140. package/dist/package/themes/default/components/navigation-rail.d.ts +28 -0
  141. package/dist/package/themes/default/components/overlay-badge.d.ts +33 -0
  142. package/dist/package/themes/default/components/page-layout.d.ts +23 -0
  143. package/dist/package/themes/default/components/permission-matrix.d.ts +29 -0
  144. package/dist/package/themes/default/components/query-builder.d.ts +26 -0
  145. package/dist/package/themes/default/components/resizable-sidebar.d.ts +16 -0
  146. package/dist/package/themes/default/components/saved-views-manager.d.ts +21 -0
  147. package/dist/package/themes/default/components/scheduler.d.ts +48 -0
  148. package/dist/package/themes/default/components/split-layout.d.ts +20 -0
  149. package/dist/package/themes/default/components/sticky-region.d.ts +9 -0
  150. package/dist/package/themes/default/components/tab-menu.d.ts +14 -0
  151. package/dist/package/themes/default/index.d.ts +864 -31
  152. package/package.json +1 -1
@@ -976,6 +976,27 @@ declare const _default: {
976
976
  marginLeft: string;
977
977
  };
978
978
  };
979
+ tieredMenu: {
980
+ iconGap: string;
981
+ submenuOffset: string;
982
+ separatorThickness: string;
983
+ separatorHeight: string;
984
+ separatorColor: string;
985
+ link: {
986
+ hoverColor: string;
987
+ activeColor: string;
988
+ };
989
+ parent: {
990
+ hoverColor: string;
991
+ activeColor: string;
992
+ };
993
+ item: {
994
+ marginTop: string;
995
+ marginRight: string;
996
+ marginBottom: string;
997
+ marginLeft: string;
998
+ };
999
+ };
979
1000
  menubar: {
980
1001
  borderColor: string;
981
1002
  borderRadius: string;
@@ -1048,6 +1069,34 @@ declare const _default: {
1048
1069
  closeFontSize: string;
1049
1070
  closeHoverBackgroundColor: string;
1050
1071
  };
1072
+ dynamicDialog: {
1073
+ width: string;
1074
+ maxWidth: string;
1075
+ maxHeight: string;
1076
+ widthSm: string;
1077
+ maxWidthSm: string;
1078
+ widthLg: string;
1079
+ maxWidthLg: string;
1080
+ padding: string;
1081
+ borderRadius: string;
1082
+ backgroundColor: string;
1083
+ textColor: string;
1084
+ overlayBackgroundColor: string;
1085
+ shadow: string;
1086
+ zIndex: string;
1087
+ headerGap: string;
1088
+ bodyGap: string;
1089
+ footerGap: string;
1090
+ titleFontSize: string;
1091
+ titleLineHeight: string;
1092
+ titleFontWeight: string;
1093
+ closeSize: string;
1094
+ closeRadius: string;
1095
+ closeOffset: string;
1096
+ closeColor: string;
1097
+ closeFontSize: string;
1098
+ closeHoverBackgroundColor: string;
1099
+ };
1051
1100
  confirmDialog: {
1052
1101
  maxWidth: string;
1053
1102
  messageColor: string;
@@ -1055,6 +1104,16 @@ declare const _default: {
1055
1104
  messageLineHeight: string;
1056
1105
  actionsGap: string;
1057
1106
  };
1107
+ confirmPopup: {
1108
+ bodyGap: string;
1109
+ titleFontSize: string;
1110
+ titleFontWeight: string;
1111
+ titleColor: string;
1112
+ messageColor: string;
1113
+ messageFontSize: string;
1114
+ messageLineHeight: string;
1115
+ actionsGap: string;
1116
+ };
1058
1117
  drawer: {
1059
1118
  width: string;
1060
1119
  widthSm: string;
@@ -1267,6 +1326,122 @@ declare const _default: {
1267
1326
  overlayBackgroundColor: string;
1268
1327
  zIndex: string;
1269
1328
  };
1329
+ appBar: {
1330
+ height: string;
1331
+ denseHeight: string;
1332
+ padding: string;
1333
+ densePadding: string;
1334
+ mobilePadding: string;
1335
+ gap: string;
1336
+ actionsGap: string;
1337
+ borderColor: string;
1338
+ backgroundColor: string;
1339
+ textColor: string;
1340
+ zIndex: string;
1341
+ };
1342
+ navigationRail: {
1343
+ width: string;
1344
+ collapsedWidth: string;
1345
+ padding: string;
1346
+ gap: string;
1347
+ borderColor: string;
1348
+ backgroundColor: string;
1349
+ textColor: string;
1350
+ disabledOpacity: string;
1351
+ toggleSize: string;
1352
+ toggleRadius: string;
1353
+ toggleBorderColor: string;
1354
+ toggleBackgroundColor: string;
1355
+ toggleTextColor: string;
1356
+ itemMinHeight: string;
1357
+ itemPadding: string;
1358
+ collapsedItemPadding: string;
1359
+ itemBorderRadius: string;
1360
+ itemGap: string;
1361
+ itemContentGap: string;
1362
+ itemColor: string;
1363
+ itemHoverBackgroundColor: string;
1364
+ itemActiveBackgroundColor: string;
1365
+ itemActiveColor: string;
1366
+ iconSize: string;
1367
+ labelFontSize: string;
1368
+ };
1369
+ footer: {
1370
+ minHeight: string;
1371
+ denseMinHeight: string;
1372
+ padding: string;
1373
+ densePadding: string;
1374
+ gap: string;
1375
+ mobileGap: string;
1376
+ sectionGap: string;
1377
+ borderColor: string;
1378
+ backgroundColor: string;
1379
+ textColor: string;
1380
+ };
1381
+ pageLayout: {
1382
+ minHeight: string;
1383
+ gap: string;
1384
+ backgroundColor: string;
1385
+ textColor: string;
1386
+ headerPadding: string;
1387
+ headerBorderColor: string;
1388
+ controlsGap: string;
1389
+ contentPadding: string;
1390
+ contentBackgroundColor: string;
1391
+ panelBackgroundColor: string;
1392
+ panelBorderColor: string;
1393
+ footerPadding: string;
1394
+ footerBorderColor: string;
1395
+ toggleSize: string;
1396
+ toggleBorderRadius: string;
1397
+ toggleBorderColor: string;
1398
+ toggleBackgroundColor: string;
1399
+ toggleTextColor: string;
1400
+ overlayBackgroundColor: string;
1401
+ zIndex: string;
1402
+ };
1403
+ splitLayout: {
1404
+ minHeight: string;
1405
+ gap: string;
1406
+ padding: string;
1407
+ panelPadding: string;
1408
+ controlsGap: string;
1409
+ backgroundColor: string;
1410
+ textColor: string;
1411
+ primaryBackgroundColor: string;
1412
+ panelBackgroundColor: string;
1413
+ panelBorderColor: string;
1414
+ toggleSize: string;
1415
+ toggleBorderRadius: string;
1416
+ toggleBorderColor: string;
1417
+ toggleBackgroundColor: string;
1418
+ toggleTextColor: string;
1419
+ overlayBackgroundColor: string;
1420
+ zIndex: string;
1421
+ };
1422
+ resizableSidebar: {
1423
+ backgroundColor: string;
1424
+ textColor: string;
1425
+ borderColor: string;
1426
+ disabledOpacity: string;
1427
+ sectionPadding: string;
1428
+ contentPadding: string;
1429
+ toggleMargin: string;
1430
+ toggleSize: string;
1431
+ toggleBorderRadius: string;
1432
+ toggleBorderColor: string;
1433
+ toggleBackgroundColor: string;
1434
+ toggleTextColor: string;
1435
+ resizerSize: string;
1436
+ };
1437
+ stickyRegion: {
1438
+ zIndex: string;
1439
+ padding: string;
1440
+ borderColor: string;
1441
+ backgroundColor: string;
1442
+ textColor: string;
1443
+ shadow: string;
1444
+ };
1270
1445
  blockui: {
1271
1446
  zIndex: string;
1272
1447
  gap: string;
@@ -1617,6 +1792,46 @@ declare const _default: {
1617
1792
  chipFontSize: string;
1618
1793
  };
1619
1794
  };
1795
+ cascadeSelect: {
1796
+ minWidth: string;
1797
+ fontSize: string;
1798
+ controlGap: string;
1799
+ chevronSize: string;
1800
+ padding: string;
1801
+ borderRadius: string;
1802
+ borderColor: string;
1803
+ backgroundColor: string;
1804
+ textColor: string;
1805
+ placeholderColor: string;
1806
+ focusBorderColor: string;
1807
+ hoverBorderColor: string;
1808
+ disabledOpacity: string;
1809
+ panelBackgroundColor: string;
1810
+ panelBorderColor: string;
1811
+ panelPadding: string;
1812
+ panelMaxHeight: string;
1813
+ panelRadiusOffset: string;
1814
+ panelShadow: string;
1815
+ focusRingShadow: string;
1816
+ searchPadding: string;
1817
+ searchBorderColor: string;
1818
+ searchBorderRadius: string;
1819
+ emptyPadding: string;
1820
+ emptyColor: string;
1821
+ loadingPadding: string;
1822
+ loadingColor: string;
1823
+ clearSize: string;
1824
+ clearRadius: string;
1825
+ clearHoverBackgroundColor: string;
1826
+ small: {
1827
+ padding: string;
1828
+ fontSize: string;
1829
+ };
1830
+ large: {
1831
+ padding: string;
1832
+ fontSize: string;
1833
+ };
1834
+ };
1620
1835
  datepicker: {
1621
1836
  minWidth: string;
1622
1837
  fontSize: string;
@@ -1973,6 +2188,19 @@ declare const _default: {
1973
2188
  panelTextColor: string;
1974
2189
  disabledOpacity: string;
1975
2190
  };
2191
+ tabMenu: {
2192
+ gap: string;
2193
+ borderWidth: string;
2194
+ borderColor: string;
2195
+ tabPadding: string;
2196
+ tabBorderRadius: string;
2197
+ tabTextColor: string;
2198
+ tabHoverTextColor: string;
2199
+ tabHoverBackgroundColor: string;
2200
+ tabActiveTextColor: string;
2201
+ tabActiveBorderColor: string;
2202
+ disabledOpacity: string;
2203
+ };
1976
2204
  accordion: {
1977
2205
  gap: string;
1978
2206
  borderRadius: string;
@@ -2548,43 +2776,144 @@ declare const _default: {
2548
2776
  chipPadding: string;
2549
2777
  };
2550
2778
  };
2551
- avatar: {
2552
- size: string;
2553
- fontSize: string;
2554
- fontWeight: string;
2779
+ advancedFilterPanel: {
2780
+ gap: string;
2781
+ padding: string;
2782
+ borderColor: string;
2783
+ borderRadius: string;
2555
2784
  backgroundColor: string;
2556
2785
  textColor: string;
2786
+ secondaryTextColor: string;
2787
+ rowGap: string;
2788
+ labelFontSize: string;
2789
+ controlHeight: string;
2790
+ controlBorderColor: string;
2791
+ controlBorderRadius: string;
2792
+ controlBackgroundColor: string;
2793
+ focusBorderColor: string;
2794
+ focusRing: string;
2795
+ disabledOpacity: string;
2796
+ };
2797
+ queryBuilder: {
2798
+ fontSize: string;
2799
+ padding: string;
2557
2800
  borderColor: string;
2558
- borderWidth: string;
2559
2801
  borderRadius: string;
2560
- statusSize: string;
2561
- statusBorderWidth: string;
2562
- statusBorderColor: string;
2563
- statusOnlineColor: string;
2564
- statusOfflineColor: string;
2565
- statusBusyColor: string;
2566
- statusAwayColor: string;
2567
- small: {
2568
- size: string;
2569
- fontSize: string;
2570
- statusSize: string;
2571
- };
2572
- large: {
2573
- size: string;
2574
- fontSize: string;
2575
- statusSize: string;
2576
- };
2802
+ backgroundColor: string;
2803
+ textColor: string;
2804
+ secondaryTextColor: string;
2805
+ rowGap: string;
2806
+ nestedOffset: string;
2807
+ groupGap: string;
2808
+ groupPadding: string;
2809
+ groupBorderRadius: string;
2810
+ groupBorderColor: string;
2811
+ groupBackgroundColor: string;
2812
+ controlHeight: string;
2813
+ controlBorderRadius: string;
2814
+ controlBorderColor: string;
2815
+ controlBackgroundColor: string;
2816
+ controlFocusBorderColor: string;
2817
+ controlFocusRing: string;
2818
+ dangerTextColor: string;
2819
+ dangerBorderColor: string;
2820
+ disabledOpacity: string;
2577
2821
  };
2578
- spinner: {
2579
- size: string;
2580
- thickness: string;
2581
- color: string;
2582
- trackColor: string;
2822
+ savedViewsManager: {
2583
2823
  gap: string;
2584
- labelColor: string;
2585
- labelFontSize: string;
2586
- animationDuration: string;
2587
- overlayMinHeight: string;
2824
+ padding: string;
2825
+ borderColor: string;
2826
+ borderRadius: string;
2827
+ backgroundColor: string;
2828
+ textColor: string;
2829
+ secondaryTextColor: string;
2830
+ rowGap: string;
2831
+ labelFontSize: string;
2832
+ controlHeight: string;
2833
+ controlBorderColor: string;
2834
+ controlBorderRadius: string;
2835
+ controlBackgroundColor: string;
2836
+ focusBorderColor: string;
2837
+ focusRing: string;
2838
+ dangerTextColor: string;
2839
+ dangerBorderColor: string;
2840
+ disabledOpacity: string;
2841
+ };
2842
+ dataTableToolbar: {
2843
+ gap: string;
2844
+ padding: string;
2845
+ borderColor: string;
2846
+ borderRadius: string;
2847
+ backgroundColor: string;
2848
+ textColor: string;
2849
+ secondaryTextColor: string;
2850
+ rowGap: string;
2851
+ labelFontSize: string;
2852
+ controlHeight: string;
2853
+ controlBorderColor: string;
2854
+ controlBorderRadius: string;
2855
+ controlBackgroundColor: string;
2856
+ badgeBackgroundColor: string;
2857
+ badgeTextColor: string;
2858
+ focusBorderColor: string;
2859
+ focusRing: string;
2860
+ disabledOpacity: string;
2861
+ };
2862
+ bulkActionBar: {
2863
+ gap: string;
2864
+ padding: string;
2865
+ borderColor: string;
2866
+ borderRadius: string;
2867
+ backgroundColor: string;
2868
+ textColor: string;
2869
+ secondaryTextColor: string;
2870
+ rowGap: string;
2871
+ controlHeight: string;
2872
+ controlBorderColor: string;
2873
+ controlBorderRadius: string;
2874
+ controlBackgroundColor: string;
2875
+ secondaryBorderColor: string;
2876
+ focusBorderColor: string;
2877
+ focusRing: string;
2878
+ disabledOpacity: string;
2879
+ };
2880
+ avatar: {
2881
+ size: string;
2882
+ fontSize: string;
2883
+ fontWeight: string;
2884
+ backgroundColor: string;
2885
+ textColor: string;
2886
+ borderColor: string;
2887
+ borderWidth: string;
2888
+ borderRadius: string;
2889
+ statusSize: string;
2890
+ statusBorderWidth: string;
2891
+ statusBorderColor: string;
2892
+ statusOnlineColor: string;
2893
+ statusOfflineColor: string;
2894
+ statusBusyColor: string;
2895
+ statusAwayColor: string;
2896
+ small: {
2897
+ size: string;
2898
+ fontSize: string;
2899
+ statusSize: string;
2900
+ };
2901
+ large: {
2902
+ size: string;
2903
+ fontSize: string;
2904
+ statusSize: string;
2905
+ };
2906
+ };
2907
+ spinner: {
2908
+ size: string;
2909
+ thickness: string;
2910
+ color: string;
2911
+ trackColor: string;
2912
+ gap: string;
2913
+ labelColor: string;
2914
+ labelFontSize: string;
2915
+ animationDuration: string;
2916
+ overlayMinHeight: string;
2588
2917
  overlayPadding: string;
2589
2918
  overlayBorderRadius: string;
2590
2919
  overlayBackgroundColor: string;
@@ -2828,6 +3157,510 @@ declare const _default: {
2828
3157
  descriptionFontSize: string;
2829
3158
  };
2830
3159
  };
3160
+ activityFeed: {
3161
+ gap: string;
3162
+ groupGap: string;
3163
+ groupTitleFontSize: string;
3164
+ groupTitleColor: string;
3165
+ groupTitleFontWeight: string;
3166
+ itemGap: string;
3167
+ itemPadding: string;
3168
+ itemBorderColor: string;
3169
+ itemBorderRadius: string;
3170
+ itemBackgroundColor: string;
3171
+ contentGap: string;
3172
+ avatarSize: string;
3173
+ avatarFontSize: string;
3174
+ avatarBackgroundColor: string;
3175
+ avatarTextColor: string;
3176
+ titleFontSize: string;
3177
+ titleColor: string;
3178
+ titleFontWeight: string;
3179
+ descriptionFontSize: string;
3180
+ descriptionColor: string;
3181
+ metaGap: string;
3182
+ metaFontSize: string;
3183
+ metaColor: string;
3184
+ actorFontWeight: string;
3185
+ actionColor: string;
3186
+ actionFontSize: string;
3187
+ infoBorderColor: string;
3188
+ successBorderColor: string;
3189
+ warnBorderColor: string;
3190
+ dangerBorderColor: string;
3191
+ emptyPadding: string;
3192
+ emptyColor: string;
3193
+ };
3194
+ auditLogViewer: {
3195
+ borderColor: string;
3196
+ borderRadius: string;
3197
+ backgroundColor: string;
3198
+ textColor: string;
3199
+ dividerColor: string;
3200
+ headerBackgroundColor: string;
3201
+ fontSize: string;
3202
+ cellPadding: string;
3203
+ eventFontWeight: string;
3204
+ metaColor: string;
3205
+ metaFontSize: string;
3206
+ actionColor: string;
3207
+ actionFontSize: string;
3208
+ detailsGap: string;
3209
+ sectionTitleFontSize: string;
3210
+ monoFontFamily: string;
3211
+ monoFontSize: string;
3212
+ };
3213
+ commentThread: {
3214
+ gap: string;
3215
+ itemGap: string;
3216
+ indentSize: string;
3217
+ borderColor: string;
3218
+ borderRadius: string;
3219
+ backgroundColor: string;
3220
+ padding: string;
3221
+ resolvedBackgroundColor: string;
3222
+ resolvedBorderColor: string;
3223
+ metaGap: string;
3224
+ authorFontWeight: string;
3225
+ metaColor: string;
3226
+ metaFontSize: string;
3227
+ actionsGap: string;
3228
+ actionColor: string;
3229
+ actionFontSize: string;
3230
+ replyMinHeight: string;
3231
+ replyBorderColor: string;
3232
+ replyBorderRadius: string;
3233
+ replyBackgroundColor: string;
3234
+ disabledOpacity: string;
3235
+ };
3236
+ memberPicker: {
3237
+ controlMinHeight: string;
3238
+ borderColor: string;
3239
+ borderRadius: string;
3240
+ backgroundColor: string;
3241
+ textColor: string;
3242
+ padding: string;
3243
+ gap: string;
3244
+ focusBorderColor: string;
3245
+ focusRingShadow: string;
3246
+ disabledOpacity: string;
3247
+ chipGap: string;
3248
+ chipBackgroundColor: string;
3249
+ chipBorderColor: string;
3250
+ chipBorderRadius: string;
3251
+ chipFontSize: string;
3252
+ chipRemoveFontSize: string;
3253
+ zIndex: string;
3254
+ panelBorderColor: string;
3255
+ panelBorderRadius: string;
3256
+ panelBackgroundColor: string;
3257
+ panelShadow: string;
3258
+ panelMaxHeight: string;
3259
+ optionPadding: string;
3260
+ optionGap: string;
3261
+ optionHighlightBackgroundColor: string;
3262
+ optionSelectedBackgroundColor: string;
3263
+ optionTitleFontSize: string;
3264
+ optionTitleFontWeight: string;
3265
+ optionMetaFontSize: string;
3266
+ optionMetaColor: string;
3267
+ statePadding: string;
3268
+ };
3269
+ permissionMatrix: {
3270
+ borderColor: string;
3271
+ borderRadius: string;
3272
+ backgroundColor: string;
3273
+ textColor: string;
3274
+ dividerColor: string;
3275
+ headerBackgroundColor: string;
3276
+ stickyBackgroundColor: string;
3277
+ cellPadding: string;
3278
+ labelFontSize: string;
3279
+ labelFontWeight: string;
3280
+ descriptionFontSize: string;
3281
+ descriptionColor: string;
3282
+ toggleMinWidth: string;
3283
+ toggleBorderColor: string;
3284
+ toggleBorderRadius: string;
3285
+ togglePadding: string;
3286
+ toggleBackgroundColor: string;
3287
+ toggleTextColor: string;
3288
+ toggleFontSize: string;
3289
+ allowBorderColor: string;
3290
+ allowBackgroundColor: string;
3291
+ allowTextColor: string;
3292
+ denyBorderColor: string;
3293
+ denyBackgroundColor: string;
3294
+ denyTextColor: string;
3295
+ disabledOpacity: string;
3296
+ };
3297
+ kpiStatCard: {
3298
+ borderColor: string;
3299
+ borderRadius: string;
3300
+ backgroundColor: string;
3301
+ textColor: string;
3302
+ padding: string;
3303
+ gap: string;
3304
+ headerGap: string;
3305
+ titleFontSize: string;
3306
+ titleFontWeight: string;
3307
+ subtitleFontSize: string;
3308
+ subtitleColor: string;
3309
+ valueGap: string;
3310
+ valueFontSize: string;
3311
+ valueFontWeight: string;
3312
+ trendGap: string;
3313
+ trendFontSize: string;
3314
+ trendColor: string;
3315
+ upColor: string;
3316
+ downColor: string;
3317
+ captionFontSize: string;
3318
+ captionColor: string;
3319
+ };
3320
+ meterGroup: {
3321
+ gap: string;
3322
+ itemGap: string;
3323
+ itemBorderColor: string;
3324
+ itemBorderRadius: string;
3325
+ itemBackgroundColor: string;
3326
+ itemPadding: string;
3327
+ headerGap: string;
3328
+ labelFontSize: string;
3329
+ labelFontWeight: string;
3330
+ valueFontSize: string;
3331
+ valueColor: string;
3332
+ trackHeight: string;
3333
+ trackBorderRadius: string;
3334
+ trackBackgroundColor: string;
3335
+ barColor: string;
3336
+ warnBarColor: string;
3337
+ dangerBarColor: string;
3338
+ descriptionFontSize: string;
3339
+ descriptionColor: string;
3340
+ };
3341
+ inlineMessage: {
3342
+ gap: string;
3343
+ paddingX: string;
3344
+ paddingY: string;
3345
+ borderRadius: string;
3346
+ borderColor: string;
3347
+ backgroundColor: string;
3348
+ textColor: string;
3349
+ iconColor: string;
3350
+ iconSize: string;
3351
+ fontSize: string;
3352
+ lineHeight: string;
3353
+ bodyGap: string;
3354
+ titleFontSize: string;
3355
+ titleFontWeight: string;
3356
+ info: {
3357
+ backgroundColor: string;
3358
+ borderColor: string;
3359
+ textColor: string;
3360
+ };
3361
+ success: {
3362
+ backgroundColor: string;
3363
+ borderColor: string;
3364
+ textColor: string;
3365
+ };
3366
+ warn: {
3367
+ backgroundColor: string;
3368
+ borderColor: string;
3369
+ textColor: string;
3370
+ };
3371
+ danger: {
3372
+ backgroundColor: string;
3373
+ borderColor: string;
3374
+ textColor: string;
3375
+ };
3376
+ small: {
3377
+ fontSize: string;
3378
+ paddingX: string;
3379
+ paddingY: string;
3380
+ };
3381
+ large: {
3382
+ fontSize: string;
3383
+ paddingX: string;
3384
+ paddingY: string;
3385
+ };
3386
+ };
3387
+ overlayBadge: {
3388
+ minSize: string;
3389
+ dotSize: string;
3390
+ paddingX: string;
3391
+ borderRadius: string;
3392
+ borderColor: string;
3393
+ backgroundColor: string;
3394
+ textColor: string;
3395
+ fontSize: string;
3396
+ fontWeight: string;
3397
+ lineHeight: string;
3398
+ zIndex: string;
3399
+ topOffset: string;
3400
+ rightOffset: string;
3401
+ bottomOffset: string;
3402
+ leftOffset: string;
3403
+ neutralBackgroundColor: string;
3404
+ neutralTextColor: string;
3405
+ neutralBorderColor: string;
3406
+ infoBackgroundColor: string;
3407
+ infoTextColor: string;
3408
+ infoBorderColor: string;
3409
+ successBackgroundColor: string;
3410
+ successTextColor: string;
3411
+ successBorderColor: string;
3412
+ warnBackgroundColor: string;
3413
+ warnTextColor: string;
3414
+ warnBorderColor: string;
3415
+ dangerBackgroundColor: string;
3416
+ dangerTextColor: string;
3417
+ dangerBorderColor: string;
3418
+ };
3419
+ fileManager: {
3420
+ gap: string;
3421
+ toolbarGap: string;
3422
+ toolbarControlsGap: string;
3423
+ viewGap: string;
3424
+ controlBorderColor: string;
3425
+ controlBorderRadius: string;
3426
+ controlBackgroundColor: string;
3427
+ controlTextColor: string;
3428
+ controlFontSize: string;
3429
+ controlPadding: string;
3430
+ controlActiveBackgroundColor: string;
3431
+ controlActiveBorderColor: string;
3432
+ controlActiveTextColor: string;
3433
+ listGap: string;
3434
+ gridGap: string;
3435
+ gridMinWidth: string;
3436
+ itemGap: string;
3437
+ itemPadding: string;
3438
+ itemBorderColor: string;
3439
+ itemBorderRadius: string;
3440
+ itemBackgroundColor: string;
3441
+ itemTextColor: string;
3442
+ itemSelectedBorderColor: string;
3443
+ itemSelectedBackgroundColor: string;
3444
+ thumbSize: string;
3445
+ thumbRadius: string;
3446
+ thumbBorderColor: string;
3447
+ thumbBackgroundColor: string;
3448
+ thumbFontSize: string;
3449
+ thumbTextColor: string;
3450
+ nameFontSize: string;
3451
+ nameFontWeight: string;
3452
+ detailsGap: string;
3453
+ detailsFontSize: string;
3454
+ detailsColor: string;
3455
+ statePadding: string;
3456
+ stateBorderColor: string;
3457
+ stateBorderRadius: string;
3458
+ stateColor: string;
3459
+ previewZIndex: string;
3460
+ previewPadding: string;
3461
+ previewOverlayBackgroundColor: string;
3462
+ previewMaxWidth: string;
3463
+ previewMaxHeight: string;
3464
+ previewGap: string;
3465
+ previewBorderColor: string;
3466
+ previewBorderRadius: string;
3467
+ previewBackgroundColor: string;
3468
+ previewTextColor: string;
3469
+ previewDialogPadding: string;
3470
+ previewImageRadius: string;
3471
+ disabledOpacity: string;
3472
+ };
3473
+ jsonViewer: {
3474
+ gap: string;
3475
+ borderColor: string;
3476
+ borderRadius: string;
3477
+ backgroundColor: string;
3478
+ textColor: string;
3479
+ padding: string;
3480
+ fontFamily: string;
3481
+ fontSize: string;
3482
+ lineHeight: string;
3483
+ indentSize: string;
3484
+ toolbarGap: string;
3485
+ toolbarGroupGap: string;
3486
+ controlBorderColor: string;
3487
+ controlBorderRadius: string;
3488
+ controlBackgroundColor: string;
3489
+ controlTextColor: string;
3490
+ controlFontSize: string;
3491
+ controlPadding: string;
3492
+ toggleSize: string;
3493
+ rowGap: string;
3494
+ rowMinHeight: string;
3495
+ cellGap: string;
3496
+ keyColor: string;
3497
+ punctuationColor: string;
3498
+ metaColor: string;
3499
+ stringColor: string;
3500
+ numberColor: string;
3501
+ booleanColor: string;
3502
+ nullColor: string;
3503
+ emptyColor: string;
3504
+ };
3505
+ diffViewer: {
3506
+ gap: string;
3507
+ borderColor: string;
3508
+ borderRadius: string;
3509
+ backgroundColor: string;
3510
+ textColor: string;
3511
+ padding: string;
3512
+ fontFamily: string;
3513
+ fontSize: string;
3514
+ lineHeight: string;
3515
+ toolbarGap: string;
3516
+ toolbarGroupGap: string;
3517
+ controlBorderColor: string;
3518
+ controlBorderRadius: string;
3519
+ controlBackgroundColor: string;
3520
+ controlTextColor: string;
3521
+ controlFontSize: string;
3522
+ controlPadding: string;
3523
+ controlActiveBackgroundColor: string;
3524
+ controlActiveBorderColor: string;
3525
+ controlActiveTextColor: string;
3526
+ dividerColor: string;
3527
+ cellPadding: string;
3528
+ rowGap: string;
3529
+ cellGap: string;
3530
+ rowBorderRadius: string;
3531
+ lineColor: string;
3532
+ markerColor: string;
3533
+ addedBackgroundColor: string;
3534
+ removedBackgroundColor: string;
3535
+ changedBackgroundColor: string;
3536
+ emptyColor: string;
3537
+ };
3538
+ codeEditor: {
3539
+ gap: string;
3540
+ borderColor: string;
3541
+ borderRadius: string;
3542
+ backgroundColor: string;
3543
+ textColor: string;
3544
+ padding: string;
3545
+ headerGap: string;
3546
+ metaFontSize: string;
3547
+ metaColor: string;
3548
+ surfaceBorderColor: string;
3549
+ surfaceBorderRadius: string;
3550
+ surfaceBackgroundColor: string;
3551
+ minHeight: string;
3552
+ stateMinHeight: string;
3553
+ stateColor: string;
3554
+ stateFontSize: string;
3555
+ darkBorderColor: string;
3556
+ darkBackgroundColor: string;
3557
+ darkTextColor: string;
3558
+ darkSurfaceBorderColor: string;
3559
+ darkSurfaceBackgroundColor: string;
3560
+ darkMetaColor: string;
3561
+ darkStateColor: string;
3562
+ disabledOpacity: string;
3563
+ };
3564
+ scheduler: {
3565
+ gap: string;
3566
+ borderColor: string;
3567
+ borderRadius: string;
3568
+ backgroundColor: string;
3569
+ textColor: string;
3570
+ padding: string;
3571
+ titleFontSize: string;
3572
+ titleFontWeight: string;
3573
+ subtitleFontSize: string;
3574
+ subtitleColor: string;
3575
+ resourceWidth: string;
3576
+ minTimelineWidth: string;
3577
+ minGridWidth: string;
3578
+ gridGap: string;
3579
+ headBackgroundColor: string;
3580
+ headBorderRadius: string;
3581
+ headPadding: string;
3582
+ headFontSize: string;
3583
+ headFontWeight: string;
3584
+ dividerColor: string;
3585
+ slotMinWidth: string;
3586
+ slotLabelFontSize: string;
3587
+ slotLabelColor: string;
3588
+ rowBorderRadius: string;
3589
+ resourcePadding: string;
3590
+ resourceBackgroundColor: string;
3591
+ resourceFontSize: string;
3592
+ resourceFontWeight: string;
3593
+ resourceMetaFontSize: string;
3594
+ resourceMetaColor: string;
3595
+ trackBackgroundColor: string;
3596
+ trackPadding: string;
3597
+ trackGap: string;
3598
+ slotHeight: string;
3599
+ slotHoverBackgroundColor: string;
3600
+ eventHeight: string;
3601
+ eventBackgroundColor: string;
3602
+ eventTextColor: string;
3603
+ eventBorderColor: string;
3604
+ eventBorderRadius: string;
3605
+ eventPadding: string;
3606
+ eventFontSize: string;
3607
+ eventTitleFontWeight: string;
3608
+ eventTimeFontSize: string;
3609
+ eventSelectedOutlineColor: string;
3610
+ };
3611
+ bottomSheet: {
3612
+ zIndex: string;
3613
+ maxWidth: string;
3614
+ maxHeight: string;
3615
+ minHeightSm: string;
3616
+ minHeight: string;
3617
+ minHeightLg: string;
3618
+ borderRadius: string;
3619
+ backgroundColor: string;
3620
+ textColor: string;
3621
+ overlayBackgroundColor: string;
3622
+ shadow: string;
3623
+ safeAreaBottom: string;
3624
+ handleWidth: string;
3625
+ handleHeight: string;
3626
+ handleColor: string;
3627
+ handleMargin: string;
3628
+ headerGap: string;
3629
+ headerPadding: string;
3630
+ titleFontSize: string;
3631
+ titleLineHeight: string;
3632
+ titleFontWeight: string;
3633
+ closeSize: string;
3634
+ closeRadius: string;
3635
+ closeColor: string;
3636
+ closeFontSize: string;
3637
+ closeHoverBackgroundColor: string;
3638
+ bodyPadding: string;
3639
+ footerPadding: string;
3640
+ footerGap: string;
3641
+ };
3642
+ infiniteScroll: {
3643
+ gap: string;
3644
+ sentinelMinHeight: string;
3645
+ sentinelPadding: string;
3646
+ textColor: string;
3647
+ fontSize: string;
3648
+ loadingColor: string;
3649
+ errorColor: string;
3650
+ endColor: string;
3651
+ disabledOpacity: string;
3652
+ hintWidth: string;
3653
+ hintHeight: string;
3654
+ hintColor: string;
3655
+ retryBorderColor: string;
3656
+ retryRadius: string;
3657
+ retryBackgroundColor: string;
3658
+ retryTextColor: string;
3659
+ retryPadding: string;
3660
+ retryFontSize: string;
3661
+ retryHoverBackgroundColor: string;
3662
+ focusRingColor: string;
3663
+ };
2831
3664
  rating: {
2832
3665
  gap: string;
2833
3666
  size: string;