@svgsketch/core 0.1.0 → 0.2.0

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/index.d.mts CHANGED
@@ -904,6 +904,12 @@ interface SerializedGroup {
904
904
  * so that SVG document order (painting order) is preserved.
905
905
  */
906
906
  siblingIndex?: number;
907
+ /** Plugin that owns this group (e.g. 'svgsketch-charts') */
908
+ pluginId?: string;
909
+ /** Serialized plugin-specific state (JSON string) */
910
+ pluginData?: string;
911
+ /** Additional custom data-* attributes set by plugins */
912
+ attributes?: Record<string, string>;
907
913
  }
908
914
  /** Serialized clip or mask group */
909
915
  interface SerializedClipMaskGroup {
package/dist/index.d.ts CHANGED
@@ -904,6 +904,12 @@ interface SerializedGroup {
904
904
  * so that SVG document order (painting order) is preserved.
905
905
  */
906
906
  siblingIndex?: number;
907
+ /** Plugin that owns this group (e.g. 'svgsketch-charts') */
908
+ pluginId?: string;
909
+ /** Serialized plugin-specific state (JSON string) */
910
+ pluginData?: string;
911
+ /** Additional custom data-* attributes set by plugins */
912
+ attributes?: Record<string, string>;
907
913
  }
908
914
  /** Serialized clip or mask group */
909
915
  interface SerializedClipMaskGroup {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@svgsketch/core",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "description": "Core types, document format, and rendering engine for SVGSketch",
6
6
  "main": "dist/index.js",