@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
@@ -0,0 +1,3 @@
1
+ import { Directive } from 'vue';
2
+ import { OverlayBadgeBinding } from '../components/overlay-badge-utils';
3
+ export declare const vOverlayBadge: Directive<HTMLElement, OverlayBadgeBinding>;
@@ -0,0 +1,41 @@
1
+ import { ComputedRef } from 'vue';
2
+ export interface DynamicDialogModalOptions {
3
+ size?: 'sm' | 'md' | 'lg';
4
+ closeOnOverlay?: boolean;
5
+ closeOnEsc?: boolean;
6
+ showClose?: boolean;
7
+ lockScroll?: boolean;
8
+ }
9
+ export type DynamicDialogListeners = Record<string, (...args: Array<unknown>) => void>;
10
+ export interface DynamicDialogOpenOptions<TPayload = unknown, TComponentProps extends Record<string, unknown> = Record<string, unknown>> {
11
+ title?: string;
12
+ message?: string;
13
+ component?: unknown;
14
+ componentProps?: TComponentProps;
15
+ listeners?: DynamicDialogListeners;
16
+ payload?: TPayload;
17
+ modal?: DynamicDialogModalOptions;
18
+ }
19
+ export interface DynamicDialogEntry<TPayload = unknown, TComponentProps extends Record<string, unknown> = Record<string, unknown>> {
20
+ id: string;
21
+ createdAt: number;
22
+ options: DynamicDialogOpenOptions<TPayload, TComponentProps>;
23
+ }
24
+ export interface DynamicDialogHandle<TResult = unknown> {
25
+ id: string;
26
+ promise: Promise<TResult | undefined>;
27
+ close: (result?: TResult) => boolean;
28
+ dismiss: () => boolean;
29
+ }
30
+ export interface DynamicDialogService {
31
+ dialogs: ReadonlyArray<DynamicDialogEntry>;
32
+ currentDialog: ComputedRef<DynamicDialogEntry | null>;
33
+ open: <TResult = unknown, TPayload = unknown, TComponentProps extends Record<string, unknown> = Record<string, unknown>>(options?: DynamicDialogOpenOptions<TPayload, TComponentProps>) => DynamicDialogHandle<TResult>;
34
+ close: <TResult = unknown>(id: string, result?: TResult) => boolean;
35
+ dismiss: (id: string) => boolean;
36
+ closeCurrent: <TResult = unknown>(result?: TResult) => boolean;
37
+ dismissCurrent: () => boolean;
38
+ clear: () => void;
39
+ }
40
+ export declare const createDynamicDialogService: () => DynamicDialogService;
41
+ export declare const dynamicDialogService: DynamicDialogService;
@@ -0,0 +1,35 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ groupGap: string;
4
+ groupTitleFontSize: string;
5
+ groupTitleColor: string;
6
+ groupTitleFontWeight: string;
7
+ itemGap: string;
8
+ itemPadding: string;
9
+ itemBorderColor: string;
10
+ itemBorderRadius: string;
11
+ itemBackgroundColor: string;
12
+ contentGap: string;
13
+ avatarSize: string;
14
+ avatarFontSize: string;
15
+ avatarBackgroundColor: string;
16
+ avatarTextColor: string;
17
+ titleFontSize: string;
18
+ titleColor: string;
19
+ titleFontWeight: string;
20
+ descriptionFontSize: string;
21
+ descriptionColor: string;
22
+ metaGap: string;
23
+ metaFontSize: string;
24
+ metaColor: string;
25
+ actorFontWeight: string;
26
+ actionColor: string;
27
+ actionFontSize: string;
28
+ infoBorderColor: string;
29
+ successBorderColor: string;
30
+ warnBorderColor: string;
31
+ dangerBorderColor: string;
32
+ emptyPadding: string;
33
+ emptyColor: string;
34
+ };
35
+ export default _default;
@@ -0,0 +1,19 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ padding: string;
4
+ borderColor: string;
5
+ borderRadius: string;
6
+ backgroundColor: string;
7
+ textColor: string;
8
+ secondaryTextColor: string;
9
+ rowGap: string;
10
+ labelFontSize: string;
11
+ controlHeight: string;
12
+ controlBorderColor: string;
13
+ controlBorderRadius: string;
14
+ controlBackgroundColor: string;
15
+ focusBorderColor: string;
16
+ focusRing: string;
17
+ disabledOpacity: string;
18
+ };
19
+ export default _default;
@@ -0,0 +1,14 @@
1
+ declare const _default: {
2
+ height: string;
3
+ denseHeight: string;
4
+ padding: string;
5
+ densePadding: string;
6
+ mobilePadding: string;
7
+ gap: string;
8
+ actionsGap: string;
9
+ borderColor: string;
10
+ backgroundColor: string;
11
+ textColor: string;
12
+ zIndex: string;
13
+ };
14
+ export default _default;
@@ -0,0 +1,20 @@
1
+ declare const _default: {
2
+ borderColor: string;
3
+ borderRadius: string;
4
+ backgroundColor: string;
5
+ textColor: string;
6
+ dividerColor: string;
7
+ headerBackgroundColor: string;
8
+ fontSize: string;
9
+ cellPadding: string;
10
+ eventFontWeight: string;
11
+ metaColor: string;
12
+ metaFontSize: string;
13
+ actionColor: string;
14
+ actionFontSize: string;
15
+ detailsGap: string;
16
+ sectionTitleFontSize: string;
17
+ monoFontFamily: string;
18
+ monoFontSize: string;
19
+ };
20
+ export default _default;
@@ -0,0 +1,32 @@
1
+ declare const _default: {
2
+ zIndex: string;
3
+ maxWidth: string;
4
+ maxHeight: string;
5
+ minHeightSm: string;
6
+ minHeight: string;
7
+ minHeightLg: string;
8
+ borderRadius: string;
9
+ backgroundColor: string;
10
+ textColor: string;
11
+ overlayBackgroundColor: string;
12
+ shadow: string;
13
+ safeAreaBottom: string;
14
+ handleWidth: string;
15
+ handleHeight: string;
16
+ handleColor: string;
17
+ handleMargin: string;
18
+ headerGap: string;
19
+ headerPadding: string;
20
+ titleFontSize: string;
21
+ titleLineHeight: string;
22
+ titleFontWeight: string;
23
+ closeSize: string;
24
+ closeRadius: string;
25
+ closeColor: string;
26
+ closeFontSize: string;
27
+ closeHoverBackgroundColor: string;
28
+ bodyPadding: string;
29
+ footerPadding: string;
30
+ footerGap: string;
31
+ };
32
+ export default _default;
@@ -0,0 +1,19 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ padding: string;
4
+ borderColor: string;
5
+ borderRadius: string;
6
+ backgroundColor: string;
7
+ textColor: string;
8
+ secondaryTextColor: string;
9
+ rowGap: string;
10
+ controlHeight: string;
11
+ controlBorderColor: string;
12
+ controlBorderRadius: string;
13
+ controlBackgroundColor: string;
14
+ secondaryBorderColor: string;
15
+ focusBorderColor: string;
16
+ focusRing: string;
17
+ disabledOpacity: string;
18
+ };
19
+ export default _default;
@@ -0,0 +1,27 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ borderColor: string;
4
+ borderRadius: string;
5
+ backgroundColor: string;
6
+ textColor: string;
7
+ padding: string;
8
+ headerGap: string;
9
+ metaFontSize: string;
10
+ metaColor: string;
11
+ surfaceBorderColor: string;
12
+ surfaceBorderRadius: string;
13
+ surfaceBackgroundColor: string;
14
+ minHeight: string;
15
+ stateMinHeight: string;
16
+ stateColor: string;
17
+ stateFontSize: string;
18
+ darkBorderColor: string;
19
+ darkBackgroundColor: string;
20
+ darkTextColor: string;
21
+ darkSurfaceBorderColor: string;
22
+ darkSurfaceBackgroundColor: string;
23
+ darkMetaColor: string;
24
+ darkStateColor: string;
25
+ disabledOpacity: string;
26
+ };
27
+ export default _default;
@@ -0,0 +1,24 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ itemGap: string;
4
+ indentSize: string;
5
+ borderColor: string;
6
+ borderRadius: string;
7
+ backgroundColor: string;
8
+ padding: string;
9
+ resolvedBackgroundColor: string;
10
+ resolvedBorderColor: string;
11
+ metaGap: string;
12
+ authorFontWeight: string;
13
+ metaColor: string;
14
+ metaFontSize: string;
15
+ actionsGap: string;
16
+ actionColor: string;
17
+ actionFontSize: string;
18
+ replyMinHeight: string;
19
+ replyBorderColor: string;
20
+ replyBorderRadius: string;
21
+ replyBackgroundColor: string;
22
+ disabledOpacity: string;
23
+ };
24
+ export default _default;
@@ -0,0 +1,11 @@
1
+ declare const _default: {
2
+ bodyGap: string;
3
+ titleFontSize: string;
4
+ titleFontWeight: string;
5
+ titleColor: string;
6
+ messageColor: string;
7
+ messageFontSize: string;
8
+ messageLineHeight: string;
9
+ actionsGap: string;
10
+ };
11
+ export default _default;
@@ -0,0 +1,21 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ padding: string;
4
+ borderColor: string;
5
+ borderRadius: string;
6
+ backgroundColor: string;
7
+ textColor: string;
8
+ secondaryTextColor: string;
9
+ rowGap: string;
10
+ labelFontSize: string;
11
+ controlHeight: string;
12
+ controlBorderColor: string;
13
+ controlBorderRadius: string;
14
+ controlBackgroundColor: string;
15
+ badgeBackgroundColor: string;
16
+ badgeTextColor: string;
17
+ focusBorderColor: string;
18
+ focusRing: string;
19
+ disabledOpacity: string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,34 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ borderColor: string;
4
+ borderRadius: string;
5
+ backgroundColor: string;
6
+ textColor: string;
7
+ padding: string;
8
+ fontFamily: string;
9
+ fontSize: string;
10
+ lineHeight: string;
11
+ toolbarGap: string;
12
+ toolbarGroupGap: string;
13
+ controlBorderColor: string;
14
+ controlBorderRadius: string;
15
+ controlBackgroundColor: string;
16
+ controlTextColor: string;
17
+ controlFontSize: string;
18
+ controlPadding: string;
19
+ controlActiveBackgroundColor: string;
20
+ controlActiveBorderColor: string;
21
+ controlActiveTextColor: string;
22
+ dividerColor: string;
23
+ cellPadding: string;
24
+ rowGap: string;
25
+ cellGap: string;
26
+ rowBorderRadius: string;
27
+ lineColor: string;
28
+ markerColor: string;
29
+ addedBackgroundColor: string;
30
+ removedBackgroundColor: string;
31
+ changedBackgroundColor: string;
32
+ emptyColor: string;
33
+ };
34
+ export default _default;
@@ -0,0 +1,55 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ toolbarGap: string;
4
+ toolbarControlsGap: string;
5
+ viewGap: string;
6
+ controlBorderColor: string;
7
+ controlBorderRadius: string;
8
+ controlBackgroundColor: string;
9
+ controlTextColor: string;
10
+ controlFontSize: string;
11
+ controlPadding: string;
12
+ controlActiveBackgroundColor: string;
13
+ controlActiveBorderColor: string;
14
+ controlActiveTextColor: string;
15
+ listGap: string;
16
+ gridGap: string;
17
+ gridMinWidth: string;
18
+ itemGap: string;
19
+ itemPadding: string;
20
+ itemBorderColor: string;
21
+ itemBorderRadius: string;
22
+ itemBackgroundColor: string;
23
+ itemTextColor: string;
24
+ itemSelectedBorderColor: string;
25
+ itemSelectedBackgroundColor: string;
26
+ thumbSize: string;
27
+ thumbRadius: string;
28
+ thumbBorderColor: string;
29
+ thumbBackgroundColor: string;
30
+ thumbFontSize: string;
31
+ thumbTextColor: string;
32
+ nameFontSize: string;
33
+ nameFontWeight: string;
34
+ detailsGap: string;
35
+ detailsFontSize: string;
36
+ detailsColor: string;
37
+ statePadding: string;
38
+ stateBorderColor: string;
39
+ stateBorderRadius: string;
40
+ stateColor: string;
41
+ previewZIndex: string;
42
+ previewPadding: string;
43
+ previewOverlayBackgroundColor: string;
44
+ previewMaxWidth: string;
45
+ previewMaxHeight: string;
46
+ previewGap: string;
47
+ previewBorderColor: string;
48
+ previewBorderRadius: string;
49
+ previewBackgroundColor: string;
50
+ previewTextColor: string;
51
+ previewDialogPadding: string;
52
+ previewImageRadius: string;
53
+ disabledOpacity: string;
54
+ };
55
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ minHeight: string;
3
+ denseMinHeight: string;
4
+ padding: string;
5
+ densePadding: string;
6
+ gap: string;
7
+ mobileGap: string;
8
+ sectionGap: string;
9
+ borderColor: string;
10
+ backgroundColor: string;
11
+ textColor: string;
12
+ };
13
+ export default _default;
@@ -0,0 +1,23 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ sentinelMinHeight: string;
4
+ sentinelPadding: string;
5
+ textColor: string;
6
+ fontSize: string;
7
+ loadingColor: string;
8
+ errorColor: string;
9
+ endColor: string;
10
+ disabledOpacity: string;
11
+ hintWidth: string;
12
+ hintHeight: string;
13
+ hintColor: string;
14
+ retryBorderColor: string;
15
+ retryRadius: string;
16
+ retryBackgroundColor: string;
17
+ retryTextColor: string;
18
+ retryPadding: string;
19
+ retryFontSize: string;
20
+ retryHoverBackgroundColor: string;
21
+ focusRingColor: string;
22
+ };
23
+ export default _default;
@@ -0,0 +1,47 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ paddingX: string;
4
+ paddingY: string;
5
+ borderRadius: string;
6
+ borderColor: string;
7
+ backgroundColor: string;
8
+ textColor: string;
9
+ iconColor: string;
10
+ iconSize: string;
11
+ fontSize: string;
12
+ lineHeight: string;
13
+ bodyGap: string;
14
+ titleFontSize: string;
15
+ titleFontWeight: string;
16
+ info: {
17
+ backgroundColor: string;
18
+ borderColor: string;
19
+ textColor: string;
20
+ };
21
+ success: {
22
+ backgroundColor: string;
23
+ borderColor: string;
24
+ textColor: string;
25
+ };
26
+ warn: {
27
+ backgroundColor: string;
28
+ borderColor: string;
29
+ textColor: string;
30
+ };
31
+ danger: {
32
+ backgroundColor: string;
33
+ borderColor: string;
34
+ textColor: string;
35
+ };
36
+ small: {
37
+ fontSize: string;
38
+ paddingX: string;
39
+ paddingY: string;
40
+ };
41
+ large: {
42
+ fontSize: string;
43
+ paddingX: string;
44
+ paddingY: string;
45
+ };
46
+ };
47
+ export default _default;
@@ -0,0 +1,33 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ borderColor: string;
4
+ borderRadius: string;
5
+ backgroundColor: string;
6
+ textColor: string;
7
+ padding: string;
8
+ fontFamily: string;
9
+ fontSize: string;
10
+ lineHeight: string;
11
+ indentSize: string;
12
+ toolbarGap: string;
13
+ toolbarGroupGap: string;
14
+ controlBorderColor: string;
15
+ controlBorderRadius: string;
16
+ controlBackgroundColor: string;
17
+ controlTextColor: string;
18
+ controlFontSize: string;
19
+ controlPadding: string;
20
+ toggleSize: string;
21
+ rowGap: string;
22
+ rowMinHeight: string;
23
+ cellGap: string;
24
+ keyColor: string;
25
+ punctuationColor: string;
26
+ metaColor: string;
27
+ stringColor: string;
28
+ numberColor: string;
29
+ booleanColor: string;
30
+ nullColor: string;
31
+ emptyColor: string;
32
+ };
33
+ export default _default;
@@ -0,0 +1,24 @@
1
+ declare const _default: {
2
+ borderColor: string;
3
+ borderRadius: string;
4
+ backgroundColor: string;
5
+ textColor: string;
6
+ padding: string;
7
+ gap: string;
8
+ headerGap: string;
9
+ titleFontSize: string;
10
+ titleFontWeight: string;
11
+ subtitleFontSize: string;
12
+ subtitleColor: string;
13
+ valueGap: string;
14
+ valueFontSize: string;
15
+ valueFontWeight: string;
16
+ trendGap: string;
17
+ trendFontSize: string;
18
+ trendColor: string;
19
+ upColor: string;
20
+ downColor: string;
21
+ captionFontSize: string;
22
+ captionColor: string;
23
+ };
24
+ export default _default;
@@ -0,0 +1,34 @@
1
+ declare const _default: {
2
+ controlMinHeight: string;
3
+ borderColor: string;
4
+ borderRadius: string;
5
+ backgroundColor: string;
6
+ textColor: string;
7
+ padding: string;
8
+ gap: string;
9
+ focusBorderColor: string;
10
+ focusRingShadow: string;
11
+ disabledOpacity: string;
12
+ chipGap: string;
13
+ chipBackgroundColor: string;
14
+ chipBorderColor: string;
15
+ chipBorderRadius: string;
16
+ chipFontSize: string;
17
+ chipRemoveFontSize: string;
18
+ zIndex: string;
19
+ panelBorderColor: string;
20
+ panelBorderRadius: string;
21
+ panelBackgroundColor: string;
22
+ panelShadow: string;
23
+ panelMaxHeight: string;
24
+ optionPadding: string;
25
+ optionGap: string;
26
+ optionHighlightBackgroundColor: string;
27
+ optionSelectedBackgroundColor: string;
28
+ optionTitleFontSize: string;
29
+ optionTitleFontWeight: string;
30
+ optionMetaFontSize: string;
31
+ optionMetaColor: string;
32
+ statePadding: string;
33
+ };
34
+ export default _default;
@@ -0,0 +1,22 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ itemGap: string;
4
+ itemBorderColor: string;
5
+ itemBorderRadius: string;
6
+ itemBackgroundColor: string;
7
+ itemPadding: string;
8
+ headerGap: string;
9
+ labelFontSize: string;
10
+ labelFontWeight: string;
11
+ valueFontSize: string;
12
+ valueColor: string;
13
+ trackHeight: string;
14
+ trackBorderRadius: string;
15
+ trackBackgroundColor: string;
16
+ barColor: string;
17
+ warnBarColor: string;
18
+ dangerBarColor: string;
19
+ descriptionFontSize: string;
20
+ descriptionColor: string;
21
+ };
22
+ export default _default;
@@ -0,0 +1,28 @@
1
+ declare const _default: {
2
+ width: string;
3
+ collapsedWidth: string;
4
+ padding: string;
5
+ gap: string;
6
+ borderColor: string;
7
+ backgroundColor: string;
8
+ textColor: string;
9
+ disabledOpacity: string;
10
+ toggleSize: string;
11
+ toggleRadius: string;
12
+ toggleBorderColor: string;
13
+ toggleBackgroundColor: string;
14
+ toggleTextColor: string;
15
+ itemMinHeight: string;
16
+ itemPadding: string;
17
+ collapsedItemPadding: string;
18
+ itemBorderRadius: string;
19
+ itemGap: string;
20
+ itemContentGap: string;
21
+ itemColor: string;
22
+ itemHoverBackgroundColor: string;
23
+ itemActiveBackgroundColor: string;
24
+ itemActiveColor: string;
25
+ iconSize: string;
26
+ labelFontSize: string;
27
+ };
28
+ export default _default;
@@ -0,0 +1,33 @@
1
+ declare const _default: {
2
+ minSize: string;
3
+ dotSize: string;
4
+ paddingX: string;
5
+ borderRadius: string;
6
+ borderColor: string;
7
+ backgroundColor: string;
8
+ textColor: string;
9
+ fontSize: string;
10
+ fontWeight: string;
11
+ lineHeight: string;
12
+ zIndex: string;
13
+ topOffset: string;
14
+ rightOffset: string;
15
+ bottomOffset: string;
16
+ leftOffset: string;
17
+ neutralBackgroundColor: string;
18
+ neutralTextColor: string;
19
+ neutralBorderColor: string;
20
+ infoBackgroundColor: string;
21
+ infoTextColor: string;
22
+ infoBorderColor: string;
23
+ successBackgroundColor: string;
24
+ successTextColor: string;
25
+ successBorderColor: string;
26
+ warnBackgroundColor: string;
27
+ warnTextColor: string;
28
+ warnBorderColor: string;
29
+ dangerBackgroundColor: string;
30
+ dangerTextColor: string;
31
+ dangerBorderColor: string;
32
+ };
33
+ export default _default;
@@ -0,0 +1,23 @@
1
+ declare const _default: {
2
+ minHeight: string;
3
+ gap: string;
4
+ backgroundColor: string;
5
+ textColor: string;
6
+ headerPadding: string;
7
+ headerBorderColor: string;
8
+ controlsGap: string;
9
+ contentPadding: string;
10
+ contentBackgroundColor: string;
11
+ panelBackgroundColor: string;
12
+ panelBorderColor: string;
13
+ footerPadding: string;
14
+ footerBorderColor: string;
15
+ toggleSize: string;
16
+ toggleBorderRadius: string;
17
+ toggleBorderColor: string;
18
+ toggleBackgroundColor: string;
19
+ toggleTextColor: string;
20
+ overlayBackgroundColor: string;
21
+ zIndex: string;
22
+ };
23
+ export default _default;