@namba_one/ui-kit-2 1.0.250 → 1.0.252
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.d.ts +149 -0
- package/dist/index.es.js +10257 -9982
- package/dist/index.umd.js +25 -25
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -574,6 +574,8 @@ declare type __VLS_Props_32 = FilterGroup_DateProps;
|
|
|
574
574
|
|
|
575
575
|
declare type __VLS_Props_33 = FilterGroup_SingleSelectProps;
|
|
576
576
|
|
|
577
|
+
declare type __VLS_Props_34 = FilterGroup_ColumnSettingsProps;
|
|
578
|
+
|
|
577
579
|
declare type __VLS_Props_4 = DropzoneProps;
|
|
578
580
|
|
|
579
581
|
declare type __VLS_Props_5 = InputProps;
|
|
@@ -675,6 +677,10 @@ declare type __VLS_PublicProps_28 = {
|
|
|
675
677
|
'value': FilterGroup_SingleSelectValue;
|
|
676
678
|
} & __VLS_Props_33;
|
|
677
679
|
|
|
680
|
+
declare type __VLS_PublicProps_29 = {
|
|
681
|
+
'value': FilterGroup_ColumnSettingsValue;
|
|
682
|
+
} & __VLS_Props_34;
|
|
683
|
+
|
|
678
684
|
declare type __VLS_PublicProps_3 = {
|
|
679
685
|
'value': DropzoneProps['value'];
|
|
680
686
|
'isError'?: DropzoneProps['isError'];
|
|
@@ -2441,6 +2447,149 @@ export declare type FilterGroup_CheckboxListProps = {
|
|
|
2441
2447
|
withHeader?: boolean;
|
|
2442
2448
|
};
|
|
2443
2449
|
|
|
2450
|
+
export declare const FilterGroup_ColumnSettings: DefineComponent<__VLS_PublicProps_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2451
|
+
"update:value": (value: FilterGroup_ColumnSettingsValue) => any;
|
|
2452
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_29> & Readonly<{
|
|
2453
|
+
"onUpdate:value"?: ((value: FilterGroup_ColumnSettingsValue) => any) | undefined;
|
|
2454
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2455
|
+
filterGroupColumnSettingsRef: ({
|
|
2456
|
+
$: ComponentInternalInstance;
|
|
2457
|
+
$data: {};
|
|
2458
|
+
$props: {
|
|
2459
|
+
readonly hasCloseButton?: boolean | undefined;
|
|
2460
|
+
readonly onClose?: (() => any) | undefined;
|
|
2461
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
2462
|
+
$attrs: {
|
|
2463
|
+
[x: string]: unknown;
|
|
2464
|
+
};
|
|
2465
|
+
$refs: {
|
|
2466
|
+
[x: string]: unknown;
|
|
2467
|
+
} & {
|
|
2468
|
+
visibleArea: ({
|
|
2469
|
+
$: ComponentInternalInstance;
|
|
2470
|
+
$data: {};
|
|
2471
|
+
$props: {
|
|
2472
|
+
readonly isShowOverlay?: boolean | undefined;
|
|
2473
|
+
readonly onClose?: (() => any) | undefined;
|
|
2474
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
2475
|
+
$attrs: {
|
|
2476
|
+
[x: string]: unknown;
|
|
2477
|
+
};
|
|
2478
|
+
$refs: {
|
|
2479
|
+
[x: string]: unknown;
|
|
2480
|
+
};
|
|
2481
|
+
$slots: Readonly<{
|
|
2482
|
+
[name: string]: Slot<any> | undefined;
|
|
2483
|
+
}>;
|
|
2484
|
+
$root: ComponentPublicInstance | null;
|
|
2485
|
+
$parent: ComponentPublicInstance | null;
|
|
2486
|
+
$host: Element | null;
|
|
2487
|
+
$emit: (event: "close") => void;
|
|
2488
|
+
$el: any;
|
|
2489
|
+
$options: ComponentOptionsBase<Readonly<DynamicVisibleAreaProps> & Readonly<{
|
|
2490
|
+
onClose?: (() => any) | undefined;
|
|
2491
|
+
}>, {
|
|
2492
|
+
close: () => void;
|
|
2493
|
+
toggle: () => void;
|
|
2494
|
+
open: () => void;
|
|
2495
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2496
|
+
close: () => any;
|
|
2497
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
2498
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2499
|
+
created?: (() => void) | (() => void)[];
|
|
2500
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2501
|
+
mounted?: (() => void) | (() => void)[];
|
|
2502
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2503
|
+
updated?: (() => void) | (() => void)[];
|
|
2504
|
+
activated?: (() => void) | (() => void)[];
|
|
2505
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2506
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2507
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2508
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2509
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2510
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
2511
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
2512
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2513
|
+
};
|
|
2514
|
+
$forceUpdate: () => void;
|
|
2515
|
+
$nextTick: nextTick;
|
|
2516
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
2517
|
+
} & Readonly<{}> & Omit<Readonly<DynamicVisibleAreaProps> & Readonly<{
|
|
2518
|
+
onClose?: (() => any) | undefined;
|
|
2519
|
+
}>, "close" | "toggle" | "open"> & ShallowUnwrapRef< {
|
|
2520
|
+
close: () => void;
|
|
2521
|
+
toggle: () => void;
|
|
2522
|
+
open: () => void;
|
|
2523
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
2524
|
+
$slots: {
|
|
2525
|
+
default?(_: {}): any;
|
|
2526
|
+
};
|
|
2527
|
+
}) | null;
|
|
2528
|
+
};
|
|
2529
|
+
$slots: Readonly<{
|
|
2530
|
+
[name: string]: Slot<any> | undefined;
|
|
2531
|
+
}>;
|
|
2532
|
+
$root: ComponentPublicInstance | null;
|
|
2533
|
+
$parent: ComponentPublicInstance | null;
|
|
2534
|
+
$host: Element | null;
|
|
2535
|
+
$emit: (event: "close") => void;
|
|
2536
|
+
$el: any;
|
|
2537
|
+
$options: ComponentOptionsBase<Readonly<{
|
|
2538
|
+
hasCloseButton?: boolean;
|
|
2539
|
+
}> & Readonly<{
|
|
2540
|
+
onClose?: (() => any) | undefined;
|
|
2541
|
+
}>, {
|
|
2542
|
+
open: () => void | undefined;
|
|
2543
|
+
close: () => void;
|
|
2544
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2545
|
+
close: () => any;
|
|
2546
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
2547
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2548
|
+
created?: (() => void) | (() => void)[];
|
|
2549
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2550
|
+
mounted?: (() => void) | (() => void)[];
|
|
2551
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2552
|
+
updated?: (() => void) | (() => void)[];
|
|
2553
|
+
activated?: (() => void) | (() => void)[];
|
|
2554
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2555
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2556
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2557
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2558
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2559
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
2560
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
2561
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2562
|
+
};
|
|
2563
|
+
$forceUpdate: () => void;
|
|
2564
|
+
$nextTick: nextTick;
|
|
2565
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
2566
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
2567
|
+
hasCloseButton?: boolean;
|
|
2568
|
+
}> & Readonly<{
|
|
2569
|
+
onClose?: (() => any) | undefined;
|
|
2570
|
+
}>, "close" | "open"> & ShallowUnwrapRef< {
|
|
2571
|
+
open: () => void | undefined;
|
|
2572
|
+
close: () => void;
|
|
2573
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
2574
|
+
$slots: {
|
|
2575
|
+
default?(_: {}): any;
|
|
2576
|
+
};
|
|
2577
|
+
}) | null;
|
|
2578
|
+
}, HTMLDivElement>;
|
|
2579
|
+
|
|
2580
|
+
export declare type FilterGroup_ColumnSettingsProps = {
|
|
2581
|
+
title?: string;
|
|
2582
|
+
description?: string;
|
|
2583
|
+
saveAction: (v: FilterGroup_ColumnSettingsValue) => Promise<void>;
|
|
2584
|
+
};
|
|
2585
|
+
|
|
2586
|
+
export declare type FilterGroup_ColumnSettingsValue = {
|
|
2587
|
+
id: string | number;
|
|
2588
|
+
title: string;
|
|
2589
|
+
isVisible: boolean;
|
|
2590
|
+
isLocked: boolean;
|
|
2591
|
+
}[];
|
|
2592
|
+
|
|
2444
2593
|
export declare const FilterGroup_Date: DefineComponent<__VLS_PublicProps_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2445
2594
|
"update:value": (value: FilterGroup_DateValue) => any;
|
|
2446
2595
|
}, string, PublicProps, Readonly<__VLS_PublicProps_27> & Readonly<{
|