@codemonster-ru/vueforge 0.94.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 (50) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.d.ts +13 -3
  3. package/dist/index.ts.mjs +13253 -11560
  4. package/dist/index.ts.umd.js +17 -17
  5. package/dist/package/components/__tests__/app-bar.test.d.ts +1 -0
  6. package/dist/package/components/__tests__/footer.test.d.ts +1 -0
  7. package/dist/package/components/__tests__/navigation-rail.test.d.ts +1 -0
  8. package/dist/package/components/__tests__/page-layout.test.d.ts +1 -0
  9. package/dist/package/components/__tests__/resizable-sidebar.test.d.ts +1 -0
  10. package/dist/package/components/__tests__/show-hide.test.d.ts +1 -0
  11. package/dist/package/components/__tests__/split-layout.test.d.ts +1 -0
  12. package/dist/package/components/__tests__/sticky-region.test.d.ts +1 -0
  13. package/dist/package/components/accordion-context.d.ts +2 -0
  14. package/dist/package/components/accordion.vue.d.ts +23 -0
  15. package/dist/package/components/activity-feed.vue.d.ts +2 -0
  16. package/dist/package/components/app-bar.vue.d.ts +47 -0
  17. package/dist/package/components/audit-log-viewer.vue.d.ts +2 -0
  18. package/dist/package/components/block-ui.vue.d.ts +1 -1
  19. package/dist/package/components/cascade-select.vue.d.ts +1 -1
  20. package/dist/package/components/command-palette.vue.d.ts +32 -1
  21. package/dist/package/components/comment-thread.vue.d.ts +2 -0
  22. package/dist/package/components/data-table.vue.d.ts +45 -1
  23. package/dist/package/components/footer.vue.d.ts +45 -0
  24. package/dist/package/components/hide.vue.d.ts +29 -0
  25. package/dist/package/components/kanban-board.vue.d.ts +15 -27
  26. package/dist/package/components/navigation-rail.vue.d.ts +289 -0
  27. package/dist/package/components/notification-center.vue.d.ts +35 -11
  28. package/dist/package/components/page-layout.vue.d.ts +84 -0
  29. package/dist/package/components/rating.vue.d.ts +4 -0
  30. package/dist/package/components/resizable-sidebar.vue.d.ts +73 -0
  31. package/dist/package/components/scheduler.vue.d.ts +2 -0
  32. package/dist/package/components/scroll-panel.vue.d.ts +1 -1
  33. package/dist/package/components/show.vue.d.ts +29 -0
  34. package/dist/package/components/split-layout.vue.d.ts +73 -0
  35. package/dist/package/components/splitter.vue.d.ts +2 -2
  36. package/dist/package/components/sticky-region.vue.d.ts +35 -0
  37. package/dist/package/components/tree-node.vue.d.ts +2 -0
  38. package/dist/package/components/tree-table.vue.d.ts +1 -1
  39. package/dist/package/components/tree.vue.d.ts +21 -0
  40. package/dist/package/config/locale-text.d.ts +10 -0
  41. package/dist/package/config/theme-core.d.ts +123 -0
  42. package/dist/package/themes/default/components/app-bar.d.ts +14 -0
  43. package/dist/package/themes/default/components/footer.d.ts +13 -0
  44. package/dist/package/themes/default/components/navigation-rail.d.ts +28 -0
  45. package/dist/package/themes/default/components/page-layout.d.ts +23 -0
  46. package/dist/package/themes/default/components/resizable-sidebar.d.ts +16 -0
  47. package/dist/package/themes/default/components/split-layout.d.ts +20 -0
  48. package/dist/package/themes/default/components/sticky-region.d.ts +9 -0
  49. package/dist/package/themes/default/index.d.ts +116 -0
  50. package/package.json +1 -1
