@myrmidon/gve-snapshot-rendition 0.0.1 → 0.0.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.
@@ -23,6 +23,8 @@ export declare class GveHintDesigner extends HTMLElement {
23
23
  private _svgHighlightContainer?;
24
24
  private _jsHighlightContainer?;
25
25
  private _hintsDropdown?;
26
+ private _svgWordWrapEnabled;
27
+ private _jsWordWrapEnabled;
26
28
  private _animationsDropdown?;
27
29
  private _embeddedJsCheckbox?;
28
30
  private _newAnimationCheckbox?;
@@ -120,7 +122,10 @@ export declare class GveHintDesigner extends HTMLElement {
120
122
  */
121
123
  private createPositionSelect;
122
124
  /**
123
- * Make a panel resizable.
125
+ * Make a splitter resizable between two panels.
126
+ * @param panelAbove The panel above the splitter
127
+ * @param _panelBelow The panel below the splitter (unused but kept for API clarity)
128
+ * @param splitter The splitter element between them
124
129
  */
125
130
  private makeResizable;
126
131
  /**
@@ -231,6 +236,18 @@ export declare class GveHintDesigner extends HTMLElement {
231
236
  * Update SVG transform based on zoom and pan.
232
237
  */
233
238
  private updateSvgTransform;
239
+ /**
240
+ * Size to fit the SVG content.
241
+ */
242
+ private sizeToFit;
243
+ /**
244
+ * Toggle word wrap for SVG textarea.
245
+ */
246
+ private toggleSvgWordWrap;
247
+ /**
248
+ * Toggle word wrap for JS textarea.
249
+ */
250
+ private toggleJsWordWrap;
234
251
  /**
235
252
  * Save data to file.
236
253
  */