@cesdk/cesdk-js 1.72.0 → 1.72.1

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
@@ -5464,12 +5464,7 @@ export declare interface SectionOptions {
5464
5464
  }
5465
5465
 
5466
5466
  /**
5467
- * Represents options for a select input.
5468
- *
5469
- * The `SelectOptions` interface provides a set of properties that control the
5470
- * behavior and appearance of a select input. These options include settings for the
5471
- * input label, input label position, value, value setter, disabled state, icon,
5472
- * tooltip, loading state, loading progress, suffix, and values.
5467
+ * Options for a select input.
5473
5468
  *
5474
5469
  * @public
5475
5470
  */
@@ -5482,6 +5477,14 @@ export declare interface SelectOptions extends InputOptions<SelectValue> {
5482
5477
  loadingProgress?: number;
5483
5478
  suffix?: Suffix;
5484
5479
  values: SelectValue[];
5480
+ /**
5481
+ * When true, adds a search input that filters the dropdown options by label.
5482
+ */
5483
+ searchable?: boolean;
5484
+ /**
5485
+ * Placeholder text for the search input. Only used when `searchable` is true.
5486
+ */
5487
+ searchPlaceholder?: string | string[];
5485
5488
  }
5486
5489
 
5487
5490
  /**