@thi.ng/hdom 9.1.27 → 9.2.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/README.md +19 -19
  3. package/package.json +23 -16
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-11-30T22:27:37Z
3
+ - **Last updated**: 2022-12-16T12:52:25Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ## [9.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hdom@9.2.0) (2022-12-16)
13
+
14
+ #### 🚀 Features
15
+
16
+ - fix [#358](https://github.com/thi-ng/umbrella/issues/358) add "completed" project status, update pkgs/readmes ([d35fa52](https://github.com/thi-ng/umbrella/commit/d35fa52))
17
+
12
18
  ### [9.1.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/hdom@9.1.6) (2022-04-07)
13
19
 
14
20
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -1,17 +1,23 @@
1
1
  <!-- This file is generated - DO NOT EDIT! -->
2
2
 
3
- # ![hdom](https://media.thi.ng/umbrella/banners-20220914/thing-hdom.svg?5a0cd007)
3
+ # ![@thi.ng/hdom](https://media.thi.ng/umbrella/banners-20220914/thing-hdom.svg?5a0cd007)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@thi.ng/hdom.svg)](https://www.npmjs.com/package/@thi.ng/hdom)
6
6
  ![npm downloads](https://img.shields.io/npm/dm/@thi.ng/hdom.svg)
7
- [![Twitter Follow](https://img.shields.io/twitter/follow/thing_umbrella.svg?style=flat-square&label=twitter)](https://twitter.com/thing_umbrella)
7
+ [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  This project is part of the
10
10
  [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.
11
11
 
12
+ **Update 12/2022: This package is considered completed and no longer being
13
+ updated with new features. Please consider using
14
+ [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom)
15
+ instead...**
16
+
12
17
  - [About](#about)
13
18
  - [Status](#status)
14
19
  - [Support packages](#support-packages)
20
+ - [Related packages](#related-packages)
15
21
  - [Blog posts](#blog-posts)
16
22
  - [Installation](#installation)
17
23
  - [Dependencies](#dependencies)
@@ -52,13 +58,11 @@ This project is part of the
52
58
  - [\_\_skip](#__skip)
53
59
  - [Benchmarks](#benchmarks)
54
60
  - [Authors](#authors)
55
- - [Maintainer](#maintainer)
56
- - [Contributors](#contributors)
57
61
  - [License](#license)
58
62
 
59
63
  ## About
60
64
 
61
- Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors.
65
+ Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors
62
66
 
63
67
  Lightweight UI component tree definition syntax, DOM creation and
64
68
  differential updates using only vanilla JS data structures (arrays,
@@ -98,7 +102,7 @@ Benefits:
98
102
 
99
103
  ## Status
100
104
 
101
- **STABLE** - used in production
105
+ **COMPLETED** - no further development planned
102
106
 
103
107
  [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bhdom%5D+in%3Atitle)
104
108
 
@@ -108,6 +112,10 @@ Benefits:
108
112
  - [@thi.ng/hdom-components](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom-components) - Raw, skinnable UI & SVG components for [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom)
109
113
  - [@thi.ng/hdom-mock](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom-mock) - Mock base implementation for [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom) API
110
114
 
115
+ ## Related packages
116
+
117
+ - [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom) - Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup) compatible
118
+
111
119
  ### Blog posts
112
120
 
113
121
  - [How to UI in 2018](https://medium.com/@thi.ng/how-to-ui-in-2018-ac2ae02acdf3)
@@ -129,11 +137,8 @@ ES module import:
129
137
 
130
138
  For Node.js REPL:
131
139
 
132
- ```text
133
- # with flag only for < v16
134
- node --experimental-repl-await
135
-
136
- > const hdom = await import("@thi.ng/hdom");
140
+ ```js
141
+ const hdom = await import("@thi.ng/hdom");
137
142
  ```
138
143
 
139
144
  You can use the
@@ -1239,13 +1244,8 @@ Some stress test benchmarks are here:
1239
1244
 
1240
1245
  ## Authors
1241
1246
 
1242
- ### Maintainer
1243
-
1244
- - Karsten Schmidt ([@postspectacular](https://github.com/postspectacular))
1245
-
1246
- ### Contributors
1247
-
1248
- - Kevin Nolan ([@allforabit](https://github.com/allforabit))
1247
+ - [Karsten Schmidt](https://thi.ng) (Main author)
1248
+ - [Kevin Nolan](https://github.com/allforabit)
1249
1249
 
1250
1250
  If this project contributes to an academic publication, please cite it as:
1251
1251
 
@@ -1260,4 +1260,4 @@ If this project contributes to an academic publication, please cite it as:
1260
1260
 
1261
1261
  ## License
1262
1262
 
1263
- &copy; 2015 - 2022 Karsten Schmidt // Apache Software License 2.0
1263
+ &copy; 2015 - 2022 Karsten Schmidt // Apache License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hdom",
3
- "version": "9.1.27",
3
+ "version": "9.2.0",
4
4
  "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -21,7 +21,10 @@
21
21
  "url": "https://patreon.com/thing_umbrella"
22
22
  }
23
23
  ],
24
- "author": "Karsten Schmidt <k+npm@thi.ng>",
24
+ "author": "Karsten Schmidt (https://thi.ng)",
25
+ "contributors": [
26
+ "Kevin Nolan (https://github.com/allforabit)"
27
+ ],
25
28
  "license": "Apache-2.0",
26
29
  "scripts": {
27
30
  "build": "yarn clean && tsc --declaration",
@@ -34,23 +37,23 @@
34
37
  "test": "testament test"
35
38
  },
36
39
  "dependencies": {
37
- "@thi.ng/api": "^8.5.1",
38
- "@thi.ng/checks": "^3.3.4",
39
- "@thi.ng/diff": "^5.1.18",
40
- "@thi.ng/equiv": "^2.1.14",
41
- "@thi.ng/errors": "^2.2.5",
42
- "@thi.ng/hiccup": "^4.2.25",
43
- "@thi.ng/logger": "^1.4.4",
44
- "@thi.ng/prefixes": "^2.1.14"
40
+ "@thi.ng/api": "^8.6.0",
41
+ "@thi.ng/checks": "^3.3.5",
42
+ "@thi.ng/diff": "^5.1.19",
43
+ "@thi.ng/equiv": "^2.1.15",
44
+ "@thi.ng/errors": "^2.2.6",
45
+ "@thi.ng/hiccup": "^4.2.26",
46
+ "@thi.ng/logger": "^1.4.5",
47
+ "@thi.ng/prefixes": "^2.1.15"
45
48
  },
46
49
  "devDependencies": {
47
- "@microsoft/api-extractor": "^7.33.5",
48
- "@thi.ng/atom": "^5.1.24",
49
- "@thi.ng/testament": "^0.3.6",
50
+ "@microsoft/api-extractor": "^7.33.7",
51
+ "@thi.ng/atom": "^5.1.25",
52
+ "@thi.ng/testament": "^0.3.7",
50
53
  "rimraf": "^3.0.2",
51
54
  "tools": "^0.0.1",
52
- "typedoc": "^0.23.20",
53
- "typescript": "^4.8.4"
55
+ "typedoc": "^0.23.22",
56
+ "typescript": "^4.9.4"
54
57
  },
55
58
  "keywords": [
56
59
  "array",
@@ -122,7 +125,11 @@
122
125
  "url": "https://medium.com/@thi.ng/of-umbrellas-transducers-reactive-streams-mushrooms-pt-1-a8717ce3a170"
123
126
  }
124
127
  ],
128
+ "related": [
129
+ "rdom"
130
+ ],
131
+ "status": "completed",
125
132
  "year": 2015
126
133
  },
127
- "gitHead": "1fe40da507070653f420156d91e6b27cf682004f\n"
134
+ "gitHead": "f445a9cc8022bcdebbf6ff91fd66ced016d72f01\n"
128
135
  }