@xelto.npm/xc2-lib 0.0.21 → 0.0.22
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.
- package/dist/cjs/index.js +12204 -87
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/appTile/AppTileComponent.d.ts +5 -1
- package/dist/cjs/types/components/foundations/illustration/Illustration.d.ts +8 -0
- package/dist/cjs/types/components/foundations/illustration/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +12204 -88
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/appTile/AppTileComponent.d.ts +5 -1
- package/dist/esm/types/components/foundations/illustration/Illustration.d.ts +8 -0
- package/dist/esm/types/components/foundations/illustration/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +13 -2
- package/package.json +3 -3
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const AppTileComponent: ({ header, forwardedRef }: {
|
|
2
|
+
declare const AppTileComponent: ({ header, illustrationName, forwardedRef, isBigType, size, color }: {
|
|
3
3
|
header: any;
|
|
4
|
+
illustrationName: any;
|
|
4
5
|
forwardedRef: any;
|
|
6
|
+
isBigType: any;
|
|
7
|
+
size: any;
|
|
8
|
+
color: any;
|
|
5
9
|
}) => JSX.Element;
|
|
6
10
|
export default AppTileComponent;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./Illustration";
|
package/dist/index.css
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const AppTileComponent: ({ header, forwardedRef }: {
|
|
2
|
+
declare const AppTileComponent: ({ header, illustrationName, forwardedRef, isBigType, size, color }: {
|
|
3
3
|
header: any;
|
|
4
|
+
illustrationName: any;
|
|
4
5
|
forwardedRef: any;
|
|
6
|
+
isBigType: any;
|
|
7
|
+
size: any;
|
|
8
|
+
color: any;
|
|
5
9
|
}) => JSX.Element;
|
|
6
10
|
|
|
7
11
|
declare const TypographyComponent: ({ text, type, forwardedRef, ...props }: {
|
|
@@ -25,4 +29,11 @@ declare const CustomButtonComponent: ({ type, text, size, fluid, color, resoluti
|
|
|
25
29
|
forwardedRef: any;
|
|
26
30
|
}) => JSX.Element;
|
|
27
31
|
|
|
28
|
-
|
|
32
|
+
declare const Illustration: ({ illustrationName, color, size, isBigType }: {
|
|
33
|
+
illustrationName: any;
|
|
34
|
+
color: any;
|
|
35
|
+
size: any;
|
|
36
|
+
isBigType: any;
|
|
37
|
+
}) => JSX.Element;
|
|
38
|
+
|
|
39
|
+
export { AppTileComponent as AppTile, CustomButtonComponent as Button, Illustration, TypographyComponent as Typography };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xelto.npm/xc2-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"author": "XELTO",
|
|
5
5
|
"description": "React component library based on MUI",
|
|
6
6
|
"license": "ISC",
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"@storybook/preset-create-react-app": "^4.1.2",
|
|
64
64
|
"@storybook/react": "^6.5.12",
|
|
65
65
|
"@storybook/testing-library": "0.0.13",
|
|
66
|
+
"@svgr/rollup": "^6.5.1",
|
|
66
67
|
"@testing-library/jest-dom": "^5.16.5",
|
|
67
68
|
"@testing-library/react": "^13.4.0",
|
|
68
69
|
"@testing-library/user-event": "^13.5.0",
|
|
@@ -70,7 +71,6 @@
|
|
|
70
71
|
"babel-plugin-named-exports-order": "0.0.2",
|
|
71
72
|
"date-fns": "^2.29.3",
|
|
72
73
|
"mui-datatables": "^4.2.2",
|
|
73
|
-
"postcss": "^8.4.19",
|
|
74
74
|
"prop-types": "^15.8.1",
|
|
75
75
|
"react": "^18.2.0",
|
|
76
76
|
"react-dom": "^18.2.0",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"rollup": "^3.6.0",
|
|
81
81
|
"rollup-plugin-copy": "^3.4.0",
|
|
82
82
|
"rollup-plugin-dts": "^5.0.0",
|
|
83
|
-
"rollup-plugin-
|
|
83
|
+
"rollup-plugin-react-svg": "^3.0.3",
|
|
84
84
|
"storybook-preset-inline-svg": "^1.0.1",
|
|
85
85
|
"styled-components": "^5.3.6",
|
|
86
86
|
"svg-inline-loader": "^0.8.2",
|