@floe-ai/sdk 0.1.0-dev.26 → 0.1.0-dev.28
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/dist-sdk/floe-sdk.es.js +1694 -1780
- package/dist-sdk/floe-sdk.es.js.map +1 -1
- package/dist-sdk/floe-sdk.iife.js +46 -46
- package/dist-sdk/floe-sdk.iife.js.map +1 -1
- package/dist-sdk/floe-sdk.umd.js +46 -46
- package/dist-sdk/floe-sdk.umd.js.map +1 -1
- package/dist-sdk/index.d.ts +5 -10
- package/package.json +1 -1
package/dist-sdk/index.d.ts
CHANGED
|
@@ -333,27 +333,22 @@ declare class OnboardingSDK extends EventEmitter {
|
|
|
333
333
|
private handleDropdownOptionClick;
|
|
334
334
|
/**
|
|
335
335
|
* Check if a dropdown/listbox is currently open on the page.
|
|
336
|
-
*
|
|
336
|
+
* Delegates to shared dropdown-helpers module.
|
|
337
337
|
*/
|
|
338
338
|
private isDropdownCurrentlyOpen;
|
|
339
339
|
/**
|
|
340
340
|
* Find the search input within or associated with a dropdown.
|
|
341
|
-
*
|
|
341
|
+
* Delegates to shared dropdown-helpers module.
|
|
342
342
|
*/
|
|
343
343
|
private findDropdownSearchInput;
|
|
344
344
|
/**
|
|
345
345
|
* Type text into a dropdown search input to filter options, then find the target option.
|
|
346
|
-
*
|
|
346
|
+
* Delegates to shared dropdown-helpers module.
|
|
347
347
|
*/
|
|
348
348
|
private typeToFilterDropdown;
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
351
|
-
*
|
|
352
|
-
*/
|
|
353
|
-
private getSearchTermsForOption;
|
|
354
|
-
/**
|
|
355
|
-
* Find a visible dropdown option by text
|
|
356
|
-
* Uses STRICT matching to avoid selecting wrong options
|
|
350
|
+
* Find a visible dropdown option by text.
|
|
351
|
+
* Delegates to shared dropdown-helpers module.
|
|
357
352
|
*/
|
|
358
353
|
private findVisibleDropdownOption;
|
|
359
354
|
/**
|