@ironsource/shared-ui 2.1.11-rc.46 → 2.1.11-rc.48
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_e43ac1c9_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8f96cf5a_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_26488faf_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_75002075_lang.css +1 -0
- package/Typography.vue_vue_type_style_index_0_scoped_a14013a5_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.js +36 -34
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +55 -40
- package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +20 -0
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +136 -97
- package/components/dropdown/v4/DropdownV4.vue.d.ts +2 -0
- package/components/dropdown/v4/DropdownV4.vue.js +2 -2
- package/components/dropdown/v4/DropdownV4.vue2.js +7 -7
- package/components/dropdown/v4/index.d.ts +43 -1
- package/components/table/common/Table.common.d.ts +1 -1
- package/components/table/common/Table.common.js +78 -70
- package/components/table/common/consts.d.ts +4 -0
- package/components/table/common/consts.js +7 -0
- package/components/table/v4/DataGrid.vue.d.ts +10 -5
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +173 -171
- package/components/table/v4/index.d.ts +39 -20
- package/components/typography/v4/Typography.vue.js +3 -3
- package/components/typography/v4/Typography.vue2.js +24 -18
- package/index.d.ts +164 -42
- package/package.json +1 -1
- package/testids/index.d.ts +1 -0
- package/testids/index.js +13 -13
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_039dd922_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_2aee12ad_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_2406226b_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_6466948d_lang.css +0 -1
- package/Typography.vue_vue_type_style_index_0_scoped_992962bc_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -5632,11 +5632,12 @@ declare const _default: {
|
|
|
5632
5632
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5633
5633
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
5634
5634
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5635
|
-
isSelectionSticky: boolean;
|
|
5636
5635
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5637
5636
|
zIndexBase: number;
|
|
5638
5637
|
rowCustomClassKey: string;
|
|
5639
5638
|
rowDataKey: string;
|
|
5639
|
+
isSelectionSticky: boolean;
|
|
5640
|
+
isSelectionBordered: boolean;
|
|
5640
5641
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
5641
5642
|
sort: {
|
|
5642
5643
|
type: import("vue").PropType<tableV3.Sort>;
|
|
@@ -5734,10 +5735,6 @@ declare const _default: {
|
|
|
5734
5735
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
5735
5736
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
5736
5737
|
};
|
|
5737
|
-
isSelectionSticky: {
|
|
5738
|
-
type: import("vue").PropType<boolean>;
|
|
5739
|
-
default: boolean;
|
|
5740
|
-
};
|
|
5741
5738
|
emptyStateVariant: {
|
|
5742
5739
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
5743
5740
|
default: any;
|
|
@@ -5754,6 +5751,14 @@ declare const _default: {
|
|
|
5754
5751
|
type: import("vue").PropType<string>;
|
|
5755
5752
|
default: string;
|
|
5756
5753
|
};
|
|
5754
|
+
isSelectionSticky: {
|
|
5755
|
+
type: import("vue").PropType<boolean>;
|
|
5756
|
+
default: boolean;
|
|
5757
|
+
};
|
|
5758
|
+
isSelectionBordered: {
|
|
5759
|
+
type: import("vue").PropType<boolean>;
|
|
5760
|
+
default: boolean;
|
|
5761
|
+
};
|
|
5757
5762
|
}>> & {
|
|
5758
5763
|
onSelectAll?: (value: boolean) => any;
|
|
5759
5764
|
onLoadMore?: () => any;
|
|
@@ -5765,7 +5770,7 @@ declare const _default: {
|
|
|
5765
5770
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5766
5771
|
onSelectRow?: (value: boolean) => any;
|
|
5767
5772
|
onClickRow?: (rowIndex: number) => any;
|
|
5768
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "
|
|
5773
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
5769
5774
|
$attrs: {
|
|
5770
5775
|
[x: string]: unknown;
|
|
5771
5776
|
};
|
|
@@ -5876,10 +5881,6 @@ declare const _default: {
|
|
|
5876
5881
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
5877
5882
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
5878
5883
|
};
|
|
5879
|
-
isSelectionSticky: {
|
|
5880
|
-
type: import("vue").PropType<boolean>;
|
|
5881
|
-
default: boolean;
|
|
5882
|
-
};
|
|
5883
5884
|
emptyStateVariant: {
|
|
5884
5885
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
5885
5886
|
default: any;
|
|
@@ -5896,6 +5897,14 @@ declare const _default: {
|
|
|
5896
5897
|
type: import("vue").PropType<string>;
|
|
5897
5898
|
default: string;
|
|
5898
5899
|
};
|
|
5900
|
+
isSelectionSticky: {
|
|
5901
|
+
type: import("vue").PropType<boolean>;
|
|
5902
|
+
default: boolean;
|
|
5903
|
+
};
|
|
5904
|
+
isSelectionBordered: {
|
|
5905
|
+
type: import("vue").PropType<boolean>;
|
|
5906
|
+
default: boolean;
|
|
5907
|
+
};
|
|
5899
5908
|
}>> & {
|
|
5900
5909
|
onSelectAll?: (value: boolean) => any;
|
|
5901
5910
|
onLoadMore?: () => any;
|
|
@@ -5943,11 +5952,12 @@ declare const _default: {
|
|
|
5943
5952
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5944
5953
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
5945
5954
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5946
|
-
isSelectionSticky: boolean;
|
|
5947
5955
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5948
5956
|
zIndexBase: number;
|
|
5949
5957
|
rowCustomClassKey: string;
|
|
5950
5958
|
rowDataKey: string;
|
|
5959
|
+
isSelectionSticky: boolean;
|
|
5960
|
+
isSelectionBordered: boolean;
|
|
5951
5961
|
}, {}, string> & {
|
|
5952
5962
|
beforeCreate?: (() => void) | (() => void)[];
|
|
5953
5963
|
created?: (() => void) | (() => void)[];
|
|
@@ -6065,10 +6075,6 @@ declare const _default: {
|
|
|
6065
6075
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6066
6076
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
6067
6077
|
};
|
|
6068
|
-
isSelectionSticky: {
|
|
6069
|
-
type: import("vue").PropType<boolean>;
|
|
6070
|
-
default: boolean;
|
|
6071
|
-
};
|
|
6072
6078
|
emptyStateVariant: {
|
|
6073
6079
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6074
6080
|
default: any;
|
|
@@ -6085,6 +6091,14 @@ declare const _default: {
|
|
|
6085
6091
|
type: import("vue").PropType<string>;
|
|
6086
6092
|
default: string;
|
|
6087
6093
|
};
|
|
6094
|
+
isSelectionSticky: {
|
|
6095
|
+
type: import("vue").PropType<boolean>;
|
|
6096
|
+
default: boolean;
|
|
6097
|
+
};
|
|
6098
|
+
isSelectionBordered: {
|
|
6099
|
+
type: import("vue").PropType<boolean>;
|
|
6100
|
+
default: boolean;
|
|
6101
|
+
};
|
|
6088
6102
|
}>> & {
|
|
6089
6103
|
onSelectAll?: (value: boolean) => any;
|
|
6090
6104
|
onLoadMore?: () => any;
|
|
@@ -6199,10 +6213,6 @@ declare const _default: {
|
|
|
6199
6213
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6200
6214
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
6201
6215
|
};
|
|
6202
|
-
isSelectionSticky: {
|
|
6203
|
-
type: import("vue").PropType<boolean>;
|
|
6204
|
-
default: boolean;
|
|
6205
|
-
};
|
|
6206
6216
|
emptyStateVariant: {
|
|
6207
6217
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6208
6218
|
default: any;
|
|
@@ -6219,6 +6229,14 @@ declare const _default: {
|
|
|
6219
6229
|
type: import("vue").PropType<string>;
|
|
6220
6230
|
default: string;
|
|
6221
6231
|
};
|
|
6232
|
+
isSelectionSticky: {
|
|
6233
|
+
type: import("vue").PropType<boolean>;
|
|
6234
|
+
default: boolean;
|
|
6235
|
+
};
|
|
6236
|
+
isSelectionBordered: {
|
|
6237
|
+
type: import("vue").PropType<boolean>;
|
|
6238
|
+
default: boolean;
|
|
6239
|
+
};
|
|
6222
6240
|
}>> & {
|
|
6223
6241
|
onSelectAll?: (value: boolean) => any;
|
|
6224
6242
|
onLoadMore?: () => any;
|
|
@@ -6266,11 +6284,12 @@ declare const _default: {
|
|
|
6266
6284
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6267
6285
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6268
6286
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6269
|
-
isSelectionSticky: boolean;
|
|
6270
6287
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6271
6288
|
zIndexBase: number;
|
|
6272
6289
|
rowCustomClassKey: string;
|
|
6273
6290
|
rowDataKey: string;
|
|
6291
|
+
isSelectionSticky: boolean;
|
|
6292
|
+
isSelectionBordered: boolean;
|
|
6274
6293
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6275
6294
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
6276
6295
|
column: tableV3.Column;
|
|
@@ -6420,11 +6439,12 @@ declare const _default: {
|
|
|
6420
6439
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6421
6440
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6422
6441
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6423
|
-
isSelectionSticky: boolean;
|
|
6424
6442
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6425
6443
|
zIndexBase: number;
|
|
6426
6444
|
rowCustomClassKey: string;
|
|
6427
6445
|
rowDataKey: string;
|
|
6446
|
+
isSelectionSticky: boolean;
|
|
6447
|
+
isSelectionBordered: boolean;
|
|
6428
6448
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
6429
6449
|
sort: {
|
|
6430
6450
|
type: import("vue").PropType<tableV3.Sort>;
|
|
@@ -6522,10 +6542,6 @@ declare const _default: {
|
|
|
6522
6542
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6523
6543
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
6524
6544
|
};
|
|
6525
|
-
isSelectionSticky: {
|
|
6526
|
-
type: import("vue").PropType<boolean>;
|
|
6527
|
-
default: boolean;
|
|
6528
|
-
};
|
|
6529
6545
|
emptyStateVariant: {
|
|
6530
6546
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6531
6547
|
default: any;
|
|
@@ -6542,6 +6558,14 @@ declare const _default: {
|
|
|
6542
6558
|
type: import("vue").PropType<string>;
|
|
6543
6559
|
default: string;
|
|
6544
6560
|
};
|
|
6561
|
+
isSelectionSticky: {
|
|
6562
|
+
type: import("vue").PropType<boolean>;
|
|
6563
|
+
default: boolean;
|
|
6564
|
+
};
|
|
6565
|
+
isSelectionBordered: {
|
|
6566
|
+
type: import("vue").PropType<boolean>;
|
|
6567
|
+
default: boolean;
|
|
6568
|
+
};
|
|
6545
6569
|
}>> & {
|
|
6546
6570
|
onSelectAll?: (value: boolean) => any;
|
|
6547
6571
|
onLoadMore?: () => any;
|
|
@@ -6553,7 +6577,7 @@ declare const _default: {
|
|
|
6553
6577
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
6554
6578
|
onSelectRow?: (value: boolean) => any;
|
|
6555
6579
|
onClickRow?: (rowIndex: number) => any;
|
|
6556
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "
|
|
6580
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6557
6581
|
$attrs: {
|
|
6558
6582
|
[x: string]: unknown;
|
|
6559
6583
|
};
|
|
@@ -6664,10 +6688,6 @@ declare const _default: {
|
|
|
6664
6688
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6665
6689
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
6666
6690
|
};
|
|
6667
|
-
isSelectionSticky: {
|
|
6668
|
-
type: import("vue").PropType<boolean>;
|
|
6669
|
-
default: boolean;
|
|
6670
|
-
};
|
|
6671
6691
|
emptyStateVariant: {
|
|
6672
6692
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6673
6693
|
default: any;
|
|
@@ -6684,6 +6704,14 @@ declare const _default: {
|
|
|
6684
6704
|
type: import("vue").PropType<string>;
|
|
6685
6705
|
default: string;
|
|
6686
6706
|
};
|
|
6707
|
+
isSelectionSticky: {
|
|
6708
|
+
type: import("vue").PropType<boolean>;
|
|
6709
|
+
default: boolean;
|
|
6710
|
+
};
|
|
6711
|
+
isSelectionBordered: {
|
|
6712
|
+
type: import("vue").PropType<boolean>;
|
|
6713
|
+
default: boolean;
|
|
6714
|
+
};
|
|
6687
6715
|
}>> & {
|
|
6688
6716
|
onSelectAll?: (value: boolean) => any;
|
|
6689
6717
|
onLoadMore?: () => any;
|
|
@@ -6731,11 +6759,12 @@ declare const _default: {
|
|
|
6731
6759
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6732
6760
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6733
6761
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6734
|
-
isSelectionSticky: boolean;
|
|
6735
6762
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6736
6763
|
zIndexBase: number;
|
|
6737
6764
|
rowCustomClassKey: string;
|
|
6738
6765
|
rowDataKey: string;
|
|
6766
|
+
isSelectionSticky: boolean;
|
|
6767
|
+
isSelectionBordered: boolean;
|
|
6739
6768
|
}, {}, string> & {
|
|
6740
6769
|
beforeCreate?: (() => void) | (() => void)[];
|
|
6741
6770
|
created?: (() => void) | (() => void)[];
|
|
@@ -6853,10 +6882,6 @@ declare const _default: {
|
|
|
6853
6882
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6854
6883
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
6855
6884
|
};
|
|
6856
|
-
isSelectionSticky: {
|
|
6857
|
-
type: import("vue").PropType<boolean>;
|
|
6858
|
-
default: boolean;
|
|
6859
|
-
};
|
|
6860
6885
|
emptyStateVariant: {
|
|
6861
6886
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6862
6887
|
default: any;
|
|
@@ -6873,6 +6898,14 @@ declare const _default: {
|
|
|
6873
6898
|
type: import("vue").PropType<string>;
|
|
6874
6899
|
default: string;
|
|
6875
6900
|
};
|
|
6901
|
+
isSelectionSticky: {
|
|
6902
|
+
type: import("vue").PropType<boolean>;
|
|
6903
|
+
default: boolean;
|
|
6904
|
+
};
|
|
6905
|
+
isSelectionBordered: {
|
|
6906
|
+
type: import("vue").PropType<boolean>;
|
|
6907
|
+
default: boolean;
|
|
6908
|
+
};
|
|
6876
6909
|
}>> & {
|
|
6877
6910
|
onSelectAll?: (value: boolean) => any;
|
|
6878
6911
|
onLoadMore?: () => any;
|
|
@@ -6987,10 +7020,6 @@ declare const _default: {
|
|
|
6987
7020
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6988
7021
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
6989
7022
|
};
|
|
6990
|
-
isSelectionSticky: {
|
|
6991
|
-
type: import("vue").PropType<boolean>;
|
|
6992
|
-
default: boolean;
|
|
6993
|
-
};
|
|
6994
7023
|
emptyStateVariant: {
|
|
6995
7024
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6996
7025
|
default: any;
|
|
@@ -7007,6 +7036,14 @@ declare const _default: {
|
|
|
7007
7036
|
type: import("vue").PropType<string>;
|
|
7008
7037
|
default: string;
|
|
7009
7038
|
};
|
|
7039
|
+
isSelectionSticky: {
|
|
7040
|
+
type: import("vue").PropType<boolean>;
|
|
7041
|
+
default: boolean;
|
|
7042
|
+
};
|
|
7043
|
+
isSelectionBordered: {
|
|
7044
|
+
type: import("vue").PropType<boolean>;
|
|
7045
|
+
default: boolean;
|
|
7046
|
+
};
|
|
7010
7047
|
}>> & {
|
|
7011
7048
|
onSelectAll?: (value: boolean) => any;
|
|
7012
7049
|
onLoadMore?: () => any;
|
|
@@ -7054,11 +7091,12 @@ declare const _default: {
|
|
|
7054
7091
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
7055
7092
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7056
7093
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7057
|
-
isSelectionSticky: boolean;
|
|
7058
7094
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7059
7095
|
zIndexBase: number;
|
|
7060
7096
|
rowCustomClassKey: string;
|
|
7061
7097
|
rowDataKey: string;
|
|
7098
|
+
isSelectionSticky: boolean;
|
|
7099
|
+
isSelectionBordered: boolean;
|
|
7062
7100
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7063
7101
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
7064
7102
|
column: tableV3.Column;
|
|
@@ -16394,6 +16432,7 @@ declare const _default: {
|
|
|
16394
16432
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
16395
16433
|
onOnsearch?: (value: string) => any;
|
|
16396
16434
|
onLoadMore?: () => any;
|
|
16435
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16397
16436
|
onOpened?: () => any;
|
|
16398
16437
|
onClosed?: () => any;
|
|
16399
16438
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
@@ -16408,7 +16447,7 @@ declare const _default: {
|
|
|
16408
16447
|
}>;
|
|
16409
16448
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
16410
16449
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
16411
|
-
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "allSelectedChanged", value: boolean) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "loadMore") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
16450
|
+
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "allSelectedChanged", value: boolean) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "loadMore") => void) & ((event: "unsavedSelectionUpdate", value: unknown[]) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
16412
16451
|
$el: any;
|
|
16413
16452
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
16414
16453
|
theme: {
|
|
@@ -16662,6 +16701,7 @@ declare const _default: {
|
|
|
16662
16701
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
16663
16702
|
onOnsearch?: (value: string) => any;
|
|
16664
16703
|
onLoadMore?: () => any;
|
|
16704
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16665
16705
|
onOpened?: () => any;
|
|
16666
16706
|
onClosed?: () => any;
|
|
16667
16707
|
}, {
|
|
@@ -16679,6 +16719,7 @@ declare const _default: {
|
|
|
16679
16719
|
onsearch: (value: string) => void;
|
|
16680
16720
|
loadMore: () => void;
|
|
16681
16721
|
allSelectedChanged: (value: boolean) => void;
|
|
16722
|
+
unsavedSelectionUpdate: (value: unknown[]) => void;
|
|
16682
16723
|
}, string, {
|
|
16683
16724
|
theme: string;
|
|
16684
16725
|
testId: string;
|
|
@@ -17008,6 +17049,7 @@ declare const _default: {
|
|
|
17008
17049
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
17009
17050
|
onOnsearch?: (value: string) => any;
|
|
17010
17051
|
onLoadMore?: () => any;
|
|
17052
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
17011
17053
|
onOpened?: () => any;
|
|
17012
17054
|
onClosed?: () => any;
|
|
17013
17055
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -17269,6 +17311,7 @@ declare const _default: {
|
|
|
17269
17311
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
17270
17312
|
onOnsearch?: (value: string) => any;
|
|
17271
17313
|
onLoadMore?: () => any;
|
|
17314
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
17272
17315
|
onOpened?: () => any;
|
|
17273
17316
|
onClosed?: () => any;
|
|
17274
17317
|
}, {
|
|
@@ -17286,6 +17329,7 @@ declare const _default: {
|
|
|
17286
17329
|
onsearch: (value: string) => void;
|
|
17287
17330
|
loadMore: () => void;
|
|
17288
17331
|
allSelectedChanged: (value: boolean) => void;
|
|
17332
|
+
unsavedSelectionUpdate: (value: unknown[]) => void;
|
|
17289
17333
|
}, string, {
|
|
17290
17334
|
theme: string;
|
|
17291
17335
|
testId: string;
|
|
@@ -20990,6 +21034,7 @@ declare const _default: {
|
|
|
20990
21034
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
20991
21035
|
onOnsearch?: (value: string) => any;
|
|
20992
21036
|
onLoadMore?: () => any;
|
|
21037
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
20993
21038
|
onOpened?: () => any;
|
|
20994
21039
|
onClosed?: () => any;
|
|
20995
21040
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
@@ -21004,7 +21049,7 @@ declare const _default: {
|
|
|
21004
21049
|
}>;
|
|
21005
21050
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
21006
21051
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
21007
|
-
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "allSelectedChanged", value: boolean) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "loadMore") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
21052
|
+
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "allSelectedChanged", value: boolean) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "loadMore") => void) & ((event: "unsavedSelectionUpdate", value: unknown[]) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
21008
21053
|
$el: any;
|
|
21009
21054
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
21010
21055
|
theme: {
|
|
@@ -21258,6 +21303,7 @@ declare const _default: {
|
|
|
21258
21303
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
21259
21304
|
onOnsearch?: (value: string) => any;
|
|
21260
21305
|
onLoadMore?: () => any;
|
|
21306
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21261
21307
|
onOpened?: () => any;
|
|
21262
21308
|
onClosed?: () => any;
|
|
21263
21309
|
}, {
|
|
@@ -21275,6 +21321,7 @@ declare const _default: {
|
|
|
21275
21321
|
onsearch: (value: string) => void;
|
|
21276
21322
|
loadMore: () => void;
|
|
21277
21323
|
allSelectedChanged: (value: boolean) => void;
|
|
21324
|
+
unsavedSelectionUpdate: (value: unknown[]) => void;
|
|
21278
21325
|
}, string, {
|
|
21279
21326
|
theme: string;
|
|
21280
21327
|
testId: string;
|
|
@@ -21604,6 +21651,7 @@ declare const _default: {
|
|
|
21604
21651
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
21605
21652
|
onOnsearch?: (value: string) => any;
|
|
21606
21653
|
onLoadMore?: () => any;
|
|
21654
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21607
21655
|
onOpened?: () => any;
|
|
21608
21656
|
onClosed?: () => any;
|
|
21609
21657
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -21865,6 +21913,7 @@ declare const _default: {
|
|
|
21865
21913
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
21866
21914
|
onOnsearch?: (value: string) => any;
|
|
21867
21915
|
onLoadMore?: () => any;
|
|
21916
|
+
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21868
21917
|
onOpened?: () => any;
|
|
21869
21918
|
onClosed?: () => any;
|
|
21870
21919
|
}, {
|
|
@@ -21882,6 +21931,7 @@ declare const _default: {
|
|
|
21882
21931
|
onsearch: (value: string) => void;
|
|
21883
21932
|
loadMore: () => void;
|
|
21884
21933
|
allSelectedChanged: (value: boolean) => void;
|
|
21934
|
+
unsavedSelectionUpdate: (value: unknown[]) => void;
|
|
21885
21935
|
}, string, {
|
|
21886
21936
|
theme: string;
|
|
21887
21937
|
testId: string;
|
|
@@ -22544,6 +22594,14 @@ declare const _default: {
|
|
|
22544
22594
|
required: true;
|
|
22545
22595
|
default: string;
|
|
22546
22596
|
};
|
|
22597
|
+
optionFlagKey: {
|
|
22598
|
+
type: import("vue").PropType<string>;
|
|
22599
|
+
default: string;
|
|
22600
|
+
};
|
|
22601
|
+
groupedOptions: {
|
|
22602
|
+
type: import("vue").PropType<boolean>;
|
|
22603
|
+
default: boolean;
|
|
22604
|
+
};
|
|
22547
22605
|
comparingKey: {
|
|
22548
22606
|
type: import("vue").PropType<string>;
|
|
22549
22607
|
required: true;
|
|
@@ -22585,6 +22643,14 @@ declare const _default: {
|
|
|
22585
22643
|
type: import("vue").PropType<() => Promise<void>>;
|
|
22586
22644
|
default: any;
|
|
22587
22645
|
};
|
|
22646
|
+
fetchDataDebounceTime: {
|
|
22647
|
+
type: import("vue").PropType<number>;
|
|
22648
|
+
default: number;
|
|
22649
|
+
};
|
|
22650
|
+
autoFocusSearch: {
|
|
22651
|
+
type: import("vue").PropType<boolean>;
|
|
22652
|
+
default: boolean;
|
|
22653
|
+
};
|
|
22588
22654
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22589
22655
|
"update:selectedCondition": (value: {
|
|
22590
22656
|
label: string;
|
|
@@ -22616,6 +22682,14 @@ declare const _default: {
|
|
|
22616
22682
|
required: true;
|
|
22617
22683
|
default: string;
|
|
22618
22684
|
};
|
|
22685
|
+
optionFlagKey: {
|
|
22686
|
+
type: import("vue").PropType<string>;
|
|
22687
|
+
default: string;
|
|
22688
|
+
};
|
|
22689
|
+
groupedOptions: {
|
|
22690
|
+
type: import("vue").PropType<boolean>;
|
|
22691
|
+
default: boolean;
|
|
22692
|
+
};
|
|
22619
22693
|
comparingKey: {
|
|
22620
22694
|
type: import("vue").PropType<string>;
|
|
22621
22695
|
required: true;
|
|
@@ -22657,6 +22731,14 @@ declare const _default: {
|
|
|
22657
22731
|
type: import("vue").PropType<() => Promise<void>>;
|
|
22658
22732
|
default: any;
|
|
22659
22733
|
};
|
|
22734
|
+
fetchDataDebounceTime: {
|
|
22735
|
+
type: import("vue").PropType<number>;
|
|
22736
|
+
default: number;
|
|
22737
|
+
};
|
|
22738
|
+
autoFocusSearch: {
|
|
22739
|
+
type: import("vue").PropType<boolean>;
|
|
22740
|
+
default: boolean;
|
|
22741
|
+
};
|
|
22660
22742
|
}>> & {
|
|
22661
22743
|
onClear?: () => any;
|
|
22662
22744
|
"onUpdate:selectedCondition"?: (value: {
|
|
@@ -22671,10 +22753,14 @@ declare const _default: {
|
|
|
22671
22753
|
isOpen: boolean;
|
|
22672
22754
|
infiniteLoading: boolean;
|
|
22673
22755
|
optionNameKey: string;
|
|
22756
|
+
optionFlagKey: string;
|
|
22757
|
+
groupedOptions: boolean;
|
|
22674
22758
|
comparingKey: string;
|
|
22675
22759
|
minCharsToStart: number;
|
|
22676
22760
|
searchQuery: string;
|
|
22677
22761
|
loadMoreFn: () => Promise<void>;
|
|
22762
|
+
fetchDataDebounceTime: number;
|
|
22763
|
+
autoFocusSearch: boolean;
|
|
22678
22764
|
}>)[];
|
|
22679
22765
|
Option: {
|
|
22680
22766
|
new (...args: any[]): {
|
|
@@ -23648,6 +23734,14 @@ declare const _default: {
|
|
|
23648
23734
|
required: true;
|
|
23649
23735
|
default: string;
|
|
23650
23736
|
};
|
|
23737
|
+
optionFlagKey: {
|
|
23738
|
+
type: import("vue").PropType<string>;
|
|
23739
|
+
default: string;
|
|
23740
|
+
};
|
|
23741
|
+
groupedOptions: {
|
|
23742
|
+
type: import("vue").PropType<boolean>;
|
|
23743
|
+
default: boolean;
|
|
23744
|
+
};
|
|
23651
23745
|
comparingKey: {
|
|
23652
23746
|
type: import("vue").PropType<string>;
|
|
23653
23747
|
required: true;
|
|
@@ -23689,6 +23783,14 @@ declare const _default: {
|
|
|
23689
23783
|
type: import("vue").PropType<() => Promise<void>>;
|
|
23690
23784
|
default: any;
|
|
23691
23785
|
};
|
|
23786
|
+
fetchDataDebounceTime: {
|
|
23787
|
+
type: import("vue").PropType<number>;
|
|
23788
|
+
default: number;
|
|
23789
|
+
};
|
|
23790
|
+
autoFocusSearch: {
|
|
23791
|
+
type: import("vue").PropType<boolean>;
|
|
23792
|
+
default: boolean;
|
|
23793
|
+
};
|
|
23692
23794
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23693
23795
|
"update:selectedCondition": (value: {
|
|
23694
23796
|
label: string;
|
|
@@ -23720,6 +23822,14 @@ declare const _default: {
|
|
|
23720
23822
|
required: true;
|
|
23721
23823
|
default: string;
|
|
23722
23824
|
};
|
|
23825
|
+
optionFlagKey: {
|
|
23826
|
+
type: import("vue").PropType<string>;
|
|
23827
|
+
default: string;
|
|
23828
|
+
};
|
|
23829
|
+
groupedOptions: {
|
|
23830
|
+
type: import("vue").PropType<boolean>;
|
|
23831
|
+
default: boolean;
|
|
23832
|
+
};
|
|
23723
23833
|
comparingKey: {
|
|
23724
23834
|
type: import("vue").PropType<string>;
|
|
23725
23835
|
required: true;
|
|
@@ -23761,6 +23871,14 @@ declare const _default: {
|
|
|
23761
23871
|
type: import("vue").PropType<() => Promise<void>>;
|
|
23762
23872
|
default: any;
|
|
23763
23873
|
};
|
|
23874
|
+
fetchDataDebounceTime: {
|
|
23875
|
+
type: import("vue").PropType<number>;
|
|
23876
|
+
default: number;
|
|
23877
|
+
};
|
|
23878
|
+
autoFocusSearch: {
|
|
23879
|
+
type: import("vue").PropType<boolean>;
|
|
23880
|
+
default: boolean;
|
|
23881
|
+
};
|
|
23764
23882
|
}>> & {
|
|
23765
23883
|
onClear?: () => any;
|
|
23766
23884
|
"onUpdate:selectedCondition"?: (value: {
|
|
@@ -23775,10 +23893,14 @@ declare const _default: {
|
|
|
23775
23893
|
isOpen: boolean;
|
|
23776
23894
|
infiniteLoading: boolean;
|
|
23777
23895
|
optionNameKey: string;
|
|
23896
|
+
optionFlagKey: string;
|
|
23897
|
+
groupedOptions: boolean;
|
|
23778
23898
|
comparingKey: string;
|
|
23779
23899
|
minCharsToStart: number;
|
|
23780
23900
|
searchQuery: string;
|
|
23781
23901
|
loadMoreFn: () => Promise<void>;
|
|
23902
|
+
fetchDataDebounceTime: number;
|
|
23903
|
+
autoFocusSearch: boolean;
|
|
23782
23904
|
}>;
|
|
23783
23905
|
Label: {
|
|
23784
23906
|
new (...args: any[]): {
|
package/package.json
CHANGED
package/testids/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare enum DropdownTestIdModifiers {
|
|
|
15
15
|
BUTTON = "dd-button",
|
|
16
16
|
BUTTON_WRAPPER = "dd-button-wrapper",
|
|
17
17
|
BUTTON_CONTENT = "dd-button-content",
|
|
18
|
+
BUTTON_CONTENT_SUFFIX = "dd-button-content-suffix",
|
|
18
19
|
BUTTON_CLEAR = "dd-button-clear",
|
|
19
20
|
LABEL = "dd-label",
|
|
20
21
|
LIST_CONTAINER = "dd-list-container",
|