@hirokisakabe/pom-editor 0.2.1 → 0.2.2

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/dist/AstTree.d.ts CHANGED
@@ -1,8 +1,9 @@
1
+ import React from "react";
1
2
  import type { AstNode } from "./ast.ts";
2
3
  import type { POMNode } from "@hirokisakabe/pom/clientApi";
3
4
  export interface AstTreeProps {
4
5
  ast: AstNode[];
5
6
  onChange: (nodes: POMNode[]) => void;
6
7
  }
7
- export declare function AstTree({ ast, onChange }: AstTreeProps): import("react/jsx-runtime").JSX.Element;
8
+ export declare function AstTree({ ast, onChange }: AstTreeProps): React.JSX.Element;
8
9
  //# sourceMappingURL=AstTree.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AstTree.d.ts","sourceRoot":"","sources":["../src/AstTree.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AACxC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AA0J3D,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,OAAO,EAAE,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,CAAC;CACtC;AAED,wBAAgB,OAAO,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,2CAoEtD"}
1
+ {"version":3,"file":"AstTree.d.ts","sourceRoot":"","sources":["../src/AstTree.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AACxC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AA0J3D,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,OAAO,EAAE,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,CAAC;CACtC;AAED,wBAAgB,OAAO,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,qBAoEtD"}
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  export interface PomAstEditorProps {
2
3
  xml: string;
3
4
  onChange: (xml: string) => void;
4
5
  }
5
- export declare function PomAstEditor({ xml, onChange }: PomAstEditorProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function PomAstEditor({ xml, onChange }: PomAstEditorProps): React.JSX.Element;
6
7
  //# sourceMappingURL=PomAstEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PomAstEditor.d.ts","sourceRoot":"","sources":["../src/PomAstEditor.tsx"],"names":[],"mappings":"AASA,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CACjC;AAED,wBAAgB,YAAY,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,iBAAiB,2CA0DhE"}
1
+ {"version":3,"file":"PomAstEditor.d.ts","sourceRoot":"","sources":["../src/PomAstEditor.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAOnD,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CACjC;AAED,wBAAgB,YAAY,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,iBAAiB,qBA0DhE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hirokisakabe/pom-editor",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Visual AST editor component for pom — drag-and-drop slide structure editing.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,11 +37,11 @@
37
37
  "@dnd-kit/core": "^6.3.1",
38
38
  "@dnd-kit/sortable": "^10.0.0",
39
39
  "@dnd-kit/utilities": "^3.2.2",
40
- "@hirokisakabe/pom": "^8.2.1"
40
+ "@hirokisakabe/pom": "^8.3.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react": "^19",
44
- "typescript-eslint": "^8.59.4"
44
+ "typescript-eslint": "^8.60.1"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"