@philipe1993/list-color 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
package/index.tsx CHANGED
@@ -1,2 +1,2 @@
1
- export { default as ListColor } from "./src/index";
2
- export { default as colorStore } from "./store/colorStore";
1
+ export { ListColor } from "./src/index";
2
+ // export { default as colorStore } from "./store/colorStore";
package/package.json CHANGED
@@ -1,20 +1,16 @@
1
1
  {
2
2
  "name": "@philipe1993/list-color",
3
- "main": "src/index.js",
4
- "types": "src/index.d.ts",
5
- "version": "1.0.1",
6
- "peerDependencies": {
7
- "antd": "^5.22.0",
8
- "axios": "^1.7.7",
9
- "mobx": "^6.13.5",
10
- "mobx-react-lite": "^4.0.7",
3
+ "version": "1.0.3",
4
+ "main": "dist/index.js",
5
+ "types": "dist/index.d.ts",
6
+ "scripts": {
7
+ "build": "tsc"
8
+ },
9
+ "dependencies": {
11
10
  "react": "^18.3.1",
12
- "tailwindcss": "^3.4.12"
11
+ "mobx-react-lite": "^4.0.7"
13
12
  },
14
13
  "devDependencies": {
15
14
  "typescript": "^5.6.2"
16
- },
17
- "dependencies": {
18
- "@philipe1993/shared": "^1.0.2"
19
15
  }
20
16
  }
package/src/index.tsx CHANGED
@@ -27,12 +27,10 @@ const breadCrumb = [
27
27
  },
28
28
  ]
29
29
 
30
- const ListColor: React.FC = observer(() => {
30
+ export const ListColor: React.FC = observer(() => {
31
31
  return (
32
32
  <>
33
33
  <p>TESTE</p>
34
34
  </>
35
35
  );
36
- });
37
-
38
- export default ListColor;
36
+ });