asma-ui-table 1.4.0 → 1.4.1

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.
@@ -8094,6 +8094,58 @@ const useStyledTable = (props) => {
8094
8094
  }, [pageSizeState, resolvedPageSize, storageKey]);
8095
8095
  return { table };
8096
8096
  };
8097
+ const tbody = "_tbody_1r2rd_115";
8098
+ const expanded_row = "_expanded_row_1r2rd_172";
8099
+ const selected = "_selected_1r2rd_190";
8100
+ const shadowed = "_shadowed_1r2rd_210";
8101
+ const resizer = "_resizer_1r2rd_243";
8102
+ const isResizing = "_isResizing_1r2rd_255";
8103
+ const style$3 = {
8104
+ "asma-ui-table-styled-table": "_asma-ui-table-styled-table_1r2rd_1",
8105
+ "table-wrapper": "_table-wrapper_1r2rd_22",
8106
+ "table-shell": "_table-shell_1r2rd_29",
8107
+ "table-wrapper--no-rows": "_table-wrapper--no-rows_1r2rd_35",
8108
+ "table-wrapper--proxy": "_table-wrapper--proxy_1r2rd_38",
8109
+ "table-wrapper--proxy-bottom": "_table-wrapper--proxy-bottom_1r2rd_39",
8110
+ "table-wrapper-fetching": "_table-wrapper-fetching_1r2rd_49",
8111
+ "table-scroll": "_table-scroll_1r2rd_52",
8112
+ "table-x--fill-height": "_table-x--fill-height_1r2rd_61",
8113
+ "table-x": "_table-x_1r2rd_61",
8114
+ "table-header--sticky": "_table-header--sticky_1r2rd_76",
8115
+ "table-hscroll": "_table-hscroll_1r2rd_81",
8116
+ "table-hscroll__content": "_table-hscroll__content_1r2rd_91",
8117
+ "no-rows-overlay-container": "_no-rows-overlay-container_1r2rd_94",
8118
+ "no-rows-overlay-content": "_no-rows-overlay-content_1r2rd_102",
8119
+ "styled-table": "_styled-table_1r2rd_106",
8120
+ tbody,
8121
+ "loading-icon": "_loading-icon_1r2rd_120",
8122
+ "t-row": "_t-row_1r2rd_127",
8123
+ "t-cell": "_t-cell_1r2rd_127",
8124
+ "action-cell": "_action-cell_1r2rd_137",
8125
+ "fixed-cell": "_fixed-cell_1r2rd_141",
8126
+ expanded_row,
8127
+ selected,
8128
+ "single-selection": "_single-selection_1r2rd_193",
8129
+ shadowed,
8130
+ "is-loading": "_is-loading_1r2rd_230",
8131
+ "action-cell-default-background": "_action-cell-default-background_1r2rd_233",
8132
+ "fixed-cell-default-background": "_fixed-cell-default-background_1r2rd_236",
8133
+ "sortable-column": "_sortable-column_1r2rd_239",
8134
+ resizer,
8135
+ isResizing,
8136
+ "hide-table-header": "_hide-table-header_1r2rd_267",
8137
+ "show-table-header": "_show-table-header_1r2rd_271",
8138
+ "table-header": "_table-header_1r2rd_76",
8139
+ "hide-header": "_hide-header_1r2rd_296",
8140
+ "t-cell__actions": "_t-cell__actions_1r2rd_299",
8141
+ "t-cell__fixed": "_t-cell__fixed_1r2rd_308",
8142
+ "sort-icon": "_sort-icon_1r2rd_316",
8143
+ "table-footer--sticky": "_table-footer--sticky_1r2rd_319",
8144
+ "table-footer--inline": "_table-footer--inline_1r2rd_330",
8145
+ "table-bottom": "_table-bottom_1r2rd_341",
8146
+ "table-bottom--sticky": "_table-bottom--sticky_1r2rd_355",
8147
+ "cursor-not-allowed": "_cursor-not-allowed_1r2rd_359"
8148
+ };
8097
8149
  const CheckboxWrapper = "_CheckboxWrapper_1b4zf_1";
8098
8150
  const Checkbox = "_Checkbox_1b4zf_1";
8099
8151
  const Indeterminate = "_Indeterminate_1b4zf_28";
@@ -10540,7 +10592,7 @@ function getStyleValue(themeMapping, transform, propValueFinal, userValue = prop
10540
10592
  }
10541
10593
  return value;
10542
10594
  }
