@nattui/react-components 0.0.26 → 0.0.27
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/index.js
CHANGED
|
@@ -129,7 +129,7 @@ var BUTTON_CLASS_NAME = {
|
|
|
129
129
|
};
|
|
130
130
|
|
|
131
131
|
// src/input.tsx
|
|
132
|
-
import styles4 from "./input.module-
|
|
132
|
+
import styles4 from "./input.module-WTTANJNH.module.css";
|
|
133
133
|
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
134
134
|
function Input(props) {
|
|
135
135
|
const {
|
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"version": "0.0.26",
|
|
4
|
-
"description": "A collection of reusable React components built with TypeScript and CSS Modules",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"components",
|
|
7
|
-
"react",
|
|
8
|
-
"ui"
|
|
9
|
-
],
|
|
10
|
-
"homepage": "https://github.com/nattui/react-components#readme",
|
|
2
|
+
"author": "Natt Nguyen <hello@natt.sh> (https://natt.sh)",
|
|
11
3
|
"bugs": {
|
|
12
4
|
"url": "https://github.com/nattui/react-components/issues"
|
|
13
5
|
},
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
"
|
|
6
|
+
"description": "A collection of reusable React components built with TypeScript and CSS Modules",
|
|
7
|
+
"devDependencies": {
|
|
8
|
+
"@types/react": "catalog:",
|
|
9
|
+
"tsup": "8.5.1",
|
|
10
|
+
"typescript": "catalog:"
|
|
17
11
|
},
|
|
18
|
-
"author": "Natt Nguyen <hello@natt.sh> (https://natt.sh)",
|
|
19
|
-
"type": "module",
|
|
20
12
|
"exports": {
|
|
21
13
|
".": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts"
|
|
24
16
|
}
|
|
25
17
|
},
|
|
26
|
-
"main": "./dist/index.js",
|
|
27
|
-
"module": "./dist/index.js",
|
|
28
|
-
"types": "./dist/index.d.ts",
|
|
29
18
|
"files": [
|
|
30
19
|
"dist"
|
|
31
20
|
],
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"typescript": "catalog:"
|
|
42
|
-
},
|
|
21
|
+
"homepage": "https://github.com/nattui/react-components#readme",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"components",
|
|
24
|
+
"react",
|
|
25
|
+
"ui"
|
|
26
|
+
],
|
|
27
|
+
"main": "./dist/index.js",
|
|
28
|
+
"module": "./dist/index.js",
|
|
29
|
+
"name": "@nattui/react-components",
|
|
43
30
|
"peerDependencies": {
|
|
44
31
|
"react": "^18.0.0 || ^19.0.0",
|
|
45
32
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
46
33
|
},
|
|
47
34
|
"publishConfig": {
|
|
48
35
|
"access": "public"
|
|
49
|
-
}
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/nattui/react-components.git"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsup",
|
|
43
|
+
"check:type": "tsc",
|
|
44
|
+
"dev": "tsup --watch",
|
|
45
|
+
"prepublishOnly": "pnpm run build"
|
|
46
|
+
},
|
|
47
|
+
"type": "module",
|
|
48
|
+
"types": "./dist/index.d.ts",
|
|
49
|
+
"version": "0.0.27"
|
|
50
50
|
}
|