@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-14T13:27:19Z
3
+ - **Last updated**: 2023-03-27T19:05:49Z
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/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
@@ -1,5 +1,5 @@
1
1
  import type { MaybeDeref } from "@thi.ng/api";
2
- import { InputAttribs } from "@thi.ng/hiccup-html/forms";
2
+ import { type InputAttribs } from "@thi.ng/hiccup-html/forms";
3
3
  export interface IconButtonOpts {
4
4
  attribs: Partial<InputAttribs>;
5
5
  icon: any;
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.38",
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.4",
38
- "@thi.ng/associative": "^6.2.32",
39
- "@thi.ng/hiccup-html": "^2.2.11",
40
- "@thi.ng/rdom": "^0.10.17",
41
- "@thi.ng/rstream": "^7.2.45",
42
- "@thi.ng/strings": "^3.4.2",
43
- "@thi.ng/transducers": "^8.4.0"
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.13",
48
- "rimraf": "^4.4.0",
47
+ "@thi.ng/testament": "^0.3.14",
48
+ "rimraf": "^4.4.1",
49
49
  "tools": "^0.0.1",
50
- "typedoc": "^0.23.26",
51
- "typescript": "^4.9.5"
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": "1359645f3af8a7d0d43fe7944ea5cd865832f8ee\n"
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 = {