@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,289 @@
1
+ import { RouteLocationAsPathGeneric, RouteLocationAsRelativeGeneric } from 'vue-router';
2
+ type NavigationRailSide = 'left' | 'right';
3
+ type NavigationRailKey = string | number;
4
+ export interface NavigationRailItem {
5
+ key?: NavigationRailKey;
6
+ label: string;
7
+ icon?: string;
8
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
9
+ href?: string;
10
+ url?: string;
11
+ active?: boolean;
12
+ exact?: boolean;
13
+ disabled?: boolean;
14
+ command?: () => void;
15
+ }
16
+ interface Props {
17
+ items?: Array<NavigationRailItem>;
18
+ modelValue?: NavigationRailKey | null;
19
+ collapsed?: boolean;
20
+ side?: NavigationRailSide;
21
+ disabled?: boolean;
22
+ showToggle?: boolean;
23
+ ariaLabel?: string;
24
+ collapseLabel?: string;
25
+ expandLabel?: string;
26
+ collapseIcon?: string;
27
+ expandIcon?: string;
28
+ syncActiveFromRoute?: boolean;
29
+ }
30
+ declare function __VLS_template(): {
31
+ attrs: Partial<{}>;
32
+ slots: Readonly<{
33
+ header?: (props: {
34
+ collapsed: boolean;
35
+ toggle: () => void;
36
+ }) => unknown;
37
+ footer?: (props: {
38
+ collapsed: boolean;
39
+ toggle: () => void;
40
+ }) => unknown;
41
+ item?: (props: {
42
+ item: NavigationRailItem;
43
+ index: number;
44
+ active: boolean;
45
+ collapsed: boolean;
46
+ }) => unknown;
47
+ }> & {
48
+ header?: (props: {
49
+ collapsed: boolean;
50
+ toggle: () => void;
51
+ }) => unknown;
52
+ footer?: (props: {
53
+ collapsed: boolean;
54
+ toggle: () => void;
55
+ }) => unknown;
56
+ item?: (props: {
57
+ item: NavigationRailItem;
58
+ index: number;
59
+ active: boolean;
60
+ collapsed: boolean;
61
+ }) => unknown;
62
+ };
63
+ refs: {
64
+ itemRefs: (({
65
+ $: import('vue').ComponentInternalInstance;
66
+ $data: {};
67
+ $props: {
68
+ readonly to?: (string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric) | undefined;
69
+ readonly href?: string | undefined;
70
+ readonly url?: string | undefined;
71
+ readonly as?: "a" | "router-link" | undefined;
72
+ readonly type?: string | undefined;
73
+ readonly label?: string | undefined;
74
+ readonly active?: boolean | undefined;
75
+ readonly disabled?: boolean | undefined;
76
+ readonly onClick?: ((...args: any[]) => any) | undefined;
77
+ readonly onActive?: ((...args: any[]) => any) | undefined;
78
+ readonly "onUpdate:active"?: ((...args: any[]) => any) | undefined;
79
+ readonly onOnActive?: ((...args: any[]) => any) | undefined;
80
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
81
+ $attrs: {
82
+ [x: string]: unknown;
83
+ };
84
+ $refs: {
85
+ [x: string]: unknown;
86
+ } & {
87
+ link: any;
88
+ };
89
+ $slots: Readonly<{
90
+ [name: string]: import('vue').Slot<any> | undefined;
91
+ }>;
92
+ $root: import('vue').ComponentPublicInstance | null;
93
+ $parent: import('vue').ComponentPublicInstance | null;
94
+ $host: Element | null;
95
+ $emit: ((event: "click", ...args: any[]) => void) & ((event: "active", ...args: any[]) => void) & ((event: "update:active", ...args: any[]) => void) & ((event: "onActive", ...args: any[]) => void);
96
+ $el: any;
97
+ $options: import('vue').ComponentOptionsBase<Readonly<import('./link.vue').Props> & Readonly<{
98
+ onClick?: ((...args: any[]) => any) | undefined;
99
+ onActive?: ((...args: any[]) => any) | undefined;
100
+ "onUpdate:active"?: ((...args: any[]) => any) | undefined;
101
+ onOnActive?: ((...args: any[]) => any) | undefined;
102
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
103
+ click: (...args: any[]) => void;
104
+ active: (...args: any[]) => void;
105
+ "update:active": (...args: any[]) => void;
106
+ onActive: (...args: any[]) => void;
107
+ }, string, {
108
+ to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
109
+ href: string;
110
+ url: string;
111
+ as: "a" | "router-link";
112
+ type: string;
113
+ label: string;
114
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
115
+ beforeCreate?: (() => void) | (() => void)[];
116
+ created?: (() => void) | (() => void)[];
117
+ beforeMount?: (() => void) | (() => void)[];
118
+ mounted?: (() => void) | (() => void)[];
119
+ beforeUpdate?: (() => void) | (() => void)[];
120
+ updated?: (() => void) | (() => void)[];
121
+ activated?: (() => void) | (() => void)[];
122
+ deactivated?: (() => void) | (() => void)[];
123
+ beforeDestroy?: (() => void) | (() => void)[];
124
+ beforeUnmount?: (() => void) | (() => void)[];
125
+ destroyed?: (() => void) | (() => void)[];
126
+ unmounted?: (() => void) | (() => void)[];
127
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
128
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
129
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
130
+ };
131
+ $forceUpdate: () => void;
132
+ $nextTick: typeof import('vue').nextTick;
133
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
134
+ } & Readonly<{
135
+ to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
136
+ href: string;
137
+ url: string;
138
+ as: "a" | "router-link";
139
+ type: string;
140
+ label: string;
141
+ }> & Omit<Readonly<import('./link.vue').Props> & Readonly<{
142
+ onClick?: ((...args: any[]) => any) | undefined;
143
+ onActive?: ((...args: any[]) => any) | undefined;
144
+ "onUpdate:active"?: ((...args: any[]) => any) | undefined;
145
+ onOnActive?: ((...args: any[]) => any) | undefined;
146
+ }>, "to" | "href" | "url" | "as" | "type" | "label"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
147
+ $slots: {
148
+ default?(_: {}): any;
149
+ default?(_: {}): any;
150
+ };
151
+ }) | null)[];
152
+ };
153
+ rootEl: HTMLElement;
154
+ };
155
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
156
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
157
+ select: (payload: {
158
+ item: NavigationRailItem;
159
+ index: number;
160
+ key: NavigationRailKey;
161
+ event: MouseEvent | KeyboardEvent;
162
+ }) => any;
163
+ toggle: (payload: {
164
+ collapsed: boolean;
165
+ }) => any;
166
+ "update:modelValue": (value: NavigationRailKey) => any;
167
+ "update:collapsed": (value: boolean) => any;
168
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
169
+ onSelect?: ((payload: {
170
+ item: NavigationRailItem;
171
+ index: number;
172
+ key: NavigationRailKey;
173
+ event: MouseEvent | KeyboardEvent;
174
+ }) => any) | undefined;
175
+ onToggle?: ((payload: {
176
+ collapsed: boolean;
177
+ }) => any) | undefined;
178
+ "onUpdate:modelValue"?: ((value: NavigationRailKey) => any) | undefined;
179
+ "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
180
+ }>, {
181
+ disabled: boolean;
182
+ modelValue: NavigationRailKey | null;
183
+ expandLabel: string;
184
+ collapseLabel: string;
185
+ ariaLabel: string;
186
+ items: Array<NavigationRailItem>;
187
+ syncActiveFromRoute: boolean;
188
+ showToggle: boolean;
189
+ collapsed: boolean;
190
+ side: NavigationRailSide;
191
+ collapseIcon: string;
192
+ expandIcon: string;
193
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
194
+ itemRefs: (({
195
+ $: import('vue').ComponentInternalInstance;
196
+ $data: {};
197
+ $props: {
198
+ readonly to?: (string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric) | undefined;
199
+ readonly href?: string | undefined;
200
+ readonly url?: string | undefined;
201
+ readonly as?: "a" | "router-link" | undefined;
202
+ readonly type?: string | undefined;
203
+ readonly label?: string | undefined;
204
+ readonly active?: boolean | undefined;
205
+ readonly disabled?: boolean | undefined;
206
+ readonly onClick?: ((...args: any[]) => any) | undefined;
207
+ readonly onActive?: ((...args: any[]) => any) | undefined;
208
+ readonly "onUpdate:active"?: ((...args: any[]) => any) | undefined;
209
+ readonly onOnActive?: ((...args: any[]) => any) | undefined;
210
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
211
+ $attrs: {
212
+ [x: string]: unknown;
213
+ };
214
+ $refs: {
215
+ [x: string]: unknown;
216
+ } & {
217
+ link: any;
218
+ };
219
+ $slots: Readonly<{
220
+ [name: string]: import('vue').Slot<any> | undefined;
221
+ }>;
222
+ $root: import('vue').ComponentPublicInstance | null;
223
+ $parent: import('vue').ComponentPublicInstance | null;
224
+ $host: Element | null;
225
+ $emit: ((event: "click", ...args: any[]) => void) & ((event: "active", ...args: any[]) => void) & ((event: "update:active", ...args: any[]) => void) & ((event: "onActive", ...args: any[]) => void);
226
+ $el: any;
227
+ $options: import('vue').ComponentOptionsBase<Readonly<import('./link.vue').Props> & Readonly<{
228
+ onClick?: ((...args: any[]) => any) | undefined;
229
+ onActive?: ((...args: any[]) => any) | undefined;
230
+ "onUpdate:active"?: ((...args: any[]) => any) | undefined;
231
+ onOnActive?: ((...args: any[]) => any) | undefined;
232
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
233
+ click: (...args: any[]) => void;
234
+ active: (...args: any[]) => void;
235
+ "update:active": (...args: any[]) => void;
236
+ onActive: (...args: any[]) => void;
237
+ }, string, {
238
+ to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
239
+ href: string;
240
+ url: string;
241
+ as: "a" | "router-link";
242
+ type: string;
243
+ label: string;
244
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
245
+ beforeCreate?: (() => void) | (() => void)[];
246
+ created?: (() => void) | (() => void)[];
247
+ beforeMount?: (() => void) | (() => void)[];
248
+ mounted?: (() => void) | (() => void)[];
249
+ beforeUpdate?: (() => void) | (() => void)[];
250
+ updated?: (() => void) | (() => void)[];
251
+ activated?: (() => void) | (() => void)[];
252
+ deactivated?: (() => void) | (() => void)[];
253
+ beforeDestroy?: (() => void) | (() => void)[];
254
+ beforeUnmount?: (() => void) | (() => void)[];
255
+ destroyed?: (() => void) | (() => void)[];
256
+ unmounted?: (() => void) | (() => void)[];
257
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
258
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
259
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
260
+ };
261
+ $forceUpdate: () => void;
262
+ $nextTick: typeof import('vue').nextTick;
263
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
264
+ } & Readonly<{
265
+ to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
266
+ href: string;
267
+ url: string;
268
+ as: "a" | "router-link";
269
+ type: string;
270
+ label: string;
271
+ }> & Omit<Readonly<import('./link.vue').Props> & Readonly<{
272
+ onClick?: ((...args: any[]) => any) | undefined;
273
+ onActive?: ((...args: any[]) => any) | undefined;
274
+ "onUpdate:active"?: ((...args: any[]) => any) | undefined;
275
+ onOnActive?: ((...args: any[]) => any) | undefined;
276
+ }>, "to" | "href" | "url" | "as" | "type" | "label"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
277
+ $slots: {
278
+ default?(_: {}): any;
279
+ default?(_: {}): any;
280
+ };
281
+ }) | null)[];
282
+ }, HTMLElement>;
283
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
284
+ export default _default;
285
+ type __VLS_WithTemplateSlots<T, S> = T & {
286
+ new (): {
287
+ $slots: S;
288
+ };
289
+ };
@@ -1,4 +1,6 @@
1
1
  type NotificationSeverity = 'neutral' | 'info' | 'success' | 'warn' | 'danger';
