@thi.ng/rdom-forms 0.3.7 → 0.3.9

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 +1 -1
  2. package/compile.js +1 -2
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-04-23T07:02:18Z
3
+ - **Last updated**: 2024-05-08T18:24:32Z
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.
package/compile.js CHANGED
@@ -152,8 +152,7 @@ const __edit = (val) => {
152
152
  const target = e.target;
153
153
  const body = target.value;
154
154
  const ok = match(body);
155
- if (ok)
156
- val.value.next(body);
155
+ if (ok) val.value.next(body);
157
156
  $attribs(target, { invalid: !ok });
158
157
  };
159
158
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rdom-forms",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "description": "Data-driven declarative & extensible HTML form generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,18 +36,18 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.1",
40
- "@thi.ng/checks": "^3.6.3",
41
- "@thi.ng/defmulti": "^3.0.38",
42
- "@thi.ng/hiccup-html": "^2.6.1",
43
- "@thi.ng/rdom": "^1.3.2",
44
- "@thi.ng/rstream": "^8.4.3"
39
+ "@thi.ng/api": "^8.11.2",
40
+ "@thi.ng/checks": "^3.6.4",
41
+ "@thi.ng/defmulti": "^3.0.39",
42
+ "@thi.ng/hiccup-html": "^2.6.3",
43
+ "@thi.ng/rdom": "^1.4.0",
44
+ "@thi.ng/rstream": "^8.5.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@microsoft/api-extractor": "^7.43.0",
48
- "esbuild": "^0.20.2",
49
- "typedoc": "^0.25.12",
50
- "typescript": "^5.4.3"
47
+ "@microsoft/api-extractor": "^7.43.2",
48
+ "esbuild": "^0.21.1",
49
+ "typedoc": "^0.25.13",
50
+ "typescript": "^5.4.5"
51
51
  },
52
52
  "keywords": [
53
53
  "browser",
@@ -96,5 +96,5 @@
96
96
  "status": "alpha",
97
97
  "year": 2023
98
98
  },
99
- "gitHead": "aed3421c21044c005fbcb7cc37965ccf85a870d2\n"
99
+ "gitHead": "df34b4a9e650cc7323575356de207d78933bdcf3\n"
100
100
  }