@ironsource/shared-ui 2.1.1 → 2.1.2-rc.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/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_5d9c6052_lang.css +1 -0
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_c859928d_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_d5635f1b_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_5fa01c78_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_258b9f7e_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/MultiBar.vue_vue_type_style_index_0_scoped_b473b35e_lang.css +1 -0
- package/MultiBarMenu.vue_vue_type_style_index_0_scoped_e40e5dda_lang.css +1 -0
- package/StatusDot.vue_vue_type_style_index_0_scoped_0c8a38e5_lang.css +1 -0
- package/ToggleV4.vue_vue_type_style_index_0_scoped_ad231e8c_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.js +18 -18
- package/components/dropdown/v4/AppDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/AppDropdownTrigger.vue2.js +37 -37
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +5 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +48 -40
- package/components/dropdown/v4/DropdownV4.vue.d.ts +11 -3
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +107 -102
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +283 -0
- package/components/dropdown/v4/index.d.ts +54 -9
- package/components/icon/v3/Icon.vue2.js +1 -1
- package/components/icon/v3/icons/FiltersSearch.vue.js +41 -0
- package/components/multibar/MultiBar.types.d.ts +1 -0
- package/components/multibar/MultiBar.vue.d.ts +10 -0
- package/components/multibar/MultiBar.vue.js +3 -3
- package/components/multibar/MultiBar.vue2.js +58 -51
- package/components/multibar/MultiBarMenu.vue.d.ts +5 -0
- package/components/multibar/MultiBarMenu.vue.js +3 -3
- package/components/multibar/MultiBarMenu.vue2.js +23 -18
- package/components/multibar/index.d.ts +18 -0
- package/components/statusDot/StatusDot.vue.d.ts +30 -0
- package/components/statusDot/StatusDot.vue.js +7 -0
- package/components/statusDot/StatusDot.vue2.js +15 -0
- package/components/statusDot/index.d.ts +17 -0
- package/components/statusDot/index.js +6 -0
- package/components/statusDot/types.d.ts +2 -0
- package/components/table/common/Table.common.js +31 -31
- package/components/table/v4/DataGrid.vue.d.ts +8 -3
- package/components/table/v4/DataGrid.vue.js +2 -2
- package/components/table/v4/DataGrid.vue2.js +76 -75
- package/components/table/v4/index.d.ts +27 -8
- package/components/toggle/v4/ToggleV4.vue.js +5 -5
- package/components/toggle/v4/ToggleV4.vue2.js +1 -1
- package/index.d.ts +192 -34
- package/index.js +104 -102
- package/package.json +6 -2
- package/testids/index.d.ts +6 -0
- package/testids/index.js +15 -14
- package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_a64a46d0_lang.css +0 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_c38e97df_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_09d33c49_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_06dcfe6d_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_19f8fedd_lang.css +0 -1
- package/MultiBar.vue_vue_type_style_index_0_scoped_f5061530_lang.css +0 -1
- package/MultiBarMenu.vue_vue_type_style_index_0_scoped_ae2bbc6c_lang.css +0 -1
- package/ToggleV4.vue_vue_type_style_index_0_scoped_ef31fecc_lang.css +0 -1
- /package/components/icon/{icons → v3/icons}/FiltersSearch.vue.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -21,6 +21,36 @@ import * as tableV4 from '@/components/table/v4';
|
|
|
21
21
|
import * as tableCellsV3 from '@/components/table-cells/v3';
|
|
22
22
|
import * as snackbarV3 from '@/components/snackbar/v3';
|
|
23
23
|
declare const _default: {
|
|
24
|
+
StatusDot: import("vue").DefineComponent<{
|
|
25
|
+
type: {
|
|
26
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
27
|
+
required: true;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
type: {
|
|
32
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
33
|
+
required: true;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
}>>, {
|
|
37
|
+
type: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
38
|
+
}>;
|
|
39
|
+
StatusDotTypes: () => import("vue").DefineComponent<{
|
|
40
|
+
type: {
|
|
41
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
42
|
+
required: true;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
+
type: {
|
|
47
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
48
|
+
required: true;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
}>>, {
|
|
52
|
+
type: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
53
|
+
}>[];
|
|
24
54
|
InlineCopy: import("vue").DefineComponent<{
|
|
25
55
|
text: {
|
|
26
56
|
type: import("vue").PropType<string>;
|
|
@@ -2120,7 +2150,8 @@ declare const _default: {
|
|
|
2120
2150
|
rowHeight: number | ((index: number) => number);
|
|
2121
2151
|
loadingRowCount: number;
|
|
2122
2152
|
defaultScrollPosition: number;
|
|
2123
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2153
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
2154
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
2124
2155
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
2125
2156
|
showSearch: boolean;
|
|
2126
2157
|
zIndexBase: number;
|
|
@@ -2206,9 +2237,13 @@ declare const _default: {
|
|
|
2206
2237
|
default: any;
|
|
2207
2238
|
};
|
|
2208
2239
|
getRowId: {
|
|
2209
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2240
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
2210
2241
|
default: (row: any, index: any) => any;
|
|
2211
2242
|
};
|
|
2243
|
+
selectedMatcher: {
|
|
2244
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
2245
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
2246
|
+
};
|
|
2212
2247
|
emptyStateVariant: {
|
|
2213
2248
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
2214
2249
|
default: any;
|
|
@@ -2233,7 +2268,7 @@ declare const _default: {
|
|
|
2233
2268
|
onLoadMore?: () => any;
|
|
2234
2269
|
"onUpdate:search"?: (query: string) => any;
|
|
2235
2270
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
2236
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "searchPlaceholder" | "selection" | "searchAutoFocus" | "isLoading" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
|
|
2271
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "searchPlaceholder" | "selection" | "searchAutoFocus" | "isLoading" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
|
|
2237
2272
|
$attrs: {
|
|
2238
2273
|
[x: string]: unknown;
|
|
2239
2274
|
};
|
|
@@ -2334,9 +2369,13 @@ declare const _default: {
|
|
|
2334
2369
|
default: any;
|
|
2335
2370
|
};
|
|
2336
2371
|
getRowId: {
|
|
2337
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2372
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
2338
2373
|
default: (row: any, index: any) => any;
|
|
2339
2374
|
};
|
|
2375
|
+
selectedMatcher: {
|
|
2376
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
2377
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
2378
|
+
};
|
|
2340
2379
|
emptyStateVariant: {
|
|
2341
2380
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
2342
2381
|
default: any;
|
|
@@ -2392,7 +2431,8 @@ declare const _default: {
|
|
|
2392
2431
|
rowHeight: number | ((index: number) => number);
|
|
2393
2432
|
loadingRowCount: number;
|
|
2394
2433
|
defaultScrollPosition: number;
|
|
2395
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2434
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
2435
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
2396
2436
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
2397
2437
|
showSearch: boolean;
|
|
2398
2438
|
zIndexBase: number;
|
|
@@ -2498,9 +2538,13 @@ declare const _default: {
|
|
|
2498
2538
|
default: any;
|
|
2499
2539
|
};
|
|
2500
2540
|
getRowId: {
|
|
2501
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2541
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
2502
2542
|
default: (row: any, index: any) => any;
|
|
2503
2543
|
};
|
|
2544
|
+
selectedMatcher: {
|
|
2545
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
2546
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
2547
|
+
};
|
|
2504
2548
|
emptyStateVariant: {
|
|
2505
2549
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
2506
2550
|
default: any;
|
|
@@ -2611,9 +2655,13 @@ declare const _default: {
|
|
|
2611
2655
|
default: any;
|
|
2612
2656
|
};
|
|
2613
2657
|
getRowId: {
|
|
2614
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2658
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
2615
2659
|
default: (row: any, index: any) => any;
|
|
2616
2660
|
};
|
|
2661
|
+
selectedMatcher: {
|
|
2662
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
2663
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
2664
|
+
};
|
|
2617
2665
|
emptyStateVariant: {
|
|
2618
2666
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
2619
2667
|
default: any;
|
|
@@ -2669,7 +2717,8 @@ declare const _default: {
|
|
|
2669
2717
|
rowHeight: number | ((index: number) => number);
|
|
2670
2718
|
loadingRowCount: number;
|
|
2671
2719
|
defaultScrollPosition: number;
|
|
2672
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2720
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
2721
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
2673
2722
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
2674
2723
|
showSearch: boolean;
|
|
2675
2724
|
zIndexBase: number;
|
|
@@ -2769,7 +2818,8 @@ declare const _default: {
|
|
|
2769
2818
|
rowHeight: number | ((index: number) => number);
|
|
2770
2819
|
loadingRowCount: number;
|
|
2771
2820
|
defaultScrollPosition: number;
|
|
2772
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2821
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
2822
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
2773
2823
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
2774
2824
|
showSearch: boolean;
|
|
2775
2825
|
zIndexBase: number;
|
|
@@ -2855,9 +2905,13 @@ declare const _default: {
|
|
|
2855
2905
|
default: any;
|
|
2856
2906
|
};
|
|
2857
2907
|
getRowId: {
|
|
2858
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
2908
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
2859
2909
|
default: (row: any, index: any) => any;
|
|
2860
2910
|
};
|
|
2911
|
+
selectedMatcher: {
|
|
2912
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
2913
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
2914
|
+
};
|
|
2861
2915
|
emptyStateVariant: {
|
|
2862
2916
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
2863
2917
|
default: any;
|
|
@@ -2882,7 +2936,7 @@ declare const _default: {
|
|
|
2882
2936
|
onLoadMore?: () => any;
|
|
2883
2937
|
"onUpdate:search"?: (query: string) => any;
|
|
2884
2938
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
2885
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "searchPlaceholder" | "selection" | "searchAutoFocus" | "isLoading" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
|
|
2939
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "searchPlaceholder" | "selection" | "searchAutoFocus" | "isLoading" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
|
|
2886
2940
|
$attrs: {
|
|
2887
2941
|
[x: string]: unknown;
|
|
2888
2942
|
};
|
|
@@ -2983,9 +3037,13 @@ declare const _default: {
|
|
|
2983
3037
|
default: any;
|
|
2984
3038
|
};
|
|
2985
3039
|
getRowId: {
|
|
2986
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
3040
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
2987
3041
|
default: (row: any, index: any) => any;
|
|
2988
3042
|
};
|
|
3043
|
+
selectedMatcher: {
|
|
3044
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
3045
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
3046
|
+
};
|
|
2989
3047
|
emptyStateVariant: {
|
|
2990
3048
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
2991
3049
|
default: any;
|
|
@@ -3041,7 +3099,8 @@ declare const _default: {
|
|
|
3041
3099
|
rowHeight: number | ((index: number) => number);
|
|
3042
3100
|
loadingRowCount: number;
|
|
3043
3101
|
defaultScrollPosition: number;
|
|
3044
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
3102
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
3103
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
3045
3104
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
3046
3105
|
showSearch: boolean;
|
|
3047
3106
|
zIndexBase: number;
|
|
@@ -3147,9 +3206,13 @@ declare const _default: {
|
|
|
3147
3206
|
default: any;
|
|
3148
3207
|
};
|
|
3149
3208
|
getRowId: {
|
|
3150
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
3209
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
3151
3210
|
default: (row: any, index: any) => any;
|
|
3152
3211
|
};
|
|
3212
|
+
selectedMatcher: {
|
|
3213
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
3214
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
3215
|
+
};
|
|
3153
3216
|
emptyStateVariant: {
|
|
3154
3217
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
3155
3218
|
default: any;
|
|
@@ -3260,9 +3323,13 @@ declare const _default: {
|
|
|
3260
3323
|
default: any;
|
|
3261
3324
|
};
|
|
3262
3325
|
getRowId: {
|
|
3263
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
3326
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
|
|
3264
3327
|
default: (row: any, index: any) => any;
|
|
3265
3328
|
};
|
|
3329
|
+
selectedMatcher: {
|
|
3330
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
3331
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
3332
|
+
};
|
|
3266
3333
|
emptyStateVariant: {
|
|
3267
3334
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
3268
3335
|
default: any;
|
|
@@ -3318,7 +3385,8 @@ declare const _default: {
|
|
|
3318
3385
|
rowHeight: number | ((index: number) => number);
|
|
3319
3386
|
loadingRowCount: number;
|
|
3320
3387
|
defaultScrollPosition: number;
|
|
3321
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
3388
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
3389
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
3322
3390
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
3323
3391
|
showSearch: boolean;
|
|
3324
3392
|
zIndexBase: number;
|
|
@@ -10767,7 +10835,7 @@ declare const _default: {
|
|
|
10767
10835
|
$props: Partial<{
|
|
10768
10836
|
theme: string;
|
|
10769
10837
|
disabled: boolean;
|
|
10770
|
-
size: "
|
|
10838
|
+
size: "small" | "medium" | "large";
|
|
10771
10839
|
flip: boolean;
|
|
10772
10840
|
mandatory: boolean;
|
|
10773
10841
|
testId: string;
|
|
@@ -10782,6 +10850,7 @@ declare const _default: {
|
|
|
10782
10850
|
multi: boolean;
|
|
10783
10851
|
inlineSearch: boolean;
|
|
10784
10852
|
noResultsText: string;
|
|
10853
|
+
showSelectAll: boolean;
|
|
10785
10854
|
defaultOpen: boolean;
|
|
10786
10855
|
skidding: number;
|
|
10787
10856
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -10803,6 +10872,7 @@ declare const _default: {
|
|
|
10803
10872
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
10804
10873
|
fullWidth: boolean;
|
|
10805
10874
|
optionsListWidth: string;
|
|
10875
|
+
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
10806
10876
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
10807
10877
|
theme: {
|
|
10808
10878
|
type: import("vue").PropType<string>;
|
|
@@ -10813,7 +10883,7 @@ declare const _default: {
|
|
|
10813
10883
|
default: boolean;
|
|
10814
10884
|
};
|
|
10815
10885
|
size: {
|
|
10816
|
-
type: import("vue").PropType<"
|
|
10886
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
10817
10887
|
default: string;
|
|
10818
10888
|
};
|
|
10819
10889
|
flip: {
|
|
@@ -10884,6 +10954,7 @@ declare const _default: {
|
|
|
10884
10954
|
};
|
|
10885
10955
|
showSelectAll: {
|
|
10886
10956
|
type: import("vue").PropType<boolean>;
|
|
10957
|
+
default: boolean;
|
|
10887
10958
|
};
|
|
10888
10959
|
defaultOpen: {
|
|
10889
10960
|
type: import("vue").PropType<boolean>;
|
|
@@ -10976,13 +11047,17 @@ declare const _default: {
|
|
|
10976
11047
|
type: import("vue").PropType<string>;
|
|
10977
11048
|
default: any;
|
|
10978
11049
|
};
|
|
11050
|
+
statusType: {
|
|
11051
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
11052
|
+
default: any;
|
|
11053
|
+
};
|
|
10979
11054
|
}>> & {
|
|
10980
11055
|
onApply?: (value: unknown) => any;
|
|
10981
11056
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
10982
11057
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
10983
11058
|
onOpened?: () => any;
|
|
10984
11059
|
onClosed?: () => any;
|
|
10985
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "modelValue" | "placeholder" | "isOnTop" | "multi" | "inlineSearch" | "noResultsText" | "defaultOpen" | "skidding" | "onSearch" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "valueToCopy" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "onClear" | "inlineSearchPlaceholder" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "searchAutoFocus" | "predefinedTrigger" | "fullWidth" | "optionsListWidth">;
|
|
11060
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "modelValue" | "placeholder" | "isOnTop" | "multi" | "inlineSearch" | "noResultsText" | "showSelectAll" | "defaultOpen" | "skidding" | "onSearch" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "valueToCopy" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "onClear" | "inlineSearchPlaceholder" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "searchAutoFocus" | "predefinedTrigger" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
10986
11061
|
$attrs: {
|
|
10987
11062
|
[x: string]: unknown;
|
|
10988
11063
|
};
|
|
@@ -11006,7 +11081,7 @@ declare const _default: {
|
|
|
11006
11081
|
default: boolean;
|
|
11007
11082
|
};
|
|
11008
11083
|
size: {
|
|
11009
|
-
type: import("vue").PropType<"
|
|
11084
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
11010
11085
|
default: string;
|
|
11011
11086
|
};
|
|
11012
11087
|
flip: {
|
|
@@ -11077,6 +11152,7 @@ declare const _default: {
|
|
|
11077
11152
|
};
|
|
11078
11153
|
showSelectAll: {
|
|
11079
11154
|
type: import("vue").PropType<boolean>;
|
|
11155
|
+
default: boolean;
|
|
11080
11156
|
};
|
|
11081
11157
|
defaultOpen: {
|
|
11082
11158
|
type: import("vue").PropType<boolean>;
|
|
@@ -11169,6 +11245,10 @@ declare const _default: {
|
|
|
11169
11245
|
type: import("vue").PropType<string>;
|
|
11170
11246
|
default: any;
|
|
11171
11247
|
};
|
|
11248
|
+
statusType: {
|
|
11249
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
11250
|
+
default: any;
|
|
11251
|
+
};
|
|
11172
11252
|
}>> & {
|
|
11173
11253
|
onApply?: (value: unknown) => any;
|
|
11174
11254
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
@@ -11187,7 +11267,7 @@ declare const _default: {
|
|
|
11187
11267
|
}, string, {
|
|
11188
11268
|
theme: string;
|
|
11189
11269
|
disabled: boolean;
|
|
11190
|
-
size: "
|
|
11270
|
+
size: "small" | "medium" | "large";
|
|
11191
11271
|
flip: boolean;
|
|
11192
11272
|
mandatory: boolean;
|
|
11193
11273
|
testId: string;
|
|
@@ -11202,6 +11282,7 @@ declare const _default: {
|
|
|
11202
11282
|
multi: boolean;
|
|
11203
11283
|
inlineSearch: boolean;
|
|
11204
11284
|
noResultsText: string;
|
|
11285
|
+
showSelectAll: boolean;
|
|
11205
11286
|
defaultOpen: boolean;
|
|
11206
11287
|
skidding: number;
|
|
11207
11288
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -11223,6 +11304,7 @@ declare const _default: {
|
|
|
11223
11304
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
11224
11305
|
fullWidth: boolean;
|
|
11225
11306
|
optionsListWidth: string;
|
|
11307
|
+
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
11226
11308
|
}, {}, string> & {
|
|
11227
11309
|
beforeCreate?: (() => void) | (() => void)[];
|
|
11228
11310
|
created?: (() => void) | (() => void)[];
|
|
@@ -11253,7 +11335,7 @@ declare const _default: {
|
|
|
11253
11335
|
default: boolean;
|
|
11254
11336
|
};
|
|
11255
11337
|
size: {
|
|
11256
|
-
type: import("vue").PropType<"
|
|
11338
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
11257
11339
|
default: string;
|
|
11258
11340
|
};
|
|
11259
11341
|
flip: {
|
|
@@ -11324,6 +11406,7 @@ declare const _default: {
|
|
|
11324
11406
|
};
|
|
11325
11407
|
showSelectAll: {
|
|
11326
11408
|
type: import("vue").PropType<boolean>;
|
|
11409
|
+
default: boolean;
|
|
11327
11410
|
};
|
|
11328
11411
|
defaultOpen: {
|
|
11329
11412
|
type: import("vue").PropType<boolean>;
|
|
@@ -11416,6 +11499,10 @@ declare const _default: {
|
|
|
11416
11499
|
type: import("vue").PropType<string>;
|
|
11417
11500
|
default: any;
|
|
11418
11501
|
};
|
|
11502
|
+
statusType: {
|
|
11503
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
11504
|
+
default: any;
|
|
11505
|
+
};
|
|
11419
11506
|
}>> & {
|
|
11420
11507
|
onApply?: (value: unknown) => any;
|
|
11421
11508
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
@@ -11439,7 +11526,7 @@ declare const _default: {
|
|
|
11439
11526
|
default: boolean;
|
|
11440
11527
|
};
|
|
11441
11528
|
size: {
|
|
11442
|
-
type: import("vue").PropType<"
|
|
11529
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
11443
11530
|
default: string;
|
|
11444
11531
|
};
|
|
11445
11532
|
flip: {
|
|
@@ -11510,6 +11597,7 @@ declare const _default: {
|
|
|
11510
11597
|
};
|
|
11511
11598
|
showSelectAll: {
|
|
11512
11599
|
type: import("vue").PropType<boolean>;
|
|
11600
|
+
default: boolean;
|
|
11513
11601
|
};
|
|
11514
11602
|
defaultOpen: {
|
|
11515
11603
|
type: import("vue").PropType<boolean>;
|
|
@@ -11602,6 +11690,10 @@ declare const _default: {
|
|
|
11602
11690
|
type: import("vue").PropType<string>;
|
|
11603
11691
|
default: any;
|
|
11604
11692
|
};
|
|
11693
|
+
statusType: {
|
|
11694
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
11695
|
+
default: any;
|
|
11696
|
+
};
|
|
11605
11697
|
}>> & {
|
|
11606
11698
|
onApply?: (value: unknown) => any;
|
|
11607
11699
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
@@ -11620,7 +11712,7 @@ declare const _default: {
|
|
|
11620
11712
|
}, string, {
|
|
11621
11713
|
theme: string;
|
|
11622
11714
|
disabled: boolean;
|
|
11623
|
-
size: "
|
|
11715
|
+
size: "small" | "medium" | "large";
|
|
11624
11716
|
flip: boolean;
|
|
11625
11717
|
mandatory: boolean;
|
|
11626
11718
|
testId: string;
|
|
@@ -11635,6 +11727,7 @@ declare const _default: {
|
|
|
11635
11727
|
multi: boolean;
|
|
11636
11728
|
inlineSearch: boolean;
|
|
11637
11729
|
noResultsText: string;
|
|
11730
|
+
showSelectAll: boolean;
|
|
11638
11731
|
defaultOpen: boolean;
|
|
11639
11732
|
skidding: number;
|
|
11640
11733
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -11656,6 +11749,7 @@ declare const _default: {
|
|
|
11656
11749
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
11657
11750
|
fullWidth: boolean;
|
|
11658
11751
|
optionsListWidth: string;
|
|
11752
|
+
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
11659
11753
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
11660
11754
|
$slots: {
|
|
11661
11755
|
label?(_: {}): any;
|
|
@@ -11696,6 +11790,7 @@ declare const _default: {
|
|
|
11696
11790
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
11697
11791
|
feedbackText: string;
|
|
11698
11792
|
feedbackVariant: "success" | "warning" | "error";
|
|
11793
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
11699
11794
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
11700
11795
|
label: {
|
|
11701
11796
|
type: import("vue").PropType<string>;
|
|
@@ -11787,9 +11882,13 @@ declare const _default: {
|
|
|
11787
11882
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
11788
11883
|
default: any;
|
|
11789
11884
|
};
|
|
11885
|
+
statusDotType: {
|
|
11886
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
11887
|
+
default: any;
|
|
11888
|
+
};
|
|
11790
11889
|
}>> & {
|
|
11791
11890
|
onClick?: () => any;
|
|
11792
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "selectedOption" | "brandIconType" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant">;
|
|
11891
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "selectedOption" | "brandIconType" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "statusDotType">;
|
|
11793
11892
|
$attrs: {
|
|
11794
11893
|
[x: string]: unknown;
|
|
11795
11894
|
};
|
|
@@ -11894,6 +11993,10 @@ declare const _default: {
|
|
|
11894
11993
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
11895
11994
|
default: any;
|
|
11896
11995
|
};
|
|
11996
|
+
statusDotType: {
|
|
11997
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
11998
|
+
default: any;
|
|
11999
|
+
};
|
|
11897
12000
|
}>> & {
|
|
11898
12001
|
onClick?: () => any;
|
|
11899
12002
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -11920,6 +12023,7 @@ declare const _default: {
|
|
|
11920
12023
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
11921
12024
|
feedbackText: string;
|
|
11922
12025
|
feedbackVariant: "success" | "warning" | "error";
|
|
12026
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
11923
12027
|
}, {}, string> & {
|
|
11924
12028
|
beforeCreate?: (() => void) | (() => void)[];
|
|
11925
12029
|
created?: (() => void) | (() => void)[];
|
|
@@ -12031,6 +12135,10 @@ declare const _default: {
|
|
|
12031
12135
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
12032
12136
|
default: any;
|
|
12033
12137
|
};
|
|
12138
|
+
statusDotType: {
|
|
12139
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
12140
|
+
default: any;
|
|
12141
|
+
};
|
|
12034
12142
|
}>> & {
|
|
12035
12143
|
onClick?: () => any;
|
|
12036
12144
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -12128,6 +12236,10 @@ declare const _default: {
|
|
|
12128
12236
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
12129
12237
|
default: any;
|
|
12130
12238
|
};
|
|
12239
|
+
statusDotType: {
|
|
12240
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
12241
|
+
default: any;
|
|
12242
|
+
};
|
|
12131
12243
|
}>> & {
|
|
12132
12244
|
onClick?: () => any;
|
|
12133
12245
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -12154,6 +12266,7 @@ declare const _default: {
|
|
|
12154
12266
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
12155
12267
|
feedbackText: string;
|
|
12156
12268
|
feedbackVariant: "success" | "warning" | "error";
|
|
12269
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
12157
12270
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
12158
12271
|
$slots: {
|
|
12159
12272
|
image?(_: {}): any;
|
|
@@ -13263,6 +13376,7 @@ declare const _default: {
|
|
|
13263
13376
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
13264
13377
|
feedbackText: string;
|
|
13265
13378
|
feedbackVariant: "success" | "warning" | "error";
|
|
13379
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
13266
13380
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
13267
13381
|
label: {
|
|
13268
13382
|
type: import("vue").PropType<string>;
|
|
@@ -13354,9 +13468,13 @@ declare const _default: {
|
|
|
13354
13468
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
13355
13469
|
default: any;
|
|
13356
13470
|
};
|
|
13471
|
+
statusDotType: {
|
|
13472
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
13473
|
+
default: any;
|
|
13474
|
+
};
|
|
13357
13475
|
}>> & {
|
|
13358
13476
|
onClick?: () => any;
|
|
13359
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "selectedOption" | "brandIconType" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant">;
|
|
13477
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "selectedOption" | "brandIconType" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "statusDotType">;
|
|
13360
13478
|
$attrs: {
|
|
13361
13479
|
[x: string]: unknown;
|
|
13362
13480
|
};
|
|
@@ -13461,6 +13579,10 @@ declare const _default: {
|
|
|
13461
13579
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
13462
13580
|
default: any;
|
|
13463
13581
|
};
|
|
13582
|
+
statusDotType: {
|
|
13583
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
13584
|
+
default: any;
|
|
13585
|
+
};
|
|
13464
13586
|
}>> & {
|
|
13465
13587
|
onClick?: () => any;
|
|
13466
13588
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -13487,6 +13609,7 @@ declare const _default: {
|
|
|
13487
13609
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
13488
13610
|
feedbackText: string;
|
|
13489
13611
|
feedbackVariant: "success" | "warning" | "error";
|
|
13612
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
13490
13613
|
}, {}, string> & {
|
|
13491
13614
|
beforeCreate?: (() => void) | (() => void)[];
|
|
13492
13615
|
created?: (() => void) | (() => void)[];
|
|
@@ -13598,6 +13721,10 @@ declare const _default: {
|
|
|
13598
13721
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
13599
13722
|
default: any;
|
|
13600
13723
|
};
|
|
13724
|
+
statusDotType: {
|
|
13725
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
13726
|
+
default: any;
|
|
13727
|
+
};
|
|
13601
13728
|
}>> & {
|
|
13602
13729
|
onClick?: () => any;
|
|
13603
13730
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -13695,6 +13822,10 @@ declare const _default: {
|
|
|
13695
13822
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
13696
13823
|
default: any;
|
|
13697
13824
|
};
|
|
13825
|
+
statusDotType: {
|
|
13826
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
13827
|
+
default: any;
|
|
13828
|
+
};
|
|
13698
13829
|
}>> & {
|
|
13699
13830
|
onClick?: () => any;
|
|
13700
13831
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -13721,6 +13852,7 @@ declare const _default: {
|
|
|
13721
13852
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
13722
13853
|
feedbackText: string;
|
|
13723
13854
|
feedbackVariant: "success" | "warning" | "error";
|
|
13855
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
13724
13856
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
13725
13857
|
$slots: {
|
|
13726
13858
|
image?(_: {}): any;
|
|
@@ -14002,7 +14134,7 @@ declare const _default: {
|
|
|
14002
14134
|
$props: Partial<{
|
|
14003
14135
|
theme: string;
|
|
14004
14136
|
disabled: boolean;
|
|
14005
|
-
size: "
|
|
14137
|
+
size: "small" | "medium" | "large";
|
|
14006
14138
|
flip: boolean;
|
|
14007
14139
|
mandatory: boolean;
|
|
14008
14140
|
testId: string;
|
|
@@ -14017,6 +14149,7 @@ declare const _default: {
|
|
|
14017
14149
|
multi: boolean;
|
|
14018
14150
|
inlineSearch: boolean;
|
|
14019
14151
|
noResultsText: string;
|
|
14152
|
+
showSelectAll: boolean;
|
|
14020
14153
|
defaultOpen: boolean;
|
|
14021
14154
|
skidding: number;
|
|
14022
14155
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -14038,6 +14171,7 @@ declare const _default: {
|
|
|
14038
14171
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
14039
14172
|
fullWidth: boolean;
|
|
14040
14173
|
optionsListWidth: string;
|
|
14174
|
+
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
14041
14175
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14042
14176
|
theme: {
|
|
14043
14177
|
type: import("vue").PropType<string>;
|
|
@@ -14048,7 +14182,7 @@ declare const _default: {
|
|
|
14048
14182
|
default: boolean;
|
|
14049
14183
|
};
|
|
14050
14184
|
size: {
|
|
14051
|
-
type: import("vue").PropType<"
|
|
14185
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
14052
14186
|
default: string;
|
|
14053
14187
|
};
|
|
14054
14188
|
flip: {
|
|
@@ -14119,6 +14253,7 @@ declare const _default: {
|
|
|
14119
14253
|
};
|
|
14120
14254
|
showSelectAll: {
|
|
14121
14255
|
type: import("vue").PropType<boolean>;
|
|
14256
|
+
default: boolean;
|
|
14122
14257
|
};
|
|
14123
14258
|
defaultOpen: {
|
|
14124
14259
|
type: import("vue").PropType<boolean>;
|
|
@@ -14211,13 +14346,17 @@ declare const _default: {
|
|
|
14211
14346
|
type: import("vue").PropType<string>;
|
|
14212
14347
|
default: any;
|
|
14213
14348
|
};
|
|
14349
|
+
statusType: {
|
|
14350
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
14351
|
+
default: any;
|
|
14352
|
+
};
|
|
14214
14353
|
}>> & {
|
|
14215
14354
|
onApply?: (value: unknown) => any;
|
|
14216
14355
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
14217
14356
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
14218
14357
|
onOpened?: () => any;
|
|
14219
14358
|
onClosed?: () => any;
|
|
14220
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "modelValue" | "placeholder" | "isOnTop" | "multi" | "inlineSearch" | "noResultsText" | "defaultOpen" | "skidding" | "onSearch" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "valueToCopy" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "onClear" | "inlineSearchPlaceholder" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "searchAutoFocus" | "predefinedTrigger" | "fullWidth" | "optionsListWidth">;
|
|
14359
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "modelValue" | "placeholder" | "isOnTop" | "multi" | "inlineSearch" | "noResultsText" | "showSelectAll" | "defaultOpen" | "skidding" | "onSearch" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "valueToCopy" | "optionNameKey" | "optionImageKey" | "optionIconKey" | "optionIconType" | "onClear" | "inlineSearchPlaceholder" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "searchAutoFocus" | "predefinedTrigger" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
14221
14360
|
$attrs: {
|
|
14222
14361
|
[x: string]: unknown;
|
|
14223
14362
|
};
|
|
@@ -14241,7 +14380,7 @@ declare const _default: {
|
|
|
14241
14380
|
default: boolean;
|
|
14242
14381
|
};
|
|
14243
14382
|
size: {
|
|
14244
|
-
type: import("vue").PropType<"
|
|
14383
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
14245
14384
|
default: string;
|
|
14246
14385
|
};
|
|
14247
14386
|
flip: {
|
|
@@ -14312,6 +14451,7 @@ declare const _default: {
|
|
|
14312
14451
|
};
|
|
14313
14452
|
showSelectAll: {
|
|
14314
14453
|
type: import("vue").PropType<boolean>;
|
|
14454
|
+
default: boolean;
|
|
14315
14455
|
};
|
|
14316
14456
|
defaultOpen: {
|
|
14317
14457
|
type: import("vue").PropType<boolean>;
|
|
@@ -14404,6 +14544,10 @@ declare const _default: {
|
|
|
14404
14544
|
type: import("vue").PropType<string>;
|
|
14405
14545
|
default: any;
|
|
14406
14546
|
};
|
|
14547
|
+
statusType: {
|
|
14548
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
14549
|
+
default: any;
|
|
14550
|
+
};
|
|
14407
14551
|
}>> & {
|
|
14408
14552
|
onApply?: (value: unknown) => any;
|
|
14409
14553
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
@@ -14422,7 +14566,7 @@ declare const _default: {
|
|
|
14422
14566
|
}, string, {
|
|
14423
14567
|
theme: string;
|
|
14424
14568
|
disabled: boolean;
|
|
14425
|
-
size: "
|
|
14569
|
+
size: "small" | "medium" | "large";
|
|
14426
14570
|
flip: boolean;
|
|
14427
14571
|
mandatory: boolean;
|
|
14428
14572
|
testId: string;
|
|
@@ -14437,6 +14581,7 @@ declare const _default: {
|
|
|
14437
14581
|
multi: boolean;
|
|
14438
14582
|
inlineSearch: boolean;
|
|
14439
14583
|
noResultsText: string;
|
|
14584
|
+
showSelectAll: boolean;
|
|
14440
14585
|
defaultOpen: boolean;
|
|
14441
14586
|
skidding: number;
|
|
14442
14587
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -14458,6 +14603,7 @@ declare const _default: {
|
|
|
14458
14603
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
14459
14604
|
fullWidth: boolean;
|
|
14460
14605
|
optionsListWidth: string;
|
|
14606
|
+
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
14461
14607
|
}, {}, string> & {
|
|
14462
14608
|
beforeCreate?: (() => void) | (() => void)[];
|
|
14463
14609
|
created?: (() => void) | (() => void)[];
|
|
@@ -14488,7 +14634,7 @@ declare const _default: {
|
|
|
14488
14634
|
default: boolean;
|
|
14489
14635
|
};
|
|
14490
14636
|
size: {
|
|
14491
|
-
type: import("vue").PropType<"
|
|
14637
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
14492
14638
|
default: string;
|
|
14493
14639
|
};
|
|
14494
14640
|
flip: {
|
|
@@ -14559,6 +14705,7 @@ declare const _default: {
|
|
|
14559
14705
|
};
|
|
14560
14706
|
showSelectAll: {
|
|
14561
14707
|
type: import("vue").PropType<boolean>;
|
|
14708
|
+
default: boolean;
|
|
14562
14709
|
};
|
|
14563
14710
|
defaultOpen: {
|
|
14564
14711
|
type: import("vue").PropType<boolean>;
|
|
@@ -14651,6 +14798,10 @@ declare const _default: {
|
|
|
14651
14798
|
type: import("vue").PropType<string>;
|
|
14652
14799
|
default: any;
|
|
14653
14800
|
};
|
|
14801
|
+
statusType: {
|
|
14802
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
14803
|
+
default: any;
|
|
14804
|
+
};
|
|
14654
14805
|
}>> & {
|
|
14655
14806
|
onApply?: (value: unknown) => any;
|
|
14656
14807
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
@@ -14674,7 +14825,7 @@ declare const _default: {
|
|
|
14674
14825
|
default: boolean;
|
|
14675
14826
|
};
|
|
14676
14827
|
size: {
|
|
14677
|
-
type: import("vue").PropType<"
|
|
14828
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
14678
14829
|
default: string;
|
|
14679
14830
|
};
|
|
14680
14831
|
flip: {
|
|
@@ -14745,6 +14896,7 @@ declare const _default: {
|
|
|
14745
14896
|
};
|
|
14746
14897
|
showSelectAll: {
|
|
14747
14898
|
type: import("vue").PropType<boolean>;
|
|
14899
|
+
default: boolean;
|
|
14748
14900
|
};
|
|
14749
14901
|
defaultOpen: {
|
|
14750
14902
|
type: import("vue").PropType<boolean>;
|
|
@@ -14837,6 +14989,10 @@ declare const _default: {
|
|
|
14837
14989
|
type: import("vue").PropType<string>;
|
|
14838
14990
|
default: any;
|
|
14839
14991
|
};
|
|
14992
|
+
statusType: {
|
|
14993
|
+
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
14994
|
+
default: any;
|
|
14995
|
+
};
|
|
14840
14996
|
}>> & {
|
|
14841
14997
|
onApply?: (value: unknown) => any;
|
|
14842
14998
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
@@ -14855,7 +15011,7 @@ declare const _default: {
|
|
|
14855
15011
|
}, string, {
|
|
14856
15012
|
theme: string;
|
|
14857
15013
|
disabled: boolean;
|
|
14858
|
-
size: "
|
|
15014
|
+
size: "small" | "medium" | "large";
|
|
14859
15015
|
flip: boolean;
|
|
14860
15016
|
mandatory: boolean;
|
|
14861
15017
|
testId: string;
|
|
@@ -14870,6 +15026,7 @@ declare const _default: {
|
|
|
14870
15026
|
multi: boolean;
|
|
14871
15027
|
inlineSearch: boolean;
|
|
14872
15028
|
noResultsText: string;
|
|
15029
|
+
showSelectAll: boolean;
|
|
14873
15030
|
defaultOpen: boolean;
|
|
14874
15031
|
skidding: number;
|
|
14875
15032
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -14891,6 +15048,7 @@ declare const _default: {
|
|
|
14891
15048
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
14892
15049
|
fullWidth: boolean;
|
|
14893
15050
|
optionsListWidth: string;
|
|
15051
|
+
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
14894
15052
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
14895
15053
|
$slots: {
|
|
14896
15054
|
label?(_: {}): any;
|