@ironsource/shared-ui 2.1.8-test.0 → 2.1.8
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/DataGrid.vue_vue_type_style_index_0_scoped_d27e1304_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_62a620ee_lang.css +1 -0
- package/GroupOption.vue_vue_type_style_index_0_scoped_5f372a81_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_cfedf78b_lang.css +1 -0
- package/Table.vue_vue_type_style_index_0_scoped_9375215d_lang.css +1 -0
- package/components/chart/consts.d.ts +0 -6
- package/components/chart/consts.js +15 -14
- package/components/chart/index.d.ts +20 -21
- package/components/dropdown/common/Dropdown.common.d.ts +1 -0
- package/components/dropdown/common/Dropdown.common.js +207 -178
- package/components/dropdown/common/consts.d.ts +1 -0
- package/components/dropdown/common/consts.js +4 -0
- package/components/dropdown/common/useGroupedOptions.d.ts +10 -0
- package/components/dropdown/common/useGroupedOptions.js +57 -0
- package/components/dropdown/v4/DropdownV4.vue.d.ts +6 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +136 -125
- package/components/dropdown/v4/GroupOption.vue.d.ts +9 -0
- package/components/dropdown/v4/GroupOption.vue.js +7 -0
- package/components/dropdown/v4/GroupOption.vue2.js +29 -0
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +8 -0
- package/components/dropdown/v4/index.d.ts +21 -1
- package/components/table/common/Table.types.d.ts +6 -0
- package/components/table/v3/Table.vue.d.ts +3 -13
- package/components/table/v3/Table.vue.js +5 -5
- package/components/table/v3/Table.vue2.js +2 -2
- package/components/table/v3/index.d.ts +7 -42
- package/components/table/v4/DataGrid.vue.d.ts +3 -13
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +5 -5
- package/components/table/v4/MultipleDataGrid.vue.d.ts +7 -1
- package/components/table/v4/MultipleDataGrid.vue.js +3 -3
- package/components/table/v4/MultipleDataGrid.vue2.js +76 -75
- package/components/table/v4/index.d.ts +28 -43
- package/index.d.ts +112 -172
- package/index.js +9 -11
- package/mocks/apps.d.ts +7 -0
- package/package.json +1 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_2f666594_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_00ccab6b_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +0 -1
- package/Table.vue_vue_type_style_index_0_scoped_76fef9bd_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -5581,12 +5581,7 @@ declare const _default: {
|
|
|
5581
5581
|
"onUpdate:search"?: (query: string) => any;
|
|
5582
5582
|
onOnScroll?: (event: Event) => any;
|
|
5583
5583
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
5584
|
-
onSaveRow?: (args_0:
|
|
5585
|
-
value: unknown;
|
|
5586
|
-
confirm: () => void;
|
|
5587
|
-
rowIndex: number;
|
|
5588
|
-
cellIndex: number;
|
|
5589
|
-
}) => any;
|
|
5584
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
5590
5585
|
onLoadMore?: () => any;
|
|
5591
5586
|
onOnClearSearch?: () => any;
|
|
5592
5587
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -5604,12 +5599,7 @@ declare const _default: {
|
|
|
5604
5599
|
}>;
|
|
5605
5600
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5606
5601
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5607
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
5608
|
-
value: unknown;
|
|
5609
|
-
confirm: () => void;
|
|
5610
|
-
rowIndex: number;
|
|
5611
|
-
cellIndex: number;
|
|
5612
|
-
}) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
|
|
5602
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
|
|
5613
5603
|
$el: any;
|
|
5614
5604
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5615
5605
|
sort: {
|
|
@@ -5725,12 +5715,7 @@ declare const _default: {
|
|
|
5725
5715
|
"onUpdate:search"?: (query: string) => any;
|
|
5726
5716
|
onOnScroll?: (event: Event) => any;
|
|
5727
5717
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
5728
|
-
onSaveRow?: (args_0:
|
|
5729
|
-
value: unknown;
|
|
5730
|
-
confirm: () => void;
|
|
5731
|
-
rowIndex: number;
|
|
5732
|
-
cellIndex: number;
|
|
5733
|
-
}) => any;
|
|
5718
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
5734
5719
|
onLoadMore?: () => any;
|
|
5735
5720
|
onOnClearSearch?: () => any;
|
|
5736
5721
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -5744,12 +5729,7 @@ declare const _default: {
|
|
|
5744
5729
|
"update:selection": (selection: unknown[]) => void;
|
|
5745
5730
|
onScroll: (event: Event) => void;
|
|
5746
5731
|
onClearSearch: () => void;
|
|
5747
|
-
saveRow: (args_0:
|
|
5748
|
-
value: unknown;
|
|
5749
|
-
confirm: () => void;
|
|
5750
|
-
rowIndex: number;
|
|
5751
|
-
cellIndex: number;
|
|
5752
|
-
}) => void;
|
|
5732
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
5753
5733
|
loadMore: () => void;
|
|
5754
5734
|
selectAll: (value: boolean) => void;
|
|
5755
5735
|
selectRow: (value: boolean) => void;
|
|
@@ -5914,12 +5894,7 @@ declare const _default: {
|
|
|
5914
5894
|
"onUpdate:search"?: (query: string) => any;
|
|
5915
5895
|
onOnScroll?: (event: Event) => any;
|
|
5916
5896
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
5917
|
-
onSaveRow?: (args_0:
|
|
5918
|
-
value: unknown;
|
|
5919
|
-
confirm: () => void;
|
|
5920
|
-
rowIndex: number;
|
|
5921
|
-
cellIndex: number;
|
|
5922
|
-
}) => any;
|
|
5897
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
5923
5898
|
onLoadMore?: () => any;
|
|
5924
5899
|
onOnClearSearch?: () => any;
|
|
5925
5900
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6045,12 +6020,7 @@ declare const _default: {
|
|
|
6045
6020
|
"onUpdate:search"?: (query: string) => any;
|
|
6046
6021
|
onOnScroll?: (event: Event) => any;
|
|
6047
6022
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6048
|
-
onSaveRow?: (args_0:
|
|
6049
|
-
value: unknown;
|
|
6050
|
-
confirm: () => void;
|
|
6051
|
-
rowIndex: number;
|
|
6052
|
-
cellIndex: number;
|
|
6053
|
-
}) => any;
|
|
6023
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6054
6024
|
onLoadMore?: () => any;
|
|
6055
6025
|
onOnClearSearch?: () => any;
|
|
6056
6026
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6064,12 +6034,7 @@ declare const _default: {
|
|
|
6064
6034
|
"update:selection": (selection: unknown[]) => void;
|
|
6065
6035
|
onScroll: (event: Event) => void;
|
|
6066
6036
|
onClearSearch: () => void;
|
|
6067
|
-
saveRow: (args_0:
|
|
6068
|
-
value: unknown;
|
|
6069
|
-
confirm: () => void;
|
|
6070
|
-
rowIndex: number;
|
|
6071
|
-
cellIndex: number;
|
|
6072
|
-
}) => void;
|
|
6037
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
6073
6038
|
loadMore: () => void;
|
|
6074
6039
|
selectAll: (value: boolean) => void;
|
|
6075
6040
|
selectRow: (value: boolean) => void;
|
|
@@ -6366,12 +6331,7 @@ declare const _default: {
|
|
|
6366
6331
|
"onUpdate:search"?: (query: string) => any;
|
|
6367
6332
|
onOnScroll?: (event: Event) => any;
|
|
6368
6333
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6369
|
-
onSaveRow?: (args_0:
|
|
6370
|
-
value: unknown;
|
|
6371
|
-
confirm: () => void;
|
|
6372
|
-
rowIndex: number;
|
|
6373
|
-
cellIndex: number;
|
|
6374
|
-
}) => any;
|
|
6334
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6375
6335
|
onLoadMore?: () => any;
|
|
6376
6336
|
onOnClearSearch?: () => any;
|
|
6377
6337
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6389,12 +6349,7 @@ declare const _default: {
|
|
|
6389
6349
|
}>;
|
|
6390
6350
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6391
6351
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6392
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
6393
|
-
value: unknown;
|
|
6394
|
-
confirm: () => void;
|
|
6395
|
-
rowIndex: number;
|
|
6396
|
-
cellIndex: number;
|
|
6397
|
-
}) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
|
|
6352
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
|
|
6398
6353
|
$el: any;
|
|
6399
6354
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
6400
6355
|
sort: {
|
|
@@ -6510,12 +6465,7 @@ declare const _default: {
|
|
|
6510
6465
|
"onUpdate:search"?: (query: string) => any;
|
|
6511
6466
|
onOnScroll?: (event: Event) => any;
|
|
6512
6467
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6513
|
-
onSaveRow?: (args_0:
|
|
6514
|
-
value: unknown;
|
|
6515
|
-
confirm: () => void;
|
|
6516
|
-
rowIndex: number;
|
|
6517
|
-
cellIndex: number;
|
|
6518
|
-
}) => any;
|
|
6468
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6519
6469
|
onLoadMore?: () => any;
|
|
6520
6470
|
onOnClearSearch?: () => any;
|
|
6521
6471
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6529,12 +6479,7 @@ declare const _default: {
|
|
|
6529
6479
|
"update:selection": (selection: unknown[]) => void;
|
|
6530
6480
|
onScroll: (event: Event) => void;
|
|
6531
6481
|
onClearSearch: () => void;
|
|
6532
|
-
saveRow: (args_0:
|
|
6533
|
-
value: unknown;
|
|
6534
|
-
confirm: () => void;
|
|
6535
|
-
rowIndex: number;
|
|
6536
|
-
cellIndex: number;
|
|
6537
|
-
}) => void;
|
|
6482
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
6538
6483
|
loadMore: () => void;
|
|
6539
6484
|
selectAll: (value: boolean) => void;
|
|
6540
6485
|
selectRow: (value: boolean) => void;
|
|
@@ -6699,12 +6644,7 @@ declare const _default: {
|
|
|
6699
6644
|
"onUpdate:search"?: (query: string) => any;
|
|
6700
6645
|
onOnScroll?: (event: Event) => any;
|
|
6701
6646
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6702
|
-
onSaveRow?: (args_0:
|
|
6703
|
-
value: unknown;
|
|
6704
|
-
confirm: () => void;
|
|
6705
|
-
rowIndex: number;
|
|
6706
|
-
cellIndex: number;
|
|
6707
|
-
}) => any;
|
|
6647
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6708
6648
|
onLoadMore?: () => any;
|
|
6709
6649
|
onOnClearSearch?: () => any;
|
|
6710
6650
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6830,12 +6770,7 @@ declare const _default: {
|
|
|
6830
6770
|
"onUpdate:search"?: (query: string) => any;
|
|
6831
6771
|
onOnScroll?: (event: Event) => any;
|
|
6832
6772
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6833
|
-
onSaveRow?: (args_0:
|
|
6834
|
-
value: unknown;
|
|
6835
|
-
confirm: () => void;
|
|
6836
|
-
rowIndex: number;
|
|
6837
|
-
cellIndex: number;
|
|
6838
|
-
}) => any;
|
|
6773
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
6839
6774
|
onLoadMore?: () => any;
|
|
6840
6775
|
onOnClearSearch?: () => any;
|
|
6841
6776
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6849,12 +6784,7 @@ declare const _default: {
|
|
|
6849
6784
|
"update:selection": (selection: unknown[]) => void;
|
|
6850
6785
|
onScroll: (event: Event) => void;
|
|
6851
6786
|
onClearSearch: () => void;
|
|
6852
|
-
saveRow: (args_0:
|
|
6853
|
-
value: unknown;
|
|
6854
|
-
confirm: () => void;
|
|
6855
|
-
rowIndex: number;
|
|
6856
|
-
cellIndex: number;
|
|
6857
|
-
}) => void;
|
|
6787
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
6858
6788
|
loadMore: () => void;
|
|
6859
6789
|
selectAll: (value: boolean) => void;
|
|
6860
6790
|
selectRow: (value: boolean) => void;
|
|
@@ -7105,6 +7035,9 @@ declare const _default: {
|
|
|
7105
7035
|
}>> & {
|
|
7106
7036
|
"onUpdate:search"?: (query: string) => any;
|
|
7107
7037
|
onOnScroll?: (scrollTop: number) => any;
|
|
7038
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7039
|
+
tableIndex: number;
|
|
7040
|
+
}) => any;
|
|
7108
7041
|
onOnClearSearch?: () => any;
|
|
7109
7042
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7110
7043
|
} & 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">;
|
|
@@ -7119,7 +7052,9 @@ declare const _default: {
|
|
|
7119
7052
|
}>;
|
|
7120
7053
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7121
7054
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7122
|
-
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "
|
|
7055
|
+
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7056
|
+
tableIndex: number;
|
|
7057
|
+
}) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7123
7058
|
$el: any;
|
|
7124
7059
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7125
7060
|
search: {
|
|
@@ -7199,6 +7134,9 @@ declare const _default: {
|
|
|
7199
7134
|
}>> & {
|
|
7200
7135
|
"onUpdate:search"?: (query: string) => any;
|
|
7201
7136
|
onOnScroll?: (scrollTop: number) => any;
|
|
7137
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7138
|
+
tableIndex: number;
|
|
7139
|
+
}) => any;
|
|
7202
7140
|
onOnClearSearch?: () => any;
|
|
7203
7141
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7204
7142
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7206,6 +7144,9 @@ declare const _default: {
|
|
|
7206
7144
|
onScroll: (scrollTop: number) => void;
|
|
7207
7145
|
onClearSearch: () => void;
|
|
7208
7146
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7147
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7148
|
+
tableIndex: number;
|
|
7149
|
+
}) => void;
|
|
7209
7150
|
}, string, {
|
|
7210
7151
|
search: string;
|
|
7211
7152
|
testId: string;
|
|
@@ -7323,6 +7264,9 @@ declare const _default: {
|
|
|
7323
7264
|
}>> & {
|
|
7324
7265
|
"onUpdate:search"?: (query: string) => any;
|
|
7325
7266
|
onOnScroll?: (scrollTop: number) => any;
|
|
7267
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7268
|
+
tableIndex: number;
|
|
7269
|
+
}) => any;
|
|
7326
7270
|
onOnClearSearch?: () => any;
|
|
7327
7271
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7328
7272
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -7407,6 +7351,9 @@ declare const _default: {
|
|
|
7407
7351
|
}>> & {
|
|
7408
7352
|
"onUpdate:search"?: (query: string) => any;
|
|
7409
7353
|
onOnScroll?: (scrollTop: number) => any;
|
|
7354
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7355
|
+
tableIndex: number;
|
|
7356
|
+
}) => any;
|
|
7410
7357
|
onOnClearSearch?: () => any;
|
|
7411
7358
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7412
7359
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7414,6 +7361,9 @@ declare const _default: {
|
|
|
7414
7361
|
onScroll: (scrollTop: number) => void;
|
|
7415
7362
|
onClearSearch: () => void;
|
|
7416
7363
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7364
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7365
|
+
tableIndex: number;
|
|
7366
|
+
}) => void;
|
|
7417
7367
|
}, string, {
|
|
7418
7368
|
search: string;
|
|
7419
7369
|
testId: string;
|
|
@@ -7556,6 +7506,9 @@ declare const _default: {
|
|
|
7556
7506
|
}>> & {
|
|
7557
7507
|
"onUpdate:search"?: (query: string) => any;
|
|
7558
7508
|
onOnScroll?: (scrollTop: number) => any;
|
|
7509
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7510
|
+
tableIndex: number;
|
|
7511
|
+
}) => any;
|
|
7559
7512
|
onOnClearSearch?: () => any;
|
|
7560
7513
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7561
7514
|
} & 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">;
|
|
@@ -7570,7 +7523,9 @@ declare const _default: {
|
|
|
7570
7523
|
}>;
|
|
7571
7524
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7572
7525
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7573
|
-
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "
|
|
7526
|
+
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7527
|
+
tableIndex: number;
|
|
7528
|
+
}) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7574
7529
|
$el: any;
|
|
7575
7530
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7576
7531
|
search: {
|
|
@@ -7650,6 +7605,9 @@ declare const _default: {
|
|
|
7650
7605
|
}>> & {
|
|
7651
7606
|
"onUpdate:search"?: (query: string) => any;
|
|
7652
7607
|
onOnScroll?: (scrollTop: number) => any;
|
|
7608
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7609
|
+
tableIndex: number;
|
|
7610
|
+
}) => any;
|
|
7653
7611
|
onOnClearSearch?: () => any;
|
|
7654
7612
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7655
7613
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7657,6 +7615,9 @@ declare const _default: {
|
|
|
7657
7615
|
onScroll: (scrollTop: number) => void;
|
|
7658
7616
|
onClearSearch: () => void;
|
|
7659
7617
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7618
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7619
|
+
tableIndex: number;
|
|
7620
|
+
}) => void;
|
|
7660
7621
|
}, string, {
|
|
7661
7622
|
search: string;
|
|
7662
7623
|
testId: string;
|
|
@@ -7774,6 +7735,9 @@ declare const _default: {
|
|
|
7774
7735
|
}>> & {
|
|
7775
7736
|
"onUpdate:search"?: (query: string) => any;
|
|
7776
7737
|
onOnScroll?: (scrollTop: number) => any;
|
|
7738
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7739
|
+
tableIndex: number;
|
|
7740
|
+
}) => any;
|
|
7777
7741
|
onOnClearSearch?: () => any;
|
|
7778
7742
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7779
7743
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -7858,6 +7822,9 @@ declare const _default: {
|
|
|
7858
7822
|
}>> & {
|
|
7859
7823
|
"onUpdate:search"?: (query: string) => any;
|
|
7860
7824
|
onOnScroll?: (scrollTop: number) => any;
|
|
7825
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7826
|
+
tableIndex: number;
|
|
7827
|
+
}) => any;
|
|
7861
7828
|
onOnClearSearch?: () => any;
|
|
7862
7829
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7863
7830
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7865,6 +7832,9 @@ declare const _default: {
|
|
|
7865
7832
|
onScroll: (scrollTop: number) => void;
|
|
7866
7833
|
onClearSearch: () => void;
|
|
7867
7834
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7835
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7836
|
+
tableIndex: number;
|
|
7837
|
+
}) => void;
|
|
7868
7838
|
}, string, {
|
|
7869
7839
|
search: string;
|
|
7870
7840
|
testId: string;
|
|
@@ -7991,12 +7961,7 @@ declare const _default: {
|
|
|
7991
7961
|
}>> & {
|
|
7992
7962
|
onOnScroll?: (event: Event) => any;
|
|
7993
7963
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7994
|
-
onSaveRow?: (args_0:
|
|
7995
|
-
value: unknown;
|
|
7996
|
-
confirm: () => void;
|
|
7997
|
-
rowIndex: number;
|
|
7998
|
-
cellIndex: number;
|
|
7999
|
-
}) => any;
|
|
7964
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8000
7965
|
onLoadMore?: () => any;
|
|
8001
7966
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
8002
7967
|
$attrs: {
|
|
@@ -8010,12 +7975,7 @@ declare const _default: {
|
|
|
8010
7975
|
}>;
|
|
8011
7976
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8012
7977
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8013
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
8014
|
-
value: unknown;
|
|
8015
|
-
confirm: () => void;
|
|
8016
|
-
rowIndex: number;
|
|
8017
|
-
cellIndex: number;
|
|
8018
|
-
}) => void) & ((event: "loadMore") => void);
|
|
7978
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void);
|
|
8019
7979
|
$el: any;
|
|
8020
7980
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8021
7981
|
sort: {
|
|
@@ -8085,22 +8045,12 @@ declare const _default: {
|
|
|
8085
8045
|
}>> & {
|
|
8086
8046
|
onOnScroll?: (event: Event) => any;
|
|
8087
8047
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8088
|
-
onSaveRow?: (args_0:
|
|
8089
|
-
value: unknown;
|
|
8090
|
-
confirm: () => void;
|
|
8091
|
-
rowIndex: number;
|
|
8092
|
-
cellIndex: number;
|
|
8093
|
-
}) => any;
|
|
8048
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8094
8049
|
onLoadMore?: () => any;
|
|
8095
8050
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8096
8051
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8097
8052
|
onScroll: (event: Event) => void;
|
|
8098
|
-
saveRow: (args_0:
|
|
8099
|
-
value: unknown;
|
|
8100
|
-
confirm: () => void;
|
|
8101
|
-
rowIndex: number;
|
|
8102
|
-
cellIndex: number;
|
|
8103
|
-
}) => void;
|
|
8053
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
8104
8054
|
loadMore: () => void;
|
|
8105
8055
|
}, string, {
|
|
8106
8056
|
testId: string;
|
|
@@ -8203,12 +8153,7 @@ declare const _default: {
|
|
|
8203
8153
|
}>> & {
|
|
8204
8154
|
onOnScroll?: (event: Event) => any;
|
|
8205
8155
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8206
|
-
onSaveRow?: (args_0:
|
|
8207
|
-
value: unknown;
|
|
8208
|
-
confirm: () => void;
|
|
8209
|
-
rowIndex: number;
|
|
8210
|
-
cellIndex: number;
|
|
8211
|
-
}) => any;
|
|
8156
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8212
8157
|
onLoadMore?: () => any;
|
|
8213
8158
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
8214
8159
|
__isFragment?: never;
|
|
@@ -8282,22 +8227,12 @@ declare const _default: {
|
|
|
8282
8227
|
}>> & {
|
|
8283
8228
|
onOnScroll?: (event: Event) => any;
|
|
8284
8229
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8285
|
-
onSaveRow?: (args_0:
|
|
8286
|
-
value: unknown;
|
|
8287
|
-
confirm: () => void;
|
|
8288
|
-
rowIndex: number;
|
|
8289
|
-
cellIndex: number;
|
|
8290
|
-
}) => any;
|
|
8230
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8291
8231
|
onLoadMore?: () => any;
|
|
8292
8232
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8293
8233
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8294
8234
|
onScroll: (event: Event) => void;
|
|
8295
|
-
saveRow: (args_0:
|
|
8296
|
-
value: unknown;
|
|
8297
|
-
confirm: () => void;
|
|
8298
|
-
rowIndex: number;
|
|
8299
|
-
cellIndex: number;
|
|
8300
|
-
}) => void;
|
|
8235
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
8301
8236
|
loadMore: () => void;
|
|
8302
8237
|
}, string, {
|
|
8303
8238
|
testId: string;
|
|
@@ -8419,12 +8354,7 @@ declare const _default: {
|
|
|
8419
8354
|
}>> & {
|
|
8420
8355
|
onOnScroll?: (event: Event) => any;
|
|
8421
8356
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8422
|
-
onSaveRow?: (args_0:
|
|
8423
|
-
value: unknown;
|
|
8424
|
-
confirm: () => void;
|
|
8425
|
-
rowIndex: number;
|
|
8426
|
-
cellIndex: number;
|
|
8427
|
-
}) => any;
|
|
8357
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8428
8358
|
onLoadMore?: () => any;
|
|
8429
8359
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
8430
8360
|
$attrs: {
|
|
@@ -8438,12 +8368,7 @@ declare const _default: {
|
|
|
8438
8368
|
}>;
|
|
8439
8369
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8440
8370
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8441
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
8442
|
-
value: unknown;
|
|
8443
|
-
confirm: () => void;
|
|
8444
|
-
rowIndex: number;
|
|
8445
|
-
cellIndex: number;
|
|
8446
|
-
}) => void) & ((event: "loadMore") => void);
|
|
8371
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void);
|
|
8447
8372
|
$el: any;
|
|
8448
8373
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8449
8374
|
sort: {
|
|
@@ -8513,22 +8438,12 @@ declare const _default: {
|
|
|
8513
8438
|
}>> & {
|
|
8514
8439
|
onOnScroll?: (event: Event) => any;
|
|
8515
8440
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8516
|
-
onSaveRow?: (args_0:
|
|
8517
|
-
value: unknown;
|
|
8518
|
-
confirm: () => void;
|
|
8519
|
-
rowIndex: number;
|
|
8520
|
-
cellIndex: number;
|
|
8521
|
-
}) => any;
|
|
8441
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8522
8442
|
onLoadMore?: () => any;
|
|
8523
8443
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8524
8444
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8525
8445
|
onScroll: (event: Event) => void;
|
|
8526
|
-
saveRow: (args_0:
|
|
8527
|
-
value: unknown;
|
|
8528
|
-
confirm: () => void;
|
|
8529
|
-
rowIndex: number;
|
|
8530
|
-
cellIndex: number;
|
|
8531
|
-
}) => void;
|
|
8446
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
8532
8447
|
loadMore: () => void;
|
|
8533
8448
|
}, string, {
|
|
8534
8449
|
testId: string;
|
|
@@ -8631,12 +8546,7 @@ declare const _default: {
|
|
|
8631
8546
|
}>> & {
|
|
8632
8547
|
onOnScroll?: (event: Event) => any;
|
|
8633
8548
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8634
|
-
onSaveRow?: (args_0:
|
|
8635
|
-
value: unknown;
|
|
8636
|
-
confirm: () => void;
|
|
8637
|
-
rowIndex: number;
|
|
8638
|
-
cellIndex: number;
|
|
8639
|
-
}) => any;
|
|
8549
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8640
8550
|
onLoadMore?: () => any;
|
|
8641
8551
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
8642
8552
|
__isFragment?: never;
|
|
@@ -8710,22 +8620,12 @@ declare const _default: {
|
|
|
8710
8620
|
}>> & {
|
|
8711
8621
|
onOnScroll?: (event: Event) => any;
|
|
8712
8622
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8713
|
-
onSaveRow?: (args_0:
|
|
8714
|
-
value: unknown;
|
|
8715
|
-
confirm: () => void;
|
|
8716
|
-
rowIndex: number;
|
|
8717
|
-
cellIndex: number;
|
|
8718
|
-
}) => any;
|
|
8623
|
+
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
|
|
8719
8624
|
onLoadMore?: () => any;
|
|
8720
8625
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8721
8626
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8722
8627
|
onScroll: (event: Event) => void;
|
|
8723
|
-
saveRow: (args_0:
|
|
8724
|
-
value: unknown;
|
|
8725
|
-
confirm: () => void;
|
|
8726
|
-
rowIndex: number;
|
|
8727
|
-
cellIndex: number;
|
|
8728
|
-
}) => void;
|
|
8628
|
+
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => void;
|
|
8729
8629
|
loadMore: () => void;
|
|
8730
8630
|
}, string, {
|
|
8731
8631
|
testId: string;
|
|
@@ -15642,6 +15542,7 @@ declare const _default: {
|
|
|
15642
15542
|
disabledOptionKey: string;
|
|
15643
15543
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15644
15544
|
optionTwoLinesKey: string;
|
|
15545
|
+
groupedOptions: boolean;
|
|
15645
15546
|
fullWidth: boolean;
|
|
15646
15547
|
optionsListWidth: string;
|
|
15647
15548
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -15838,6 +15739,10 @@ declare const _default: {
|
|
|
15838
15739
|
type: import("vue").PropType<string>;
|
|
15839
15740
|
default: any;
|
|
15840
15741
|
};
|
|
15742
|
+
groupedOptions: {
|
|
15743
|
+
type: import("vue").PropType<boolean>;
|
|
15744
|
+
default: boolean;
|
|
15745
|
+
};
|
|
15841
15746
|
fullWidth: {
|
|
15842
15747
|
type: import("vue").PropType<boolean>;
|
|
15843
15748
|
default: boolean;
|
|
@@ -15868,7 +15773,7 @@ declare const _default: {
|
|
|
15868
15773
|
onOnsearch?: (value: string) => any;
|
|
15869
15774
|
onOpened?: () => any;
|
|
15870
15775
|
onClosed?: () => any;
|
|
15871
|
-
} & 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" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
15776
|
+
} & 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">;
|
|
15872
15777
|
$attrs: {
|
|
15873
15778
|
[x: string]: unknown;
|
|
15874
15779
|
};
|
|
@@ -16073,6 +15978,10 @@ declare const _default: {
|
|
|
16073
15978
|
type: import("vue").PropType<string>;
|
|
16074
15979
|
default: any;
|
|
16075
15980
|
};
|
|
15981
|
+
groupedOptions: {
|
|
15982
|
+
type: import("vue").PropType<boolean>;
|
|
15983
|
+
default: boolean;
|
|
15984
|
+
};
|
|
16076
15985
|
fullWidth: {
|
|
16077
15986
|
type: import("vue").PropType<boolean>;
|
|
16078
15987
|
default: boolean;
|
|
@@ -16161,6 +16070,7 @@ declare const _default: {
|
|
|
16161
16070
|
disabledOptionKey: string;
|
|
16162
16071
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16163
16072
|
optionTwoLinesKey: string;
|
|
16073
|
+
groupedOptions: boolean;
|
|
16164
16074
|
fullWidth: boolean;
|
|
16165
16075
|
optionsListWidth: string;
|
|
16166
16076
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16377,6 +16287,10 @@ declare const _default: {
|
|
|
16377
16287
|
type: import("vue").PropType<string>;
|
|
16378
16288
|
default: any;
|
|
16379
16289
|
};
|
|
16290
|
+
groupedOptions: {
|
|
16291
|
+
type: import("vue").PropType<boolean>;
|
|
16292
|
+
default: boolean;
|
|
16293
|
+
};
|
|
16380
16294
|
fullWidth: {
|
|
16381
16295
|
type: import("vue").PropType<boolean>;
|
|
16382
16296
|
default: boolean;
|
|
@@ -16605,6 +16519,10 @@ declare const _default: {
|
|
|
16605
16519
|
type: import("vue").PropType<string>;
|
|
16606
16520
|
default: any;
|
|
16607
16521
|
};
|
|
16522
|
+
groupedOptions: {
|
|
16523
|
+
type: import("vue").PropType<boolean>;
|
|
16524
|
+
default: boolean;
|
|
16525
|
+
};
|
|
16608
16526
|
fullWidth: {
|
|
16609
16527
|
type: import("vue").PropType<boolean>;
|
|
16610
16528
|
default: boolean;
|
|
@@ -16693,6 +16611,7 @@ declare const _default: {
|
|
|
16693
16611
|
disabledOptionKey: string;
|
|
16694
16612
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16695
16613
|
optionTwoLinesKey: string;
|
|
16614
|
+
groupedOptions: boolean;
|
|
16696
16615
|
fullWidth: boolean;
|
|
16697
16616
|
optionsListWidth: string;
|
|
16698
16617
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16739,6 +16658,7 @@ declare const _default: {
|
|
|
16739
16658
|
"input-list"?(_: {
|
|
16740
16659
|
open: true;
|
|
16741
16660
|
}): any;
|
|
16661
|
+
"group-option"?(_: {}): any;
|
|
16742
16662
|
default?(_: {
|
|
16743
16663
|
option: unknown;
|
|
16744
16664
|
index: number;
|
|
@@ -19681,6 +19601,7 @@ declare const _default: {
|
|
|
19681
19601
|
disabledOptionKey: string;
|
|
19682
19602
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19683
19603
|
optionTwoLinesKey: string;
|
|
19604
|
+
groupedOptions: boolean;
|
|
19684
19605
|
fullWidth: boolean;
|
|
19685
19606
|
optionsListWidth: string;
|
|
19686
19607
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19877,6 +19798,10 @@ declare const _default: {
|
|
|
19877
19798
|
type: import("vue").PropType<string>;
|
|
19878
19799
|
default: any;
|
|
19879
19800
|
};
|
|
19801
|
+
groupedOptions: {
|
|
19802
|
+
type: import("vue").PropType<boolean>;
|
|
19803
|
+
default: boolean;
|
|
19804
|
+
};
|
|
19880
19805
|
fullWidth: {
|
|
19881
19806
|
type: import("vue").PropType<boolean>;
|
|
19882
19807
|
default: boolean;
|
|
@@ -19907,7 +19832,7 @@ declare const _default: {
|
|
|
19907
19832
|
onOnsearch?: (value: string) => any;
|
|
19908
19833
|
onOpened?: () => any;
|
|
19909
19834
|
onClosed?: () => any;
|
|
19910
|
-
} & 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" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
19835
|
+
} & 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">;
|
|
19911
19836
|
$attrs: {
|
|
19912
19837
|
[x: string]: unknown;
|
|
19913
19838
|
};
|
|
@@ -20112,6 +20037,10 @@ declare const _default: {
|
|
|
20112
20037
|
type: import("vue").PropType<string>;
|
|
20113
20038
|
default: any;
|
|
20114
20039
|
};
|
|
20040
|
+
groupedOptions: {
|
|
20041
|
+
type: import("vue").PropType<boolean>;
|
|
20042
|
+
default: boolean;
|
|
20043
|
+
};
|
|
20115
20044
|
fullWidth: {
|
|
20116
20045
|
type: import("vue").PropType<boolean>;
|
|
20117
20046
|
default: boolean;
|
|
@@ -20200,6 +20129,7 @@ declare const _default: {
|
|
|
20200
20129
|
disabledOptionKey: string;
|
|
20201
20130
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20202
20131
|
optionTwoLinesKey: string;
|
|
20132
|
+
groupedOptions: boolean;
|
|
20203
20133
|
fullWidth: boolean;
|
|
20204
20134
|
optionsListWidth: string;
|
|
20205
20135
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20416,6 +20346,10 @@ declare const _default: {
|
|
|
20416
20346
|
type: import("vue").PropType<string>;
|
|
20417
20347
|
default: any;
|
|
20418
20348
|
};
|
|
20349
|
+
groupedOptions: {
|
|
20350
|
+
type: import("vue").PropType<boolean>;
|
|
20351
|
+
default: boolean;
|
|
20352
|
+
};
|
|
20419
20353
|
fullWidth: {
|
|
20420
20354
|
type: import("vue").PropType<boolean>;
|
|
20421
20355
|
default: boolean;
|
|
@@ -20644,6 +20578,10 @@ declare const _default: {
|
|
|
20644
20578
|
type: import("vue").PropType<string>;
|
|
20645
20579
|
default: any;
|
|
20646
20580
|
};
|
|
20581
|
+
groupedOptions: {
|
|
20582
|
+
type: import("vue").PropType<boolean>;
|
|
20583
|
+
default: boolean;
|
|
20584
|
+
};
|
|
20647
20585
|
fullWidth: {
|
|
20648
20586
|
type: import("vue").PropType<boolean>;
|
|
20649
20587
|
default: boolean;
|
|
@@ -20732,6 +20670,7 @@ declare const _default: {
|
|
|
20732
20670
|
disabledOptionKey: string;
|
|
20733
20671
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20734
20672
|
optionTwoLinesKey: string;
|
|
20673
|
+
groupedOptions: boolean;
|
|
20735
20674
|
fullWidth: boolean;
|
|
20736
20675
|
optionsListWidth: string;
|
|
20737
20676
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -20778,6 +20717,7 @@ declare const _default: {
|
|
|
20778
20717
|
"input-list"?(_: {
|
|
20779
20718
|
open: true;
|
|
20780
20719
|
}): any;
|
|
20720
|
+
"group-option"?(_: {}): any;
|
|
20781
20721
|
default?(_: {
|
|
20782
20722
|
option: unknown;
|
|
20783
20723
|
index: number;
|