@ironsource/shared-ui 2.1.12-test.70 → 2.1.12-test.72
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/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/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/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 +68 -2
- package/index.js +1 -1
- package/package.json +1 -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
|
@@ -31,6 +31,7 @@ declare const DataGridTypes: () => (({
|
|
|
31
31
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
32
32
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
33
33
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
34
|
+
helpTooltipVariant: "icon" | "underline";
|
|
34
35
|
rowCustomClassKey: string;
|
|
35
36
|
rowDataKey: string;
|
|
36
37
|
isSelectionSticky: boolean;
|
|
@@ -140,6 +141,13 @@ declare const DataGridTypes: () => (({
|
|
|
140
141
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
141
142
|
default: any;
|
|
142
143
|
};
|
|
144
|
+
showTotalsRow: {
|
|
145
|
+
type: import("vue").PropType<boolean>;
|
|
146
|
+
};
|
|
147
|
+
helpTooltipVariant: {
|
|
148
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
149
|
+
default: string;
|
|
150
|
+
};
|
|
143
151
|
rowCustomClassKey: {
|
|
144
152
|
type: import("vue").PropType<string>;
|
|
145
153
|
default: string;
|
|
@@ -167,7 +175,7 @@ declare const DataGridTypes: () => (({
|
|
|
167
175
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
168
176
|
onSelectRow?: (value: boolean) => any;
|
|
169
177
|
onClickRow?: (rowIndex: number) => any;
|
|
170
|
-
} & 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">;
|
|
178
|
+
} & 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">;
|
|
171
179
|
$attrs: {
|
|
172
180
|
[x: string]: unknown;
|
|
173
181
|
};
|
|
@@ -286,6 +294,13 @@ declare const DataGridTypes: () => (({
|
|
|
286
294
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
287
295
|
default: any;
|
|
288
296
|
};
|
|
297
|
+
showTotalsRow: {
|
|
298
|
+
type: import("vue").PropType<boolean>;
|
|
299
|
+
};
|
|
300
|
+
helpTooltipVariant: {
|
|
301
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
302
|
+
default: string;
|
|
303
|
+
};
|
|
289
304
|
rowCustomClassKey: {
|
|
290
305
|
type: import("vue").PropType<string>;
|
|
291
306
|
default: string;
|
|
@@ -351,6 +366,7 @@ declare const DataGridTypes: () => (({
|
|
|
351
366
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
352
367
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
353
368
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
369
|
+
helpTooltipVariant: "icon" | "underline";
|
|
354
370
|
rowCustomClassKey: string;
|
|
355
371
|
rowDataKey: string;
|
|
356
372
|
isSelectionSticky: boolean;
|
|
@@ -480,6 +496,13 @@ declare const DataGridTypes: () => (({
|
|
|
480
496
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
481
497
|
default: any;
|
|
482
498
|
};
|
|
499
|
+
showTotalsRow: {
|
|
500
|
+
type: import("vue").PropType<boolean>;
|
|
501
|
+
};
|
|
502
|
+
helpTooltipVariant: {
|
|
503
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
504
|
+
default: string;
|
|
505
|
+
};
|
|
483
506
|
rowCustomClassKey: {
|
|
484
507
|
type: import("vue").PropType<string>;
|
|
485
508
|
default: string;
|
|
@@ -618,6 +641,13 @@ declare const DataGridTypes: () => (({
|
|
|
618
641
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
619
642
|
default: any;
|
|
620
643
|
};
|
|
644
|
+
showTotalsRow: {
|
|
645
|
+
type: import("vue").PropType<boolean>;
|
|
646
|
+
};
|
|
647
|
+
helpTooltipVariant: {
|
|
648
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
649
|
+
default: string;
|
|
650
|
+
};
|
|
621
651
|
rowCustomClassKey: {
|
|
622
652
|
type: import("vue").PropType<string>;
|
|
623
653
|
default: string;
|
|
@@ -683,6 +713,7 @@ declare const DataGridTypes: () => (({
|
|
|
683
713
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
684
714
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
685
715
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
716
|
+
helpTooltipVariant: "icon" | "underline";
|
|
686
717
|
rowCustomClassKey: string;
|
|
687
718
|
rowDataKey: string;
|
|
688
719
|
isSelectionSticky: boolean;
|
|
@@ -690,6 +721,8 @@ declare const DataGridTypes: () => (({
|
|
|
690
721
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
691
722
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
692
723
|
column: import("../common/Table.types").Column;
|
|
724
|
+
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
725
|
+
column: import("../common/Table.types").Column;
|
|
693
726
|
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
694
727
|
cell: unknown;
|
|
695
728
|
isLoading: boolean;
|
package/index.d.ts
CHANGED
|
@@ -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;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_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-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}
|