@groupeactual/ui-kit 1.1.1-beta.6 → 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,11 +12,11 @@ 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
|
-
withPagination
|
|
19
|
+
withPagination: false;
|
|
20
20
|
};
|
|
21
21
|
type PaginationProps = {
|
|
22
22
|
withPagination: true;
|
package/dist/es/index.d.ts
CHANGED
|
@@ -343,11 +343,11 @@ 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
|
-
withPagination
|
|
350
|
+
withPagination: false;
|
|
351
351
|
};
|
|
352
352
|
type PaginationProps = {
|
|
353
353
|
withPagination: true;
|
|
@@ -12,11 +12,11 @@ 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
|
-
withPagination
|
|
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.
|
|
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.
|
|
57
|
+
"@groupeactual/design-tokens": "1.1.1-beta.8"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": "^18.2.0",
|
|
@@ -16,12 +16,12 @@ 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 = {
|
|
24
|
-
withPagination
|
|
24
|
+
withPagination: false;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
type PaginationProps = {
|