@ironsource/shared-ui 2.1.12-rc.20 → 2.1.12-rc.22
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/Chart.vue_vue_type_style_index_0_scoped_03771fa3_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_ebc0c582_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_086c5b0d_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_86b82f0c_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_3dc741c1_lang.css +1 -0
- package/SwitchV4.vue_vue_type_style_index_0_scoped_fa120cf6_lang.css +1 -0
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +17 -16
- package/components/chart/ChartHeaderTrend.vue.js +3 -3
- package/components/chart/ChartHeaderTrend.vue2.js +34 -33
- package/components/chart/ChartStoryArgs.d.ts +1 -1
- package/components/dateRange/common/DateServices.common.d.ts +6 -0
- package/components/dateRange/common/DateServices.common.js +87 -92
- package/components/dateRange/common/consts.common.d.ts +5 -0
- package/components/dateRange/common/consts.common.js +9 -3
- package/components/dateRange/v3/DateRange.vue.d.ts +3 -3
- package/components/dateRange/v3/DateRangePicker.vue.d.ts +3 -3
- package/components/dateRange/v3/index.d.ts +7 -7
- package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +3 -3
- package/components/dateRange/v4/DateRangeV4.vue.d.ts +3 -3
- package/components/dateRange/v4/index.d.ts +7 -7
- package/components/dropdown/common/Dropdown.common.d.ts +1 -0
- package/components/dropdown/common/Dropdown.common.js +44 -43
- package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +218 -189
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +71 -68
- package/components/dropdown/v4/index.d.ts +39 -1
- package/components/switch/v4/SwitchV4.vue.d.ts +5 -0
- package/components/switch/v4/SwitchV4.vue.js +3 -3
- package/components/switch/v4/SwitchV4.vue2.js +25 -23
- package/components/switch/v4/index.d.ts +11 -0
- package/components/table/common/Table.common.d.ts +0 -1
- package/components/table/common/Table.common.js +38 -39
- package/components/table/common/Table.types.d.ts +2 -0
- package/components/table/common/consts.d.ts +1 -0
- package/components/table/common/consts.js +2 -1
- package/components/table/v4/DataGrid.vue.d.ts +10 -1
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +294 -237
- package/components/table/v4/index.d.ts +34 -1
- package/components/table/v4/storyUtils.d.ts +2 -0
- package/index.d.ts +182 -18
- package/index.js +1 -1
- package/package.json +1 -1
- package/Chart.vue_vue_type_style_index_0_scoped_64205c96_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_79dc2883_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_08cb822e_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_9cdf3a94_lang.css +0 -1
- package/SwitchV4.vue_vue_type_style_index_0_scoped_c2e356f5_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -562,7 +562,7 @@ declare const _default: {
|
|
|
562
562
|
dateFormat: string;
|
|
563
563
|
types: ("date" | "week" | "month")[];
|
|
564
564
|
maxDaysInRange: number;
|
|
565
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
|
|
565
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
566
566
|
regex: RegExp;
|
|
567
567
|
initialType: "date" | "week" | "month";
|
|
568
568
|
openOnTop: boolean;
|
|
@@ -609,7 +609,7 @@ declare const _default: {
|
|
|
609
609
|
default: any;
|
|
610
610
|
};
|
|
611
611
|
datePresetList: {
|
|
612
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
612
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
613
613
|
default: string;
|
|
614
614
|
};
|
|
615
615
|
regex: {
|
|
@@ -697,7 +697,7 @@ declare const _default: {
|
|
|
697
697
|
default: any;
|
|
698
698
|
};
|
|
699
699
|
datePresetList: {
|
|
700
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
700
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
701
701
|
default: string;
|
|
702
702
|
};
|
|
703
703
|
regex: {
|
|
@@ -746,7 +746,7 @@ declare const _default: {
|
|
|
746
746
|
dateFormat: string;
|
|
747
747
|
types: ("date" | "week" | "month")[];
|
|
748
748
|
maxDaysInRange: number;
|
|
749
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
|
|
749
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
750
750
|
regex: RegExp;
|
|
751
751
|
initialType: "date" | "week" | "month";
|
|
752
752
|
openOnTop: boolean;
|
|
@@ -813,7 +813,7 @@ declare const _default: {
|
|
|
813
813
|
default: any;
|
|
814
814
|
};
|
|
815
815
|
datePresetList: {
|
|
816
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
816
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
817
817
|
default: string;
|
|
818
818
|
};
|
|
819
819
|
regex: {
|
|
@@ -891,7 +891,7 @@ declare const _default: {
|
|
|
891
891
|
default: any;
|
|
892
892
|
};
|
|
893
893
|
datePresetList: {
|
|
894
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
894
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
895
895
|
default: string;
|
|
896
896
|
};
|
|
897
897
|
regex: {
|
|
@@ -940,7 +940,7 @@ declare const _default: {
|
|
|
940
940
|
dateFormat: string;
|
|
941
941
|
types: ("date" | "week" | "month")[];
|
|
942
942
|
maxDaysInRange: number;
|
|
943
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
|
|
943
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
944
944
|
regex: RegExp;
|
|
945
945
|
initialType: "date" | "week" | "month";
|
|
946
946
|
openOnTop: boolean;
|
|
@@ -968,7 +968,7 @@ declare const _default: {
|
|
|
968
968
|
dateFormat: string;
|
|
969
969
|
types: ("date" | "week" | "month")[];
|
|
970
970
|
maxDaysInRange: number;
|
|
971
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
|
|
971
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
972
972
|
regex: RegExp;
|
|
973
973
|
initialType: "date" | "week" | "month";
|
|
974
974
|
openOnTop: boolean;
|
|
@@ -1015,7 +1015,7 @@ declare const _default: {
|
|
|
1015
1015
|
default: any;
|
|
1016
1016
|
};
|
|
1017
1017
|
datePresetList: {
|
|
1018
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
1018
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1019
1019
|
default: string;
|
|
1020
1020
|
};
|
|
1021
1021
|
regex: {
|
|
@@ -1103,7 +1103,7 @@ declare const _default: {
|
|
|
1103
1103
|
default: any;
|
|
1104
1104
|
};
|
|
1105
1105
|
datePresetList: {
|
|
1106
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
1106
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1107
1107
|
default: string;
|
|
1108
1108
|
};
|
|
1109
1109
|
regex: {
|
|
@@ -1152,7 +1152,7 @@ declare const _default: {
|
|
|
1152
1152
|
dateFormat: string;
|
|
1153
1153
|
types: ("date" | "week" | "month")[];
|
|
1154
1154
|
maxDaysInRange: number;
|
|
1155
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
|
|
1155
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
1156
1156
|
regex: RegExp;
|
|
1157
1157
|
initialType: "date" | "week" | "month";
|
|
1158
1158
|
openOnTop: boolean;
|
|
@@ -1219,7 +1219,7 @@ declare const _default: {
|
|
|
1219
1219
|
default: any;
|
|
1220
1220
|
};
|
|
1221
1221
|
datePresetList: {
|
|
1222
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
1222
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1223
1223
|
default: string;
|
|
1224
1224
|
};
|
|
1225
1225
|
regex: {
|
|
@@ -1297,7 +1297,7 @@ declare const _default: {
|
|
|
1297
1297
|
default: any;
|
|
1298
1298
|
};
|
|
1299
1299
|
datePresetList: {
|
|
1300
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
|
|
1300
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1301
1301
|
default: string;
|
|
1302
1302
|
};
|
|
1303
1303
|
regex: {
|
|
@@ -1346,7 +1346,7 @@ declare const _default: {
|
|
|
1346
1346
|
dateFormat: string;
|
|
1347
1347
|
types: ("date" | "week" | "month")[];
|
|
1348
1348
|
maxDaysInRange: number;
|
|
1349
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
|
|
1349
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
1350
1350
|
regex: RegExp;
|
|
1351
1351
|
initialType: "date" | "week" | "month";
|
|
1352
1352
|
openOnTop: boolean;
|
|
@@ -5792,6 +5792,7 @@ declare const _default: {
|
|
|
5792
5792
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
5793
5793
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5794
5794
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
5795
|
+
helpTooltipVariant: "icon" | "underline";
|
|
5795
5796
|
rowCustomClassKey: string;
|
|
5796
5797
|
rowDataKey: string;
|
|
5797
5798
|
isSelectionSticky: boolean;
|
|
@@ -5901,6 +5902,13 @@ declare const _default: {
|
|
|
5901
5902
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
5902
5903
|
default: any;
|
|
5903
5904
|
};
|
|
5905
|
+
showTotalsRow: {
|
|
5906
|
+
type: import("vue").PropType<boolean>;
|
|
5907
|
+
};
|
|
5908
|
+
helpTooltipVariant: {
|
|
5909
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
5910
|
+
default: string;
|
|
5911
|
+
};
|
|
5904
5912
|
rowCustomClassKey: {
|
|
5905
5913
|
type: import("vue").PropType<string>;
|
|
5906
5914
|
default: string;
|
|
@@ -5928,7 +5936,7 @@ declare const _default: {
|
|
|
5928
5936
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5929
5937
|
onSelectRow?: (value: boolean) => any;
|
|
5930
5938
|
onClickRow?: (rowIndex: number) => any;
|
|
5931
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
5939
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
5932
5940
|
$attrs: {
|
|
5933
5941
|
[x: string]: unknown;
|
|
5934
5942
|
};
|
|
@@ -6047,6 +6055,13 @@ declare const _default: {
|
|
|
6047
6055
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6048
6056
|
default: any;
|
|
6049
6057
|
};
|
|
6058
|
+
showTotalsRow: {
|
|
6059
|
+
type: import("vue").PropType<boolean>;
|
|
6060
|
+
};
|
|
6061
|
+
helpTooltipVariant: {
|
|
6062
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6063
|
+
default: string;
|
|
6064
|
+
};
|
|
6050
6065
|
rowCustomClassKey: {
|
|
6051
6066
|
type: import("vue").PropType<string>;
|
|
6052
6067
|
default: string;
|
|
@@ -6112,6 +6127,7 @@ declare const _default: {
|
|
|
6112
6127
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6113
6128
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6114
6129
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6130
|
+
helpTooltipVariant: "icon" | "underline";
|
|
6115
6131
|
rowCustomClassKey: string;
|
|
6116
6132
|
rowDataKey: string;
|
|
6117
6133
|
isSelectionSticky: boolean;
|
|
@@ -6241,6 +6257,13 @@ declare const _default: {
|
|
|
6241
6257
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6242
6258
|
default: any;
|
|
6243
6259
|
};
|
|
6260
|
+
showTotalsRow: {
|
|
6261
|
+
type: import("vue").PropType<boolean>;
|
|
6262
|
+
};
|
|
6263
|
+
helpTooltipVariant: {
|
|
6264
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6265
|
+
default: string;
|
|
6266
|
+
};
|
|
6244
6267
|
rowCustomClassKey: {
|
|
6245
6268
|
type: import("vue").PropType<string>;
|
|
6246
6269
|
default: string;
|
|
@@ -6379,6 +6402,13 @@ declare const _default: {
|
|
|
6379
6402
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6380
6403
|
default: any;
|
|
6381
6404
|
};
|
|
6405
|
+
showTotalsRow: {
|
|
6406
|
+
type: import("vue").PropType<boolean>;
|
|
6407
|
+
};
|
|
6408
|
+
helpTooltipVariant: {
|
|
6409
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6410
|
+
default: string;
|
|
6411
|
+
};
|
|
6382
6412
|
rowCustomClassKey: {
|
|
6383
6413
|
type: import("vue").PropType<string>;
|
|
6384
6414
|
default: string;
|
|
@@ -6444,6 +6474,7 @@ declare const _default: {
|
|
|
6444
6474
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6445
6475
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6446
6476
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6477
|
+
helpTooltipVariant: "icon" | "underline";
|
|
6447
6478
|
rowCustomClassKey: string;
|
|
6448
6479
|
rowDataKey: string;
|
|
6449
6480
|
isSelectionSticky: boolean;
|
|
@@ -6451,6 +6482,8 @@ declare const _default: {
|
|
|
6451
6482
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6452
6483
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
6453
6484
|
column: tableV3.Column;
|
|
6485
|
+
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
6486
|
+
column: tableV3.Column;
|
|
6454
6487
|
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
6455
6488
|
cell: unknown;
|
|
6456
6489
|
isLoading: boolean;
|
|
@@ -6600,6 +6633,7 @@ declare const _default: {
|
|
|
6600
6633
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6601
6634
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6602
6635
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6636
|
+
helpTooltipVariant: "icon" | "underline";
|
|
6603
6637
|
rowCustomClassKey: string;
|
|
6604
6638
|
rowDataKey: string;
|
|
6605
6639
|
isSelectionSticky: boolean;
|
|
@@ -6709,6 +6743,13 @@ declare const _default: {
|
|
|
6709
6743
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6710
6744
|
default: any;
|
|
6711
6745
|
};
|
|
6746
|
+
showTotalsRow: {
|
|
6747
|
+
type: import("vue").PropType<boolean>;
|
|
6748
|
+
};
|
|
6749
|
+
helpTooltipVariant: {
|
|
6750
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6751
|
+
default: string;
|
|
6752
|
+
};
|
|
6712
6753
|
rowCustomClassKey: {
|
|
6713
6754
|
type: import("vue").PropType<string>;
|
|
6714
6755
|
default: string;
|
|
@@ -6736,7 +6777,7 @@ declare const _default: {
|
|
|
6736
6777
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
6737
6778
|
onSelectRow?: (value: boolean) => any;
|
|
6738
6779
|
onClickRow?: (rowIndex: number) => any;
|
|
6739
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6780
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6740
6781
|
$attrs: {
|
|
6741
6782
|
[x: string]: unknown;
|
|
6742
6783
|
};
|
|
@@ -6855,6 +6896,13 @@ declare const _default: {
|
|
|
6855
6896
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
6856
6897
|
default: any;
|
|
6857
6898
|
};
|
|
6899
|
+
showTotalsRow: {
|
|
6900
|
+
type: import("vue").PropType<boolean>;
|
|
6901
|
+
};
|
|
6902
|
+
helpTooltipVariant: {
|
|
6903
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
6904
|
+
default: string;
|
|
6905
|
+
};
|
|
6858
6906
|
rowCustomClassKey: {
|
|
6859
6907
|
type: import("vue").PropType<string>;
|
|
6860
6908
|
default: string;
|
|
@@ -6920,6 +6968,7 @@ declare const _default: {
|
|
|
6920
6968
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
6921
6969
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6922
6970
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
6971
|
+
helpTooltipVariant: "icon" | "underline";
|
|
6923
6972
|
rowCustomClassKey: string;
|
|
6924
6973
|
rowDataKey: string;
|
|
6925
6974
|
isSelectionSticky: boolean;
|
|
@@ -7049,6 +7098,13 @@ declare const _default: {
|
|
|
7049
7098
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7050
7099
|
default: any;
|
|
7051
7100
|
};
|
|
7101
|
+
showTotalsRow: {
|
|
7102
|
+
type: import("vue").PropType<boolean>;
|
|
7103
|
+
};
|
|
7104
|
+
helpTooltipVariant: {
|
|
7105
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
7106
|
+
default: string;
|
|
7107
|
+
};
|
|
7052
7108
|
rowCustomClassKey: {
|
|
7053
7109
|
type: import("vue").PropType<string>;
|
|
7054
7110
|
default: string;
|
|
@@ -7187,6 +7243,13 @@ declare const _default: {
|
|
|
7187
7243
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
7188
7244
|
default: any;
|
|
7189
7245
|
};
|
|
7246
|
+
showTotalsRow: {
|
|
7247
|
+
type: import("vue").PropType<boolean>;
|
|
7248
|
+
};
|
|
7249
|
+
helpTooltipVariant: {
|
|
7250
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
7251
|
+
default: string;
|
|
7252
|
+
};
|
|
7190
7253
|
rowCustomClassKey: {
|
|
7191
7254
|
type: import("vue").PropType<string>;
|
|
7192
7255
|
default: string;
|
|
@@ -7252,6 +7315,7 @@ declare const _default: {
|
|
|
7252
7315
|
getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
|
|
7253
7316
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7254
7317
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
7318
|
+
helpTooltipVariant: "icon" | "underline";
|
|
7255
7319
|
rowCustomClassKey: string;
|
|
7256
7320
|
rowDataKey: string;
|
|
7257
7321
|
isSelectionSticky: boolean;
|
|
@@ -7259,6 +7323,8 @@ declare const _default: {
|
|
|
7259
7323
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7260
7324
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
7261
7325
|
column: tableV3.Column;
|
|
7326
|
+
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
7327
|
+
column: tableV3.Column;
|
|
7262
7328
|
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
7263
7329
|
cell: unknown;
|
|
7264
7330
|
isLoading: boolean;
|
|
@@ -16307,6 +16373,8 @@ declare const _default: {
|
|
|
16307
16373
|
autoSize: boolean;
|
|
16308
16374
|
disableKeyboardEvents: boolean;
|
|
16309
16375
|
dynamicFilterMode: boolean;
|
|
16376
|
+
minSelections: number;
|
|
16377
|
+
maxSelections: number;
|
|
16310
16378
|
isOnTop: boolean;
|
|
16311
16379
|
triggerLabel: string;
|
|
16312
16380
|
triggerHelperText: string;
|
|
@@ -16448,6 +16516,14 @@ declare const _default: {
|
|
|
16448
16516
|
type: import("vue").PropType<boolean>;
|
|
16449
16517
|
default: boolean;
|
|
16450
16518
|
};
|
|
16519
|
+
minSelections: {
|
|
16520
|
+
type: import("vue").PropType<number>;
|
|
16521
|
+
default: number;
|
|
16522
|
+
};
|
|
16523
|
+
maxSelections: {
|
|
16524
|
+
type: import("vue").PropType<number>;
|
|
16525
|
+
default: any;
|
|
16526
|
+
};
|
|
16451
16527
|
isOnTop: {
|
|
16452
16528
|
type: import("vue").PropType<boolean>;
|
|
16453
16529
|
default: boolean;
|
|
@@ -16605,7 +16681,7 @@ declare const _default: {
|
|
|
16605
16681
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16606
16682
|
onOpened?: () => any;
|
|
16607
16683
|
onClosed?: () => any;
|
|
16608
|
-
} & 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" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16684
|
+
} & 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" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16609
16685
|
$attrs: {
|
|
16610
16686
|
[x: string]: unknown;
|
|
16611
16687
|
};
|
|
@@ -16725,6 +16801,14 @@ declare const _default: {
|
|
|
16725
16801
|
type: import("vue").PropType<boolean>;
|
|
16726
16802
|
default: boolean;
|
|
16727
16803
|
};
|
|
16804
|
+
minSelections: {
|
|
16805
|
+
type: import("vue").PropType<number>;
|
|
16806
|
+
default: number;
|
|
16807
|
+
};
|
|
16808
|
+
maxSelections: {
|
|
16809
|
+
type: import("vue").PropType<number>;
|
|
16810
|
+
default: any;
|
|
16811
|
+
};
|
|
16728
16812
|
isOnTop: {
|
|
16729
16813
|
type: import("vue").PropType<boolean>;
|
|
16730
16814
|
default: boolean;
|
|
@@ -16922,6 +17006,8 @@ declare const _default: {
|
|
|
16922
17006
|
autoSize: boolean;
|
|
16923
17007
|
disableKeyboardEvents: boolean;
|
|
16924
17008
|
dynamicFilterMode: boolean;
|
|
17009
|
+
minSelections: number;
|
|
17010
|
+
maxSelections: number;
|
|
16925
17011
|
isOnTop: boolean;
|
|
16926
17012
|
triggerLabel: string;
|
|
16927
17013
|
triggerHelperText: string;
|
|
@@ -17083,6 +17169,14 @@ declare const _default: {
|
|
|
17083
17169
|
type: import("vue").PropType<boolean>;
|
|
17084
17170
|
default: boolean;
|
|
17085
17171
|
};
|
|
17172
|
+
minSelections: {
|
|
17173
|
+
type: import("vue").PropType<number>;
|
|
17174
|
+
default: number;
|
|
17175
|
+
};
|
|
17176
|
+
maxSelections: {
|
|
17177
|
+
type: import("vue").PropType<number>;
|
|
17178
|
+
default: any;
|
|
17179
|
+
};
|
|
17086
17180
|
isOnTop: {
|
|
17087
17181
|
type: import("vue").PropType<boolean>;
|
|
17088
17182
|
default: boolean;
|
|
@@ -17353,6 +17447,14 @@ declare const _default: {
|
|
|
17353
17447
|
type: import("vue").PropType<boolean>;
|
|
17354
17448
|
default: boolean;
|
|
17355
17449
|
};
|
|
17450
|
+
minSelections: {
|
|
17451
|
+
type: import("vue").PropType<number>;
|
|
17452
|
+
default: number;
|
|
17453
|
+
};
|
|
17454
|
+
maxSelections: {
|
|
17455
|
+
type: import("vue").PropType<number>;
|
|
17456
|
+
default: any;
|
|
17457
|
+
};
|
|
17356
17458
|
isOnTop: {
|
|
17357
17459
|
type: import("vue").PropType<boolean>;
|
|
17358
17460
|
default: boolean;
|
|
@@ -17550,6 +17652,8 @@ declare const _default: {
|
|
|
17550
17652
|
autoSize: boolean;
|
|
17551
17653
|
disableKeyboardEvents: boolean;
|
|
17552
17654
|
dynamicFilterMode: boolean;
|
|
17655
|
+
minSelections: number;
|
|
17656
|
+
maxSelections: number;
|
|
17553
17657
|
isOnTop: boolean;
|
|
17554
17658
|
triggerLabel: string;
|
|
17555
17659
|
triggerHelperText: string;
|
|
@@ -21008,6 +21112,8 @@ declare const _default: {
|
|
|
21008
21112
|
autoSize: boolean;
|
|
21009
21113
|
disableKeyboardEvents: boolean;
|
|
21010
21114
|
dynamicFilterMode: boolean;
|
|
21115
|
+
minSelections: number;
|
|
21116
|
+
maxSelections: number;
|
|
21011
21117
|
isOnTop: boolean;
|
|
21012
21118
|
triggerLabel: string;
|
|
21013
21119
|
triggerHelperText: string;
|
|
@@ -21149,6 +21255,14 @@ declare const _default: {
|
|
|
21149
21255
|
type: import("vue").PropType<boolean>;
|
|
21150
21256
|
default: boolean;
|
|
21151
21257
|
};
|
|
21258
|
+
minSelections: {
|
|
21259
|
+
type: import("vue").PropType<number>;
|
|
21260
|
+
default: number;
|
|
21261
|
+
};
|
|
21262
|
+
maxSelections: {
|
|
21263
|
+
type: import("vue").PropType<number>;
|
|
21264
|
+
default: any;
|
|
21265
|
+
};
|
|
21152
21266
|
isOnTop: {
|
|
21153
21267
|
type: import("vue").PropType<boolean>;
|
|
21154
21268
|
default: boolean;
|
|
@@ -21306,7 +21420,7 @@ declare const _default: {
|
|
|
21306
21420
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21307
21421
|
onOpened?: () => any;
|
|
21308
21422
|
onClosed?: () => any;
|
|
21309
|
-
} & 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" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21423
|
+
} & 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" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21310
21424
|
$attrs: {
|
|
21311
21425
|
[x: string]: unknown;
|
|
21312
21426
|
};
|
|
@@ -21426,6 +21540,14 @@ declare const _default: {
|
|
|
21426
21540
|
type: import("vue").PropType<boolean>;
|
|
21427
21541
|
default: boolean;
|
|
21428
21542
|
};
|
|
21543
|
+
minSelections: {
|
|
21544
|
+
type: import("vue").PropType<number>;
|
|
21545
|
+
default: number;
|
|
21546
|
+
};
|
|
21547
|
+
maxSelections: {
|
|
21548
|
+
type: import("vue").PropType<number>;
|
|
21549
|
+
default: any;
|
|
21550
|
+
};
|
|
21429
21551
|
isOnTop: {
|
|
21430
21552
|
type: import("vue").PropType<boolean>;
|
|
21431
21553
|
default: boolean;
|
|
@@ -21623,6 +21745,8 @@ declare const _default: {
|
|
|
21623
21745
|
autoSize: boolean;
|
|
21624
21746
|
disableKeyboardEvents: boolean;
|
|
21625
21747
|
dynamicFilterMode: boolean;
|
|
21748
|
+
minSelections: number;
|
|
21749
|
+
maxSelections: number;
|
|
21626
21750
|
isOnTop: boolean;
|
|
21627
21751
|
triggerLabel: string;
|
|
21628
21752
|
triggerHelperText: string;
|
|
@@ -21784,6 +21908,14 @@ declare const _default: {
|
|
|
21784
21908
|
type: import("vue").PropType<boolean>;
|
|
21785
21909
|
default: boolean;
|
|
21786
21910
|
};
|
|
21911
|
+
minSelections: {
|
|
21912
|
+
type: import("vue").PropType<number>;
|
|
21913
|
+
default: number;
|
|
21914
|
+
};
|
|
21915
|
+
maxSelections: {
|
|
21916
|
+
type: import("vue").PropType<number>;
|
|
21917
|
+
default: any;
|
|
21918
|
+
};
|
|
21787
21919
|
isOnTop: {
|
|
21788
21920
|
type: import("vue").PropType<boolean>;
|
|
21789
21921
|
default: boolean;
|
|
@@ -22054,6 +22186,14 @@ declare const _default: {
|
|
|
22054
22186
|
type: import("vue").PropType<boolean>;
|
|
22055
22187
|
default: boolean;
|
|
22056
22188
|
};
|
|
22189
|
+
minSelections: {
|
|
22190
|
+
type: import("vue").PropType<number>;
|
|
22191
|
+
default: number;
|
|
22192
|
+
};
|
|
22193
|
+
maxSelections: {
|
|
22194
|
+
type: import("vue").PropType<number>;
|
|
22195
|
+
default: any;
|
|
22196
|
+
};
|
|
22057
22197
|
isOnTop: {
|
|
22058
22198
|
type: import("vue").PropType<boolean>;
|
|
22059
22199
|
default: boolean;
|
|
@@ -22251,6 +22391,8 @@ declare const _default: {
|
|
|
22251
22391
|
autoSize: boolean;
|
|
22252
22392
|
disableKeyboardEvents: boolean;
|
|
22253
22393
|
dynamicFilterMode: boolean;
|
|
22394
|
+
minSelections: number;
|
|
22395
|
+
maxSelections: number;
|
|
22254
22396
|
isOnTop: boolean;
|
|
22255
22397
|
triggerLabel: string;
|
|
22256
22398
|
triggerHelperText: string;
|
|
@@ -25657,6 +25799,11 @@ declare const _default: {
|
|
|
25657
25799
|
type: import("vue").PropType<string>;
|
|
25658
25800
|
default: string;
|
|
25659
25801
|
};
|
|
25802
|
+
variant: {
|
|
25803
|
+
type: import("vue").PropType<"default" | "primary">;
|
|
25804
|
+
required: true;
|
|
25805
|
+
default: string;
|
|
25806
|
+
};
|
|
25660
25807
|
modelValue: {
|
|
25661
25808
|
type: import("vue").PropType<unknown>;
|
|
25662
25809
|
required: true;
|
|
@@ -25676,6 +25823,11 @@ declare const _default: {
|
|
|
25676
25823
|
type: import("vue").PropType<string>;
|
|
25677
25824
|
default: string;
|
|
25678
25825
|
};
|
|
25826
|
+
variant: {
|
|
25827
|
+
type: import("vue").PropType<"default" | "primary">;
|
|
25828
|
+
required: true;
|
|
25829
|
+
default: string;
|
|
25830
|
+
};
|
|
25679
25831
|
modelValue: {
|
|
25680
25832
|
type: import("vue").PropType<unknown>;
|
|
25681
25833
|
required: true;
|
|
@@ -25692,6 +25844,7 @@ declare const _default: {
|
|
|
25692
25844
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25693
25845
|
}, {
|
|
25694
25846
|
testId: string;
|
|
25847
|
+
variant: "default" | "primary";
|
|
25695
25848
|
iconKey: string;
|
|
25696
25849
|
}>;
|
|
25697
25850
|
SwitchTypes: () => import("vue").DefineComponent<{
|
|
@@ -25699,6 +25852,11 @@ declare const _default: {
|
|
|
25699
25852
|
type: import("vue").PropType<string>;
|
|
25700
25853
|
default: string;
|
|
25701
25854
|
};
|
|
25855
|
+
variant: {
|
|
25856
|
+
type: import("vue").PropType<"default" | "primary">;
|
|
25857
|
+
required: true;
|
|
25858
|
+
default: string;
|
|
25859
|
+
};
|
|
25702
25860
|
modelValue: {
|
|
25703
25861
|
type: import("vue").PropType<unknown>;
|
|
25704
25862
|
required: true;
|
|
@@ -25718,6 +25876,11 @@ declare const _default: {
|
|
|
25718
25876
|
type: import("vue").PropType<string>;
|
|
25719
25877
|
default: string;
|
|
25720
25878
|
};
|
|
25879
|
+
variant: {
|
|
25880
|
+
type: import("vue").PropType<"default" | "primary">;
|
|
25881
|
+
required: true;
|
|
25882
|
+
default: string;
|
|
25883
|
+
};
|
|
25721
25884
|
modelValue: {
|
|
25722
25885
|
type: import("vue").PropType<unknown>;
|
|
25723
25886
|
required: true;
|
|
@@ -25734,6 +25897,7 @@ declare const _default: {
|
|
|
25734
25897
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25735
25898
|
}, {
|
|
25736
25899
|
testId: string;
|
|
25900
|
+
variant: "default" | "primary";
|
|
25737
25901
|
iconKey: string;
|
|
25738
25902
|
}>[];
|
|
25739
25903
|
Chip: {
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './AppTrigger.vue_vue_type_style_index_0_scoped_121aac8b_lang.css';
|
|
2
2
|
import { AppTriggerTypes as eo } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as ao } from "./components/menuItem/index.js";
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-container[data-v-64205c96]{border:1px solid var(--common-divider);background:var(--background-paper);display:flex;border-radius:0 0 6px 6px;width:100%}.chart-planes[data-v-64205c96]{width:100%;height:100%;overflow-y:auto}.chart-planes.with-legend[data-v-64205c96]{width:calc(100% - 221px)}.chart-planes .extra-chart-plane[data-v-64205c96]{border-top:1px solid var(--common-divider)}.chart-sidebar[data-v-64205c96]{border-left:1px solid var(--common-divider)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.chart-trend[data-v-79dc2883]{display:flex}.chart-trend--up[data-v-79dc2883]{color:var(--success-contrast-text)}.chart-trend--up .trend-icon[data-v-79dc2883]{color:var(--success-darker)}.chart-trend--down[data-v-79dc2883]{color:var(--error-contrast-text)}.chart-trend--down .trend-icon[data-v-79dc2883]{color:var(--error-dark)}.chart-trend--right[data-v-79dc2883]{color:var(--warning-contrast-text)}.chart-trend--right .trend-icon[data-v-79dc2883]{color:var(--warning-dark)}.trend-icon[data-v-79dc2883]{display:flex;align-self:normal}.chart-trend-tooltip[data-v-79dc2883]{align-items:normal}.trend-tooltip[data-v-79dc2883]{display:flex;flex-direction:column}.trend-tooltip__header[data-v-79dc2883]{margin-bottom:.375rem}.trend-tooltip__text[data-v-79dc2883]{color:var(--text-secondary)}.separator[data-v-79dc2883]{display:flex;align-items:center;gap:.5rem;justify-content:center;height:1.1875rem}.separator__text[data-v-79dc2883]{display:block;color:var(--text-secondary)}.separator hr[data-v-79dc2883]{width:100%;height:1px;border:0;background:var(--common-divider)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.sticky[data-v-86ea5d2a]{position:sticky}.table-container[data-v-86ea5d2a]{width:100%;position:relative;display:flex;flex-direction:column}.table-header[data-v-86ea5d2a]{display:flex;align-items:center;height:calc(var(--spacing-800) - 1px);border-bottom:1px solid var(--common-divider);background-color:var(--background-paper-elevation-0);position:sticky;left:0;padding:var(--spacing-300)}.table-header .table-title[data-v-86ea5d2a]{display:flex;flex:1;align-items:center;justify-content:flex-start;height:100%;color:var(--text-primary)}.table-header .table-header-right[data-v-86ea5d2a]{display:flex;align-items:center;height:100%}.table-header .search-wrapper[data-v-86ea5d2a]{width:13.75rem}.table-header.isStickyHeader[data-v-86ea5d2a]{z-index:calc(var(--1d1d1477) + 3);top:0}.table-head-container[data-v-86ea5d2a]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-86ea5d2a]{color:var(--text-primary);background-color:var(--background-paper-elevation-0);padding:0 var(--spacing-300);display:flex;align-items:center;min-height:var(--spacing-600);border:1px solid var(--common-divider);border-radius:var(--border-radius-md);border-top-right-radius:0;border-top-left-radius:0}.table-body-wrapper[data-v-86ea5d2a]{display:inline-table}.table-header-pre-search-content[data-v-86ea5d2a]{margin-right:var(--spacing-100);display:flex;align-items:center}.table-header-actions[data-v-86ea5d2a]{margin-left:var(--spacing-100);display:flex;align-items:center}.table-row[data-v-86ea5d2a]{position:relative}.table-row.loading[data-v-86ea5d2a]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-86ea5d2a]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-86ea5d2a]{border-bottom:none}.expanded-row[data-v-86ea5d2a]{grid-column:var(--2f1951ab);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-86ea5d2a]{position:relative;display:block;overflow:auto;background:var(--background-paper-elevation-0);border:1px solid var(--common-divider);color:var(--text-primary);text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:var(--border-radius-md);border-collapse:collapse;border-spacing:0}table.hasFooter[data-v-86ea5d2a]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-86ea5d2a],table th[data-v-86ea5d2a]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-86ea5d2a]:first-of-type,table th[data-v-86ea5d2a]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-86ea5d2a]:last-of-type,table th[data-v-86ea5d2a]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-86ea5d2a],table th.expand-toggle-cell[data-v-86ea5d2a]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-86ea5d2a]{border-bottom:none;z-index:calc(var(--1d1d1477) + 1);display:inline-table;min-width:100%}table>thead>tr[data-v-86ea5d2a]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);height:var(--spacing-500);display:grid;grid-template-columns:var(--d450b438)}table>thead>tr>th[data-v-86ea5d2a]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.bordered[data-v-86ea5d2a]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-86ea5d2a]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-86ea5d2a]{justify-content:flex-end}table>thead>tr>th.isSortable[data-v-86ea5d2a]{cursor:pointer}table>thead.sticky[data-v-86ea5d2a]{position:sticky;top:0;background:white}table>thead.isStickyHeader[data-v-86ea5d2a]{z-index:calc(var(--1d1d1477) + 2);top:calc(var(--spacing-800) - 1px)}table>tbody[data-v-86ea5d2a]{display:block}table>tbody>*>tr[data-v-86ea5d2a]{background-color:var(--background-default);min-height:var(--43af326c);height:auto;display:grid;align-items:center;grid-template-columns:var(--d450b438)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-86ea5d2a]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-86ea5d2a],table>tbody>*>tr.activeMenu>td[data-v-86ea5d2a]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-86ea5d2a]{background-color:var(--background-default);border:none;min-width:0;display:flex;min-height:var(--43af326c);height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-86ea5d2a]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-86ea5d2a]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-86ea5d2a]{justify-content:flex-end;text-align:right}.section-container[data-v-86ea5d2a]{left:0}.sections[data-v-86ea5d2a]{display:flex}.section[data-v-86ea5d2a]{padding:0 1.5rem;background:var(--background-default);left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid var(--common-divider)}.table-cell[data-v-86ea5d2a]{width:100%}.empty-state[data-v-86ea5d2a]{min-height:250px}.floating-row[data-v-86ea5d2a]{display:flex;inset:0;pointer-events:none;position:absolute;z-index:calc(var(--1d1d1477) + 1)}.floating-row *[data-v-86ea5d2a-s]{pointer-events:auto}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-enter-active[data-v-08cb822e],.v-leave-active[data-v-08cb822e]{transition:opacity .25s ease}ol[data-v-08cb822e],ul[data-v-08cb822e],menu[data-v-08cb822e]{list-style:none;margin:0;padding:0}.dropdown.full-width[data-v-08cb822e],.dropdown.full-width .button__container[data-v-08cb822e]{width:100%}.dropdown-list-wrapper[data-v-08cb822e]{display:flex;flex-direction:column;padding:.5rem .5rem .25rem}.dropdown-list-wrapper--multi[data-v-08cb822e]{padding:.5rem}.list-container--multi[data-v-08cb822e]{margin-bottom:0}.inline-search .inline-search-wrapper[data-v-08cb822e]{display:flex;gap:4px;padding-bottom:.25rem}.inline-search .inline-search-wrapper .search-container[data-v-08cb822e]{width:100%}.inline-search .list-container[data-v-08cb822e]{padding-top:0}.no-result-container[data-v-08cb822e]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}.no-result[data-v-08cb822e]{color:var(--text-disabled);padding-left:.5rem}.list[data-v-08cb822e]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem}.list--multi[data-v-08cb822e]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.list--with-conditions[data-v-08cb822e]{min-height:0;margin-bottom:0}.image-slot[data-v-08cb822e]{margin-right:.5rem}.actions-wrapper[data-v-08cb822e]{display:flex;width:100%;padding:.5rem .5rem .5rem .125rem;padding-bottom:0;border-top:1px solid var(--common-divider);justify-content:space-between;margin-top:.25rem}.apply-button[data-v-08cb822e]{margin-left:.5rem}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-9cdf3a94]{color:#41454d}.item-container[data-v-9cdf3a94]{width:100%;display:flex;align-items:center;cursor:pointer;border-radius:var(--border-radius-lg);margin-bottom:.25rem;color:var(--text-primary);padding:6px 8px}.item-container--disabled[data-v-9cdf3a94]{cursor:initial;color:var(--text-disabled)}.item-container[data-v-9cdf3a94]:hover:not(.item-container--disabled){background-color:var(--action-hover)}.item-container--active[data-v-9cdf3a94],.item-container[data-v-9cdf3a94]:active{background-color:var(--action-selected)}.item-container:not(.item-container--multi).item-container--selected[data-v-9cdf3a94]{background-color:var(--action-selected)}.subtitle[data-v-9cdf3a94]{color:#7b838c;line-height:1rem}.clear-button[data-v-9cdf3a94]{display:flex;padding:0 4px;color:#7b838c;align-items:center;height:auto;background-image:none;min-width:auto;border:none;background-color:transparent}.clear-button[data-v-9cdf3a94]:hover{color:#3083ff}.item[data-v-9cdf3a94]{width:100%;display:flex;gap:.5rem;align-items:center}.item--with-icon[data-v-9cdf3a94],.item--multi[data-v-9cdf3a94]{display:flex;flex-direction:row;align-items:center;justify-content:start}.item .image[data-v-9cdf3a94]{width:20px;height:20px;flex:none}.item .image img[data-v-9cdf3a94]{width:20px;height:20px;border-radius:4px}.item .flag[data-v-9cdf3a94]{width:16px;height:16px}.item .flag img[data-v-9cdf3a94]{width:16px;height:16px;border-radius:50%}.item .start-icon[data-v-9cdf3a94],.item .end-icon[data-v-9cdf3a94]{display:flex;color:var(--action-active)}.item .end-text-icon[data-v-9cdf3a94]{display:inline-flex}.item .option-text[data-v-9cdf3a94]{line-height:1.1875rem}.text-container[data-v-9cdf3a94]{width:100%;text-overflow:ellipsis;overflow:hidden}.v4-tooltip.tooltip-option[data-v-9cdf3a94]{display:block}.tooltip-option[data-v-9cdf3a94] .container{width:100%}.app-trigger--icon[data-v-9cdf3a94]{color:var(--action-active);transform:rotate(-90deg);transition:transform .2s}.app-trigger--icon.expanded[data-v-9cdf3a94]{transform:rotate(0)}.option-warning[data-v-9cdf3a94]{display:flex}.option-warning__icon[data-v-9cdf3a94]{color:var(--warning-main)}.option-content[data-v-9cdf3a94]{display:flex}.option-content[data-v-9cdf3a94]:not(.option-content-vertical){gap:.5rem;align-items:center}.option-content-horizontal[data-v-9cdf3a94]{justify-content:space-between;gap:.5rem}.option-content-vertical[data-v-9cdf3a94]{flex-direction:column}.option-text .main-text[data-v-9cdf3a94]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:left}.option-text .main-text .conditional-option-label[data-v-9cdf3a94]{color:var(--text-secondary);display:inline-flex}.option-text .main-text .conditional-option-value[data-v-9cdf3a94]{margin-left:4px;display:inline-flex;color:var(--primary-main)}.option-text .caption-text[data-v-9cdf3a94]{color:var(--text-secondary)}.multiline-tooltip[data-v-9cdf3a94]{display:flex;flex-direction:column}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.switch[data-v-c2e356f5]{position:relative;display:inline-flex;background:var(--default-main);border-radius:var(--border-radius-md);border:1px solid var(--default-outlined-border);overflow:hidden}.option[data-v-c2e356f5]{border-radius:0;padding:3px}.option[data-v-c2e356f5]:not(:last-child){border-right:1px solid var(--default-outlined-border)}.option--selected[data-v-c2e356f5]{background:var(--action-selected)}.option--selected[data-v-c2e356f5] .icon{color:var(--text-primary)}
|