@myrmidon/gve-snapshot-rendition 2.0.4 → 2.0.5
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/core/gve-snapshot-rendition.d.ts +0 -36
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +483 -470
- package/dist/index.js.map +1 -1
- package/dist/rendering/feature-resolver.d.ts +3 -4
- package/dist/rendering/svg-utils.d.ts +2 -23
- package/dist/rendering/text-layout.d.ts +3 -27
- package/dist/rendering/text-renderer.d.ts +2 -9
- package/dist/ui/details-area.d.ts +0 -30
- package/dist/ui/toolbar.d.ts +0 -10
- package/dist/utils/feature-utils.d.ts +3 -7
- package/package.json +8 -8
- package/dist/src/rendering/spreading-engine.d.ts +0 -98
|
@@ -30,17 +30,6 @@ export declare class GveSnapshotRendition extends HTMLElement {
|
|
|
30
30
|
private _hilites?;
|
|
31
31
|
private _panZoomInstance?;
|
|
32
32
|
private _keyboardHandler?;
|
|
33
|
-
private _mainSplit?;
|
|
34
|
-
private _bottomSplit?;
|
|
35
|
-
private _verticalSplit?;
|
|
36
|
-
private static readonly LAYOUT_STORAGE_KEY;
|
|
37
|
-
/**
|
|
38
|
-
* Get the library version.
|
|
39
|
-
* This value is injected at build time via @rollup/plugin-replace
|
|
40
|
-
* from package.json. It allows consumers to verify which version
|
|
41
|
-
* of the web component is loaded.
|
|
42
|
-
*/
|
|
43
|
-
static get version(): string;
|
|
44
33
|
private _baseNodes;
|
|
45
34
|
private _versionPalette;
|
|
46
35
|
private _slideshowTimerId;
|
|
@@ -92,22 +81,6 @@ export declare class GveSnapshotRendition extends HTMLElement {
|
|
|
92
81
|
* Render the component UI.
|
|
93
82
|
*/
|
|
94
83
|
private render;
|
|
95
|
-
/**
|
|
96
|
-
* Initialize Split.js panes for resizable panels.
|
|
97
|
-
*/
|
|
98
|
-
private initializeSplitPanes;
|
|
99
|
-
/**
|
|
100
|
-
* Load saved layout sizes from localStorage.
|
|
101
|
-
*/
|
|
102
|
-
private loadLayoutSizes;
|
|
103
|
-
/**
|
|
104
|
-
* Save current layout sizes to localStorage.
|
|
105
|
-
*/
|
|
106
|
-
private saveLayoutSizes;
|
|
107
|
-
/**
|
|
108
|
-
* Reset layout to default sizes.
|
|
109
|
-
*/
|
|
110
|
-
resetLayout(): void;
|
|
111
84
|
/**
|
|
112
85
|
* Render content (base text only - starts at v0).
|
|
113
86
|
* Use goToVersionIndex() to navigate to specific versions.
|
|
@@ -189,11 +162,6 @@ export declare class GveSnapshotRendition extends HTMLElement {
|
|
|
189
162
|
* Set up hover listeners on all text elements to update details area.
|
|
190
163
|
*/
|
|
191
164
|
private setupTextElementHoverListeners;
|
|
192
|
-
/**
|
|
193
|
-
* Attach features from featureSet to a node.
|
|
194
|
-
* Features are stored separately in the step's featureSet.nodeFeatures map.
|
|
195
|
-
*/
|
|
196
|
-
private attachNodeFeatures;
|
|
197
165
|
/**
|
|
198
166
|
* Handle hover over a text element.
|
|
199
167
|
*/
|
|
@@ -202,10 +170,6 @@ export declare class GveSnapshotRendition extends HTMLElement {
|
|
|
202
170
|
* Handle leaving a text element.
|
|
203
171
|
*/
|
|
204
172
|
private handleTextElementLeave;
|
|
205
|
-
/**
|
|
206
|
-
* Handle click on a text element (for pinning).
|
|
207
|
-
*/
|
|
208
|
-
private handleTextElementClick;
|
|
209
173
|
/**
|
|
210
174
|
* Navigate forward by processing operations one by one.
|
|
211
175
|
* Each operation adds hints and/or text that persist for all future versions.
|