@ironsource/shared-ui 2.1.12-rc.55 → 2.1.12-rc.57
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_cd41c5ca_lang.css +1 -0
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_0e826456_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_a594c97e_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/components/dropdown/v4/DropdownV4.vue.d.ts +5 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +68 -64
- package/components/dropdown/v4/index.d.ts +20 -1
- package/components/table/common/consts.d.ts +2 -0
- package/components/table/common/consts.js +6 -4
- package/components/table/v4/DataGrid.vue.d.ts +5 -1
- package/components/table/v4/DataGrid.vue.js +5 -5
- package/components/table/v4/DataGrid.vue2.js +353 -358
- package/components/table/v4/DataGridHeader.vue.js +2 -2
- package/components/table/v4/DataGridHeader.vue2.js +30 -28
- package/components/table/v4/MultipleDataGrid.vue2.js +13 -12
- package/components/table/v4/index.d.ts +69 -3
- package/components/table/v4/index.js +9 -6
- package/index.d.ts +175 -6
- package/package.json +1 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_ef67c78e_lang.css +0 -1
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_840e700c_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_2d66b7b6_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -5908,6 +5908,7 @@ declare const _default: {
|
|
|
5908
5908
|
rowCustomClassKey: string;
|
|
5909
5909
|
rowDataKey: string;
|
|
5910
5910
|
helpTooltipVariant: "icon" | "underline";
|
|
5911
|
+
useAvailableHeight: boolean;
|
|
5911
5912
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5912
5913
|
isSelectionSticky: boolean;
|
|
5913
5914
|
isSelectionBordered: boolean;
|
|
@@ -6024,6 +6025,10 @@ declare const _default: {
|
|
|
6024
6025
|
type: import("vue").PropType<"icon" | "underline">;
|
|
6025
6026
|
default: string;
|
|
6026
6027
|
};
|
|
6028
|
+
useAvailableHeight: {
|
|
6029
|
+
type: import("vue").PropType<boolean>;
|
|
6030
|
+
default: boolean;
|
|
6031
|
+
};
|
|
6027
6032
|
selectedMatcher: {
|
|
6028
6033
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6029
6034
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -6050,7 +6055,7 @@ declare const _default: {
|
|
|
6050
6055
|
onOnClearSearch?: () => any;
|
|
6051
6056
|
onClickRow?: (rowIndex: number) => any;
|
|
6052
6057
|
onSelectRow?: (value: boolean) => any;
|
|
6053
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "loadingRowCount" | "zIndexBase" | "showSearch" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6058
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "loadingRowCount" | "zIndexBase" | "showSearch" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "useAvailableHeight" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
6054
6059
|
$attrs: {
|
|
6055
6060
|
[x: string]: unknown;
|
|
6056
6061
|
};
|
|
@@ -6177,6 +6182,10 @@ declare const _default: {
|
|
|
6177
6182
|
type: import("vue").PropType<"icon" | "underline">;
|
|
6178
6183
|
default: string;
|
|
6179
6184
|
};
|
|
6185
|
+
useAvailableHeight: {
|
|
6186
|
+
type: import("vue").PropType<boolean>;
|
|
6187
|
+
default: boolean;
|
|
6188
|
+
};
|
|
6180
6189
|
selectedMatcher: {
|
|
6181
6190
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6182
6191
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -6243,6 +6252,7 @@ declare const _default: {
|
|
|
6243
6252
|
rowCustomClassKey: string;
|
|
6244
6253
|
rowDataKey: string;
|
|
6245
6254
|
helpTooltipVariant: "icon" | "underline";
|
|
6255
|
+
useAvailableHeight: boolean;
|
|
6246
6256
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6247
6257
|
isSelectionSticky: boolean;
|
|
6248
6258
|
isSelectionBordered: boolean;
|
|
@@ -6379,6 +6389,10 @@ declare const _default: {
|
|
|
6379
6389
|
type: import("vue").PropType<"icon" | "underline">;
|
|
6380
6390
|
default: string;
|
|
6381
6391
|
};
|
|
6392
|
+
useAvailableHeight: {
|
|
6393
|
+
type: import("vue").PropType<boolean>;
|
|
6394
|
+
default: boolean;
|
|
6395
|
+
};
|
|
6382
6396
|
selectedMatcher: {
|
|
6383
6397
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6384
6398
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -6524,6 +6538,10 @@ declare const _default: {
|
|
|
6524
6538
|
type: import("vue").PropType<"icon" | "underline">;
|
|
6525
6539
|
default: string;
|
|
6526
6540
|
};
|
|
6541
|
+
useAvailableHeight: {
|
|
6542
|
+
type: import("vue").PropType<boolean>;
|
|
6543
|
+
default: boolean;
|
|
6544
|
+
};
|
|
6527
6545
|
selectedMatcher: {
|
|
6528
6546
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
6529
6547
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -6590,6 +6608,7 @@ declare const _default: {
|
|
|
6590
6608
|
rowCustomClassKey: string;
|
|
6591
6609
|
rowDataKey: string;
|
|
6592
6610
|
helpTooltipVariant: "icon" | "underline";
|
|
6611
|
+
useAvailableHeight: boolean;
|
|
6593
6612
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6594
6613
|
isSelectionSticky: boolean;
|
|
6595
6614
|
isSelectionBordered: boolean;
|
|
@@ -6623,7 +6642,6 @@ declare const _default: {
|
|
|
6623
6642
|
}): any;
|
|
6624
6643
|
"empty-state"?(_: {}): any;
|
|
6625
6644
|
footer?(_: {}): any;
|
|
6626
|
-
"side-panel"?(_: {}): any;
|
|
6627
6645
|
};
|
|
6628
6646
|
});
|
|
6629
6647
|
DataGridMenu: import("vue").DefineComponent<{
|
|
@@ -7059,6 +7077,53 @@ declare const _default: {
|
|
|
7059
7077
|
search?(_: {}): any;
|
|
7060
7078
|
"table-header-actions"?(_: {}): any;
|
|
7061
7079
|
};
|
|
7080
|
+
})) | ({
|
|
7081
|
+
new (...args: any[]): {
|
|
7082
|
+
$: import("vue").ComponentInternalInstance;
|
|
7083
|
+
$data: {};
|
|
7084
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
7085
|
+
$attrs: {
|
|
7086
|
+
[x: string]: unknown;
|
|
7087
|
+
};
|
|
7088
|
+
$refs: {
|
|
7089
|
+
[x: string]: unknown;
|
|
7090
|
+
};
|
|
7091
|
+
$slots: Readonly<{
|
|
7092
|
+
[name: string]: import("vue").Slot;
|
|
7093
|
+
}>;
|
|
7094
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7095
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
7096
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
7097
|
+
$el: any;
|
|
7098
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
7099
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
7100
|
+
created?: (() => void) | (() => void)[];
|
|
7101
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
7102
|
+
mounted?: (() => void) | (() => void)[];
|
|
7103
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
7104
|
+
updated?: (() => void) | (() => void)[];
|
|
7105
|
+
activated?: (() => void) | (() => void)[];
|
|
7106
|
+
deactivated?: (() => void) | (() => void)[];
|
|
7107
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
7108
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
7109
|
+
destroyed?: (() => void) | (() => void)[];
|
|
7110
|
+
unmounted?: (() => void) | (() => void)[];
|
|
7111
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
7112
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
7113
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
7114
|
+
};
|
|
7115
|
+
$forceUpdate: () => void;
|
|
7116
|
+
$nextTick: typeof import("vue").nextTick;
|
|
7117
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
7118
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
7119
|
+
__isFragment?: never;
|
|
7120
|
+
__isTeleport?: never;
|
|
7121
|
+
__isSuspense?: never;
|
|
7122
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7123
|
+
$slots: {
|
|
7124
|
+
default?(_: {}): any;
|
|
7125
|
+
"side-panel"?(_: {}): any;
|
|
7126
|
+
};
|
|
7062
7127
|
})) | ({
|
|
7063
7128
|
new (...args: any[]): {
|
|
7064
7129
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -7090,6 +7155,7 @@ declare const _default: {
|
|
|
7090
7155
|
rowCustomClassKey: string;
|
|
7091
7156
|
rowDataKey: string;
|
|
7092
7157
|
helpTooltipVariant: "icon" | "underline";
|
|
7158
|
+
useAvailableHeight: boolean;
|
|
7093
7159
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7094
7160
|
isSelectionSticky: boolean;
|
|
7095
7161
|
isSelectionBordered: boolean;
|
|
@@ -7206,6 +7272,10 @@ declare const _default: {
|
|
|
7206
7272
|
type: import("vue").PropType<"icon" | "underline">;
|
|
7207
7273
|
default: string;
|
|
7208
7274
|
};
|
|
7275
|
+
useAvailableHeight: {
|
|
7276
|
+
type: import("vue").PropType<boolean>;
|
|
7277
|
+
default: boolean;
|
|
7278
|
+
};
|
|
7209
7279
|
selectedMatcher: {
|
|
7210
7280
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7211
7281
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -7232,7 +7302,7 @@ declare const _default: {
|
|
|
7232
7302
|
onOnClearSearch?: () => any;
|
|
7233
7303
|
onClickRow?: (rowIndex: number) => any;
|
|
7234
7304
|
onSelectRow?: (value: boolean) => any;
|
|
7235
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "loadingRowCount" | "zIndexBase" | "showSearch" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
7305
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "loadingRowCount" | "zIndexBase" | "showSearch" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "useAvailableHeight" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
7236
7306
|
$attrs: {
|
|
7237
7307
|
[x: string]: unknown;
|
|
7238
7308
|
};
|
|
@@ -7359,6 +7429,10 @@ declare const _default: {
|
|
|
7359
7429
|
type: import("vue").PropType<"icon" | "underline">;
|
|
7360
7430
|
default: string;
|
|
7361
7431
|
};
|
|
7432
|
+
useAvailableHeight: {
|
|
7433
|
+
type: import("vue").PropType<boolean>;
|
|
7434
|
+
default: boolean;
|
|
7435
|
+
};
|
|
7362
7436
|
selectedMatcher: {
|
|
7363
7437
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7364
7438
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -7425,6 +7499,7 @@ declare const _default: {
|
|
|
7425
7499
|
rowCustomClassKey: string;
|
|
7426
7500
|
rowDataKey: string;
|
|
7427
7501
|
helpTooltipVariant: "icon" | "underline";
|
|
7502
|
+
useAvailableHeight: boolean;
|
|
7428
7503
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7429
7504
|
isSelectionSticky: boolean;
|
|
7430
7505
|
isSelectionBordered: boolean;
|
|
@@ -7561,6 +7636,10 @@ declare const _default: {
|
|
|
7561
7636
|
type: import("vue").PropType<"icon" | "underline">;
|
|
7562
7637
|
default: string;
|
|
7563
7638
|
};
|
|
7639
|
+
useAvailableHeight: {
|
|
7640
|
+
type: import("vue").PropType<boolean>;
|
|
7641
|
+
default: boolean;
|
|
7642
|
+
};
|
|
7564
7643
|
selectedMatcher: {
|
|
7565
7644
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7566
7645
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -7706,6 +7785,10 @@ declare const _default: {
|
|
|
7706
7785
|
type: import("vue").PropType<"icon" | "underline">;
|
|
7707
7786
|
default: string;
|
|
7708
7787
|
};
|
|
7788
|
+
useAvailableHeight: {
|
|
7789
|
+
type: import("vue").PropType<boolean>;
|
|
7790
|
+
default: boolean;
|
|
7791
|
+
};
|
|
7709
7792
|
selectedMatcher: {
|
|
7710
7793
|
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
7711
7794
|
default: (rowId: any, selectedItem: any) => boolean;
|
|
@@ -7772,6 +7855,7 @@ declare const _default: {
|
|
|
7772
7855
|
rowCustomClassKey: string;
|
|
7773
7856
|
rowDataKey: string;
|
|
7774
7857
|
helpTooltipVariant: "icon" | "underline";
|
|
7858
|
+
useAvailableHeight: boolean;
|
|
7775
7859
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
7776
7860
|
isSelectionSticky: boolean;
|
|
7777
7861
|
isSelectionBordered: boolean;
|
|
@@ -7805,7 +7889,6 @@ declare const _default: {
|
|
|
7805
7889
|
}): any;
|
|
7806
7890
|
"empty-state"?(_: {}): any;
|
|
7807
7891
|
footer?(_: {}): any;
|
|
7808
|
-
"side-panel"?(_: {}): any;
|
|
7809
7892
|
};
|
|
7810
7893
|
})) | ({
|
|
7811
7894
|
new (...args: any[]): {
|
|
@@ -9151,6 +9234,54 @@ declare const _default: {
|
|
|
9151
9234
|
"table-header-actions"?(_: {}): any;
|
|
9152
9235
|
};
|
|
9153
9236
|
});
|
|
9237
|
+
DataGridContainer: {
|
|
9238
|
+
new (...args: any[]): {
|
|
9239
|
+
$: import("vue").ComponentInternalInstance;
|
|
9240
|
+
$data: {};
|
|
9241
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
9242
|
+
$attrs: {
|
|
9243
|
+
[x: string]: unknown;
|
|
9244
|
+
};
|
|
9245
|
+
$refs: {
|
|
9246
|
+
[x: string]: unknown;
|
|
9247
|
+
};
|
|
9248
|
+
$slots: Readonly<{
|
|
9249
|
+
[name: string]: import("vue").Slot;
|
|
9250
|
+
}>;
|
|
9251
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
9252
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
9253
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
9254
|
+
$el: any;
|
|
9255
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
9256
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
9257
|
+
created?: (() => void) | (() => void)[];
|
|
9258
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
9259
|
+
mounted?: (() => void) | (() => void)[];
|
|
9260
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
9261
|
+
updated?: (() => void) | (() => void)[];
|
|
9262
|
+
activated?: (() => void) | (() => void)[];
|
|
9263
|
+
deactivated?: (() => void) | (() => void)[];
|
|
9264
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
9265
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
9266
|
+
destroyed?: (() => void) | (() => void)[];
|
|
9267
|
+
unmounted?: (() => void) | (() => void)[];
|
|
9268
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
9269
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
9270
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
9271
|
+
};
|
|
9272
|
+
$forceUpdate: () => void;
|
|
9273
|
+
$nextTick: typeof import("vue").nextTick;
|
|
9274
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
9275
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
9276
|
+
__isFragment?: never;
|
|
9277
|
+
__isTeleport?: never;
|
|
9278
|
+
__isSuspense?: never;
|
|
9279
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
9280
|
+
$slots: {
|
|
9281
|
+
default?(_: {}): any;
|
|
9282
|
+
"side-panel"?(_: {}): any;
|
|
9283
|
+
};
|
|
9284
|
+
});
|
|
9154
9285
|
Table: {
|
|
9155
9286
|
new (...args: any[]): {
|
|
9156
9287
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -17115,6 +17246,7 @@ declare const _default: {
|
|
|
17115
17246
|
dynamicFilterMode: boolean;
|
|
17116
17247
|
minSelections: number;
|
|
17117
17248
|
maxSelections: number;
|
|
17249
|
+
alwaysShowScroll: boolean;
|
|
17118
17250
|
isOnTop: boolean;
|
|
17119
17251
|
triggerLabel: string;
|
|
17120
17252
|
triggerHelperText: string;
|
|
@@ -17270,6 +17402,10 @@ declare const _default: {
|
|
|
17270
17402
|
type: import("vue").PropType<number>;
|
|
17271
17403
|
default: any;
|
|
17272
17404
|
};
|
|
17405
|
+
alwaysShowScroll: {
|
|
17406
|
+
type: import("vue").PropType<boolean>;
|
|
17407
|
+
default: boolean;
|
|
17408
|
+
};
|
|
17273
17409
|
isOnTop: {
|
|
17274
17410
|
type: import("vue").PropType<boolean>;
|
|
17275
17411
|
default: boolean;
|
|
@@ -17435,7 +17571,7 @@ declare const _default: {
|
|
|
17435
17571
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
17436
17572
|
onOpened?: () => any;
|
|
17437
17573
|
onClosed?: () => any;
|
|
17438
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
17574
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "alwaysShowScroll" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
17439
17575
|
$attrs: {
|
|
17440
17576
|
[x: string]: unknown;
|
|
17441
17577
|
};
|
|
@@ -17567,6 +17703,10 @@ declare const _default: {
|
|
|
17567
17703
|
type: import("vue").PropType<number>;
|
|
17568
17704
|
default: any;
|
|
17569
17705
|
};
|
|
17706
|
+
alwaysShowScroll: {
|
|
17707
|
+
type: import("vue").PropType<boolean>;
|
|
17708
|
+
default: boolean;
|
|
17709
|
+
};
|
|
17570
17710
|
isOnTop: {
|
|
17571
17711
|
type: import("vue").PropType<boolean>;
|
|
17572
17712
|
default: boolean;
|
|
@@ -17775,6 +17915,7 @@ declare const _default: {
|
|
|
17775
17915
|
dynamicFilterMode: boolean;
|
|
17776
17916
|
minSelections: number;
|
|
17777
17917
|
maxSelections: number;
|
|
17918
|
+
alwaysShowScroll: boolean;
|
|
17778
17919
|
isOnTop: boolean;
|
|
17779
17920
|
triggerLabel: string;
|
|
17780
17921
|
triggerHelperText: string;
|
|
@@ -17950,6 +18091,10 @@ declare const _default: {
|
|
|
17950
18091
|
type: import("vue").PropType<number>;
|
|
17951
18092
|
default: any;
|
|
17952
18093
|
};
|
|
18094
|
+
alwaysShowScroll: {
|
|
18095
|
+
type: import("vue").PropType<boolean>;
|
|
18096
|
+
default: boolean;
|
|
18097
|
+
};
|
|
17953
18098
|
isOnTop: {
|
|
17954
18099
|
type: import("vue").PropType<boolean>;
|
|
17955
18100
|
default: boolean;
|
|
@@ -18240,6 +18385,10 @@ declare const _default: {
|
|
|
18240
18385
|
type: import("vue").PropType<number>;
|
|
18241
18386
|
default: any;
|
|
18242
18387
|
};
|
|
18388
|
+
alwaysShowScroll: {
|
|
18389
|
+
type: import("vue").PropType<boolean>;
|
|
18390
|
+
default: boolean;
|
|
18391
|
+
};
|
|
18243
18392
|
isOnTop: {
|
|
18244
18393
|
type: import("vue").PropType<boolean>;
|
|
18245
18394
|
default: boolean;
|
|
@@ -18448,6 +18597,7 @@ declare const _default: {
|
|
|
18448
18597
|
dynamicFilterMode: boolean;
|
|
18449
18598
|
minSelections: number;
|
|
18450
18599
|
maxSelections: number;
|
|
18600
|
+
alwaysShowScroll: boolean;
|
|
18451
18601
|
isOnTop: boolean;
|
|
18452
18602
|
triggerLabel: string;
|
|
18453
18603
|
triggerHelperText: string;
|
|
@@ -21970,6 +22120,7 @@ declare const _default: {
|
|
|
21970
22120
|
dynamicFilterMode: boolean;
|
|
21971
22121
|
minSelections: number;
|
|
21972
22122
|
maxSelections: number;
|
|
22123
|
+
alwaysShowScroll: boolean;
|
|
21973
22124
|
isOnTop: boolean;
|
|
21974
22125
|
triggerLabel: string;
|
|
21975
22126
|
triggerHelperText: string;
|
|
@@ -22125,6 +22276,10 @@ declare const _default: {
|
|
|
22125
22276
|
type: import("vue").PropType<number>;
|
|
22126
22277
|
default: any;
|
|
22127
22278
|
};
|
|
22279
|
+
alwaysShowScroll: {
|
|
22280
|
+
type: import("vue").PropType<boolean>;
|
|
22281
|
+
default: boolean;
|
|
22282
|
+
};
|
|
22128
22283
|
isOnTop: {
|
|
22129
22284
|
type: import("vue").PropType<boolean>;
|
|
22130
22285
|
default: boolean;
|
|
@@ -22290,7 +22445,7 @@ declare const _default: {
|
|
|
22290
22445
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
22291
22446
|
onOpened?: () => any;
|
|
22292
22447
|
onClosed?: () => any;
|
|
22293
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
22448
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "alwaysShowScroll" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
22294
22449
|
$attrs: {
|
|
22295
22450
|
[x: string]: unknown;
|
|
22296
22451
|
};
|
|
@@ -22422,6 +22577,10 @@ declare const _default: {
|
|
|
22422
22577
|
type: import("vue").PropType<number>;
|
|
22423
22578
|
default: any;
|
|
22424
22579
|
};
|
|
22580
|
+
alwaysShowScroll: {
|
|
22581
|
+
type: import("vue").PropType<boolean>;
|
|
22582
|
+
default: boolean;
|
|
22583
|
+
};
|
|
22425
22584
|
isOnTop: {
|
|
22426
22585
|
type: import("vue").PropType<boolean>;
|
|
22427
22586
|
default: boolean;
|
|
@@ -22630,6 +22789,7 @@ declare const _default: {
|
|
|
22630
22789
|
dynamicFilterMode: boolean;
|
|
22631
22790
|
minSelections: number;
|
|
22632
22791
|
maxSelections: number;
|
|
22792
|
+
alwaysShowScroll: boolean;
|
|
22633
22793
|
isOnTop: boolean;
|
|
22634
22794
|
triggerLabel: string;
|
|
22635
22795
|
triggerHelperText: string;
|
|
@@ -22805,6 +22965,10 @@ declare const _default: {
|
|
|
22805
22965
|
type: import("vue").PropType<number>;
|
|
22806
22966
|
default: any;
|
|
22807
22967
|
};
|
|
22968
|
+
alwaysShowScroll: {
|
|
22969
|
+
type: import("vue").PropType<boolean>;
|
|
22970
|
+
default: boolean;
|
|
22971
|
+
};
|
|
22808
22972
|
isOnTop: {
|
|
22809
22973
|
type: import("vue").PropType<boolean>;
|
|
22810
22974
|
default: boolean;
|
|
@@ -23095,6 +23259,10 @@ declare const _default: {
|
|
|
23095
23259
|
type: import("vue").PropType<number>;
|
|
23096
23260
|
default: any;
|
|
23097
23261
|
};
|
|
23262
|
+
alwaysShowScroll: {
|
|
23263
|
+
type: import("vue").PropType<boolean>;
|
|
23264
|
+
default: boolean;
|
|
23265
|
+
};
|
|
23098
23266
|
isOnTop: {
|
|
23099
23267
|
type: import("vue").PropType<boolean>;
|
|
23100
23268
|
default: boolean;
|
|
@@ -23303,6 +23471,7 @@ declare const _default: {
|
|
|
23303
23471
|
dynamicFilterMode: boolean;
|
|
23304
23472
|
minSelections: number;
|
|
23305
23473
|
maxSelections: number;
|
|
23474
|
+
alwaysShowScroll: boolean;
|
|
23306
23475
|
isOnTop: boolean;
|
|
23307
23476
|
triggerLabel: string;
|
|
23308
23477
|
triggerHelperText: string;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.sticky[data-v-ef67c78e]{position:sticky}.table-container[data-v-ef67c78e]{width:100%;position:relative;display:flex;flex-direction:column}.table-head-container[data-v-ef67c78e]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-ef67c78e]{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-ef67c78e]{display:inline-table}.table-row[data-v-ef67c78e]{position:relative}.table-row.loading[data-v-ef67c78e]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-ef67c78e]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-ef67c78e]{border-bottom:none}.expanded-row[data-v-ef67c78e]{grid-column:var(--118a88d4);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-ef67c78e]{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-ef67c78e]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-ef67c78e],table th[data-v-ef67c78e]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-ef67c78e]:first-of-type,table th[data-v-ef67c78e]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-ef67c78e]:last-of-type,table th[data-v-ef67c78e]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-ef67c78e],table th.expand-toggle-cell[data-v-ef67c78e]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-ef67c78e]{border-bottom:none;z-index:calc(var(--6539eabc) + 1);display:inline-table;min-width:100%}table>thead>tr[data-v-ef67c78e]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);height:var(--spacing-500);display:grid;grid-template-columns:var(--49737de2)}table>thead>tr>th[data-v-ef67c78e]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.isSortable[data-v-ef67c78e]{cursor:pointer}table>thead>tr>td[data-v-ef67c78e]{display:flex;align-items:center}table>thead>tr>th.bordered[data-v-ef67c78e],table>thead>tr>td.bordered[data-v-ef67c78e]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-ef67c78e],table>thead>tr>td.bordered.isStickyRight[data-v-ef67c78e]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-ef67c78e],table>thead>tr>td.isTextRight[data-v-ef67c78e]{justify-content:flex-end}table>thead.sticky[data-v-ef67c78e]{position:sticky;top:0;background:var(--background-default)}table>thead.isStickyHeader[data-v-ef67c78e]{z-index:calc(var(--6539eabc) + 2);top:calc(var(--spacing-800) - 1px)}table .totals-row[data-v-ef67c78e]{height:40px}table .totals-row[data-v-ef67c78e]:hover{background:var(--background-paper-elevation-1)}table .totals-row>td.sticky[data-v-ef67c78e]{background-color:var(--background-default)}table>tbody[data-v-ef67c78e]{display:block}table>tbody>*>tr[data-v-ef67c78e]{background-color:var(--background-default);height:auto;display:grid;align-items:center;grid-template-columns:var(--49737de2)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-ef67c78e]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-ef67c78e],table>tbody>*>tr.activeMenu>td[data-v-ef67c78e]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-ef67c78e]{background-color:var(--background-default);border:none;min-width:0;display:flex;height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-ef67c78e]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-ef67c78e]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-ef67c78e]{justify-content:flex-end;text-align:right}.underlined[data-v-ef67c78e]{border-bottom:.0625rem dashed var(--default-outlined-border)}.underlined[data-v-ef67c78e]:hover{cursor:pointer}.section-container[data-v-ef67c78e]{left:0}.sections[data-v-ef67c78e]{display:flex}.section[data-v-ef67c78e]{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-ef67c78e]{width:100%}.empty-state[data-v-ef67c78e]{min-height:250px}.floating-row[data-v-ef67c78e]{display:flex;inset:0;pointer-events:none;position:absolute;z-index:calc(var(--6539eabc) + 1)}.floating-row *[data-v-ef67c78e-s]{pointer-events:auto}.bg[data-v-ef67c78e]{background:var(--background-default)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.table-header[data-v-840e700c]{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--standalone[data-v-840e700c]{border:1px solid var(--common-divider);border-top-right-radius:var(--border-radius-md);border-top-left-radius:var(--border-radius-md)}.table-header .table-title[data-v-840e700c]{display:flex;flex:1;align-items:center;justify-content:flex-start;height:100%;color:var(--text-primary)}.table-header .table-header-right[data-v-840e700c]{display:flex;align-items:center;height:100%}.table-header .search-wrapper[data-v-840e700c]{width:13.75rem}.table-header.isStickyHeader[data-v-840e700c]{z-index:calc(var(--c8ef23c8) + 3);top:0}.table-header-pre-search-content[data-v-840e700c]{margin-right:var(--spacing-100);display:flex;align-items:center}.table-header-actions[data-v-840e700c]{margin-left:var(--spacing-100);display:flex;align-items:center}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-enter-active[data-v-2d66b7b6],.v-leave-active[data-v-2d66b7b6]{transition:opacity .25s ease}ol[data-v-2d66b7b6],ul[data-v-2d66b7b6],menu[data-v-2d66b7b6]{list-style:none;margin:0;padding:0}.dropdown.full-width[data-v-2d66b7b6],.dropdown.full-width .button__container[data-v-2d66b7b6]{width:100%}.dropdown-list-wrapper[data-v-2d66b7b6]{display:flex;flex-direction:column;padding:.5rem .5rem .25rem}.dropdown-list-wrapper--multi[data-v-2d66b7b6]{padding:.5rem}.list-container--multi[data-v-2d66b7b6]{margin-bottom:0}.inline-search .inline-search-wrapper[data-v-2d66b7b6]{display:flex;gap:4px;padding-bottom:.25rem}.inline-search .inline-search-wrapper .search-container[data-v-2d66b7b6]{width:100%}.inline-search .list-container[data-v-2d66b7b6]{padding-top:0}.no-result-container[data-v-2d66b7b6]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}.no-result[data-v-2d66b7b6]{color:var(--text-disabled);padding-left:.5rem}.list[data-v-2d66b7b6]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem}.list--multi[data-v-2d66b7b6]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.list--with-conditions[data-v-2d66b7b6]{min-height:0;margin-bottom:0}.image-slot[data-v-2d66b7b6]{margin-right:.5rem}.actions-wrapper[data-v-2d66b7b6]{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}.dropdown-footer[data-v-2d66b7b6]{display:flex;width:100%;padding:.5rem .5rem .375rem .4375rem;border-top:1px solid var(--common-divider);margin-top:.25rem}.apply-button[data-v-2d66b7b6]{margin-left:.5rem}
|