@cesdk/cesdk-js 1.64.0-nightly.20251029 → 1.64.0-nightly.20251030

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
@@ -4144,7 +4144,7 @@ declare type NotificationWithId = Notification_2 & {
4144
4144
  * The `NumberInputOptions` interface provides a set of properties that control the
4145
4145
  * behavior and appearance of a number input. These options include settings for the
4146
4146
  * input label, input label position, value, value setter, disabled state, minimum value,
4147
- * maximum value, step value, and suffix.
4147
+ * maximum value, step value, suffix, and requireConfirm.
4148
4148
  *
4149
4149
  * @public
4150
4150
  */
@@ -4152,6 +4152,14 @@ export declare interface NumberInputOptions extends InputOptions<number> {
4152
4152
  min?: number;
4153
4153
  max?: number;
4154
4154
  step?: number;
4155
+ /**
4156
+ * Whether to require explicit confirmation (Enter/Escape/blur) before applying changes.
4157
+ * When true, changes are only applied when user presses Enter/ESC or blurs the input.
4158
+ * When false, changes are applied immediately on every keystroke.
4159
+ *
4160
+ * @defaultValue true
4161
+ */
4162
+ requireConfirm?: boolean;
4155
4163
  }
4156
4164
 
4157
4165
  export { ObjectType }
@@ -4703,11 +4711,19 @@ export { TextCase }
4703
4711
  * The `TextInputOptions` interface provides a set of properties that control the
4704
4712
  * behavior and appearance of a text input. These options include settings for the
4705
4713
  * input label, input label position, value, value setter, disabled state, placeholder,
4706
- * and suffix.
4714
+ * suffix, and requireConfirm.
4707
4715
  *
4708
4716
  * @public
4709
4717
  */
4710
4718
  export declare interface TextInputOptions extends InputOptions<string> {
4719
+ /**
4720
+ * Whether to require explicit confirmation (Enter/Escape/blur) before applying changes.
4721
+ * When true, changes are only applied when user presses Enter/ESC or blurs the input.
4722
+ * When false, changes are applied immediately on every keystroke.
4723
+ *
4724
+ * @defaultValue true
4725
+ */
4726
+ requireConfirm?: boolean;
4711
4727
  }
4712
4728
 
4713
4729
  /**