@cesdk/node 1.71.0-nightly.20260303 → 1.71.0-nightly.20260307

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
@@ -136,6 +136,12 @@ export declare type AnimationOptions = {
136
136
  out?: AnimationEntry;
137
137
  };
138
138
 
139
+ /** @public */
140
+ export declare type AnimationScaleLoopDirection = (typeof AnimationScaleLoopDirectionValues)[number];
141
+
142
+ /** @public */
143
+ export declare const AnimationScaleLoopDirectionValues: readonly ["Horizontal", "Vertical", "TopLeft", "TopRight", "BottomLeft", "BottomRight", "All"];
144
+
139
145
  /** @public */
140
146
  export declare type AnimationSpinDirection = (typeof AnimationSpinDirectionValues)[number];
141
147
 
@@ -1204,6 +1210,17 @@ export declare interface AssetStringProperty {
1204
1210
  */
1205
1211
  export declare type AssetTransformPreset = AssetFixedAspectRatio | AssetFreeAspectRatio | AssetFixedSize;
1206
1212
 
1213
+ /**
1214
+ * An async-compatible URI resolver function.
1215
+ *
1216
+ * May return a plain string for synchronous resolution, or a `Promise<string>`
1217
+ * for asynchronous resolution. The engine preserves synchronous behaviour when
1218
+ * a plain string is returned (important for call-sites that expect immediate
1219
+ * resolution).
1220
+ * @public
1221
+ */
1222
+ export declare type AsyncURIResolver = (URI: string, defaultURIResolver: (URI: string) => string) => Promise<string> | string;
1223
+
1207
1224
  /**
1208
1225
  * Represents the options for exporting audio.
1209
1226
  *
@@ -5505,6 +5522,7 @@ export declare type BlockEnumType = {
5505
5522
  'animation/block_swipe_text/direction': AnimationBlockSwipeTextDirection;
5506
5523
  'animation/merge_text/direction': AnimationMergeTextDirection;
5507
5524
  'animation/ken_burns/direction': AnimationKenBurnsDirection;
5525
+ 'animation/scale_loop/direction': AnimationScaleLoopDirection;
5508
5526
  'fill/pixelStream/orientation': FillPixelStreamOrientation;
5509
5527
  };
5510
5528
 
@@ -6040,7 +6058,7 @@ export declare type DoubleClickSelectionMode = (typeof DoubleClickSelectionModeV
6040
6058
  export declare const DoubleClickSelectionModeValues: readonly ["Direct", "Hierarchical"];
6041
6059
 
6042
6060
  /** @public */
6043
- export declare type DoublePropertyName = 'playback/time' | 'playback/duration' | 'playback/timeOffset' | 'audio/totalDuration' | 'playback/trimLength' | 'playback/trimOffset' | 'fill/video/totalDuration' | (string & {});
6061
+ export declare type DoublePropertyName = 'playback/time' | 'playback/duration' | 'playback/timeOffset' | 'audio/totalDuration' | 'playback/trimLength' | 'playback/trimOffset' | 'fill/video/totalDuration' | 'animation/scale_loop/startDelay' | 'animation/scale_loop/holdDuration' | 'animation/scale_loop/easingDuration' | (string & {});
6044
6062
 
6045
6063
  /**
6046
6064
  * Information about a single audio track from a video.
@@ -6612,7 +6630,7 @@ export declare class EditorAPI {
6612
6630
  *
6613
6631
  * This function can be called more than once. Subsequent calls will overwrite previous calls.
6614
6632
  * To remove a previously set resolver, pass the value `null`.
6615
- * The given function must return an absolute path with a scheme and cannot be asynchronous. The input is allowed to be invalid URI, e.g., due to placeholders.
6633
+ * The given function must return an absolute path with a scheme and cannot be asynchronous. The input is allowed to be an invalid URI, e.g., due to placeholders.
6616
6634
  *
6617
6635
  * ```javascript
6618
6636
  * // Replace all .jpg files with the IMG.LY logo
@@ -6630,7 +6648,20 @@ export declare class EditorAPI {
6630
6648
  * should not reference variables outside of its scope.
6631
6649
  * It receives the default URI resolver as its second argument
6632
6650
  */
6633
- setURIResolver(resolver: (URI: string, defaultURIResolver: (URI: string) => string) => string): void;
6651
+ setURIResolver(resolver: SyncURIResolver): void;
6652
+ /**
6653
+ * Sets a custom async URI resolver.
6654
+ *
6655
+ * This function can be called more than once. Subsequent calls will overwrite previous calls.
6656
+ * To remove a previously set resolver, pass the value `null`.
6657
+ * The given function must return an absolute path with a scheme. The input is allowed to be invalid URI, e.g., due
6658
+ * to placeholders.
6659
+ *
6660
+ * @category Editor Settings
6661
+ * @param resolver - Custom async resolution function.
6662
+ */
6663
+ setURIResolverAsync(resolver: AsyncURIResolver | null): void;
6664
+
6634
6665
 
6635
6666
  /**
6636
6667
  * This is the default implementation for the URI resolver.
@@ -6647,17 +6678,20 @@ export declare class EditorAPI {
6647
6678
  */
6648
6679
  defaultURIResolver(relativePath: string): string;
6649
6680
  /**
6650
- * Resolves the given path.
6681
+ * Resolves the given path asynchronously.
6651
6682
  *
6652
- * If a custom resolver has been set with `setURIResolver`, it invokes it with the given path.
6653
- * Else, it resolves it as relative to the `basePath` setting.
6683
+ * If a custom resolver has been set with `setURIResolverAsync` (or `setURIResolver`), it invokes it with the given
6684
+ * path. Else, it resolves it as relative to the `basePath` setting.
6654
6685
  * This performs NO validation of whether a file exists at the specified location.
6655
6686
  *
6687
+ * **Breaking change:** This method now returns a `Promise<string>` instead
6688
+ * of a plain `string`. Callers must `await` the result.
6689
+ *
6656
6690
  * @category Editor Settings
6657
6691
  * @param relativePath - A relative path string
6658
- * @returns The resolved absolute uri or an error if an invalid path was given.
6692
+ * @returns Promise resolving to the resolved absolute uri or rejecting if an invalid path was given.
6659
6693
  */
6660
- getAbsoluteURI(relativePath: string): string;
6694
+ getAbsoluteURI(relativePath: string): Promise<string>;
6661
6695
  /**
6662
6696
  * Get all available global scope names.
6663
6697
  *
@@ -7059,10 +7093,10 @@ export declare type EnginePluginContext = {
7059
7093
  };
7060
7094
 
7061
7095
  /** @public */
7062
- export declare type EnumPropertyName = 'blend/mode' | 'contentFill/mode' | 'height/mode' | 'position/x/mode' | 'position/y/mode' | 'scene/designUnit' | 'scene/layout' | 'scene/mode' | 'width/mode' | 'stroke/cornerGeometry' | 'stroke/position' | 'stroke/style' | 'text/horizontalAlignment' | 'text/verticalAlignment' | 'cutout/type' | 'caption/horizontalAlignment' | 'caption/verticalAlignment' | 'animationEasing' | 'textAnimationWritingStyle' | 'animation/grow/direction' | 'animation/wipe/direction' | 'animation/baseline/direction' | 'animation/spin/direction' | 'animation/spin_loop/direction' | 'animation/jump_loop/direction' | 'animation/typewriter_text/writingStyle' | 'animation/block_swipe_text/direction' | 'animation/merge_text/direction' | 'animation/ken_burns/direction' | 'fill/pixelStream/orientation' | (string & {});
7096
+ export declare type EnumPropertyName = 'blend/mode' | 'contentFill/mode' | 'height/mode' | 'position/x/mode' | 'position/y/mode' | 'scene/designUnit' | 'scene/layout' | 'scene/mode' | 'width/mode' | 'stroke/cornerGeometry' | 'stroke/position' | 'stroke/style' | 'text/horizontalAlignment' | 'text/verticalAlignment' | 'cutout/type' | 'caption/horizontalAlignment' | 'caption/verticalAlignment' | 'animationEasing' | 'textAnimationWritingStyle' | 'animation/grow/direction' | 'animation/wipe/direction' | 'animation/baseline/direction' | 'animation/spin/direction' | 'animation/spin_loop/direction' | 'animation/jump_loop/direction' | 'animation/typewriter_text/writingStyle' | 'animation/block_swipe_text/direction' | 'animation/merge_text/direction' | 'animation/ken_burns/direction' | 'animation/scale_loop/direction' | 'fill/pixelStream/orientation' | (string & {});
7063
7097
 
7064
7098
  /** @public */
7065
- export declare type EnumValues = BlendMode | ContentFillMode | HeightMode | PositionXMode | PositionYMode | SceneDesignUnit | SceneLayout | SceneMode | WidthMode | StrokeCornerGeometry | StrokePosition | StrokeStyle | TextHorizontalAlignment | TextVerticalAlignment | CutoutType | CaptionHorizontalAlignment | CaptionVerticalAlignment | AnimationEasing | TextAnimationWritingStyle | AnimationGrowDirection | AnimationWipeDirection | AnimationBaselineDirection | AnimationSpinDirection | AnimationSpinLoopDirection | AnimationJumpLoopDirection | AnimationTypewriterTextWritingStyle | AnimationBlockSwipeTextDirection | AnimationMergeTextDirection | AnimationKenBurnsDirection | FillPixelStreamOrientation | (string & {});
7099
+ export declare type EnumValues = BlendMode | ContentFillMode | HeightMode | PositionXMode | PositionYMode | SceneDesignUnit | SceneLayout | SceneMode | WidthMode | StrokeCornerGeometry | StrokePosition | StrokeStyle | TextHorizontalAlignment | TextVerticalAlignment | CutoutType | CaptionHorizontalAlignment | CaptionVerticalAlignment | AnimationEasing | TextAnimationWritingStyle | AnimationGrowDirection | AnimationWipeDirection | AnimationBaselineDirection | AnimationSpinDirection | AnimationSpinLoopDirection | AnimationJumpLoopDirection | AnimationTypewriterTextWritingStyle | AnimationBlockSwipeTextDirection | AnimationMergeTextDirection | AnimationKenBurnsDirection | AnimationScaleLoopDirection | FillPixelStreamOrientation | (string & {});
7066
7100
 
7067
7101
  /**
7068
7102
  * @public Subscribe to block lifecycle events in the design engine.
@@ -7257,7 +7291,7 @@ declare interface Flip {
7257
7291
  }
7258
7292
 
7259
7293
  /** @public */
7260
- export declare type FloatPropertyName = 'globalBoundingBox/height' | 'globalBoundingBox/width' | 'globalBoundingBox/x' | 'globalBoundingBox/y' | 'height' | 'lastFrame/height' | 'lastFrame/width' | 'lastFrame/x' | 'lastFrame/y' | 'position/x' | 'position/y' | 'rotation' | 'scene/dpi' | 'scene/pageDimensions/height' | 'scene/pageDimensions/width' | 'scene/pixelScaleFactor' | 'width' | 'camera/pixelRatio' | 'camera/resolution/height' | 'camera/resolution/width' | 'camera/zoomLevel' | 'dropShadow/blurRadius/x' | 'dropShadow/blurRadius/y' | 'dropShadow/offset/x' | 'dropShadow/offset/y' | 'page/margin/bottom' | 'page/margin/left' | 'page/margin/right' | 'page/margin/top' | 'playback/speed' | 'playback/volume' | 'stroke/width' | 'opacity' | 'backgroundColor/cornerRadius' | 'backgroundColor/paddingBottom' | 'backgroundColor/paddingLeft' | 'backgroundColor/paddingRight' | 'backgroundColor/paddingTop' | 'text/fontSize' | 'text/letterSpacing' | 'text/lineHeight' | 'text/maxAutomaticFontSize' | 'text/minAutomaticFontSize' | 'text/paragraphSpacing' | 'cutout/offset' | 'cutout/smoothing' | 'caption/fontSize' | 'caption/letterSpacing' | 'caption/lineHeight' | 'caption/maxAutomaticFontSize' | 'caption/minAutomaticFontSize' | 'caption/paragraphSpacing' | 'animation/slide/direction' | 'textAnimationOverlap' | 'animation/pan/direction' | 'animation/pan/distance' | 'animation/blur/intensity' | 'animation/grow/scaleFactor' | 'animation/crop_zoom/scale' | 'animation/spin/intensity' | 'animation/blur_loop/intensity' | 'animation/pulsating_loop/intensity' | 'animation/breathing_loop/intensity' | 'animation/jump_loop/intensity' | 'animation/sway_loop/intensity' | 'animation/spread_text/intensity' | 'animation/merge_text/intensity' | 'animation/ken_burns/travelDistanceRatio' | 'animation/ken_burns/zoomIntensity' | 'blur/uniform/intensity' | 'blur/linear/blurRadius' | 'blur/linear/x1' | 'blur/linear/x2' | 'blur/linear/y1' | 'blur/linear/y2' | 'blur/mirrored/blurRadius' | 'blur/mirrored/gradientSize' | 'blur/mirrored/size' | 'blur/mirrored/x1' | 'blur/mirrored/x2' | 'blur/mirrored/y1' | 'blur/mirrored/y2' | 'blur/radial/blurRadius' | 'blur/radial/gradientRadius' | 'blur/radial/radius' | 'blur/radial/x' | 'blur/radial/y' | 'effect/adjustments/blacks' | 'effect/adjustments/brightness' | 'effect/adjustments/clarity' | 'effect/adjustments/contrast' | 'effect/adjustments/exposure' | 'effect/adjustments/gamma' | 'effect/adjustments/highlights' | 'effect/adjustments/saturation' | 'effect/adjustments/shadows' | 'effect/adjustments/sharpness' | 'effect/adjustments/temperature' | 'effect/adjustments/whites' | 'effect/cross_cut/offset' | 'effect/cross_cut/slices' | 'effect/cross_cut/speedV' | 'effect/cross_cut/time' | 'effect/dot_pattern/blur' | 'effect/dot_pattern/dots' | 'effect/dot_pattern/size' | 'effect/duotone_filter/intensity' | 'effect/extrude_blur/amount' | 'effect/glow/amount' | 'effect/glow/darkness' | 'effect/glow/size' | 'effect/green_screen/colorMatch' | 'effect/green_screen/smoothness' | 'effect/green_screen/spill' | 'effect/half_tone/angle' | 'effect/half_tone/scale' | 'effect/linocut/scale' | 'effect/liquid/amount' | 'effect/liquid/scale' | 'effect/liquid/time' | 'effect/lut_filter/intensity' | 'effect/outliner/amount' | 'effect/outliner/passthrough' | 'effect/posterize/levels' | 'effect/radial_pixel/radius' | 'effect/radial_pixel/segments' | 'effect/recolor/brightnessMatch' | 'effect/recolor/colorMatch' | 'effect/recolor/smoothness' | 'effect/shifter/amount' | 'effect/shifter/angle' | 'effect/tilt_shift/amount' | 'effect/tilt_shift/position' | 'effect/tv_glitch/distortion' | 'effect/tv_glitch/distortion2' | 'effect/tv_glitch/rollSpeed' | 'effect/tv_glitch/speed' | 'effect/vignette/darkness' | 'effect/vignette/offset' | 'fill/gradient/linear/endPointX' | 'fill/gradient/linear/endPointY' | 'fill/gradient/linear/startPointX' | 'fill/gradient/linear/startPointY' | 'fill/gradient/radial/centerPointX' | 'fill/gradient/radial/centerPointY' | 'fill/gradient/radial/radius' | 'fill/gradient/conical/centerPointX' | 'fill/gradient/conical/centerPointY' | 'shape/rect/cornerRadiusBL' | 'shape/rect/cornerRadiusBR' | 'shape/rect/cornerRadiusTL' | 'shape/rect/cornerRadiusTR' | 'shape/polygon/cornerRadius' | 'shape/star/innerDiameter' | 'shape/vector_path/height' | 'shape/vector_path/width' | (string & {});
7294
+ export declare type FloatPropertyName = 'globalBoundingBox/height' | 'globalBoundingBox/width' | 'globalBoundingBox/x' | 'globalBoundingBox/y' | 'height' | 'lastFrame/height' | 'lastFrame/width' | 'lastFrame/x' | 'lastFrame/y' | 'position/x' | 'position/y' | 'rotation' | 'scene/dpi' | 'scene/pageDimensions/height' | 'scene/pageDimensions/width' | 'scene/pixelScaleFactor' | 'width' | 'camera/pixelRatio' | 'camera/resolution/height' | 'camera/resolution/width' | 'camera/zoomLevel' | 'dropShadow/blurRadius/x' | 'dropShadow/blurRadius/y' | 'dropShadow/offset/x' | 'dropShadow/offset/y' | 'page/margin/bottom' | 'page/margin/left' | 'page/margin/right' | 'page/margin/top' | 'playback/speed' | 'playback/volume' | 'stroke/width' | 'opacity' | 'backgroundColor/cornerRadius' | 'backgroundColor/paddingBottom' | 'backgroundColor/paddingLeft' | 'backgroundColor/paddingRight' | 'backgroundColor/paddingTop' | 'text/fontSize' | 'text/letterSpacing' | 'text/lineHeight' | 'text/maxAutomaticFontSize' | 'text/minAutomaticFontSize' | 'text/paragraphSpacing' | 'cutout/offset' | 'cutout/smoothing' | 'caption/fontSize' | 'caption/letterSpacing' | 'caption/lineHeight' | 'caption/maxAutomaticFontSize' | 'caption/minAutomaticFontSize' | 'caption/paragraphSpacing' | 'animation/slide/direction' | 'textAnimationOverlap' | 'animation/pan/direction' | 'animation/pan/distance' | 'animation/blur/intensity' | 'animation/grow/scaleFactor' | 'animation/crop_zoom/scale' | 'animation/spin/intensity' | 'animation/blur_loop/intensity' | 'animation/pulsating_loop/intensity' | 'animation/breathing_loop/intensity' | 'animation/jump_loop/intensity' | 'animation/sway_loop/intensity' | 'animation/scale_loop/startScale' | 'animation/scale_loop/endScale' | 'animation/spread_text/intensity' | 'animation/merge_text/intensity' | 'animation/ken_burns/travelDistanceRatio' | 'animation/ken_burns/zoomIntensity' | 'blur/uniform/intensity' | 'blur/linear/blurRadius' | 'blur/linear/x1' | 'blur/linear/x2' | 'blur/linear/y1' | 'blur/linear/y2' | 'blur/mirrored/blurRadius' | 'blur/mirrored/gradientSize' | 'blur/mirrored/size' | 'blur/mirrored/x1' | 'blur/mirrored/x2' | 'blur/mirrored/y1' | 'blur/mirrored/y2' | 'blur/radial/blurRadius' | 'blur/radial/gradientRadius' | 'blur/radial/radius' | 'blur/radial/x' | 'blur/radial/y' | 'effect/adjustments/blacks' | 'effect/adjustments/brightness' | 'effect/adjustments/clarity' | 'effect/adjustments/contrast' | 'effect/adjustments/exposure' | 'effect/adjustments/gamma' | 'effect/adjustments/highlights' | 'effect/adjustments/saturation' | 'effect/adjustments/shadows' | 'effect/adjustments/sharpness' | 'effect/adjustments/temperature' | 'effect/adjustments/whites' | 'effect/cross_cut/offset' | 'effect/cross_cut/slices' | 'effect/cross_cut/speedV' | 'effect/cross_cut/time' | 'effect/dot_pattern/blur' | 'effect/dot_pattern/dots' | 'effect/dot_pattern/size' | 'effect/duotone_filter/intensity' | 'effect/extrude_blur/amount' | 'effect/glow/amount' | 'effect/glow/darkness' | 'effect/glow/size' | 'effect/green_screen/colorMatch' | 'effect/green_screen/smoothness' | 'effect/green_screen/spill' | 'effect/half_tone/angle' | 'effect/half_tone/scale' | 'effect/linocut/scale' | 'effect/liquid/amount' | 'effect/liquid/scale' | 'effect/liquid/time' | 'effect/lut_filter/intensity' | 'effect/outliner/amount' | 'effect/outliner/passthrough' | 'effect/posterize/levels' | 'effect/radial_pixel/radius' | 'effect/radial_pixel/segments' | 'effect/recolor/brightnessMatch' | 'effect/recolor/colorMatch' | 'effect/recolor/smoothness' | 'effect/shifter/amount' | 'effect/shifter/angle' | 'effect/tilt_shift/amount' | 'effect/tilt_shift/position' | 'effect/tv_glitch/distortion' | 'effect/tv_glitch/distortion2' | 'effect/tv_glitch/rollSpeed' | 'effect/tv_glitch/speed' | 'effect/vignette/darkness' | 'effect/vignette/offset' | 'fill/gradient/linear/endPointX' | 'fill/gradient/linear/endPointY' | 'fill/gradient/linear/startPointX' | 'fill/gradient/linear/startPointY' | 'fill/gradient/radial/centerPointX' | 'fill/gradient/radial/centerPointY' | 'fill/gradient/radial/radius' | 'fill/gradient/conical/centerPointX' | 'fill/gradient/conical/centerPointY' | 'shape/rect/cornerRadiusBL' | 'shape/rect/cornerRadiusBR' | 'shape/rect/cornerRadiusTL' | 'shape/rect/cornerRadiusTR' | 'shape/polygon/cornerRadius' | 'shape/star/innerDiameter' | 'shape/vector_path/height' | 'shape/vector_path/width' | (string & {});
7261
7295
 
7262
7296
  /**
7263
7297
  * Represents a font.
@@ -8395,7 +8429,7 @@ export declare type SettingBoolPropertyName = 'alwaysHighlightPlaceholders' | 'd
8395
8429
  export declare type SettingColorPropertyName = 'clearColor' | 'handleFillColor' | 'highlightColor' | 'pageHighlightColor' | 'placeholderHighlightColor' | 'snappingGuideColor' | 'rotationSnappingGuideColor' | 'cropOverlayColor' | 'textVariableHighlightColor' | 'borderOutlineColor' | 'progressColor' | 'errorStateColor' | 'page/title/color' | 'page/marginFillColor' | 'page/marginFrameColor' | 'page/innerBorderColor' | 'page/outerBorderColor' | 'colorMaskingSettings/maskColor' | (string & {});
8396
8430
 
8397
8431
  /** @public */
8398
- export declare type SettingEnumPropertyName = 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'doubleClickSelectionMode' | 'colorPicker/colorMode' | (string & {});
8432
+ export declare type SettingEnumPropertyName = 'touch/pinchAction' | 'touch/rotateAction' | 'camera/clamping/overshootMode' | 'doubleClickSelectionMode' | 'colorPicker/colorMode' | 'timeline/trackVisibility' | (string & {});
8399
8433
 
8400
8434
  /** @public */
8401
8435
  export declare type SettingEnumType = {
@@ -8404,10 +8438,11 @@ export declare type SettingEnumType = {
8404
8438
  'camera/clamping/overshootMode': CameraClampingOvershootMode;
8405
8439
  doubleClickSelectionMode: DoubleClickSelectionMode;
8406
8440
  'colorPicker/colorMode': ColorPickerColorMode;
8441
+ 'timeline/trackVisibility': TimelineTrackVisibility;
8407
8442
  };
8408
8443
 
8409
8444
  /** @public */
8410
- export declare type SettingEnumValues = TouchPinchAction | TouchRotateAction | CameraClampingOvershootMode | DoubleClickSelectionMode | ColorPickerColorMode | (string & {});
8445
+ export declare type SettingEnumValues = TouchPinchAction | TouchRotateAction | CameraClampingOvershootMode | DoubleClickSelectionMode | ColorPickerColorMode | TimelineTrackVisibility | (string & {});
8411
8446
 
8412
8447
  /** @public */
8413
8448
  export declare type SettingFloatPropertyName = 'positionSnappingThreshold' | 'rotationSnappingThreshold' | 'controlGizmo/blockScaleDownLimit' | (string & {});
@@ -8472,6 +8507,8 @@ export declare interface Settings {
8472
8507
  'page/allowResizeInteraction': boolean;
8473
8508
  /** Whether rotation interaction should be possible when page layout is not controlled by the scene. */
8474
8509
  'page/allowRotateInteraction': boolean;
8510
+ /** Whether pages support non-rectangular shapes. When false, supportsShape returns false for pages. */
8511
+ 'page/allowShapeChange': boolean;
8475
8512
  /** Whether the opacity of the region outside of all pages should be reduced. */
8476
8513
  'page/dimOutOfPageAreas': boolean;
8477
8514
  /** Whether resize interaction should be restricted to fixed aspect ratio. */
@@ -8594,6 +8631,8 @@ export declare interface Settings {
8594
8631
  'dock/iconSize': 'normal' | 'large';
8595
8632
  /** Controls the color mode of the color picker. When set to 'RGB' or 'CMYK', only colors matching this mode are fully editable. Defaults to 'Any'. */
8596
8633
  'colorPicker/colorMode': 'RGB' | 'CMYK' | 'Any';
8634
+ /** Controls which timeline tracks are visible. 'all' shows all tracks, 'active' shows only the track containing the active block. Defaults to 'all'. */
8635
+ 'timeline/trackVisibility': 'all' | 'active';
8597
8636
 
8598
8637
 
8599
8638
 
@@ -8842,6 +8881,12 @@ export declare const StrokeStyleValues: readonly ["Dashed", "DashedRound", "Dott
8842
8881
  */
8843
8882
  declare type Subscription = number;
8844
8883
 
8884
+ /**
8885
+ * A synchronous URI resolver function.
8886
+ * @public
8887
+ */
8888
+ export declare type SyncURIResolver = (URI: string, defaultURIResolver: (URI: string) => string) => string;
8889
+
8845
8890
  /** @public */
8846
8891
  export declare type TextAnimationWritingStyle = (typeof TextAnimationWritingStyleValues)[number];
8847
8892
 
@@ -8891,6 +8936,12 @@ export { TextVerticalAlignment as VerticalTextAlignment }
8891
8936
  /** @public */
8892
8937
  export declare const TextVerticalAlignmentValues: readonly ["Top", "Bottom", "Center"];
8893
8938
 
8939
+ /** @public */
8940
+ export declare type TimelineTrackVisibility = (typeof TimelineTrackVisibilityValues)[number];
8941
+
8942
+ /** @public */
8943
+ export declare const TimelineTrackVisibilityValues: readonly ["all", "active"];
8944
+
8894
8945
  /** @public */
8895
8946
  export declare type TouchPinchAction = (typeof TouchPinchActionValues)[number];
8896
8947