@uzum-tech/ui 2.0.9 → 2.1.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.js +1785 -466
- package/dist/index.mjs +1780 -467
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/carousel/src/Carousel.d.ts +1 -1
- package/es/components.d.ts +655 -5
- package/es/components.mjs +5 -0
- package/es/config-provider/src/internal-interface.d.ts +3 -1
- package/es/data-table/src/DataTable.d.ts +1 -1
- package/es/descriptions/src/Descriptions.d.ts +1 -1
- package/es/kanban/index.d.ts +7 -0
- package/es/kanban/index.mjs +5 -0
- package/es/kanban/src/Kanban.d.ts +570 -0
- package/es/kanban/src/Kanban.mjs +349 -0
- package/es/kanban/src/KanbanCard.d.ts +39 -0
- package/es/kanban/src/KanbanCard.mjs +86 -0
- package/es/kanban/src/KanbanColumn.d.ts +45 -0
- package/es/kanban/src/KanbanColumn.mjs +176 -0
- package/es/kanban/src/injection.d.ts +28 -0
- package/es/kanban/src/injection.mjs +2 -0
- package/es/kanban/src/interface.d.ts +215 -0
- package/es/kanban/src/interface.mjs +84 -0
- package/es/kanban/src/styles/index.cssr.d.ts +2 -0
- package/es/kanban/src/styles/index.cssr.mjs +165 -0
- package/es/kanban/src/use-kanban-data.d.ts +4 -0
- package/es/kanban/src/use-kanban-data.mjs +69 -0
- package/es/kanban/src/use-kanban-drag.d.ts +2 -0
- package/es/kanban/src/use-kanban-drag.mjs +238 -0
- package/es/kanban/styles/dark.d.ts +73 -0
- package/es/kanban/styles/dark.mjs +15 -0
- package/es/kanban/styles/index.d.ts +3 -0
- package/es/kanban/styles/index.mjs +2 -0
- package/es/kanban/styles/light.d.ts +109 -0
- package/es/kanban/styles/light.mjs +64 -0
- package/es/modal/src/BodyWrapper.d.ts +1 -1
- package/es/themes/dark.mjs +2 -0
- package/es/themes/light.mjs +2 -0
- package/es/tree/src/Tree.d.ts +1 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/carousel/src/Carousel.d.ts +1 -1
- package/lib/components.d.ts +655 -5
- package/lib/components.js +13 -5
- package/lib/config-provider/src/internal-interface.d.ts +3 -1
- package/lib/data-table/src/DataTable.d.ts +1 -1
- package/lib/descriptions/src/Descriptions.d.ts +1 -1
- package/lib/kanban/index.d.ts +7 -0
- package/lib/kanban/index.js +17 -0
- package/lib/kanban/src/Kanban.d.ts +570 -0
- package/lib/kanban/src/Kanban.js +291 -0
- package/lib/kanban/src/KanbanCard.d.ts +39 -0
- package/lib/kanban/src/KanbanCard.js +63 -0
- package/lib/kanban/src/KanbanColumn.d.ts +45 -0
- package/lib/kanban/src/KanbanColumn.js +141 -0
- package/lib/kanban/src/injection.d.ts +28 -0
- package/lib/kanban/src/injection.js +5 -0
- package/lib/kanban/src/interface.d.ts +215 -0
- package/lib/kanban/src/interface.js +87 -0
- package/lib/kanban/src/styles/index.cssr.d.ts +2 -0
- package/lib/kanban/src/styles/index.cssr.js +170 -0
- package/lib/kanban/src/use-kanban-data.d.ts +4 -0
- package/lib/kanban/src/use-kanban-data.js +70 -0
- package/lib/kanban/src/use-kanban-drag.d.ts +2 -0
- package/lib/kanban/src/use-kanban-drag.js +220 -0
- package/lib/kanban/styles/dark.d.ts +73 -0
- package/lib/kanban/styles/dark.js +17 -0
- package/lib/kanban/styles/index.d.ts +3 -0
- package/lib/kanban/styles/index.js +10 -0
- package/lib/kanban/styles/light.d.ts +109 -0
- package/lib/kanban/styles/light.js +54 -0
- package/lib/modal/src/BodyWrapper.d.ts +1 -1
- package/lib/themes/dark.js +98 -96
- package/lib/themes/light.js +96 -94
- package/lib/tree/src/Tree.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +3 -0
- package/web-types.json +171 -1
|
@@ -0,0 +1,570 @@
|
|
|
1
|
+
import type { KanbanColumn, KanbanDragContext, KanbanItem, KanbanMoveContext, KanbanOrientation, KanbanScrollContext } from './interface';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
columns: {
|
|
4
|
+
readonly type: import("vue").PropType<KanbanColumn[]>;
|
|
5
|
+
readonly default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
data: {
|
|
8
|
+
readonly type: import("vue").PropType<KanbanItem[]>;
|
|
9
|
+
readonly default: () => never[];
|
|
10
|
+
};
|
|
11
|
+
itemKey: {
|
|
12
|
+
readonly type: import("vue").PropType<import("./interface").KanbanItemKeyField>;
|
|
13
|
+
readonly default: "key";
|
|
14
|
+
};
|
|
15
|
+
columnField: {
|
|
16
|
+
readonly type: StringConstructor;
|
|
17
|
+
readonly default: "column";
|
|
18
|
+
};
|
|
19
|
+
orientation: {
|
|
20
|
+
readonly type: import("vue").PropType<KanbanOrientation>;
|
|
21
|
+
readonly default: "horizontal";
|
|
22
|
+
};
|
|
23
|
+
draggable: {
|
|
24
|
+
readonly type: BooleanConstructor;
|
|
25
|
+
readonly default: true;
|
|
26
|
+
};
|
|
27
|
+
columnsDraggable: {
|
|
28
|
+
readonly type: BooleanConstructor;
|
|
29
|
+
readonly default: false;
|
|
30
|
+
};
|
|
31
|
+
disabled: BooleanConstructor;
|
|
32
|
+
allowDrop: import("vue").PropType<(ctx: KanbanMoveContext) => boolean>;
|
|
33
|
+
scrollMode: {
|
|
34
|
+
readonly type: import("vue").PropType<import("./interface").KanbanScrollMode>;
|
|
35
|
+
readonly default: "board";
|
|
36
|
+
};
|
|
37
|
+
scrollThreshold: {
|
|
38
|
+
readonly type: NumberConstructor;
|
|
39
|
+
readonly default: 48;
|
|
40
|
+
};
|
|
41
|
+
loading: BooleanConstructor;
|
|
42
|
+
emptyProps: import("vue").PropType<Partial<import("../../empty").EmptyProps>>;
|
|
43
|
+
columnEmptyText: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
|
|
44
|
+
columnProps: import("vue").PropType<Record<string, unknown>>;
|
|
45
|
+
cardProps: import("vue").PropType<Record<string, unknown>>;
|
|
46
|
+
'onUpdate:data': import("vue").PropType<((data: KanbanItem[]) => void) | Array<(data: KanbanItem[]) => void>>;
|
|
47
|
+
onMove: import("vue").PropType<(ctx: KanbanMoveContext) => void>;
|
|
48
|
+
onColumnsReorder: import("vue").PropType<(columns: KanbanColumn[]) => void>;
|
|
49
|
+
onDragStart: import("vue").PropType<(ctx: KanbanDragContext) => void>;
|
|
50
|
+
onDragEnd: import("vue").PropType<(ctx: KanbanDragContext) => void>;
|
|
51
|
+
onItemClick: import("vue").PropType<(item: KanbanItem, column: KanbanColumn) => void>;
|
|
52
|
+
onColumnScrollTop: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
53
|
+
onColumnScrollBottom: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
54
|
+
onScrollTop: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
55
|
+
onScrollBottom: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
56
|
+
theme: import("vue").PropType<import("../../_mixins").Theme<"Kanban", {
|
|
57
|
+
columnWidth: string;
|
|
58
|
+
columnGap: string;
|
|
59
|
+
cardGap: string;
|
|
60
|
+
boardPadding: string;
|
|
61
|
+
columnHeaderPadding: string;
|
|
62
|
+
columnBodyPadding: string;
|
|
63
|
+
columnBackgroundColor: string;
|
|
64
|
+
columnBorderRadius: string;
|
|
65
|
+
columnHeaderColor: string;
|
|
66
|
+
countBackgroundColor: string;
|
|
67
|
+
countTextColor: string;
|
|
68
|
+
statusSuccessHeaderColor: string;
|
|
69
|
+
statusSuccessCountColor: string;
|
|
70
|
+
statusProgressHeaderColor: string;
|
|
71
|
+
statusProgressCountColor: string;
|
|
72
|
+
statusPendingHeaderColor: string;
|
|
73
|
+
statusPendingCountColor: string;
|
|
74
|
+
statusErrorHeaderColor: string;
|
|
75
|
+
statusErrorCountColor: string;
|
|
76
|
+
columnDraggingOpacity: string;
|
|
77
|
+
cardBackgroundColor: string;
|
|
78
|
+
cardBackgroundColorDragging: string;
|
|
79
|
+
cardBorderColorDragging: string;
|
|
80
|
+
cardBorderRadius: string;
|
|
81
|
+
cardPadding: string;
|
|
82
|
+
cardColor: string;
|
|
83
|
+
cardSubColor: string;
|
|
84
|
+
cardBoxShadow: string;
|
|
85
|
+
cardBoxShadowHover: string;
|
|
86
|
+
cardBoxShadowDragging: string;
|
|
87
|
+
dropIndicatorColor: string;
|
|
88
|
+
maxReachedColor: string;
|
|
89
|
+
}, {
|
|
90
|
+
Empty: import("../../_mixins").Theme<"Empty", {
|
|
91
|
+
iconSizeSmall: string;
|
|
92
|
+
iconSizeMedium: string;
|
|
93
|
+
iconSizeLarge: string;
|
|
94
|
+
iconSizeHuge: string;
|
|
95
|
+
titleFontSizeSmall: string;
|
|
96
|
+
titleFontSizeMedium: string;
|
|
97
|
+
titleFontSizeLarge: string;
|
|
98
|
+
titleFontSizeHuge: string;
|
|
99
|
+
descriptionFontSizeSmall: string;
|
|
100
|
+
descriptionFontSizeMedium: string;
|
|
101
|
+
descriptionFontSizeLarge: string;
|
|
102
|
+
descriptionFontSizeHuge: string;
|
|
103
|
+
titleColor: string;
|
|
104
|
+
descriptionColor: string;
|
|
105
|
+
iconColor: string;
|
|
106
|
+
iconBgColor: string;
|
|
107
|
+
extraTextColor: string;
|
|
108
|
+
}, any>;
|
|
109
|
+
Badge: import("../../_mixins").Theme<"Badge", {
|
|
110
|
+
color: string;
|
|
111
|
+
colorPrime: string;
|
|
112
|
+
colorInfo: string;
|
|
113
|
+
colorSuccess: string;
|
|
114
|
+
colorError: string;
|
|
115
|
+
colorWarning: string;
|
|
116
|
+
fontSize: string;
|
|
117
|
+
textColor: string;
|
|
118
|
+
textColorPrime: string;
|
|
119
|
+
textColorInfo: string;
|
|
120
|
+
textColorSuccess: string;
|
|
121
|
+
textColorError: string;
|
|
122
|
+
textColorWarning: string;
|
|
123
|
+
borderColor: string;
|
|
124
|
+
dotSize: string;
|
|
125
|
+
}, any>;
|
|
126
|
+
}>>;
|
|
127
|
+
themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Kanban", {
|
|
128
|
+
columnWidth: string;
|
|
129
|
+
columnGap: string;
|
|
130
|
+
cardGap: string;
|
|
131
|
+
boardPadding: string;
|
|
132
|
+
columnHeaderPadding: string;
|
|
133
|
+
columnBodyPadding: string;
|
|
134
|
+
columnBackgroundColor: string;
|
|
135
|
+
columnBorderRadius: string;
|
|
136
|
+
columnHeaderColor: string;
|
|
137
|
+
countBackgroundColor: string;
|
|
138
|
+
countTextColor: string;
|
|
139
|
+
statusSuccessHeaderColor: string;
|
|
140
|
+
statusSuccessCountColor: string;
|
|
141
|
+
statusProgressHeaderColor: string;
|
|
142
|
+
statusProgressCountColor: string;
|
|
143
|
+
statusPendingHeaderColor: string;
|
|
144
|
+
statusPendingCountColor: string;
|
|
145
|
+
statusErrorHeaderColor: string;
|
|
146
|
+
statusErrorCountColor: string;
|
|
147
|
+
columnDraggingOpacity: string;
|
|
148
|
+
cardBackgroundColor: string;
|
|
149
|
+
cardBackgroundColorDragging: string;
|
|
150
|
+
cardBorderColorDragging: string;
|
|
151
|
+
cardBorderRadius: string;
|
|
152
|
+
cardPadding: string;
|
|
153
|
+
cardColor: string;
|
|
154
|
+
cardSubColor: string;
|
|
155
|
+
cardBoxShadow: string;
|
|
156
|
+
cardBoxShadowHover: string;
|
|
157
|
+
cardBoxShadowDragging: string;
|
|
158
|
+
dropIndicatorColor: string;
|
|
159
|
+
maxReachedColor: string;
|
|
160
|
+
}, {
|
|
161
|
+
Empty: import("../../_mixins").Theme<"Empty", {
|
|
162
|
+
iconSizeSmall: string;
|
|
163
|
+
iconSizeMedium: string;
|
|
164
|
+
iconSizeLarge: string;
|
|
165
|
+
iconSizeHuge: string;
|
|
166
|
+
titleFontSizeSmall: string;
|
|
167
|
+
titleFontSizeMedium: string;
|
|
168
|
+
titleFontSizeLarge: string;
|
|
169
|
+
titleFontSizeHuge: string;
|
|
170
|
+
descriptionFontSizeSmall: string;
|
|
171
|
+
descriptionFontSizeMedium: string;
|
|
172
|
+
descriptionFontSizeLarge: string;
|
|
173
|
+
descriptionFontSizeHuge: string;
|
|
174
|
+
titleColor: string;
|
|
175
|
+
descriptionColor: string;
|
|
176
|
+
iconColor: string;
|
|
177
|
+
iconBgColor: string;
|
|
178
|
+
extraTextColor: string;
|
|
179
|
+
}, any>;
|
|
180
|
+
Badge: import("../../_mixins").Theme<"Badge", {
|
|
181
|
+
color: string;
|
|
182
|
+
colorPrime: string;
|
|
183
|
+
colorInfo: string;
|
|
184
|
+
colorSuccess: string;
|
|
185
|
+
colorError: string;
|
|
186
|
+
colorWarning: string;
|
|
187
|
+
fontSize: string;
|
|
188
|
+
textColor: string;
|
|
189
|
+
textColorPrime: string;
|
|
190
|
+
textColorInfo: string;
|
|
191
|
+
textColorSuccess: string;
|
|
192
|
+
textColorError: string;
|
|
193
|
+
textColorWarning: string;
|
|
194
|
+
borderColor: string;
|
|
195
|
+
dotSize: string;
|
|
196
|
+
}, any>;
|
|
197
|
+
}>>>;
|
|
198
|
+
builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Kanban", {
|
|
199
|
+
columnWidth: string;
|
|
200
|
+
columnGap: string;
|
|
201
|
+
cardGap: string;
|
|
202
|
+
boardPadding: string;
|
|
203
|
+
columnHeaderPadding: string;
|
|
204
|
+
columnBodyPadding: string;
|
|
205
|
+
columnBackgroundColor: string;
|
|
206
|
+
columnBorderRadius: string;
|
|
207
|
+
columnHeaderColor: string;
|
|
208
|
+
countBackgroundColor: string;
|
|
209
|
+
countTextColor: string;
|
|
210
|
+
statusSuccessHeaderColor: string;
|
|
211
|
+
statusSuccessCountColor: string;
|
|
212
|
+
statusProgressHeaderColor: string;
|
|
213
|
+
statusProgressCountColor: string;
|
|
214
|
+
statusPendingHeaderColor: string;
|
|
215
|
+
statusPendingCountColor: string;
|
|
216
|
+
statusErrorHeaderColor: string;
|
|
217
|
+
statusErrorCountColor: string;
|
|
218
|
+
columnDraggingOpacity: string;
|
|
219
|
+
cardBackgroundColor: string;
|
|
220
|
+
cardBackgroundColorDragging: string;
|
|
221
|
+
cardBorderColorDragging: string;
|
|
222
|
+
cardBorderRadius: string;
|
|
223
|
+
cardPadding: string;
|
|
224
|
+
cardColor: string;
|
|
225
|
+
cardSubColor: string;
|
|
226
|
+
cardBoxShadow: string;
|
|
227
|
+
cardBoxShadowHover: string;
|
|
228
|
+
cardBoxShadowDragging: string;
|
|
229
|
+
dropIndicatorColor: string;
|
|
230
|
+
maxReachedColor: string;
|
|
231
|
+
}, {
|
|
232
|
+
Empty: import("../../_mixins").Theme<"Empty", {
|
|
233
|
+
iconSizeSmall: string;
|
|
234
|
+
iconSizeMedium: string;
|
|
235
|
+
iconSizeLarge: string;
|
|
236
|
+
iconSizeHuge: string;
|
|
237
|
+
titleFontSizeSmall: string;
|
|
238
|
+
titleFontSizeMedium: string;
|
|
239
|
+
titleFontSizeLarge: string;
|
|
240
|
+
titleFontSizeHuge: string;
|
|
241
|
+
descriptionFontSizeSmall: string;
|
|
242
|
+
descriptionFontSizeMedium: string;
|
|
243
|
+
descriptionFontSizeLarge: string;
|
|
244
|
+
descriptionFontSizeHuge: string;
|
|
245
|
+
titleColor: string;
|
|
246
|
+
descriptionColor: string;
|
|
247
|
+
iconColor: string;
|
|
248
|
+
iconBgColor: string;
|
|
249
|
+
extraTextColor: string;
|
|
250
|
+
}, any>;
|
|
251
|
+
Badge: import("../../_mixins").Theme<"Badge", {
|
|
252
|
+
color: string;
|
|
253
|
+
colorPrime: string;
|
|
254
|
+
colorInfo: string;
|
|
255
|
+
colorSuccess: string;
|
|
256
|
+
colorError: string;
|
|
257
|
+
colorWarning: string;
|
|
258
|
+
fontSize: string;
|
|
259
|
+
textColor: string;
|
|
260
|
+
textColorPrime: string;
|
|
261
|
+
textColorInfo: string;
|
|
262
|
+
textColorSuccess: string;
|
|
263
|
+
textColorError: string;
|
|
264
|
+
textColorWarning: string;
|
|
265
|
+
borderColor: string;
|
|
266
|
+
dotSize: string;
|
|
267
|
+
}, any>;
|
|
268
|
+
}>>>;
|
|
269
|
+
}>, {
|
|
270
|
+
selfElRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
271
|
+
mergedClsPrefix: import("vue").Ref<string, string>;
|
|
272
|
+
mergedColumns: import("vue").ComputedRef<KanbanColumn[]>;
|
|
273
|
+
mergedData: import("vue").ComputedRef<KanbanItem[]>;
|
|
274
|
+
columnFieldValue: import("vue").ComputedRef<string>;
|
|
275
|
+
handleBoardScroll: (event: Event) => void;
|
|
276
|
+
cssVars: import("vue").ComputedRef<Record<string, string>> | undefined;
|
|
277
|
+
themeClass: import("vue").Ref<string, string> | undefined;
|
|
278
|
+
onRender: (() => void) | undefined;
|
|
279
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("move" | "update:data" | "columns-reorder" | "drag-start" | "drag-end" | "item-click" | "column-scroll-top" | "column-scroll-bottom" | "scroll-top" | "scroll-bottom")[], "move" | "update:data" | "columns-reorder" | "drag-start" | "drag-end" | "item-click" | "column-scroll-top" | "column-scroll-bottom" | "scroll-top" | "scroll-bottom", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
280
|
+
columns: {
|
|
281
|
+
readonly type: import("vue").PropType<KanbanColumn[]>;
|
|
282
|
+
readonly default: () => never[];
|
|
283
|
+
};
|
|
284
|
+
data: {
|
|
285
|
+
readonly type: import("vue").PropType<KanbanItem[]>;
|
|
286
|
+
readonly default: () => never[];
|
|
287
|
+
};
|
|
288
|
+
itemKey: {
|
|
289
|
+
readonly type: import("vue").PropType<import("./interface").KanbanItemKeyField>;
|
|
290
|
+
readonly default: "key";
|
|
291
|
+
};
|
|
292
|
+
columnField: {
|
|
293
|
+
readonly type: StringConstructor;
|
|
294
|
+
readonly default: "column";
|
|
295
|
+
};
|
|
296
|
+
orientation: {
|
|
297
|
+
readonly type: import("vue").PropType<KanbanOrientation>;
|
|
298
|
+
readonly default: "horizontal";
|
|
299
|
+
};
|
|
300
|
+
draggable: {
|
|
301
|
+
readonly type: BooleanConstructor;
|
|
302
|
+
readonly default: true;
|
|
303
|
+
};
|
|
304
|
+
columnsDraggable: {
|
|
305
|
+
readonly type: BooleanConstructor;
|
|
306
|
+
readonly default: false;
|
|
307
|
+
};
|
|
308
|
+
disabled: BooleanConstructor;
|
|
309
|
+
allowDrop: import("vue").PropType<(ctx: KanbanMoveContext) => boolean>;
|
|
310
|
+
scrollMode: {
|
|
311
|
+
readonly type: import("vue").PropType<import("./interface").KanbanScrollMode>;
|
|
312
|
+
readonly default: "board";
|
|
313
|
+
};
|
|
314
|
+
scrollThreshold: {
|
|
315
|
+
readonly type: NumberConstructor;
|
|
316
|
+
readonly default: 48;
|
|
317
|
+
};
|
|
318
|
+
loading: BooleanConstructor;
|
|
319
|
+
emptyProps: import("vue").PropType<Partial<import("../../empty").EmptyProps>>;
|
|
320
|
+
columnEmptyText: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
|
|
321
|
+
columnProps: import("vue").PropType<Record<string, unknown>>;
|
|
322
|
+
cardProps: import("vue").PropType<Record<string, unknown>>;
|
|
323
|
+
'onUpdate:data': import("vue").PropType<((data: KanbanItem[]) => void) | Array<(data: KanbanItem[]) => void>>;
|
|
324
|
+
onMove: import("vue").PropType<(ctx: KanbanMoveContext) => void>;
|
|
325
|
+
onColumnsReorder: import("vue").PropType<(columns: KanbanColumn[]) => void>;
|
|
326
|
+
onDragStart: import("vue").PropType<(ctx: KanbanDragContext) => void>;
|
|
327
|
+
onDragEnd: import("vue").PropType<(ctx: KanbanDragContext) => void>;
|
|
328
|
+
onItemClick: import("vue").PropType<(item: KanbanItem, column: KanbanColumn) => void>;
|
|
329
|
+
onColumnScrollTop: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
330
|
+
onColumnScrollBottom: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
331
|
+
onScrollTop: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
332
|
+
onScrollBottom: import("vue").PropType<(ctx: KanbanScrollContext) => void>;
|
|
333
|
+
theme: import("vue").PropType<import("../../_mixins").Theme<"Kanban", {
|
|
334
|
+
columnWidth: string;
|
|
335
|
+
columnGap: string;
|
|
336
|
+
cardGap: string;
|
|
337
|
+
boardPadding: string;
|
|
338
|
+
columnHeaderPadding: string;
|
|
339
|
+
columnBodyPadding: string;
|
|
340
|
+
columnBackgroundColor: string;
|
|
341
|
+
columnBorderRadius: string;
|
|
342
|
+
columnHeaderColor: string;
|
|
343
|
+
countBackgroundColor: string;
|
|
344
|
+
countTextColor: string;
|
|
345
|
+
statusSuccessHeaderColor: string;
|
|
346
|
+
statusSuccessCountColor: string;
|
|
347
|
+
statusProgressHeaderColor: string;
|
|
348
|
+
statusProgressCountColor: string;
|
|
349
|
+
statusPendingHeaderColor: string;
|
|
350
|
+
statusPendingCountColor: string;
|
|
351
|
+
statusErrorHeaderColor: string;
|
|
352
|
+
statusErrorCountColor: string;
|
|
353
|
+
columnDraggingOpacity: string;
|
|
354
|
+
cardBackgroundColor: string;
|
|
355
|
+
cardBackgroundColorDragging: string;
|
|
356
|
+
cardBorderColorDragging: string;
|
|
357
|
+
cardBorderRadius: string;
|
|
358
|
+
cardPadding: string;
|
|
359
|
+
cardColor: string;
|
|
360
|
+
cardSubColor: string;
|
|
361
|
+
cardBoxShadow: string;
|
|
362
|
+
cardBoxShadowHover: string;
|
|
363
|
+
cardBoxShadowDragging: string;
|
|
364
|
+
dropIndicatorColor: string;
|
|
365
|
+
maxReachedColor: string;
|
|
366
|
+
}, {
|
|
367
|
+
Empty: import("../../_mixins").Theme<"Empty", {
|
|
368
|
+
iconSizeSmall: string;
|
|
369
|
+
iconSizeMedium: string;
|
|
370
|
+
iconSizeLarge: string;
|
|
371
|
+
iconSizeHuge: string;
|
|
372
|
+
titleFontSizeSmall: string;
|
|
373
|
+
titleFontSizeMedium: string;
|
|
374
|
+
titleFontSizeLarge: string;
|
|
375
|
+
titleFontSizeHuge: string;
|
|
376
|
+
descriptionFontSizeSmall: string;
|
|
377
|
+
descriptionFontSizeMedium: string;
|
|
378
|
+
descriptionFontSizeLarge: string;
|
|
379
|
+
descriptionFontSizeHuge: string;
|
|
380
|
+
titleColor: string;
|
|
381
|
+
descriptionColor: string;
|
|
382
|
+
iconColor: string;
|
|
383
|
+
iconBgColor: string;
|
|
384
|
+
extraTextColor: string;
|
|
385
|
+
}, any>;
|
|
386
|
+
Badge: import("../../_mixins").Theme<"Badge", {
|
|
387
|
+
color: string;
|
|
388
|
+
colorPrime: string;
|
|
389
|
+
colorInfo: string;
|
|
390
|
+
colorSuccess: string;
|
|
391
|
+
colorError: string;
|
|
392
|
+
colorWarning: string;
|
|
393
|
+
fontSize: string;
|
|
394
|
+
textColor: string;
|
|
395
|
+
textColorPrime: string;
|
|
396
|
+
textColorInfo: string;
|
|
397
|
+
textColorSuccess: string;
|
|
398
|
+
textColorError: string;
|
|
399
|
+
textColorWarning: string;
|
|
400
|
+
borderColor: string;
|
|
401
|
+
dotSize: string;
|
|
402
|
+
}, any>;
|
|
403
|
+
}>>;
|
|
404
|
+
themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Kanban", {
|
|
405
|
+
columnWidth: string;
|
|
406
|
+
columnGap: string;
|
|
407
|
+
cardGap: string;
|
|
408
|
+
boardPadding: string;
|
|
409
|
+
columnHeaderPadding: string;
|
|
410
|
+
columnBodyPadding: string;
|
|
411
|
+
columnBackgroundColor: string;
|
|
412
|
+
columnBorderRadius: string;
|
|
413
|
+
columnHeaderColor: string;
|
|
414
|
+
countBackgroundColor: string;
|
|
415
|
+
countTextColor: string;
|
|
416
|
+
statusSuccessHeaderColor: string;
|
|
417
|
+
statusSuccessCountColor: string;
|
|
418
|
+
statusProgressHeaderColor: string;
|
|
419
|
+
statusProgressCountColor: string;
|
|
420
|
+
statusPendingHeaderColor: string;
|
|
421
|
+
statusPendingCountColor: string;
|
|
422
|
+
statusErrorHeaderColor: string;
|
|
423
|
+
statusErrorCountColor: string;
|
|
424
|
+
columnDraggingOpacity: string;
|
|
425
|
+
cardBackgroundColor: string;
|
|
426
|
+
cardBackgroundColorDragging: string;
|
|
427
|
+
cardBorderColorDragging: string;
|
|
428
|
+
cardBorderRadius: string;
|
|
429
|
+
cardPadding: string;
|
|
430
|
+
cardColor: string;
|
|
431
|
+
cardSubColor: string;
|
|
432
|
+
cardBoxShadow: string;
|
|
433
|
+
cardBoxShadowHover: string;
|
|
434
|
+
cardBoxShadowDragging: string;
|
|
435
|
+
dropIndicatorColor: string;
|
|
436
|
+
maxReachedColor: string;
|
|
437
|
+
}, {
|
|
438
|
+
Empty: import("../../_mixins").Theme<"Empty", {
|
|
439
|
+
iconSizeSmall: string;
|
|
440
|
+
iconSizeMedium: string;
|
|
441
|
+
iconSizeLarge: string;
|
|
442
|
+
iconSizeHuge: string;
|
|
443
|
+
titleFontSizeSmall: string;
|
|
444
|
+
titleFontSizeMedium: string;
|
|
445
|
+
titleFontSizeLarge: string;
|
|
446
|
+
titleFontSizeHuge: string;
|
|
447
|
+
descriptionFontSizeSmall: string;
|
|
448
|
+
descriptionFontSizeMedium: string;
|
|
449
|
+
descriptionFontSizeLarge: string;
|
|
450
|
+
descriptionFontSizeHuge: string;
|
|
451
|
+
titleColor: string;
|
|
452
|
+
descriptionColor: string;
|
|
453
|
+
iconColor: string;
|
|
454
|
+
iconBgColor: string;
|
|
455
|
+
extraTextColor: string;
|
|
456
|
+
}, any>;
|
|
457
|
+
Badge: import("../../_mixins").Theme<"Badge", {
|
|
458
|
+
color: string;
|
|
459
|
+
colorPrime: string;
|
|
460
|
+
colorInfo: string;
|
|
461
|
+
colorSuccess: string;
|
|
462
|
+
colorError: string;
|
|
463
|
+
colorWarning: string;
|
|
464
|
+
fontSize: string;
|
|
465
|
+
textColor: string;
|
|
466
|
+
textColorPrime: string;
|
|
467
|
+
textColorInfo: string;
|
|
468
|
+
textColorSuccess: string;
|
|
469
|
+
textColorError: string;
|
|
470
|
+
textColorWarning: string;
|
|
471
|
+
borderColor: string;
|
|
472
|
+
dotSize: string;
|
|
473
|
+
}, any>;
|
|
474
|
+
}>>>;
|
|
475
|
+
builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Kanban", {
|
|
476
|
+
columnWidth: string;
|
|
477
|
+
columnGap: string;
|
|
478
|
+
cardGap: string;
|
|
479
|
+
boardPadding: string;
|
|
480
|
+
columnHeaderPadding: string;
|
|
481
|
+
columnBodyPadding: string;
|
|
482
|
+
columnBackgroundColor: string;
|
|
483
|
+
columnBorderRadius: string;
|
|
484
|
+
columnHeaderColor: string;
|
|
485
|
+
countBackgroundColor: string;
|
|
486
|
+
countTextColor: string;
|
|
487
|
+
statusSuccessHeaderColor: string;
|
|
488
|
+
statusSuccessCountColor: string;
|
|
489
|
+
statusProgressHeaderColor: string;
|
|
490
|
+
statusProgressCountColor: string;
|
|
491
|
+
statusPendingHeaderColor: string;
|
|
492
|
+
statusPendingCountColor: string;
|
|
493
|
+
statusErrorHeaderColor: string;
|
|
494
|
+
statusErrorCountColor: string;
|
|
495
|
+
columnDraggingOpacity: string;
|
|
496
|
+
cardBackgroundColor: string;
|
|
497
|
+
cardBackgroundColorDragging: string;
|
|
498
|
+
cardBorderColorDragging: string;
|
|
499
|
+
cardBorderRadius: string;
|
|
500
|
+
cardPadding: string;
|
|
501
|
+
cardColor: string;
|
|
502
|
+
cardSubColor: string;
|
|
503
|
+
cardBoxShadow: string;
|
|
504
|
+
cardBoxShadowHover: string;
|
|
505
|
+
cardBoxShadowDragging: string;
|
|
506
|
+
dropIndicatorColor: string;
|
|
507
|
+
maxReachedColor: string;
|
|
508
|
+
}, {
|
|
509
|
+
Empty: import("../../_mixins").Theme<"Empty", {
|
|
510
|
+
iconSizeSmall: string;
|
|
511
|
+
iconSizeMedium: string;
|
|
512
|
+
iconSizeLarge: string;
|
|
513
|
+
iconSizeHuge: string;
|
|
514
|
+
titleFontSizeSmall: string;
|
|
515
|
+
titleFontSizeMedium: string;
|
|
516
|
+
titleFontSizeLarge: string;
|
|
517
|
+
titleFontSizeHuge: string;
|
|
518
|
+
descriptionFontSizeSmall: string;
|
|
519
|
+
descriptionFontSizeMedium: string;
|
|
520
|
+
descriptionFontSizeLarge: string;
|
|
521
|
+
descriptionFontSizeHuge: string;
|
|
522
|
+
titleColor: string;
|
|
523
|
+
descriptionColor: string;
|
|
524
|
+
iconColor: string;
|
|
525
|
+
iconBgColor: string;
|
|
526
|
+
extraTextColor: string;
|
|
527
|
+
}, any>;
|
|
528
|
+
Badge: import("../../_mixins").Theme<"Badge", {
|
|
529
|
+
color: string;
|
|
530
|
+
colorPrime: string;
|
|
531
|
+
colorInfo: string;
|
|
532
|
+
colorSuccess: string;
|
|
533
|
+
colorError: string;
|
|
534
|
+
colorWarning: string;
|
|
535
|
+
fontSize: string;
|
|
536
|
+
textColor: string;
|
|
537
|
+
textColorPrime: string;
|
|
538
|
+
textColorInfo: string;
|
|
539
|
+
textColorSuccess: string;
|
|
540
|
+
textColorError: string;
|
|
541
|
+
textColorWarning: string;
|
|
542
|
+
borderColor: string;
|
|
543
|
+
dotSize: string;
|
|
544
|
+
}, any>;
|
|
545
|
+
}>>>;
|
|
546
|
+
}>> & Readonly<{
|
|
547
|
+
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
548
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
549
|
+
"onColumns-reorder"?: ((...args: any[]) => any) | undefined;
|
|
550
|
+
"onDrag-start"?: ((...args: any[]) => any) | undefined;
|
|
551
|
+
"onDrag-end"?: ((...args: any[]) => any) | undefined;
|
|
552
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
553
|
+
"onColumn-scroll-top"?: ((...args: any[]) => any) | undefined;
|
|
554
|
+
"onColumn-scroll-bottom"?: ((...args: any[]) => any) | undefined;
|
|
555
|
+
"onScroll-top"?: ((...args: any[]) => any) | undefined;
|
|
556
|
+
"onScroll-bottom"?: ((...args: any[]) => any) | undefined;
|
|
557
|
+
}>, {
|
|
558
|
+
disabled: boolean;
|
|
559
|
+
data: KanbanItem[];
|
|
560
|
+
loading: boolean;
|
|
561
|
+
columns: KanbanColumn[];
|
|
562
|
+
itemKey: import("./interface").KanbanItemKeyField;
|
|
563
|
+
columnField: string;
|
|
564
|
+
orientation: KanbanOrientation;
|
|
565
|
+
draggable: boolean;
|
|
566
|
+
columnsDraggable: boolean;
|
|
567
|
+
scrollMode: import("./interface").KanbanScrollMode;
|
|
568
|
+
scrollThreshold: number;
|
|
569
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
570
|
+
export default _default;
|