@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,29 @@
1
+ declare const _default: {
2
+ borderColor: string;
3
+ borderRadius: string;
4
+ backgroundColor: string;
5
+ textColor: string;
6
+ dividerColor: string;
7
+ headerBackgroundColor: string;
8
+ stickyBackgroundColor: string;
9
+ cellPadding: string;
10
+ labelFontSize: string;
11
+ labelFontWeight: string;
12
+ descriptionFontSize: string;
13
+ descriptionColor: string;
14
+ toggleMinWidth: string;
15
+ toggleBorderColor: string;
16
+ toggleBorderRadius: string;
17
+ togglePadding: string;
18
+ toggleBackgroundColor: string;
19
+ toggleTextColor: string;
20
+ toggleFontSize: string;
21
+ allowBorderColor: string;
22
+ allowBackgroundColor: string;
23
+ allowTextColor: string;
24
+ denyBorderColor: string;
25
+ denyBackgroundColor: string;
26
+ denyTextColor: string;
27
+ disabledOpacity: string;
28
+ };
29
+ export default _default;
@@ -0,0 +1,26 @@
1
+ declare const _default: {
2
+ fontSize: string;
3
+ padding: string;
4
+ borderColor: string;
5
+ borderRadius: string;
6
+ backgroundColor: string;
7
+ textColor: string;
8
+ secondaryTextColor: string;
9
+ rowGap: string;
10
+ nestedOffset: string;
11
+ groupGap: string;
12
+ groupPadding: string;
13
+ groupBorderRadius: string;
14
+ groupBorderColor: string;
15
+ groupBackgroundColor: string;
16
+ controlHeight: string;
17
+ controlBorderRadius: string;
18
+ controlBorderColor: string;
19
+ controlBackgroundColor: string;
20
+ controlFocusBorderColor: string;
21
+ controlFocusRing: string;
22
+ dangerTextColor: string;
23
+ dangerBorderColor: string;
24
+ disabledOpacity: string;
25
+ };
26
+ export default _default;
@@ -0,0 +1,16 @@
1
+ declare const _default: {
2
+ backgroundColor: string;
3
+ textColor: string;
4
+ borderColor: string;
5
+ disabledOpacity: string;
6
+ sectionPadding: string;
7
+ contentPadding: string;
8
+ toggleMargin: string;
9
+ toggleSize: string;
10
+ toggleBorderRadius: string;
11
+ toggleBorderColor: string;
12
+ toggleBackgroundColor: string;
13
+ toggleTextColor: string;
14
+ resizerSize: string;
15
+ };
16
+ 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
+ focusBorderColor: string;
16
+ focusRing: string;
17
+ dangerTextColor: string;
18
+ dangerBorderColor: string;
19
+ disabledOpacity: string;
20
+ };
21
+ export default _default;
@@ -0,0 +1,48 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ borderColor: string;
4
+ borderRadius: string;
5
+ backgroundColor: string;
6
+ textColor: string;
7
+ padding: string;
8
+ titleFontSize: string;
9
+ titleFontWeight: string;
10
+ subtitleFontSize: string;
11
+ subtitleColor: string;
12
+ resourceWidth: string;
13
+ minTimelineWidth: string;
14
+ minGridWidth: string;
15
+ gridGap: string;
16
+ headBackgroundColor: string;
17
+ headBorderRadius: string;
18
+ headPadding: string;
19
+ headFontSize: string;
20
+ headFontWeight: string;
21
+ dividerColor: string;
22
+ slotMinWidth: string;
23
+ slotLabelFontSize: string;
24
+ slotLabelColor: string;
25
+ rowBorderRadius: string;
26
+ resourcePadding: string;
27
+ resourceBackgroundColor: string;
28
+ resourceFontSize: string;
29
+ resourceFontWeight: string;
30
+ resourceMetaFontSize: string;
31
+ resourceMetaColor: string;
32
+ trackBackgroundColor: string;
33
+ trackPadding: string;
34
+ trackGap: string;
35
+ slotHeight: string;
36
+ slotHoverBackgroundColor: string;
37
+ eventHeight: string;
38
+ eventBackgroundColor: string;
39
+ eventTextColor: string;
40
+ eventBorderColor: string;
41
+ eventBorderRadius: string;
42
+ eventPadding: string;
43
+ eventFontSize: string;
44
+ eventTitleFontWeight: string;
45
+ eventTimeFontSize: string;
46
+ eventSelectedOutlineColor: string;
47
+ };
48
+ export default _default;
@@ -0,0 +1,20 @@
1
+ declare const _default: {
2
+ minHeight: string;
3
+ gap: string;
4
+ padding: string;
5
+ panelPadding: string;
6
+ controlsGap: string;
7
+ backgroundColor: string;
8
+ textColor: string;
9
+ primaryBackgroundColor: string;
10
+ panelBackgroundColor: string;
11
+ panelBorderColor: string;
12
+ toggleSize: string;
13
+ toggleBorderRadius: string;
14
+ toggleBorderColor: string;
15
+ toggleBackgroundColor: string;
16
+ toggleTextColor: string;
17
+ overlayBackgroundColor: string;
18
+ zIndex: string;
19
+ };
20
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const _default: {
2
+ zIndex: string;
3
+ padding: string;
4
+ borderColor: string;
5
+ backgroundColor: string;
6
+ textColor: string;
7
+ shadow: string;
8
+ };
9
+ export default _default;
@@ -0,0 +1,14 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ borderWidth: string;
4
+ borderColor: string;
5
+ tabPadding: string;
6
+ tabBorderRadius: string;
7
+ tabTextColor: string;
8
+ tabHoverTextColor: string;
9
+ tabHoverBackgroundColor: string;
10
+ tabActiveTextColor: string;
11
+ tabActiveBorderColor: string;
12
+ disabledOpacity: string;
13
+ };
14
+ export default _default;