@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.
@@ -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
- * Detects Angular NZ Select, CDK overlays, React Select, and generic dropdowns.
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
- * Works with Angular NZ Select, React Select, and generic combobox patterns.
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
- * Uses progressive typing: tries the first word first, then adds more if needed.
346
+ * Delegates to shared dropdown-helpers module.
347
347
  */
348
348
  private typeToFilterDropdown;
349
349
  /**
350
- * Generate search terms to try for a given option text.
351
- * Returns progressively more specific terms: ["Brandon", "Brandon Mora"]
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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floe-ai/sdk",
3
- "version": "0.1.0-dev.26",
3
+ "version": "0.1.0-dev.28",
4
4
  "description": "Floe AI Onboarding SDK for React applications",
5
5
  "type": "module",
6
6
  "main": "./dist-sdk/floe-sdk.es.js",