@thi.ng/rdom-forms 1.0.1 → 1.0.3

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**: 2025-01-04T21:07:38Z
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/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": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Data-driven declarative & extensible HTML form generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -41,11 +41,11 @@
41
41
  },
42
42
  "dependencies": {
43
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.13",
47
- "@thi.ng/rdom": "^1.7.18",
48
- "@thi.ng/rstream": "^9.2.3"
44
+ "@thi.ng/checks": "^3.6.19",
45
+ "@thi.ng/defmulti": "^3.0.55",
46
+ "@thi.ng/hiccup-html": "^2.7.14",
47
+ "@thi.ng/rdom": "^1.7.19",
48
+ "@thi.ng/rstream": "^9.2.4"
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": "56c1d57a96565bbcc8c06c73779a619bba0db368\n"
103
+ "gitHead": "6542b842120bef47cc18d45a1b1db68307a7f04b\n"
104
104
  }