@cesdk/node 1.61.0-nightly.20250912 → 1.61.0-nightly.20250914

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
@@ -6033,6 +6033,7 @@ export declare class EditorAPI {
6033
6033
  getSetting<K extends SettingKey>(keypath: OptionalPrefix<K>): SettingValueType<K>;
6034
6034
 
6035
6035
 
6036
+
6036
6037
  /**
6037
6038
  * Set a boolean setting value.
6038
6039
  *
@@ -7917,6 +7918,10 @@ export declare interface Settings {
7917
7918
  useSystemFontFallback: boolean;
7918
7919
  /** Whether to force the use of system emojis instead of custom emoji fonts. */
7919
7920
  forceSystemEmojis: boolean;
7921
+ /** Whether to select the page when a block is deselected and no other blocks are selected. */
7922
+ 'page/selectWhenNoBlocksSelected': boolean;
7923
+ /** Clamp thumbnail texture sizes to the platform's GPU texture limit. */
7924
+ clampThumbnailTextureSizes: boolean;
7920
7925
  /** The root directory used when resolving relative paths or accessing bundle:// URIs. */
7921
7926
  basePath: string;
7922
7927
  /** The URI for the default emoji font file. */
@@ -7975,6 +7980,8 @@ export declare interface Settings {
7975
7980
  snappingGuideColor: Color;
7976
7981
  /** The highlight color for text variables. */
7977
7982
  textVariableHighlightColor: Color;
7983
+ /** The fill color for handles. */
7984
+ handleFillColor: Color;
7978
7985
  /** The selection mode for double-click: Direct selects the clicked element, Hierarchical traverses the hierarchy. */
7979
7986
  doubleClickSelectionMode: 'Direct' | 'Hierarchical';
7980
7987
  /** The action performed for pinch gestures: None, Zoom, or Scale. */
@@ -7997,6 +8004,11 @@ export declare interface Settings {
7997
8004
 
7998
8005
 
7999
8006
 
8007
+
8008
+
8009
+
8010
+
8011
+
8000
8012
  }
8001
8013
 
8002
8014
  /**