@groupeactual/ui-kit 1.1.1-beta.4 → 1.1.1-beta.5

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.
@@ -13,14 +13,14 @@ export interface Row {
13
13
  type BaseProps<T> = {
14
14
  columns: Column<T>[];
15
15
  withHeader?: boolean;
16
- withPagination: boolean;
17
- withTopPagination: boolean;
16
+ withPagination?: boolean;
17
+ withTopPagination?: boolean;
18
18
  };
19
19
  type WithoutPaginationProps = {
20
- withPagination: false;
20
+ withPagination?: false;
21
21
  };
22
22
  type WithoutTopPaginationProps = {
23
- withTopPagination: false;
23
+ withTopPagination?: false;
24
24
  };
25
25
  type PaginationProps = {
26
26
  withPagination: true;
@@ -344,14 +344,14 @@ interface Row {
344
344
  type BaseProps<T> = {
345
345
  columns: Column<T>[];
346
346
  withHeader?: boolean;
347
- withPagination: boolean;
348
- withTopPagination: boolean;
347
+ withPagination?: boolean;
348
+ withTopPagination?: boolean;
349
349
  };
350
350
  type WithoutPaginationProps = {
351
- withPagination: false;
351
+ withPagination?: false;
352
352
  };
353
353
  type WithoutTopPaginationProps = {
354
- withTopPagination: false;
354
+ withTopPagination?: false;
355
355
  };
356
356
  type PaginationProps = {
357
357
  withPagination: true;
@@ -13,14 +13,14 @@ export interface Row {
13
13
  type BaseProps<T> = {
14
14
  columns: Column<T>[];
15
15
  withHeader?: boolean;
16
- withPagination: boolean;
17
- withTopPagination: boolean;
16
+ withPagination?: boolean;
17
+ withTopPagination?: boolean;
18
18
  };
19
19
  type WithoutPaginationProps = {
20
- withPagination: false;
20
+ withPagination?: false;
21
21
  };
22
22
  type WithoutTopPaginationProps = {
23
- withTopPagination: false;
23
+ withTopPagination?: false;
24
24
  };
25
25
  type PaginationProps = {
26
26
  withPagination: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groupeactual/ui-kit",
3
- "version": "1.1.1-beta.4",
3
+ "version": "1.1.1-beta.5",
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.4"
57
+ "@groupeactual/design-tokens": "1.1.1-beta.5"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "react": "^18.2.0",
@@ -17,16 +17,16 @@ export interface Row {
17
17
  type BaseProps<T> = {
18
18
  columns: Column<T>[];
19
19
  withHeader?: boolean;
20
- withPagination: boolean;
21
- withTopPagination: boolean;
20
+ withPagination?: boolean;
21
+ withTopPagination?: boolean;
22
22
  };
23
23
 
24
24
  type WithoutPaginationProps = {
25
- withPagination: false;
25
+ withPagination?: false;
26
26
  };
27
27
 
28
28
  type WithoutTopPaginationProps = {
29
- withTopPagination: false;
29
+ withTopPagination?: false;
30
30
  };
31
31
 
32
32
  type PaginationProps = {