2
+ export type NotificationFilter = 'all' | 'unread' | 'read';
3
+ export type NotificationGroupBy = 'none' | 'date' | 'severity' | 'group';
2
4
  export interface NotificationCenterItem {
3
5
  id: string | number;
4
6
  title: string;
@@ -7,6 +9,16 @@ export interface NotificationCenterItem {
7
9
  read?: boolean;
8
10
  severity?: NotificationSeverity;
9
11
  avatar?: string;
12
+ group?: string;
13
+ actionLabel?: string;
14
+ actionHref?: string;
15
+ actionTarget?: string;
16
+ actionRel?: string;
17
+ }
18
+ export interface NotificationCenterPersistState {
19
+ filter: NotificationFilter;
20
+ readMap: Record<string, boolean>;
21
+ updatedAt: string;
10
22
  }
11
23
  interface Props {
12
24
  modelValue?: boolean;
@@ -20,20 +32,18 @@ interface Props {
20
32
  closeLabel?: string;
21
33
  readLabel?: string;
22
34
  unreadLabel?: string;
35
+ showFilters?: boolean;
36
+ filter?: NotificationFilter;
37
+ groupBy?: NotificationGroupBy;
38
+ persistKey?: string;
39
+ persistReadState?: boolean;
40
+ persistFilterState?: boolean;
23
41
  }
24
42
  declare function __VLS_template(): {
25
43
  attrs: Partial<{}>;
26
44
  slots: {
27
45
  item?(_: {
28
- item: {
29
- id: string | number;
30
- title: string;
31
- message?: string | undefined;
32
- date?: string | undefined;
33
- read?: boolean | undefined;
34
- severity?: NotificationSeverity | undefined;
35
- avatar?: string | undefined;
36
- };
46
+ item: NotificationCenterItem;
37
47
  index: number;
38
48
  toggleRead: () => void;
39
49
  }): any;
@@ -51,19 +61,28 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
51
61
  "update:modelValue": (...args: any[]) => void;
52
62
  open: (...args: any[]) => void;
53
63
  clear: (...args: any[]) => void;
54
- "update:items": (...args: any[]) => void;
64
+ action: (...args: any[]) => void;
55
65
  read: (...args: any[]) => void;
66
+ "update:items": (...args: any[]) => void;
67
+ "update:filter": (...args: any[]) => void;
56
68
  readAll: (...args: any[]) => void;
69
+ filterChange: (...args: any[]) => void;
70
+ persist: (...args: any[]) => void;
57
71
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
58
72
  onClick?: ((...args: any[]) => any) | undefined;
59
73
  onClose?: ((...args: any[]) => any) | undefined;
60
74
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
61
75
  onOpen?: ((...args: any[]) => any) | undefined;
62
76
  onClear?: ((...args: any[]) => any) | undefined;
63
- "onUpdate:items"?: ((...args: any[]) => any) | undefined;
77
+ onAction?: ((...args: any[]) => any) | undefined;
64
78
  onRead?: ((...args: any[]) => any) | undefined;
79
+ "onUpdate:items"?: ((...args: any[]) => any) | undefined;
80
+ "onUpdate:filter"?: ((...args: any[]) => any) | undefined;
65
81
  onReadAll?: ((...args: any[]) => any) | undefined;
82
+ onFilterChange?: ((...args: any[]) => any) | undefined;
83
+ onPersist?: ((...args: any[]) => any) | undefined;
66
84
  }>, {
85
+ filter: NotificationFilter;
67
86
  title: string;
68
87
  modelValue: boolean;
69
88
  items: Array<NotificationCenterItem>;
@@ -75,6 +94,11 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
75
94
  readLabel: string;
76
95
  unreadLabel: string;
77
96
  closeOnEsc: boolean;
97
+ groupBy: NotificationGroupBy;
98
+ showFilters: boolean;
99
+ persistKey: string;
100
+ persistReadState: boolean;
101
+ persistFilterState: boolean;
78
102
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
79
103
  panel: HTMLElement;
80
104
  }, any>;
@@ -0,0 +1,84 @@
1
+ interface Props {
2
+ sidebarCollapsed?: boolean;
3
+ asideCollapsed?: boolean;
4
+ sidebarWidth?: string;
5
+ asideWidth?: string;
6
+ mobileBreakpoint?: number;
7
+ showMobileToggles?: boolean;
8
+ showDesktopToggles?: boolean;
9
+ closeOnEsc?: boolean;
10
+ sidebarToggleLabel?: string;
11
+ asideToggleLabel?: string;
12
+ closeSidebarLabel?: string;
13
+ closeAsideLabel?: string;
14
+ sidebarToggleIcon?: string;
15
+ asideToggleIcon?: string;
16
+ mainAriaLabel?: string;
17
+ sidebarAriaLabel?: string;
18
+ asideAriaLabel?: string;
19
+ }
20
+ declare function __VLS_template(): {
21
+ attrs: Partial<{}>;
22
+ slots: {
23
+ header?(_: {
24
+ mobile: boolean;
25
+ sidebarOpen: boolean;
26
+ asideOpen: boolean;
27
+ toggleSidebar: () => void;
28
+ toggleAside: () => void;
29
+ }): any;
30
+ sidebar?(_: {
31
+ mobile: boolean;
32
+ open: boolean;
33
+ }): any;
34
+ default?(_: {}): any;
35
+ aside?(_: {
36
+ mobile: boolean;
37
+ open: boolean;
38
+ }): any;
39
+ footer?(_: {
40
+ mobile: boolean;
41
+ sidebarOpen: boolean;
42
+ asideOpen: boolean;
43
+ toggleSidebar: () => void;
44
+ toggleAside: () => void;
45
+ }): any;
46
+ };
47
+ refs: {};
48
+ rootEl: HTMLElement;
49
+ };
50
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
51
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
52
+ "breakpoint-change": (mobile: boolean) => any;
53
+ "update:sidebarCollapsed": (value: boolean) => any;
54
+ "update:asideCollapsed": (value: boolean) => any;
55
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
56
+ "onBreakpoint-change"?: ((mobile: boolean) => any) | undefined;
57
+ "onUpdate:sidebarCollapsed"?: ((value: boolean) => any) | undefined;
58
+ "onUpdate:asideCollapsed"?: ((value: boolean) => any) | undefined;
59
+ }>, {
60
+ closeOnEsc: boolean;
61
+ sidebarWidth: string;
62
+ mobileBreakpoint: number;
63
+ closeSidebarLabel: string;
64
+ mainAriaLabel: string;
65
+ sidebarCollapsed: boolean;
66
+ asideCollapsed: boolean;
67
+ asideWidth: string;
68
+ showMobileToggles: boolean;
69
+ showDesktopToggles: boolean;
70
+ sidebarToggleLabel: string;
71
+ asideToggleLabel: string;
72
+ closeAsideLabel: string;
73
+ sidebarToggleIcon: string;
74
+ asideToggleIcon: string;
75
+ sidebarAriaLabel: string;
76
+ asideAriaLabel: string;
77
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
78
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
79
+ export default _default;
80
+ type __VLS_WithTemplateSlots<T, S> = T & {
81
+ new (): {
82
+ $slots: S;
83
+ };
84
+ };
@@ -4,6 +4,8 @@ interface Props {
4
4
  max?: number;
5
5
  size?: RatingSize;
6
6
  allowHalf?: boolean;
7
+ precision?: number;
8
+ clearable?: boolean;
7
9
  readonly?: boolean;
8
10
  disabled?: boolean;
9
11
  ariaLabel?: string;
@@ -37,7 +39,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
37
39
  size: RatingSize;
38
40
  ariaLabel: string;
39
41
  readonly: boolean;
42
+ clearable: boolean;
40
43
  max: number;
44
+ precision: number;
41
45
  allowHalf: boolean;
42
46
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
43
47
  rootRef: HTMLDivElement;
@@ -0,0 +1,73 @@
1
+ interface Props {
2
+ modelValue?: number;
3
+ collapsed?: boolean;
4
+ minWidth?: number;
5
+ maxWidth?: number;
6
+ collapsedWidth?: number;
7
+ side?: 'left' | 'right';
8
+ resizable?: boolean;
9
+ disabled?: boolean;
10
+ showToggle?: boolean;
11
+ persistence?: 'none' | 'local' | 'session';
12
+ persistenceKey?: string;
13
+ ariaLabel?: string;
14
+ collapseLabel?: string;
15
+ expandLabel?: string;
16
+ collapseIcon?: string;
17
+ expandIcon?: string;
18
+ }
19
+ declare function __VLS_template(): {
20
+ attrs: Partial<{}>;
21
+ slots: {
22
+ header?(_: {
23
+ collapsed: boolean;
24
+ toggle: () => void;
25
+ width: number;
26
+ }): any;
27
+ default?(_: {
28
+ collapsed: boolean;
29
+ width: number;
30
+ }): any;
31
+ footer?(_: {
32
+ collapsed: boolean;
33
+ toggle: () => void;
34
+ width: number;
35
+ }): any;
36
+ };
37
+ refs: {};
38
+ rootEl: HTMLElement;
39
+ };
40
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
42
+ "update:modelValue": (value: number) => any;
43
+ "update:collapsed": (value: boolean) => any;
44
+ "resize-end": (value: number) => any;
45
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
46
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
47
+ "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
48
+ "onResize-end"?: ((value: number) => any) | undefined;
49
+ }>, {
50
+ disabled: boolean;
51
+ modelValue: number;
52
+ expandLabel: string;
53
+ collapseLabel: string;
54
+ ariaLabel: string;
55
+ maxWidth: number;
56
+ showToggle: boolean;
57
+ minWidth: number;
58
+ collapsed: boolean;
59
+ side: "left" | "right";
60
+ collapseIcon: string;
61
+ expandIcon: string;
62
+ collapsedWidth: number;
63
+ resizable: boolean;
64
+ persistence: "none" | "local" | "session";
65
+ persistenceKey: 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
+ };
@@ -23,6 +23,7 @@ interface Props {
23
23
  endHour?: number;
24
24
  slotMinutes?: number;
25
25
  locale?: string;
26
+ timeZone?: string;
26
27
  disabled?: boolean;
27
28
  readonly?: boolean;
28
29
  ariaLabel?: string;
@@ -55,5 +56,6 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
55
56
  endHour: number;
56
57
  slotMinutes: number;
57
58
  locale: string;
59
+ timeZone: string;
58
60
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
59
61
  export default _default;
@@ -26,9 +26,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
26
26
  role: string;
27
27
  ariaLabel: string;
28
28
  height: string;
29
+ maxHeight: string;
29
30
  tabIndex: number;
30
31
  minHeight: string;
31
- maxHeight: string;
32
32
  alwaysShow: boolean;
33
33
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
34
34
  viewport: HTMLDivElement;
@@ -0,0 +1,29 @@
1
+ type Breakpoint = 'sm' | 'md' | 'lg' | 'xl';
2
+ interface Props {
3
+ as?: string;
4
+ from?: Breakpoint;
5
+ to?: Breakpoint;
6
+ when?: boolean;
7
+ }
8
+ declare function __VLS_template(): {
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {};
14
+ rootEl: any;
15
+ };
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
18
+ to: Breakpoint;
19
+ as: string;
20
+ from: Breakpoint;
21
+ when: boolean;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
23
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
+ export default _default;
25
+ type __VLS_WithTemplateSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };