@xelto.npm/xc2-lib 0.0.4 → 0.0.6

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.
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ declare const ATempComponent: ({ text }: {
3
+ text: any;
4
+ }) => JSX.Element;
5
+ export default ATempComponent;
@@ -0,0 +1 @@
1
+ export { default } from "./ATempComponent";
@@ -1 +1,2 @@
1
1
  export { default as AppTile } from "./appTile";
2
+ export { default as TempButton } from "./aTempComponent";
package/dist/index.d.ts CHANGED
@@ -3,4 +3,8 @@ declare const AppTileComponent: ({ header }: {
3
3
  header: any;
4
4
  }) => JSX.Element;
5
5
 
6
- export { AppTileComponent as AppTile };
6
+ declare const ATempComponent: ({ text }: {
7
+ text: any;
8
+ }) => JSX.Element;
9
+
10
+ export { AppTileComponent as AppTile, ATempComponent as TempButton };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xelto.npm/xc2-lib",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "author": "XELTO",
5
5
  "description": "React component library based on MUI",
6
6
  "license": "ISC",
@@ -88,7 +88,9 @@
88
88
  "webpack": "^5.74.0"
89
89
  },
90
90
  "peerDependencies": {
91
- "react": "^18.2.0"
91
+ "react": "^18.2.0",
92
+ "@mui/material": "^5.10.15",
93
+ "@mui/styles": "^5.10.10"
92
94
  },
93
95
  "main": "dist/cjs/index.js",
94
96
  "module": "dist/esm/index.js",