@hazelcast/ui 1.3.2-next.86 → 1.3.2-next.88

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.
@@ -1,3 +1,4 @@
1
+ @use 'sass:math';
1
2
  @use '../styles/constants' as c;
2
3
 
3
4
  $addIconSpacing: c.$grid;
@@ -60,7 +61,7 @@ ul.list {
60
61
 
61
62
  .content {
62
63
  background: c.$colorOverlayBackground;
63
- padding: c.$grid / 3 c.$grid c.$grid / 3 c.$grid * 2;
64
+ padding: math.div(c.$grid, 3) c.$grid math.div(c.$grid, 3) c.$grid * 2;
64
65
  margin-top: c.$grid * 3;
65
66
  border: c.$borderWidth solid c.$colorNeutralLight;
66
67
  border-radius: c.$borderRadius;
@@ -15,7 +15,7 @@ declare module 'react-table' {
15
15
  }
16
16
  interface TableInstance<D extends object = {}> extends UsePaginationInstanceProps<D>, UseSortByInstanceProps<D>, UseFiltersInstanceProps<D>, UseRowSelectInstanceProps<D>, UseGroupByInstanceProps<D> {
17
17
  }
18
- interface TableState<D extends object = {}> extends UsePaginationState<D>, UseSortByState<D>, UseFiltersState<D>, UseRowSelectState<D>, UseGroupByState<D>, UseResizeColumnsState<D> {
18
+ interface TableState<D extends object = {}> extends UsePaginationState<D>, UseSortByState<D>, UseFiltersState<D>, UseRowSelectState<D>, UseGroupByState<D>, UseColumnOrderState<D>, UseResizeColumnsState<D> {
19
19
  }
20
20
  interface ColumnInterface<D extends object = {}> extends UseSortByColumnOptions<D>, UseFiltersColumnOptions<D>, UseGroupByColumnOptions<D>, UseResizeColumnsColumnOptions<D> {
21
21
  Footer?: string | Renderer<TableInstance<D>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hazelcast/ui",
3
- "version": "1.3.2-next.86+a5a0c78",
3
+ "version": "1.3.2-next.88+b2a575e",
4
4
  "description": "Hazelcast design system components",
5
5
  "author": "",
6
6
  "homepage": "https://github.com/hazelcast/frontend-shared#readme",
@@ -116,5 +116,5 @@
116
116
  "react": "^17 || ^18",
117
117
  "react-dom": "^17 || ^18"
118
118
  },
119
- "gitHead": "a5a0c78a535f0a6b8550bc5b9212c66602385231"
119
+ "gitHead": "b2a575e2c1efac0e4c67fa7eaed04d1c2cec5d4b"
120
120
  }