@myrmidon/gve-snapshot-rendition 2.0.4 → 2.0.6

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.
Files changed (56) hide show
  1. package/dist/adapter/data-feature-adapter.d.ts +2 -3
  2. package/dist/animation/animation-engine.d.ts +0 -13
  3. package/dist/core/gve-snapshot-rendition.d.ts +49 -44
  4. package/dist/hint-designer/gve-hint-designer.d.ts +11 -1
  5. package/dist/index.cjs.min.js +1 -1
  6. package/dist/index.cjs.min.js.map +1 -1
  7. package/dist/index.js +483 -470
  8. package/dist/index.js.map +1 -1
  9. package/dist/models.d.ts +21 -50
  10. package/dist/rendering/feature-resolver.d.ts +6 -7
  11. package/dist/rendering/hint-renderer.d.ts +6 -12
  12. package/dist/rendering/text-layout.d.ts +2 -1
  13. package/dist/rendering/text-renderer.d.ts +13 -12
  14. package/dist/settings/hint-models.d.ts +0 -5
  15. package/dist/settings/settings.d.ts +0 -4
  16. package/dist/ui/details-area.d.ts +2 -1
  17. package/dist/ui/hilites.d.ts +3 -9
  18. package/dist/ui/operation-summary-service.d.ts +4 -7
  19. package/package.json +82 -73
  20. package/dist/rendering/spreading-engine.d.ts +0 -98
  21. package/dist/src/adapter/adapter-models.d.ts +0 -171
  22. package/dist/src/adapter/data-feature-adapter.d.ts +0 -30
  23. package/dist/src/adapter/feature-adapter.d.ts +0 -34
  24. package/dist/src/adapter/index.d.ts +0 -6
  25. package/dist/src/adapter/matcher.d.ts +0 -38
  26. package/dist/src/adapter/parser.d.ts +0 -58
  27. package/dist/src/adapter/tokenizer.d.ts +0 -55
  28. package/dist/src/animation/animation-engine.d.ts +0 -105
  29. package/dist/src/animation/animation-factory.d.ts +0 -49
  30. package/dist/src/core/color-palette.d.ts +0 -39
  31. package/dist/src/core/gve-snapshot-rendition.d.ts +0 -359
  32. package/dist/src/core/logger.d.ts +0 -37
  33. package/dist/src/hint-designer/gve-hint-designer.d.ts +0 -356
  34. package/dist/src/hint-designer/hint-designer-models.d.ts +0 -32
  35. package/dist/src/index.d.ts +0 -17
  36. package/dist/src/models.d.ts +0 -171
  37. package/dist/src/rendering/bounds-cache.d.ts +0 -62
  38. package/dist/src/rendering/feature-resolver.d.ts +0 -98
  39. package/dist/src/rendering/hint-renderer.d.ts +0 -103
  40. package/dist/src/rendering/spreading-engine.d.ts +0 -98
  41. package/dist/src/rendering/svg-utils.d.ts +0 -133
  42. package/dist/src/rendering/text-layout.d.ts +0 -100
  43. package/dist/src/rendering/text-renderer.d.ts +0 -81
  44. package/dist/src/settings/hint-models.d.ts +0 -61
  45. package/dist/src/settings/settings.d.ts +0 -118
  46. package/dist/src/ui/details-area.d.ts +0 -112
  47. package/dist/src/ui/hilites.d.ts +0 -63
  48. package/dist/src/ui/operation-summary-service.d.ts +0 -73
  49. package/dist/src/ui/toolbar.d.ts +0 -141
  50. package/dist/src/ui/version-text-area.d.ts +0 -131
  51. package/dist/src/ui/versions-list-area.d.ts +0 -88
  52. package/dist/src/utils/color-palette.d.ts +0 -36
  53. package/dist/src/utils/feature-utils.d.ts +0 -80
  54. package/dist/src/utils/node-utils.d.ts +0 -47
  55. package/dist/src/utils/text-utils.d.ts +0 -35
  56. /package/dist/{src/layout → layout}/golden-layout-styles.d.ts +0 -0
