@ironsource/shared-ui 2.1.8-rc.9 → 2.1.8-test.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DataGrid.vue_vue_type_style_index_0_scoped_2f666594_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +1 -0
- package/Table.vue_vue_type_style_index_0_scoped_76fef9bd_lang.css +1 -0
- package/components/chart/consts.d.ts +6 -0
- package/components/chart/consts.js +14 -15
- package/components/chart/index.d.ts +21 -20
- package/components/table/common/Table.types.d.ts +0 -6
- package/components/table/v3/Table.vue.d.ts +13 -3
- package/components/table/v3/Table.vue.js +5 -5
- package/components/table/v3/Table.vue2.js +2 -2
- package/components/table/v3/index.d.ts +42 -7
- package/components/table/v4/DataGrid.vue.d.ts +13 -3
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +5 -5
- package/components/table/v4/MultipleDataGrid.vue.d.ts +1 -7
- package/components/table/v4/MultipleDataGrid.vue.js +3 -3
- package/components/table/v4/MultipleDataGrid.vue2.js +75 -76
- package/components/table/v4/index.d.ts +43 -28
- package/index.d.ts +170 -70
- package/index.js +11 -9
- package/package.json +1 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_d27e1304_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_cfedf78b_lang.css +0 -1
- package/Table.vue_vue_type_style_index_0_scoped_9375215d_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -5581,7 +5581,12 @@ declare const _default: {
|
|
|
5581
5581
|
"onUpdate:search"?: (query: string) => any;
|
|
5582
5582
|
onOnScroll?: (event: Event) => any;
|
|
5583
5583
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
5584
|
-
onSaveRow?: (args_0:
|
|
5584
|
+
onSaveRow?: (args_0: {
|
|
5585
|
+
value: unknown;
|
|
5586
|
+
confirm: () => void;
|
|
5587
|
+
rowIndex: number;
|
|
5588
|
+
cellIndex: number;
|
|
5589
|
+
}) => any;
|
|
5585
5590
|
onLoadMore?: () => any;
|
|
5586
5591
|
onOnClearSearch?: () => any;
|
|
5587
5592
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -5599,7 +5604,12 @@ declare const _default: {
|
|
|
5599
5604
|
}>;
|
|
5600
5605
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5601
5606
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5602
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
5607
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
|
|
5608
|
+
value: unknown;
|
|
5609
|
+
confirm: () => void;
|
|
5610
|
+
rowIndex: number;
|
|
5611
|
+
cellIndex: number;
|
|
5612
|
+
}) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
|
|
5603
5613
|
$el: any;
|
|
5604
5614
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5605
5615
|
sort: {
|
|
@@ -5715,7 +5725,12 @@ declare const _default: {
|
|
|
5715
5725
|
"onUpdate:search"?: (query: string) => any;
|
|
5716
5726
|
onOnScroll?: (event: Event) => any;
|
|
5717
5727
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
5718
|
-
onSaveRow?: (args_0:
|
|
5728
|
+
onSaveRow?: (args_0: {
|
|
5729
|
+
value: unknown;
|
|
5730
|
+
confirm: () => void;
|
|
5731
|
+
rowIndex: number;
|
|
5732
|
+
cellIndex: number;
|
|
5733
|
+
}) => any;
|
|
5719
5734
|
onLoadMore?: () => any;
|
|
5720
5735
|
onOnClearSearch?: () => any;
|
|
5721
5736
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -5729,7 +5744,12 @@ declare const _default: {
|
|
|
5729
5744
|
"update:selection": (selection: unknown[]) => void;
|
|
5730
5745
|
onScroll: (event: Event) => void;
|
|
5731
5746
|
onClearSearch: () => void;
|
|
5732
|
-
saveRow: (args_0:
|
|
5747
|
+
saveRow: (args_0: {
|
|
5748
|
+
value: unknown;
|
|
5749
|
+
confirm: () => void;
|
|
5750
|
+
rowIndex: number;
|
|
5751
|
+
cellIndex: number;
|
|
5752
|
+
}) => void;
|
|
5733
5753
|
loadMore: () => void;
|
|
5734
5754
|
selectAll: (value: boolean) => void;
|
|
5735
5755
|
selectRow: (value: boolean) => void;
|
|
@@ -5894,7 +5914,12 @@ declare const _default: {
|
|
|
5894
5914
|
"onUpdate:search"?: (query: string) => any;
|
|
5895
5915
|
onOnScroll?: (event: Event) => any;
|
|
5896
5916
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
5897
|
-
onSaveRow?: (args_0:
|
|
5917
|
+
onSaveRow?: (args_0: {
|
|
5918
|
+
value: unknown;
|
|
5919
|
+
confirm: () => void;
|
|
5920
|
+
rowIndex: number;
|
|
5921
|
+
cellIndex: number;
|
|
5922
|
+
}) => any;
|
|
5898
5923
|
onLoadMore?: () => any;
|
|
5899
5924
|
onOnClearSearch?: () => any;
|
|
5900
5925
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6020,7 +6045,12 @@ declare const _default: {
|
|
|
6020
6045
|
"onUpdate:search"?: (query: string) => any;
|
|
6021
6046
|
onOnScroll?: (event: Event) => any;
|
|
6022
6047
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6023
|
-
onSaveRow?: (args_0:
|
|
6048
|
+
onSaveRow?: (args_0: {
|
|
6049
|
+
value: unknown;
|
|
6050
|
+
confirm: () => void;
|
|
6051
|
+
rowIndex: number;
|
|
6052
|
+
cellIndex: number;
|
|
6053
|
+
}) => any;
|
|
6024
6054
|
onLoadMore?: () => any;
|
|
6025
6055
|
onOnClearSearch?: () => any;
|
|
6026
6056
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6034,7 +6064,12 @@ declare const _default: {
|
|
|
6034
6064
|
"update:selection": (selection: unknown[]) => void;
|
|
6035
6065
|
onScroll: (event: Event) => void;
|
|
6036
6066
|
onClearSearch: () => void;
|
|
6037
|
-
saveRow: (args_0:
|
|
6067
|
+
saveRow: (args_0: {
|
|
6068
|
+
value: unknown;
|
|
6069
|
+
confirm: () => void;
|
|
6070
|
+
rowIndex: number;
|
|
6071
|
+
cellIndex: number;
|
|
6072
|
+
}) => void;
|
|
6038
6073
|
loadMore: () => void;
|
|
6039
6074
|
selectAll: (value: boolean) => void;
|
|
6040
6075
|
selectRow: (value: boolean) => void;
|
|
@@ -6331,7 +6366,12 @@ declare const _default: {
|
|
|
6331
6366
|
"onUpdate:search"?: (query: string) => any;
|
|
6332
6367
|
onOnScroll?: (event: Event) => any;
|
|
6333
6368
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6334
|
-
onSaveRow?: (args_0:
|
|
6369
|
+
onSaveRow?: (args_0: {
|
|
6370
|
+
value: unknown;
|
|
6371
|
+
confirm: () => void;
|
|
6372
|
+
rowIndex: number;
|
|
6373
|
+
cellIndex: number;
|
|
6374
|
+
}) => any;
|
|
6335
6375
|
onLoadMore?: () => any;
|
|
6336
6376
|
onOnClearSearch?: () => any;
|
|
6337
6377
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6349,7 +6389,12 @@ declare const _default: {
|
|
|
6349
6389
|
}>;
|
|
6350
6390
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6351
6391
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
6352
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
6392
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
|
|
6393
|
+
value: unknown;
|
|
6394
|
+
confirm: () => void;
|
|
6395
|
+
rowIndex: number;
|
|
6396
|
+
cellIndex: number;
|
|
6397
|
+
}) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
|
|
6353
6398
|
$el: any;
|
|
6354
6399
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
6355
6400
|
sort: {
|
|
@@ -6465,7 +6510,12 @@ declare const _default: {
|
|
|
6465
6510
|
"onUpdate:search"?: (query: string) => any;
|
|
6466
6511
|
onOnScroll?: (event: Event) => any;
|
|
6467
6512
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6468
|
-
onSaveRow?: (args_0:
|
|
6513
|
+
onSaveRow?: (args_0: {
|
|
6514
|
+
value: unknown;
|
|
6515
|
+
confirm: () => void;
|
|
6516
|
+
rowIndex: number;
|
|
6517
|
+
cellIndex: number;
|
|
6518
|
+
}) => any;
|
|
6469
6519
|
onLoadMore?: () => any;
|
|
6470
6520
|
onOnClearSearch?: () => any;
|
|
6471
6521
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6479,7 +6529,12 @@ declare const _default: {
|
|
|
6479
6529
|
"update:selection": (selection: unknown[]) => void;
|
|
6480
6530
|
onScroll: (event: Event) => void;
|
|
6481
6531
|
onClearSearch: () => void;
|
|
6482
|
-
saveRow: (args_0:
|
|
6532
|
+
saveRow: (args_0: {
|
|
6533
|
+
value: unknown;
|
|
6534
|
+
confirm: () => void;
|
|
6535
|
+
rowIndex: number;
|
|
6536
|
+
cellIndex: number;
|
|
6537
|
+
}) => void;
|
|
6483
6538
|
loadMore: () => void;
|
|
6484
6539
|
selectAll: (value: boolean) => void;
|
|
6485
6540
|
selectRow: (value: boolean) => void;
|
|
@@ -6644,7 +6699,12 @@ declare const _default: {
|
|
|
6644
6699
|
"onUpdate:search"?: (query: string) => any;
|
|
6645
6700
|
onOnScroll?: (event: Event) => any;
|
|
6646
6701
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6647
|
-
onSaveRow?: (args_0:
|
|
6702
|
+
onSaveRow?: (args_0: {
|
|
6703
|
+
value: unknown;
|
|
6704
|
+
confirm: () => void;
|
|
6705
|
+
rowIndex: number;
|
|
6706
|
+
cellIndex: number;
|
|
6707
|
+
}) => any;
|
|
6648
6708
|
onLoadMore?: () => any;
|
|
6649
6709
|
onOnClearSearch?: () => any;
|
|
6650
6710
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6770,7 +6830,12 @@ declare const _default: {
|
|
|
6770
6830
|
"onUpdate:search"?: (query: string) => any;
|
|
6771
6831
|
onOnScroll?: (event: Event) => any;
|
|
6772
6832
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
6773
|
-
onSaveRow?: (args_0:
|
|
6833
|
+
onSaveRow?: (args_0: {
|
|
6834
|
+
value: unknown;
|
|
6835
|
+
confirm: () => void;
|
|
6836
|
+
rowIndex: number;
|
|
6837
|
+
cellIndex: number;
|
|
6838
|
+
}) => any;
|
|
6774
6839
|
onLoadMore?: () => any;
|
|
6775
6840
|
onOnClearSearch?: () => any;
|
|
6776
6841
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
@@ -6784,7 +6849,12 @@ declare const _default: {
|
|
|
6784
6849
|
"update:selection": (selection: unknown[]) => void;
|
|
6785
6850
|
onScroll: (event: Event) => void;
|
|
6786
6851
|
onClearSearch: () => void;
|
|
6787
|
-
saveRow: (args_0:
|
|
6852
|
+
saveRow: (args_0: {
|
|
6853
|
+
value: unknown;
|
|
6854
|
+
confirm: () => void;
|
|
6855
|
+
rowIndex: number;
|
|
6856
|
+
cellIndex: number;
|
|
6857
|
+
}) => void;
|
|
6788
6858
|
loadMore: () => void;
|
|
6789
6859
|
selectAll: (value: boolean) => void;
|
|
6790
6860
|
selectRow: (value: boolean) => void;
|
|
@@ -7035,9 +7105,6 @@ declare const _default: {
|
|
|
7035
7105
|
}>> & {
|
|
7036
7106
|
"onUpdate:search"?: (query: string) => any;
|
|
7037
7107
|
onOnScroll?: (scrollTop: number) => any;
|
|
7038
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7039
|
-
tableIndex: number;
|
|
7040
|
-
}) => any;
|
|
7041
7108
|
onOnClearSearch?: () => any;
|
|
7042
7109
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7043
7110
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
@@ -7052,9 +7119,7 @@ declare const _default: {
|
|
|
7052
7119
|
}>;
|
|
7053
7120
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7054
7121
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7055
|
-
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "
|
|
7056
|
-
tableIndex: number;
|
|
7057
|
-
}) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7122
|
+
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7058
7123
|
$el: any;
|
|
7059
7124
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7060
7125
|
search: {
|
|
@@ -7134,9 +7199,6 @@ declare const _default: {
|
|
|
7134
7199
|
}>> & {
|
|
7135
7200
|
"onUpdate:search"?: (query: string) => any;
|
|
7136
7201
|
onOnScroll?: (scrollTop: number) => any;
|
|
7137
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7138
|
-
tableIndex: number;
|
|
7139
|
-
}) => any;
|
|
7140
7202
|
onOnClearSearch?: () => any;
|
|
7141
7203
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7142
7204
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7144,9 +7206,6 @@ declare const _default: {
|
|
|
7144
7206
|
onScroll: (scrollTop: number) => void;
|
|
7145
7207
|
onClearSearch: () => void;
|
|
7146
7208
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7147
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7148
|
-
tableIndex: number;
|
|
7149
|
-
}) => void;
|
|
7150
7209
|
}, string, {
|
|
7151
7210
|
search: string;
|
|
7152
7211
|
testId: string;
|
|
@@ -7264,9 +7323,6 @@ declare const _default: {
|
|
|
7264
7323
|
}>> & {
|
|
7265
7324
|
"onUpdate:search"?: (query: string) => any;
|
|
7266
7325
|
onOnScroll?: (scrollTop: number) => any;
|
|
7267
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7268
|
-
tableIndex: number;
|
|
7269
|
-
}) => any;
|
|
7270
7326
|
onOnClearSearch?: () => any;
|
|
7271
7327
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7272
7328
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -7351,9 +7407,6 @@ declare const _default: {
|
|
|
7351
7407
|
}>> & {
|
|
7352
7408
|
"onUpdate:search"?: (query: string) => any;
|
|
7353
7409
|
onOnScroll?: (scrollTop: number) => any;
|
|
7354
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7355
|
-
tableIndex: number;
|
|
7356
|
-
}) => any;
|
|
7357
7410
|
onOnClearSearch?: () => any;
|
|
7358
7411
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7359
7412
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7361,9 +7414,6 @@ declare const _default: {
|
|
|
7361
7414
|
onScroll: (scrollTop: number) => void;
|
|
7362
7415
|
onClearSearch: () => void;
|
|
7363
7416
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7364
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7365
|
-
tableIndex: number;
|
|
7366
|
-
}) => void;
|
|
7367
7417
|
}, string, {
|
|
7368
7418
|
search: string;
|
|
7369
7419
|
testId: string;
|
|
@@ -7506,9 +7556,6 @@ declare const _default: {
|
|
|
7506
7556
|
}>> & {
|
|
7507
7557
|
"onUpdate:search"?: (query: string) => any;
|
|
7508
7558
|
onOnScroll?: (scrollTop: number) => any;
|
|
7509
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7510
|
-
tableIndex: number;
|
|
7511
|
-
}) => any;
|
|
7512
7559
|
onOnClearSearch?: () => any;
|
|
7513
7560
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7514
7561
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
@@ -7523,9 +7570,7 @@ declare const _default: {
|
|
|
7523
7570
|
}>;
|
|
7524
7571
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7525
7572
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7526
|
-
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "
|
|
7527
|
-
tableIndex: number;
|
|
7528
|
-
}) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7573
|
+
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
7529
7574
|
$el: any;
|
|
7530
7575
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7531
7576
|
search: {
|
|
@@ -7605,9 +7650,6 @@ declare const _default: {
|
|
|
7605
7650
|
}>> & {
|
|
7606
7651
|
"onUpdate:search"?: (query: string) => any;
|
|
7607
7652
|
onOnScroll?: (scrollTop: number) => any;
|
|
7608
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7609
|
-
tableIndex: number;
|
|
7610
|
-
}) => any;
|
|
7611
7653
|
onOnClearSearch?: () => any;
|
|
7612
7654
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7613
7655
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7615,9 +7657,6 @@ declare const _default: {
|
|
|
7615
7657
|
onScroll: (scrollTop: number) => void;
|
|
7616
7658
|
onClearSearch: () => void;
|
|
7617
7659
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7618
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7619
|
-
tableIndex: number;
|
|
7620
|
-
}) => void;
|
|
7621
7660
|
}, string, {
|
|
7622
7661
|
search: string;
|
|
7623
7662
|
testId: string;
|
|
@@ -7735,9 +7774,6 @@ declare const _default: {
|
|
|
7735
7774
|
}>> & {
|
|
7736
7775
|
"onUpdate:search"?: (query: string) => any;
|
|
7737
7776
|
onOnScroll?: (scrollTop: number) => any;
|
|
7738
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7739
|
-
tableIndex: number;
|
|
7740
|
-
}) => any;
|
|
7741
7777
|
onOnClearSearch?: () => any;
|
|
7742
7778
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7743
7779
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -7822,9 +7858,6 @@ declare const _default: {
|
|
|
7822
7858
|
}>> & {
|
|
7823
7859
|
"onUpdate:search"?: (query: string) => any;
|
|
7824
7860
|
onOnScroll?: (scrollTop: number) => any;
|
|
7825
|
-
onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7826
|
-
tableIndex: number;
|
|
7827
|
-
}) => any;
|
|
7828
7861
|
onOnClearSearch?: () => any;
|
|
7829
7862
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
7830
7863
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7832,9 +7865,6 @@ declare const _default: {
|
|
|
7832
7865
|
onScroll: (scrollTop: number) => void;
|
|
7833
7866
|
onClearSearch: () => void;
|
|
7834
7867
|
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
7835
|
-
saveRow: (args_0: import("./components/table/common/Table.types").SaveRowEvent & {
|
|
7836
|
-
tableIndex: number;
|
|
7837
|
-
}) => void;
|
|
7838
7868
|
}, string, {
|
|
7839
7869
|
search: string;
|
|
7840
7870
|
testId: string;
|
|
@@ -7961,7 +7991,12 @@ declare const _default: {
|
|
|
7961
7991
|
}>> & {
|
|
7962
7992
|
onOnScroll?: (event: Event) => any;
|
|
7963
7993
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
7964
|
-
onSaveRow?: (args_0:
|
|
7994
|
+
onSaveRow?: (args_0: {
|
|
7995
|
+
value: unknown;
|
|
7996
|
+
confirm: () => void;
|
|
7997
|
+
rowIndex: number;
|
|
7998
|
+
cellIndex: number;
|
|
7999
|
+
}) => any;
|
|
7965
8000
|
onLoadMore?: () => any;
|
|
7966
8001
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
7967
8002
|
$attrs: {
|
|
@@ -7975,7 +8010,12 @@ declare const _default: {
|
|
|
7975
8010
|
}>;
|
|
7976
8011
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7977
8012
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7978
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
8013
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
|
|
8014
|
+
value: unknown;
|
|
8015
|
+
confirm: () => void;
|
|
8016
|
+
rowIndex: number;
|
|
8017
|
+
cellIndex: number;
|
|
8018
|
+
}) => void) & ((event: "loadMore") => void);
|
|
7979
8019
|
$el: any;
|
|
7980
8020
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7981
8021
|
sort: {
|
|
@@ -8045,12 +8085,22 @@ declare const _default: {
|
|
|
8045
8085
|
}>> & {
|
|
8046
8086
|
onOnScroll?: (event: Event) => any;
|
|
8047
8087
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8048
|
-
onSaveRow?: (args_0:
|
|
8088
|
+
onSaveRow?: (args_0: {
|
|
8089
|
+
value: unknown;
|
|
8090
|
+
confirm: () => void;
|
|
8091
|
+
rowIndex: number;
|
|
8092
|
+
cellIndex: number;
|
|
8093
|
+
}) => any;
|
|
8049
8094
|
onLoadMore?: () => any;
|
|
8050
8095
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8051
8096
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8052
8097
|
onScroll: (event: Event) => void;
|
|
8053
|
-
saveRow: (args_0:
|
|
8098
|
+
saveRow: (args_0: {
|
|
8099
|
+
value: unknown;
|
|
8100
|
+
confirm: () => void;
|
|
8101
|
+
rowIndex: number;
|
|
8102
|
+
cellIndex: number;
|
|
8103
|
+
}) => void;
|
|
8054
8104
|
loadMore: () => void;
|
|
8055
8105
|
}, string, {
|
|
8056
8106
|
testId: string;
|
|
@@ -8153,7 +8203,12 @@ declare const _default: {
|
|
|
8153
8203
|
}>> & {
|
|
8154
8204
|
onOnScroll?: (event: Event) => any;
|
|
8155
8205
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8156
|
-
onSaveRow?: (args_0:
|
|
8206
|
+
onSaveRow?: (args_0: {
|
|
8207
|
+
value: unknown;
|
|
8208
|
+
confirm: () => void;
|
|
8209
|
+
rowIndex: number;
|
|
8210
|
+
cellIndex: number;
|
|
8211
|
+
}) => any;
|
|
8157
8212
|
onLoadMore?: () => any;
|
|
8158
8213
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
8159
8214
|
__isFragment?: never;
|
|
@@ -8227,12 +8282,22 @@ declare const _default: {
|
|
|
8227
8282
|
}>> & {
|
|
8228
8283
|
onOnScroll?: (event: Event) => any;
|
|
8229
8284
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8230
|
-
onSaveRow?: (args_0:
|
|
8285
|
+
onSaveRow?: (args_0: {
|
|
8286
|
+
value: unknown;
|
|
8287
|
+
confirm: () => void;
|
|
8288
|
+
rowIndex: number;
|
|
8289
|
+
cellIndex: number;
|
|
8290
|
+
}) => any;
|
|
8231
8291
|
onLoadMore?: () => any;
|
|
8232
8292
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8233
8293
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8234
8294
|
onScroll: (event: Event) => void;
|
|
8235
|
-
saveRow: (args_0:
|
|
8295
|
+
saveRow: (args_0: {
|
|
8296
|
+
value: unknown;
|
|
8297
|
+
confirm: () => void;
|
|
8298
|
+
rowIndex: number;
|
|
8299
|
+
cellIndex: number;
|
|
8300
|
+
}) => void;
|
|
8236
8301
|
loadMore: () => void;
|
|
8237
8302
|
}, string, {
|
|
8238
8303
|
testId: string;
|
|
@@ -8354,7 +8419,12 @@ declare const _default: {
|
|
|
8354
8419
|
}>> & {
|
|
8355
8420
|
onOnScroll?: (event: Event) => any;
|
|
8356
8421
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8357
|
-
onSaveRow?: (args_0:
|
|
8422
|
+
onSaveRow?: (args_0: {
|
|
8423
|
+
value: unknown;
|
|
8424
|
+
confirm: () => void;
|
|
8425
|
+
rowIndex: number;
|
|
8426
|
+
cellIndex: number;
|
|
8427
|
+
}) => any;
|
|
8358
8428
|
onLoadMore?: () => any;
|
|
8359
8429
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
8360
8430
|
$attrs: {
|
|
@@ -8368,7 +8438,12 @@ declare const _default: {
|
|
|
8368
8438
|
}>;
|
|
8369
8439
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8370
8440
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
8371
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0:
|
|
8441
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
|
|
8442
|
+
value: unknown;
|
|
8443
|
+
confirm: () => void;
|
|
8444
|
+
rowIndex: number;
|
|
8445
|
+
cellIndex: number;
|
|
8446
|
+
}) => void) & ((event: "loadMore") => void);
|
|
8372
8447
|
$el: any;
|
|
8373
8448
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8374
8449
|
sort: {
|
|
@@ -8438,12 +8513,22 @@ declare const _default: {
|
|
|
8438
8513
|
}>> & {
|
|
8439
8514
|
onOnScroll?: (event: Event) => any;
|
|
8440
8515
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8441
|
-
onSaveRow?: (args_0:
|
|
8516
|
+
onSaveRow?: (args_0: {
|
|
8517
|
+
value: unknown;
|
|
8518
|
+
confirm: () => void;
|
|
8519
|
+
rowIndex: number;
|
|
8520
|
+
cellIndex: number;
|
|
8521
|
+
}) => any;
|
|
8442
8522
|
onLoadMore?: () => any;
|
|
8443
8523
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8444
8524
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8445
8525
|
onScroll: (event: Event) => void;
|
|
8446
|
-
saveRow: (args_0:
|
|
8526
|
+
saveRow: (args_0: {
|
|
8527
|
+
value: unknown;
|
|
8528
|
+
confirm: () => void;
|
|
8529
|
+
rowIndex: number;
|
|
8530
|
+
cellIndex: number;
|
|
8531
|
+
}) => void;
|
|
8447
8532
|
loadMore: () => void;
|
|
8448
8533
|
}, string, {
|
|
8449
8534
|
testId: string;
|
|
@@ -8546,7 +8631,12 @@ declare const _default: {
|
|
|
8546
8631
|
}>> & {
|
|
8547
8632
|
onOnScroll?: (event: Event) => any;
|
|
8548
8633
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8549
|
-
onSaveRow?: (args_0:
|
|
8634
|
+
onSaveRow?: (args_0: {
|
|
8635
|
+
value: unknown;
|
|
8636
|
+
confirm: () => void;
|
|
8637
|
+
rowIndex: number;
|
|
8638
|
+
cellIndex: number;
|
|
8639
|
+
}) => any;
|
|
8550
8640
|
onLoadMore?: () => any;
|
|
8551
8641
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
8552
8642
|
__isFragment?: never;
|
|
@@ -8620,12 +8710,22 @@ declare const _default: {
|
|
|
8620
8710
|
}>> & {
|
|
8621
8711
|
onOnScroll?: (event: Event) => any;
|
|
8622
8712
|
"onUpdate:sort"?: (newSort: tableV3.Sort) => any;
|
|
8623
|
-
onSaveRow?: (args_0:
|
|
8713
|
+
onSaveRow?: (args_0: {
|
|
8714
|
+
value: unknown;
|
|
8715
|
+
confirm: () => void;
|
|
8716
|
+
rowIndex: number;
|
|
8717
|
+
cellIndex: number;
|
|
8718
|
+
}) => any;
|
|
8624
8719
|
onLoadMore?: () => any;
|
|
8625
8720
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8626
8721
|
"update:sort": (newSort: tableV3.Sort) => void;
|
|
8627
8722
|
onScroll: (event: Event) => void;
|
|
8628
|
-
saveRow: (args_0:
|
|
8723
|
+
saveRow: (args_0: {
|
|
8724
|
+
value: unknown;
|
|
8725
|
+
confirm: () => void;
|
|
8726
|
+
rowIndex: number;
|
|
8727
|
+
cellIndex: number;
|
|
8728
|
+
}) => void;
|
|
8629
8729
|
loadMore: () => void;
|
|
8630
8730
|
}, string, {
|
|
8631
8731
|
testId: string;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './Menu.vue_vue_type_style_index_0_scoped_eb057818_lang.css';
|
|
2
2
|
import { AppTriggerTypes as ro } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as po } from "./components/menuItem/index.js";
|
|
@@ -10,7 +10,7 @@ import { ID_INJECTION_KEY as To, useId as co } from "./composables/useId.js";
|
|
|
10
10
|
import { FilterDropdownTypes as go } from "./components/filterDropdown/index.js";
|
|
11
11
|
import { TypographyTypes as Io } from "./components/typography/index.js";
|
|
12
12
|
import { TypographyTypesV4 as Eo } from "./components/typography/v4/index.js";
|
|
13
|
-
import { MultiBarTypes as
|
|
13
|
+
import { MultiBarTypes as ho } from "./components/multibar/index.js";
|
|
14
14
|
import { FoldableSectionTypes as Bo } from "./components/layout/index.js";
|
|
15
15
|
import { FormCardTypes as bo, FormFieldTypes as wo } from "./components/forms/index.js";
|
|
16
16
|
import * as o from "./components/button/v3/index.js";
|
|
@@ -38,8 +38,8 @@ import * as I from "./components/dialog/v4/index.js";
|
|
|
38
38
|
import * as A from "./components/toggle/v3/index.js";
|
|
39
39
|
import * as E from "./components/toggle/v4/index.js";
|
|
40
40
|
import * as C from "./components/tooltip/v3/index.js";
|
|
41
|
-
import * as
|
|
42
|
-
import * as
|
|
41
|
+
import * as h from "./components/tooltip/v4/index.js";
|
|
42
|
+
import * as D from "./components/table/v3/index.js";
|
|
43
43
|
import * as B from "./components/table/v4/index.js";
|
|
44
44
|
import * as M from "./components/table-cells/v3/index.js";
|
|
45
45
|
import * as b from "./components/table-cells/v4/index.js";
|
|
@@ -87,7 +87,7 @@ import { default as cr } from "./components/includeExclude/IncludeExcludeAppHead
|
|
|
87
87
|
import { default as gr } from "./components/includeExclude/IncludeExcludeChipFilter.vue.js";
|
|
88
88
|
import { default as Ir } from "./components/filterDropdown/FilterDropdown.vue.js";
|
|
89
89
|
import { default as Er } from "./components/filterDropdown/AddFilterButton.vue.js";
|
|
90
|
-
import { default as
|
|
90
|
+
import { default as hr } from "./components/typography/Heading.vue.js";
|
|
91
91
|
import { default as Br } from "./components/typography/Text.vue.js";
|
|
92
92
|
import { default as br } from "./components/typography/v4/Typography.vue.js";
|
|
93
93
|
import { default as Or } from "./components/multibar/MultiBar.vue.js";
|
|
@@ -100,6 +100,7 @@ import { default as qr } from "./components/banner/Banner.vue.js";
|
|
|
100
100
|
import { default as Gr } from "./components/alert/Alert.vue.js";
|
|
101
101
|
import { default as Qr } from "./components/autocomplete/Autocomplete.vue.js";
|
|
102
102
|
import { default as Yr } from "./components/chart/Chart.vue.js";
|
|
103
|
+
import { ChartType as Wr } from "./components/chart/types.js";
|
|
103
104
|
const X = {
|
|
104
105
|
...e,
|
|
105
106
|
...m,
|
|
@@ -122,10 +123,10 @@ const X = {
|
|
|
122
123
|
...F,
|
|
123
124
|
...I,
|
|
124
125
|
...C,
|
|
125
|
-
...
|
|
126
|
+
...h,
|
|
126
127
|
...A,
|
|
127
128
|
...E,
|
|
128
|
-
...
|
|
129
|
+
...D,
|
|
129
130
|
...B,
|
|
130
131
|
...M,
|
|
131
132
|
...b,
|
|
@@ -170,6 +171,7 @@ export {
|
|
|
170
171
|
jo as BannerTypes,
|
|
171
172
|
Pr as CardPanel,
|
|
172
173
|
Yr as Chart,
|
|
174
|
+
Wr as ChartType,
|
|
173
175
|
Qo as ChartTypes,
|
|
174
176
|
Ir as FilterDropdown,
|
|
175
177
|
go as FilterDropdownTypes,
|
|
@@ -182,7 +184,7 @@ export {
|
|
|
182
184
|
jr as FormField,
|
|
183
185
|
wo as FormFieldTypes,
|
|
184
186
|
Vr as FormRow,
|
|
185
|
-
|
|
187
|
+
hr as Heading,
|
|
186
188
|
To as ID_INJECTION_KEY,
|
|
187
189
|
fr as IncludeExclude,
|
|
188
190
|
cr as IncludeExcludeAppHeader,
|
|
@@ -197,7 +199,7 @@ export {
|
|
|
197
199
|
po as MenuItemTypes,
|
|
198
200
|
fo as MenuTypes,
|
|
199
201
|
Or as MultiBar,
|
|
200
|
-
|
|
202
|
+
ho as MultiBarTypes,
|
|
201
203
|
Br as Text,
|
|
202
204
|
br as Typography,
|
|
203
205
|
Io as TypographyTypes,
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.sticky[data-v-d27e1304]{position:sticky}.table-container[data-v-d27e1304]{width:100%;position:relative;display:flex;flex-direction:column}.table-header[data-v-d27e1304]{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-d27e1304]{display:flex;flex:1;align-items:center;justify-content:flex-start;height:100%;color:var(--text-primary)}.table-header .table-header-right[data-v-d27e1304]{display:flex;align-items:center;height:100%}.table-header .search-wrapper[data-v-d27e1304]{width:13.75rem}.table-header.isStickyHeader[data-v-d27e1304]{z-index:calc(var(--189e28e1) + 3);top:0}.table-head-container[data-v-d27e1304]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-d27e1304]{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-d27e1304]{display:inline-table}.table-header-actions[data-v-d27e1304]{margin-left:var(--spacing-100);display:flex;align-items:center}.table-row[data-v-d27e1304]{position:relative}.table-row.loading[data-v-d27e1304]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-d27e1304]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-d27e1304]{border-bottom:none}.expanded-row[data-v-d27e1304]{grid-column:var(--ac6022d6);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-d27e1304]{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-d27e1304]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-d27e1304],table th[data-v-d27e1304]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-d27e1304]:first-of-type,table th[data-v-d27e1304]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-d27e1304]:last-of-type,table th[data-v-d27e1304]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-d27e1304],table th.expand-toggle-cell[data-v-d27e1304]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-d27e1304]{border-bottom:none;z-index:calc(var(--189e28e1) + 1);display:inline-table;min-width:100%}table>thead>tr[data-v-d27e1304]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);height:var(--spacing-500);display:grid;grid-template-columns:var(--3d5ab04e)}table>thead>tr>th[data-v-d27e1304]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.bordered[data-v-d27e1304]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-d27e1304]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-d27e1304]{justify-content:flex-end}table>thead>tr>th.isSortable[data-v-d27e1304]{cursor:pointer}table>thead.sticky[data-v-d27e1304]{position:sticky;top:0;background:white}table>thead.isStickyHeader[data-v-d27e1304]{z-index:calc(var(--189e28e1) + 2);top:calc(var(--spacing-800) - 1px)}table>tbody[data-v-d27e1304]{display:block}table>tbody>*>tr[data-v-d27e1304]{background-color:var(--background-default);min-height:var(--633cd456);height:auto;display:grid;align-items:center;grid-template-columns:var(--3d5ab04e)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-d27e1304]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-d27e1304],table>tbody>*>tr.activeMenu>td[data-v-d27e1304]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-d27e1304]{background-color:var(--background-default);border:none;min-width:0;display:flex;min-height:var(--633cd456);height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-d27e1304]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-d27e1304]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-d27e1304]{justify-content:flex-end;text-align:right}.section-container[data-v-d27e1304]{left:0}.sections[data-v-d27e1304]{display:flex}.section[data-v-d27e1304]{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-d27e1304]{width:100%}.empty-state[data-v-d27e1304]{min-height:250px}.floating-row[data-v-d27e1304]{display:flex;inset:0;pointer-events:none;position:absolute;z-index:calc(var(--189e28e1) + 1)}.floating-row *[data-v-d27e1304-s]{pointer-events:auto}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.multi-table-container[data-v-cfedf78b]{border-radius:var(--border-radius-md);border:1px solid var(--common-divider);display:flex;flex-direction:column;overflow-y:auto;width:100%}.multi-table-container .table-header-container[data-v-cfedf78b]{align-items:center;background-color:var(--background-paper-elevation-0);display:flex;height:calc(var(--spacing-800) - 2px);justify-content:space-between;padding:var(--spacing-300);width:100%}.multi-table-container .table-header-container.sticky[data-v-cfedf78b]{position:sticky;top:0;z-index:calc(var(--6083f45c) + 3)}.multi-table-container[data-v-cfedf78b] table{display:table;border:unset;border-radius:unset}.multi-table-container[data-v-cfedf78b] thead{border-top:1px solid var(--common-divider)}.multi-table-container .tables-container[data-v-cfedf78b] thead.sticky{top:62px}.multi-table-container .empty-state[data-v-cfedf78b]{min-height:250px}.multi-table-container .table-header-right[data-v-cfedf78b]{align-items:center;display:flex;height:100%}.multi-table-container .table-header-right .table-header-actions[data-v-cfedf78b]{align-items:center;display:flex;margin-left:var(--spacing-100)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-9375215d]{color:#41454d}.sticky[data-v-9375215d]{position:sticky}.table-container[data-v-9375215d]{width:100%;position:relative}.last.floating[data-v-9375215d]{max-width:100%}.table-header[data-v-9375215d]{display:flex;align-items:center;height:55px;border-bottom:1px solid #dddfe1;background-color:#fff;position:sticky;left:0}.table-header .table-title[data-v-9375215d]{display:flex;align-items:center;justify-content:center;height:100%;padding:1.25rem 1.5rem}.table-header .table-header-right[data-v-9375215d]{display:flex;align-items:center;height:100%}.table-header .table-header-right.border-search[data-v-9375215d]{border-left:1px solid #dddfe1}.table-header.isStickyHeader[data-v-9375215d]{z-index:199;top:0}.table-head-container[data-v-9375215d]{display:flex;align-items:center;white-space:nowrap}.table-body-wrapper[data-v-9375215d]{display:inline-table}.table-header-actions[data-v-9375215d]{margin-left:auto;margin-right:1rem;display:flex;align-items:center}.table-row[data-v-9375215d]{position:relative}.table-row.loading[data-v-9375215d]{opacity:.7}.floating-actions[data-v-9375215d]{position:absolute;z-index:10;max-width:max-content;transform:translateY(-50%) translate(calc(-100% - 12px));top:50%;left:0}table[data-v-9375215d]{position:relative;display:block;overflow:auto;background:#ffffff;border:1px solid #dddfe1;color:#53575b;text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:1rem}table td[data-v-9375215d],table th[data-v-9375215d]{padding:0 1.5rem;line-height:normal}table thead[data-v-9375215d]{border-bottom:none;z-index:101;display:inline-table;min-width:100%}table thead tr[data-v-9375215d]{color:#626970;border-bottom:2px solid #dddfe1;height:2.5rem;display:grid;grid-template-columns:var(--0c2c9e92)}table thead tr th[data-v-9375215d]{background:#ffffff;width:100%;display:flex;align-items:center;cursor:default}table thead tr th.bordered[data-v-9375215d]{border-right:1px solid #dddfe1}table thead tr th.isTextRight[data-v-9375215d]{justify-content:flex-end}table thead tr th.isSortable[data-v-9375215d]{cursor:pointer}table thead.sticky[data-v-9375215d]{position:sticky;top:0;background:white}table thead.isStickyHeader[data-v-9375215d]{z-index:198px;top:55px}table tbody[data-v-9375215d]{height:100%;display:block}table tbody tr[data-v-9375215d]{background-color:#fff;min-height:3rem;height:auto;display:grid;align-items:center;grid-template-columns:var(--0c2c9e92)}table tbody tr:nth-of-type(2n) td[data-v-9375215d]{background-color:#fff}table tbody tr:hover:not(.loading) td[data-v-9375215d]{background-color:#f7f8f9}table tbody td[data-v-9375215d]{background-color:#fff;border:none;min-width:0;display:flex;height:100%;width:100%;place-items:center;border-bottom:1px solid #dddfe1;justify-content:start}table tbody td.bordered[data-v-9375215d]{border-right:1px solid #dddfe1}table tbody td.isTextRight[data-v-9375215d]{justify-content:flex-end}table tfoot[data-v-9375215d]{display:block;height:4.5rem;background-color:#fff;border:none}.section-container[data-v-9375215d]{left:0}.sections[data-v-9375215d]{display:flex}.section[data-v-9375215d]{padding:0 1.5rem;background:#ffffff;left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid #dddfe1}
|