@thi.ng/imgui 2.1.61 → 2.1.63
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/components/textlabel.d.ts +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ import type { ReadonlyVec } from "@thi.ng/vectors";
|
|
|
4
4
|
import type { Color, GUITheme } from "../api.js";
|
|
5
5
|
import type { IMGUI } from "../gui.js";
|
|
6
6
|
export declare const textLabel: (gui: IMGUI, layout: IGridLayout | LayoutBox, label: string, pad?: boolean) => void;
|
|
7
|
-
export declare const textLabelRaw: (p: ReadonlyVec, attribs: Color | any, label: string) => (string | Record<string, any>)[];
|
|
7
|
+
export declare const textLabelRaw: (p: ReadonlyVec, attribs: Color | any, label: string) => (string | ReadonlyVec | Record<string, any>)[];
|
|
8
8
|
export declare const textTransformH: (theme: GUITheme, x: number, y: number, _: number, h: number) => number[];
|
|
9
9
|
export declare const textTransformV: (theme: GUITheme, x: number, y: number, w: number, h: number) => number[];
|
|
10
10
|
export declare const dialValueLabel: (gui: IMGUI, id: string, key: number, v: number, x: number, y: number, label: string | undefined, fmt: Fn<number, string> | undefined) => any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/imgui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.63",
|
|
4
4
|
"description": "Immediate mode GUI with flexible state handling & data only shape output",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,24 +34,24 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/geom": "^
|
|
40
|
-
"@thi.ng/geom-api": "^3.4.
|
|
41
|
-
"@thi.ng/geom-isec": "^2.1.
|
|
42
|
-
"@thi.ng/geom-tessellate": "^2.1.
|
|
43
|
-
"@thi.ng/layout": "^2.1.
|
|
44
|
-
"@thi.ng/math": "^5.4.
|
|
45
|
-
"@thi.ng/transducers": "^8.4.
|
|
46
|
-
"@thi.ng/vectors": "^7.6.
|
|
37
|
+
"@thi.ng/api": "^8.8.0",
|
|
38
|
+
"@thi.ng/checks": "^3.3.12",
|
|
39
|
+
"@thi.ng/geom": "^5.0.1",
|
|
40
|
+
"@thi.ng/geom-api": "^3.4.14",
|
|
41
|
+
"@thi.ng/geom-isec": "^2.1.56",
|
|
42
|
+
"@thi.ng/geom-tessellate": "^2.1.56",
|
|
43
|
+
"@thi.ng/layout": "^2.1.26",
|
|
44
|
+
"@thi.ng/math": "^5.4.8",
|
|
45
|
+
"@thi.ng/transducers": "^8.4.3",
|
|
46
|
+
"@thi.ng/vectors": "^7.6.12"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@microsoft/api-extractor": "^7.34.4",
|
|
50
|
-
"@thi.ng/testament": "^0.3.
|
|
50
|
+
"@thi.ng/testament": "^0.3.15",
|
|
51
51
|
"rimraf": "^4.4.1",
|
|
52
52
|
"tools": "^0.0.1",
|
|
53
53
|
"typedoc": "^0.23.28",
|
|
54
|
-
"typescript": "^5.0.
|
|
54
|
+
"typescript": "^5.0.4"
|
|
55
55
|
},
|
|
56
56
|
"keywords": [
|
|
57
57
|
"browser",
|
|
@@ -158,5 +158,5 @@
|
|
|
158
158
|
],
|
|
159
159
|
"year": 2019
|
|
160
160
|
},
|
|
161
|
-
"gitHead": "
|
|
161
|
+
"gitHead": "3a56bc490f1e68754762a503d06327b5b34ff7eb\n"
|
|
162
162
|
}
|