asma-ui-table 1.0.134 → 1.0.136
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/dist/asma-ui-table.es.js +1362 -169
- package/dist/src/components/TableBody.d.ts +6 -3
- package/dist/src/components/TableRow.d.ts +3 -1
- package/dist/src/components/TableRows.d.ts +6 -3
- package/dist/src/components/table-header/TableHeader.d.ts +4 -2
- package/dist/src/components/table-header/TableHeaderCell.d.ts +1 -2
- package/dist/src/hooks/useColumnVirtualizer.d.ts +16 -0
- package/dist/src/hooks/useRowVirtualizer.d.ts +20 -0
- package/dist/style.css +1 -1
- package/package.json +2 -1
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
import { type Table } from '@tanstack/react-table';
|
|
1
|
+
import type { Table } from '@tanstack/react-table';
|
|
3
2
|
import type { StyledTableProps } from '../types';
|
|
3
|
+
import type { MutableRefObject } from 'react';
|
|
4
|
+
import type { ColumnWindow } from 'src/hooks/useColumnVirtualizer';
|
|
4
5
|
export declare function TableBody<TData extends {
|
|
5
6
|
id: string | number;
|
|
6
|
-
}, TCustomData = Record<string, unknown>>({ table, styledTableProps }: {
|
|
7
|
+
}, TCustomData = Record<string, unknown>>({ table, styledTableProps, scrollRef, columnWindow, }: {
|
|
7
8
|
table: Table<TData>;
|
|
8
9
|
styledTableProps: StyledTableProps<TData, TCustomData>;
|
|
10
|
+
scrollRef?: MutableRefObject<HTMLDivElement | null>;
|
|
11
|
+
columnWindow: ColumnWindow;
|
|
9
12
|
}): JSX.Element | null;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { type Row } from '@tanstack/react-table';
|
|
3
3
|
import { type StyledTableProps } from '../types';
|
|
4
|
+
import type { ColumnWindow } from 'src/hooks/useColumnVirtualizer';
|
|
4
5
|
export declare function TableRow<TData extends {
|
|
5
6
|
id: string | number;
|
|
6
|
-
}, TCustomData = Record<string, unknown>>({ styledTableProps, row, index, }: {
|
|
7
|
+
}, TCustomData = Record<string, unknown>>({ styledTableProps, row, index, columnWindow: { paddingLeft, paddingRight, indexes }, }: {
|
|
7
8
|
styledTableProps: StyledTableProps<TData, TCustomData>;
|
|
8
9
|
row: Row<TData>;
|
|
10
|
+
columnWindow: ColumnWindow;
|
|
9
11
|
index: number;
|
|
10
12
|
}): JSX.Element;
|
|
11
13
|
export declare const Checkmark: () => JSX.Element;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
import { type Table } from '@tanstack/react-table';
|
|
1
|
+
import type { Table } from '@tanstack/react-table';
|
|
3
2
|
import type { StyledTableProps } from '../types';
|
|
3
|
+
import type { MutableRefObject } from 'react';
|
|
4
|
+
import type { ColumnWindow } from 'src/hooks/useColumnVirtualizer';
|
|
4
5
|
export declare function TableRows<TData extends {
|
|
5
6
|
id: string | number;
|
|
6
|
-
}, TCustomData = Record<string, unknown>>({ styledTableProps, table }: {
|
|
7
|
+
}, TCustomData = Record<string, unknown>>({ styledTableProps, table, scrollRef, columnWindow, }: {
|
|
7
8
|
styledTableProps: StyledTableProps<TData, TCustomData>;
|
|
8
9
|
table: Table<TData>;
|
|
10
|
+
scrollRef?: MutableRefObject<HTMLDivElement | null>;
|
|
11
|
+
columnWindow: ColumnWindow;
|
|
9
12
|
}): JSX.Element;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { type Table } from '@tanstack/react-table';
|
|
3
|
-
import type
|
|
3
|
+
import { type StyledTableProps } from 'src/types';
|
|
4
|
+
import type { ColumnWindow } from 'src/hooks/useColumnVirtualizer';
|
|
4
5
|
export declare function TableHeader<TData extends {
|
|
5
6
|
id: string | number;
|
|
6
|
-
}, TCustomData = Record<string, unknown>>({ table, styledTableProps, tableCanResize, tableWidth, }: {
|
|
7
|
+
}, TCustomData = Record<string, unknown>>({ table, styledTableProps, tableCanResize, tableWidth, columnWindow: { paddingLeft, paddingRight, indexes }, }: {
|
|
7
8
|
table: Table<TData>;
|
|
8
9
|
styledTableProps: StyledTableProps<TData, TCustomData>;
|
|
9
10
|
tableCanResize: boolean;
|
|
10
11
|
tableWidth: number | null;
|
|
12
|
+
columnWindow: ColumnWindow;
|
|
11
13
|
}): JSX.Element;
|
|
@@ -3,11 +3,10 @@ import { type Header } from '@tanstack/react-table';
|
|
|
3
3
|
import { type StyledTableProps } from 'src/types';
|
|
4
4
|
export declare function TableHeaderCell<TData extends {
|
|
5
5
|
id: string | number;
|
|
6
|
-
}, TCustomData = Record<string, unknown>>({ styledTableProps, header, tableCanResize, left,
|
|
6
|
+
}, TCustomData = Record<string, unknown>>({ styledTableProps, header, tableCanResize, left, tableWidth, }: {
|
|
7
7
|
styledTableProps: StyledTableProps<TData, TCustomData>;
|
|
8
8
|
header: Header<TData, unknown>;
|
|
9
9
|
tableCanResize: boolean;
|
|
10
10
|
left: number;
|
|
11
|
-
hasFixedLeftColumn: boolean;
|
|
12
11
|
tableWidth: number | null;
|
|
13
12
|
}): JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { Table } from '@tanstack/react-table';
|
|
2
|
+
import type { MutableRefObject } from 'react';
|
|
3
|
+
export type ColumnWindow = {
|
|
4
|
+
indexes: number[];
|
|
5
|
+
paddingLeft: number;
|
|
6
|
+
paddingRight: number;
|
|
7
|
+
};
|
|
8
|
+
export declare function useColumnVirtualizer<TData extends {
|
|
9
|
+
id: string | number;
|
|
10
|
+
}>(table: Table<TData>, scrollRef?: MutableRefObject<HTMLDivElement | null>): {
|
|
11
|
+
columnWindow: {
|
|
12
|
+
indexes: number[];
|
|
13
|
+
paddingLeft: number;
|
|
14
|
+
paddingRight: number;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { Row } from '@tanstack/react-table';
|
|
2
|
+
import type { MutableRefObject } from 'react';
|
|
3
|
+
export type RowWindow = {
|
|
4
|
+
indexes: number[];
|
|
5
|
+
paddingTop: number;
|
|
6
|
+
paddingBottom: number;
|
|
7
|
+
};
|
|
8
|
+
export declare function useRowVirtualizer<TData extends {
|
|
9
|
+
id: string | number;
|
|
10
|
+
}>({ rows, rowHeight, scrollRef, }: {
|
|
11
|
+
rows: Row<TData>[];
|
|
12
|
+
rowHeight: number;
|
|
13
|
+
scrollRef?: MutableRefObject<HTMLDivElement | null>;
|
|
14
|
+
}): {
|
|
15
|
+
rowWindow: {
|
|
16
|
+
indexes: number[];
|
|
17
|
+
paddingTop: number;
|
|
18
|
+
paddingBottom: number;
|
|
19
|
+
};
|
|
20
|
+
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._CheckboxWrapper_1vrmq_1{display:flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;cursor:pointer;background:transparent;border:none}._CheckboxWrapper_1vrmq_1._size-small_1vrmq_11{width:38px;height:38px}._CheckboxWrapper_1vrmq_1._size-medium_1vrmq_15{width:42px;height:42px}._CheckboxWrapper_1vrmq_1[data-disabled]{cursor:default;pointer-events:none}._CheckboxWrapper_1vrmq_1:is([data-checked],[data-indeterminate]) ._Checkbox_1vrmq_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1._Indeterminate_1vrmq_28 ._Checkbox_1vrmq_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1[data-unchecked] ._Checkbox_1vrmq_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-500)}._CheckboxWrapper_1vrmq_1[data-disabled][data-unchecked] ._Checkbox_1vrmq_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-200)}._CheckboxWrapper_1vrmq_1[data-disabled]:is([data-checked],[data-indeterminate]) ._Checkbox_1vrmq_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1[data-disabled]._Indeterminate_1vrmq_28 ._Checkbox_1vrmq_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1:focus-visible{outline:none}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55{pointer-events:none;cursor:default}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55 ._Checkbox_1vrmq_1{background-color:#fff;border:var(--cb-border-w) solid var(--colors-delta-500);--cb-border-w: 2px}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55 ._Checkbox_1vrmq_1 ._Indicator_1vrmq_64{color:var(--colors-delta-500)}._HideWrapper_1vrmq_68{width:auto;height:auto;padding:0;overflow:visible}._CheckboxHover_1vrmq_75:after,._CheckboxRippleContainer_1vrmq_75{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0}._CheckboxRippleContainer_1vrmq_75{overflow:hidden;border-radius:50%}._CheckboxRipple_1vrmq_75{position:absolute;width:100%;height:100%;background-color:var(--colors-gama-500);border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);opacity:.25;animation:_ripple_1vrmq_1 .4s ease-out forwards;z-index:0}@keyframes _ripple_1vrmq_1{to{transform:translate(-50%,-50%) scale(1);opacity:.025}}._CheckboxHover_1vrmq_75:after{content:"";width:42px;height:42px;background:var(--colors-gama-300);border-radius:50%;top:50%;left:50%;opacity:0;transition:opacity .2s,transform .2s;transform:translate(-50%,-50%) scale(.7)}._CheckboxHover_1vrmq_75:hover:after{opacity:.07;transform:translate(-50%,-50%) scale(1)}._CheckboxHover_1vrmq_75._size-small_1vrmq_11:after{width:38px;height:38px}._Checkbox_1vrmq_1{position:relative;overflow:visible;padding:0;box-sizing:border-box;--cb-border-w: 2px;--cb-indicator-color: #fff;border-radius:2px;width:18px;height:18px}._Checkbox_1vrmq_1._size-small_1vrmq_11{border-radius:2px;width:15px;height:15px}._CheckboxWrapper_1vrmq_1:focus-visible ._Checkbox_1vrmq_1:before{content:"";position:absolute;inset:calc(-2px - var(--cb-border-w));border-radius:4px;outline:2px solid var(--colors-gama-400);outline-offset:0;pointer-events:none}._Indicator_1vrmq_64{display:flex;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;z-index:1;position:relative;pointer-events:none}._IndeterminateMark_1vrmq_168{display:block;width:62%;height:2.5px;border-radius:999px;background-color:currentColor}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55 ._Checkbox_1vrmq_1{--cb-indicator-color: var(--colors-delta-500)}._asma-core-ui-button_gteum_1{border-color:transparent;border-width:1px;border-style:solid}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-common-text-color)!important;background-color:var(--colors-button-contained-common-bg-color)!important;border-color:var(--colors-button-contained-common-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:active{color:var(--colors-button-contained-common-active-text-color)!important;background-color:var(--colors-button-contained-common-active-bg-color)!important;border-color:var(--colors-button-contained-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:hover{color:var(--colors-button-contained-common-hover-text-color)!important;background-color:var(--colors-button-contained-common-hover-bg-color)!important;border-color:var(--colors-button-contained-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-contained-common-focused-text-color)!important;background-color:var(--colors-button-contained-common-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-contained-common-disabled-text-color)!important;background-color:var(--colors-button-contained-common-disabled-bg-color)!important;border-color:var(--colors-button-contained-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-error-text-color)!important;background-color:var(--colors-button-contained-error-bg-color)!important;border-color:var(--colors-button-contained-error-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:active{color:var(--colors-button-contained-error-active-text-color)!important;background-color:var(--colors-button-contained-error-active-bg-color)!important;border-color:var(--colors-button-contained-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:hover{color:var(--colors-button-contained-error-hover-text-color)!important;background-color:var(--colors-button-contained-error-hover-bg-color)!important;border-color:var(--colors-button-contained-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-contained-error-focused-text-color)!important;background-color:var(--colors-button-contained-error-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-contained-error-disabled-text-color)!important;background-color:var(--colors-button-contained-error-disabled-bg-color)!important;border-color:var(--colors-button-contained-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-common-text-color)!important;background-color:var(--colors-button-outlined-common-bg-color)!important;border-color:var(--colors-button-outlined-common-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:active{color:var(--colors-button-outlined-common-active-text-color)!important;background-color:var(--colors-button-outlined-common-active-bg-color)!important;border-color:var(--colors-button-outlined-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:hover{color:var(--colors-button-outlined-common-hover-text-color)!important;background-color:var(--colors-button-outlined-common-hover-bg-color)!important;border-color:var(--colors-button-outlined-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-common-focused-text-color)!important;background-color:var(--colors-button-outlined-common-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-outlined-common-disabled-text-color)!important;background-color:var(--colors-button-outlined-common-disabled-bg-color)!important;border-color:var(--colors-button-outlined-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-error-text-color)!important;background-color:var(--colors-button-outlined-error-bg-color)!important;border-color:var(--colors-button-outlined-error-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:active{color:var(--colors-button-outlined-error-active-text-color)!important;background-color:var(--colors-button-outlined-error-active-bg-color)!important;border-color:var(--colors-button-outlined-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:hover{color:var(--colors-button-outlined-error-hover-text-color)!important;background-color:var(--colors-button-outlined-error-hover-bg-color)!important;border-color:var(--colors-button-outlined-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-error-focused-text-color)!important;background-color:var(--colors-button-outlined-error-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-outlined-error-disabled-text-color)!important;background-color:var(--colors-button-outlined-error-disabled-bg-color)!important;border-color:var(--colors-button-outlined-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-common-text-color)!important;background-color:var(--colors-button-text-common-bg-color)!important;border-color:var(--colors-button-text-common-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:active{color:var(--colors-button-text-common-active-text-color)!important;background-color:var(--colors-button-text-common-active-bg-color)!important;border-color:var(--colors-button-text-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:hover{color:var(--colors-button-text-common-hover-text-color)!important;background-color:var(--colors-button-text-common-hover-bg-color)!important;border-color:var(--colors-button-text-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-text-common-focused-text-color)!important;background-color:var(--colors-button-text-common-focused-bg-color)!important;outline:2px solid var(--colors-button-text-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-text-common-disabled-text-color)!important;background-color:var(--colors-button-text-common-disabled-bg-color)!important;border-color:var(--colors-button-text-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-error-text-color)!important;background-color:var(--colors-button-text-error-bg-color)!important;border-color:var(--colors-button-text-error-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:active{color:var(--colors-button-text-error-active-text-color)!important;background-color:var(--colors-button-text-error-active-bg-color)!important;border-color:var(--colors-button-text-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:hover{color:var(--colors-button-text-error-hover-text-color)!important;background-color:var(--colors-button-text-error-hover-bg-color)!important;border-color:var(--colors-button-text-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-text-error-focused-text-color)!important;background-color:var(--colors-button-text-error-focused-bg-color)!important;outline:2px solid var(--colors-button-text-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-text-error-disabled-text-color)!important;background-color:var(--colors-button-text-error-disabled-bg-color)!important;border-color:var(--colors-button-text-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textGray-common-text-color)!important;background-color:var(--colors-button-textGray-common-bg-color)!important;border-color:var(--colors-button-textGray-common-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:active{color:var(--colors-button-textGray-common-active-text-color)!important;background-color:var(--colors-button-textGray-common-active-bg-color)!important;border-color:var(--colors-button-textGray-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:hover{color:var(--colors-button-textGray-common-hover-text-color)!important;background-color:var(--colors-button-textGray-common-hover-bg-color)!important;border-color:var(--colors-button-textGray-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textGray-common-focused-text-color)!important;background-color:var(--colors-button-textGray-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textGray-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textGray-common-disabled-text-color)!important;background-color:var(--colors-button-textGray-common-disabled-bg-color)!important;border-color:var(--colors-button-textGray-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textWhite-common-text-color)!important;background-color:var(--colors-button-textWhite-common-bg-color)!important;border-color:var(--colors-button-textWhite-common-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:active{color:var(--colors-button-textWhite-common-active-text-color)!important;background-color:var(--colors-button-textWhite-common-active-bg-color)!important;border-color:var(--colors-button-textWhite-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:hover{color:var(--colors-button-textWhite-common-hover-text-color)!important;background-color:var(--colors-button-textWhite-common-hover-bg-color)!important;border-color:var(--colors-button-textWhite-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textWhite-common-focused-text-color)!important;background-color:var(--colors-button-textWhite-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textWhite-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textWhite-common-disabled-text-color)!important;background-color:var(--colors-button-textWhite-common-disabled-bg-color)!important;border-color:var(--colors-button-textWhite-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._medium_gteum_69{height:38px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._small_gteum_74{height:32px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._large_gteum_79{height:40px;padding-left:8px;padding-right:8px}._actions-header_1bxzk_1{width:40px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;position:relative}._pin-indicator_1bxzk_11{position:absolute;height:8px;width:8px;background-color:var(--colors-gama-400);border-radius:50%;top:2px;right:6px}._pin-icon_1bxzk_21{color:var(--colors-delta-500);min-width:20px;min-height:20px}._pin-icon_1bxzk_21:hover{color:var(--colors-delta-500)}._table-action-item_ejh2p_1{height:36px;padding:1px 8px;display:flex;align-items:center;width:100%}._table-action-item_ejh2p_1:hover,._table-action-item_ejh2p_1:active{background-color:var(--colors-gray-50)}._drag-icon_ejh2p_18{width:20px;height:20px}._drag-icon--disabled_ejh2p_23{color:var(--colors-delta-300);cursor:not-allowed}._drag-icon--enabled_ejh2p_28{color:var(--colors-delta-700);cursor:grab}._drag-icon--enabled_ejh2p_28:focus{outline-color:var(--colors-gama-500)}._drag-icon--enabled_ejh2p_28:active{cursor:grabbing}._asma-ui-table-styled-table_1fc5x_1{--action-cell-shadow: none;--fixed-cell-shadow: none;isolation:isolate;width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1[data-x-overflow=true]{--action-cell-shadow: -15px 0px 15px rgba(0, 0, 0, .1);--fixed-cell-shadow: 15px 0px 15px rgba(0, 0, 0, .1)}._asma-ui-table-styled-table_1fc5x_1 *,._asma-ui-table-styled-table_1fc5x_1 *:after,._asma-ui-table-styled-table_1fc5x_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_1fc5x_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-shell_1fc5x_29{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper-fetching_1fc5x_49{overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-scroll_1fc5x_52{overflow-x:auto;overflow-y:auto;flex:1 1 auto;min-height:0;position:relative;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1 ._table-x--fill-height_1fc5x_61{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61{width:inherit;min-width:100%;overflow-x:visible;overflow-y:visible;flex-shrink:0;scrollbar-width:none;-ms-overflow-style:none}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header--sticky_1fc5x_76{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll_1fc5x_81{position:sticky;bottom:0;height:var(--table-hscroll-h);overflow-x:hidden;overflow-y:hidden;background:white;z-index:2;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll__content_1fc5x_91{height:1px}._asma-ui-table-styled-table_1fc5x_1 ._no-rows-overlay-container_1fc5x_94{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none;z-index:5;top:32px}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103 ._tbody_1fc5x_112{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_1fc5x_1 ._loading-icon_1fc5x_117{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124+._t-row_1fc5x_124 ._t-cell_1fc5x_124{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124{margin-top:1px;display:table-row}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover,._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._action-cell_1fc5x_134{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._fixed-cell_1fc5x_138{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._action-cell_1fc5x_134{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._fixed-cell_1fc5x_138{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus-visible{outline:none}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124{overflow:hidden;vertical-align:top;font-size:14px;line-height:20px;color:var(--colors-gray-700);display:table-cell;white-space:pre-wrap;padding:0 5px}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._selected_1fc5x_187{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190{background-color:var(--colors-gama-25);box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:first-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset 2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{height:100%;position:sticky;right:-1px;z-index:1}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{position:sticky;left:0;z-index:1;box-shadow:var(--fixed-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124._is-loading_1fc5x_231 ._t-cell_1fc5x_124{opacity:.5}._asma-ui-table-styled-table_1fc5x_1 ._action-cell-default-background_1fc5x_234,._asma-ui-table-styled-table_1fc5x_1 ._fixed-cell-default-background_1fc5x_237{background-color:#fff}._asma-ui-table-styled-table_1fc5x_1 ._sortable-column_1fc5x_240{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{position:absolute;top:0;height:100%;right:0;width:4px;background:var(--colors-delta-300);cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:none;border-radius:5px}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244._isResizing_1fc5x_256{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{opacity:0}._asma-ui-table-styled-table_1fc5x_1 *:hover>._resizer_1fc5x_244{opacity:1}}._asma-ui-table-styled-table_1fc5x_1 ._hide-table-header_1fc5x_268{height:0px;opacity:0}._asma-ui-table-styled-table_1fc5x_1 ._show-table-header_1fc5x_272{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124{text-transform:uppercase;font-size:10px;font-weight:600;text-align:start;color:var(--colors-delta-500);display:table-cell;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 5px;border-top:.5px solid var(--colors-delta-200);border-bottom:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._hide-header_1fc5x_297{border:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__fixed_1fc5x_313{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:var(--fixed-cell-shadow)}}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._sort-icon_1fc5x_321{color:var(--colors-delta-800)}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--sticky_1fc5x_324{display:flex;width:100%;gap:8px;background-color:transparent;flex-direction:row;padding-top:16px;align-items:center;justify-content:flex-end;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--inline_1fc5x_335{position:sticky;left:0;width:100%;display:flex;align-items:center;justify-content:flex-end;gap:8px;padding:12px 0;background:white}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom_1fc5x_346{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom--sticky_1fc5x_360{bottom:0}._skeleton-row_5gbhw_1{padding-bottom:.5rem;padding-top:0}._skeleton-row_5gbhw_1:first-child{padding-top:.5rem}._skeleton-row_5gbhw_1:last-child{padding-bottom:0}._table-pagination_pu6mb_1{display:flex;width:-moz-fit-content;width:fit-content;gap:8px;background-color:transparent;flex-direction:row;align-items:center;justify-content:flex-end}._table-pagination__pages-list_pu6mb_11{overflow:auto;width:160px;max-height:200px}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16{height:36px;position:relative;display:flex;align-items:center;padding-left:40px;cursor:pointer}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16:hover{background-color:var(--colors-delta-30)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16._page-selected_pu6mb_27{background-color:var(--colors-gama-50)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16 ._check-icon_pu6mb_30{position:absolute;left:8px;top:4px;color:var(--colors-gama-500)}
|
|
1
|
+
._CheckboxWrapper_1b4zf_1{display:flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;cursor:pointer;background:transparent;border:none}._CheckboxWrapper_1b4zf_1._size-small_1b4zf_11{width:38px;height:38px}._CheckboxWrapper_1b4zf_1._size-medium_1b4zf_15{width:42px;height:42px}._CheckboxWrapper_1b4zf_1[data-disabled]{cursor:default;pointer-events:none}._CheckboxWrapper_1b4zf_1:is([data-checked],[data-indeterminate]) ._Checkbox_1b4zf_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1._Indeterminate_1b4zf_28 ._Checkbox_1b4zf_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1[data-unchecked] ._Checkbox_1b4zf_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-500)}._CheckboxWrapper_1b4zf_1[data-disabled][data-unchecked] ._Checkbox_1b4zf_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-200)}._CheckboxWrapper_1b4zf_1[data-disabled]:is([data-checked],[data-indeterminate]) ._Checkbox_1b4zf_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1[data-disabled]._Indeterminate_1b4zf_28 ._Checkbox_1b4zf_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1:focus-visible{outline:none}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55{pointer-events:none;cursor:default}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55 ._Checkbox_1b4zf_1{background-color:#fff;border:var(--cb-border-w) solid var(--colors-delta-500);--cb-border-w: 2px}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55 ._Checkbox_1b4zf_1 ._Indicator_1b4zf_64{color:var(--colors-delta-500)}._HideWrapper_1b4zf_68{width:auto;height:auto;padding:0;overflow:visible}._CheckboxHover_1b4zf_75:after,._CheckboxRippleContainer_1b4zf_75{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0}._CheckboxRippleContainer_1b4zf_75{overflow:hidden;border-radius:50%}._CheckboxRipple_1b4zf_75{position:absolute;width:100%;height:100%;background-color:var(--colors-gama-500);border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);opacity:.25;animation:_ripple_1b4zf_1 .4s ease-out forwards;z-index:0}@keyframes _ripple_1b4zf_1{to{transform:translate(-50%,-50%) scale(1);opacity:.025}}._CheckboxHover_1b4zf_75:after{content:"";width:42px;height:42px;background:var(--colors-gama-300);border-radius:50%;top:50%;left:50%;opacity:0;transition:opacity .2s,transform .2s;transform:translate(-50%,-50%) scale(.7)}._CheckboxHover_1b4zf_75:hover:after{opacity:.07;transform:translate(-50%,-50%) scale(1)}._CheckboxHover_1b4zf_75._size-small_1b4zf_11:after{width:38px;height:38px}._Checkbox_1b4zf_1{position:relative;overflow:visible;padding:0;box-sizing:border-box;--cb-border-w: 2px;--cb-indicator-color: #fff;border-radius:2px;width:18px;height:18px}._Checkbox_1b4zf_1._size-small_1b4zf_11{border-radius:2px;width:15px;height:15px}._CheckboxWrapper_1b4zf_1:focus-visible ._Checkbox_1b4zf_1:before{content:"";position:absolute;inset:calc(-2px - var(--cb-border-w));border-radius:4px;outline:2px solid var(--colors-gama-400);outline-offset:0;pointer-events:none}._CheckboxWrapper_1b4zf_1[data-indeterminate] ._Checkbox_1b4zf_1:after,._Checkbox_1b4zf_1._Indeterminate_1b4zf_28:after{content:"";position:absolute;top:50%;left:50%;width:62%;height:2.5px;transform:translate(-50%,-50%);border-radius:999px;background-color:var(--cb-indicator-color);z-index:2;pointer-events:none}._Indicator_1b4zf_64{display:flex;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;z-index:1;position:relative;pointer-events:none}._CheckboxWrapper_1b4zf_1[data-indeterminate] ._Indicator_1b4zf_64 svg,._CheckboxWrapper_1b4zf_1._Indeterminate_1b4zf_28 ._Indicator_1b4zf_64 svg{display:none}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55 ._Checkbox_1b4zf_1{--cb-indicator-color: var(--colors-delta-500)}._asma-core-ui-button_gteum_1{border-color:transparent;border-width:1px;border-style:solid}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-common-text-color)!important;background-color:var(--colors-button-contained-common-bg-color)!important;border-color:var(--colors-button-contained-common-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:active{color:var(--colors-button-contained-common-active-text-color)!important;background-color:var(--colors-button-contained-common-active-bg-color)!important;border-color:var(--colors-button-contained-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:hover{color:var(--colors-button-contained-common-hover-text-color)!important;background-color:var(--colors-button-contained-common-hover-bg-color)!important;border-color:var(--colors-button-contained-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-contained-common-focused-text-color)!important;background-color:var(--colors-button-contained-common-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-contained-common-disabled-text-color)!important;background-color:var(--colors-button-contained-common-disabled-bg-color)!important;border-color:var(--colors-button-contained-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-error-text-color)!important;background-color:var(--colors-button-contained-error-bg-color)!important;border-color:var(--colors-button-contained-error-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:active{color:var(--colors-button-contained-error-active-text-color)!important;background-color:var(--colors-button-contained-error-active-bg-color)!important;border-color:var(--colors-button-contained-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:hover{color:var(--colors-button-contained-error-hover-text-color)!important;background-color:var(--colors-button-contained-error-hover-bg-color)!important;border-color:var(--colors-button-contained-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-contained-error-focused-text-color)!important;background-color:var(--colors-button-contained-error-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-contained-error-disabled-text-color)!important;background-color:var(--colors-button-contained-error-disabled-bg-color)!important;border-color:var(--colors-button-contained-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-common-text-color)!important;background-color:var(--colors-button-outlined-common-bg-color)!important;border-color:var(--colors-button-outlined-common-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:active{color:var(--colors-button-outlined-common-active-text-color)!important;background-color:var(--colors-button-outlined-common-active-bg-color)!important;border-color:var(--colors-button-outlined-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:hover{color:var(--colors-button-outlined-common-hover-text-color)!important;background-color:var(--colors-button-outlined-common-hover-bg-color)!important;border-color:var(--colors-button-outlined-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-common-focused-text-color)!important;background-color:var(--colors-button-outlined-common-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-outlined-common-disabled-text-color)!important;background-color:var(--colors-button-outlined-common-disabled-bg-color)!important;border-color:var(--colors-button-outlined-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-error-text-color)!important;background-color:var(--colors-button-outlined-error-bg-color)!important;border-color:var(--colors-button-outlined-error-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:active{color:var(--colors-button-outlined-error-active-text-color)!important;background-color:var(--colors-button-outlined-error-active-bg-color)!important;border-color:var(--colors-button-outlined-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:hover{color:var(--colors-button-outlined-error-hover-text-color)!important;background-color:var(--colors-button-outlined-error-hover-bg-color)!important;border-color:var(--colors-button-outlined-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-error-focused-text-color)!important;background-color:var(--colors-button-outlined-error-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-outlined-error-disabled-text-color)!important;background-color:var(--colors-button-outlined-error-disabled-bg-color)!important;border-color:var(--colors-button-outlined-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-common-text-color)!important;background-color:var(--colors-button-text-common-bg-color)!important;border-color:var(--colors-button-text-common-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:active{color:var(--colors-button-text-common-active-text-color)!important;background-color:var(--colors-button-text-common-active-bg-color)!important;border-color:var(--colors-button-text-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:hover{color:var(--colors-button-text-common-hover-text-color)!important;background-color:var(--colors-button-text-common-hover-bg-color)!important;border-color:var(--colors-button-text-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-text-common-focused-text-color)!important;background-color:var(--colors-button-text-common-focused-bg-color)!important;outline:2px solid var(--colors-button-text-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-text-common-disabled-text-color)!important;background-color:var(--colors-button-text-common-disabled-bg-color)!important;border-color:var(--colors-button-text-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-error-text-color)!important;background-color:var(--colors-button-text-error-bg-color)!important;border-color:var(--colors-button-text-error-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:active{color:var(--colors-button-text-error-active-text-color)!important;background-color:var(--colors-button-text-error-active-bg-color)!important;border-color:var(--colors-button-text-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:hover{color:var(--colors-button-text-error-hover-text-color)!important;background-color:var(--colors-button-text-error-hover-bg-color)!important;border-color:var(--colors-button-text-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-text-error-focused-text-color)!important;background-color:var(--colors-button-text-error-focused-bg-color)!important;outline:2px solid var(--colors-button-text-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-text-error-disabled-text-color)!important;background-color:var(--colors-button-text-error-disabled-bg-color)!important;border-color:var(--colors-button-text-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textGray-common-text-color)!important;background-color:var(--colors-button-textGray-common-bg-color)!important;border-color:var(--colors-button-textGray-common-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:active{color:var(--colors-button-textGray-common-active-text-color)!important;background-color:var(--colors-button-textGray-common-active-bg-color)!important;border-color:var(--colors-button-textGray-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:hover{color:var(--colors-button-textGray-common-hover-text-color)!important;background-color:var(--colors-button-textGray-common-hover-bg-color)!important;border-color:var(--colors-button-textGray-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textGray-common-focused-text-color)!important;background-color:var(--colors-button-textGray-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textGray-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textGray-common-disabled-text-color)!important;background-color:var(--colors-button-textGray-common-disabled-bg-color)!important;border-color:var(--colors-button-textGray-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textWhite-common-text-color)!important;background-color:var(--colors-button-textWhite-common-bg-color)!important;border-color:var(--colors-button-textWhite-common-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:active{color:var(--colors-button-textWhite-common-active-text-color)!important;background-color:var(--colors-button-textWhite-common-active-bg-color)!important;border-color:var(--colors-button-textWhite-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:hover{color:var(--colors-button-textWhite-common-hover-text-color)!important;background-color:var(--colors-button-textWhite-common-hover-bg-color)!important;border-color:var(--colors-button-textWhite-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textWhite-common-focused-text-color)!important;background-color:var(--colors-button-textWhite-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textWhite-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textWhite-common-disabled-text-color)!important;background-color:var(--colors-button-textWhite-common-disabled-bg-color)!important;border-color:var(--colors-button-textWhite-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._medium_gteum_69{height:38px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._small_gteum_74{height:32px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._large_gteum_79{height:40px;padding-left:8px;padding-right:8px}._actions-header_1bxzk_1{width:40px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;position:relative}._pin-indicator_1bxzk_11{position:absolute;height:8px;width:8px;background-color:var(--colors-gama-400);border-radius:50%;top:2px;right:6px}._pin-icon_1bxzk_21{color:var(--colors-delta-500);min-width:20px;min-height:20px}._pin-icon_1bxzk_21:hover{color:var(--colors-delta-500)}._table-action-item_ejh2p_1{height:36px;padding:1px 8px;display:flex;align-items:center;width:100%}._table-action-item_ejh2p_1:hover,._table-action-item_ejh2p_1:active{background-color:var(--colors-gray-50)}._drag-icon_ejh2p_18{width:20px;height:20px}._drag-icon--disabled_ejh2p_23{color:var(--colors-delta-300);cursor:not-allowed}._drag-icon--enabled_ejh2p_28{color:var(--colors-delta-700);cursor:grab}._drag-icon--enabled_ejh2p_28:focus{outline-color:var(--colors-gama-500)}._drag-icon--enabled_ejh2p_28:active{cursor:grabbing}._asma-ui-table-styled-table_1fc5x_1{--action-cell-shadow: none;--fixed-cell-shadow: none;isolation:isolate;width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1[data-x-overflow=true]{--action-cell-shadow: -15px 0px 15px rgba(0, 0, 0, .1);--fixed-cell-shadow: 15px 0px 15px rgba(0, 0, 0, .1)}._asma-ui-table-styled-table_1fc5x_1 *,._asma-ui-table-styled-table_1fc5x_1 *:after,._asma-ui-table-styled-table_1fc5x_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_1fc5x_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-shell_1fc5x_29{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper-fetching_1fc5x_49{overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-scroll_1fc5x_52{overflow-x:auto;overflow-y:auto;flex:1 1 auto;min-height:0;position:relative;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1 ._table-x--fill-height_1fc5x_61{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61{width:inherit;min-width:100%;overflow-x:visible;overflow-y:visible;flex-shrink:0;scrollbar-width:none;-ms-overflow-style:none}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header--sticky_1fc5x_76{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll_1fc5x_81{position:sticky;bottom:0;height:var(--table-hscroll-h);overflow-x:hidden;overflow-y:hidden;background:white;z-index:2;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll__content_1fc5x_91{height:1px}._asma-ui-table-styled-table_1fc5x_1 ._no-rows-overlay-container_1fc5x_94{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none;z-index:5;top:32px}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103 ._tbody_1fc5x_112{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_1fc5x_1 ._loading-icon_1fc5x_117{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124+._t-row_1fc5x_124 ._t-cell_1fc5x_124{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124{margin-top:1px;display:table-row}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover,._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._action-cell_1fc5x_134{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._fixed-cell_1fc5x_138{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._action-cell_1fc5x_134{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._fixed-cell_1fc5x_138{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus-visible{outline:none}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124{overflow:hidden;vertical-align:top;font-size:14px;line-height:20px;color:var(--colors-gray-700);display:table-cell;white-space:pre-wrap;padding:0 5px}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._selected_1fc5x_187{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190{background-color:var(--colors-gama-25);box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:first-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset 2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{height:100%;position:sticky;right:-1px;z-index:1}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{position:sticky;left:0;z-index:1;box-shadow:var(--fixed-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124._is-loading_1fc5x_231 ._t-cell_1fc5x_124{opacity:.5}._asma-ui-table-styled-table_1fc5x_1 ._action-cell-default-background_1fc5x_234,._asma-ui-table-styled-table_1fc5x_1 ._fixed-cell-default-background_1fc5x_237{background-color:#fff}._asma-ui-table-styled-table_1fc5x_1 ._sortable-column_1fc5x_240{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{position:absolute;top:0;height:100%;right:0;width:4px;background:var(--colors-delta-300);cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:none;border-radius:5px}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244._isResizing_1fc5x_256{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{opacity:0}._asma-ui-table-styled-table_1fc5x_1 *:hover>._resizer_1fc5x_244{opacity:1}}._asma-ui-table-styled-table_1fc5x_1 ._hide-table-header_1fc5x_268{height:0px;opacity:0}._asma-ui-table-styled-table_1fc5x_1 ._show-table-header_1fc5x_272{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124{text-transform:uppercase;font-size:10px;font-weight:600;text-align:start;color:var(--colors-delta-500);display:table-cell;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 5px;border-top:.5px solid var(--colors-delta-200);border-bottom:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._hide-header_1fc5x_297{border:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__fixed_1fc5x_313{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:var(--fixed-cell-shadow)}}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._sort-icon_1fc5x_321{color:var(--colors-delta-800)}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--sticky_1fc5x_324{display:flex;width:100%;gap:8px;background-color:transparent;flex-direction:row;padding-top:16px;align-items:center;justify-content:flex-end;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--inline_1fc5x_335{position:sticky;left:0;width:100%;display:flex;align-items:center;justify-content:flex-end;gap:8px;padding:12px 0;background:white}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom_1fc5x_346{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom--sticky_1fc5x_360{bottom:0}._skeleton-row_5gbhw_1{padding-bottom:.5rem;padding-top:0}._skeleton-row_5gbhw_1:first-child{padding-top:.5rem}._skeleton-row_5gbhw_1:last-child{padding-bottom:0}._table-pagination_pu6mb_1{display:flex;width:-moz-fit-content;width:fit-content;gap:8px;background-color:transparent;flex-direction:row;align-items:center;justify-content:flex-end}._table-pagination__pages-list_pu6mb_11{overflow:auto;width:160px;max-height:200px}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16{height:36px;position:relative;display:flex;align-items:center;padding-left:40px;cursor:pointer}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16:hover{background-color:var(--colors-delta-30)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16._page-selected_pu6mb_27{background-color:var(--colors-gama-50)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16 ._check-icon_pu6mb_30{position:absolute;left:8px;top:4px;color:var(--colors-gama-500)}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.136",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist/**/*",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"@fontsource/roboto": "^5.0.4",
|
|
59
59
|
"@mui/material": "^5.13.7",
|
|
60
60
|
"@tanstack/react-table": "^8.21.3",
|
|
61
|
+
"@tanstack/react-virtual": "^3.13.21",
|
|
61
62
|
"clsx": "^1.2.1",
|
|
62
63
|
"lodash-es": "^4.17.21",
|
|
63
64
|
"react": "^18.2.0",
|