asma-ui-table 1.0.127 → 1.0.129

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.
Files changed (60) hide show
  1. package/dist/asma-ui-table.es.js +5 -14379
  2. package/dist/src/components/Fetching.d.ts +1 -0
  3. package/dist/src/components/StyledTableIndex.d.ts +5 -6
  4. package/dist/src/components/TableBody.d.ts +4 -4
  5. package/dist/src/components/TableRow.d.ts +5 -5
  6. package/dist/src/components/TableRows.d.ts +4 -4
  7. package/dist/src/components/TableSkeleton.d.ts +2 -2
  8. package/dist/src/components/columns/action-column/actionColumn.d.ts +87 -88
  9. package/dist/src/components/columns/action-column/components/HeaderActionMenu.d.ts +3 -3
  10. package/dist/src/components/columns/action-column/components/RowActionMenu.d.ts +4 -5
  11. package/dist/src/components/columns/dndHandleColumn.d.ts +210 -211
  12. package/dist/src/components/columns/expandColumn.d.ts +2 -3
  13. package/dist/src/components/columns/helpers/useElementHeightPx.d.ts +2 -1
  14. package/dist/src/components/columns/helpers/useProxyHorizontalScrollSync.d.ts +5 -4
  15. package/dist/src/components/columns/selectColumn.d.ts +3 -4
  16. package/dist/src/components/columns/showTextColumn.d.ts +2 -3
  17. package/dist/src/components/table-footer/TableFooter.d.ts +4 -4
  18. package/dist/src/components/table-footer/TablePagination.d.ts +3 -3
  19. package/dist/src/components/table-header/TableHeader.d.ts +4 -4
  20. package/dist/src/components/table-header/TableHeaderCell.d.ts +4 -4
  21. package/dist/src/context/RootContext.d.ts +1 -2
  22. package/dist/src/custom-features/expand-rows/ExpandRowsFeature.d.ts +1 -2
  23. package/dist/src/custom-features/expand-rows/index.d.ts +2 -2
  24. package/dist/src/custom-features/expand-rows/types.d.ts +1 -2
  25. package/dist/src/custom-features/focus-rows/FocusRowsFeature.d.ts +1 -2
  26. package/dist/src/custom-features/focus-rows/index.d.ts +1 -1
  27. package/dist/src/custom-features/focus-rows/types.d.ts +1 -2
  28. package/dist/src/custom-features/order-columns/OrderColumnsFeature.d.ts +1 -2
  29. package/dist/src/custom-features/order-columns/index.d.ts +1 -1
  30. package/dist/src/custom-features/order-columns/types.d.ts +1 -2
  31. package/dist/src/custom-features/order-columns/usePersistColumnOrder.d.ts +1 -2
  32. package/dist/src/helpers/cn.d.ts +1 -2
  33. package/dist/src/helpers/getTableHeaderStyle.d.ts +1 -2
  34. package/dist/src/helpers/injectColumns.d.ts +1 -2
  35. package/dist/src/hooks/useStyledTable.d.ts +2 -3
  36. package/dist/src/index.d.ts +4 -4
  37. package/dist/src/shared-components/CheckIcon.d.ts +2 -3
  38. package/dist/src/shared-components/ChevronDownIcon.d.ts +2 -3
  39. package/dist/src/shared-components/ChevronLeftIcon.d.ts +2 -3
  40. package/dist/src/shared-components/ChevronRightIcon.d.ts +2 -3
  41. package/dist/src/shared-components/ChevronUpIcon.d.ts +2 -3
  42. package/dist/src/shared-components/CircleWarningOutlineIcon.d.ts +2 -3
  43. package/dist/src/shared-components/DotsHorizontalIcon.d.ts +2 -3
  44. package/dist/src/shared-components/DotsVerticalIcon.d.ts +2 -3
  45. package/dist/src/shared-components/DropDownIcon.d.ts +2 -3
  46. package/dist/src/shared-components/DropUpIcon.d.ts +2 -3
  47. package/dist/src/shared-components/FilterIcon.d.ts +2 -3
  48. package/dist/src/shared-components/LoadingIcon.d.ts +2 -3
  49. package/dist/src/shared-components/PinIcon.d.ts +2 -3
  50. package/dist/src/shared-components/StyledCheckbox.d.ts +5 -6
  51. package/dist/src/shared-components/StyledMenuItem.d.ts +2 -3
  52. package/dist/src/shared-components/button/StyledButton.d.ts +2 -3
  53. package/dist/src/shared-components/button/index.d.ts +1 -1
  54. package/dist/src/shared-components/menu-item/index.d.ts +2 -3
  55. package/dist/src/shared-components/tooltip/index.d.ts +2 -3
  56. package/dist/src/types.d.ts +7 -8
  57. package/dist/style.css +1 -1
  58. package/dist/tailwind.config.d.ts +22 -32
  59. package/dist/vite.config.d.ts +1 -1
  60. package/package.json +4 -2
