@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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
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 {
|