@arthur2079/ui2 0.0.0-next.4

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/CHANGELOG.md ADDED
@@ -0,0 +1,67 @@
1
+ # Changelog
2
+ # 0.0.0-next.4 (2026-02-15)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * Modified package json and files 2e6360f
8
+ * Modified publish config c5a7f22
9
+
10
+
11
+ ### Features
12
+
13
+ * Added changelogs and npm token 2d38b26
14
+ # 0.0.0-next.3 (2026-02-15)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Modified package json and files 2e6360f
20
+ * Modified publish config c5a7f22
21
+
22
+
23
+ ### Features
24
+
25
+ * Added changelogs and npm token 2d38b26
26
+ # 0.0.0-next.2 (2026-02-15)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * Modified package json and files 2e6360f
32
+ * Modified publish config c5a7f22
33
+
34
+
35
+ ### Features
36
+
37
+ * Added changelogs and npm token 2d38b26
38
+ # 0.0.0-next.1 (2026-02-15)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * Modified package json and files 2e6360f
44
+ * Modified publish config c5a7f22
45
+
46
+
47
+ ### Features
48
+
49
+ * Added changelogs and npm token 2d38b26
50
+ # 0.0.0-next.0 (2026-02-15)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * Modified package json and files 2e6360f
56
+
57
+
58
+ ### Features
59
+
60
+ * Added changelogs and npm token 2d38b26
61
+
62
+ # 0.0.0-experimental-2e6360fd-20260215 (2026-02-15)
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * Modified package json and files 2e6360f
@@ -0,0 +1,11 @@
1
+ import React, { useState } from "react";
2
+
3
+ export const Counter: React.FC = () => {
4
+ const [count, setCount] = useState(0);
5
+
6
+ return (
7
+ <button id="counter" type="button" onClick={() => setCount(count + 1)}>
8
+ {count}
9
+ </button>
10
+ );
11
+ };
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+
3
+ interface HeaderProps {
4
+ title: string;
5
+ }
6
+
7
+ export const Header: React.FC<HeaderProps> = ({ title }) => {
8
+ return (
9
+ <header id="header">
10
+ <h1>{title}</h1>
11
+ </header>
12
+ );
13
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./header";
2
+ export * from "./counter";
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@arthur2079/ui2",
3
+ "version": "0.0.0-next.4",
4
+ "exports": {
5
+ ".": "./index.ts",
6
+ "./counter": "./components/counter.ts",
7
+ "./header": "./components/header.ts",
8
+ "./setup-counter": "./utils/counter.ts"
9
+ },
10
+ "license": "MIT",
11
+ "scripts": {
12
+ "lint": "eslint \"**/*.ts\""
13
+ },
14
+ "dependencies": {
15
+ "react": "^18.2.0",
16
+ "react-dom": "^18.2.0"
17
+ },
18
+ "devDependencies": {
19
+ "@types/react": "^19.0.1",
20
+ "@types/react-dom": "^19.0.2",
21
+ "@arthur2079/eslint-config2": "*",
22
+ "@arthur2079/typescript-config2": "*",
23
+ "eslint": "^8.57.0",
24
+ "typescript": "5.5.4"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public",
28
+ "registry": "https://registry.npmjs.org/"
29
+ },
30
+ "files": [
31
+ "./index.ts",
32
+ "./components"
33
+ ]
34
+ }