@thi.ng/rdom-components 1.0.43 → 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 +114 -114
- package/CHANGELOG.md +0 -54
package/package.json
CHANGED
|
@@ -1,115 +1,115 @@
|
|
|
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
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
2
|
+
"name": "@thi.ng/rdom-components",
|
|
3
|
+
"version": "1.0.48",
|
|
4
|
+
"description": "Collection of unstyled, customizable components for @thi.ng/rdom",
|
|
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-components",
|
|
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/hiccup-html": "^2.7.38",
|
|
44
|
+
"@thi.ng/object-utils": "^1.2.14",
|
|
45
|
+
"@thi.ng/rdom": "^1.7.64",
|
|
46
|
+
"@thi.ng/rstream": "^9.3.3",
|
|
47
|
+
"@thi.ng/strings": "^3.9.26",
|
|
48
|
+
"@thi.ng/transducers": "^9.6.14"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"esbuild": "^0.25.11",
|
|
52
|
+
"typedoc": "^0.28.14",
|
|
53
|
+
"typescript": "^5.9.3"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"browser",
|
|
57
|
+
"component",
|
|
58
|
+
"dom",
|
|
59
|
+
"hiccup",
|
|
60
|
+
"html",
|
|
61
|
+
"rdom",
|
|
62
|
+
"reactive",
|
|
63
|
+
"rstream",
|
|
64
|
+
"typescript",
|
|
65
|
+
"ui"
|
|
66
|
+
],
|
|
67
|
+
"publishConfig": {
|
|
68
|
+
"access": "public"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=18"
|
|
72
|
+
},
|
|
73
|
+
"files": [
|
|
74
|
+
"./*.js",
|
|
75
|
+
"./*.d.ts"
|
|
76
|
+
],
|
|
77
|
+
"exports": {
|
|
78
|
+
".": {
|
|
79
|
+
"default": "./index.js"
|
|
80
|
+
},
|
|
81
|
+
"./accordion": {
|
|
82
|
+
"default": "./accordion.js"
|
|
83
|
+
},
|
|
84
|
+
"./dropdown": {
|
|
85
|
+
"default": "./dropdown.js"
|
|
86
|
+
},
|
|
87
|
+
"./editor": {
|
|
88
|
+
"default": "./editor.js"
|
|
89
|
+
},
|
|
90
|
+
"./icon-button": {
|
|
91
|
+
"default": "./icon-button.js"
|
|
92
|
+
},
|
|
93
|
+
"./input": {
|
|
94
|
+
"default": "./input.js"
|
|
95
|
+
},
|
|
96
|
+
"./radio": {
|
|
97
|
+
"default": "./radio.js"
|
|
98
|
+
},
|
|
99
|
+
"./ruler": {
|
|
100
|
+
"default": "./ruler.js"
|
|
101
|
+
},
|
|
102
|
+
"./tabs": {
|
|
103
|
+
"default": "./tabs.js"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"thi.ng": {
|
|
107
|
+
"parent": "@thi.ng/rdom",
|
|
108
|
+
"related": [
|
|
109
|
+
"rdom-canvas"
|
|
110
|
+
],
|
|
111
|
+
"status": "alpha",
|
|
112
|
+
"year": 2020
|
|
113
|
+
},
|
|
114
|
+
"gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
|
|
115
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,54 +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
|
-
## [0.7.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-components@0.7.0) (2024-07-08)
|
|
15
|
-
|
|
16
|
-
#### 🚀 Features
|
|
17
|
-
|
|
18
|
-
- add verticalRuler() ([00e848f](https://github.com/thi-ng/umbrella/commit/00e848f))
|
|
19
|
-
|
|
20
|
-
### [0.6.59](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-components@0.6.59) (2024-02-22)
|
|
21
|
-
|
|
22
|
-
#### ♻️ Refactoring
|
|
23
|
-
|
|
24
|
-
- update object destructuring in all pkgs & examples ([f36aeb0](https://github.com/thi-ng/umbrella/commit/f36aeb0))
|
|
25
|
-
|
|
26
|
-
### [0.6.33](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-components@0.6.33) (2023-11-09)
|
|
27
|
-
|
|
28
|
-
#### ♻️ Refactoring
|
|
29
|
-
|
|
30
|
-
- update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
|
|
31
|
-
|
|
32
|
-
### [0.6.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-components@0.6.6) (2023-08-04)
|
|
33
|
-
|
|
34
|
-
#### ♻️ Refactoring
|
|
35
|
-
|
|
36
|
-
- update `identity` usage in various pkgs ([b6db053](https://github.com/thi-ng/umbrella/commit/b6db053))
|
|
37
|
-
|
|
38
|
-
## [0.6.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-components@0.6.0) (2023-04-08)
|
|
39
|
-
|
|
40
|
-
#### 🚀 Features
|
|
41
|
-
|
|
42
|
-
- add staticDropdownAlt(), add docs ([0f1b922](https://github.com/thi-ng/umbrella/commit/0f1b922))
|
|
43
|
-
|
|
44
|
-
#### 🩹 Bug fixes
|
|
45
|
-
|
|
46
|
-
- update dropdown args & attrib handling ([f2bd62b](https://github.com/thi-ng/umbrella/commit/f2bd62b))
|
|
47
|
-
- update static/dynamicDropdown()
|
|
48
|
-
- allow user attribs to supply onchange handler
|
|
49
|
-
|
|
50
|
-
## [0.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-components@0.5.0) (2022-07-12)
|
|
51
|
-
|
|
52
|
-
#### 🚀 Features
|
|
53
|
-
|
|
54
|
-
- update dropdown generics ([11809c7](https://github.com/thi-ng/umbrella/commit/11809c7))
|