podlite 0.0.32 → 0.0.34

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Upcoming
4
4
 
5
+ ## 0.0.33
6
+
7
+ - fix api types
8
+
5
9
  ## 0.0.32
6
10
 
7
11
  - add `=formula`, `F<>` support
package/esm/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Podlite } from '@podlite/schema';
2
2
  export interface PodliteOpt {
3
- importPlugins: boolean;
3
+ importPlugins?: boolean;
4
4
  }
5
5
  export declare const podlite: ({ importPlugins }: PodliteOpt) => Podlite;
6
6
  declare const VERSION: any;
package/lib/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Podlite } from '@podlite/schema';
2
2
  export interface PodliteOpt {
3
- importPlugins: boolean;
3
+ importPlugins?: boolean;
4
4
  }
5
5
  export declare const podlite: ({ importPlugins }: PodliteOpt) => Podlite;
6
6
  declare const VERSION: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podlite",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "description": "Podlite - a lightweight block-based markup language",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -30,12 +30,12 @@
30
30
  "url": "https://github.com/podlite/podlite/issues"
31
31
  },
32
32
  "dependencies": {
33
- "@podlite/diagram": "^0.0.23",
34
- "@podlite/formula": "0.0.1",
35
- "@podlite/image": "^0.0.18",
36
- "@podlite/markdown": "0.0.12",
37
- "@podlite/schema": "^0.0.19",
38
- "@podlite/toc": "0.0.12",
33
+ "@podlite/diagram": "^0.0.25",
34
+ "@podlite/formula": "0.0.3",
35
+ "@podlite/image": "^0.0.20",
36
+ "@podlite/markdown": "0.0.14",
37
+ "@podlite/schema": "^0.0.21",
38
+ "@podlite/toc": "0.0.14",
39
39
  "nanoid": "3.1.30"
40
40
  },
41
41
  "devDependencies": {