@thi.ng/rdom-components 0.5.38 → 0.5.39
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/dropdown.d.ts +1 -1
- package/editor.d.ts +1 -1
- package/icon-button.d.ts +1 -1
- package/input.d.ts +1 -1
- package/input.js +1 -1
- package/package.json +13 -13
- package/radio.d.ts +1 -1
- package/radio.js +1 -1
package/CHANGELOG.md
CHANGED
package/dropdown.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Fn } from "@thi.ng/api";
|
|
2
|
-
import { SelectAttribs } from "@thi.ng/hiccup-html/forms";
|
|
2
|
+
import { type SelectAttribs } from "@thi.ng/hiccup-html/forms";
|
|
3
3
|
import type { ISubscribable, Subscription } from "@thi.ng/rstream";
|
|
4
4
|
export interface DropdownOpts<T> {
|
|
5
5
|
attribs: Partial<SelectAttribs>;
|
package/editor.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Fn } from "@thi.ng/api";
|
|
2
2
|
import type { Attribs } from "@thi.ng/hiccup-html";
|
|
3
|
-
import { TextAreaAttribs } from "@thi.ng/hiccup-html/forms";
|
|
3
|
+
import { type TextAreaAttribs } from "@thi.ng/hiccup-html/forms";
|
|
4
4
|
import type { ISubscription } from "@thi.ng/rstream";
|
|
5
5
|
export interface EditorOpts {
|
|
6
6
|
/**
|
package/icon-button.d.ts
CHANGED
package/input.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { NumericArray } from "@thi.ng/api";
|
|
2
2
|
import type { Attribs } from "@thi.ng/hiccup-html";
|
|
3
|
-
import { InputNumericAttribs } from "@thi.ng/hiccup-html/forms";
|
|
3
|
+
import { type InputNumericAttribs } from "@thi.ng/hiccup-html/forms";
|
|
4
4
|
import type { ISubscription } from "@thi.ng/rstream";
|
|
5
5
|
export declare const inputNumeric: (dest: ISubscription<number, number>, attribs?: Partial<InputNumericAttribs>) => [string, import("@thi.ng/api").Nullable<Partial<InputNumericAttribs>>, ...never[]];
|
|
6
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[]];
|
package/input.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { div } from "@thi.ng/hiccup-html/blocks";
|
|
2
|
-
import { inputNumber } from "@thi.ng/hiccup-html/forms";
|
|
2
|
+
import { inputNumber, } from "@thi.ng/hiccup-html/forms";
|
|
3
3
|
import { $inputNum } from "@thi.ng/rdom/event";
|
|
4
4
|
import { pluck } from "@thi.ng/transducers/pluck";
|
|
5
5
|
import { repeatedly } from "@thi.ng/transducers/repeatedly";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom-components",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.39",
|
|
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.7.
|
|
38
|
-
"@thi.ng/associative": "^6.2.
|
|
39
|
-
"@thi.ng/hiccup-html": "^2.2.
|
|
40
|
-
"@thi.ng/rdom": "^0.10.
|
|
41
|
-
"@thi.ng/rstream": "^7.2.
|
|
42
|
-
"@thi.ng/strings": "^3.4.
|
|
43
|
-
"@thi.ng/transducers": "^8.4.
|
|
37
|
+
"@thi.ng/api": "^8.7.5",
|
|
38
|
+
"@thi.ng/associative": "^6.2.33",
|
|
39
|
+
"@thi.ng/hiccup-html": "^2.2.12",
|
|
40
|
+
"@thi.ng/rdom": "^0.10.18",
|
|
41
|
+
"@thi.ng/rstream": "^7.2.46",
|
|
42
|
+
"@thi.ng/strings": "^3.4.3",
|
|
43
|
+
"@thi.ng/transducers": "^8.4.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@microsoft/api-extractor": "^7.34.4",
|
|
47
|
-
"@thi.ng/testament": "^0.3.
|
|
48
|
-
"rimraf": "^4.4.
|
|
47
|
+
"@thi.ng/testament": "^0.3.14",
|
|
48
|
+
"rimraf": "^4.4.1",
|
|
49
49
|
"tools": "^0.0.1",
|
|
50
|
-
"typedoc": "^0.23.
|
|
51
|
-
"typescript": "^
|
|
50
|
+
"typedoc": "^0.23.28",
|
|
51
|
+
"typescript": "^5.0.2"
|
|
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": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
|
|
109
109
|
}
|
package/radio.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Fn, Fn2 } from "@thi.ng/api";
|
|
2
|
-
import { InputRadioAttribs } from "@thi.ng/hiccup-html/forms";
|
|
2
|
+
import { type InputRadioAttribs } from "@thi.ng/hiccup-html/forms";
|
|
3
3
|
import type { ComponentLike } from "@thi.ng/rdom";
|
|
4
4
|
import type { ISubscription } from "@thi.ng/rstream";
|
|
5
5
|
export interface RadioOpts<T> {
|
package/radio.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { div } from "@thi.ng/hiccup-html/blocks";
|
|
2
|
-
import { label, radio } from "@thi.ng/hiccup-html/forms";
|
|
2
|
+
import { label, radio, } from "@thi.ng/hiccup-html/forms";
|
|
3
3
|
import { $input } from "@thi.ng/rdom/event";
|
|
4
4
|
export const staticRadio = (items, sel, opts) => {
|
|
5
5
|
opts = {
|