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

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.
@@ -16,7 +16,7 @@ type BaseProps<T> = {
16
16
  withPagination?: boolean;
17
17
  };
18
18
  type WithoutPaginationProps = {
19
- withPagination?: false;
19
+ withPagination: false;
20
20
  };
21
21
  type PaginationProps = {
22
22
  withPagination: true;
@@ -347,7 +347,7 @@ type BaseProps<T> = {
347
347
  withPagination?: boolean;
348
348
  };
349
349
  type WithoutPaginationProps = {
350
- withPagination?: false;
350
+ withPagination: false;
351
351
  };
352
352
  type PaginationProps = {
353
353
  withPagination: true;
@@ -16,7 +16,7 @@ type BaseProps<T> = {
16
16
  withPagination?: boolean;
17
17
  };
18
18
  type WithoutPaginationProps = {
19
- withPagination?: false;
19
+ withPagination: false;
20
20
  };
21
21
  type PaginationProps = {
22
22
  withPagination: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groupeactual/ui-kit",
3
- "version": "1.1.1-beta.6",
3
+ "version": "1.1.1-beta.7",
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.6"
57
+ "@groupeactual/design-tokens": "1.1.1-beta.7"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "react": "^18.2.0",
@@ -21,7 +21,7 @@ type BaseProps<T> = {
21
21
  };
22
22
 
23
23
  type WithoutPaginationProps = {
24
- withPagination?: false;
24
+ withPagination: false;
25
25
  };
26
26
 
27
27
  type PaginationProps = {