@etrepum/lexical-builder-devtools-core 0.0.34 → 0.0.36-nightly.20240813.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,5 @@
1
1
  import { LexicalEditor } from 'lexical';
2
2
  import { ComponentProps } from 'react';
3
-
4
3
  export interface BuilderGraphComponentProps {
5
4
  editor: LexicalEditor;
6
5
  className?: string;
package/dist/Mermaid.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { MermaidConfig, RenderResult } from 'mermaid';
2
2
  import { ComponentProps } from 'react';
3
-
4
3
  export interface MermaidProps extends ComponentProps<"div"> {
5
4
  text: string;
6
5
  config?: MermaidConfig;
@@ -1,4 +1,3 @@
1
1
  import { LexicalEditor } from 'lexical';
2
-
3
2
  export declare function buildGraph(editor: LexicalEditor): string;
4
3
  //# sourceMappingURL=buildGraph.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import { AnyLexicalPlan } from '@etrepum/lexical-builder';
2
-
3
2
  export declare function displayName(plan: AnyLexicalPlan): string;
4
3
  //# sourceMappingURL=displayName.d.ts.map
package/dist/index.js CHANGED
@@ -74,7 +74,7 @@ const k = y({
74
74
  Component: () => /* @__PURE__ */ c(h, { children: /* @__PURE__ */ c(E, { editor: t }) })
75
75
  });
76
76
  }
77
- }), w = "0.0.34";
77
+ }), w = "0.0.36-nightly.20240813.0";
78
78
  export {
79
79
  E as BuilderGraphComponent,
80
80
  k as BuilderGraphPlan,
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "lint": "eslint",
17
17
  "test:watch": "vitest"
18
18
  },
19
- "version": "0.0.34",
19
+ "version": "0.0.36-nightly.20240813.0",
20
20
  "license": "MIT",
21
21
  "repository": {
22
22
  "type": "git",
@@ -53,14 +53,18 @@
53
53
  "eslint": "^8.57.0",
54
54
  "jsdom": "^24.1.0",
55
55
  "tslib": "^2.6.2",
56
- "typescript": "^5.4.5",
57
- "vite": "^5.2.11",
58
- "vite-plugin-dts": "*",
59
- "vite-plugin-package-version": "*",
60
- "vitest": "*"
56
+ "typescript": "^5.5.2",
57
+ "vite": "^5.4.0",
58
+ "vite-plugin-dts": "^4.0.2",
59
+ "vite-plugin-package-version": "^1.1.0",
60
+ "vitest": "^2.0.5"
61
+ },
62
+ "exports": {
63
+ ".": {
64
+ "types": "./dist/index.d.ts",
65
+ "default": "./dist/index.js"
66
+ }
61
67
  },
62
- "module": "dist/index.js",
63
- "types": "dist/index.d.ts",
64
68
  "files": [
65
69
  "dist"
66
70
  ]