@thi.ng/rdom-components 0.4.9 → 0.4.12
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 +1 -1
- package/input.d.ts +3 -3
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
package/input.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { NumericArray } from "@thi.ng/api";
|
|
|
2
2
|
import type { Attribs } from "@thi.ng/hiccup-html";
|
|
3
3
|
import { InputNumericAttribs } from "@thi.ng/hiccup-html/forms";
|
|
4
4
|
import type { ISubscription } from "@thi.ng/rstream";
|
|
5
|
-
export declare const inputNumeric: (dest: ISubscription<number, number>, attribs?: Partial<InputNumericAttribs>
|
|
6
|
-
export declare const inputVector: (dim: number, dest: ISubscription<NumericArray, NumericArray>, outerAttribs?: Partial<Attribs>, innerAttribs?: Partial<InputNumericAttribs>
|
|
7
|
-
export declare const inputVectorCoord: (dim: number, i: number, dest: ISubscription<NumericArray, NumericArray>, attribs?: Partial<InputNumericAttribs>
|
|
5
|
+
export declare const inputNumeric: (dest: ISubscription<number, number>, attribs?: Partial<InputNumericAttribs>) => [string, import("@thi.ng/api").Nullable<Partial<InputNumericAttribs>>, ...never[]];
|
|
6
|
+
export declare const inputVector: (dim: number, dest: ISubscription<NumericArray, NumericArray>, outerAttribs?: Partial<Attribs>, innerAttribs?: Partial<InputNumericAttribs>) => [string, import("@thi.ng/api").Nullable<Partial<Attribs>>, ...any[]];
|
|
7
|
+
export declare const inputVectorCoord: (dim: number, i: number, dest: ISubscription<NumericArray, NumericArray>, attribs?: Partial<InputNumericAttribs>) => [string, import("@thi.ng/api").Nullable<Partial<InputNumericAttribs>>, ...never[]];
|
|
8
8
|
//# sourceMappingURL=input.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom-components",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12",
|
|
4
4
|
"description": "Collection of unstyled, customizable components for @thi.ng/rdom",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.3.
|
|
38
|
-
"@thi.ng/associative": "^6.1.
|
|
39
|
-
"@thi.ng/hiccup-html": "^2.1.
|
|
40
|
-
"@thi.ng/rdom": "^0.8.
|
|
41
|
-
"@thi.ng/rstream": "^7.2.
|
|
42
|
-
"@thi.ng/strings": "^3.3.
|
|
43
|
-
"@thi.ng/transducers": "^8.3.
|
|
37
|
+
"@thi.ng/api": "^8.3.7",
|
|
38
|
+
"@thi.ng/associative": "^6.1.11",
|
|
39
|
+
"@thi.ng/hiccup-html": "^2.1.7",
|
|
40
|
+
"@thi.ng/rdom": "^0.8.12",
|
|
41
|
+
"@thi.ng/rstream": "^7.2.9",
|
|
42
|
+
"@thi.ng/strings": "^3.3.5",
|
|
43
|
+
"@thi.ng/transducers": "^8.3.6"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@microsoft/api-extractor": "^7.
|
|
47
|
-
"@thi.ng/testament": "^0.2.
|
|
46
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
47
|
+
"@thi.ng/testament": "^0.2.8",
|
|
48
48
|
"rimraf": "^3.0.2",
|
|
49
49
|
"tools": "^0.0.1",
|
|
50
|
-
"typedoc": "^0.22.
|
|
51
|
-
"typescript": "^4.
|
|
50
|
+
"typedoc": "^0.22.17",
|
|
51
|
+
"typescript": "^4.7.3"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"browser",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"status": "alpha",
|
|
106
106
|
"year": 2020
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "e64b1ab39ae9bcc494ef006f6329e5182fa2a326\n"
|
|
109
109
|
}
|