pack-to-ui-pro 0.0.2 → 0.0.5

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/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # 📦 pack-to-ui-pro
2
+
3
+ A lightweight React component and hook utility package that includes a custom `<Button />` and `useCounter` hook — perfect for quick UI prototyping or testing shared design logic.
4
+
5
+ ---
6
+
7
+ ## 🚀 Installation
8
+
9
+ Install the package:
10
+
11
+ ```bash
12
+ npm install pack-to-ui-pro
13
+ ```
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ const Button = ({ children, onClick }) => {
18
18
  fontSize: "1.2em",
19
19
  borderRadius: "5px",
20
20
  cursor: "pointer",
21
- backgroundColor: "blue",
21
+ backgroundColor: "red",
22
22
  color: "white",
23
23
  border: "none",
24
24
  }, children: children }));
@@ -0,0 +1,3 @@
1
+ import "./App.css";
2
+ declare function App(): import("react/jsx-runtime").JSX.Element;
3
+ export default App;
@@ -0,0 +1 @@
1
+ import './index.css';
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vite").UserConfig;
2
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pack-to-ui-pro",
3
- "version": "0.0.2",
3
+ "version": "0.0.5",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,7 @@
8
8
  "name": "vite-project",
9
9
  "version": "0.0.0",
10
10
  "dependencies": {
11
- "pack-to-ui-pro": "^0.0.1",
11
+ "pack-to-ui-pro": "^0.0.4",
12
12
  "react": "^19.1.0",
13
13
  "react-dom": "^19.1.0"
14
14
  },
@@ -2768,9 +2768,9 @@
2768
2768
  }
2769
2769
  },
2770
2770
  "node_modules/pack-to-ui-pro": {
2771
- "version": "0.0.1",
2772
- "resolved": "https://registry.npmjs.org/pack-to-ui-pro/-/pack-to-ui-pro-0.0.1.tgz",
2773
- "integrity": "sha512-o9xKouWe/x4owNBbGv2ZP7IhkAPunDANTaqR6zhbb2jucWnJDR9bjrs9tI7m8FaTKz8WGqtXy1IjzQruxIv1Ww=="
2771
+ "version": "0.0.4",
2772
+ "resolved": "https://registry.npmjs.org/pack-to-ui-pro/-/pack-to-ui-pro-0.0.4.tgz",
2773
+ "integrity": "sha512-TAxM/dlLWI/+dA2TyXJ3/S/wCr9kXuSSe8cBDf+/wjE0VeUHvNpbe/LM1b+sc6xcqIuyV1VZ4Ter2hMv0XA4Ag=="
2774
2774
  },
2775
2775
  "node_modules/parent-module": {
2776
2776
  "version": "1.0.1",
@@ -10,7 +10,7 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "dependencies": {
13
- "pack-to-ui-pro": "^0.0.1",
13
+ "pack-to-ui-pro": "^0.0.4",
14
14
  "react": "^19.1.0",
15
15
  "react-dom": "^19.1.0"
16
16
  },
File without changes
File without changes
File without changes