@thi.ng/rdom-forms 0.4.11 → 1.0.2

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-12-27T14:11:37Z
3
+ - **Last updated**: 2025-01-10T10:06:26Z
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,13 @@ 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
+ ### [1.0.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@1.0.2) (2025-01-10)
13
+
14
+ #### 🩹 Bug fixes
15
+
16
+ - update `Num` element spec ([33b1f67](https://github.com/thi-ng/umbrella/commit/33b1f67))
17
+ - allow `any` as `step` value
18
+
12
19
  ## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rdom-forms@0.4.0) (2024-10-05)
13
20
 
14
21
  #### 🚀 Features
package/README.md CHANGED
@@ -186,4 +186,4 @@ If this project contributes to an academic publication, please cite it as:
186
186
 
187
187
  ## License
188
188
 
189
- © 2023 - 2024 Karsten Schmidt // Apache License 2.0
189
+ © 2023 - 2025 Karsten Schmidt // Apache License 2.0
package/api.d.ts CHANGED
@@ -69,7 +69,7 @@ export interface Num extends Value, WithPresets<number> {
69
69
  max?: number;
70
70
  placeholder?: StringAttrib;
71
71
  size?: number;
72
- step?: number;
72
+ step?: number | "any";
73
73
  value?: ISubscription<number, number>;
74
74
  attribs?: Partial<InputNumericAttribs>;
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rdom-forms",
3
- "version": "0.4.11",
3
+ "version": "1.0.2",
4
4
  "description": "Data-driven declarative & extensible HTML form generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,12 +40,12 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.15",
44
- "@thi.ng/checks": "^3.6.17",
45
- "@thi.ng/defmulti": "^3.0.53",
46
- "@thi.ng/hiccup-html": "^2.7.12",
47
- "@thi.ng/rdom": "^1.7.17",
48
- "@thi.ng/rstream": "^9.2.2"
43
+ "@thi.ng/api": "^8.11.16",
44
+ "@thi.ng/checks": "^3.6.18",
45
+ "@thi.ng/defmulti": "^3.0.54",
46
+ "@thi.ng/hiccup-html": "^2.7.14",
47
+ "@thi.ng/rdom": "^1.7.18",
48
+ "@thi.ng/rstream": "^9.2.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.48.1",
@@ -100,5 +100,5 @@
100
100
  "status": "alpha",
101
101
  "year": 2023
102
102
  },
103
- "gitHead": "48bf4c22bf23f88ac99f435106af2214f79a0be1\n"
103
+ "gitHead": "d52592c42d33072925fb531e70e2879fd52b26e6\n"
104
104
  }