@htmlplus/element 3.3.0 → 3.3.1
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/bundlers.d.ts +5 -5
- package/dist/bundlers.js +4 -4
- package/dist/client.d.ts +36 -18
- package/dist/client.js +674 -626
- package/dist/jsx-runtime.d.ts +183 -183
- package/dist/transformer.d.ts +45 -40
- package/dist/transformer.js +359 -276
- package/package.json +96 -92
package/package.json
CHANGED
|
@@ -1,94 +1,98 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
2
|
+
"name": "@htmlplus/element",
|
|
3
|
+
"version": "3.3.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"author": "Masood Abdolian <m.abdolian@gmail.com>",
|
|
7
|
+
"description": "A powerful library for building scalable, reusable, fast, tastable and lightweight design system for any web technologies. Powered by Web Component.",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "./dist/client.js",
|
|
10
|
+
"types": "./dist/client.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "npm run clean && rollup -c",
|
|
13
|
+
"clean": "rimraf dist",
|
|
14
|
+
"development:start": "vite --config development/vite.config.js",
|
|
15
|
+
"lint": "biome check --write",
|
|
16
|
+
"prepare": "husky",
|
|
17
|
+
"type-check": "tsc --noEmit"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"./dist/*",
|
|
21
|
+
"./package.json",
|
|
22
|
+
"./README.md"
|
|
23
|
+
],
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/client.js",
|
|
27
|
+
"types": "./dist/client.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./bundlers.js": {
|
|
30
|
+
"import": "./dist/bundlers.js",
|
|
31
|
+
"types": "./dist/bundlers.d.ts"
|
|
32
|
+
},
|
|
33
|
+
"./internal.js": {
|
|
34
|
+
"import": "./dist/internal.js",
|
|
35
|
+
"types": "./dist/internal.d.ts"
|
|
36
|
+
},
|
|
37
|
+
"./transformer.js": {
|
|
38
|
+
"import": "./dist/transformer.js",
|
|
39
|
+
"types": "./dist/transformer.d.ts"
|
|
40
|
+
},
|
|
41
|
+
"./jsx-runtime": "./dist/jsx-runtime.d.ts"
|
|
42
|
+
},
|
|
43
|
+
"funding": [],
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">= 20.10.0"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"components",
|
|
49
|
+
"custom elements",
|
|
50
|
+
"design systems",
|
|
51
|
+
"web components"
|
|
52
|
+
],
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/htmlplus/element.git"
|
|
56
|
+
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/htmlplus/element/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/htmlplus/element#readme",
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@babel/generator": "^7.28.3",
|
|
63
|
+
"@babel/parser": "^7.28.3",
|
|
64
|
+
"@babel/template": "^7.27.2",
|
|
65
|
+
"@babel/traverse": "^7.28.3",
|
|
66
|
+
"@babel/types": "^7.28.2",
|
|
67
|
+
"@types/node": "^24.3.0",
|
|
68
|
+
"@types/react": "^19.1.11",
|
|
69
|
+
"change-case": "^5.4.4",
|
|
70
|
+
"fs-extra": "^11.3.1",
|
|
71
|
+
"glob": "^11.0.3",
|
|
72
|
+
"ora": "^8.2.0",
|
|
73
|
+
"typescript": "^5.9.2"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@biomejs/biome": "2.2.2",
|
|
77
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
78
|
+
"@rollup/plugin-typescript": "^12.1.4",
|
|
79
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
80
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
81
|
+
"@semantic-release/git": "^10.0.1",
|
|
82
|
+
"@semantic-release/github": "^11.0.4",
|
|
83
|
+
"@semantic-release/npm": "^12.0.2",
|
|
84
|
+
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
85
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
86
|
+
"cpy": "^12.0.1",
|
|
87
|
+
"husky": "^9.1.7",
|
|
88
|
+
"lint-staged": "^16.1.5",
|
|
89
|
+
"rimraf": "^6.0.1",
|
|
90
|
+
"rollup": "^4.48.1",
|
|
91
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
92
|
+
"rollup-plugin-dts": "^6.2.3",
|
|
93
|
+
"rollup-plugin-node-externals": "^8.1.0",
|
|
94
|
+
"semantic-release": "^24.2.7",
|
|
95
|
+
"tslib": "^2.8.1",
|
|
96
|
+
"vite": "^7.1.3"
|
|
97
|
+
}
|
|
94
98
|
}
|