@@ -1,118 +0,0 @@
1
- import { OperationHint } from "./hint-models";
2
- /**
3
- * Settings for a custom button added to the toolbar.
4
- */
5
- export interface CustomButtonSettings {
6
- /** Unique ID for the custom button */
7
- id: string;
8
- /** Icon to use for the button (can be emoji, Unicode symbol, or HTML) */
9
- icon: string;
10
- /** Text label for the button */
11
- label: string;
12
- /** Tooltip shown on hover */
13
- tooltip: string;
14
- /** Callback invoked when button is pressed */
15
- callback: (id: string, svg: SVGElement) => void;
16
- }
17
- /**
18
- * Settings for the GVE Snapshot Rendition component.
19
- */
20
- export interface GveRenditionSettings {
21
- /** Default font size in pixels */
22
- fontSize: number;
23
- /** Default font family */
24
- fontFamily: string;
25
- /** Default foreground color */
26
- foreColor: string;
27
- /** Default background color */
28
- backColor: string;
29
- /** Default italic state */
30
- italic: boolean;
31
- /** Default bold state */
32
- bold: boolean;
33
- /** Default underline thickness in pixels (undefined = no underline) */
34
- underline?: number;
35
- /** Default overline thickness in pixels (undefined = no overline) */
36
- overline?: number;
37
- /** Default strikethrough thickness in pixels (undefined = no strike) */
38
- strike?: number;
39
- /** Fraction of reference character width to use for space width (default: 0.33) */
40
- spaceWidthFraction: number;
41
- /** Spacing between each character in pixels */
42
- charSpacing: number;
43
- /** Line height multiplier (1.5 = 150% of font size) */
44
- lineHeight: number;
45
- /** Additional spacing between lines in pixels */
46
- lineSpacing: number;
47
- /** Top margin of the text rendition area in pixels */
48
- marginTop: number;
49
- /** Left margin of the text rendition area in pixels */
50
- marginLeft: number;
51
- /** Right margin of the text rendition area in pixels */
52
- marginRight: number;
53
- /** Bottom margin of the text rendition area in pixels */
54
- marginBottom: number;
55
- /** Initial zoom factor */
56
- initialZoom: number;
57
- /** Minimum zoom factor */
58
- minZoom: number;
59
- /** Maximum zoom factor */
60
- maxZoom: number;
61
- /** Zoom step for zoom in/out */
62
- zoomStep: number;
63
- /** Milliseconds between each frame in slideshow mode */
64
- slideshowInterval: number;
65
- /** Whether to loop the slideshow when it ends */
66
- slideshowLoop: boolean;
67
- /** Milliseconds delay between slideshow restarts (when looping) */
68
- slideshowDelay: number;
69
- /** Automatically continue forward through operations with the same groupId */
70
- autoForwardOnGroup: boolean;
71
- /** Enable detailed logging for diagnostic purposes */
72
- debug?: boolean;
73
- /** Array of custom buttons to add to the toolbar */
74
- customButtons?: CustomButtonSettings[];
75
- /** Array of button IDs (including custom buttons) to disable */
76
- disabledButtonIds?: string[];
77
- /** Catalog of animation JS code fragments, keyed by ID */
78
- animations: Record<string, string>;
79
- /** ID of animation to use for each character (from animations catalog) */
80
- charAnimationId?: string;
81
- /** Duration in milliseconds for element fade-out animation
82
- * (backward navigation only): 0=no animation */
83
- backwardFadeOutTime: number;
84
- /** Duration in milliseconds for prolog panning animation when added
85
- * elements would be outside viewport (0=no animation) */
86
- prologDuration: number;
87
- /** Dictionary of hints, keyed by hint ID */
88
- hints: Record<string, OperationHint>;
89
- /** Design-time width used when creating hints */
90
- hintDesignWidth: number;
91
- /** Design-time height used when creating hints */
92
- hintDesignHeight: number;
93
- /** Show the handle element from SVG hint (for diagnostic purposes) */
94
- showHintHandles: boolean;
95
- /** Padding to increase hilite rectangle size in pixels */
96
- hilitePadding: number;
97
- /** Duration in milliseconds for hilite fade in/out animation */
98
- hiliteFadeTime: number;
99
- /** Font family for the version text pane */
100
- textPaneFontFamily: string;
101
- /** Font size for the version text pane in pixels */
102
- textPaneFontSize: number;
103
- /** Function to generate operation summary HTML from data, version tag,
104
- * and summary service */
105
- opSummaryFn?: (data: any, versionTag: string, summaryService: any) => string;
106
- /** Reference glyph width in pixels for scaling hovered text elements */
107
- refGlyphWidth: number;
108
- /** Reference glyph height in pixels for scaling hovered text elements */
109
- refGlyphHeight: number;
110
- /** Array of feature names to hide when "hidden features" option is not checked */
111
- hiddenFeatures?: string[];
112
- /** Optional map of version tag to color (e.g., {v0: '#FFE4E1', v1: '#E1FFE4'}) */
113
- versionColors?: Record<string, string>;
114
- }
115
- /**
116
- * Default settings for the component.
117
- */
118
- export declare const DEFAULT_SETTINGS: GveRenditionSettings;
@@ -1,112 +0,0 @@
1
- import { GveRenditionSettings } from "../settings/settings";
2
- import { Logger } from "../core/logger";
3
- import { CharChainResult, CharNode } from "../models";
4
- /**
5
- * Details area component - displays operation metadata and hovered element details.
6
- */
7
- export declare class DetailsArea {
8
- private container;
9
- private operationSection;
10
- private versionFeaturesSection;
11
- private hoveredElementsSection;
12
- private hiddenFeaturesCheckbox;
13
- private collapseBtn;
14
- private resizeHandle;
15
- private _settings;
16
- private _logger;
17
- private _summaryService;
18
- private _isCollapsed;
19
- private _showHiddenFeatures;
20
- private _data;
21
- private _currentVersionTag;
22
- private _isResizing;
23
- private _initialHeight;
24
- private _initialMouseY;
25
- private _isPinned;
26
- private _pinnedElements;
27
- constructor(settings: GveRenditionSettings, logger: Logger);
28
- create(): HTMLElement;
29
- /**
30
- * Replace feather icon placeholders with actual SVG icons.
31
- */
32
- private replaceFeatherIcons;
33
- /**
34
- * Attach event listeners.
35
- */
36
- private attachEventListeners;
37
- /**
38
- * Start resizing the details area.
39
- */
40
- private startResize;
41
- /**
42
- * Handle resize drag.
43
- */
44
- private handleResize;
45
- /**
46
- * Stop resizing the details area.
47
- */
48
- private stopResize;
49
- /**
50
- * Toggle collapse/expand state.
51
- */
52
- private toggleCollapse;
53
- /**
54
- * Update the details area with version information.
55
- * @param data - The CharChainResult data
56
- * @param versionTag - The version tag (e.g., "v0", "v1")
57
- */
58
- updateVersion(data: CharChainResult | null, versionTag: string): void;
59
- /**
60
- * Update the operation section with operation summary and features.
61
- */
62
- private updateOperationSection;
63
- /**
64
- * Update the version features section with global features.
65
- */
66
- private updateVersionFeaturesSection;
67
- /**
68
- * Update the hovered elements section.
69
- * @param hoveredElements - Array of hovered text SVG elements with their node data
70
- */
71
- updateHoveredElements(hoveredElements: Array<{
72
- element: SVGTextElement;
73
- node: CharNode;
74
- versionTag: string;
75
- }>): void;
76
- /**
77
- * Render hovered elements with pin button.
78
- */
79
- private renderHoveredElements;
80
- /**
81
- * Toggle pin state.
82
- */
83
- private togglePin;
84
- /**
85
- * Pin a specific element (triggered by click).
86
- */
87
- pinElement(element: SVGTextElement, node: CharNode, versionTag: string): void;
88
- /**
89
- * Filter features based on hidden features setting.
90
- */
91
- private filterFeatures;
92
- /**
93
- * Render a list of features as HTML.
94
- */
95
- private renderFeatureList;
96
- /**
97
- * Get version index from version tag.
98
- */
99
- private getVersionIndex;
100
- /**
101
- * Escape HTML special characters.
102
- */
103
- private escapeHtml;
104
- /**
105
- * Clear all sections.
106
- */
107
- clear(): void;
108
- /**
109
- * Update settings.
110
- */
111
- updateSettings(settings: GveRenditionSettings): void;
112
- }
@@ -1,63 +0,0 @@
1
- import { Logger } from "../core/logger";
2
- /**
3
- * Hilites manager - handles creating and animating hilite rectangles.
4
- */
5
- export declare class Hilites {
6
- private _logger;
7
- private _rootSvg;
8
- private _hilitesGroup;
9
- private _activeHilites;
10
- private _hilitePadding;
11
- private _hiliteFadeTime;
12
- constructor(logger: Logger, hilitePadding: number, hiliteFadeTime: number);
13
- /**
14
- * Set root SVG element reference.
15
- */
16
- setRootSvg(rootSvg: SVGSVGElement): void;
17
- /**
18
- * Update settings.
19
- */
20
- updateSettings(hilitePadding: number, hiliteFadeTime: number): void;
21
- /**
22
- * Show hilites for a specific version.
23
- * @param nodeIds - IDs of nodes to hilite (from versionNodeIds[versionTag])
24
- * @param versionTag - Version tag label (for logging)
25
- * @param color - Hilite color
26
- */
27
- showHilites(nodeIds: number[], versionTag: string, color: string): Promise<void>;
28
- /**
29
- * Clear all hilites.
30
- */
31
- clearHilites(): Promise<void>;
32
- /**
33
- * Create a hilite rectangle for a text element.
34
- *
35
- * IMPORTANT: Since hilites are now placed in the same container (viewport group)
36
- * as the text elements, they share the same coordinate space and transforms.
37
- * This means getBBox() gives us the correct relative coordinates, and the
38
- * hilites will automatically pan/zoom with the text when PROLOG is triggered.
39
- */
40
- private createHiliteRect;
41
- /**
42
- * Animate hilites in using GSAP.
43
- */
44
- private animateHilitesIn;
45
- /**
46
- * Animate hilites out using GSAP.
47
- */
48
- private animateHilitesOut;
49
- /**
50
- * Check if hilites are currently active.
51
- */
52
- hasActiveHilites(): boolean;
53
- /**
54
- * Get the SVG container where hilites should be added.
55
- * When svg-pan-zoom is active, this returns the viewport group.
56
- * Otherwise, returns the root SVG.
57
- *
58
- * CRITICAL: svg-pan-zoom wraps all content in a <g> viewport element.
59
- * Hilites MUST be added to this group, not the root SVG, so they
60
- * transform with the content when PROLOG panning occurs.
61
- */
62
- private getSvgContainer;
63
- }
@@ -1,73 +0,0 @@
1
- import { CharChainResult, CharNode, ChainOperationContextStep, OperationType } from "../models";
2
- import { Logger } from "../core/logger";
3
- /**
4
- * Service for building operation summaries.
5
- * Provides helper functions to extract and format operation data.
6
- */
7
- export declare class OperationSummaryService {
8
- private _logger;
9
- private _data;
10
- constructor(logger: Logger);
11
- /**
12
- * Update the data reference.
13
- */
14
- setData(data: CharChainResult | null): void;
15
- /**
16
- * Get operation by version tag.
17
- * @param versionTag - Version tag (e.g., "v1", "v2")
18
- * @returns The step containing the operation, or null
19
- */
20
- getStepByVersionTag(versionTag: string): ChainOperationContextStep | null;
21
- /**
22
- * Get operation by ID.
23
- * @param operationId - Operation ID
24
- * @returns The step containing the operation, or null
25
- */
26
- getStepByOperationId(operationId: string): ChainOperationContextStep | null;
27
- /**
28
- * Get text from a node ID by searching in version tagged nodes.
29
- * @param nodeId - Node ID
30
- * @param versionTag - Version tag to search in (searches backwards if not found)
31
- * @returns The node's text, or empty string
32
- */
33
- getNodeText(nodeId: number, versionTag: string): string;
34
- /**
35
- * Get a node by ID from the flat nodes array.
36
- * All nodes (including deleted ones) are always present.
37
- *
38
- * @param nodeId - Node ID
39
- * @param versionTag - Unused in new model; kept for API compatibility
40
- * @returns The node, or null
41
- */
42
- getNode(nodeId: number, versionTag?: string): CharNode | null;
43
- /**
44
- * Get text from a span of nodes.
45
- * @param nodeIds - Array of node IDs
46
- * @param versionTag - Version tag
47
- * @returns Concatenated text
48
- */
49
- getSpanText(nodeIds: number[], versionTag: string): string;
50
- /**
51
- * Get context text around a node or span, including the affected text.
52
- * Extends context to word boundaries (space or LF) after collecting minimum characters.
53
- * @param nodeIds - Node IDs of the target span (used when atAsIndex is false)
54
- * @param versionTag - Version tag
55
- * @param atValue - The 'at' value from the operation (node ID or index depending on atAsIndex)
56
- * @param atAsIndex - Whether 'at' is an index (true) or node ID (false)
57
- * @param contextSize - Minimum number of characters before/after (default: 20)
58
- * @returns Context text including the affected span
59
- */
60
- getContext(nodeIds: number[], versionTag: string, atValue?: number, atAsIndex?: boolean, contextSize?: number): string;
61
- /**
62
- * Get the operation type as a readable string.
63
- */
64
- getOperationTypeName(type: OperationType): string;
65
- /**
66
- * Get version index from version tag.
67
- */
68
- private getVersionIndex;
69
- /**
70
- * Escape HTML special characters.
71
- */
72
- escapeHtml(text: string): string;
73
- }
@@ -1,141 +0,0 @@
1
- import { CharChainResult } from "../models";
2
- import { CustomButtonSettings } from "../settings/settings";
3
- /**
4
- * Comprehensive toolbar component for version navigation, slideshow, zoom, and custom actions.
5
- */
6
- export declare class Toolbar {
7
- private container;
8
- private firstBtn;
9
- private prevBtn;
10
- private prevStagedBtn;
11
- private nextStagedBtn;
12
- private nextBtn;
13
- private lastBtn;
14
- private versionLabel;
15
- private groupBadge;
16
- private logDisplay;
17
- private slideshowStartBtn;
18
- private slideshowStopBtn;
19
- private slideshowReverseBtn;
20
- private autoForwardBtn;
21
- private zoomInBtn;
22
- private zoomOutBtn;
23
- private fitBtn;
24
- private downloadBtn;
25
- private resetLayoutBtn;
26
- private _data;
27
- private _currentVersionIndex;
28
- private _customButtons;
29
- private _disabledButtonIds;
30
- private _slideshowReverse;
31
- private _autoForwardEnabled;
32
- /**
33
- * Get slideshow reverse state.
34
- */
35
- getSlideshowReverse(): boolean;
36
- constructor(container: HTMLElement);
37
- /**
38
- * Render toolbar UI elements.
39
- */
40
- private render;
41
- /**
42
- * Replace feather icon placeholders with actual SVG icons.
43
- */
44
- private replaceFeatherIcons;
45
- /**
46
- * Attach event listeners to buttons.
47
- */
48
- private attachEventListeners;
49
- /**
50
- * Render custom buttons from settings.
51
- */
52
- private renderCustomButtons;
53
- /**
54
- * Update button states and version label.
55
- */
56
- private updateButtons;
57
- /**
58
- * Update version label with current version information.
59
- */
60
- private updateVersionLabel;
61
- /**
62
- * Update the log display with the current operation's log feature.
63
- */
64
- private updateLogDisplay;
65
- /**
66
- * Get version information for current step.
67
- */
68
- private getVersionInfo;
69
- /**
70
- * Check if there is a previous staged version.
71
- */
72
- private hasPrevStagedVersion;
73
- /**
74
- * Check if there is a next staged version.
75
- */
76
- private hasNextStagedVersion;
77
- /**
78
- * Update slideshow reverse button appearance.
79
- */
80
- private updateSlideshowReverseButton;
81
- /**
82
- * Update auto-forward button visual state.
83
- */
84
- private updateAutoForwardButton;
85
- /**
86
- * Apply disabled state to buttons from settings.
87
- */
88
- private applyDisabledButtons;
89
- /**
90
- * Dispatch navigation event for parent component to handle.
91
- */
92
- private dispatchNavigationEvent;
93
- /**
94
- * Dispatch slideshow event for parent component to handle.
95
- */
96
- private dispatchSlideshowEvent;
97
- /**
98
- * Dispatch auto-forward event for parent component to handle.
99
- */
100
- private dispatchAutoForwardEvent;
101
- /**
102
- * Dispatch display event for parent component to handle.
103
- */
104
- private dispatchDisplayEvent;
105
- /**
106
- * Dispatch layout event for parent component to handle.
107
- */
108
- private dispatchLayoutEvent;
109
- /**
110
- * Update data reference (for staged version detection).
111
- */
112
- updateData(data: CharChainResult | null): void;
113
- /**
114
- * Set current version index (for external updates).
115
- */
116
- setCurrentIndex(index: number): void;
117
- /**
118
- * Get current version index.
119
- */
120
- getCurrentIndex(): number;
121
- /**
122
- * Set custom buttons from settings.
123
- */
124
- setCustomButtons(customButtons: CustomButtonSettings[]): void;
125
- /**
126
- * Set disabled button IDs from settings.
127
- */
128
- setDisabledButtons(disabledButtonIds: string[]): void;
129
- /**
130
- * Set slideshow active state (show/hide start/stop buttons).
131
- */
132
- setSlideshowActive(active: boolean): void;
133
- /**
134
- * Disable all navigation buttons (e.g., during slideshow).
135
- */
136
- setNavigationDisabled(disabled: boolean): void;
137
- /**
138
- * Set auto-forward enabled state and update button appearance.
139
- */
140
- setAutoForwardEnabled(enabled: boolean): void;
141
- }
@@ -1,131 +0,0 @@
1
- import { GveRenditionSettings } from "../settings/settings";
2
- import { Logger } from "../core/logger";
3
- /**
4
- * Version text area component - displays plain text for current version.
5
- * Can be collapsed/expanded and includes toolbar for text manipulation.
6
- * Now includes previous text (Text B), pinning, and diff view.
7
- */
8
- export declare class VersionTextArea {
9
- private container;
10
- private textAreaA;
11
- private textAreaB;
12
- private diffPanel;
13
- private textPanelA;
14
- private textPanelB;
15
- private textPanelDiff;
16
- private copyBtn;
17
- private wrapBtn;
18
- private increaseFontBtn;
19
- private decreaseFontBtn;
20
- private pinBtn;
21
- private diffDirectionBtn;
22
- private collapseBtn;
23
- private resizeHandle;
24
- private _settings;
25
- private _logger;
26
- private _isCollapsed;
27
- private _wordWrap;
28
- private _currentFontSize;
29
- private _isDragging;
30
- private _startY;
31
- private _startHeight;
32
- private _isPinned;
33
- private _diffDirection;
34
- private _previousText;
35
- private _panelResizing;
36
- constructor(settings: GveRenditionSettings, logger: Logger);
37
- /**
38
- * Create and return the version text area container.
39
- */
40
- create(): HTMLElement;
41
- /**
42
- * Replace feather icon placeholders with actual SVG icons.
43
- */
44
- private replaceFeatherIcons;
45
- /**
46
- * Apply text styles from settings.
47
- */
48
- private applyTextStyles;
49
- /**
50
- * Attach event listeners to toolbar buttons.
51
- */
52
- private attachEventListeners;
53
- /**
54
- * Copy current text (A) to clipboard.
55
- */
56
- private copyText;
57
- /**
58
- * Toggle word wrap for text areas.
59
- */
60
- private toggleWordWrap;
61
- /**
62
- * Increase font size.
63
- */
64
- private increaseFontSize;
65
- /**
66
- * Decrease font size.
67
- */
68
- private decreaseFontSize;
69
- /**
70
- * Toggle pin state for previous text (B).
71
- */
72
- private togglePin;
73
- /**
74
- * Toggle diff direction (B→A or A→B).
75
- */
76
- private toggleDiffDirection;
77
- /**
78
- * Toggle collapse/expand state.
79
- */
80
- private toggleCollapse;
81
- /**
82
- * Update the displayed text.
83
- * @param text - The plain text to display
84
- */
85
- updateText(text: string): void;
86
- /**
87
- * Update the diff panel.
88
- */
89
- private updateDiff;
90
- /**
91
- * Render diff results as HTML.
92
- * @param diffs - Array of diff operations
93
- */
94
- private renderDiff;
95
- /**
96
- * Escape HTML special characters.
97
- */
98
- private escapeHtml;
99
- /**
100
- * Clear the text area.
101
- */
102
- clear(): void;
103
- /**
104
- * Update settings.
105
- */
106
- updateSettings(settings: GveRenditionSettings): void;
107
- /**
108
- * Start resize operation.
109
- */
110
- private startResize;
111
- /**
112
- * Handle resize during drag.
113
- */
114
- private handleResize;
115
- /**
116
- * End resize operation.
117
- */
118
- private endResize;
119
- /**
120
- * Start panel resize operation.
121
- */
122
- private startPanelResize;
123
- /**
124
- * Handle panel resize during drag.
125
- */
126
- private handlePanelResize;
127
- /**
128
- * End panel resize operation.
129
- */
130
- private endPanelResize;
131
- }