@@ -1,5 +1,4 @@
1
- import { FunctionComponent, PropsWithChildren } from '../../react';
2
-
1
+ import { type FunctionComponent, type PropsWithChildren } from 'react';
3
2
  interface RootContextType {
4
3
  enableResizingFlag: () => void;
5
4
  disableResizingFlag: () => void;
@@ -1,3 +1,2 @@
1
- import { TableFeature } from '../../../@tanstack/react-table';
2
-
1
+ import { type TableFeature } from '@tanstack/react-table';
3
2
  export declare const ExpandedRowsFeature: TableFeature;
@@ -1,2 +1,2 @@
1
- export * from '../../../types';
2
- export * from '../../../ExpandRowsFeature';
1
+ export * from './types';
2
+ export * from './ExpandRowsFeature';
@@ -1,5 +1,4 @@
1
- import { OnChangeFn, Updater } from '../../../@tanstack/react-table';
2
-
1
+ import type { OnChangeFn, Updater } from '@tanstack/react-table';
3
2
  export interface ExpandedRowsTableState {
4
3
  expandedRows: Set<string>;
5
4
  }
@@ -1,3 +1,2 @@
1
- import { TableFeature } from '../../../@tanstack/react-table';
2
-
1
+ import { type TableFeature } from '@tanstack/react-table';
3
2
  export declare const FocusedRowsFeature: TableFeature;
@@ -1 +1 @@
1
- export * from '../../../types';
1
+ export * from './types';
@@ -1,5 +1,4 @@
1
- import { OnChangeFn, Updater } from '../../../@tanstack/react-table';
2
-
1
+ import type { OnChangeFn, Updater } from '@tanstack/react-table';
3
2
  export interface FocusedRowsTableState {
4
3
  focusedRow: string | null;
5
4
  }
@@ -1,3 +1,2 @@
1
- import { TableFeature } from '../../../@tanstack/react-table';
2
-
1
+ import { type TableFeature } from '@tanstack/react-table';
3
2
  export declare const OrderColumnsFeature: TableFeature;
@@ -1 +1 @@
1
- export * from '../../../types';
1
+ export * from './types';
@@ -1,5 +1,4 @@
1
- import { ColumnOrderState, OnChangeFn } from '../../../@tanstack/react-table';
2
-
1
+ import type { ColumnOrderState, OnChangeFn } from '@tanstack/react-table';
3
2
  export interface OrderedColumnsTableState {
4
3
  columnOrder: ColumnOrderState;
5
4
  }
@@ -1,3 +1,2 @@
1
- import { Table } from '../../../@tanstack/react-table';
2
-
1
+ import type { Table } from '@tanstack/react-table';
3
2
  export declare function usePersistColumnOrder<TData = unknown>(table: Table<TData>, key?: string | null): void;
@@ -1,3 +1,2 @@
1
- import { ClassValue } from '../../clsx';
2
-
1
+ import { type ClassValue } from 'clsx';
3
2
  export declare function cn(...inputs: ClassValue[]): string;
@@ -1,5 +1,4 @@
1
- import { Header } from '../../@tanstack/react-table';
2
-
1
+ import type { Header } from '@tanstack/react-table';
3
2
  export declare const getTableHeaderStyle: <TData>(props: {
4
3
  enableResizing: boolean;
5
4
  header: Header<TData, unknown>;
@@ -1,5 +1,4 @@
1
- import { StyledTableProps } from '../../../types';
2
-
1
+ import { type StyledTableProps } from '../types';
3
2
  export declare const injectColumns: <TData extends {
4
3
  id: string | number;
5
4
  }, TCustomData = Record<string, unknown>>(props: StyledTableProps<TData, TCustomData>) => void;
@@ -1,7 +1,6 @@
1
- import { StyledTableProps } from '../../../types';
2
-
1
+ import { type StyledTableProps } from '../types';
3
2
  export declare const useStyledTable: <TData extends {
4
3
  id: string | number;
5
4
  }, TCustomData = Record<string, unknown>>(props: StyledTableProps<TData, TCustomData>) => {
6
- table: import('../../@tanstack/react-table').Table<TData>;
5
+ table: import("@tanstack/react-table").Table<TData>;
7
6
  };
@@ -1,4 +1,4 @@
1
- export * from '../types';
2
- export * from '../components/StyledTableIndex';
3
- export { RowDragHandleCell } from '../components/columns/dndHandleColumn';
4
- export { createColumnHelper, type Table, type Row, type ColumnDef, type CellContext } from '../@tanstack/react-table';
1
+ export * from './types';
2
+ export * from './components/StyledTableIndex';
3
+ export { RowDragHandleCell } from './components/columns/dndHandleColumn';
4
+ export { createColumnHelper, type Table, type Row, type ColumnDef, type CellContext } from '@tanstack/react-table';
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function CheckIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function CheckIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function ChevronDownIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function ChevronDownIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function ChevronLeftIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function ChevronLeftIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function ChevronRightIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function ChevronRightIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function ChevronUpIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function ChevronUpIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function CircleWarningOutlineIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function CircleWarningOutlineIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function DotsHorizontalIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function DotsHorizontalIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function DotsVerticalIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function DotsVerticalIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function DropDownIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function DropDownIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function DropUpIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function DropUpIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { SVGProps } from '../../react';
2
-
3
- export declare function FilterIcon(props: SVGProps<SVGSVGElement>): import("node_modules/@types/react").JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function FilterIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function LoadingIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function LoadingIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React, SVGProps } from '../../react';
2
-
3
- export declare function PinIcon(props: SVGProps<SVGSVGElement>): React.JSX.Element;
1
+ import type { SVGProps } from 'react';
2
+ export declare function PinIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -1,6 +1,5 @@
1
- import { default as React, SVGProps } from '../../react';
2
- import { Checkbox } from '../../@base-ui/react/checkbox';
3
-
1
+ import React, { type SVGProps } from 'react';
2
+ import { Checkbox } from '@base-ui/react/checkbox';
4
3
  type StyledCheckboxProps = {
5
4
  dataTest: string;
6
5
  size?: 'small' | 'medium';
@@ -12,8 +11,8 @@ type StyledCheckboxProps = {
12
11
  onChange?: (event: React.ChangeEvent<HTMLInputElement>, checked: boolean) => void;
13
12
  } & Omit<React.ComponentProps<typeof Checkbox.Root>, 'children'>;
14
13
  export declare const IndeterminateIcon: ({ className }: {
15
- className?: string;
16
- }) => React.JSX.Element;
17
- export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
14
+ className?: string | undefined;
15
+ }) => JSX.Element;
16
+ export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
18
17
  export declare const StyledCheckbox: React.FC<StyledCheckboxProps>;
19
18
  export {};
@@ -1,3 +1,2 @@
1
- import { MenuItemProps } from '../../@mui/material';
2
-
3
- export declare const StyledMenuItem: (props: MenuItemProps) => import("node_modules/@types/react").JSX.Element;
1
+ import { type MenuItemProps } from '@mui/material';
2
+ export declare const StyledMenuItem: (props: MenuItemProps) => JSX.Element;
@@ -1,5 +1,4 @@
1
- import { default as React, ReactNode } from '../../../react';
2
-
1
+ import React, { type ReactNode } from 'react';
3
2
  export type StyledButtonType = 'contained' | 'outlined' | 'text' | 'textGray';
4
3
  type commonProps = {
5
4
  refLink?: React.Ref<HTMLButtonElement>;
@@ -37,5 +36,5 @@ export type StyledButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> &
37
36
  * @param refLink - ref to component
38
37
  * @param dataTest - data-test tag
39
38
  */
40
- export declare const StyledButton: ({ variant, className, size, children, refLink, startIcon, endIcon, dataTest, error, ...otherProps }: StyledButtonProps) => React.JSX.Element;
39
+ export declare const StyledButton: ({ variant, className, size, children, refLink, startIcon, endIcon, dataTest, error, ...otherProps }: StyledButtonProps) => JSX.Element;
41
40
  export {};
@@ -1 +1 @@
1
- export * from '../../../StyledButton';
1
+ export * from './StyledButton';
@@ -1,3 +1,2 @@
1
- import { MenuItemProps } from '../../../@mui/material';
2
-
3
- export declare const StyledMenuItem: (props: MenuItemProps) => import("node_modules/@types/react").JSX.Element;
1
+ import type { MenuItemProps } from '@mui/material';
2
+ export declare const StyledMenuItem: (props: MenuItemProps) => JSX.Element;
@@ -1,3 +1,2 @@
1
- import { TooltipProps } from '../../../@mui/material';
2
-
3
- export declare const StyledTooltip: (props: TooltipProps) => import("node_modules/@types/react").JSX.Element;
1
+ import { type TooltipProps } from '@mui/material';
2
+ export declare const StyledTooltip: (props: TooltipProps) => JSX.Element;
@@ -1,11 +1,10 @@
1
- import { ColumnPinningColumnDef, ColumnSizingColumnDef, GroupingColumnDef, RowData, SortingColumnDef, VisibilityColumnDef, AccessorFn, ColumnDefTemplate, CellContext, ColumnMeta, HeaderContext, Row, TableOptions, Table, ColumnDef } from '../@tanstack/react-table';
2
- import { CSSProperties, MouseEvent, MutableRefObject, ReactElement, ReactNode } from '../react';
3
- import { ExpandedRow, ExpandedRowsInstance, ExpandedRowsOptions, ExpandedRowsTableState } from '../custom-features/expand-rows';
4
- import { TooltipProps } from '../@mui/material';
5
- import { FocusedRowsOptions, FocusedRowsTableState, FocusedRow, FocusedRowsInstance } from '../custom-features/focus-rows';
6
- import { OrderedColumnsOptions, OrderedColumnsTableState } from '../custom-features/order-columns';
7
-
8
- export type * from '../@tanstack/react-table';
1
+ import type { ColumnPinningColumnDef, ColumnSizingColumnDef, GroupingColumnDef, RowData, SortingColumnDef, VisibilityColumnDef, AccessorFn, ColumnDefTemplate, CellContext, ColumnMeta, HeaderContext, Row, TableOptions, Table, ColumnDef } from '@tanstack/react-table';
2
+ export type * from '@tanstack/react-table';
3
+ import type { CSSProperties, MouseEvent, MutableRefObject, ReactElement, ReactNode } from 'react';
4
+ import type { ExpandedRow, ExpandedRowsInstance, ExpandedRowsOptions, ExpandedRowsTableState } from './custom-features/expand-rows';
5
+ import type { TooltipProps } from '@mui/material';
6
+ import type { FocusedRowsOptions, FocusedRowsTableState, FocusedRow, FocusedRowsInstance } from './custom-features/focus-rows';
7
+ import type { OrderedColumnsOptions, OrderedColumnsTableState } from './custom-features/order-columns';
9
8
  declare module '@tanstack/react-table' {
10
9
  interface TableState extends ExpandedRowsTableState, FocusedRowsTableState, OrderedColumnsTableState {
11
10
  }
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- ._CheckboxWrapper_k4bh3_1{display:flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;cursor:pointer;background:transparent;border:none}._CheckboxWrapper_k4bh3_1._size-small_k4bh3_11{width:38px;height:38px}._CheckboxWrapper_k4bh3_1._size-medium_k4bh3_15{width:42px;height:42px}._CheckboxWrapper_k4bh3_1[data-disabled]{cursor:default;pointer-events:none}._CheckboxWrapper_k4bh3_1:is([data-checked],[data-indeterminate]) ._Checkbox_k4bh3_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_k4bh3_1[data-unchecked] ._Checkbox_k4bh3_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-500)}._CheckboxWrapper_k4bh3_1[data-disabled][data-unchecked] ._Checkbox_k4bh3_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-200)}._CheckboxWrapper_k4bh3_1[data-disabled]:is([data-checked],[data-indeterminate]) ._Checkbox_k4bh3_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_k4bh3_1:focus-visible{outline:none}._CheckboxWrapper_k4bh3_1._ReadOnly_k4bh3_45{pointer-events:none;cursor:default}._CheckboxWrapper_k4bh3_1._ReadOnly_k4bh3_45 ._Checkbox_k4bh3_1{background-color:#fff;border:var(--cb-border-w) solid var(--colors-delta-500);--cb-border-w: 2px}._CheckboxWrapper_k4bh3_1._ReadOnly_k4bh3_45 ._Checkbox_k4bh3_1 ._Indicator_k4bh3_54{color:var(--colors-delta-500)}._HideWrapper_k4bh3_58{width:auto;height:auto;padding:0;overflow:visible}._CheckboxHover_k4bh3_65:after,._CheckboxRippleContainer_k4bh3_65{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0}._CheckboxRippleContainer_k4bh3_65{overflow:hidden;border-radius:50%}._CheckboxRipple_k4bh3_65{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_k4bh3_1 .4s ease-out forwards;z-index:0}@keyframes _ripple_k4bh3_1{to{transform:translate(-50%,-50%) scale(1);opacity:.025}}._CheckboxHover_k4bh3_65: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_k4bh3_65:hover:after{opacity:.07;transform:translate(-50%,-50%) scale(1)}._CheckboxHover_k4bh3_65._size-small_k4bh3_11:after{width:38px;height:38px}._Checkbox_k4bh3_1{position:relative;overflow:visible;padding:0;box-sizing:border-box;--cb-border-w: 2px;border-radius:2px;width:18px;height:18px}._Checkbox_k4bh3_1._size-small_k4bh3_11{border-radius:2px;width:15px;height:15px}._CheckboxWrapper_k4bh3_1:focus-visible ._Checkbox_k4bh3_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_k4bh3_54{display:flex;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;z-index:1;position:relative;pointer-events:none}._asma-core-ui-button_17pcg_1._contained_17pcg_6._common_17pcg_6{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_17pcg_1._contained_17pcg_6._common_17pcg_6: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_17pcg_1._contained_17pcg_6._common_17pcg_6: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_17pcg_1._contained_17pcg_6._common_17pcg_6: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_17pcg_1._contained_17pcg_6._common_17pcg_6:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._contained_17pcg_6._common_17pcg_6: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_17pcg_1._contained_17pcg_6._error_17pcg_68{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_17pcg_1._contained_17pcg_6._error_17pcg_68: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_17pcg_1._contained_17pcg_6._error_17pcg_68: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_17pcg_1._contained_17pcg_6._error_17pcg_68: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_17pcg_1._contained_17pcg_6._error_17pcg_68:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._contained_17pcg_6._error_17pcg_68: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_17pcg_1._outlined_17pcg_130._common_17pcg_6{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_17pcg_1._outlined_17pcg_130._common_17pcg_6: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_17pcg_1._outlined_17pcg_130._common_17pcg_6: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_17pcg_1._outlined_17pcg_130._common_17pcg_6: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_17pcg_1._outlined_17pcg_130._common_17pcg_6:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._outlined_17pcg_130._common_17pcg_6: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_17pcg_1._outlined_17pcg_130._error_17pcg_68{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_17pcg_1._outlined_17pcg_130._error_17pcg_68: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_17pcg_1._outlined_17pcg_130._error_17pcg_68: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_17pcg_1._outlined_17pcg_130._error_17pcg_68: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_17pcg_1._outlined_17pcg_130._error_17pcg_68:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._outlined_17pcg_130._error_17pcg_68: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_17pcg_1._text_17pcg_254._common_17pcg_6{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_17pcg_1._text_17pcg_254._common_17pcg_6: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_17pcg_1._text_17pcg_254._common_17pcg_6: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_17pcg_1._text_17pcg_254._common_17pcg_6: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_17pcg_1._text_17pcg_254._common_17pcg_6:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._text_17pcg_254._common_17pcg_6: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_17pcg_1._text_17pcg_254._error_17pcg_68{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_17pcg_1._text_17pcg_254._error_17pcg_68: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_17pcg_1._text_17pcg_254._error_17pcg_68: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_17pcg_1._text_17pcg_254._error_17pcg_68: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_17pcg_1._text_17pcg_254._error_17pcg_68:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._text_17pcg_254._error_17pcg_68: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_17pcg_1._textGray_17pcg_378._common_17pcg_6{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_17pcg_1._textGray_17pcg_378._common_17pcg_6: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_17pcg_1._textGray_17pcg_378._common_17pcg_6: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_17pcg_1._textGray_17pcg_378._common_17pcg_6: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_17pcg_1._textGray_17pcg_378._common_17pcg_6:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._textGray_17pcg_378._common_17pcg_6: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_17pcg_1{border-color:transparent;border-width:1px;border-style:solid}._asma-core-ui-button_17pcg_1._textWhite_17pcg_440._common_17pcg_6{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_17pcg_1._textWhite_17pcg_440._common_17pcg_6: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_17pcg_1._textWhite_17pcg_440._common_17pcg_6: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_17pcg_1._textWhite_17pcg_440._common_17pcg_6: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_17pcg_1._textWhite_17pcg_440._common_17pcg_6:focus._asma-core-ui-button_17pcg_1._contained_17pcg_6{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_17pcg_1._textWhite_17pcg_440._common_17pcg_6: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_17pcg_1._medium_17pcg_48{height:38px;padding-left:4px;padding-right:4px}._asma-core-ui-button_17pcg_1._small_17pcg_53{height:32px;padding-left:4px;padding-right:4px}._asma-core-ui-button_17pcg_1._large_17pcg_58{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_1r9dx_1 *,._asma-ui-table-styled-table_1r9dx_1 *:after,._asma-ui-table-styled-table_1r9dx_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_1r9dx_1{isolation:isolate}._asma-ui-table-styled-table_1r9dx_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_1r9dx_1{width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper_1r9dx_18{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_1r9dx_1 ._table-shell_1r9dx_25{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper--no-rows_1r9dx_31{min-height:130px}._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper--proxy_1r9dx_34,._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper--proxy-bottom_1r9dx_35{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper-fetching_1r9dx_45{overflow:hidden}._asma-ui-table-styled-table_1r9dx_1 ._table-scroll_1r9dx_48{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_1r9dx_1 ._table-x--fill-height_1r9dx_57{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_1r9dx_1 ._table-x_1r9dx_57{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_1r9dx_1 ._table-x_1r9dx_57::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_1r9dx_1 ._table-header--sticky_1r9dx_72{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_1r9dx_1 ._table-hscroll_1r9dx_77{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_1r9dx_1 ._table-hscroll__content_1r9dx_87{height:1px}._asma-ui-table-styled-table_1r9dx_1 ._no-rows-overlay-container_1r9dx_90{position:absolute;right:0;bottom:0;left:0;display:grid;place-items:center;pointer-events:none;z-index:5;top:32px}._asma-ui-table-styled-table_1r9dx_1 ._styled-table_1r9dx_99{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_1r9dx_1 ._styled-table_1r9dx_99 ._tbody_1r9dx_108{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_1r9dx_1 ._loading-icon_1r9dx_113{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120+._t-row_1r9dx_120 ._t-cell_1r9dx_120{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120{margin-top:1px;display:table-row}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:hover,._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:hover ._action-cell_1r9dx_130{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:hover ._fixed-cell_1r9dx_134{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:focus ._action-cell_1r9dx_130{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:focus ._fixed-cell_1r9dx_134{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120:focus-visible{outline:none}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120{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_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120:not(._expanded_row_1r9dx_165){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120:not(._expanded_row_1r9dx_165) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120._selected_1r9dx_183{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120._single-selection_1r9dx_186{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_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120._single-selection_1r9dx_186: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_1r9dx_1 ._t-row_1r9dx_120 ._t-cell_1r9dx_120._single-selection_1r9dx_186: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_1r9dx_1 ._t-row_1r9dx_120 ._action-cell_1r9dx_130{height:100%;position:sticky;right:-1px;z-index:1}@media (min-width: 743px){._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._action-cell_1r9dx_130._shadowed_1r9dx_203{box-shadow:-15px 0 15px #0000001a}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._action-cell_1r9dx_130._shadowed_1r9dx_203._single-selection_1r9dx_186{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_1r9dx_1 ._t-row_1r9dx_120 ._action-cell_1r9dx_130._shadowed_1r9dx_203._single-selection_1r9dx_186: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_1r9dx_1 ._t-row_1r9dx_120 ._fixed-cell_1r9dx_134{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._fixed-cell_1r9dx_134{position:sticky;left:0;z-index:1}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._fixed-cell_1r9dx_134._shadowed_1r9dx_203{box-shadow:15px 0 15px #0000001a}._asma-ui-table-styled-table_1r9dx_1 ._t-row_1r9dx_120 ._fixed-cell_1r9dx_134._shadowed_1r9dx_203._single-selection_1r9dx_186{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_1r9dx_1 ._t-row_1r9dx_120._is-loading_1r9dx_229 ._t-cell_1r9dx_120{opacity:.5}._asma-ui-table-styled-table_1r9dx_1 ._action-cell-default-background_1r9dx_232,._asma-ui-table-styled-table_1r9dx_1 ._fixed-cell-default-background_1r9dx_235{background-color:#fff}._asma-ui-table-styled-table_1r9dx_1 ._sortable-column_1r9dx_238{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_1r9dx_1 ._resizer_1r9dx_242{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_1r9dx_1 ._resizer_1r9dx_242._isResizing_1r9dx_254{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_1r9dx_1 ._resizer_1r9dx_242{opacity:0}._asma-ui-table-styled-table_1r9dx_1 *:hover>._resizer_1r9dx_242{opacity:1}}._asma-ui-table-styled-table_1r9dx_1 ._hide-table-header_1r9dx_266{height:0px;opacity:0}._asma-ui-table-styled-table_1r9dx_1 ._show-table-header_1r9dx_270{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_1r9dx_1 ._table-header_1r9dx_72{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_1r9dx_1 ._table-header_1r9dx_72 ._t-cell_1r9dx_120{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_1r9dx_1 ._table-header_1r9dx_72 ._t-cell_1r9dx_120._hide-header_1r9dx_295{border:none}._asma-ui-table-styled-table_1r9dx_1 ._table-header_1r9dx_72 ._t-cell_1r9dx_120._t-cell__actions_1r9dx_298{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10)}@media (min-width: 743px){._asma-ui-table-styled-table_1r9dx_1 ._table-header_1r9dx_72 ._t-cell_1r9dx_120._t-cell__actions_1r9dx_298._shadowed_1r9dx_203{box-shadow:-15px 0 15px #0000001a}._asma-ui-table-styled-table_1r9dx_1 ._table-header_1r9dx_72 ._t-cell_1r9dx_120._t-cell__fixed_1r9dx_311{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:15px 0 15px #0000001a}}._asma-ui-table-styled-table_1r9dx_1 ._table-header_1r9dx_72 ._sort-icon_1r9dx_319{color:var(--colors-delta-800)}._asma-ui-table-styled-table_1r9dx_1 ._table-footer--sticky_1r9dx_322{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_1r9dx_1 ._table-footer--inline_1r9dx_333{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_1r9dx_1 ._table-bottom_1r9dx_344{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper--proxy_1r9dx_34._table-wrapper--no-rows_1r9dx_31,._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper--proxy-bottom_1r9dx_35._table-wrapper--no-rows_1r9dx_31,._asma-ui-table-styled-table_1r9dx_1 ._table-wrapper_1r9dx_18._table-wrapper--no-rows_1r9dx_31{min-height:130px}._asma-ui-table-styled-table_1r9dx_1 ._table-bottom--sticky_1r9dx_358{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_k4bh3_1{display:flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;cursor:pointer;background:transparent;border:none}._CheckboxWrapper_k4bh3_1._size-small_k4bh3_11{width:38px;height:38px}._CheckboxWrapper_k4bh3_1._size-medium_k4bh3_15{width:42px;height:42px}._CheckboxWrapper_k4bh3_1[data-disabled]{cursor:default;pointer-events:none}._CheckboxWrapper_k4bh3_1:is([data-checked],[data-indeterminate]) ._Checkbox_k4bh3_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_k4bh3_1[data-unchecked] ._Checkbox_k4bh3_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-500)}._CheckboxWrapper_k4bh3_1[data-disabled][data-unchecked] ._Checkbox_k4bh3_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-200)}._CheckboxWrapper_k4bh3_1[data-disabled]:is([data-checked],[data-indeterminate]) ._Checkbox_k4bh3_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_k4bh3_1:focus-visible{outline:none}._CheckboxWrapper_k4bh3_1._ReadOnly_k4bh3_45{pointer-events:none;cursor:default}._CheckboxWrapper_k4bh3_1._ReadOnly_k4bh3_45 ._Checkbox_k4bh3_1{background-color:#fff;border:var(--cb-border-w) solid var(--colors-delta-500);--cb-border-w: 2px}._CheckboxWrapper_k4bh3_1._ReadOnly_k4bh3_45 ._Checkbox_k4bh3_1 ._Indicator_k4bh3_54{color:var(--colors-delta-500)}._HideWrapper_k4bh3_58{width:auto;height:auto;padding:0;overflow:visible}._CheckboxHover_k4bh3_65:after,._CheckboxRippleContainer_k4bh3_65{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0}._CheckboxRippleContainer_k4bh3_65{overflow:hidden;border-radius:50%}._CheckboxRipple_k4bh3_65{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_k4bh3_1 .4s ease-out forwards;z-index:0}@keyframes _ripple_k4bh3_1{to{transform:translate(-50%,-50%) scale(1);opacity:.025}}._CheckboxHover_k4bh3_65: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_k4bh3_65:hover:after{opacity:.07;transform:translate(-50%,-50%) scale(1)}._CheckboxHover_k4bh3_65._size-small_k4bh3_11:after{width:38px;height:38px}._Checkbox_k4bh3_1{position:relative;overflow:visible;padding:0;box-sizing:border-box;--cb-border-w: 2px;border-radius:2px;width:18px;height:18px}._Checkbox_k4bh3_1._size-small_k4bh3_11{border-radius:2px;width:15px;height:15px}._CheckboxWrapper_k4bh3_1:focus-visible ._Checkbox_k4bh3_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_k4bh3_54{display:flex;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;z-index:1;position:relative;pointer-events:none}._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)}
@@ -6,59 +6,53 @@ declare const _default: {
6
6
  };
7
7
  extend: {
8
8
  screens: {
9
- [n: number]: string;
9
+ [x: number]: string;
10
10
  length: number;
11
- toString(): string;
12
- toLocaleString(): string;
13
- toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
11
+ toString: (() => string) & (() => string);
12
+ toLocaleString: (() => string) & (() => string);
14
13
  pop(): string | undefined;
15
14
  push(...items: string[]): number;
16
15
  concat(...items: ConcatArray<string>[]): string[];
17
16
  concat(...items: (string | ConcatArray<string>)[]): string[];
18
- join(separator?: string): string;
17
+ join(separator?: string | undefined): string;
19
18
  reverse(): string[];
20
19
  shift(): string | undefined;
21
- slice(start?: number, end?: number): string[];
20
+ slice(start?: number | undefined, end?: number | undefined): string[];
22
21
  sort(compareFn?: ((a: string, b: string) => number) | undefined): string[] & Record<"sm" | "md" | "lg" | "xl" | "2xl", string>;
23
- splice(start: number, deleteCount?: number): string[];
22
+ splice(start: number, deleteCount?: number | undefined): string[];
24
23
  splice(start: number, deleteCount: number, ...items: string[]): string[];
25
24
  unshift(...items: string[]): number;
26
- indexOf(searchElement: string, fromIndex?: number): number;
27
- lastIndexOf(searchElement: string, fromIndex?: number): number;
25
+ indexOf(searchElement: string, fromIndex?: number | undefined): number;
26
+ lastIndexOf(searchElement: string, fromIndex?: number | undefined): number;
28
27
  every<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
29
28
  every(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
30
29
  some(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
31
30
  forEach(callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any): void;
32
31
  map<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any): U[];
33
- filter<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S[];
32
+ filter<S_1 extends string>(predicate: (value: string, index: number, array: string[]) => value is S_1, thisArg?: any): S_1[];
34
33
  filter(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
35
34
  reduce(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
36
35
  reduce(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
37
- reduce<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
36
+ reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: string[]) => U_1, initialValue: U_1): U_1;
38
37
  reduceRight(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
39
38
  reduceRight(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
40
- reduceRight<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
41
- find<S extends string>(predicate: (value: string, index: number, obj: string[]) => value is S, thisArg?: any): S | undefined;
39
+ reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: string[]) => U_2, initialValue: U_2): U_2;
40
+ find<S_2 extends string>(predicate: (value: string, index: number, obj: string[]) => value is S_2, thisArg?: any): S_2 | undefined;
42
41
  find(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
43
42
  findIndex(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): number;
44
- fill(value: string, start?: number, end?: number): string[] & Record<"sm" | "md" | "lg" | "xl" | "2xl", string>;
45
- copyWithin(target: number, start: number, end?: number): string[] & Record<"sm" | "md" | "lg" | "xl" | "2xl", string>;
46
- entries(): ArrayIterator<[number, string]>;
47
- keys(): ArrayIterator<number>;
48
- values(): ArrayIterator<string>;
49
- includes(searchElement: string, fromIndex?: number): boolean;
50
- flatMap<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[];
43
+ fill(value: string, start?: number | undefined, end?: number | undefined): string[] & Record<"sm" | "md" | "lg" | "xl" | "2xl", string>;
44
+ copyWithin(target: number, start: number, end?: number | undefined): string[] & Record<"sm" | "md" | "lg" | "xl" | "2xl", string>;
45
+ entries(): IterableIterator<[number, string]>;
46
+ keys(): IterableIterator<number>;
47
+ values(): IterableIterator<string>;
48
+ includes(searchElement: string, fromIndex?: number | undefined): boolean;
49
+ flatMap<U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
51
50
  flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
52
51
  at(index: number): string | undefined;
53
- findLast<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
52
+ findLast<S_3 extends string>(predicate: (value: string, index: number, array: string[]) => value is S_3, thisArg?: any): S_3 | undefined;
54
53
  findLast(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
55
54
  findLastIndex(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): number;
56
- toReversed(): string[];
57
- toSorted(compareFn?: ((a: string, b: string) => number) | undefined): string[];
58
- toSpliced(start: number, deleteCount: number, ...items: string[]): string[];
59
- toSpliced(start: number, deleteCount?: number): string[];
60
- with(index: number, value: string): string[];
61
- [Symbol.iterator](): ArrayIterator<string>;
55
+ [Symbol.iterator](): IterableIterator<string>;
62
56
  [Symbol.unscopables]: {
63
57
  [x: number]: boolean | undefined;
64
58
  length?: boolean | undefined;
@@ -96,10 +90,6 @@ declare const _default: {
96
90
  at?: boolean | undefined;
97
91
  findLast?: boolean | undefined;
98
92
  findLastIndex?: boolean | undefined;
99
- toReversed?: boolean | undefined;
100
- toSorted?: boolean | undefined;
101
- toSpliced?: boolean | undefined;
102
- with?: boolean | undefined;
103
93
  [Symbol.iterator]?: boolean | undefined;
104
94
  readonly [Symbol.unscopables]?: boolean | undefined;
105
95
  };
@@ -109,7 +99,7 @@ declare const _default: {
109
99
  xl: string;
110
100
  "2xl": string;
111
101
  } | {
112
- [x: string]: string | import('./node_modules/tailwindcss/types/config').Screen | import('./node_modules/tailwindcss/types/config').Screen[];
102
+ [x: string]: string | import("tailwindcss/types/config").Screen | import("tailwindcss/types/config").Screen[];
113
103
  sm: string;
114
104
  md: string;
115
105
  lg: string;
@@ -1,2 +1,2 @@
1
- declare const _default: import('./node_modules/vite/dist/node').UserConfig;
1
+ declare const _default: import("vite").UserConfigExport;
2
2
  export default _default;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.0.127",
6
+ "version": "1.0.129",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",
@@ -60,6 +60,7 @@
60
60
  "@tanstack/react-table": "^8.21.3",
61
61
  "clsx": "^1.2.1",
62
62
  "lodash-es": "^4.17.21",
63
+ "node": "18.17.0",
63
64
  "react": "^18.2.0",
64
65
  "react-dom": "^18.2.0"
65
66
  },
@@ -120,6 +121,7 @@
120
121
  "react-dom": "^18.*"
121
122
  },
122
123
  "resolutions": {
123
- "@types/node": "18.0.3"
124
+ "@types/node": "18.0.3",
125
+ "node": "18.17.0"
124
126
  }
125
127
  }