10543
- function style$3(options) {
10595
+ function style$2(options) {
10544
10596
  const {
10545
10597
  prop,
10546
10598
  cssProperty = options.prop,
@@ -10688,12 +10740,12 @@ function resolveCssProperty(props, keys, prop, transformer) {
10688
10740
  const propValue = props[prop];
10689
10741
  return handleBreakpoints(props, propValue, styleFromPropValue);
10690
10742
  }
10691
- function style$2(props, keys) {
10743
+ function style$1(props, keys) {
10692
10744
  const transformer = createUnarySpacing(props.theme);
10693
10745
  return Object.keys(props).map((prop) => resolveCssProperty(props, keys, prop, transformer)).reduce(merge, {});
10694
10746
  }
10695
10747
  function margin(props) {
10696
- return style$2(props, marginKeys);
10748
+ return style$1(props, marginKeys);
10697
10749
  }
10698
10750
  margin.propTypes = process.env.NODE_ENV !== "production" ? marginKeys.reduce((obj, key) => {
10699
10751
  obj[key] = responsivePropType$1;
@@ -10701,7 +10753,7 @@ margin.propTypes = process.env.NODE_ENV !== "production" ? marginKeys.reduce((ob
10701
10753
  }, {}) : {};
10702
10754
  margin.filterProps = marginKeys;
10703
10755
  function padding(props) {
10704
- return style$2(props, paddingKeys);
10756
+ return style$1(props, paddingKeys);
10705
10757
  }
10706
10758
  padding.propTypes = process.env.NODE_ENV !== "production" ? paddingKeys.reduce((obj, key) => {
10707
10759
  obj[key] = responsivePropType$1;
@@ -10759,48 +10811,48 @@ function borderTransform(value) {
10759
10811
  }
10760
10812
  return `${value}px solid`;
10761
10813
  }
10762
- const border = style$3({
10814
+ const border = style$2({
10763
10815
  prop: "border",
10764
10816
  themeKey: "borders",
10765
10817
  transform: borderTransform
10766
10818
  });
10767
- const borderTop = style$3({
10819
+ const borderTop = style$2({
10768
10820
  prop: "borderTop",
10769
10821
  themeKey: "borders",
10770
10822
  transform: borderTransform
10771
10823
  });
10772
- const borderRight = style$3({
10824
+ const borderRight = style$2({
10773
10825
  prop: "borderRight",
10774
10826
  themeKey: "borders",
10775
10827
  transform: borderTransform
10776
10828
  });
10777
- const borderBottom = style$3({
10829
+ const borderBottom = style$2({
10778
10830
  prop: "borderBottom",
10779
10831
  themeKey: "borders",
10780
10832
  transform: borderTransform
10781
10833
  });
10782
- const borderLeft = style$3({
10834
+ const borderLeft = style$2({
10783
10835
  prop: "borderLeft",
10784
10836
  themeKey: "borders",
10785
10837
  transform: borderTransform
10786
10838
  });
10787
- const borderColor = style$3({
10839
+ const borderColor = style$2({
10788
10840
  prop: "borderColor",
10789
10841
  themeKey: "palette"
10790
10842
  });
10791
- const borderTopColor = style$3({
10843
+ const borderTopColor = style$2({
10792
10844
  prop: "borderTopColor",
10793
10845
  themeKey: "palette"
10794
10846
  });
10795
- const borderRightColor = style$3({
10847
+ const borderRightColor = style$2({
10796
10848
  prop: "borderRightColor",
10797
10849
  themeKey: "palette"
10798
10850
  });
10799
- const borderBottomColor = style$3({
10851
+ const borderBottomColor = style$2({
10800
10852
  prop: "borderBottomColor",
10801
10853
  themeKey: "palette"
10802
10854
  });
10803
- const borderLeftColor = style$3({
10855
+ const borderLeftColor = style$2({
10804
10856
  prop: "borderLeftColor",
10805
10857
  themeKey: "palette"
10806
10858
  });
@@ -10861,31 +10913,31 @@ rowGap.propTypes = process.env.NODE_ENV !== "production" ? {
10861
10913
  rowGap: responsivePropType$1
10862
10914
  } : {};
10863
10915
  rowGap.filterProps = ["rowGap"];
10864
- const gridColumn = style$3({
10916
+ const gridColumn = style$2({
10865
10917
  prop: "gridColumn"
10866
10918
  });
10867
- const gridRow = style$3({
10919
+ const gridRow = style$2({
10868
10920
  prop: "gridRow"
10869
10921
  });
10870
- const gridAutoFlow = style$3({
10922
+ const gridAutoFlow = style$2({
10871
10923
  prop: "gridAutoFlow"
10872
10924
  });
10873
- const gridAutoColumns = style$3({
10925
+ const gridAutoColumns = style$2({
10874
10926
  prop: "gridAutoColumns"
10875
10927
  });
10876
- const gridAutoRows = style$3({
10928
+ const gridAutoRows = style$2({
10877
10929
  prop: "gridAutoRows"
10878
10930
  });
10879
- const gridTemplateColumns = style$3({
10931
+ const gridTemplateColumns = style$2({
10880
10932
  prop: "gridTemplateColumns"
10881
10933
  });
10882
- const gridTemplateRows = style$3({
10934
+ const gridTemplateRows = style$2({
10883
10935
  prop: "gridTemplateRows"
10884
10936
  });
10885
- const gridTemplateAreas = style$3({
10937
+ const gridTemplateAreas = style$2({
10886
10938
  prop: "gridTemplateAreas"
10887
10939
  });
10888
- const gridArea = style$3({
10940
+ const gridArea = style$2({
10889
10941
  prop: "gridArea"
10890
10942
  });
10891
10943
  compose(gap, columnGap, rowGap, gridColumn, gridRow, gridAutoFlow, gridAutoColumns, gridAutoRows, gridTemplateColumns, gridTemplateRows, gridTemplateAreas, gridArea);
@@ -10895,18 +10947,18 @@ function paletteTransform(value, userValue) {
10895
10947
  }
10896
10948
  return value;
10897
10949
  }
10898
- const color = style$3({
10950
+ const color = style$2({
10899
10951
  prop: "color",
10900
10952
  themeKey: "palette",
10901
10953
  transform: paletteTransform
10902
10954
  });
10903
- const bgcolor = style$3({
10955
+ const bgcolor = style$2({
10904
10956
  prop: "bgcolor",
10905
10957
  cssProperty: "backgroundColor",
10906
10958
  themeKey: "palette",
10907
10959
  transform: paletteTransform
10908
10960
  });
10909
- const backgroundColor = style$3({
10961
+ const backgroundColor = style$2({
10910
10962
  prop: "backgroundColor",
10911
10963
  themeKey: "palette",
10912
10964
  transform: paletteTransform
@@ -10915,7 +10967,7 @@ compose(color, bgcolor, backgroundColor);
10915
10967
  function sizingTransform(value) {
10916
10968
  return value <= 1 && value !== 0 ? `${value * 100}%` : value;
10917
10969
  }
10918
- const width = style$3({
10970
+ const width = style$2({
10919
10971
  prop: "width",
10920
10972
  transform: sizingTransform
10921
10973
  });
@@ -10933,33 +10985,33 @@ const maxWidth = (props) => {
10933
10985
  return null;
10934
10986
  };
10935
10987
  maxWidth.filterProps = ["maxWidth"];
10936
- const minWidth = style$3({
10988
+ const minWidth = style$2({
10937
10989
  prop: "minWidth",
10938
10990
  transform: sizingTransform
10939
10991
  });
10940
- const height = style$3({
10992
+ const height = style$2({
10941
10993
  prop: "height",
10942
10994
  transform: sizingTransform
10943
10995
  });
10944
- const maxHeight = style$3({
10996
+ const maxHeight = style$2({
10945
10997
  prop: "maxHeight",
10946
10998
  transform: sizingTransform
10947
10999
  });
10948
- const minHeight = style$3({
11000
+ const minHeight = style$2({
10949
11001
  prop: "minHeight",
10950
11002
  transform: sizingTransform
10951
11003
  });
10952
- style$3({
11004
+ style$2({
10953
11005
  prop: "size",
10954
11006
  cssProperty: "width",
10955
11007
  transform: sizingTransform
10956
11008
  });
10957
- style$3({
11009
+ style$2({
10958
11010
  prop: "size",
10959
11011
  cssProperty: "height",
10960
11012
  transform: sizingTransform
10961
11013
  });
10962
- const boxSizing = style$3({
11014
+ const boxSizing = style$2({
10963
11015
  prop: "boxSizing"
10964
11016
  });
10965
11017
  compose(width, maxWidth, minWidth, height, maxHeight, minHeight, boxSizing);
@@ -12462,13 +12514,13 @@ function selectColumn(isFixed2, rowHeight) {
12462
12514
  type: "button",
12463
12515
  style: { height: rowHeight ? rowHeight : "auto" },
12464
12516
  className: "pl-2 flex w-full items-center justify-start m-0 p-0",
12465
- disabled,
12517
+ "aria-disabled": disabled,
12466
12518
  onClick: () => {
12467
12519
  if (disabled)
12468
12520
  return;
12469
12521
  cell.row.toggleSelected();
12470
12522
  },
12471
- children: /* @__PURE__ */ jsxRuntimeExports.jsx(StyledTooltip, { arrow: true, placement: "top-start", title: cell.row.getRowSelectionTooltip(), children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: disabled ? "cursor-not-allowed-red" : "", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
12523
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx(StyledTooltip, { arrow: true, placement: "top-start", title: cell.row.getRowSelectionTooltip(), children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: disabled ? style$3["cursor-not-allowed"] : void 0, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
12472
12524
  StyledCheckbox,
12473
12525
  {
12474
12526
  size: "small",
@@ -12581,7 +12633,7 @@ const outlined = "_outlined_gteum_141";
12581
12633
  const text = "_text_gteum_255";
12582
12634
  const textGray = "_textGray_gteum_369";
12583
12635
  const textWhite = "_textWhite_gteum_426";
12584
- const style$1 = {
12636
+ const style = {
12585
12637
  "asma-core-ui-button": "_asma-core-ui-button_gteum_1",
12586
12638
  contained,
12587
12639
  common,
@@ -12595,16 +12647,16 @@ const style$1 = {
12595
12647
  textWhite
12596
12648
  };
12597
12649
  const BtnStyles = {
12598
- contained: style$1["contained"],
12599
- outlined: style$1["outlined"],
12600
- text: style$1["text"],
12601
- textGray: style$1["textGray"],
12602
- textWhite: style$1["textWhite"],
12603
- large: style$1["large"],
12604
- small: style$1["small"],
12605
- medium: style$1["medium"],
12606
- error: style$1["error"],
12607
- common: style$1["common"]
12650
+ contained: style["contained"],
12651
+ outlined: style["outlined"],
12652
+ text: style["text"],
12653
+ textGray: style["textGray"],
12654
+ textWhite: style["textWhite"],
12655
+ large: style["large"],
12656
+ small: style["small"],
12657
+ medium: style["medium"],
12658
+ error: style["error"],
12659
+ common: style["common"]
12608
12660
  };
12609
12661
  const StyledButton = ({
12610
12662
  variant = "contained",
@@ -12625,7 +12677,7 @@ const StyledButton = ({
12625
12677
  {
12626
12678
  ...otherProps,
12627
12679
  className: clsx(
12628
- style$1["asma-core-ui-button"],
12680
+ style["asma-core-ui-button"],
12629
12681
  BtnStyles[variant],
12630
12682
  BtnStyles[color2],
12631
12683
  BtnStyles[size],
@@ -13166,57 +13218,6 @@ const injectColumns = (props) => {
13166
13218
  columns.unshift(selectColumn(isFixed2, rowHeight));
13167
13219
  }
13168
13220
  };
13169
- const tbody = "_tbody_cs6m8_115";
13170
- const expanded_row = "_expanded_row_cs6m8_172";
13171
- const selected = "_selected_cs6m8_190";
13172
- const shadowed = "_shadowed_cs6m8_210";
13173
- const resizer = "_resizer_cs6m8_243";
13174
- const isResizing = "_isResizing_cs6m8_255";
13175
- const style = {
13176
- "asma-ui-table-styled-table": "_asma-ui-table-styled-table_cs6m8_1",
13177
- "table-wrapper": "_table-wrapper_cs6m8_22",
13178
- "table-shell": "_table-shell_cs6m8_29",
13179
- "table-wrapper--no-rows": "_table-wrapper--no-rows_cs6m8_35",
13180
- "table-wrapper--proxy": "_table-wrapper--proxy_cs6m8_38",
13181
- "table-wrapper--proxy-bottom": "_table-wrapper--proxy-bottom_cs6m8_39",
13182
- "table-wrapper-fetching": "_table-wrapper-fetching_cs6m8_49",
13183
- "table-scroll": "_table-scroll_cs6m8_52",
13184
- "table-x--fill-height": "_table-x--fill-height_cs6m8_61",
13185
- "table-x": "_table-x_cs6m8_61",
13186
- "table-header--sticky": "_table-header--sticky_cs6m8_76",
13187
- "table-hscroll": "_table-hscroll_cs6m8_81",
13188
- "table-hscroll__content": "_table-hscroll__content_cs6m8_91",
13189
- "no-rows-overlay-container": "_no-rows-overlay-container_cs6m8_94",
13190
- "no-rows-overlay-content": "_no-rows-overlay-content_cs6m8_102",
13191
- "styled-table": "_styled-table_cs6m8_106",
13192
- tbody,
13193
- "loading-icon": "_loading-icon_cs6m8_120",
13194
- "t-row": "_t-row_cs6m8_127",
13195
- "t-cell": "_t-cell_cs6m8_127",
13196
- "action-cell": "_action-cell_cs6m8_137",
13197
- "fixed-cell": "_fixed-cell_cs6m8_141",
13198
- expanded_row,
13199
- selected,
13200
- "single-selection": "_single-selection_cs6m8_193",
13201
- shadowed,
13202
- "is-loading": "_is-loading_cs6m8_230",
13203
- "action-cell-default-background": "_action-cell-default-background_cs6m8_233",
13204
- "fixed-cell-default-background": "_fixed-cell-default-background_cs6m8_236",
13205
- "sortable-column": "_sortable-column_cs6m8_239",
13206
- resizer,
13207
- isResizing,
13208
- "hide-table-header": "_hide-table-header_cs6m8_267",
13209
- "show-table-header": "_show-table-header_cs6m8_271",
13210
- "table-header": "_table-header_cs6m8_76",
13211
- "hide-header": "_hide-header_cs6m8_296",
13212
- "t-cell__actions": "_t-cell__actions_cs6m8_299",
13213
- "t-cell__fixed": "_t-cell__fixed_cs6m8_308",
13214
- "sort-icon": "_sort-icon_cs6m8_316",
13215
- "table-footer--sticky": "_table-footer--sticky_cs6m8_319",
13216
- "table-footer--inline": "_table-footer--inline_cs6m8_330",
13217
- "table-bottom": "_table-bottom_cs6m8_341",
13218
- "table-bottom--sticky": "_table-bottom--sticky_cs6m8_355"
13219
- };
13220
13221
  function DropUpIcon(props) {
13221
13222
  return /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1rem", height: "1rem", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "m7 14l5-5l5 5z" }) });
13222
13223
  }
@@ -13294,12 +13295,12 @@ function TableHeaderCell({
13294
13295
  ref,
13295
13296
  colSpan: header.colSpan,
13296
13297
  className: clsx(
13297
- style["t-cell"],
13298
- hideHeader && style["hide-header"],
13298
+ style$3["t-cell"],
13299
+ hideHeader && style$3["hide-header"],
13299
13300
  // *
13300
13301
  // sticky actions
13301
- header.column.id === ACTIONS_COLUMN_ID && style["t-cell__actions"],
13302
- isFixed2 && style["t-cell__fixed"]
13302
+ header.column.id === ACTIONS_COLUMN_ID && style$3["t-cell__actions"],
13303
+ isFixed2 && style$3["t-cell__fixed"]
13303
13304
  ),
13304
13305
  style: {
13305
13306
  ...getTableHeaderStyle({ enableResizing, header, element: ref.current, tableWidth }),
@@ -13310,8 +13311,8 @@ function TableHeaderCell({
13310
13311
  {
13311
13312
  className: clsx(
13312
13313
  "flex items-center justify-left",
13313
- hideHeader ? style["hide-table-header"] : style["show-table-header"],
13314
- header.column.getCanSort() && style["sortable-column"],
13314
+ hideHeader ? style$3["hide-table-header"] : style$3["show-table-header"],
13315
+ header.column.getCanSort() && style$3["sortable-column"],
13315
13316
  header.column.columnDef.className
13316
13317
  ),
13317
13318
  onClick: (e) => {
@@ -13324,8 +13325,8 @@ function TableHeaderCell({
13324
13325
  children: [
13325
13326
  flexRender(header.column.columnDef.header, header.getContext()),
13326
13327
  {
13327
- asc: /* @__PURE__ */ jsxRuntimeExports.jsx(DropUpIcon, { className: style["sort-icon"] }),
13328
- desc: /* @__PURE__ */ jsxRuntimeExports.jsx(DropDownIcon, { className: style["sort-icon"] })
13328
+ asc: /* @__PURE__ */ jsxRuntimeExports.jsx(DropUpIcon, { className: style$3["sort-icon"] }),
13329
+ desc: /* @__PURE__ */ jsxRuntimeExports.jsx(DropDownIcon, { className: style$3["sort-icon"] })
13329
13330
  }[header.column.getIsSorted()] ?? null,
13330
13331
  tableCanResize && (!enableResizing ? header.id !== (lastColumn == null ? void 0 : lastColumn.id) : true) && header.column.getCanResize() && !INTERNAL_COLUMN_IDS.includes(header.column.id) && /* @__PURE__ */ jsxRuntimeExports.jsx(
13331
13332
  "div",
@@ -13350,7 +13351,7 @@ function TableHeaderCell({
13350
13351
  () => handleMouseUp({ styledTableProps, header })
13351
13352
  );
13352
13353
  },
13353
- className: `${style["resizer"]} ${header.column.getIsResizing() ? style["isResizing"] : ""}`
13354
+ className: `${style$3["resizer"]} ${header.column.getIsResizing() ? style$3["isResizing"] : ""}`
13354
13355
  }
13355
13356
  }
13356
13357
  )
@@ -13397,8 +13398,8 @@ function TableHeader({
13397
13398
  "thead",
13398
13399
  {
13399
13400
  className: cn(
13400
- style["table-header"],
13401
- stickyHeader && style["table-header--sticky"],
13401
+ style$3["table-header"],
13402
+ stickyHeader && style$3["table-header--sticky"],
13402
13403
  styledTableProps.tableHeaderClassName
13403
13404
  ),
13404
13405
  style: styles2,
@@ -13599,18 +13600,18 @@ function TableRow({
13599
13600
  "td",
13600
13601
  {
13601
13602
  className: clsx(
13602
- style["t-cell"],
13603
+ style$3["t-cell"],
13603
13604
  hasRowClickHandler && "cursor-pointer",
13604
13605
  tdClassName,
13605
- isActionsCell && style["action-cell"],
13606
- isActionsCell && Boolean(actions) && leftCells.length && style["shadowed"],
13607
- isActionsCell && ((getRowClassName == null ? void 0 : getRowClassName(row)) ? getRowClassName == null ? void 0 : getRowClassName(row) : style["action-cell-default-background"]),
13608
- isFixed2 && style["fixed-cell"],
13609
- isLastFixedCell && style["shadowed"],
13610
- row.getIsSelected() && style["selected"],
13611
- isFixed2 && ((getRowClassName == null ? void 0 : getRowClassName(row)) ? getRowClassName == null ? void 0 : getRowClassName(row) : style["fixed-cell-default-background"]),
13612
- isExpandedRow && style["expanded_row"],
13613
- (singleSelection || row.isFocused()) && style["single-selection"]
13606
+ isActionsCell && style$3["action-cell"],
13607
+ isActionsCell && Boolean(actions) && leftCells.length && style$3["shadowed"],
13608
+ isActionsCell && ((getRowClassName == null ? void 0 : getRowClassName(row)) ? getRowClassName == null ? void 0 : getRowClassName(row) : style$3["action-cell-default-background"]),
13609
+ isFixed2 && style$3["fixed-cell"],
13610
+ isLastFixedCell && style$3["shadowed"],
13611
+ row.getIsSelected() && style$3["selected"],
13612
+ isFixed2 && ((getRowClassName == null ? void 0 : getRowClassName(row)) ? getRowClassName == null ? void 0 : getRowClassName(row) : style$3["fixed-cell-default-background"]),
13613
+ isExpandedRow && style$3["expanded_row"],
13614
+ (singleSelection || row.isFocused()) && style$3["single-selection"]
13614
13615
  ),
13615
13616
  style: { left: isFixed2 ? cell.left : void 0 },
13616
13617
  children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
@@ -13656,7 +13657,7 @@ function TableRow({
13656
13657
  "data-index": index,
13657
13658
  "data-test": row.id,
13658
13659
  id: row.id,
13659
- className: clsx(style["t-row"], loading && style["is-loading"], getRowClassName == null ? void 0 : getRowClassName(row)),
13660
+ className: clsx(style$3["t-row"], loading && style$3["is-loading"], getRowClassName == null ? void 0 : getRowClassName(row)),
13660
13661
  style: {
13661
13662
  height: rowHeight ? `${rowHeight}px` : "inherit",
13662
13663
  ...enableDnd && dndStyle
@@ -13690,7 +13691,7 @@ function TableRow({
13690
13691
  "td",
13691
13692
  {
13692
13693
  "aria-hidden": true,
13693
- className: style["t-cell"],
13694
+ className: style$3["t-cell"],
13694
13695
  style: {
13695
13696
  width: String(paddingLeft) + "px",
13696
13697
  minWidth: String(paddingLeft) + "px",
@@ -13705,7 +13706,7 @@ function TableRow({
13705
13706
  "td",
13706
13707
  {
13707
13708
  "aria-hidden": true,
13708
- className: style["t-cell"],
13709
+ className: style$3["t-cell"],
13709
13710
  style: {
13710
13711
  width: String(paddingRight) + "px",
13711
13712
  minWidth: String(paddingRight) + "px",
@@ -13766,12 +13767,12 @@ function TableBody({
13766
13767
  const { columns, data, loading, enableDnd, rowHeight } = styledTableProps;
13767
13768
  const colSpan = table.getAllLeafColumns().length || columns.length || 1;
13768
13769
  if (loading && data.length === 0) {
13769
- return /* @__PURE__ */ jsxRuntimeExports.jsx("tbody", { className: style["tbody"], children: /* @__PURE__ */ jsxRuntimeExports.jsx(TableSkeleton, { colSpan, rowHeight }) });
13770
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("tbody", { className: style$3["tbody"], children: /* @__PURE__ */ jsxRuntimeExports.jsx(TableSkeleton, { colSpan, rowHeight }) });
13770
13771
  }
13771
13772
  if (data.length === 0) {
13772
13773
  return null;
13773
13774
  }
13774
- return /* @__PURE__ */ jsxRuntimeExports.jsx("tbody", { className: style["tbody"], children: enableDnd ? /* @__PURE__ */ jsxRuntimeExports.jsx(SortableContext, { items: data, strategy: verticalListSortingStrategy, children: /* @__PURE__ */ jsxRuntimeExports.jsx(TableRows, { table, styledTableProps, columnWindow }) }) : /* @__PURE__ */ jsxRuntimeExports.jsx(TableRows, { table, styledTableProps, columnWindow }) });
13775
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("tbody", { className: style$3["tbody"], children: enableDnd ? /* @__PURE__ */ jsxRuntimeExports.jsx(SortableContext, { items: data, strategy: verticalListSortingStrategy, children: /* @__PURE__ */ jsxRuntimeExports.jsx(TableRows, { table, styledTableProps, columnWindow }) }) : /* @__PURE__ */ jsxRuntimeExports.jsx(TableRows, { table, styledTableProps, columnWindow }) });
13775
13776
  }
13776
13777
  function LoadingIcon(props) {
13777
13778
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1rem", height: "1rem", viewBox: "0 0 24 24", ...props, children: [
@@ -13797,7 +13798,7 @@ function LoadingIcon(props) {
13797
13798
  ] });
13798
13799
  }
13799
13800
  const Fetching = ({ fetching = false }) => {
13800
- return fetching ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "absolute z-10 bg-white/40 left-0 top-0 right-0 bottom-0 flex items-center justify-center ", children: /* @__PURE__ */ jsxRuntimeExports.jsx(LoadingIcon, { className: style["loading-icon"], width: 50, height: 50 }) }) : null;
13801
+ return fetching ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "absolute z-10 bg-white/40 left-0 top-0 right-0 bottom-0 flex items-center justify-center ", children: /* @__PURE__ */ jsxRuntimeExports.jsx(LoadingIcon, { className: style$3["loading-icon"], width: 50, height: 50 }) }) : null;
13801
13802
  };
13802
13803
  const paginationStyle = {
13803
13804
  "table-pagination": "_table-pagination_pu6mb_1",
@@ -13857,10 +13858,10 @@ function TablePagination({
13857
13858
  );
13858
13859
  const scrollToTop = useCallback(() => {
13859
13860
  var _a;
13860
- const asmaTableClass = style["asma-ui-table-styled-table"];
13861
+ const asmaTableClass = style$3["asma-ui-table-styled-table"];
13861
13862
  const tableContainer = (_a = tablePaginationRef.current) == null ? void 0 : _a.closest(`.${asmaTableClass}`);
13862
13863
  const scrollContainer = tableContainer == null ? void 0 : tableContainer.querySelector(
13863
- `.${style["table-scroll"]}, .${style["table-wrapper"]}`
13864
+ `.${style$3["table-scroll"]}, .${style$3["table-wrapper"]}`
13864
13865
  );
13865
13866
  if (scrollContainer) {
13866
13867
  scrollContainer.scrollTo({ top: 0, behavior: "smooth" });
@@ -14084,7 +14085,7 @@ function TableFooter({
14084
14085
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(
14085
14086
  "div",
14086
14087
  {
14087
- className: canShowStickyFooter ? style["table-footer--sticky"] : style["table-footer--inline"],
14088
+ className: canShowStickyFooter ? style$3["table-footer--sticky"] : style$3["table-footer--inline"],
14088
14089
  style: paginationAlignLeft && {
14089
14090
  justifyContent: "flex-start"
14090
14091
  } || {},
@@ -15255,9 +15256,9 @@ const StyledTable = (props) => {
15255
15256
  const isShortTable = !canShowStickyFooter && visibleRows > 0 && visibleRows <= rowsFit;
15256
15257
  const shouldExpandEmptyBody = !canShowStickyFooter && showNoRowsOverlay;
15257
15258
  const tableWrapperClass = cn(
15258
- canShowStickyFooter ? style["table-wrapper"] : isShortTable || shouldExpandEmptyBody ? style["table-wrapper--proxy-bottom"] : style["table-wrapper--proxy"],
15259
- fetching && style["table-wrapper-fetching"],
15260
- showNoRowsOverlay && style["table-wrapper--no-rows"],
15259
+ canShowStickyFooter ? style$3["table-wrapper"] : isShortTable || shouldExpandEmptyBody ? style$3["table-wrapper--proxy-bottom"] : style$3["table-wrapper--proxy"],
15260
+ fetching && style$3["table-wrapper-fetching"],
15261
+ showNoRowsOverlay && style$3["table-wrapper--no-rows"],
15261
15262
  className
15262
15263
  );
15263
15264
  const scrollRef = canShowStickyFooter ? wrapperRef : tableScrollRef;
@@ -15282,7 +15283,7 @@ const StyledTable = (props) => {
15282
15283
  clearHeight();
15283
15284
  };
15284
15285
  }, [showNoRowsOverlay, noRowsOverlayTop]);
15285
- const TableMarkup = /* @__PURE__ */ jsxRuntimeExports.jsxs("table", { className: style["styled-table"], style: { width: table.getTotalSize(), minWidth: "100%" }, children: [
15286
+ const TableMarkup = /* @__PURE__ */ jsxRuntimeExports.jsxs("table", { className: style$3["styled-table"], style: { width: table.getTotalSize(), minWidth: "100%" }, children: [
15286
15287
  /* @__PURE__ */ jsxRuntimeExports.jsx(
15287
15288
  TableHeader,
15288
15289
  {
@@ -15296,32 +15297,32 @@ const StyledTable = (props) => {
15296
15297
  /* @__PURE__ */ jsxRuntimeExports.jsx(Fetching, { fetching: !!fetching }),
15297
15298
  /* @__PURE__ */ jsxRuntimeExports.jsx(TableBody, { table, styledTableProps: options, columnWindow })
15298
15299
  ] });
15299
- const NoRowsOverlay = showNoRowsOverlay ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: style["no-rows-overlay-container"], style: { top: noRowsOverlayTop }, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref: noRowsContentRef, className: style["no-rows-overlay-content"], children: noRowsOverlay }) }) : null;
15300
+ const NoRowsOverlay = showNoRowsOverlay ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: style$3["no-rows-overlay-container"], style: { top: noRowsOverlayTop }, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref: noRowsContentRef, className: style$3["no-rows-overlay-content"], children: noRowsOverlay }) }) : null;
15300
15301
  return /* @__PURE__ */ jsxRuntimeExports.jsx(RootContextProvider, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(DndProvider, { enabled: !!enableDnd, data, setData, children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
15301
15302
  "div",
15302
15303
  {
15303
15304
  ref: containerRef,
15304
- className: cn(style["asma-ui-table-styled-table"], tableClassName),
15305
+ className: cn(style$3["asma-ui-table-styled-table"], tableClassName),
15305
15306
  "data-x-overflow": hasInternalOverflow ? "true" : "false",
15306
15307
  style: { height: height2 },
15307
15308
  children: [
15308
- /* @__PURE__ */ jsxRuntimeExports.jsx(OverlayShell, { enabled: canShowStickyFooter, className: style["table-shell"], children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: wrapperRef, className: tableWrapperClass, children: [
15309
- canShowStickyFooter ? TableMarkup : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: tableScrollRef, className: cn(style["table-scroll"]), children: [
15309
+ /* @__PURE__ */ jsxRuntimeExports.jsx(OverlayShell, { enabled: canShowStickyFooter, className: style$3["table-shell"], children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: wrapperRef, className: tableWrapperClass, children: [
15310
+ canShowStickyFooter ? TableMarkup : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: tableScrollRef, className: cn(style$3["table-scroll"]), children: [
15310
15311
  /* @__PURE__ */ jsxRuntimeExports.jsx(
15311
15312
  "div",
15312
15313
  {
15313
15314
  ref: tableXRef,
15314
- className: cn(style["table-x"], !isShortTable && style["table-x--fill-height"]),
15315
+ className: cn(style$3["table-x"], !isShortTable && style$3["table-x--fill-height"]),
15315
15316
  children: TableMarkup
15316
15317
  }
15317
15318
  ),
15318
- /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref: hScrollRef, className: style["table-hscroll"], children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref: hScrollContentRef, className: style["table-hscroll__content"] }) }),
15319
+ /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref: hScrollRef, className: style$3["table-hscroll"], children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { ref: hScrollContentRef, className: style$3["table-hscroll__content"] }) }),
15319
15320
  /* @__PURE__ */ jsxRuntimeExports.jsx(
15320
15321
  "div",
15321
15322
  {
15322
15323
  className: cn(
15323
- style["table-bottom"],
15324
- isShortTable && style["table-bottom--sticky"]
15324
+ style$3["table-bottom"],
15325
+ isShortTable && style$3["table-bottom--sticky"]
15325
15326
  ),
15326
15327
  children: /* @__PURE__ */ jsxRuntimeExports.jsx(
15327
15328
  TableFooter,
package/dist/style.css CHANGED
@@ -1 +1 @@
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_cs6m8_1{--action-cell-shadow: none;--fixed-cell-shadow: none;isolation:isolate;width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_cs6m8_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_cs6m8_1 *,._asma-ui-table-styled-table_cs6m8_1 *:after,._asma-ui-table-styled-table_cs6m8_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_cs6m8_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper_cs6m8_22{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_cs6m8_1 ._table-shell_cs6m8_29{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper--no-rows_cs6m8_35{min-height:130px}._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper--proxy_cs6m8_38,._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper--proxy-bottom_cs6m8_39{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper-fetching_cs6m8_49{overflow:hidden}._asma-ui-table-styled-table_cs6m8_1 ._table-scroll_cs6m8_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_cs6m8_1 ._table-x--fill-height_cs6m8_61{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_cs6m8_1 ._table-x_cs6m8_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_cs6m8_1 ._table-x_cs6m8_61::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_cs6m8_1 ._table-header--sticky_cs6m8_76{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_cs6m8_1 ._table-hscroll_cs6m8_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_cs6m8_1 ._table-hscroll__content_cs6m8_91{height:1px}._asma-ui-table-styled-table_cs6m8_1 ._no-rows-overlay-container_cs6m8_94{position:absolute;inset:0;display:grid;place-items:center;pointer-events:auto;z-index:5}._asma-ui-table-styled-table_cs6m8_1 ._no-rows-overlay-content_cs6m8_102{width:100%;max-width:100%}._asma-ui-table-styled-table_cs6m8_1 ._styled-table_cs6m8_106{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_cs6m8_1 ._styled-table_cs6m8_106 ._tbody_cs6m8_115{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_cs6m8_1 ._loading-icon_cs6m8_120{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127+._t-row_cs6m8_127 ._t-cell_cs6m8_127{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127{margin-top:1px;display:table-row}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:hover,._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:hover ._action-cell_cs6m8_137{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:hover ._fixed-cell_cs6m8_141{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:focus ._action-cell_cs6m8_137{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:focus ._fixed-cell_cs6m8_141{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127:focus-visible{outline:none}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127{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_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127:not(._expanded_row_cs6m8_172){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127:not(._expanded_row_cs6m8_172) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127._selected_cs6m8_190{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127._single-selection_cs6m8_193{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_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127._single-selection_cs6m8_193: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_cs6m8_1 ._t-row_cs6m8_127 ._t-cell_cs6m8_127._single-selection_cs6m8_193: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_cs6m8_1 ._t-row_cs6m8_127 ._action-cell_cs6m8_137{height:100%;position:sticky;right:-1px;z-index:1;box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._action-cell_cs6m8_137._shadowed_cs6m8_210._single-selection_cs6m8_193{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_cs6m8_1 ._t-row_cs6m8_127 ._action-cell_cs6m8_137._shadowed_cs6m8_210._single-selection_cs6m8_193: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_cs6m8_1 ._t-row_cs6m8_127 ._fixed-cell_cs6m8_141{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._fixed-cell_cs6m8_141{position:sticky;left:0;z-index:1;box-shadow:var(--fixed-cell-shadow)}._asma-ui-table-styled-table_cs6m8_1 ._t-row_cs6m8_127 ._fixed-cell_cs6m8_141._shadowed_cs6m8_210._single-selection_cs6m8_193{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_cs6m8_1 ._t-row_cs6m8_127._is-loading_cs6m8_230 ._t-cell_cs6m8_127{opacity:.5}._asma-ui-table-styled-table_cs6m8_1 ._action-cell-default-background_cs6m8_233,._asma-ui-table-styled-table_cs6m8_1 ._fixed-cell-default-background_cs6m8_236{background-color:#fff}._asma-ui-table-styled-table_cs6m8_1 ._sortable-column_cs6m8_239{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_cs6m8_1 ._resizer_cs6m8_243{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_cs6m8_1 ._resizer_cs6m8_243._isResizing_cs6m8_255{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_cs6m8_1 ._resizer_cs6m8_243{opacity:0}._asma-ui-table-styled-table_cs6m8_1 *:hover>._resizer_cs6m8_243{opacity:1}}._asma-ui-table-styled-table_cs6m8_1 ._hide-table-header_cs6m8_267{height:0px;opacity:0}._asma-ui-table-styled-table_cs6m8_1 ._show-table-header_cs6m8_271{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_cs6m8_1 ._table-header_cs6m8_76{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_cs6m8_1 ._table-header_cs6m8_76 ._t-cell_cs6m8_127{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_cs6m8_1 ._table-header_cs6m8_76 ._t-cell_cs6m8_127._hide-header_cs6m8_296{border:none}._asma-ui-table-styled-table_cs6m8_1 ._table-header_cs6m8_76 ._t-cell_cs6m8_127._t-cell__actions_cs6m8_299{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10);box-shadow:var(--action-cell-shadow)}@media (min-width: 743px){._asma-ui-table-styled-table_cs6m8_1 ._table-header_cs6m8_76 ._t-cell_cs6m8_127._t-cell__fixed_cs6m8_308{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:var(--fixed-cell-shadow)}}._asma-ui-table-styled-table_cs6m8_1 ._table-header_cs6m8_76 ._sort-icon_cs6m8_316{color:var(--colors-delta-800)}._asma-ui-table-styled-table_cs6m8_1 ._table-footer--sticky_cs6m8_319{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_cs6m8_1 ._table-footer--inline_cs6m8_330{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_cs6m8_1 ._table-bottom_cs6m8_341{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper--proxy_cs6m8_38._table-wrapper--no-rows_cs6m8_35,._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper--proxy-bottom_cs6m8_39._table-wrapper--no-rows_cs6m8_35,._asma-ui-table-styled-table_cs6m8_1 ._table-wrapper_cs6m8_22._table-wrapper--no-rows_cs6m8_35{min-height:var(--no-rows-content-height, 130px)}._asma-ui-table-styled-table_cs6m8_1 ._table-bottom--sticky_cs6m8_355{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
+ ._asma-ui-table-styled-table_1r2rd_1{--action-cell-shadow: none;--fixed-cell-shadow: none;isolation:isolate;width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_1r2rd_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_1r2rd_1 *,._asma-ui-table-styled-table_1r2rd_1 *:after,._asma-ui-table-styled-table_1r2rd_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_1r2rd_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper_1r2rd_22{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_1r2rd_1 ._table-shell_1r2rd_29{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper--no-rows_1r2rd_35{min-height:130px}._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper--proxy_1r2rd_38,._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper--proxy-bottom_1r2rd_39{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper-fetching_1r2rd_49{overflow:hidden}._asma-ui-table-styled-table_1r2rd_1 ._table-scroll_1r2rd_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_1r2rd_1 ._table-x--fill-height_1r2rd_61{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_1r2rd_1 ._table-x_1r2rd_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_1r2rd_1 ._table-x_1r2rd_61::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_1r2rd_1 ._table-header--sticky_1r2rd_76{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_1r2rd_1 ._table-hscroll_1r2rd_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_1r2rd_1 ._table-hscroll__content_1r2rd_91{height:1px}._asma-ui-table-styled-table_1r2rd_1 ._no-rows-overlay-container_1r2rd_94{position:absolute;inset:0;display:grid;place-items:center;pointer-events:auto;z-index:5}._asma-ui-table-styled-table_1r2rd_1 ._no-rows-overlay-content_1r2rd_102{width:100%;max-width:100%}._asma-ui-table-styled-table_1r2rd_1 ._styled-table_1r2rd_106{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_1r2rd_1 ._styled-table_1r2rd_106 ._tbody_1r2rd_115{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_1r2rd_1 ._loading-icon_1r2rd_120{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127+._t-row_1r2rd_127 ._t-cell_1r2rd_127{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127{margin-top:1px;display:table-row}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:hover,._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:hover ._action-cell_1r2rd_137{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:hover ._fixed-cell_1r2rd_141{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:focus ._action-cell_1r2rd_137{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:focus ._fixed-cell_1r2rd_141{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127:focus-visible{outline:none}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127{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_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127:not(._expanded_row_1r2rd_172){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127:not(._expanded_row_1r2rd_172) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127._selected_1r2rd_190{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127._single-selection_1r2rd_193{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_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127._single-selection_1r2rd_193: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_1r2rd_1 ._t-row_1r2rd_127 ._t-cell_1r2rd_127._single-selection_1r2rd_193: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_1r2rd_1 ._t-row_1r2rd_127 ._action-cell_1r2rd_137{height:100%;position:sticky;right:-1px;z-index:1;box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._action-cell_1r2rd_137._shadowed_1r2rd_210._single-selection_1r2rd_193{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_1r2rd_1 ._t-row_1r2rd_127 ._action-cell_1r2rd_137._shadowed_1r2rd_210._single-selection_1r2rd_193: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_1r2rd_1 ._t-row_1r2rd_127 ._fixed-cell_1r2rd_141{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._fixed-cell_1r2rd_141{position:sticky;left:0;z-index:1;box-shadow:var(--fixed-cell-shadow)}._asma-ui-table-styled-table_1r2rd_1 ._t-row_1r2rd_127 ._fixed-cell_1r2rd_141._shadowed_1r2rd_210._single-selection_1r2rd_193{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_1r2rd_1 ._t-row_1r2rd_127._is-loading_1r2rd_230 ._t-cell_1r2rd_127{opacity:.5}._asma-ui-table-styled-table_1r2rd_1 ._action-cell-default-background_1r2rd_233,._asma-ui-table-styled-table_1r2rd_1 ._fixed-cell-default-background_1r2rd_236{background-color:#fff}._asma-ui-table-styled-table_1r2rd_1 ._sortable-column_1r2rd_239{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_1r2rd_1 ._resizer_1r2rd_243{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_1r2rd_1 ._resizer_1r2rd_243._isResizing_1r2rd_255{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_1r2rd_1 ._resizer_1r2rd_243{opacity:0}._asma-ui-table-styled-table_1r2rd_1 *:hover>._resizer_1r2rd_243{opacity:1}}._asma-ui-table-styled-table_1r2rd_1 ._hide-table-header_1r2rd_267{height:0px;opacity:0}._asma-ui-table-styled-table_1r2rd_1 ._show-table-header_1r2rd_271{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_1r2rd_1 ._table-header_1r2rd_76{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_1r2rd_1 ._table-header_1r2rd_76 ._t-cell_1r2rd_127{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_1r2rd_1 ._table-header_1r2rd_76 ._t-cell_1r2rd_127._hide-header_1r2rd_296{border:none}._asma-ui-table-styled-table_1r2rd_1 ._table-header_1r2rd_76 ._t-cell_1r2rd_127._t-cell__actions_1r2rd_299{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10);box-shadow:var(--action-cell-shadow)}@media (min-width: 743px){._asma-ui-table-styled-table_1r2rd_1 ._table-header_1r2rd_76 ._t-cell_1r2rd_127._t-cell__fixed_1r2rd_308{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:var(--fixed-cell-shadow)}}._asma-ui-table-styled-table_1r2rd_1 ._table-header_1r2rd_76 ._sort-icon_1r2rd_316{color:var(--colors-delta-800)}._asma-ui-table-styled-table_1r2rd_1 ._table-footer--sticky_1r2rd_319{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_1r2rd_1 ._table-footer--inline_1r2rd_330{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_1r2rd_1 ._table-bottom_1r2rd_341{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper--proxy_1r2rd_38._table-wrapper--no-rows_1r2rd_35,._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper--proxy-bottom_1r2rd_39._table-wrapper--no-rows_1r2rd_35,._asma-ui-table-styled-table_1r2rd_1 ._table-wrapper_1r2rd_22._table-wrapper--no-rows_1r2rd_35{min-height:var(--no-rows-content-height, 130px)}._asma-ui-table-styled-table_1r2rd_1 ._table-bottom--sticky_1r2rd_355{bottom:0}._cursor-not-allowed_1r2rd_359{cursor:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8ZyBmaWx0ZXI9InVybCgjZmlsdGVyMF9kXzY1MjRfMjQxNTE3KSI+CiAgICA8bWFzayBpZD0icGF0aC0xLW91dHNpZGUtMV82NTI0XzI0MTUxNyIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMyIgeT0iMiIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiBmaWxsPSJibGFjayI+CiAgICAgIDxyZWN0IGZpbGw9IndoaXRlIiB4PSIzIiB5PSIyIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiLz4KICAgICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS40NzY1IDE1Ljg5MDdDMTQuNDk1NyAxNi41ODkyIDEzLjI5NTggMTcgMTIgMTdDOC42ODYyOSAxNyA2IDE0LjMxMzcgNiAxMUM2IDkuNzA0MTcgNi40MTA3OSA4LjUwNDI4IDcuMTA5MjUgNy41MjM0N0wxNS40NzY1IDE1Ljg5MDdaTTE2Ljg5MDcgMTQuNDc2NUMxNy41ODkyIDEzLjQ5NTcgMTggMTIuMjk1OCAxOCAxMUMxOCA3LjY4NjI5IDE1LjMxMzcgNSAxMiA1QzEwLjcwNDIgNSA5LjUwNDI4IDUuNDEwNzkgOC41MjM0NyA2LjEwOTI1TDE2Ljg5MDcgMTQuNDc2NVpNMTIgMTlDMTYuNDE4MyAxOSAyMCAxNS40MTgzIDIwIDExQzIwIDYuNTgxNzIgMTYuNDE4MyAzIDEyIDNDNy41ODE3MiAzIDQgNi41ODE3MiA0IDExQzQgMTUuNDE4MyA3LjU4MTcyIDE5IDEyIDE5WiIvPgogICAgPC9tYXNrPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS40NzY1IDE1Ljg5MDdDMTQuNDk1NyAxNi41ODkyIDEzLjI5NTggMTcgMTIgMTdDOC42ODYyOSAxNyA2IDE0LjMxMzcgNiAxMUM2IDkuNzA0MTcgNi40MTA3OSA4LjUwNDI4IDcuMTA5MjUgNy41MjM0N0wxNS40NzY1IDE1Ljg5MDdaTTE2Ljg5MDcgMTQuNDc2NUMxNy41ODkyIDEzLjQ5NTcgMTggMTIuMjk1OCAxOCAxMUMxOCA3LjY4NjI5IDE1LjMxMzcgNSAxMiA1QzEwLjcwNDIgNSA5LjUwNDI4IDUuNDEwNzkgOC41MjM0NyA2LjEwOTI1TDE2Ljg5MDcgMTQuNDc2NVpNMTIgMTlDMTYuNDE4MyAxOSAyMCAxNS40MTgzIDIwIDExQzIwIDYuNTgxNzIgMTYuNDE4MyAzIDEyIDNDNy41ODE3MiAzIDQgNi41ODE3MiA0IDExQzQgMTUuNDE4MyA3LjU4MTcyIDE5IDEyIDE5WiIgZmlsbD0iI0UxMDcwMCIvPgogICAgPHBhdGggZD0iTTE1LjQ3NjUgMTUuODkwN003LjEwOTI1IDcuNTIzNDdMNy44MTYzNiA2LjgxNjM2TDYuOTgwNDMgNS45ODA0M0w2LjI5NDY5IDYuOTQzNEw3LjEwOTI1IDcuNTIzNDdaTTE1LjQ3NjUgMTUuODkwN00xNi44OTA3IDE0LjQ3NjVNOC41MjM0NyA2LjEwOTI1TDcuOTQzNCA1LjI5NDY5TDYuOTgwNDMgNS45ODA0M0w3LjgxNjM2IDYuODE2MzZMOC41MjM0NyA2LjEwOTI1Wk0xNi44OTA3IDE0LjQ3NjVNMTUuNDc2NSAxNS44OTA3TDE0Ljg5NjUgMTUuMDc2MkMxNC4wNzk0IDE1LjY1OCAxMy4wODExIDE2IDEyIDE2VjE3VjE4QzEzLjUxMDUgMTggMTQuOTEyIDE3LjUyMDQgMTYuMDU2NiAxNi43MDUzTDE1LjQ3NjUgMTUuODkwN1pNMTIgMTdWMTZDOS4yMzg1OCAxNiA3IDEzLjc2MTQgNyAxMUg2SDVDNSAxNC44NjYgOC4xMzQwMSAxOCAxMiAxOFYxN1pNNiAxMUg3QzcgOS45MTg4NiA3LjM0MTk5IDguOTIwNTcgNy45MjM4MiA4LjEwMzU0TDcuMTA5MjUgNy41MjM0N0w2LjI5NDY5IDYuOTQzNEM1LjQ3OTU5IDguMDg4IDUgOS40ODk0OCA1IDExSDZaTTcuMTA5MjUgNy41MjM0N0w2LjQwMjE1IDguMjMwNTdMMTQuNzY5NCAxNi41OTc5TDE1LjQ3NjUgMTUuODkwN0wxNi4xODM2IDE1LjE4MzZMNy44MTYzNiA2LjgxNjM2TDcuMTA5MjUgNy41MjM0N1pNMTUuNDc2NSAxNS44OTA3TTE2Ljg5MDcgMTQuNDc2NUwxNy43MDUzIDE1LjA1NjZDMTguNTIwNCAxMy45MTIgMTkgMTIuNTEwNSAxOSAxMUgxOEgxN0MxNyAxMi4wODExIDE2LjY1OCAxMy4wNzk0IDE2LjA3NjIgMTMuODk2NUwxNi44OTA3IDE0LjQ3NjVaTTE4IDExSDE5QzE5IDcuMTM0MDEgMTUuODY2IDQgMTIgNFY1VjZDMTQuNzYxNCA2IDE3IDguMjM4NTggMTcgMTFIMThaTTEyIDVWNEMxMC40ODk1IDQgOS4wODggNC40Nzk1OSA3Ljk0MzQgNS4yOTQ2OUw4LjUyMzQ3IDYuMTA5MjVMOS4xMDM1NCA2LjkyMzgyQzkuOTIwNTcgNi4zNDE5OSAxMC45MTg5IDYgMTIgNlY1Wk04LjUyMzQ3IDYuMTA5MjVMNy44MTYzNiA2LjgxNjM2TDE2LjE4MzYgMTUuMTgzNkwxNi44OTA3IDE0LjQ3NjVMMTcuNTk3OSAxMy43Njk0TDkuMjMwNTcgNS40MDIxNUw4LjUyMzQ3IDYuMTA5MjVaTTE2Ljg5MDcgMTQuNDc2NU0xMiAxOVYyMEMxNi45NzA2IDIwIDIxIDE1Ljk3MDYgMjEgMTFIMjBIMTlDMTkgMTQuODY2IDE1Ljg2NiAxOCAxMiAxOFYxOVpNMjAgMTFIMjFDMjEgNi4wMjk0NCAxNi45NzA2IDIgMTIgMlYzVjRDMTUuODY2IDQgMTkgNy4xMzQwMSAxOSAxMUgyMFpNMTIgM1YyQzcuMDI5NDQgMiAzIDYuMDI5NDQgMyAxMUg0SDVDNSA3LjEzNDAxIDguMTM0MDEgNCAxMiA0VjNaTTQgMTFIM0MzIDE1Ljk3MDYgNy4wMjk0NCAyMCAxMiAyMFYxOVYxOEM4LjEzNDAxIDE4IDUgMTQuODY2IDUgMTFINFpNMTIgMTkiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuOCIgbWFzaz0idXJsKCNwYXRoLTEtb3V0c2lkZS0xXzY1MjRfMjQxNTE3KSIvPgogIDwvZz4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9ImZpbHRlcjBfZF82NTI0XzI0MTUxNyIgeD0iMCIgeT0iMCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CiAgICAgIDxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CiAgICAgIDxmZUNvbG9yTWF0cml4IGluPSJTb3VyY2VBbHBoYSIgdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEyNyAwIiByZXN1bHQ9ImhhcmRBbHBoYSIvPgogICAgICA8ZmVPZmZzZXQgZHk9IjEiLz4KICAgICAgPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMS41Ii8+CiAgICAgIDxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwLjI1IDAiLz4KICAgICAgPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3dfNjUyNF8yNDE1MTciLz4KICAgICAgPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3dfNjUyNF8yNDE1MTciIHJlc3VsdD0ic2hhcGUiLz4KICAgIDwvZmlsdGVyPgogIDwvZGVmcz4KPC9zdmc+) 12 12,not-allowed}._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}._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)}
@@ -235,9 +235,6 @@ declare const _default: {
235
235
  "custom-grey-04": string;
236
236
  "custom-grey-06": string;
237
237
  };
238
- cursor: {
239
- 'not-allowed-red': string;
240
- };
241
238
  };
242
239
  };
243
240
  plugins: any[];
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.4.0",
6
+ "version": "1.4.1",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",