@uzum-tech/ui 2.0.8 → 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 +1787 -467
- package/dist/index.mjs +1782 -468
- 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/tree/src/TreeNode.d.ts +1 -1
- package/es/tree/src/TreeNode.mjs +2 -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/tree/src/TreeNode.d.ts +1 -1
- package/lib/tree/src/TreeNode.js +2 -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
package/lib/components.d.ts
CHANGED
|
@@ -5523,8 +5523,8 @@ export declare const UxButton: new () => {
|
|
|
5523
5523
|
id?: string | undefined | undefined;
|
|
5524
5524
|
name?: string | undefined | undefined;
|
|
5525
5525
|
placeholder?: string | undefined | undefined;
|
|
5526
|
-
role?: string | undefined | undefined;
|
|
5527
5526
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
5527
|
+
role?: string | undefined | undefined;
|
|
5528
5528
|
prefix?: string | undefined | undefined;
|
|
5529
5529
|
autofocus?: (boolean | "true" | "false") | undefined;
|
|
5530
5530
|
is?: string | undefined | undefined;
|
|
@@ -8277,6 +8277,7 @@ export declare const UCarousel: import("vue").DefineComponent<import("vue").Extr
|
|
|
8277
8277
|
}>> & Readonly<{}>, {
|
|
8278
8278
|
trigger: "click" | "hover";
|
|
8279
8279
|
keyboard: boolean;
|
|
8280
|
+
draggable: boolean;
|
|
8280
8281
|
defaultIndex: number;
|
|
8281
8282
|
showArrow: boolean;
|
|
8282
8283
|
dotType: "line" | "dot";
|
|
@@ -8291,7 +8292,6 @@ export declare const UCarousel: import("vue").DefineComponent<import("vue").Extr
|
|
|
8291
8292
|
effect: "card" | "slide" | "fade" | "custom";
|
|
8292
8293
|
showDots: boolean;
|
|
8293
8294
|
transitionStyle: Partial<Pick<import("vue").CSSProperties, "transitionDuration" | "transitionTimingFunction">>;
|
|
8294
|
-
draggable: boolean;
|
|
8295
8295
|
touchable: boolean;
|
|
8296
8296
|
mousewheel: boolean;
|
|
8297
8297
|
}, import("vue").SlotsType<import("./carousel").CarouselSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -41979,13 +41979,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
|
|
|
41979
41979
|
readonly loading: boolean;
|
|
41980
41980
|
readonly loadingSkeleton: boolean;
|
|
41981
41981
|
readonly spinProps: import("./_internal").BaseLoadingExposedProps;
|
|
41982
|
+
readonly columns: import("./data-table").DataTableColumns<any>;
|
|
41982
41983
|
readonly allowCheckingNotLoaded: boolean;
|
|
41983
41984
|
readonly remote: boolean;
|
|
41984
41985
|
readonly cascade: boolean;
|
|
41985
41986
|
readonly virtualScroll: boolean;
|
|
41986
41987
|
readonly pagination: false | import("./pagination").PaginationProps;
|
|
41987
41988
|
readonly paginateSinglePage: boolean;
|
|
41988
|
-
readonly columns: import("./data-table").DataTableColumns<any>;
|
|
41989
41989
|
readonly bottomBordered: boolean | undefined;
|
|
41990
41990
|
readonly striped: boolean;
|
|
41991
41991
|
readonly defaultCheckedRowKeys: import("./data-table").DataTableRowKey[];
|
|
@@ -52498,8 +52498,8 @@ export declare const UDescriptions: import("vue").DefineComponent<import("vue").
|
|
|
52498
52498
|
readonly labelPlacement: "left" | "top";
|
|
52499
52499
|
readonly separator: string;
|
|
52500
52500
|
readonly loadingSkeleton: boolean;
|
|
52501
|
-
readonly skeletonProps: import("./_internal/skeleton").SkeletonProps;
|
|
52502
52501
|
readonly column: number;
|
|
52502
|
+
readonly skeletonProps: import("./_internal/skeleton").SkeletonProps;
|
|
52503
52503
|
}, import("vue").SlotsType<import("./descriptions").DescriptionsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
52504
52504
|
export declare const UDescriptionsItem: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
52505
52505
|
readonly label: StringConstructor;
|
|
@@ -71370,6 +71370,656 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
|
|
|
71370
71370
|
defaultValue: string[];
|
|
71371
71371
|
readonly: boolean;
|
|
71372
71372
|
}, import("vue").SlotsType<import("./input-otp").InputOtpSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
71373
|
+
export type * from './kanban';
|
|
71374
|
+
export { kanbanDark, kanbanLight, kanbanProps } from './kanban';
|
|
71375
|
+
export declare const UKanban: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
71376
|
+
columns: {
|
|
71377
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanColumn[]>;
|
|
71378
|
+
readonly default: () => never[];
|
|
71379
|
+
};
|
|
71380
|
+
data: {
|
|
71381
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanItem[]>;
|
|
71382
|
+
readonly default: () => never[];
|
|
71383
|
+
};
|
|
71384
|
+
itemKey: {
|
|
71385
|
+
readonly type: import("vue").PropType<import("./kanban/src/interface").KanbanItemKeyField>;
|
|
71386
|
+
readonly default: "key";
|
|
71387
|
+
};
|
|
71388
|
+
columnField: {
|
|
71389
|
+
readonly type: StringConstructor;
|
|
71390
|
+
readonly default: "column";
|
|
71391
|
+
};
|
|
71392
|
+
orientation: {
|
|
71393
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanOrientation>;
|
|
71394
|
+
readonly default: "horizontal";
|
|
71395
|
+
};
|
|
71396
|
+
draggable: {
|
|
71397
|
+
readonly type: BooleanConstructor;
|
|
71398
|
+
readonly default: true;
|
|
71399
|
+
};
|
|
71400
|
+
columnsDraggable: {
|
|
71401
|
+
readonly type: BooleanConstructor;
|
|
71402
|
+
readonly default: false;
|
|
71403
|
+
};
|
|
71404
|
+
disabled: BooleanConstructor;
|
|
71405
|
+
allowDrop: import("vue").PropType<(ctx: import("./kanban").KanbanMoveContext) => boolean>;
|
|
71406
|
+
scrollMode: {
|
|
71407
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanScrollMode>;
|
|
71408
|
+
readonly default: "board";
|
|
71409
|
+
};
|
|
71410
|
+
scrollThreshold: {
|
|
71411
|
+
readonly type: NumberConstructor;
|
|
71412
|
+
readonly default: 48;
|
|
71413
|
+
};
|
|
71414
|
+
loading: BooleanConstructor;
|
|
71415
|
+
emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
|
|
71416
|
+
columnEmptyText: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
|
|
71417
|
+
columnProps: import("vue").PropType<Record<string, unknown>>;
|
|
71418
|
+
cardProps: import("vue").PropType<Record<string, unknown>>;
|
|
71419
|
+
'onUpdate:data': import("vue").PropType<((data: import("./kanban").KanbanItem[]) => void) | Array<(data: import("./kanban").KanbanItem[]) => void>>;
|
|
71420
|
+
onMove: import("vue").PropType<(ctx: import("./kanban").KanbanMoveContext) => void>;
|
|
71421
|
+
onColumnsReorder: import("vue").PropType<(columns: import("./kanban").KanbanColumn[]) => void>;
|
|
71422
|
+
onDragStart: import("vue").PropType<(ctx: import("./kanban").KanbanDragContext) => void>;
|
|
71423
|
+
onDragEnd: import("vue").PropType<(ctx: import("./kanban").KanbanDragContext) => void>;
|
|
71424
|
+
onItemClick: import("vue").PropType<(item: import("./kanban").KanbanItem, column: import("./kanban").KanbanColumn) => void>;
|
|
71425
|
+
onColumnScrollTop: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71426
|
+
onColumnScrollBottom: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71427
|
+
onScrollTop: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71428
|
+
onScrollBottom: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71429
|
+
theme: import("vue").PropType<import("./_mixins").Theme<"Kanban", {
|
|
71430
|
+
columnWidth: string;
|
|
71431
|
+
columnGap: string;
|
|
71432
|
+
cardGap: string;
|
|
71433
|
+
boardPadding: string;
|
|
71434
|
+
columnHeaderPadding: string;
|
|
71435
|
+
columnBodyPadding: string;
|
|
71436
|
+
columnBackgroundColor: string;
|
|
71437
|
+
columnBorderRadius: string;
|
|
71438
|
+
columnHeaderColor: string;
|
|
71439
|
+
countBackgroundColor: string;
|
|
71440
|
+
countTextColor: string;
|
|
71441
|
+
statusSuccessHeaderColor: string;
|
|
71442
|
+
statusSuccessCountColor: string;
|
|
71443
|
+
statusProgressHeaderColor: string;
|
|
71444
|
+
statusProgressCountColor: string;
|
|
71445
|
+
statusPendingHeaderColor: string;
|
|
71446
|
+
statusPendingCountColor: string;
|
|
71447
|
+
statusErrorHeaderColor: string;
|
|
71448
|
+
statusErrorCountColor: string;
|
|
71449
|
+
columnDraggingOpacity: string;
|
|
71450
|
+
cardBackgroundColor: string;
|
|
71451
|
+
cardBackgroundColorDragging: string;
|
|
71452
|
+
cardBorderColorDragging: string;
|
|
71453
|
+
cardBorderRadius: string;
|
|
71454
|
+
cardPadding: string;
|
|
71455
|
+
cardColor: string;
|
|
71456
|
+
cardSubColor: string;
|
|
71457
|
+
cardBoxShadow: string;
|
|
71458
|
+
cardBoxShadowHover: string;
|
|
71459
|
+
cardBoxShadowDragging: string;
|
|
71460
|
+
dropIndicatorColor: string;
|
|
71461
|
+
maxReachedColor: string;
|
|
71462
|
+
}, {
|
|
71463
|
+
Empty: import("./_mixins").Theme<"Empty", {
|
|
71464
|
+
iconSizeSmall: string;
|
|
71465
|
+
iconSizeMedium: string;
|
|
71466
|
+
iconSizeLarge: string;
|
|
71467
|
+
iconSizeHuge: string;
|
|
71468
|
+
titleFontSizeSmall: string;
|
|
71469
|
+
titleFontSizeMedium: string;
|
|
71470
|
+
titleFontSizeLarge: string;
|
|
71471
|
+
titleFontSizeHuge: string;
|
|
71472
|
+
descriptionFontSizeSmall: string;
|
|
71473
|
+
descriptionFontSizeMedium: string;
|
|
71474
|
+
descriptionFontSizeLarge: string;
|
|
71475
|
+
descriptionFontSizeHuge: string;
|
|
71476
|
+
titleColor: string;
|
|
71477
|
+
descriptionColor: string;
|
|
71478
|
+
iconColor: string;
|
|
71479
|
+
iconBgColor: string;
|
|
71480
|
+
extraTextColor: string;
|
|
71481
|
+
}, any>;
|
|
71482
|
+
Badge: import("./_mixins").Theme<"Badge", {
|
|
71483
|
+
color: string;
|
|
71484
|
+
colorPrime: string;
|
|
71485
|
+
colorInfo: string;
|
|
71486
|
+
colorSuccess: string;
|
|
71487
|
+
colorError: string;
|
|
71488
|
+
colorWarning: string;
|
|
71489
|
+
fontSize: string;
|
|
71490
|
+
textColor: string;
|
|
71491
|
+
textColorPrime: string;
|
|
71492
|
+
textColorInfo: string;
|
|
71493
|
+
textColorSuccess: string;
|
|
71494
|
+
textColorError: string;
|
|
71495
|
+
textColorWarning: string;
|
|
71496
|
+
borderColor: string;
|
|
71497
|
+
dotSize: string;
|
|
71498
|
+
}, any>;
|
|
71499
|
+
}>>;
|
|
71500
|
+
themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"Kanban", {
|
|
71501
|
+
columnWidth: string;
|
|
71502
|
+
columnGap: string;
|
|
71503
|
+
cardGap: string;
|
|
71504
|
+
boardPadding: string;
|
|
71505
|
+
columnHeaderPadding: string;
|
|
71506
|
+
columnBodyPadding: string;
|
|
71507
|
+
columnBackgroundColor: string;
|
|
71508
|
+
columnBorderRadius: string;
|
|
71509
|
+
columnHeaderColor: string;
|
|
71510
|
+
countBackgroundColor: string;
|
|
71511
|
+
countTextColor: string;
|
|
71512
|
+
statusSuccessHeaderColor: string;
|
|
71513
|
+
statusSuccessCountColor: string;
|
|
71514
|
+
statusProgressHeaderColor: string;
|
|
71515
|
+
statusProgressCountColor: string;
|
|
71516
|
+
statusPendingHeaderColor: string;
|
|
71517
|
+
statusPendingCountColor: string;
|
|
71518
|
+
statusErrorHeaderColor: string;
|
|
71519
|
+
statusErrorCountColor: string;
|
|
71520
|
+
columnDraggingOpacity: string;
|
|
71521
|
+
cardBackgroundColor: string;
|
|
71522
|
+
cardBackgroundColorDragging: string;
|
|
71523
|
+
cardBorderColorDragging: string;
|
|
71524
|
+
cardBorderRadius: string;
|
|
71525
|
+
cardPadding: string;
|
|
71526
|
+
cardColor: string;
|
|
71527
|
+
cardSubColor: string;
|
|
71528
|
+
cardBoxShadow: string;
|
|
71529
|
+
cardBoxShadowHover: string;
|
|
71530
|
+
cardBoxShadowDragging: string;
|
|
71531
|
+
dropIndicatorColor: string;
|
|
71532
|
+
maxReachedColor: string;
|
|
71533
|
+
}, {
|
|
71534
|
+
Empty: import("./_mixins").Theme<"Empty", {
|
|
71535
|
+
iconSizeSmall: string;
|
|
71536
|
+
iconSizeMedium: string;
|
|
71537
|
+
iconSizeLarge: string;
|
|
71538
|
+
iconSizeHuge: string;
|
|
71539
|
+
titleFontSizeSmall: string;
|
|
71540
|
+
titleFontSizeMedium: string;
|
|
71541
|
+
titleFontSizeLarge: string;
|
|
71542
|
+
titleFontSizeHuge: string;
|
|
71543
|
+
descriptionFontSizeSmall: string;
|
|
71544
|
+
descriptionFontSizeMedium: string;
|
|
71545
|
+
descriptionFontSizeLarge: string;
|
|
71546
|
+
descriptionFontSizeHuge: string;
|
|
71547
|
+
titleColor: string;
|
|
71548
|
+
descriptionColor: string;
|
|
71549
|
+
iconColor: string;
|
|
71550
|
+
iconBgColor: string;
|
|
71551
|
+
extraTextColor: string;
|
|
71552
|
+
}, any>;
|
|
71553
|
+
Badge: import("./_mixins").Theme<"Badge", {
|
|
71554
|
+
color: string;
|
|
71555
|
+
colorPrime: string;
|
|
71556
|
+
colorInfo: string;
|
|
71557
|
+
colorSuccess: string;
|
|
71558
|
+
colorError: string;
|
|
71559
|
+
colorWarning: string;
|
|
71560
|
+
fontSize: string;
|
|
71561
|
+
textColor: string;
|
|
71562
|
+
textColorPrime: string;
|
|
71563
|
+
textColorInfo: string;
|
|
71564
|
+
textColorSuccess: string;
|
|
71565
|
+
textColorError: string;
|
|
71566
|
+
textColorWarning: string;
|
|
71567
|
+
borderColor: string;
|
|
71568
|
+
dotSize: string;
|
|
71569
|
+
}, any>;
|
|
71570
|
+
}>>>;
|
|
71571
|
+
builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"Kanban", {
|
|
71572
|
+
columnWidth: string;
|
|
71573
|
+
columnGap: string;
|
|
71574
|
+
cardGap: string;
|
|
71575
|
+
boardPadding: string;
|
|
71576
|
+
columnHeaderPadding: string;
|
|
71577
|
+
columnBodyPadding: string;
|
|
71578
|
+
columnBackgroundColor: string;
|
|
71579
|
+
columnBorderRadius: string;
|
|
71580
|
+
columnHeaderColor: string;
|
|
71581
|
+
countBackgroundColor: string;
|
|
71582
|
+
countTextColor: string;
|
|
71583
|
+
statusSuccessHeaderColor: string;
|
|
71584
|
+
statusSuccessCountColor: string;
|
|
71585
|
+
statusProgressHeaderColor: string;
|
|
71586
|
+
statusProgressCountColor: string;
|
|
71587
|
+
statusPendingHeaderColor: string;
|
|
71588
|
+
statusPendingCountColor: string;
|
|
71589
|
+
statusErrorHeaderColor: string;
|
|
71590
|
+
statusErrorCountColor: string;
|
|
71591
|
+
columnDraggingOpacity: string;
|
|
71592
|
+
cardBackgroundColor: string;
|
|
71593
|
+
cardBackgroundColorDragging: string;
|
|
71594
|
+
cardBorderColorDragging: string;
|
|
71595
|
+
cardBorderRadius: string;
|
|
71596
|
+
cardPadding: string;
|
|
71597
|
+
cardColor: string;
|
|
71598
|
+
cardSubColor: string;
|
|
71599
|
+
cardBoxShadow: string;
|
|
71600
|
+
cardBoxShadowHover: string;
|
|
71601
|
+
cardBoxShadowDragging: string;
|
|
71602
|
+
dropIndicatorColor: string;
|
|
71603
|
+
maxReachedColor: string;
|
|
71604
|
+
}, {
|
|
71605
|
+
Empty: import("./_mixins").Theme<"Empty", {
|
|
71606
|
+
iconSizeSmall: string;
|
|
71607
|
+
iconSizeMedium: string;
|
|
71608
|
+
iconSizeLarge: string;
|
|
71609
|
+
iconSizeHuge: string;
|
|
71610
|
+
titleFontSizeSmall: string;
|
|
71611
|
+
titleFontSizeMedium: string;
|
|
71612
|
+
titleFontSizeLarge: string;
|
|
71613
|
+
titleFontSizeHuge: string;
|
|
71614
|
+
descriptionFontSizeSmall: string;
|
|
71615
|
+
descriptionFontSizeMedium: string;
|
|
71616
|
+
descriptionFontSizeLarge: string;
|
|
71617
|
+
descriptionFontSizeHuge: string;
|
|
71618
|
+
titleColor: string;
|
|
71619
|
+
descriptionColor: string;
|
|
71620
|
+
iconColor: string;
|
|
71621
|
+
iconBgColor: string;
|
|
71622
|
+
extraTextColor: string;
|
|
71623
|
+
}, any>;
|
|
71624
|
+
Badge: import("./_mixins").Theme<"Badge", {
|
|
71625
|
+
color: string;
|
|
71626
|
+
colorPrime: string;
|
|
71627
|
+
colorInfo: string;
|
|
71628
|
+
colorSuccess: string;
|
|
71629
|
+
colorError: string;
|
|
71630
|
+
colorWarning: string;
|
|
71631
|
+
fontSize: string;
|
|
71632
|
+
textColor: string;
|
|
71633
|
+
textColorPrime: string;
|
|
71634
|
+
textColorInfo: string;
|
|
71635
|
+
textColorSuccess: string;
|
|
71636
|
+
textColorError: string;
|
|
71637
|
+
textColorWarning: string;
|
|
71638
|
+
borderColor: string;
|
|
71639
|
+
dotSize: string;
|
|
71640
|
+
}, any>;
|
|
71641
|
+
}>>>;
|
|
71642
|
+
}>, {
|
|
71643
|
+
selfElRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
71644
|
+
mergedClsPrefix: import("vue").Ref<string, string>;
|
|
71645
|
+
mergedColumns: import("vue").ComputedRef<import("./kanban").KanbanColumn[]>;
|
|
71646
|
+
mergedData: import("vue").ComputedRef<import("./kanban").KanbanItem[]>;
|
|
71647
|
+
columnFieldValue: import("vue").ComputedRef<string>;
|
|
71648
|
+
handleBoardScroll: (event: Event) => void;
|
|
71649
|
+
cssVars: import("vue").ComputedRef<Record<string, string>> | undefined;
|
|
71650
|
+
themeClass: import("vue").Ref<string, string> | undefined;
|
|
71651
|
+
onRender: (() => void) | undefined;
|
|
71652
|
+
}, {}, {}, {}, 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<{
|
|
71653
|
+
columns: {
|
|
71654
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanColumn[]>;
|
|
71655
|
+
readonly default: () => never[];
|
|
71656
|
+
};
|
|
71657
|
+
data: {
|
|
71658
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanItem[]>;
|
|
71659
|
+
readonly default: () => never[];
|
|
71660
|
+
};
|
|
71661
|
+
itemKey: {
|
|
71662
|
+
readonly type: import("vue").PropType<import("./kanban/src/interface").KanbanItemKeyField>;
|
|
71663
|
+
readonly default: "key";
|
|
71664
|
+
};
|
|
71665
|
+
columnField: {
|
|
71666
|
+
readonly type: StringConstructor;
|
|
71667
|
+
readonly default: "column";
|
|
71668
|
+
};
|
|
71669
|
+
orientation: {
|
|
71670
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanOrientation>;
|
|
71671
|
+
readonly default: "horizontal";
|
|
71672
|
+
};
|
|
71673
|
+
draggable: {
|
|
71674
|
+
readonly type: BooleanConstructor;
|
|
71675
|
+
readonly default: true;
|
|
71676
|
+
};
|
|
71677
|
+
columnsDraggable: {
|
|
71678
|
+
readonly type: BooleanConstructor;
|
|
71679
|
+
readonly default: false;
|
|
71680
|
+
};
|
|
71681
|
+
disabled: BooleanConstructor;
|
|
71682
|
+
allowDrop: import("vue").PropType<(ctx: import("./kanban").KanbanMoveContext) => boolean>;
|
|
71683
|
+
scrollMode: {
|
|
71684
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanScrollMode>;
|
|
71685
|
+
readonly default: "board";
|
|
71686
|
+
};
|
|
71687
|
+
scrollThreshold: {
|
|
71688
|
+
readonly type: NumberConstructor;
|
|
71689
|
+
readonly default: 48;
|
|
71690
|
+
};
|
|
71691
|
+
loading: BooleanConstructor;
|
|
71692
|
+
emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
|
|
71693
|
+
columnEmptyText: import("vue").PropType<string | (() => import("vue").VNodeChild)>;
|
|
71694
|
+
columnProps: import("vue").PropType<Record<string, unknown>>;
|
|
71695
|
+
cardProps: import("vue").PropType<Record<string, unknown>>;
|
|
71696
|
+
'onUpdate:data': import("vue").PropType<((data: import("./kanban").KanbanItem[]) => void) | Array<(data: import("./kanban").KanbanItem[]) => void>>;
|
|
71697
|
+
onMove: import("vue").PropType<(ctx: import("./kanban").KanbanMoveContext) => void>;
|
|
71698
|
+
onColumnsReorder: import("vue").PropType<(columns: import("./kanban").KanbanColumn[]) => void>;
|
|
71699
|
+
onDragStart: import("vue").PropType<(ctx: import("./kanban").KanbanDragContext) => void>;
|
|
71700
|
+
onDragEnd: import("vue").PropType<(ctx: import("./kanban").KanbanDragContext) => void>;
|
|
71701
|
+
onItemClick: import("vue").PropType<(item: import("./kanban").KanbanItem, column: import("./kanban").KanbanColumn) => void>;
|
|
71702
|
+
onColumnScrollTop: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71703
|
+
onColumnScrollBottom: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71704
|
+
onScrollTop: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71705
|
+
onScrollBottom: import("vue").PropType<(ctx: import("./kanban").KanbanScrollContext) => void>;
|
|
71706
|
+
theme: import("vue").PropType<import("./_mixins").Theme<"Kanban", {
|
|
71707
|
+
columnWidth: string;
|
|
71708
|
+
columnGap: string;
|
|
71709
|
+
cardGap: string;
|
|
71710
|
+
boardPadding: string;
|
|
71711
|
+
columnHeaderPadding: string;
|
|
71712
|
+
columnBodyPadding: string;
|
|
71713
|
+
columnBackgroundColor: string;
|
|
71714
|
+
columnBorderRadius: string;
|
|
71715
|
+
columnHeaderColor: string;
|
|
71716
|
+
countBackgroundColor: string;
|
|
71717
|
+
countTextColor: string;
|
|
71718
|
+
statusSuccessHeaderColor: string;
|
|
71719
|
+
statusSuccessCountColor: string;
|
|
71720
|
+
statusProgressHeaderColor: string;
|
|
71721
|
+
statusProgressCountColor: string;
|
|
71722
|
+
statusPendingHeaderColor: string;
|
|
71723
|
+
statusPendingCountColor: string;
|
|
71724
|
+
statusErrorHeaderColor: string;
|
|
71725
|
+
statusErrorCountColor: string;
|
|
71726
|
+
columnDraggingOpacity: string;
|
|
71727
|
+
cardBackgroundColor: string;
|
|
71728
|
+
cardBackgroundColorDragging: string;
|
|
71729
|
+
cardBorderColorDragging: string;
|
|
71730
|
+
cardBorderRadius: string;
|
|
71731
|
+
cardPadding: string;
|
|
71732
|
+
cardColor: string;
|
|
71733
|
+
cardSubColor: string;
|
|
71734
|
+
cardBoxShadow: string;
|
|
71735
|
+
cardBoxShadowHover: string;
|
|
71736
|
+
cardBoxShadowDragging: string;
|
|
71737
|
+
dropIndicatorColor: string;
|
|
71738
|
+
maxReachedColor: string;
|
|
71739
|
+
}, {
|
|
71740
|
+
Empty: import("./_mixins").Theme<"Empty", {
|
|
71741
|
+
iconSizeSmall: string;
|
|
71742
|
+
iconSizeMedium: string;
|
|
71743
|
+
iconSizeLarge: string;
|
|
71744
|
+
iconSizeHuge: string;
|
|
71745
|
+
titleFontSizeSmall: string;
|
|
71746
|
+
titleFontSizeMedium: string;
|
|
71747
|
+
titleFontSizeLarge: string;
|
|
71748
|
+
titleFontSizeHuge: string;
|
|
71749
|
+
descriptionFontSizeSmall: string;
|
|
71750
|
+
descriptionFontSizeMedium: string;
|
|
71751
|
+
descriptionFontSizeLarge: string;
|
|
71752
|
+
descriptionFontSizeHuge: string;
|
|
71753
|
+
titleColor: string;
|
|
71754
|
+
descriptionColor: string;
|
|
71755
|
+
iconColor: string;
|
|
71756
|
+
iconBgColor: string;
|
|
71757
|
+
extraTextColor: string;
|
|
71758
|
+
}, any>;
|
|
71759
|
+
Badge: import("./_mixins").Theme<"Badge", {
|
|
71760
|
+
color: string;
|
|
71761
|
+
colorPrime: string;
|
|
71762
|
+
colorInfo: string;
|
|
71763
|
+
colorSuccess: string;
|
|
71764
|
+
colorError: string;
|
|
71765
|
+
colorWarning: string;
|
|
71766
|
+
fontSize: string;
|
|
71767
|
+
textColor: string;
|
|
71768
|
+
textColorPrime: string;
|
|
71769
|
+
textColorInfo: string;
|
|
71770
|
+
textColorSuccess: string;
|
|
71771
|
+
textColorError: string;
|
|
71772
|
+
textColorWarning: string;
|
|
71773
|
+
borderColor: string;
|
|
71774
|
+
dotSize: string;
|
|
71775
|
+
}, any>;
|
|
71776
|
+
}>>;
|
|
71777
|
+
themeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"Kanban", {
|
|
71778
|
+
columnWidth: string;
|
|
71779
|
+
columnGap: string;
|
|
71780
|
+
cardGap: string;
|
|
71781
|
+
boardPadding: string;
|
|
71782
|
+
columnHeaderPadding: string;
|
|
71783
|
+
columnBodyPadding: string;
|
|
71784
|
+
columnBackgroundColor: string;
|
|
71785
|
+
columnBorderRadius: string;
|
|
71786
|
+
columnHeaderColor: string;
|
|
71787
|
+
countBackgroundColor: string;
|
|
71788
|
+
countTextColor: string;
|
|
71789
|
+
statusSuccessHeaderColor: string;
|
|
71790
|
+
statusSuccessCountColor: string;
|
|
71791
|
+
statusProgressHeaderColor: string;
|
|
71792
|
+
statusProgressCountColor: string;
|
|
71793
|
+
statusPendingHeaderColor: string;
|
|
71794
|
+
statusPendingCountColor: string;
|
|
71795
|
+
statusErrorHeaderColor: string;
|
|
71796
|
+
statusErrorCountColor: string;
|
|
71797
|
+
columnDraggingOpacity: string;
|
|
71798
|
+
cardBackgroundColor: string;
|
|
71799
|
+
cardBackgroundColorDragging: string;
|
|
71800
|
+
cardBorderColorDragging: string;
|
|
71801
|
+
cardBorderRadius: string;
|
|
71802
|
+
cardPadding: string;
|
|
71803
|
+
cardColor: string;
|
|
71804
|
+
cardSubColor: string;
|
|
71805
|
+
cardBoxShadow: string;
|
|
71806
|
+
cardBoxShadowHover: string;
|
|
71807
|
+
cardBoxShadowDragging: string;
|
|
71808
|
+
dropIndicatorColor: string;
|
|
71809
|
+
maxReachedColor: string;
|
|
71810
|
+
}, {
|
|
71811
|
+
Empty: import("./_mixins").Theme<"Empty", {
|
|
71812
|
+
iconSizeSmall: string;
|
|
71813
|
+
iconSizeMedium: string;
|
|
71814
|
+
iconSizeLarge: string;
|
|
71815
|
+
iconSizeHuge: string;
|
|
71816
|
+
titleFontSizeSmall: string;
|
|
71817
|
+
titleFontSizeMedium: string;
|
|
71818
|
+
titleFontSizeLarge: string;
|
|
71819
|
+
titleFontSizeHuge: string;
|
|
71820
|
+
descriptionFontSizeSmall: string;
|
|
71821
|
+
descriptionFontSizeMedium: string;
|
|
71822
|
+
descriptionFontSizeLarge: string;
|
|
71823
|
+
descriptionFontSizeHuge: string;
|
|
71824
|
+
titleColor: string;
|
|
71825
|
+
descriptionColor: string;
|
|
71826
|
+
iconColor: string;
|
|
71827
|
+
iconBgColor: string;
|
|
71828
|
+
extraTextColor: string;
|
|
71829
|
+
}, any>;
|
|
71830
|
+
Badge: import("./_mixins").Theme<"Badge", {
|
|
71831
|
+
color: string;
|
|
71832
|
+
colorPrime: string;
|
|
71833
|
+
colorInfo: string;
|
|
71834
|
+
colorSuccess: string;
|
|
71835
|
+
colorError: string;
|
|
71836
|
+
colorWarning: string;
|
|
71837
|
+
fontSize: string;
|
|
71838
|
+
textColor: string;
|
|
71839
|
+
textColorPrime: string;
|
|
71840
|
+
textColorInfo: string;
|
|
71841
|
+
textColorSuccess: string;
|
|
71842
|
+
textColorError: string;
|
|
71843
|
+
textColorWarning: string;
|
|
71844
|
+
borderColor: string;
|
|
71845
|
+
dotSize: string;
|
|
71846
|
+
}, any>;
|
|
71847
|
+
}>>>;
|
|
71848
|
+
builtinThemeOverrides: import("vue").PropType<import("./_mixins/use-theme").ExtractThemeOverrides<import("./_mixins").Theme<"Kanban", {
|
|
71849
|
+
columnWidth: string;
|
|
71850
|
+
columnGap: string;
|
|
71851
|
+
cardGap: string;
|
|
71852
|
+
boardPadding: string;
|
|
71853
|
+
columnHeaderPadding: string;
|
|
71854
|
+
columnBodyPadding: string;
|
|
71855
|
+
columnBackgroundColor: string;
|
|
71856
|
+
columnBorderRadius: string;
|
|
71857
|
+
columnHeaderColor: string;
|
|
71858
|
+
countBackgroundColor: string;
|
|
71859
|
+
countTextColor: string;
|
|
71860
|
+
statusSuccessHeaderColor: string;
|
|
71861
|
+
statusSuccessCountColor: string;
|
|
71862
|
+
statusProgressHeaderColor: string;
|
|
71863
|
+
statusProgressCountColor: string;
|
|
71864
|
+
statusPendingHeaderColor: string;
|
|
71865
|
+
statusPendingCountColor: string;
|
|
71866
|
+
statusErrorHeaderColor: string;
|
|
71867
|
+
statusErrorCountColor: string;
|
|
71868
|
+
columnDraggingOpacity: string;
|
|
71869
|
+
cardBackgroundColor: string;
|
|
71870
|
+
cardBackgroundColorDragging: string;
|
|
71871
|
+
cardBorderColorDragging: string;
|
|
71872
|
+
cardBorderRadius: string;
|
|
71873
|
+
cardPadding: string;
|
|
71874
|
+
cardColor: string;
|
|
71875
|
+
cardSubColor: string;
|
|
71876
|
+
cardBoxShadow: string;
|
|
71877
|
+
cardBoxShadowHover: string;
|
|
71878
|
+
cardBoxShadowDragging: string;
|
|
71879
|
+
dropIndicatorColor: string;
|
|
71880
|
+
maxReachedColor: string;
|
|
71881
|
+
}, {
|
|
71882
|
+
Empty: import("./_mixins").Theme<"Empty", {
|
|
71883
|
+
iconSizeSmall: string;
|
|
71884
|
+
iconSizeMedium: string;
|
|
71885
|
+
iconSizeLarge: string;
|
|
71886
|
+
iconSizeHuge: string;
|
|
71887
|
+
titleFontSizeSmall: string;
|
|
71888
|
+
titleFontSizeMedium: string;
|
|
71889
|
+
titleFontSizeLarge: string;
|
|
71890
|
+
titleFontSizeHuge: string;
|
|
71891
|
+
descriptionFontSizeSmall: string;
|
|
71892
|
+
descriptionFontSizeMedium: string;
|
|
71893
|
+
descriptionFontSizeLarge: string;
|
|
71894
|
+
descriptionFontSizeHuge: string;
|
|
71895
|
+
titleColor: string;
|
|
71896
|
+
descriptionColor: string;
|
|
71897
|
+
iconColor: string;
|
|
71898
|
+
iconBgColor: string;
|
|
71899
|
+
extraTextColor: string;
|
|
71900
|
+
}, any>;
|
|
71901
|
+
Badge: import("./_mixins").Theme<"Badge", {
|
|
71902
|
+
color: string;
|
|
71903
|
+
colorPrime: string;
|
|
71904
|
+
colorInfo: string;
|
|
71905
|
+
colorSuccess: string;
|
|
71906
|
+
colorError: string;
|
|
71907
|
+
colorWarning: string;
|
|
71908
|
+
fontSize: string;
|
|
71909
|
+
textColor: string;
|
|
71910
|
+
textColorPrime: string;
|
|
71911
|
+
textColorInfo: string;
|
|
71912
|
+
textColorSuccess: string;
|
|
71913
|
+
textColorError: string;
|
|
71914
|
+
textColorWarning: string;
|
|
71915
|
+
borderColor: string;
|
|
71916
|
+
dotSize: string;
|
|
71917
|
+
}, any>;
|
|
71918
|
+
}>>>;
|
|
71919
|
+
}>> & Readonly<{
|
|
71920
|
+
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
|
|
71921
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
71922
|
+
"onColumns-reorder"?: ((...args: any[]) => any) | undefined;
|
|
71923
|
+
"onDrag-start"?: ((...args: any[]) => any) | undefined;
|
|
71924
|
+
"onDrag-end"?: ((...args: any[]) => any) | undefined;
|
|
71925
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
71926
|
+
"onColumn-scroll-top"?: ((...args: any[]) => any) | undefined;
|
|
71927
|
+
"onColumn-scroll-bottom"?: ((...args: any[]) => any) | undefined;
|
|
71928
|
+
"onScroll-top"?: ((...args: any[]) => any) | undefined;
|
|
71929
|
+
"onScroll-bottom"?: ((...args: any[]) => any) | undefined;
|
|
71930
|
+
}>, {
|
|
71931
|
+
disabled: boolean;
|
|
71932
|
+
data: import("./kanban").KanbanItem[];
|
|
71933
|
+
loading: boolean;
|
|
71934
|
+
columns: import("./kanban").KanbanColumn[];
|
|
71935
|
+
itemKey: import("./kanban/src/interface").KanbanItemKeyField;
|
|
71936
|
+
columnField: string;
|
|
71937
|
+
orientation: import("./kanban").KanbanOrientation;
|
|
71938
|
+
draggable: boolean;
|
|
71939
|
+
columnsDraggable: boolean;
|
|
71940
|
+
scrollMode: import("./kanban").KanbanScrollMode;
|
|
71941
|
+
scrollThreshold: number;
|
|
71942
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
71943
|
+
export declare const UKanbanCard: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
71944
|
+
readonly item: {
|
|
71945
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanItem>;
|
|
71946
|
+
readonly required: true;
|
|
71947
|
+
};
|
|
71948
|
+
readonly column: {
|
|
71949
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanColumn>;
|
|
71950
|
+
readonly required: true;
|
|
71951
|
+
};
|
|
71952
|
+
readonly index: {
|
|
71953
|
+
readonly type: NumberConstructor;
|
|
71954
|
+
readonly default: 0;
|
|
71955
|
+
};
|
|
71956
|
+
readonly ghost: BooleanConstructor;
|
|
71957
|
+
}>, {
|
|
71958
|
+
injection: import("./kanban/src/injection").KanbanInjection;
|
|
71959
|
+
mergedClsPrefix: import("vue").Ref<string, string>;
|
|
71960
|
+
draggable: import("vue").ComputedRef<boolean>;
|
|
71961
|
+
dragging: import("vue").ComputedRef<boolean>;
|
|
71962
|
+
clickable: import("vue").ComputedRef<boolean>;
|
|
71963
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
71964
|
+
readonly item: {
|
|
71965
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanItem>;
|
|
71966
|
+
readonly required: true;
|
|
71967
|
+
};
|
|
71968
|
+
readonly column: {
|
|
71969
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanColumn>;
|
|
71970
|
+
readonly required: true;
|
|
71971
|
+
};
|
|
71972
|
+
readonly index: {
|
|
71973
|
+
readonly type: NumberConstructor;
|
|
71974
|
+
readonly default: 0;
|
|
71975
|
+
};
|
|
71976
|
+
readonly ghost: BooleanConstructor;
|
|
71977
|
+
}>> & Readonly<{}>, {
|
|
71978
|
+
readonly ghost: boolean;
|
|
71979
|
+
readonly index: number;
|
|
71980
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
71981
|
+
export declare const UKanbanColumn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
71982
|
+
readonly column: {
|
|
71983
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanColumn>;
|
|
71984
|
+
readonly required: true;
|
|
71985
|
+
};
|
|
71986
|
+
readonly items: {
|
|
71987
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanItem[]>;
|
|
71988
|
+
readonly default: () => never[];
|
|
71989
|
+
};
|
|
71990
|
+
readonly index: {
|
|
71991
|
+
readonly type: NumberConstructor;
|
|
71992
|
+
readonly default: 0;
|
|
71993
|
+
};
|
|
71994
|
+
}>, {
|
|
71995
|
+
injection: import("./kanban/src/injection").KanbanInjection;
|
|
71996
|
+
mergedClsPrefix: import("vue").Ref<string, string>;
|
|
71997
|
+
columnDraggable: import("vue").ComputedRef<boolean>;
|
|
71998
|
+
dragging: import("vue").ComputedRef<boolean>;
|
|
71999
|
+
columnDropPosition: import("vue").ComputedRef<import("./kanban").KanbanDropPosition | null>;
|
|
72000
|
+
vertical: import("vue").ComputedRef<boolean>;
|
|
72001
|
+
boardScroll: import("vue").ComputedRef<boolean>;
|
|
72002
|
+
maxReached: import("vue").ComputedRef<boolean>;
|
|
72003
|
+
columnStyle: import("vue").ComputedRef<import("vue").CSSProperties | undefined>;
|
|
72004
|
+
countStyle: import("vue").ComputedRef<import("vue").CSSProperties | undefined>;
|
|
72005
|
+
handleBodyScroll: (event: Event) => void;
|
|
72006
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
72007
|
+
readonly column: {
|
|
72008
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanColumn>;
|
|
72009
|
+
readonly required: true;
|
|
72010
|
+
};
|
|
72011
|
+
readonly items: {
|
|
72012
|
+
readonly type: import("vue").PropType<import("./kanban").KanbanItem[]>;
|
|
72013
|
+
readonly default: () => never[];
|
|
72014
|
+
};
|
|
72015
|
+
readonly index: {
|
|
72016
|
+
readonly type: NumberConstructor;
|
|
72017
|
+
readonly default: 0;
|
|
72018
|
+
};
|
|
72019
|
+
}>> & Readonly<{}>, {
|
|
72020
|
+
readonly items: import("./kanban").KanbanItem[];
|
|
72021
|
+
readonly index: number;
|
|
72022
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
71373
72023
|
export type * from './layout';
|
|
71374
72024
|
export { layoutContentProps, layoutFooterProps, layoutHeaderProps, layoutProps, layoutSiderProps } from './layout';
|
|
71375
72025
|
export declare const ULayout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -107466,6 +108116,7 @@ export declare const UTree: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
107466
108116
|
readonly internalScrollable: boolean;
|
|
107467
108117
|
readonly keyboard: boolean;
|
|
107468
108118
|
readonly draggable: boolean;
|
|
108119
|
+
readonly allowDrop: import("./tree/src/interface").AllowDrop;
|
|
107469
108120
|
readonly allowCheckingNotLoaded: boolean;
|
|
107470
108121
|
readonly multiple: boolean;
|
|
107471
108122
|
readonly disabledField: string;
|
|
@@ -107497,7 +108148,6 @@ export declare const UTree: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
107497
108148
|
readonly blockLine: boolean;
|
|
107498
108149
|
readonly showLine: boolean;
|
|
107499
108150
|
readonly selectable: boolean;
|
|
107500
|
-
readonly allowDrop: import("./tree/src/interface").AllowDrop;
|
|
107501
108151
|
readonly ellipsis: boolean;
|
|
107502
108152
|
readonly checkboxPlacement: "left" | "right";
|
|
107503
108153
|
}, import("vue").SlotsType<import("./tree").TreeSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|