@@ -0,0 +1,73 @@
1
+ type SplitLayoutPreset = 'master-detail' | 'inspector' | 'editor-preview';
2
+ interface Props {
3
+ preset?: SplitLayoutPreset;
4
+ secondaryCollapsed?: boolean;
5
+ tertiaryCollapsed?: boolean;
6
+ secondaryWidth?: string;
7
+ tertiaryWidth?: string;
8
+ mobileBreakpoint?: number;
9
+ showMobileToggles?: boolean;
10
+ showDesktopToggles?: boolean;
11
+ closeOnEsc?: boolean;
12
+ primaryAriaLabel?: string;
13
+ secondaryAriaLabel?: string;
14
+ tertiaryAriaLabel?: string;
15
+ secondaryToggleLabel?: string;
16
+ tertiaryToggleLabel?: string;
17
+ closeSecondaryLabel?: string;
18
+ closeTertiaryLabel?: string;
19
+ secondaryToggleIcon?: string;
20
+ tertiaryToggleIcon?: string;
21
+ }
22
+ declare function __VLS_template(): {
23
+ attrs: Partial<{}>;
24
+ slots: {
25
+ default?(_: {}): any;
26
+ secondary?(_: {
27
+ mobile: boolean;
28
+ open: boolean;
29
+ }): any;
30
+ tertiary?(_: {
31
+ mobile: boolean;
32
+ open: boolean;
33
+ }): any;
34
+ };
35
+ refs: {};
36
+ rootEl: HTMLElement;
37
+ };
38
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
39
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
40
+ "breakpoint-change": (mobile: boolean) => any;
41
+ "update:secondaryCollapsed": (value: boolean) => any;
42
+ "update:tertiaryCollapsed": (value: boolean) => any;
43
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
44
+ "onBreakpoint-change"?: ((mobile: boolean) => any) | undefined;
45
+ "onUpdate:secondaryCollapsed"?: ((value: boolean) => any) | undefined;
46
+ "onUpdate:tertiaryCollapsed"?: ((value: boolean) => any) | undefined;
47
+ }>, {
48
+ preset: SplitLayoutPreset;
49
+ closeOnEsc: boolean;
50
+ mobileBreakpoint: number;
51
+ showMobileToggles: boolean;
52
+ showDesktopToggles: boolean;
53
+ secondaryCollapsed: boolean;
54
+ tertiaryCollapsed: boolean;
55
+ secondaryWidth: string;
56
+ tertiaryWidth: string;
57
+ primaryAriaLabel: string;
58
+ secondaryAriaLabel: string;
59
+ tertiaryAriaLabel: string;
60
+ secondaryToggleLabel: string;
61
+ tertiaryToggleLabel: string;
62
+ closeSecondaryLabel: string;
63
+ closeTertiaryLabel: string;
64
+ secondaryToggleIcon: string;
65
+ tertiaryToggleIcon: string;
66
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
67
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
68
+ export default _default;
69
+ type __VLS_WithTemplateSlots<T, S> = T & {
70
+ new (): {
71
+ $slots: S;
72
+ };
73
+ };
@@ -29,10 +29,10 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
29
29
  disabled: boolean;
30
30
  modelValue: Array<number>;
31
31
  direction: SplitterDirection;
32
- minSizes: Array<number>;
33
- gutterSize: number | string;
34
32
  persistence: "none" | "local" | "session";
35
33
  persistenceKey: string;
34
+ minSizes: Array<number>;
35
+ gutterSize: number | string;
36
36
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
37
37
  root: HTMLDivElement;
38
38
  }, HTMLDivElement>;
