@thi.ng/rdom-forms 1.0.44 → 1.0.48
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/package.json +101 -101
- package/CHANGELOG.md +0 -64
package/package.json
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
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
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
}
|
|
2
|
+
"name": "@thi.ng/rdom-forms",
|
|
3
|
+
"version": "1.0.48",
|
|
4
|
+
"description": "Data-driven declarative & extensible HTML form generation",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./index.js",
|
|
7
|
+
"typings": "./index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/thi-ng/umbrella.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://thi.ng/rdom-forms",
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/postspectacular"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "patreon",
|
|
21
|
+
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "liberapay",
|
|
25
|
+
"url": "https://liberapay.com/thi.ng"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "yarn build:esbuild && yarn build:decl",
|
|
32
|
+
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
33
|
+
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
34
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
35
|
+
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
36
|
+
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
37
|
+
"pub": "npm publish --access public",
|
|
38
|
+
"test": "bun test",
|
|
39
|
+
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@thi.ng/api": "^8.12.6",
|
|
43
|
+
"@thi.ng/checks": "^3.7.22",
|
|
44
|
+
"@thi.ng/defmulti": "^3.0.82",
|
|
45
|
+
"@thi.ng/hiccup-html": "^2.7.38",
|
|
46
|
+
"@thi.ng/rdom": "^1.7.64",
|
|
47
|
+
"@thi.ng/rstream": "^9.3.3"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"esbuild": "^0.25.11",
|
|
51
|
+
"typedoc": "^0.28.14",
|
|
52
|
+
"typescript": "^5.9.3"
|
|
53
|
+
},
|
|
54
|
+
"keywords": [
|
|
55
|
+
"browser",
|
|
56
|
+
"component",
|
|
57
|
+
"declarative",
|
|
58
|
+
"dom",
|
|
59
|
+
"form",
|
|
60
|
+
"hiccup",
|
|
61
|
+
"html",
|
|
62
|
+
"rdom",
|
|
63
|
+
"reactive",
|
|
64
|
+
"rstream",
|
|
65
|
+
"typescript",
|
|
66
|
+
"ui"
|
|
67
|
+
],
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"browser": {
|
|
72
|
+
"process": false,
|
|
73
|
+
"setTimeout": false
|
|
74
|
+
},
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": ">=18"
|
|
77
|
+
},
|
|
78
|
+
"files": [
|
|
79
|
+
"./*.js",
|
|
80
|
+
"./*.d.ts"
|
|
81
|
+
],
|
|
82
|
+
"exports": {
|
|
83
|
+
".": {
|
|
84
|
+
"default": "./index.js"
|
|
85
|
+
},
|
|
86
|
+
"./api": {
|
|
87
|
+
"default": "./api.js"
|
|
88
|
+
},
|
|
89
|
+
"./compile": {
|
|
90
|
+
"default": "./compile.js"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"thi.ng": {
|
|
94
|
+
"parent": "@thi.ng/rdom",
|
|
95
|
+
"related": [
|
|
96
|
+
"rdom-components"
|
|
97
|
+
],
|
|
98
|
+
"status": "alpha",
|
|
99
|
+
"year": 2023
|
|
100
|
+
},
|
|
101
|
+
"gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
|
|
102
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
- **Last updated**: 2025-09-01T16:38:35Z
|
|
4
|
-
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
|
-
|
|
6
|
-
All notable changes to this project will be documented in this file.
|
|
7
|
-
Only versions published since **2022-01-01** are listed here.
|
|
8
|
-
Please consult the Git history for older version information.
|
|
9
|
-
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
10
|
-
|
|
11
|
-
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
|
-
and/or version bumps of transitive dependencies.
|
|
13
|
-
|
|
14
|
-
### [1.0.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@1.0.2) (2025-01-10)
|
|
15
|
-
|
|
16
|
-
#### 🩹 Bug fixes
|
|
17
|
-
|
|
18
|
-
- update `Num` element spec ([33b1f67](https://github.com/thi-ng/umbrella/commit/33b1f67))
|
|
19
|
-
- allow `any` as `step` value
|
|
20
|
-
|
|
21
|
-
## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.4.0) (2024-10-05)
|
|
22
|
-
|
|
23
|
-
#### 🚀 Features
|
|
24
|
-
|
|
25
|
-
- update attrib & value config handling ([7495584](https://github.com/thi-ng/umbrella/commit/7495584))
|
|
26
|
-
- allow reactive attributes in more places
|
|
27
|
-
- don't generate event handlers if widget spec has no `value` option
|
|
28
|
-
- always apply user provided attribs (incl. event handlers) last
|
|
29
|
-
|
|
30
|
-
### [0.3.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.3.1) (2024-03-28)
|
|
31
|
-
|
|
32
|
-
#### 🩹 Bug fixes
|
|
33
|
-
|
|
34
|
-
- fix multiFile() handling/detection ([5339339](https://github.com/thi-ng/umbrella/commit/5339339))
|
|
35
|
-
|
|
36
|
-
## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.3.0) (2024-03-27)
|
|
37
|
-
|
|
38
|
-
#### 🚀 Features
|
|
39
|
-
|
|
40
|
-
- add hidden(), reset() & submit() field types ([3304ee4](https://github.com/thi-ng/umbrella/commit/3304ee4))
|
|
41
|
-
|
|
42
|
-
## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.2.0) (2023-12-11)
|
|
43
|
-
|
|
44
|
-
#### 🚀 Features
|
|
45
|
-
|
|
46
|
-
- update range() value label handling ([41f97d3](https://github.com/thi-ng/umbrella/commit/41f97d3))
|
|
47
|
-
- add value type generics for selectXX/multiSelectXX ([55d9897](https://github.com/thi-ng/umbrella/commit/55d9897))
|
|
48
|
-
- make attribs type-specifc ([5c6de7f](https://github.com/thi-ng/umbrella/commit/5c6de7f))
|
|
49
|
-
|
|
50
|
-
#### 🩹 Bug fixes
|
|
51
|
-
|
|
52
|
-
- fix trigger() event handler ([9faaf26](https://github.com/thi-ng/umbrella/commit/9faaf26))
|
|
53
|
-
|
|
54
|
-
## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.1.0) (2023-12-09)
|
|
55
|
-
|
|
56
|
-
#### 🚀 Features
|
|
57
|
-
|
|
58
|
-
- import as new pkg ([894e58d](https://github.com/thi-ng/umbrella/commit/894e58d))
|
|
59
|
-
- add docs, update generateForm(), factories ([716a988](https://github.com/thi-ng/umbrella/commit/716a988))
|
|
60
|
-
- add BehaviorOpts.values, update value attrib handling ([1283d80](https://github.com/thi-ng/umbrella/commit/1283d80))
|
|
61
|
-
|
|
62
|
-
#### 🩹 Bug fixes
|
|
63
|
-
|
|
64
|
-
- fix radio attribs ([7bb28ca](https://github.com/thi-ng/umbrella/commit/7bb28ca))
|