@thi.ng/geom 6.0.13 → 6.0.15

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/group.d.ts +12 -0
  3. package/package.json +21 -21
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-12-19T11:01:47Z
3
+ - **Last updated**: 2023-12-26T14:10:51Z
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/group.d.ts CHANGED
@@ -1,4 +1,16 @@
1
1
  import type { Attribs, IHiccupShape } from "@thi.ng/geom-api";
2
2
  import { Group } from "./api/group.js";
3
+ /**
4
+ * Creates a group with given attribs and child shapes (nested groups are
5
+ * supported).
6
+ *
7
+ * @remarks
8
+ * Use the special `__inkscapeLayer` control attrib to declare the group as an
9
+ * Inkscape layer and the given value as layer name (only relevant and used when
10
+ * later converted to SVG).
11
+ *
12
+ * @param attribs
13
+ * @param children
14
+ */
3
15
  export declare const group: (attribs?: Attribs, children?: Iterable<IHiccupShape>) => Group;
4
16
  //# sourceMappingURL=group.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom",
3
- "version": "6.0.13",
3
+ "version": "6.0.15",
4
4
  "description": "Functional, polymorphic API for 2D geometry types & SVG generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,32 +37,32 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@thi.ng/api": "^8.9.14",
40
- "@thi.ng/arrays": "^2.7.10",
41
- "@thi.ng/associative": "^6.3.26",
40
+ "@thi.ng/arrays": "^2.7.11",
41
+ "@thi.ng/associative": "^6.3.27",
42
42
  "@thi.ng/checks": "^3.4.14",
43
43
  "@thi.ng/defmulti": "^3.0.12",
44
44
  "@thi.ng/equiv": "^2.1.39",
45
45
  "@thi.ng/errors": "^2.4.8",
46
- "@thi.ng/geom-api": "^3.4.53",
47
- "@thi.ng/geom-arc": "^2.1.96",
48
- "@thi.ng/geom-clip-line": "^2.3.53",
49
- "@thi.ng/geom-clip-poly": "^2.1.95",
50
- "@thi.ng/geom-closest-point": "^2.1.91",
51
- "@thi.ng/geom-hull": "^2.1.91",
52
- "@thi.ng/geom-isec": "^2.1.95",
53
- "@thi.ng/geom-poly-utils": "^2.3.79",
54
- "@thi.ng/geom-resample": "^2.3.17",
55
- "@thi.ng/geom-splines": "^2.2.70",
56
- "@thi.ng/geom-subdiv-curve": "^2.1.95",
57
- "@thi.ng/geom-tessellate": "^2.1.96",
46
+ "@thi.ng/geom-api": "^3.4.54",
47
+ "@thi.ng/geom-arc": "^2.1.97",
48
+ "@thi.ng/geom-clip-line": "^2.3.54",
49
+ "@thi.ng/geom-clip-poly": "^2.1.96",
50
+ "@thi.ng/geom-closest-point": "^2.1.92",
51
+ "@thi.ng/geom-hull": "^2.1.92",
52
+ "@thi.ng/geom-isec": "^2.1.96",
53
+ "@thi.ng/geom-poly-utils": "^2.3.80",
54
+ "@thi.ng/geom-resample": "^2.3.18",
55
+ "@thi.ng/geom-splines": "^2.2.71",
56
+ "@thi.ng/geom-subdiv-curve": "^2.1.96",
57
+ "@thi.ng/geom-tessellate": "^2.1.97",
58
58
  "@thi.ng/hiccup": "^5.1.3",
59
- "@thi.ng/hiccup-svg": "^5.1.1",
59
+ "@thi.ng/hiccup-svg": "^5.2.0",
60
60
  "@thi.ng/math": "^5.7.9",
61
- "@thi.ng/matrices": "^2.3.1",
62
- "@thi.ng/random": "^3.6.20",
61
+ "@thi.ng/matrices": "^2.3.2",
62
+ "@thi.ng/random": "^3.6.21",
63
63
  "@thi.ng/strings": "^3.7.5",
64
- "@thi.ng/transducers": "^8.8.17",
65
- "@thi.ng/vectors": "^7.8.12"
64
+ "@thi.ng/transducers": "^8.8.18",
65
+ "@thi.ng/vectors": "^7.8.13"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@microsoft/api-extractor": "^7.38.3",
@@ -398,5 +398,5 @@
398
398
  ],
399
399
  "year": 2013
400
400
  },
401
- "gitHead": "0d9265be7be13eccf0ef75eaedbfd42626339279\n"
401
+ "gitHead": "f156d361a652cce316c36e0b7df7d2ac5c2dbbf8\n"
402
402
  }