@@ -0,0 +1,35 @@
1
+ type StickyEdge = 'top' | 'bottom';
2
+ interface Props {
3
+ as?: string;
4
+ edge?: StickyEdge;
5
+ offset?: string;
6
+ zIndex?: string | number;
7
+ bordered?: boolean;
8
+ shadow?: boolean;
9
+ ariaLabel?: string;
10
+ }
11
+ declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
13
+ slots: {
14
+ default?(_: {}): any;
15
+ };
16
+ refs: {};
17
+ rootEl: any;
18
+ };
19
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
21
+ as: string;
22
+ ariaLabel: string;
23
+ bordered: boolean;
24
+ offset: string;
25
+ zIndex: string | number;
26
+ edge: StickyEdge;
27
+ shadow: boolean;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
+ export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -10,8 +10,10 @@ interface Props {
10
10
  isSelected: (key: TreeValue) => boolean;
11
11
  isExpanded: (key: TreeValue) => boolean;
12
12
  isDisabled: (node: TreeItem) => boolean;
13
+ isLoading: (key: TreeValue) => boolean;
13
14
  onSelect: (node: TreeItem, event: Event) => void;
14
15
  onToggle: (node: TreeItem, event: Event) => void;
16
+ loadingLabel: string;
15
17
  }
16
18
  type TreeLabelSlotProps = {
17
19
  node: TreeItem;
@@ -109,6 +109,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
109
109
  emptyText: string;
110
110
  selectable: boolean;
111
111
  expandOnClick: boolean;
112
+ loadingKeys: Array<TreeTableValue>;
112
113
  striped: boolean;
113
114
  hover: boolean;
114
115
  server: boolean;
@@ -116,7 +117,6 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
116
117
  minColumnWidth: number;
117
118
  columnReorder: boolean;
118
119
  columnOrder: Array<string>;
119
- loadingKeys: Array<TreeTableValue>;
120
120
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
121
121
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
122
122
  export default _default;
@@ -1,4 +1,5 @@
1
1
  export type TreeValue = string | number;
2
+ export type TreeSelectionMode = 'none' | 'single' | 'multiple';
2
3
  export interface TreeItem {
3
4
  key: TreeValue;
4
5
  label: string;
@@ -19,6 +20,7 @@ interface Props {
19
20
  modelValue?: TreeModelValue;
20
21
  expandedKeys?: Array<TreeValue>;
21
22
  multiple?: boolean;
23
+ selectionMode?: TreeSelectionMode;
22
24
  selectable?: boolean;
23
25
  expandOnClick?: boolean;
24
26
  disabled?: boolean;
@@ -26,6 +28,14 @@ interface Props {
26
28
  variant?: 'filled' | 'outlined';
27
29
  ariaLabel?: string;
28
30
  ariaLabelledby?: string;
31
+ virtualized?: boolean;
32
+ virtualizationThreshold?: number;
33
+ itemHeight?: number;
34
+ virtualHeight?: number;
35
+ overscan?: number;
36
+ loadingKeys?: Array<TreeValue>;
37
+ loadOnExpand?: boolean;
38
+ asyncBranchLabel?: string;
29
39
  }
30
40
  declare function __VLS_template(): {
31
41
  attrs: Partial<{}>;
@@ -44,12 +54,14 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
44
54
  "update:modelValue": (...args: any[]) => void;
45
55
  "update:expandedKeys": (...args: any[]) => void;
46
56
  nodeClick: (...args: any[]) => void;
57
+ loadChildren: (...args: any[]) => void;
47
58
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
48
59
  onChange?: ((...args: any[]) => any) | undefined;
49
60
  onToggle?: ((...args: any[]) => any) | undefined;
50
61
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
51
62
  "onUpdate:expandedKeys"?: ((...args: any[]) => any) | undefined;
52
63
  onNodeClick?: ((...args: any[]) => any) | undefined;
64
+ onLoadChildren?: ((...args: any[]) => any) | undefined;
53
65
  }>, {
54
66
  disabled: boolean;
55
67
  modelValue: TreeValue | TreeValue[];
@@ -62,6 +74,15 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
62
74
  ariaLabelledby: string;
63
75
  selectable: boolean;
64
76
  expandOnClick: boolean;
77
+ selectionMode: TreeSelectionMode;
78
+ virtualized: boolean;
79
+ virtualizationThreshold: number;
80
+ itemHeight: number;
81
+ virtualHeight: number;
82
+ overscan: number;
83
+ loadingKeys: Array<TreeValue>;
84
+ loadOnExpand: boolean;
85
+ asyncBranchLabel: string;
65
86
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
66
87
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
67
88
  export default _default;
@@ -47,6 +47,8 @@ export type LocaleTextSchema = {
47
47
  placeholder: string;
48
48
  emptyText: string;
49
49
  ariaLabel: string;
50
+ scopeAllLabel: string;
51
+ recentLabel: string;
50
52
  };
51
53
  notificationCenter: {
52
54
  title: string;
@@ -56,6 +58,9 @@ export type LocaleTextSchema = {
56
58
  closeLabel: string;
57
59
  readLabel: string;
58
60
  unreadLabel: string;
61
+ filterAllLabel: string;
62
+ filterUnreadLabel: string;
63
+ filterReadLabel: string;
59
64
  };
60
65
  virtualScroller: {
61
66
  ariaLabel: string;
@@ -126,6 +131,8 @@ export declare const useLocaleText: () => {
126
131
  readonly placeholder: string;
127
132
  readonly emptyText: string;
128
133
  readonly ariaLabel: string;
134
+ readonly scopeAllLabel: string;
135
+ readonly recentLabel: string;
129
136
  };
130
137
  readonly notificationCenter: {
131
138
  readonly title: string;
@@ -135,6 +142,9 @@ export declare const useLocaleText: () => {
135
142
  readonly closeLabel: string;
136
143
  readonly readLabel: string;
137
144
  readonly unreadLabel: string;
145
+ readonly filterAllLabel: string;
146
+ readonly filterUnreadLabel: string;
147
+ readonly filterReadLabel: string;
138
148
  };
139
149
  readonly virtualScroller: {
140
150
  readonly ariaLabel: string;
@@ -94,6 +94,122 @@ export type ToolbarTokens = {
94
94
  sectionGap?: string;
95
95
  controlGap?: string;
96
96
  };
97
+ export type AppBarTokens = {
98
+ height?: string;
99
+ denseHeight?: string;
100
+ padding?: string;
101
+ densePadding?: string;
102
+ mobilePadding?: string;
103
+ gap?: string;
104
+ actionsGap?: string;
105
+ borderColor?: string;
106
+ backgroundColor?: string;
107
+ textColor?: string;
108
+ zIndex?: string;
109
+ };
110
+ export type NavigationRailTokens = {
111
+ width?: string;
112
+ collapsedWidth?: string;
113
+ padding?: string;
114
+ gap?: string;
115
+ borderColor?: string;
116
+ backgroundColor?: string;
117
+ textColor?: string;
118
+ disabledOpacity?: string;
119
+ toggleSize?: string;
120
+ toggleRadius?: string;
121
+ toggleBorderColor?: string;
122
+ toggleBackgroundColor?: string;
123
+ toggleTextColor?: string;
124
+ itemMinHeight?: string;
125
+ itemPadding?: string;
126
+ collapsedItemPadding?: string;
127
+ itemBorderRadius?: string;
128
+ itemGap?: string;
129
+ itemContentGap?: string;
130
+ itemColor?: string;
131
+ itemHoverBackgroundColor?: string;
132
+ itemActiveBackgroundColor?: string;
133
+ itemActiveColor?: string;
134
+ iconSize?: string;
135
+ labelFontSize?: string;
136
+ };
137
+ export type FooterTokens = {
138
+ minHeight?: string;
139
+ denseMinHeight?: string;
140
+ padding?: string;
141
+ densePadding?: string;
142
+ gap?: string;
143
+ mobileGap?: string;
144
+ sectionGap?: string;
145
+ borderColor?: string;
146
+ backgroundColor?: string;
147
+ textColor?: string;
148
+ };
149
+ export type PageLayoutTokens = {
150
+ minHeight?: string;
151
+ gap?: string;
152
+ backgroundColor?: string;
153
+ textColor?: string;
154
+ headerPadding?: string;
155
+ headerBorderColor?: string;
156
+ controlsGap?: string;
157
+ contentPadding?: string;
158
+ contentBackgroundColor?: string;
159
+ panelBackgroundColor?: string;
160
+ panelBorderColor?: string;
161
+ footerPadding?: string;
162
+ footerBorderColor?: string;
163
+ toggleSize?: string;
164
+ toggleBorderRadius?: string;
165
+ toggleBorderColor?: string;
166
+ toggleBackgroundColor?: string;
167
+ toggleTextColor?: string;
168
+ overlayBackgroundColor?: string;
169
+ zIndex?: string;
170
+ };
171
+ export type SplitLayoutTokens = {
172
+ minHeight?: string;
173
+ gap?: string;
174
+ padding?: string;
175
+ panelPadding?: string;
176
+ controlsGap?: string;
177
+ backgroundColor?: string;
178
+ textColor?: string;
179
+ primaryBackgroundColor?: string;
180
+ panelBackgroundColor?: string;
181
+ panelBorderColor?: string;
182
+ toggleSize?: string;
183
+ toggleBorderRadius?: string;
184
+ toggleBorderColor?: string;
185
+ toggleBackgroundColor?: string;
186
+ toggleTextColor?: string;
187
+ overlayBackgroundColor?: string;
188
+ zIndex?: string;
189
+ };
190
+ export type ResizableSidebarTokens = {
191
+ backgroundColor?: string;
192
+ textColor?: string;
193
+ borderColor?: string;
194
+ disabledOpacity?: string;
195
+ sectionPadding?: string;
196
+ contentPadding?: string;
197
+ toggleMargin?: string;
198
+ toggleSize?: string;
199
+ toggleBorderRadius?: string;
200
+ toggleBorderColor?: string;
201
+ toggleBackgroundColor?: string;
202
+ toggleTextColor?: string;
203
+ resizerSize?: string;
204
+ };
205
+ export type StickyRegionTokens = {
206
+ zIndex?: string;
207
+ padding?: string;
208
+ borderColor?: string;
209
+ backgroundColor?: string;
210
+ textColor?: string;
211
+ shadow?: string;
212
+ };
97
213
  export type BlockUiTokens = {
98
214
  zIndex?: string;
99
215
  gap?: string;
@@ -3328,6 +3444,7 @@ export type ThemeComponentTokens = {
3328
3444
  panel?: PanelTokens;
3329
3445
  fieldset?: FieldsetTokens;
3330
3446
  toolbar?: ToolbarTokens;
3447
+ appBar?: AppBarTokens;
3331
3448
  blockui?: BlockUiTokens;
3332
3449
  scrollpanel?: ScrollPanelTokens;
3333
3450
  scrolltop?: ScrollTopTokens;
@@ -3389,6 +3506,12 @@ export type ThemeComponentTokens = {
3389
3506
  notificationCenter?: NotificationCenterTokens;
3390
3507
  appShell?: AppShellTokens;
3391
3508
  kanbanBoard?: KanbanBoardTokens;
3509
+ navigationRail?: NavigationRailTokens;
3510
+ footer?: FooterTokens;
3511
+ pageLayout?: PageLayoutTokens;
3512
+ splitLayout?: SplitLayoutTokens;
3513
+ resizableSidebar?: ResizableSidebarTokens;
3514
+ stickyRegion?: StickyRegionTokens;
3392
3515
  select?: SelectTokens;
3393
3516
  autocomplete?: AutocompleteTokens;
3394
3517
  combobox?: ComboboxTokens;
@@ -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,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,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,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;
@@ -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,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;
@@ -1326,6 +1326,122 @@ declare const _default: {
1326
1326
  overlayBackgroundColor: string;
1327
1327
  zIndex: string;
1328
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
+ };
1329
1445
  blockui: {
1330
1446
  zIndex: string;
1331
1447
  gap: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.94.0",
3
+ "version": "0.95.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",