@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/assets/core/{cesdk-v1.72.0-4WZQ6X3Z.wasm → cesdk-v1.72.1-6DYQNDMR.wasm} +0 -0
- package/assets/core/{worker-host-v1.72.0.js → worker-host-v1.72.1.js} +1 -1
- package/assets/ui/stylesheets/cesdk.css +58 -37
- package/cesdk.umd.js +1 -1
- package/index.d.ts +9 -6
- package/index.js +1 -1
- package/package.json +2 -2
- package/integrations/react.d.ts +0 -182
- package/integrations/react.js +0 -1
- /package/assets/core/{cesdk-v1.72.0-MLEZSZ4D.data → cesdk-v1.72.1-MLEZSZ4D.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -5464,12 +5464,7 @@ export declare interface SectionOptions {
|
|
|
5464
5464
|
}
|
|
5465
5465
|
|
|
5466
5466
|
/**
|
|
5467
|
-
*
|
|
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
|
/**
|