@cesdk/cesdk-js 1.66.0-nightly.20251201 → 1.66.0-nightly.20251203

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/index.d.ts CHANGED
@@ -92,7 +92,6 @@ import { HorizontalBlockAlignment } from '@cesdk/engine';
92
92
  import { HTMLCreativeEngineCanvasElement } from '@cesdk/engine';
93
93
  import type { i18n } from 'i18next';
94
94
  import { ImageMimeType } from '@cesdk/engine';
95
- import { _LegacyAPI } from '@cesdk/engine';
96
95
  import { Logger } from '@cesdk/engine';
97
96
  import { LogLevel } from '@cesdk/engine';
98
97
  import { MimeType as MimeType_2 } from '@cesdk/engine';
@@ -4738,6 +4737,13 @@ export declare interface RegisteredActions {
4738
4737
  'timeline.zoom.toLevel': TimelineZoomToLevelAction;
4739
4738
  /** Action for resetting the video timeline zoom to default */
4740
4739
  'timeline.zoom.reset': TimelineZoomResetAction;
4740
+ /**
4741
+ * Video timeline expand/collapse actions
4742
+ */
4743
+ /** Action for expanding the video timeline */
4744
+ 'timeline.expand': TimelineExpandAction;
4745
+ /** Action for collapsing the video timeline */
4746
+ 'timeline.collapse': TimelineCollapseAction;
4741
4747
  /**
4742
4748
  * Clipboard actions
4743
4749
  */
@@ -5044,6 +5050,18 @@ declare type ThemeConfig = Theme | ThemeFn | 'system';
5044
5050
  */
5045
5051
  declare type ThemeFn = () => Theme;
5046
5052
 
5053
+ /**
5054
+ * Action function for collapsing the video timeline
5055
+ * @public
5056
+ */
5057
+ export declare type TimelineCollapseAction = () => void;
5058
+
5059
+ /**
5060
+ * Action function for expanding the video timeline
5061
+ * @public
5062
+ */
5063
+ export declare type TimelineExpandAction = () => void;
5064
+
5047
5065
  /**
5048
5066
  * Video timeline zoom action types
5049
5067
  */