@mosaicoo/svg-engine 0.1.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.
@@ -0,0 +1,30 @@
1
+ /**
2
+ * SVGEngine — primary entry point.
3
+ *
4
+ * This package follows a **secondary-only entry point** pattern (D-018).
5
+ * Importing from `'svg-engine'` directly is discouraged and exports nothing
6
+ * useful. Use one of the secondary entry points instead, matching the
7
+ * functional layer you need:
8
+ *
9
+ * import { SvgNode, EditorStateService } from '@mosaicoo/svg-engine/core';
10
+ * import { SvgRenderer } from '@mosaicoo/svg-engine/render';
11
+ * import { SvgParser, SvgSerializer } from '@mosaicoo/svg-engine/io';
12
+ * import { OptimizationPipeline } from '@mosaicoo/svg-engine/optimize';
13
+ * import { SelectionService } from '@mosaicoo/svg-engine/edit';
14
+ * import { SvgEditorComponent } from '@mosaicoo/svg-engine/ui';
15
+ *
16
+ * Rationale: tree-shaking guarantee + headless boundary enforcement
17
+ * (D-017). Consumers wanting only render/optimize never pull `@angular/material`
18
+ * into their bundle.
19
+ */
20
+ /**
21
+ * Library version string. **Must stay in lockstep with the
22
+ * `version` field of `projects/svg-engine/package.json`** — release
23
+ * tooling (D-031 / `standard-version`) bumps both in the same commit.
24
+ *
25
+ * Surfaced for consumers that want to log/warn on version mismatch,
26
+ * or for debugging which build is currently embedded in a host app.
27
+ */
28
+ declare const SVG_ENGINE_VERSION = "0.1.0";
29
+
30
+ export { SVG_ENGINE_VERSION };