@uzum-tech/ui 2.0.9 → 2.1.1
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 +1791 -466
- package/dist/index.mjs +1786 -467
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/button/src/Button.d.ts +13 -0
- package/es/button/src/Button.mjs +5 -0
- package/es/carousel/src/Carousel.d.ts +1 -1
- package/es/components.d.ts +665 -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/dialog/src/DialogProvider.d.ts +4 -0
- package/es/header/src/mobile/HeaderMobile.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/button/src/Button.d.ts +13 -0
- package/lib/button/src/Button.js +5 -0
- package/lib/carousel/src/Carousel.d.ts +1 -1
- package/lib/components.d.ts +665 -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/dialog/src/DialogProvider.d.ts +4 -0
- package/lib/header/src/mobile/HeaderMobile.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 +6 -2
- package/volar.d.ts +3 -0
- package/web-types.json +181 -1
package/es/components.mjs
CHANGED
|
@@ -57,6 +57,7 @@ import { UInfiniteScroll as _UInfiniteScroll } from "./infinite-scroll/index.mjs
|
|
|
57
57
|
import { UInput as _UInput, UInputGroup as _UInputGroup, UInputGroupLabel as _UInputGroupLabel } from "./input/index.mjs";
|
|
58
58
|
import { UInputNumber as _UInputNumber } from "./input-number/index.mjs";
|
|
59
59
|
import { UInputOtp as _UInputOtp } from "./input-otp/index.mjs";
|
|
60
|
+
import { UKanban as _UKanban, UKanbanCard as _UKanbanCard, UKanbanColumn as _UKanbanColumn } from "./kanban/index.mjs";
|
|
60
61
|
import { ULayout as _ULayout, ULayoutContent as _ULayoutContent, ULayoutFooter as _ULayoutFooter, ULayoutHeader as _ULayoutHeader, ULayoutSider as _ULayoutSider } from "./layout/index.mjs";
|
|
61
62
|
import { UCol as _UCol, URow as _URow } from "./legacy-grid/index.mjs";
|
|
62
63
|
import { ULegacyTransfer as _ULegacyTransfer } from "./legacy-transfer/index.mjs";
|
|
@@ -257,6 +258,10 @@ export { inputNumberProps } from "./input-number/index.mjs";
|
|
|
257
258
|
export const UInputNumber = wrap(_UInputNumber);
|
|
258
259
|
export { inputOtpProps } from "./input-otp/index.mjs";
|
|
259
260
|
export const UInputOtp = wrap(_UInputOtp);
|
|
261
|
+
export { kanbanDark, kanbanLight, kanbanProps } from "./kanban/index.mjs";
|
|
262
|
+
export const UKanban = wrap(_UKanban);
|
|
263
|
+
export const UKanbanCard = wrap(_UKanbanCard);
|
|
264
|
+
export const UKanbanColumn = wrap(_UKanbanColumn);
|
|
260
265
|
export { layoutContentProps, layoutFooterProps, layoutHeaderProps, layoutProps, layoutSiderProps } from "./layout/index.mjs";
|
|
261
266
|
export const ULayout = wrap(_ULayout);
|
|
262
267
|
export const ULayoutContent = wrap(_ULayoutContent);
|
|
@@ -53,7 +53,7 @@ import type { CollapseTransitionTheme } from '../../collapse-transition/styles';
|
|
|
53
53
|
import type { CollapseTheme } from '../../collapse/styles';
|
|
54
54
|
import type { ColorPickerProps } from '../../color-picker';
|
|
55
55
|
import type { ColorPickerTheme } from '../../color-picker/styles';
|
|
56
|
-
import type { DatePickerV2Props, DatePickerV2Theme, MappingCardProps, MappingCardTheme } from '../../components';
|
|
56
|
+
import type { DatePickerV2Props, DatePickerV2Theme, KanbanProps, KanbanTheme, MappingCardProps, MappingCardTheme } from '../../components';
|
|
57
57
|
import type { CropTheme } from '../../crop/styles';
|
|
58
58
|
import type { DataTableProps, DataTableRenderFilter, DataTableRenderSorter } from '../../data-table';
|
|
59
59
|
import type { DataTableTheme } from '../../data-table/styles';
|
|
@@ -211,6 +211,7 @@ export interface GlobalThemeWithoutCommon {
|
|
|
211
211
|
Calendar?: CalendarTheme;
|
|
212
212
|
ActionCard?: ActionCardTheme;
|
|
213
213
|
MappingCard?: MappingCardTheme;
|
|
214
|
+
Kanban?: KanbanTheme;
|
|
214
215
|
Card?: CardTheme;
|
|
215
216
|
Carousel?: CarouselTheme;
|
|
216
217
|
Cascader?: CascaderTheme;
|
|
@@ -318,6 +319,7 @@ export interface GlobalComponentConfig {
|
|
|
318
319
|
Calendar?: CalendarProps;
|
|
319
320
|
ActionCard?: ActionCardProps;
|
|
320
321
|
MappingCard?: MappingCardProps;
|
|
322
|
+
Kanban?: KanbanProps;
|
|
321
323
|
Card?: CardProps;
|
|
322
324
|
Carousel?: CarouselProps;
|
|
323
325
|
Cascader?: CascaderProps;
|
|
@@ -7487,13 +7487,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7487
7487
|
readonly loading: boolean;
|
|
7488
7488
|
readonly loadingSkeleton: boolean;
|
|
7489
7489
|
readonly spinProps: import("../../_internal").BaseLoadingExposedProps;
|
|
7490
|
+
readonly columns: import("./interface").TableColumns<any>;
|
|
7490
7491
|
readonly allowCheckingNotLoaded: boolean;
|
|
7491
7492
|
readonly remote: boolean;
|
|
7492
7493
|
readonly cascade: boolean;
|
|
7493
7494
|
readonly virtualScroll: boolean;
|
|
7494
7495
|
readonly pagination: false | import("../..").PaginationProps;
|
|
7495
7496
|
readonly paginateSinglePage: boolean;
|
|
7496
|
-
readonly columns: import("./interface").TableColumns<any>;
|
|
7497
7497
|
readonly bottomBordered: boolean | undefined;
|
|
7498
7498
|
readonly striped: boolean;
|
|
7499
7499
|
readonly defaultCheckedRowKeys: RowKey[];
|
|
@@ -434,7 +434,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
434
434
|
readonly labelPlacement: "left" | "top";
|
|
435
435
|
readonly separator: string;
|
|
436
436
|
readonly loadingSkeleton: boolean;
|
|
437
|
-
readonly skeletonProps: SkeletonProps;
|
|
438
437
|
readonly column: number;
|
|
438
|
+
readonly skeletonProps: SkeletonProps;
|
|
439
439
|
}, SlotsType<DescriptionsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
440
440
|
export default _default;
|
|
@@ -438,6 +438,7 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
|
|
|
438
438
|
iconPlacement?: "left" | "right" | undefined;
|
|
439
439
|
attrType?: "submit" | "button" | "reset" | undefined;
|
|
440
440
|
nativeFocusBehavior?: boolean | undefined;
|
|
441
|
+
visible?: boolean | undefined;
|
|
441
442
|
} | undefined;
|
|
442
443
|
negativeButtonProps?: {
|
|
443
444
|
bordered?: boolean | undefined;
|
|
@@ -815,6 +816,7 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
|
|
|
815
816
|
iconPlacement?: "left" | "right" | undefined;
|
|
816
817
|
attrType?: "submit" | "button" | "reset" | undefined;
|
|
817
818
|
nativeFocusBehavior?: boolean | undefined;
|
|
819
|
+
visible?: boolean | undefined;
|
|
818
820
|
} | undefined;
|
|
819
821
|
action?: (() => import("vue").VNodeChild) | undefined;
|
|
820
822
|
onPositiveClick?: ((e: MouseEvent) => Promise<unknown> | unknown) | undefined;
|
|
@@ -1225,6 +1227,7 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
|
|
|
1225
1227
|
iconPlacement?: "left" | "right" | undefined;
|
|
1226
1228
|
attrType?: "submit" | "button" | "reset" | undefined;
|
|
1227
1229
|
nativeFocusBehavior?: boolean | undefined;
|
|
1230
|
+
visible?: boolean | undefined;
|
|
1228
1231
|
} | undefined;
|
|
1229
1232
|
negativeButtonProps?: {
|
|
1230
1233
|
bordered?: boolean | undefined;
|
|
@@ -1602,6 +1605,7 @@ export declare const UDialogProvider: import("vue").DefineComponent<ExtractPropT
|
|
|
1602
1605
|
iconPlacement?: "left" | "right" | undefined;
|
|
1603
1606
|
attrType?: "submit" | "button" | "reset" | undefined;
|
|
1604
1607
|
nativeFocusBehavior?: boolean | undefined;
|
|
1608
|
+
visible?: boolean | undefined;
|
|
1605
1609
|
} | undefined;
|
|
1606
1610
|
action?: (() => import("vue").VNodeChild) | undefined;
|
|
1607
1611
|
onPositiveClick?: ((e: MouseEvent) => Promise<unknown> | unknown) | undefined;
|
|
@@ -207,8 +207,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
207
207
|
}>> & Readonly<{}>, {
|
|
208
208
|
readonly primaryActionText: string;
|
|
209
209
|
readonly secondaryActionText: string;
|
|
210
|
-
readonly menuOptions: NormalizedMenuItem[];
|
|
211
210
|
readonly visible: boolean;
|
|
211
|
+
readonly menuOptions: NormalizedMenuItem[];
|
|
212
212
|
readonly menuType: "drawer" | "dropdown";
|
|
213
213
|
readonly drawerPlacement: "left" | "right";
|
|
214
214
|
readonly drawerWidth: string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type { KanbanCardProps, KanbanCardSlotProps, KanbanColumn, KanbanColumnEmptySlotProps, KanbanColumnFooterSlotProps, KanbanColumnHeaderSlotProps, KanbanColumnProps, KanbanColumnSlotProps, KanbanColumnStatus, KanbanDragContext, KanbanDropPosition, KanbanInstance, KanbanItem, KanbanKey, KanbanMoveContext, KanbanMoveLocation, KanbanMoveTarget, KanbanOrientation, KanbanProps, KanbanScrollContext, KanbanScrollMode, KanbanSlots } from './src/interface';
|
|
2
|
+
export { kanbanProps } from './src/interface';
|
|
3
|
+
export { default as UKanban } from './src/Kanban';
|
|
4
|
+
export { default as UKanbanCard } from './src/KanbanCard';
|
|
5
|
+
export { default as UKanbanColumn } from './src/KanbanColumn';
|
|
6
|
+
export { kanbanDark, kanbanLight } from './styles';
|
|
7
|
+
export type { KanbanTheme, KanbanThemeVars } from './styles';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { kanbanProps } from "./src/interface.mjs";
|
|
2
|
+
export { default as UKanban } from "./src/Kanban.mjs";
|
|
3
|
+
export { default as UKanbanCard } from "./src/KanbanCard.mjs";
|
|
4
|
+
export { default as UKanbanColumn } from "./src/KanbanColumn.mjs";
|
|
5
|
+
export { kanbanDark, kanbanLight } from "./styles/index.mjs";
|