@groupeactual/ui-kit 1.1.1-beta.7 → 1.1.1-beta.8

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.
@@ -12,8 +12,8 @@ export interface Row {
12
12
  }
13
13
  type BaseProps<T> = {
14
14
  columns: Column<T>[];
15
+ withPagination: boolean;
15
16
  withHeader?: boolean;
16
- withPagination?: boolean;
17
17
  };
18
18
  type WithoutPaginationProps = {
19
19
  withPagination: false;
@@ -343,8 +343,8 @@ interface Row {
343
343
  }
344
344
  type BaseProps<T> = {
345
345
  columns: Column<T>[];
346
+ withPagination: boolean;
346
347
  withHeader?: boolean;
347
- withPagination?: boolean;
348
348
  };
349
349
  type WithoutPaginationProps = {
350
350
  withPagination: false;
@@ -12,8 +12,8 @@ export interface Row {
12
12
  }
13
13
  type BaseProps<T> = {
14
14
  columns: Column<T>[];
15
+ withPagination: boolean;
15
16
  withHeader?: boolean;
16
- withPagination?: boolean;
17
17
  };
18
18
  type WithoutPaginationProps = {
19
19
  withPagination: false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groupeactual/ui-kit",
3
- "version": "1.1.1-beta.7",
3
+ "version": "1.1.1-beta.8",
4
4
  "type": "module",
5
5
  "description": "A simple template for a custom React component library",
6
6
  "devDependencies": {
@@ -54,7 +54,7 @@
54
54
  "notistack": "^3.0.1",
55
55
  "react": "^18.2.0",
56
56
  "react-dom": "^18.2.0",
57
- "@groupeactual/design-tokens": "1.1.1-beta.7"
57
+ "@groupeactual/design-tokens": "1.1.1-beta.8"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "react": "^18.2.0",
@@ -16,8 +16,8 @@ export interface Row {
16
16
 
17
17
  type BaseProps<T> = {
18
18
  columns: Column<T>[];
19
+ withPagination: boolean;
19
20
  withHeader?: boolean;
20
- withPagination?: boolean;
21
21
  };
22
22
 
23
23
  type WithoutPaginationProps = {