@thi.ng/hiccup-markdown 3.2.55 → 3.2.56

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**: 2024-01-23T15:58:27Z
3
+ - **Last updated**: 2024-01-26T18:03:04Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hiccup-markdown",
3
- "version": "3.2.55",
3
+ "version": "3.2.56",
4
4
  "description": "Markdown parser & serializer from/to Hiccup format",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,17 +35,17 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.17",
39
- "@thi.ng/arrays": "^2.7.14",
40
- "@thi.ng/checks": "^3.4.17",
41
- "@thi.ng/defmulti": "^3.0.15",
38
+ "@thi.ng/api": "^8.9.18",
39
+ "@thi.ng/arrays": "^2.7.15",
40
+ "@thi.ng/checks": "^3.4.18",
41
+ "@thi.ng/defmulti": "^3.0.16",
42
42
  "@thi.ng/emoji": "^0.1.23",
43
43
  "@thi.ng/errors": "^2.4.11",
44
- "@thi.ng/hiccup": "^5.1.6",
44
+ "@thi.ng/hiccup": "^5.1.7",
45
45
  "@thi.ng/logger": "^2.1.4",
46
- "@thi.ng/parse": "^2.4.15",
47
- "@thi.ng/strings": "^3.7.8",
48
- "@thi.ng/text-canvas": "^2.6.30"
46
+ "@thi.ng/parse": "^2.4.16",
47
+ "@thi.ng/strings": "^3.7.9",
48
+ "@thi.ng/text-canvas": "^2.6.31"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.39.0",
@@ -98,5 +98,5 @@
98
98
  ],
99
99
  "year": 2018
100
100
  },
101
- "gitHead": "417b5a7ea7bd54a3b4f086fe0fc2ce8e8933c9b2\n"
101
+ "gitHead": "7426e2ae6fca5482c6eaf649872296fc89955374\n"
102
102
  }
package/serialize.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- interface SerializeState {
1
+ export interface SerializeState {
2
2
  indent: number;
3
3
  sep: string;
4
4
  id?: number;
@@ -7,5 +7,4 @@ interface SerializeState {
7
7
  }
8
8
  export declare const serialize: (tree: any, ctx: any) => string;
9
9
  export declare const serializeElement: import("@thi.ng/defmulti").MultiFn3<any, any, SerializeState, string>;
10
- export {};
11
10
  //# sourceMappingURL=serialize.d.ts.map