@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.
- package/dist/index.css +1 -1
- package/dist/index.d.ts +13 -3
- package/dist/index.ts.mjs +13253 -11560
- package/dist/index.ts.umd.js +17 -17
- package/dist/package/components/__tests__/app-bar.test.d.ts +1 -0
- package/dist/package/components/__tests__/footer.test.d.ts +1 -0
- package/dist/package/components/__tests__/navigation-rail.test.d.ts +1 -0
- package/dist/package/components/__tests__/page-layout.test.d.ts +1 -0
- package/dist/package/components/__tests__/resizable-sidebar.test.d.ts +1 -0
- package/dist/package/components/__tests__/show-hide.test.d.ts +1 -0
- package/dist/package/components/__tests__/split-layout.test.d.ts +1 -0
- package/dist/package/components/__tests__/sticky-region.test.d.ts +1 -0
- package/dist/package/components/accordion-context.d.ts +2 -0
- package/dist/package/components/accordion.vue.d.ts +23 -0
- package/dist/package/components/activity-feed.vue.d.ts +2 -0
- package/dist/package/components/app-bar.vue.d.ts +47 -0
- package/dist/package/components/audit-log-viewer.vue.d.ts +2 -0
- package/dist/package/components/block-ui.vue.d.ts +1 -1
- package/dist/package/components/cascade-select.vue.d.ts +1 -1
- package/dist/package/components/command-palette.vue.d.ts +32 -1
- package/dist/package/components/comment-thread.vue.d.ts +2 -0
- package/dist/package/components/data-table.vue.d.ts +45 -1
- package/dist/package/components/footer.vue.d.ts +45 -0
- package/dist/package/components/hide.vue.d.ts +29 -0
- package/dist/package/components/kanban-board.vue.d.ts +15 -27
- package/dist/package/components/navigation-rail.vue.d.ts +289 -0
- package/dist/package/components/notification-center.vue.d.ts +35 -11
- package/dist/package/components/page-layout.vue.d.ts +84 -0
- package/dist/package/components/rating.vue.d.ts +4 -0
- package/dist/package/components/resizable-sidebar.vue.d.ts +73 -0
- package/dist/package/components/scheduler.vue.d.ts +2 -0
- package/dist/package/components/scroll-panel.vue.d.ts +1 -1
- package/dist/package/components/show.vue.d.ts +29 -0
- package/dist/package/components/split-layout.vue.d.ts +73 -0
- package/dist/package/components/splitter.vue.d.ts +2 -2
- package/dist/package/components/sticky-region.vue.d.ts +35 -0
- package/dist/package/components/tree-node.vue.d.ts +2 -0
- package/dist/package/components/tree-table.vue.d.ts +1 -1
- package/dist/package/components/tree.vue.d.ts +21 -0
- package/dist/package/config/locale-text.d.ts +10 -0
- package/dist/package/config/theme-core.d.ts +123 -0
- package/dist/package/themes/default/components/app-bar.d.ts +14 -0
- package/dist/package/themes/default/components/footer.d.ts +13 -0
- package/dist/package/themes/default/components/navigation-rail.d.ts +28 -0
- package/dist/package/themes/default/components/page-layout.d.ts +23 -0
- package/dist/package/themes/default/components/resizable-sidebar.d.ts +16 -0
- package/dist/package/themes/default/components/split-layout.d.ts +20 -0
- package/dist/package/themes/default/components/sticky-region.d.ts +9 -0
- package/dist/package/themes/default/index.d.ts +116 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -6,6 +6,8 @@ export type AccordionContext = {
|
|
|
6
6
|
modelValue: ComputedRef<AccordionValue | AccordionValue[] | undefined>;
|
|
7
7
|
multiple: ComputedRef<boolean>;
|
|
8
8
|
disabled: ComputedRef<boolean>;
|
|
9
|
+
dense: ComputedRef<boolean>;
|
|
10
|
+
grouped: ComputedRef<boolean>;
|
|
9
11
|
variant: ComputedRef<AccordionVariant>;
|
|
10
12
|
size: ComputedRef<AccordionSize>;
|
|
11
13
|
onToggle: (value: AccordionValue, event: Event) => void;
|
|
@@ -3,6 +3,12 @@ interface Props {
|
|
|
3
3
|
modelValue?: AccordionValue | AccordionValue[];
|
|
4
4
|
multiple?: boolean;
|
|
5
5
|
disabled?: boolean;
|
|
6
|
+
dense?: boolean;
|
|
7
|
+
grouped?: boolean;
|
|
8
|
+
groupTitle?: string;
|
|
9
|
+
groupDescription?: string;
|
|
10
|
+
analytics?: boolean;
|
|
11
|
+
analyticsContext?: string;
|
|
6
12
|
variant?: AccordionVariant;
|
|
7
13
|
size?: AccordionSize;
|
|
8
14
|
ariaLabel?: string;
|
|
@@ -11,6 +17,9 @@ interface Props {
|
|
|
11
17
|
declare function __VLS_template(): {
|
|
12
18
|
attrs: Partial<{}>;
|
|
13
19
|
slots: {
|
|
20
|
+
'group-title'?(_: {}): any;
|
|
21
|
+
'group-description'?(_: {}): any;
|
|
22
|
+
'group-actions'?(_: {}): any;
|
|
14
23
|
default?(_: {}): any;
|
|
15
24
|
};
|
|
16
25
|
refs: {};
|
|
@@ -20,17 +29,31 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
20
29
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
30
|
change: (...args: any[]) => void;
|
|
22
31
|
"update:modelValue": (...args: any[]) => void;
|
|
32
|
+
itemToggle: (...args: any[]) => void;
|
|
33
|
+
itemExpand: (...args: any[]) => void;
|
|
34
|
+
itemCollapse: (...args: any[]) => void;
|
|
35
|
+
analytics: (...args: any[]) => void;
|
|
23
36
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
24
37
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
25
38
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
onItemToggle?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
onItemExpand?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onItemCollapse?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
onAnalytics?: ((...args: any[]) => any) | undefined;
|
|
26
43
|
}>, {
|
|
27
44
|
disabled: boolean;
|
|
28
45
|
modelValue: AccordionValue | AccordionValue[];
|
|
29
46
|
size: AccordionSize;
|
|
30
47
|
variant: AccordionVariant;
|
|
48
|
+
dense: boolean;
|
|
31
49
|
ariaLabel: string;
|
|
32
50
|
multiple: boolean;
|
|
33
51
|
ariaLabelledby: string;
|
|
52
|
+
grouped: boolean;
|
|
53
|
+
analytics: boolean;
|
|
54
|
+
groupTitle: string;
|
|
55
|
+
groupDescription: string;
|
|
56
|
+
analyticsContext: string;
|
|
34
57
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
58
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
59
|
export default _default;
|
|
@@ -23,6 +23,7 @@ interface Props {
|
|
|
23
23
|
groupBy?: GroupByMode;
|
|
24
24
|
relativeTime?: boolean;
|
|
25
25
|
locale?: string;
|
|
26
|
+
timeZone?: string;
|
|
26
27
|
now?: DateLike | null;
|
|
27
28
|
emptyText?: string;
|
|
28
29
|
ariaLabel?: string;
|
|
@@ -64,6 +65,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
64
65
|
items: Array<ActivityFeedItem>;
|
|
65
66
|
emptyText: string;
|
|
66
67
|
locale: string;
|
|
68
|
+
timeZone: string;
|
|
67
69
|
groupBy: GroupByMode;
|
|
68
70
|
relativeTime: boolean;
|
|
69
71
|
now: DateLike | null;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
as?: string;
|
|
3
|
+
title?: string;
|
|
4
|
+
fixed?: boolean;
|
|
5
|
+
sticky?: boolean;
|
|
6
|
+
dense?: boolean;
|
|
7
|
+
mobileBreakpoint?: number;
|
|
8
|
+
collapseActionsOnMobile?: boolean;
|
|
9
|
+
height?: string;
|
|
10
|
+
denseHeight?: string;
|
|
11
|
+
zIndex?: string | number;
|
|
12
|
+
ariaLabel?: string;
|
|
13
|
+
actionsAriaLabel?: string;
|
|
14
|
+
}
|
|
15
|
+
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
17
|
+
slots: {
|
|
18
|
+
start?(_: {}): any;
|
|
19
|
+
title?(_: {}): any;
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
actions?(_: {}): any;
|
|
22
|
+
};
|
|
23
|
+
refs: {};
|
|
24
|
+
rootEl: any;
|
|
25
|
+
};
|
|
26
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
28
|
+
as: string;
|
|
29
|
+
fixed: boolean;
|
|
30
|
+
title: string;
|
|
31
|
+
actionsAriaLabel: string;
|
|
32
|
+
dense: boolean;
|
|
33
|
+
ariaLabel: string;
|
|
34
|
+
height: string;
|
|
35
|
+
sticky: boolean;
|
|
36
|
+
mobileBreakpoint: number;
|
|
37
|
+
collapseActionsOnMobile: boolean;
|
|
38
|
+
denseHeight: string;
|
|
39
|
+
zIndex: string | number;
|
|
40
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
41
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
42
|
+
export default _default;
|
|
43
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
+
new (): {
|
|
45
|
+
$slots: S;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
@@ -22,6 +22,7 @@ interface Props {
|
|
|
22
22
|
ariaLabel?: string;
|
|
23
23
|
showDiff?: boolean;
|
|
24
24
|
locale?: string;
|
|
25
|
+
timeZone?: string;
|
|
25
26
|
}
|
|
26
27
|
declare function __VLS_template(): {
|
|
27
28
|
attrs: Partial<{}>;
|
|
@@ -57,6 +58,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
57
58
|
ariaLabel: string;
|
|
58
59
|
emptyText: string;
|
|
59
60
|
locale: string;
|
|
61
|
+
timeZone: string;
|
|
60
62
|
drawerTitle: string;
|
|
61
63
|
detailsLabel: string;
|
|
62
64
|
showDiff: boolean;
|
|
@@ -32,9 +32,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
32
32
|
modelValue: boolean;
|
|
33
33
|
variant: OverlayVariant;
|
|
34
34
|
ariaLabel: string;
|
|
35
|
+
zIndex: number | string | null;
|
|
35
36
|
fullScreen: boolean;
|
|
36
37
|
showSpinner: boolean;
|
|
37
|
-
zIndex: number | string | null;
|
|
38
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
39
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
40
|
export default _default;
|
|
@@ -83,9 +83,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
83
83
|
searchPlaceholder: string;
|
|
84
84
|
selectable: boolean;
|
|
85
85
|
expandOnClick: boolean;
|
|
86
|
+
loadChildren: (node: CascadeSelectItem) => Promise<Array<CascadeSelectItem>>;
|
|
86
87
|
loadingBranchText: string;
|
|
87
88
|
autoLoadOnExpand: boolean;
|
|
88
|
-
loadChildren: (node: CascadeSelectItem) => Promise<Array<CascadeSelectItem>>;
|
|
89
89
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
90
90
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
91
91
|
export default _default;
|
|
@@ -1,13 +1,22 @@
|
|
|
1
|
-
interface CommandPaletteItem {
|
|
1
|
+
export interface CommandPaletteItem {
|
|
2
2
|
label: string;
|
|
3
3
|
value?: string | number;
|
|
4
4
|
description?: string;
|
|
5
5
|
shortcut?: string;
|
|
6
6
|
group?: string;
|
|
7
|
+
scope?: string;
|
|
7
8
|
disabled?: boolean;
|
|
8
9
|
keywords?: Array<string>;
|
|
10
|
+
entityType?: string;
|
|
11
|
+
entityId?: string | number;
|
|
12
|
+
entityKeywords?: Array<string>;
|
|
9
13
|
command?: () => void;
|
|
10
14
|
}
|
|
15
|
+
export interface CommandPaletteScope {
|
|
16
|
+
id: string;
|
|
17
|
+
label: string;
|
|
18
|
+
aliases?: Array<string>;
|
|
19
|
+
}
|
|
11
20
|
interface Props {
|
|
12
21
|
modelValue?: boolean;
|
|
13
22
|
items?: Array<CommandPaletteItem>;
|
|
@@ -20,6 +29,13 @@ interface Props {
|
|
|
20
29
|
filter?: boolean;
|
|
21
30
|
enableShortcut?: boolean;
|
|
22
31
|
shortcutKey?: string;
|
|
32
|
+
scopes?: Array<CommandPaletteScope>;
|
|
33
|
+
scope?: string;
|
|
34
|
+
showScopeTabs?: boolean;
|
|
35
|
+
showRecent?: boolean;
|
|
36
|
+
recentLimit?: number;
|
|
37
|
+
recentStorageKey?: string;
|
|
38
|
+
entitySearch?: boolean;
|
|
23
39
|
}
|
|
24
40
|
declare const _default: import('vue').DefineComponent<Props, {
|
|
25
41
|
open: () => Promise<void>;
|
|
@@ -31,12 +47,20 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
31
47
|
select: (...args: any[]) => void;
|
|
32
48
|
"update:modelValue": (...args: any[]) => void;
|
|
33
49
|
open: (...args: any[]) => void;
|
|
50
|
+
entitySearch: (...args: any[]) => void;
|
|
51
|
+
"update:scope": (...args: any[]) => void;
|
|
52
|
+
"update:recent": (...args: any[]) => void;
|
|
53
|
+
scopeChange: (...args: any[]) => void;
|
|
34
54
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
35
55
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
36
56
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
37
57
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
38
58
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
39
59
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
onEntitySearch?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
"onUpdate:scope"?: ((...args: any[]) => any) | undefined;
|
|
62
|
+
"onUpdate:recent"?: ((...args: any[]) => any) | undefined;
|
|
63
|
+
onScopeChange?: ((...args: any[]) => any) | undefined;
|
|
40
64
|
}>, {
|
|
41
65
|
filter: boolean;
|
|
42
66
|
modelValue: boolean;
|
|
@@ -49,6 +73,13 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
49
73
|
closeOnSelect: boolean;
|
|
50
74
|
enableShortcut: boolean;
|
|
51
75
|
shortcutKey: string;
|
|
76
|
+
scopes: Array<CommandPaletteScope>;
|
|
77
|
+
scope: string;
|
|
78
|
+
showScopeTabs: boolean;
|
|
79
|
+
showRecent: boolean;
|
|
80
|
+
recentLimit: number;
|
|
81
|
+
recentStorageKey: string;
|
|
82
|
+
entitySearch: boolean;
|
|
52
83
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
53
84
|
panel: HTMLDivElement;
|
|
54
85
|
inputRef: HTMLInputElement;
|
|
@@ -25,6 +25,7 @@ interface Props {
|
|
|
25
25
|
resolveLabel?: string;
|
|
26
26
|
reopenLabel?: string;
|
|
27
27
|
locale?: string;
|
|
28
|
+
timeZone?: string;
|
|
28
29
|
}
|
|
29
30
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
30
31
|
reply: (payload: {
|
|
@@ -61,6 +62,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
61
62
|
items: Array<CommentThreadItem>;
|
|
62
63
|
emptyText: string;
|
|
63
64
|
locale: string;
|
|
65
|
+
timeZone: string;
|
|
64
66
|
replyLabel: string;
|
|
65
67
|
cancelReplyLabel: string;
|
|
66
68
|
sendReplyLabel: string;
|
|
@@ -29,6 +29,17 @@ export interface DataTableBulkAction {
|
|
|
29
29
|
value: string;
|
|
30
30
|
disabled?: boolean;
|
|
31
31
|
}
|
|
32
|
+
export interface DataTableSavedFilter {
|
|
33
|
+
id: string | number;
|
|
34
|
+
label: string;
|
|
35
|
+
filters: DataTableFilters;
|
|
36
|
+
disabled?: boolean;
|
|
37
|
+
}
|
|
38
|
+
export interface DataTableExportAction {
|
|
39
|
+
label: string;
|
|
40
|
+
value: string;
|
|
41
|
+
disabled?: boolean;
|
|
42
|
+
}
|
|
32
43
|
interface Props {
|
|
33
44
|
rows?: Array<Record<string, unknown>>;
|
|
34
45
|
columns?: Array<DataTableColumn>;
|
|
@@ -52,6 +63,9 @@ interface Props {
|
|
|
52
63
|
selectionMode?: DataTableSelectionMode;
|
|
53
64
|
selection?: DataTableRowKey | Array<DataTableRowKey> | null;
|
|
54
65
|
bulkActions?: Array<DataTableBulkAction>;
|
|
66
|
+
pendingBulkActions?: Array<string>;
|
|
67
|
+
actionsLocked?: boolean;
|
|
68
|
+
pendingActionText?: string;
|
|
55
69
|
selectAllAriaLabel?: string;
|
|
56
70
|
selectRowAriaLabel?: string;
|
|
57
71
|
stickyHeader?: boolean;
|
|
@@ -70,6 +84,15 @@ interface Props {
|
|
|
70
84
|
visibleColumns?: Array<string>;
|
|
71
85
|
columnVisibilityManager?: boolean;
|
|
72
86
|
columnVisibilityLabel?: string;
|
|
87
|
+
savedFilters?: Array<DataTableSavedFilter>;
|
|
88
|
+
activeSavedFilterId?: string | number | null;
|
|
89
|
+
showSavedFilters?: boolean;
|
|
90
|
+
savedFiltersLabel?: string;
|
|
91
|
+
savedFiltersPlaceholder?: string;
|
|
92
|
+
exportActions?: Array<DataTableExportAction>;
|
|
93
|
+
pendingExportActions?: Array<string>;
|
|
94
|
+
showExportActions?: boolean;
|
|
95
|
+
exportLabel?: string;
|
|
73
96
|
}
|
|
74
97
|
declare function __VLS_template(): {
|
|
75
98
|
attrs: Partial<{}>;
|
|
@@ -109,11 +132,14 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
109
132
|
setPageSize: (value: number) => void;
|
|
110
133
|
setFilters: (value: DataTableFilters) => void;
|
|
111
134
|
clearFilters: () => void;
|
|
135
|
+
setSavedFilter: (value: string | number | null) => void;
|
|
136
|
+
getActiveSavedFilterId: () => string | number | null;
|
|
112
137
|
getQuery: () => DataTableQuery;
|
|
113
138
|
clearSelection: () => void;
|
|
114
139
|
getSelectedKeys: () => DataTableRowKey[];
|
|
115
140
|
getSelectedRows: () => Record<string, unknown>[];
|
|
116
141
|
applyBulkAction: (value: string) => void;
|
|
142
|
+
triggerExport: (value: string) => void;
|
|
117
143
|
setColumnOrder: (value: Array<string>) => void;
|
|
118
144
|
getColumnOrder: () => string[];
|
|
119
145
|
setVisibleColumns: (value: Array<string>) => void;
|
|
@@ -136,6 +162,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
136
162
|
request: (...args: any[]) => void;
|
|
137
163
|
"update:selection": (...args: any[]) => void;
|
|
138
164
|
selectionChange: (...args: any[]) => void;
|
|
165
|
+
exportAction: (...args: any[]) => void;
|
|
166
|
+
"update:activeSavedFilterId": (...args: any[]) => void;
|
|
167
|
+
savedFilterChange: (...args: any[]) => void;
|
|
139
168
|
"update:columnOrder": (...args: any[]) => void;
|
|
140
169
|
"update:expandedRows": (...args: any[]) => void;
|
|
141
170
|
rowExpand: (...args: any[]) => void;
|
|
@@ -158,6 +187,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
158
187
|
onRequest?: ((...args: any[]) => any) | undefined;
|
|
159
188
|
"onUpdate:selection"?: ((...args: any[]) => any) | undefined;
|
|
160
189
|
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
|
190
|
+
onExportAction?: ((...args: any[]) => any) | undefined;
|
|
191
|
+
"onUpdate:activeSavedFilterId"?: ((...args: any[]) => any) | undefined;
|
|
192
|
+
onSavedFilterChange?: ((...args: any[]) => any) | undefined;
|
|
161
193
|
"onUpdate:columnOrder"?: ((...args: any[]) => any) | undefined;
|
|
162
194
|
"onUpdate:expandedRows"?: ((...args: any[]) => any) | undefined;
|
|
163
195
|
onRowExpand?: ((...args: any[]) => any) | undefined;
|
|
@@ -179,8 +211,10 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
179
211
|
rowKey: string | ((row: Record<string, unknown>, index: number) => string | number);
|
|
180
212
|
bulkActions: Array<DataTableBulkAction>;
|
|
181
213
|
showHeader: boolean;
|
|
214
|
+
selectionMode: DataTableSelectionMode;
|
|
182
215
|
pageSize: number;
|
|
183
216
|
stickyHeader: boolean;
|
|
217
|
+
exportLabel: string;
|
|
184
218
|
selection: DataTableRowKey | Array<DataTableRowKey> | null;
|
|
185
219
|
sortable: boolean;
|
|
186
220
|
sortField: string | null;
|
|
@@ -189,7 +223,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
189
223
|
hover: boolean;
|
|
190
224
|
server: boolean;
|
|
191
225
|
filters: DataTableFilters;
|
|
192
|
-
|
|
226
|
+
pendingBulkActions: Array<string>;
|
|
227
|
+
actionsLocked: boolean;
|
|
228
|
+
pendingActionText: string;
|
|
193
229
|
columnResize: boolean;
|
|
194
230
|
minColumnWidth: number;
|
|
195
231
|
columnReorder: boolean;
|
|
@@ -205,6 +241,14 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
205
241
|
visibleColumns: Array<string>;
|
|
206
242
|
columnVisibilityManager: boolean;
|
|
207
243
|
columnVisibilityLabel: string;
|
|
244
|
+
savedFilters: Array<DataTableSavedFilter>;
|
|
245
|
+
activeSavedFilterId: string | number | null;
|
|
246
|
+
showSavedFilters: boolean;
|
|
247
|
+
savedFiltersLabel: string;
|
|
248
|
+
savedFiltersPlaceholder: string;
|
|
249
|
+
exportActions: Array<DataTableExportAction>;
|
|
250
|
+
pendingExportActions: Array<string>;
|
|
251
|
+
showExportActions: boolean;
|
|
208
252
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
209
253
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
210
254
|
export default _default;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
as?: string;
|
|
3
|
+
bordered?: boolean;
|
|
4
|
+
dense?: boolean;
|
|
5
|
+
wrap?: boolean;
|
|
6
|
+
stackOnMobile?: boolean;
|
|
7
|
+
mobileBreakpoint?: number;
|
|
8
|
+
ariaLabel?: string;
|
|
9
|
+
groupAriaLabel?: string;
|
|
10
|
+
leftAriaLabel?: string;
|
|
11
|
+
centerAriaLabel?: string;
|
|
12
|
+
rightAriaLabel?: string;
|
|
13
|
+
}
|
|
14
|
+
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
16
|
+
slots: {
|
|
17
|
+
left?(_: {}): any;
|
|
18
|
+
center?(_: {}): any;
|
|
19
|
+
right?(_: {}): any;
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
};
|
|
22
|
+
refs: {};
|
|
23
|
+
rootEl: any;
|
|
24
|
+
};
|
|
25
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
27
|
+
as: string;
|
|
28
|
+
wrap: boolean;
|
|
29
|
+
dense: boolean;
|
|
30
|
+
ariaLabel: string;
|
|
31
|
+
groupAriaLabel: string;
|
|
32
|
+
centerAriaLabel: string;
|
|
33
|
+
bordered: boolean;
|
|
34
|
+
mobileBreakpoint: number;
|
|
35
|
+
stackOnMobile: boolean;
|
|
36
|
+
leftAriaLabel: string;
|
|
37
|
+
rightAriaLabel: string;
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -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
|
+
};
|
|
@@ -18,32 +18,22 @@ interface Props {
|
|
|
18
18
|
items?: Array<KanbanBoardItem>;
|
|
19
19
|
ariaLabel?: string;
|
|
20
20
|
emptyColumnText?: string;
|
|
21
|
+
virtualization?: boolean;
|
|
22
|
+
virtualizationThreshold?: number;
|
|
23
|
+
itemHeight?: number;
|
|
24
|
+
swimlaneHeight?: number;
|
|
25
|
+
overscan?: number;
|
|
26
|
+
keyboardDnD?: boolean;
|
|
21
27
|
}
|
|
22
28
|
declare function __VLS_template(): {
|
|
23
29
|
attrs: Partial<{}>;
|
|
24
30
|
slots: {
|
|
25
31
|
'column-header'?(_: {
|
|
26
32
|
column: KanbanColumn;
|
|
27
|
-
items:
|
|
28
|
-
id: KanbanId;
|
|
29
|
-
columnId: KanbanId;
|
|
30
|
-
title: string;
|
|
31
|
-
description?: string | undefined;
|
|
32
|
-
assignee?: string | undefined;
|
|
33
|
-
priority?: KanbanPriority | undefined;
|
|
34
|
-
tags?: Array<string> | undefined;
|
|
35
|
-
}[];
|
|
33
|
+
items: KanbanBoardItem[];
|
|
36
34
|
}): any;
|
|
37
35
|
card?(_: {
|
|
38
|
-
item:
|
|
39
|
-
id: KanbanId;
|
|
40
|
-
columnId: KanbanId;
|
|
41
|
-
title: string;
|
|
42
|
-
description?: string | undefined;
|
|
43
|
-
assignee?: string | undefined;
|
|
44
|
-
priority?: KanbanPriority | undefined;
|
|
45
|
-
tags?: Array<string> | undefined;
|
|
46
|
-
};
|
|
36
|
+
item: KanbanBoardItem;
|
|
47
37
|
column: KanbanColumn;
|
|
48
38
|
index: number;
|
|
49
39
|
}): any;
|
|
@@ -52,15 +42,7 @@ declare function __VLS_template(): {
|
|
|
52
42
|
}): any;
|
|
53
43
|
'column-footer'?(_: {
|
|
54
44
|
column: KanbanColumn;
|
|
55
|
-
items:
|
|
56
|
-
id: KanbanId;
|
|
57
|
-
columnId: KanbanId;
|
|
58
|
-
title: string;
|
|
59
|
-
description?: string | undefined;
|
|
60
|
-
assignee?: string | undefined;
|
|
61
|
-
priority?: KanbanPriority | undefined;
|
|
62
|
-
tags?: Array<string> | undefined;
|
|
63
|
-
}[];
|
|
45
|
+
items: KanbanBoardItem[];
|
|
64
46
|
}): any;
|
|
65
47
|
};
|
|
66
48
|
refs: {};
|
|
@@ -79,7 +61,13 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
79
61
|
ariaLabel: string;
|
|
80
62
|
columns: Array<KanbanColumn>;
|
|
81
63
|
items: Array<KanbanBoardItem>;
|
|
64
|
+
virtualizationThreshold: number;
|
|
65
|
+
itemHeight: number;
|
|
66
|
+
overscan: number;
|
|
82
67
|
emptyColumnText: string;
|
|
68
|
+
virtualization: boolean;
|
|
69
|
+
swimlaneHeight: number;
|
|
70
|
+
keyboardDnD: boolean;
|
|
83
71
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
84
72
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
85
73
|
export default _default;
|