@ironsource/shared-ui 2.1.10-rc.1 → 2.1.10-rc.3
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/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_49bd7193_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_9cab3826_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_9fa84b26_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_899679d0_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_69c40021_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_f61be399_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.d.ts +1 -0
- package/components/dropdown/common/Dropdown.common.js +165 -158
- package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +5 -0
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +23 -22
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +11 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +59 -45
- package/components/dropdown/v4/DropdownV4.vue.d.ts +12 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +173 -167
- package/components/dropdown/v4/OptionV4.vue.d.ts +6 -0
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +83 -70
- package/components/dropdown/v4/index.d.ts +111 -3
- package/components/table/v4/DataGrid.vue.d.ts +3 -3
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +42 -42
- package/components/table/v4/MultipleDataGrid.vue.d.ts +18 -2
- package/components/table/v4/MultipleDataGrid.vue.js +4 -4
- package/components/table/v4/MultipleDataGrid.vue2.js +65 -58
- package/components/table/v4/index.d.ts +66 -8
- package/consts/configs.d.ts +1 -0
- package/consts/configs.js +4 -0
- package/index.d.ts +354 -22
- package/index.js +1 -1
- package/package.json +1 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_a8fdae89_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_d27e1304_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_fd7a490e_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_62a620ee_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_cfedf78b_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_77509f61_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -5499,7 +5499,7 @@ declare const _default: {
|
|
|
5499
5499
|
infiniteScrollThreshold: number;
|
|
5500
5500
|
rowHeight: number | ((index: number) => number);
|
|
5501
5501
|
defaultScrollPosition: number;
|
|
5502
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
5502
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
5503
5503
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5504
5504
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5505
5505
|
zIndexBase: number;
|
|
@@ -5591,7 +5591,7 @@ declare const _default: {
|
|
|
5591
5591
|
default: any;
|
|
5592
5592
|
};
|
|
5593
5593
|
getRowId: {
|
|
5594
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
5594
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
5595
5595
|
default: (row: any, index: any) => any;
|
|
5596
5596
|
};
|
|
5597
5597
|
selectedMatcher: {
|
|
@@ -5725,7 +5725,7 @@ declare const _default: {
|
|
|
5725
5725
|
default: any;
|
|
5726
5726
|
};
|
|
5727
5727
|
getRowId: {
|
|
5728
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
5728
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
5729
5729
|
default: (row: any, index: any) => any;
|
|
5730
5730
|
};
|
|
5731
5731
|
selectedMatcher: {
|
|
@@ -5792,7 +5792,7 @@ declare const _default: {
|
|
|
5792
5792
|
infiniteScrollThreshold: number;
|
|
5793
5793
|
rowHeight: number | ((index: number) => number);
|
|
5794
5794
|
defaultScrollPosition: number;
|
|
5795
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
5795
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
5796
5796
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5797
5797
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5798
5798
|
zIndexBase: number;
|
|
@@ -5904,7 +5904,7 @@ declare const _default: {
|
|
|
5904
5904
|
default: any;
|
|
5905
5905
|
};
|
|
5906
5906
|
getRowId: {
|
|
5907
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
5907
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
5908
5908
|
default: (row: any, index: any) => any;
|
|
5909
5909
|
};
|
|
5910
5910
|
selectedMatcher: {
|
|
@@ -6030,7 +6030,7 @@ declare const _default: {
|
|
|
6030
6030
|
default: any;
|
|
6031
6031
|
};
|
|
6032
6032
|
getRowId: {
|
|
6033
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6033
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6034
6034
|
default: (row: any, index: any) => any;
|
|
6035
6035
|
};
|
|
6036
6036
|
selectedMatcher: {
|
|
@@ -6097,7 +6097,7 @@ declare const _default: {
|
|
|
6097
6097
|
infiniteScrollThreshold: number;
|
|
6098
6098
|
rowHeight: number | ((index: number) => number);
|
|
6099
6099
|
defaultScrollPosition: number;
|
|
6100
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6100
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6101
6101
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6102
6102
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6103
6103
|
zIndexBase: number;
|
|
@@ -6249,7 +6249,7 @@ declare const _default: {
|
|
|
6249
6249
|
infiniteScrollThreshold: number;
|
|
6250
6250
|
rowHeight: number | ((index: number) => number);
|
|
6251
6251
|
defaultScrollPosition: number;
|
|
6252
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6252
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6253
6253
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6254
6254
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6255
6255
|
zIndexBase: number;
|
|
@@ -6341,7 +6341,7 @@ declare const _default: {
|
|
|
6341
6341
|
default: any;
|
|
6342
6342
|
};
|
|
6343
6343
|
getRowId: {
|
|
6344
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6344
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6345
6345
|
default: (row: any, index: any) => any;
|
|
6346
6346
|
};
|
|
6347
6347
|
selectedMatcher: {
|
|
@@ -6475,7 +6475,7 @@ declare const _default: {
|
|
|
6475
6475
|
default: any;
|
|
6476
6476
|
};
|
|
6477
6477
|
getRowId: {
|
|
6478
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6478
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6479
6479
|
default: (row: any, index: any) => any;
|
|
6480
6480
|
};
|
|
6481
6481
|
selectedMatcher: {
|
|
@@ -6542,7 +6542,7 @@ declare const _default: {
|
|
|
6542
6542
|
infiniteScrollThreshold: number;
|
|
6543
6543
|
rowHeight: number | ((index: number) => number);
|
|
6544
6544
|
defaultScrollPosition: number;
|
|
6545
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6545
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6546
6546
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6547
6547
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6548
6548
|
zIndexBase: number;
|
|
@@ -6654,7 +6654,7 @@ declare const _default: {
|
|
|
6654
6654
|
default: any;
|
|
6655
6655
|
};
|
|
6656
6656
|
getRowId: {
|
|
6657
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6657
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6658
6658
|
default: (row: any, index: any) => any;
|
|
6659
6659
|
};
|
|
6660
6660
|
selectedMatcher: {
|
|
@@ -6780,7 +6780,7 @@ declare const _default: {
|
|
|
6780
6780
|
default: any;
|
|
6781
6781
|
};
|
|
6782
6782
|
getRowId: {
|
|
6783
|
-
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6783
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
6784
6784
|
default: (row: any, index: any) => any;
|
|
6785
6785
|
};
|
|
6786
6786
|
selectedMatcher: {
|
|
@@ -6847,7 +6847,7 @@ declare const _default: {
|
|
|
6847
6847
|
infiniteScrollThreshold: number;
|
|
6848
6848
|
rowHeight: number | ((index: number) => number);
|
|
6849
6849
|
defaultScrollPosition: number;
|
|
6850
|
-
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) =>
|
|
6850
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6851
6851
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6852
6852
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6853
6853
|
zIndexBase: number;
|
|
@@ -6987,8 +6987,11 @@ declare const _default: {
|
|
|
6987
6987
|
emptyStateTitle: string;
|
|
6988
6988
|
isSticky: boolean;
|
|
6989
6989
|
emptyStateSubtitle: string;
|
|
6990
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6990
6991
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6991
6992
|
zIndexBase: number;
|
|
6993
|
+
rowCustomClassKey: string;
|
|
6994
|
+
rowDataKey: string;
|
|
6992
6995
|
totalCount: number;
|
|
6993
6996
|
displayingText: string;
|
|
6994
6997
|
outOfText: string;
|
|
@@ -7036,6 +7039,10 @@ declare const _default: {
|
|
|
7036
7039
|
type: import("vue").PropType<string>;
|
|
7037
7040
|
default: string;
|
|
7038
7041
|
};
|
|
7042
|
+
getRowId: {
|
|
7043
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7044
|
+
default: (row: any, index: any) => any;
|
|
7045
|
+
};
|
|
7039
7046
|
emptyStateVariant: {
|
|
7040
7047
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7041
7048
|
default: any;
|
|
@@ -7044,6 +7051,14 @@ declare const _default: {
|
|
|
7044
7051
|
type: import("vue").PropType<number>;
|
|
7045
7052
|
default: number;
|
|
7046
7053
|
};
|
|
7054
|
+
rowCustomClassKey: {
|
|
7055
|
+
type: import("vue").PropType<string>;
|
|
7056
|
+
default: string;
|
|
7057
|
+
};
|
|
7058
|
+
rowDataKey: {
|
|
7059
|
+
type: import("vue").PropType<string>;
|
|
7060
|
+
default: string;
|
|
7061
|
+
};
|
|
7047
7062
|
totalCount: {
|
|
7048
7063
|
type: import("vue").PropType<number>;
|
|
7049
7064
|
default: number;
|
|
@@ -7078,7 +7093,7 @@ declare const _default: {
|
|
|
7078
7093
|
}) => any;
|
|
7079
7094
|
onOnClearSearch?: () => any;
|
|
7080
7095
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7081
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
7096
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
7082
7097
|
$attrs: {
|
|
7083
7098
|
[x: string]: unknown;
|
|
7084
7099
|
};
|
|
@@ -7135,6 +7150,10 @@ declare const _default: {
|
|
|
7135
7150
|
type: import("vue").PropType<string>;
|
|
7136
7151
|
default: string;
|
|
7137
7152
|
};
|
|
7153
|
+
getRowId: {
|
|
7154
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7155
|
+
default: (row: any, index: any) => any;
|
|
7156
|
+
};
|
|
7138
7157
|
emptyStateVariant: {
|
|
7139
7158
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7140
7159
|
default: any;
|
|
@@ -7143,6 +7162,14 @@ declare const _default: {
|
|
|
7143
7162
|
type: import("vue").PropType<number>;
|
|
7144
7163
|
default: number;
|
|
7145
7164
|
};
|
|
7165
|
+
rowCustomClassKey: {
|
|
7166
|
+
type: import("vue").PropType<string>;
|
|
7167
|
+
default: string;
|
|
7168
|
+
};
|
|
7169
|
+
rowDataKey: {
|
|
7170
|
+
type: import("vue").PropType<string>;
|
|
7171
|
+
default: string;
|
|
7172
|
+
};
|
|
7146
7173
|
totalCount: {
|
|
7147
7174
|
type: import("vue").PropType<number>;
|
|
7148
7175
|
default: number;
|
|
@@ -7196,8 +7223,11 @@ declare const _default: {
|
|
|
7196
7223
|
emptyStateTitle: string;
|
|
7197
7224
|
isSticky: boolean;
|
|
7198
7225
|
emptyStateSubtitle: string;
|
|
7226
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7199
7227
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7200
7228
|
zIndexBase: number;
|
|
7229
|
+
rowCustomClassKey: string;
|
|
7230
|
+
rowDataKey: string;
|
|
7201
7231
|
totalCount: number;
|
|
7202
7232
|
displayingText: string;
|
|
7203
7233
|
outOfText: string;
|
|
@@ -7265,6 +7295,10 @@ declare const _default: {
|
|
|
7265
7295
|
type: import("vue").PropType<string>;
|
|
7266
7296
|
default: string;
|
|
7267
7297
|
};
|
|
7298
|
+
getRowId: {
|
|
7299
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7300
|
+
default: (row: any, index: any) => any;
|
|
7301
|
+
};
|
|
7268
7302
|
emptyStateVariant: {
|
|
7269
7303
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7270
7304
|
default: any;
|
|
@@ -7273,6 +7307,14 @@ declare const _default: {
|
|
|
7273
7307
|
type: import("vue").PropType<number>;
|
|
7274
7308
|
default: number;
|
|
7275
7309
|
};
|
|
7310
|
+
rowCustomClassKey: {
|
|
7311
|
+
type: import("vue").PropType<string>;
|
|
7312
|
+
default: string;
|
|
7313
|
+
};
|
|
7314
|
+
rowDataKey: {
|
|
7315
|
+
type: import("vue").PropType<string>;
|
|
7316
|
+
default: string;
|
|
7317
|
+
};
|
|
7276
7318
|
totalCount: {
|
|
7277
7319
|
type: import("vue").PropType<number>;
|
|
7278
7320
|
default: number;
|
|
@@ -7352,6 +7394,10 @@ declare const _default: {
|
|
|
7352
7394
|
type: import("vue").PropType<string>;
|
|
7353
7395
|
default: string;
|
|
7354
7396
|
};
|
|
7397
|
+
getRowId: {
|
|
7398
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7399
|
+
default: (row: any, index: any) => any;
|
|
7400
|
+
};
|
|
7355
7401
|
emptyStateVariant: {
|
|
7356
7402
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7357
7403
|
default: any;
|
|
@@ -7360,6 +7406,14 @@ declare const _default: {
|
|
|
7360
7406
|
type: import("vue").PropType<number>;
|
|
7361
7407
|
default: number;
|
|
7362
7408
|
};
|
|
7409
|
+
rowCustomClassKey: {
|
|
7410
|
+
type: import("vue").PropType<string>;
|
|
7411
|
+
default: string;
|
|
7412
|
+
};
|
|
7413
|
+
rowDataKey: {
|
|
7414
|
+
type: import("vue").PropType<string>;
|
|
7415
|
+
default: string;
|
|
7416
|
+
};
|
|
7363
7417
|
totalCount: {
|
|
7364
7418
|
type: import("vue").PropType<number>;
|
|
7365
7419
|
default: number;
|
|
@@ -7413,8 +7467,11 @@ declare const _default: {
|
|
|
7413
7467
|
emptyStateTitle: string;
|
|
7414
7468
|
isSticky: boolean;
|
|
7415
7469
|
emptyStateSubtitle: string;
|
|
7470
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7416
7471
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7417
7472
|
zIndexBase: number;
|
|
7473
|
+
rowCustomClassKey: string;
|
|
7474
|
+
rowDataKey: string;
|
|
7418
7475
|
totalCount: number;
|
|
7419
7476
|
displayingText: string;
|
|
7420
7477
|
outOfText: string;
|
|
@@ -7439,6 +7496,7 @@ declare const _default: {
|
|
|
7439
7496
|
"floating-row"?(_: {
|
|
7440
7497
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7441
7498
|
rowIndex: number;
|
|
7499
|
+
tableIndex: number;
|
|
7442
7500
|
}): any;
|
|
7443
7501
|
"empty-state"?(_: {}): any;
|
|
7444
7502
|
};
|
|
@@ -7458,8 +7516,11 @@ declare const _default: {
|
|
|
7458
7516
|
emptyStateTitle: string;
|
|
7459
7517
|
isSticky: boolean;
|
|
7460
7518
|
emptyStateSubtitle: string;
|
|
7519
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7461
7520
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7462
7521
|
zIndexBase: number;
|
|
7522
|
+
rowCustomClassKey: string;
|
|
7523
|
+
rowDataKey: string;
|
|
7463
7524
|
totalCount: number;
|
|
7464
7525
|
displayingText: string;
|
|
7465
7526
|
outOfText: string;
|
|
@@ -7507,6 +7568,10 @@ declare const _default: {
|
|
|
7507
7568
|
type: import("vue").PropType<string>;
|
|
7508
7569
|
default: string;
|
|
7509
7570
|
};
|
|
7571
|
+
getRowId: {
|
|
7572
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7573
|
+
default: (row: any, index: any) => any;
|
|
7574
|
+
};
|
|
7510
7575
|
emptyStateVariant: {
|
|
7511
7576
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7512
7577
|
default: any;
|
|
@@ -7515,6 +7580,14 @@ declare const _default: {
|
|
|
7515
7580
|
type: import("vue").PropType<number>;
|
|
7516
7581
|
default: number;
|
|
7517
7582
|
};
|
|
7583
|
+
rowCustomClassKey: {
|
|
7584
|
+
type: import("vue").PropType<string>;
|
|
7585
|
+
default: string;
|
|
7586
|
+
};
|
|
7587
|
+
rowDataKey: {
|
|
7588
|
+
type: import("vue").PropType<string>;
|
|
7589
|
+
default: string;
|
|
7590
|
+
};
|
|
7518
7591
|
totalCount: {
|
|
7519
7592
|
type: import("vue").PropType<number>;
|
|
7520
7593
|
default: number;
|
|
@@ -7549,7 +7622,7 @@ declare const _default: {
|
|
|
7549
7622
|
}) => any;
|
|
7550
7623
|
onOnClearSearch?: () => any;
|
|
7551
7624
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7552
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
7625
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
7553
7626
|
$attrs: {
|
|
7554
7627
|
[x: string]: unknown;
|
|
7555
7628
|
};
|
|
@@ -7606,6 +7679,10 @@ declare const _default: {
|
|
|
7606
7679
|
type: import("vue").PropType<string>;
|
|
7607
7680
|
default: string;
|
|
7608
7681
|
};
|
|
7682
|
+
getRowId: {
|
|
7683
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7684
|
+
default: (row: any, index: any) => any;
|
|
7685
|
+
};
|
|
7609
7686
|
emptyStateVariant: {
|
|
7610
7687
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7611
7688
|
default: any;
|
|
@@ -7614,6 +7691,14 @@ declare const _default: {
|
|
|
7614
7691
|
type: import("vue").PropType<number>;
|
|
7615
7692
|
default: number;
|
|
7616
7693
|
};
|
|
7694
|
+
rowCustomClassKey: {
|
|
7695
|
+
type: import("vue").PropType<string>;
|
|
7696
|
+
default: string;
|
|
7697
|
+
};
|
|
7698
|
+
rowDataKey: {
|
|
7699
|
+
type: import("vue").PropType<string>;
|
|
7700
|
+
default: string;
|
|
7701
|
+
};
|
|
7617
7702
|
totalCount: {
|
|
7618
7703
|
type: import("vue").PropType<number>;
|
|
7619
7704
|
default: number;
|
|
@@ -7667,8 +7752,11 @@ declare const _default: {
|
|
|
7667
7752
|
emptyStateTitle: string;
|
|
7668
7753
|
isSticky: boolean;
|
|
7669
7754
|
emptyStateSubtitle: string;
|
|
7755
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7670
7756
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7671
7757
|
zIndexBase: number;
|
|
7758
|
+
rowCustomClassKey: string;
|
|
7759
|
+
rowDataKey: string;
|
|
7672
7760
|
totalCount: number;
|
|
7673
7761
|
displayingText: string;
|
|
7674
7762
|
outOfText: string;
|
|
@@ -7736,6 +7824,10 @@ declare const _default: {
|
|
|
7736
7824
|
type: import("vue").PropType<string>;
|
|
7737
7825
|
default: string;
|
|
7738
7826
|
};
|
|
7827
|
+
getRowId: {
|
|
7828
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7829
|
+
default: (row: any, index: any) => any;
|
|
7830
|
+
};
|
|
7739
7831
|
emptyStateVariant: {
|
|
7740
7832
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7741
7833
|
default: any;
|
|
@@ -7744,6 +7836,14 @@ declare const _default: {
|
|
|
7744
7836
|
type: import("vue").PropType<number>;
|
|
7745
7837
|
default: number;
|
|
7746
7838
|
};
|
|
7839
|
+
rowCustomClassKey: {
|
|
7840
|
+
type: import("vue").PropType<string>;
|
|
7841
|
+
default: string;
|
|
7842
|
+
};
|
|
7843
|
+
rowDataKey: {
|
|
7844
|
+
type: import("vue").PropType<string>;
|
|
7845
|
+
default: string;
|
|
7846
|
+
};
|
|
7747
7847
|
totalCount: {
|
|
7748
7848
|
type: import("vue").PropType<number>;
|
|
7749
7849
|
default: number;
|
|
@@ -7823,6 +7923,10 @@ declare const _default: {
|
|
|
7823
7923
|
type: import("vue").PropType<string>;
|
|
7824
7924
|
default: string;
|
|
7825
7925
|
};
|
|
7926
|
+
getRowId: {
|
|
7927
|
+
type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
|
|
7928
|
+
default: (row: any, index: any) => any;
|
|
7929
|
+
};
|
|
7826
7930
|
emptyStateVariant: {
|
|
7827
7931
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7828
7932
|
default: any;
|
|
@@ -7831,6 +7935,14 @@ declare const _default: {
|
|
|
7831
7935
|
type: import("vue").PropType<number>;
|
|
7832
7936
|
default: number;
|
|
7833
7937
|
};
|
|
7938
|
+
rowCustomClassKey: {
|
|
7939
|
+
type: import("vue").PropType<string>;
|
|
7940
|
+
default: string;
|
|
7941
|
+
};
|
|
7942
|
+
rowDataKey: {
|
|
7943
|
+
type: import("vue").PropType<string>;
|
|
7944
|
+
default: string;
|
|
7945
|
+
};
|
|
7834
7946
|
totalCount: {
|
|
7835
7947
|
type: import("vue").PropType<number>;
|
|
7836
7948
|
default: number;
|
|
@@ -7884,8 +7996,11 @@ declare const _default: {
|
|
|
7884
7996
|
emptyStateTitle: string;
|
|
7885
7997
|
isSticky: boolean;
|
|
7886
7998
|
emptyStateSubtitle: string;
|
|
7999
|
+
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7887
8000
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7888
8001
|
zIndexBase: number;
|
|
8002
|
+
rowCustomClassKey: string;
|
|
8003
|
+
rowDataKey: string;
|
|
7889
8004
|
totalCount: number;
|
|
7890
8005
|
displayingText: string;
|
|
7891
8006
|
outOfText: string;
|
|
@@ -7910,6 +8025,7 @@ declare const _default: {
|
|
|
7910
8025
|
"floating-row"?(_: {
|
|
7911
8026
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7912
8027
|
rowIndex: number;
|
|
8028
|
+
tableIndex: number;
|
|
7913
8029
|
}): any;
|
|
7914
8030
|
"empty-state"?(_: {}): any;
|
|
7915
8031
|
};
|
|
@@ -15576,11 +15692,13 @@ declare const _default: {
|
|
|
15576
15692
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15577
15693
|
optionEndIconKey: string;
|
|
15578
15694
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15695
|
+
optionFlagKey: string;
|
|
15579
15696
|
valueToCopy: string;
|
|
15580
15697
|
disabledOptionKey: string;
|
|
15581
15698
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15582
15699
|
optionTwoLinesKey: string;
|
|
15583
15700
|
groupedOptions: boolean;
|
|
15701
|
+
comparingKey: string;
|
|
15584
15702
|
fullWidth: boolean;
|
|
15585
15703
|
optionsListWidth: string;
|
|
15586
15704
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -15761,6 +15879,10 @@ declare const _default: {
|
|
|
15761
15879
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
15762
15880
|
default: any;
|
|
15763
15881
|
};
|
|
15882
|
+
optionFlagKey: {
|
|
15883
|
+
type: import("vue").PropType<string>;
|
|
15884
|
+
default: any;
|
|
15885
|
+
};
|
|
15764
15886
|
valueToCopy: {
|
|
15765
15887
|
type: import("vue").PropType<string>;
|
|
15766
15888
|
default: any;
|
|
@@ -15781,6 +15903,10 @@ declare const _default: {
|
|
|
15781
15903
|
type: import("vue").PropType<boolean>;
|
|
15782
15904
|
default: boolean;
|
|
15783
15905
|
};
|
|
15906
|
+
comparingKey: {
|
|
15907
|
+
type: import("vue").PropType<string>;
|
|
15908
|
+
default: any;
|
|
15909
|
+
};
|
|
15784
15910
|
fullWidth: {
|
|
15785
15911
|
type: import("vue").PropType<boolean>;
|
|
15786
15912
|
default: boolean;
|
|
@@ -15811,7 +15937,7 @@ declare const _default: {
|
|
|
15811
15937
|
onOnsearch?: (value: string) => any;
|
|
15812
15938
|
onOpened?: () => any;
|
|
15813
15939
|
onClosed?: () => any;
|
|
15814
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
15940
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
15815
15941
|
$attrs: {
|
|
15816
15942
|
[x: string]: unknown;
|
|
15817
15943
|
};
|
|
@@ -16000,6 +16126,10 @@ declare const _default: {
|
|
|
16000
16126
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16001
16127
|
default: any;
|
|
16002
16128
|
};
|
|
16129
|
+
optionFlagKey: {
|
|
16130
|
+
type: import("vue").PropType<string>;
|
|
16131
|
+
default: any;
|
|
16132
|
+
};
|
|
16003
16133
|
valueToCopy: {
|
|
16004
16134
|
type: import("vue").PropType<string>;
|
|
16005
16135
|
default: any;
|
|
@@ -16020,6 +16150,10 @@ declare const _default: {
|
|
|
16020
16150
|
type: import("vue").PropType<boolean>;
|
|
16021
16151
|
default: boolean;
|
|
16022
16152
|
};
|
|
16153
|
+
comparingKey: {
|
|
16154
|
+
type: import("vue").PropType<string>;
|
|
16155
|
+
default: any;
|
|
16156
|
+
};
|
|
16023
16157
|
fullWidth: {
|
|
16024
16158
|
type: import("vue").PropType<boolean>;
|
|
16025
16159
|
default: boolean;
|
|
@@ -16104,11 +16238,13 @@ declare const _default: {
|
|
|
16104
16238
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16105
16239
|
optionEndIconKey: string;
|
|
16106
16240
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16241
|
+
optionFlagKey: string;
|
|
16107
16242
|
valueToCopy: string;
|
|
16108
16243
|
disabledOptionKey: string;
|
|
16109
16244
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16110
16245
|
optionTwoLinesKey: string;
|
|
16111
16246
|
groupedOptions: boolean;
|
|
16247
|
+
comparingKey: string;
|
|
16112
16248
|
fullWidth: boolean;
|
|
16113
16249
|
optionsListWidth: string;
|
|
16114
16250
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16309,6 +16445,10 @@ declare const _default: {
|
|
|
16309
16445
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16310
16446
|
default: any;
|
|
16311
16447
|
};
|
|
16448
|
+
optionFlagKey: {
|
|
16449
|
+
type: import("vue").PropType<string>;
|
|
16450
|
+
default: any;
|
|
16451
|
+
};
|
|
16312
16452
|
valueToCopy: {
|
|
16313
16453
|
type: import("vue").PropType<string>;
|
|
16314
16454
|
default: any;
|
|
@@ -16329,6 +16469,10 @@ declare const _default: {
|
|
|
16329
16469
|
type: import("vue").PropType<boolean>;
|
|
16330
16470
|
default: boolean;
|
|
16331
16471
|
};
|
|
16472
|
+
comparingKey: {
|
|
16473
|
+
type: import("vue").PropType<string>;
|
|
16474
|
+
default: any;
|
|
16475
|
+
};
|
|
16332
16476
|
fullWidth: {
|
|
16333
16477
|
type: import("vue").PropType<boolean>;
|
|
16334
16478
|
default: boolean;
|
|
@@ -16541,6 +16685,10 @@ declare const _default: {
|
|
|
16541
16685
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16542
16686
|
default: any;
|
|
16543
16687
|
};
|
|
16688
|
+
optionFlagKey: {
|
|
16689
|
+
type: import("vue").PropType<string>;
|
|
16690
|
+
default: any;
|
|
16691
|
+
};
|
|
16544
16692
|
valueToCopy: {
|
|
16545
16693
|
type: import("vue").PropType<string>;
|
|
16546
16694
|
default: any;
|
|
@@ -16561,6 +16709,10 @@ declare const _default: {
|
|
|
16561
16709
|
type: import("vue").PropType<boolean>;
|
|
16562
16710
|
default: boolean;
|
|
16563
16711
|
};
|
|
16712
|
+
comparingKey: {
|
|
16713
|
+
type: import("vue").PropType<string>;
|
|
16714
|
+
default: any;
|
|
16715
|
+
};
|
|
16564
16716
|
fullWidth: {
|
|
16565
16717
|
type: import("vue").PropType<boolean>;
|
|
16566
16718
|
default: boolean;
|
|
@@ -16645,11 +16797,13 @@ declare const _default: {
|
|
|
16645
16797
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16646
16798
|
optionEndIconKey: string;
|
|
16647
16799
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16800
|
+
optionFlagKey: string;
|
|
16648
16801
|
valueToCopy: string;
|
|
16649
16802
|
disabledOptionKey: string;
|
|
16650
16803
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16651
16804
|
optionTwoLinesKey: string;
|
|
16652
16805
|
groupedOptions: boolean;
|
|
16806
|
+
comparingKey: string;
|
|
16653
16807
|
fullWidth: boolean;
|
|
16654
16808
|
optionsListWidth: string;
|
|
16655
16809
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16683,11 +16837,13 @@ declare const _default: {
|
|
|
16683
16837
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16684
16838
|
optionAndIconKey: string;
|
|
16685
16839
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16840
|
+
optionFlagKey: string;
|
|
16686
16841
|
feedbackVariant: "success" | "warning" | "error";
|
|
16687
16842
|
valueToCopy: string;
|
|
16688
16843
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
16689
16844
|
size: "small" | "medium" | "large";
|
|
16690
16845
|
showAllSelectedText: boolean;
|
|
16846
|
+
allSelected: boolean;
|
|
16691
16847
|
onKeydown: (event: any) => void;
|
|
16692
16848
|
onClick: () => void;
|
|
16693
16849
|
};
|
|
@@ -16730,6 +16886,8 @@ declare const _default: {
|
|
|
16730
16886
|
optionIconKey: string;
|
|
16731
16887
|
optionImageKey: string;
|
|
16732
16888
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16889
|
+
optionFlagKey: string;
|
|
16890
|
+
allSelected: boolean;
|
|
16733
16891
|
selectedOption: any;
|
|
16734
16892
|
showFeedbackIcon: boolean;
|
|
16735
16893
|
brandIconType: "android" | "ios";
|
|
@@ -16818,6 +16976,14 @@ declare const _default: {
|
|
|
16818
16976
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16819
16977
|
default: any;
|
|
16820
16978
|
};
|
|
16979
|
+
optionFlagKey: {
|
|
16980
|
+
type: import("vue").PropType<string>;
|
|
16981
|
+
default: any;
|
|
16982
|
+
};
|
|
16983
|
+
allSelected: {
|
|
16984
|
+
type: import("vue").PropType<boolean>;
|
|
16985
|
+
default: boolean;
|
|
16986
|
+
};
|
|
16821
16987
|
selectedOption: {
|
|
16822
16988
|
type: import("vue").PropType<unknown>;
|
|
16823
16989
|
default: any;
|
|
@@ -16840,7 +17006,7 @@ declare const _default: {
|
|
|
16840
17006
|
};
|
|
16841
17007
|
}>> & {
|
|
16842
17008
|
onClick?: () => any;
|
|
16843
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
17009
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
16844
17010
|
$attrs: {
|
|
16845
17011
|
[x: string]: unknown;
|
|
16846
17012
|
};
|
|
@@ -16937,6 +17103,14 @@ declare const _default: {
|
|
|
16937
17103
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
16938
17104
|
default: any;
|
|
16939
17105
|
};
|
|
17106
|
+
optionFlagKey: {
|
|
17107
|
+
type: import("vue").PropType<string>;
|
|
17108
|
+
default: any;
|
|
17109
|
+
};
|
|
17110
|
+
allSelected: {
|
|
17111
|
+
type: import("vue").PropType<boolean>;
|
|
17112
|
+
default: boolean;
|
|
17113
|
+
};
|
|
16940
17114
|
selectedOption: {
|
|
16941
17115
|
type: import("vue").PropType<unknown>;
|
|
16942
17116
|
default: any;
|
|
@@ -16981,6 +17155,8 @@ declare const _default: {
|
|
|
16981
17155
|
optionIconKey: string;
|
|
16982
17156
|
optionImageKey: string;
|
|
16983
17157
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17158
|
+
optionFlagKey: string;
|
|
17159
|
+
allSelected: boolean;
|
|
16984
17160
|
selectedOption: any;
|
|
16985
17161
|
showFeedbackIcon: boolean;
|
|
16986
17162
|
brandIconType: "android" | "ios";
|
|
@@ -17089,6 +17265,14 @@ declare const _default: {
|
|
|
17089
17265
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17090
17266
|
default: any;
|
|
17091
17267
|
};
|
|
17268
|
+
optionFlagKey: {
|
|
17269
|
+
type: import("vue").PropType<string>;
|
|
17270
|
+
default: any;
|
|
17271
|
+
};
|
|
17272
|
+
allSelected: {
|
|
17273
|
+
type: import("vue").PropType<boolean>;
|
|
17274
|
+
default: boolean;
|
|
17275
|
+
};
|
|
17092
17276
|
selectedOption: {
|
|
17093
17277
|
type: import("vue").PropType<unknown>;
|
|
17094
17278
|
default: any;
|
|
@@ -17198,6 +17382,14 @@ declare const _default: {
|
|
|
17198
17382
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17199
17383
|
default: any;
|
|
17200
17384
|
};
|
|
17385
|
+
optionFlagKey: {
|
|
17386
|
+
type: import("vue").PropType<string>;
|
|
17387
|
+
default: any;
|
|
17388
|
+
};
|
|
17389
|
+
allSelected: {
|
|
17390
|
+
type: import("vue").PropType<boolean>;
|
|
17391
|
+
default: boolean;
|
|
17392
|
+
};
|
|
17201
17393
|
selectedOption: {
|
|
17202
17394
|
type: import("vue").PropType<unknown>;
|
|
17203
17395
|
default: any;
|
|
@@ -17242,6 +17434,8 @@ declare const _default: {
|
|
|
17242
17434
|
optionIconKey: string;
|
|
17243
17435
|
optionImageKey: string;
|
|
17244
17436
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17437
|
+
optionFlagKey: string;
|
|
17438
|
+
allSelected: boolean;
|
|
17245
17439
|
selectedOption: any;
|
|
17246
17440
|
showFeedbackIcon: boolean;
|
|
17247
17441
|
brandIconType: "android" | "ios";
|
|
@@ -17250,6 +17444,7 @@ declare const _default: {
|
|
|
17250
17444
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
17251
17445
|
$slots: {
|
|
17252
17446
|
image?(_: {}): any;
|
|
17447
|
+
flag?(_: {}): any;
|
|
17253
17448
|
"icon-start"?(_: {}): any;
|
|
17254
17449
|
"displayed-value"?(_: {}): any;
|
|
17255
17450
|
"end-icon"?(_: {}): any;
|
|
@@ -17303,6 +17498,10 @@ declare const _default: {
|
|
|
17303
17498
|
type: import("vue").PropType<(option: unknown) => string>;
|
|
17304
17499
|
required: true;
|
|
17305
17500
|
};
|
|
17501
|
+
allSelected: {
|
|
17502
|
+
type: import("vue").PropType<boolean>;
|
|
17503
|
+
default: boolean;
|
|
17504
|
+
};
|
|
17306
17505
|
selectedOption: {
|
|
17307
17506
|
type: import("vue").PropType<unknown>;
|
|
17308
17507
|
required: true;
|
|
@@ -17349,6 +17548,10 @@ declare const _default: {
|
|
|
17349
17548
|
type: import("vue").PropType<(option: unknown) => string>;
|
|
17350
17549
|
required: true;
|
|
17351
17550
|
};
|
|
17551
|
+
allSelected: {
|
|
17552
|
+
type: import("vue").PropType<boolean>;
|
|
17553
|
+
default: boolean;
|
|
17554
|
+
};
|
|
17352
17555
|
selectedOption: {
|
|
17353
17556
|
type: import("vue").PropType<unknown>;
|
|
17354
17557
|
required: true;
|
|
@@ -17366,6 +17569,7 @@ declare const _default: {
|
|
|
17366
17569
|
disabled: boolean;
|
|
17367
17570
|
open: boolean;
|
|
17368
17571
|
feedbackVariant: string;
|
|
17572
|
+
allSelected: boolean;
|
|
17369
17573
|
displayedValue: any;
|
|
17370
17574
|
}>;
|
|
17371
17575
|
ButtonDropdownTrigger: import("vue").DefineComponent<{
|
|
@@ -18037,6 +18241,8 @@ declare const _default: {
|
|
|
18037
18241
|
optionIconKey: string;
|
|
18038
18242
|
optionImageKey: string;
|
|
18039
18243
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18244
|
+
optionFlagKey: string;
|
|
18245
|
+
allSelected: boolean;
|
|
18040
18246
|
selectedOption: any;
|
|
18041
18247
|
showFeedbackIcon: boolean;
|
|
18042
18248
|
brandIconType: "android" | "ios";
|
|
@@ -18125,6 +18331,14 @@ declare const _default: {
|
|
|
18125
18331
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18126
18332
|
default: any;
|
|
18127
18333
|
};
|
|
18334
|
+
optionFlagKey: {
|
|
18335
|
+
type: import("vue").PropType<string>;
|
|
18336
|
+
default: any;
|
|
18337
|
+
};
|
|
18338
|
+
allSelected: {
|
|
18339
|
+
type: import("vue").PropType<boolean>;
|
|
18340
|
+
default: boolean;
|
|
18341
|
+
};
|
|
18128
18342
|
selectedOption: {
|
|
18129
18343
|
type: import("vue").PropType<unknown>;
|
|
18130
18344
|
default: any;
|
|
@@ -18147,7 +18361,7 @@ declare const _default: {
|
|
|
18147
18361
|
};
|
|
18148
18362
|
}>> & {
|
|
18149
18363
|
onClick?: () => any;
|
|
18150
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
18364
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
18151
18365
|
$attrs: {
|
|
18152
18366
|
[x: string]: unknown;
|
|
18153
18367
|
};
|
|
@@ -18244,6 +18458,14 @@ declare const _default: {
|
|
|
18244
18458
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18245
18459
|
default: any;
|
|
18246
18460
|
};
|
|
18461
|
+
optionFlagKey: {
|
|
18462
|
+
type: import("vue").PropType<string>;
|
|
18463
|
+
default: any;
|
|
18464
|
+
};
|
|
18465
|
+
allSelected: {
|
|
18466
|
+
type: import("vue").PropType<boolean>;
|
|
18467
|
+
default: boolean;
|
|
18468
|
+
};
|
|
18247
18469
|
selectedOption: {
|
|
18248
18470
|
type: import("vue").PropType<unknown>;
|
|
18249
18471
|
default: any;
|
|
@@ -18288,6 +18510,8 @@ declare const _default: {
|
|
|
18288
18510
|
optionIconKey: string;
|
|
18289
18511
|
optionImageKey: string;
|
|
18290
18512
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18513
|
+
optionFlagKey: string;
|
|
18514
|
+
allSelected: boolean;
|
|
18291
18515
|
selectedOption: any;
|
|
18292
18516
|
showFeedbackIcon: boolean;
|
|
18293
18517
|
brandIconType: "android" | "ios";
|
|
@@ -18396,6 +18620,14 @@ declare const _default: {
|
|
|
18396
18620
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18397
18621
|
default: any;
|
|
18398
18622
|
};
|
|
18623
|
+
optionFlagKey: {
|
|
18624
|
+
type: import("vue").PropType<string>;
|
|
18625
|
+
default: any;
|
|
18626
|
+
};
|
|
18627
|
+
allSelected: {
|
|
18628
|
+
type: import("vue").PropType<boolean>;
|
|
18629
|
+
default: boolean;
|
|
18630
|
+
};
|
|
18399
18631
|
selectedOption: {
|
|
18400
18632
|
type: import("vue").PropType<unknown>;
|
|
18401
18633
|
default: any;
|
|
@@ -18505,6 +18737,14 @@ declare const _default: {
|
|
|
18505
18737
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18506
18738
|
default: any;
|
|
18507
18739
|
};
|
|
18740
|
+
optionFlagKey: {
|
|
18741
|
+
type: import("vue").PropType<string>;
|
|
18742
|
+
default: any;
|
|
18743
|
+
};
|
|
18744
|
+
allSelected: {
|
|
18745
|
+
type: import("vue").PropType<boolean>;
|
|
18746
|
+
default: boolean;
|
|
18747
|
+
};
|
|
18508
18748
|
selectedOption: {
|
|
18509
18749
|
type: import("vue").PropType<unknown>;
|
|
18510
18750
|
default: any;
|
|
@@ -18549,6 +18789,8 @@ declare const _default: {
|
|
|
18549
18789
|
optionIconKey: string;
|
|
18550
18790
|
optionImageKey: string;
|
|
18551
18791
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18792
|
+
optionFlagKey: string;
|
|
18793
|
+
allSelected: boolean;
|
|
18552
18794
|
selectedOption: any;
|
|
18553
18795
|
showFeedbackIcon: boolean;
|
|
18554
18796
|
brandIconType: "android" | "ios";
|
|
@@ -18557,6 +18799,7 @@ declare const _default: {
|
|
|
18557
18799
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
18558
18800
|
$slots: {
|
|
18559
18801
|
image?(_: {}): any;
|
|
18802
|
+
flag?(_: {}): any;
|
|
18560
18803
|
"icon-start"?(_: {}): any;
|
|
18561
18804
|
"displayed-value"?(_: {}): any;
|
|
18562
18805
|
"end-icon"?(_: {}): any;
|
|
@@ -19047,6 +19290,7 @@ declare const _default: {
|
|
|
19047
19290
|
disabled: boolean;
|
|
19048
19291
|
active: boolean;
|
|
19049
19292
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19293
|
+
optionFlagKey: string;
|
|
19050
19294
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19051
19295
|
optionTwoLinesKey: string;
|
|
19052
19296
|
isIndeterminate: boolean;
|
|
@@ -19079,6 +19323,10 @@ declare const _default: {
|
|
|
19079
19323
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19080
19324
|
default: string;
|
|
19081
19325
|
};
|
|
19326
|
+
optionFlagKey: {
|
|
19327
|
+
type: import("vue").PropType<string>;
|
|
19328
|
+
default: any;
|
|
19329
|
+
};
|
|
19082
19330
|
optionTwoLinesVariant: {
|
|
19083
19331
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19084
19332
|
default: any;
|
|
@@ -19144,7 +19392,7 @@ declare const _default: {
|
|
|
19144
19392
|
};
|
|
19145
19393
|
}>> & {
|
|
19146
19394
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
19147
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
19395
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
19148
19396
|
$attrs: {
|
|
19149
19397
|
[x: string]: unknown;
|
|
19150
19398
|
};
|
|
@@ -19175,6 +19423,10 @@ declare const _default: {
|
|
|
19175
19423
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19176
19424
|
default: string;
|
|
19177
19425
|
};
|
|
19426
|
+
optionFlagKey: {
|
|
19427
|
+
type: import("vue").PropType<string>;
|
|
19428
|
+
default: any;
|
|
19429
|
+
};
|
|
19178
19430
|
optionTwoLinesVariant: {
|
|
19179
19431
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19180
19432
|
default: any;
|
|
@@ -19247,6 +19499,7 @@ declare const _default: {
|
|
|
19247
19499
|
disabled: boolean;
|
|
19248
19500
|
active: boolean;
|
|
19249
19501
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19502
|
+
optionFlagKey: string;
|
|
19250
19503
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19251
19504
|
optionTwoLinesKey: string;
|
|
19252
19505
|
isIndeterminate: boolean;
|
|
@@ -19299,6 +19552,10 @@ declare const _default: {
|
|
|
19299
19552
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19300
19553
|
default: string;
|
|
19301
19554
|
};
|
|
19555
|
+
optionFlagKey: {
|
|
19556
|
+
type: import("vue").PropType<string>;
|
|
19557
|
+
default: any;
|
|
19558
|
+
};
|
|
19302
19559
|
optionTwoLinesVariant: {
|
|
19303
19560
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19304
19561
|
default: any;
|
|
@@ -19385,6 +19642,10 @@ declare const _default: {
|
|
|
19385
19642
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19386
19643
|
default: string;
|
|
19387
19644
|
};
|
|
19645
|
+
optionFlagKey: {
|
|
19646
|
+
type: import("vue").PropType<string>;
|
|
19647
|
+
default: any;
|
|
19648
|
+
};
|
|
19388
19649
|
optionTwoLinesVariant: {
|
|
19389
19650
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19390
19651
|
default: any;
|
|
@@ -19457,6 +19718,7 @@ declare const _default: {
|
|
|
19457
19718
|
disabled: boolean;
|
|
19458
19719
|
active: boolean;
|
|
19459
19720
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19721
|
+
optionFlagKey: string;
|
|
19460
19722
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19461
19723
|
optionTwoLinesKey: string;
|
|
19462
19724
|
isIndeterminate: boolean;
|
|
@@ -19475,6 +19737,7 @@ declare const _default: {
|
|
|
19475
19737
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
19476
19738
|
$slots: {
|
|
19477
19739
|
image?(_: {}): any;
|
|
19740
|
+
flag?(_: {}): any;
|
|
19478
19741
|
"icon-start"?(_: {}): any;
|
|
19479
19742
|
default?(_: {}): any;
|
|
19480
19743
|
"icon-end"?(_: {}): any;
|
|
@@ -19526,6 +19789,10 @@ declare const _default: {
|
|
|
19526
19789
|
type: import("vue").PropType<(option: unknown) => string>;
|
|
19527
19790
|
required: true;
|
|
19528
19791
|
};
|
|
19792
|
+
allSelected: {
|
|
19793
|
+
type: import("vue").PropType<boolean>;
|
|
19794
|
+
default: boolean;
|
|
19795
|
+
};
|
|
19529
19796
|
selectedOption: {
|
|
19530
19797
|
type: import("vue").PropType<unknown>;
|
|
19531
19798
|
required: true;
|
|
@@ -19572,6 +19839,10 @@ declare const _default: {
|
|
|
19572
19839
|
type: import("vue").PropType<(option: unknown) => string>;
|
|
19573
19840
|
required: true;
|
|
19574
19841
|
};
|
|
19842
|
+
allSelected: {
|
|
19843
|
+
type: import("vue").PropType<boolean>;
|
|
19844
|
+
default: boolean;
|
|
19845
|
+
};
|
|
19575
19846
|
selectedOption: {
|
|
19576
19847
|
type: import("vue").PropType<unknown>;
|
|
19577
19848
|
required: true;
|
|
@@ -19589,6 +19860,7 @@ declare const _default: {
|
|
|
19589
19860
|
disabled: boolean;
|
|
19590
19861
|
open: boolean;
|
|
19591
19862
|
feedbackVariant: string;
|
|
19863
|
+
allSelected: boolean;
|
|
19592
19864
|
displayedValue: any;
|
|
19593
19865
|
}> | ({
|
|
19594
19866
|
new (...args: any[]): {
|
|
@@ -19635,11 +19907,13 @@ declare const _default: {
|
|
|
19635
19907
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19636
19908
|
optionEndIconKey: string;
|
|
19637
19909
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19910
|
+
optionFlagKey: string;
|
|
19638
19911
|
valueToCopy: string;
|
|
19639
19912
|
disabledOptionKey: string;
|
|
19640
19913
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19641
19914
|
optionTwoLinesKey: string;
|
|
19642
19915
|
groupedOptions: boolean;
|
|
19916
|
+
comparingKey: string;
|
|
19643
19917
|
fullWidth: boolean;
|
|
19644
19918
|
optionsListWidth: string;
|
|
19645
19919
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19820,6 +20094,10 @@ declare const _default: {
|
|
|
19820
20094
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19821
20095
|
default: any;
|
|
19822
20096
|
};
|
|
20097
|
+
optionFlagKey: {
|
|
20098
|
+
type: import("vue").PropType<string>;
|
|
20099
|
+
default: any;
|
|
20100
|
+
};
|
|
19823
20101
|
valueToCopy: {
|
|
19824
20102
|
type: import("vue").PropType<string>;
|
|
19825
20103
|
default: any;
|
|
@@ -19840,6 +20118,10 @@ declare const _default: {
|
|
|
19840
20118
|
type: import("vue").PropType<boolean>;
|
|
19841
20119
|
default: boolean;
|
|
19842
20120
|
};
|
|
20121
|
+
comparingKey: {
|
|
20122
|
+
type: import("vue").PropType<string>;
|
|
20123
|
+
default: any;
|
|
20124
|
+
};
|
|
19843
20125
|
fullWidth: {
|
|
19844
20126
|
type: import("vue").PropType<boolean>;
|
|
19845
20127
|
default: boolean;
|
|
@@ -19870,7 +20152,7 @@ declare const _default: {
|
|
|
19870
20152
|
onOnsearch?: (value: string) => any;
|
|
19871
20153
|
onOpened?: () => any;
|
|
19872
20154
|
onClosed?: () => any;
|
|
19873
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
20155
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
19874
20156
|
$attrs: {
|
|
19875
20157
|
[x: string]: unknown;
|
|
19876
20158
|
};
|
|
@@ -20059,6 +20341,10 @@ declare const _default: {
|
|
|
20059
20341
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20060
20342
|
default: any;
|
|
20061
20343
|
};
|
|
20344
|
+
optionFlagKey: {
|
|
20345
|
+
type: import("vue").PropType<string>;
|
|
20346
|
+
default: any;
|
|
20347
|
+
};
|
|
20062
20348
|
valueToCopy: {
|
|
20063
20349
|
type: import("vue").PropType<string>;
|
|
20064
20350
|
default: any;
|
|
@@ -20079,6 +20365,10 @@ declare const _default: {
|
|
|
20079
20365
|
type: import("vue").PropType<boolean>;
|
|
20080
20366
|
default: boolean;
|
|
20081
20367
|
};
|
|
20368
|
+
comparingKey: {
|
|
20369
|
+
type: import("vue").PropType<string>;
|
|
20370
|
+
default: any;
|
|
20371
|
+
};
|
|
20082
20372
|
fullWidth: {
|
|
20083
20373
|
type: import("vue").PropType<boolean>;
|
|
20084
20374
|
default: boolean;
|
|
@@ -20163,11 +20453,13 @@ declare const _default: {
|
|
|
20163
20453
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20164
20454
|
optionEndIconKey: string;
|
|
20165
20455
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20456
|
+
optionFlagKey: string;
|
|
20166
20457
|
valueToCopy: string;
|
|
20167
20458
|
disabledOptionKey: string;
|
|
20168
20459
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20169
20460
|
optionTwoLinesKey: string;
|
|
20170
20461
|
groupedOptions: boolean;
|
|
20462
|
+
comparingKey: string;
|
|
20171
20463
|
fullWidth: boolean;
|
|
20172
20464
|
optionsListWidth: string;
|
|
20173
20465
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20368,6 +20660,10 @@ declare const _default: {
|
|
|
20368
20660
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20369
20661
|
default: any;
|
|
20370
20662
|
};
|
|
20663
|
+
optionFlagKey: {
|
|
20664
|
+
type: import("vue").PropType<string>;
|
|
20665
|
+
default: any;
|
|
20666
|
+
};
|
|
20371
20667
|
valueToCopy: {
|
|
20372
20668
|
type: import("vue").PropType<string>;
|
|
20373
20669
|
default: any;
|
|
@@ -20388,6 +20684,10 @@ declare const _default: {
|
|
|
20388
20684
|
type: import("vue").PropType<boolean>;
|
|
20389
20685
|
default: boolean;
|
|
20390
20686
|
};
|
|
20687
|
+
comparingKey: {
|
|
20688
|
+
type: import("vue").PropType<string>;
|
|
20689
|
+
default: any;
|
|
20690
|
+
};
|
|
20391
20691
|
fullWidth: {
|
|
20392
20692
|
type: import("vue").PropType<boolean>;
|
|
20393
20693
|
default: boolean;
|
|
@@ -20600,6 +20900,10 @@ declare const _default: {
|
|
|
20600
20900
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20601
20901
|
default: any;
|
|
20602
20902
|
};
|
|
20903
|
+
optionFlagKey: {
|
|
20904
|
+
type: import("vue").PropType<string>;
|
|
20905
|
+
default: any;
|
|
20906
|
+
};
|
|
20603
20907
|
valueToCopy: {
|
|
20604
20908
|
type: import("vue").PropType<string>;
|
|
20605
20909
|
default: any;
|
|
@@ -20620,6 +20924,10 @@ declare const _default: {
|
|
|
20620
20924
|
type: import("vue").PropType<boolean>;
|
|
20621
20925
|
default: boolean;
|
|
20622
20926
|
};
|
|
20927
|
+
comparingKey: {
|
|
20928
|
+
type: import("vue").PropType<string>;
|
|
20929
|
+
default: any;
|
|
20930
|
+
};
|
|
20623
20931
|
fullWidth: {
|
|
20624
20932
|
type: import("vue").PropType<boolean>;
|
|
20625
20933
|
default: boolean;
|
|
@@ -20704,11 +21012,13 @@ declare const _default: {
|
|
|
20704
21012
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20705
21013
|
optionEndIconKey: string;
|
|
20706
21014
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21015
|
+
optionFlagKey: string;
|
|
20707
21016
|
valueToCopy: string;
|
|
20708
21017
|
disabledOptionKey: string;
|
|
20709
21018
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20710
21019
|
optionTwoLinesKey: string;
|
|
20711
21020
|
groupedOptions: boolean;
|
|
21021
|
+
comparingKey: string;
|
|
20712
21022
|
fullWidth: boolean;
|
|
20713
21023
|
optionsListWidth: string;
|
|
20714
21024
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20742,11 +21052,13 @@ declare const _default: {
|
|
|
20742
21052
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20743
21053
|
optionAndIconKey: string;
|
|
20744
21054
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21055
|
+
optionFlagKey: string;
|
|
20745
21056
|
feedbackVariant: "success" | "warning" | "error";
|
|
20746
21057
|
valueToCopy: string;
|
|
20747
21058
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
20748
21059
|
size: "small" | "medium" | "large";
|
|
20749
21060
|
showAllSelectedText: boolean;
|
|
21061
|
+
allSelected: boolean;
|
|
20750
21062
|
onKeydown: (event: any) => void;
|
|
20751
21063
|
onClick: () => void;
|
|
20752
21064
|
};
|
|
@@ -21265,6 +21577,7 @@ declare const _default: {
|
|
|
21265
21577
|
disabled: boolean;
|
|
21266
21578
|
active: boolean;
|
|
21267
21579
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21580
|
+
optionFlagKey: string;
|
|
21268
21581
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
21269
21582
|
optionTwoLinesKey: string;
|
|
21270
21583
|
isIndeterminate: boolean;
|
|
@@ -21297,6 +21610,10 @@ declare const _default: {
|
|
|
21297
21610
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21298
21611
|
default: string;
|
|
21299
21612
|
};
|
|
21613
|
+
optionFlagKey: {
|
|
21614
|
+
type: import("vue").PropType<string>;
|
|
21615
|
+
default: any;
|
|
21616
|
+
};
|
|
21300
21617
|
optionTwoLinesVariant: {
|
|
21301
21618
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
21302
21619
|
default: any;
|
|
@@ -21362,7 +21679,7 @@ declare const _default: {
|
|
|
21362
21679
|
};
|
|
21363
21680
|
}>> & {
|
|
21364
21681
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
21365
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
21682
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
21366
21683
|
$attrs: {
|
|
21367
21684
|
[x: string]: unknown;
|
|
21368
21685
|
};
|
|
@@ -21393,6 +21710,10 @@ declare const _default: {
|
|
|
21393
21710
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21394
21711
|
default: string;
|
|
21395
21712
|
};
|
|
21713
|
+
optionFlagKey: {
|
|
21714
|
+
type: import("vue").PropType<string>;
|
|
21715
|
+
default: any;
|
|
21716
|
+
};
|
|
21396
21717
|
optionTwoLinesVariant: {
|
|
21397
21718
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
21398
21719
|
default: any;
|
|
@@ -21465,6 +21786,7 @@ declare const _default: {
|
|
|
21465
21786
|
disabled: boolean;
|
|
21466
21787
|
active: boolean;
|
|
21467
21788
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21789
|
+
optionFlagKey: string;
|
|
21468
21790
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
21469
21791
|
optionTwoLinesKey: string;
|
|
21470
21792
|
isIndeterminate: boolean;
|
|
@@ -21517,6 +21839,10 @@ declare const _default: {
|
|
|
21517
21839
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21518
21840
|
default: string;
|
|
21519
21841
|
};
|
|
21842
|
+
optionFlagKey: {
|
|
21843
|
+
type: import("vue").PropType<string>;
|
|
21844
|
+
default: any;
|
|
21845
|
+
};
|
|
21520
21846
|
optionTwoLinesVariant: {
|
|
21521
21847
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
21522
21848
|
default: any;
|
|
@@ -21603,6 +21929,10 @@ declare const _default: {
|
|
|
21603
21929
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
21604
21930
|
default: string;
|
|
21605
21931
|
};
|
|
21932
|
+
optionFlagKey: {
|
|
21933
|
+
type: import("vue").PropType<string>;
|
|
21934
|
+
default: any;
|
|
21935
|
+
};
|
|
21606
21936
|
optionTwoLinesVariant: {
|
|
21607
21937
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
21608
21938
|
default: any;
|
|
@@ -21675,6 +22005,7 @@ declare const _default: {
|
|
|
21675
22005
|
disabled: boolean;
|
|
21676
22006
|
active: boolean;
|
|
21677
22007
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22008
|
+
optionFlagKey: string;
|
|
21678
22009
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
21679
22010
|
optionTwoLinesKey: string;
|
|
21680
22011
|
isIndeterminate: boolean;
|
|
@@ -21693,6 +22024,7 @@ declare const _default: {
|
|
|
21693
22024
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
21694
22025
|
$slots: {
|
|
21695
22026
|
image?(_: {}): any;
|
|
22027
|
+
flag?(_: {}): any;
|
|
21696
22028
|
"icon-start"?(_: {}): any;
|
|
21697
22029
|
default?(_: {}): any;
|
|
21698
22030
|
"icon-end"?(_: {}): any;
|