@dbx-tools/ui-search 0.6.131 → 0.6.133

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/package.json CHANGED
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@databricks/appkit-ui": "^0.60.0",
28
- "@dbx-tools/shared-core": "0.6.131",
29
- "@dbx-tools/shared-search": "0.6.131",
30
- "@dbx-tools/ui-appkit": "0.6.131",
28
+ "@dbx-tools/shared-core": "0.6.133",
29
+ "@dbx-tools/shared-search": "0.6.133",
30
+ "@dbx-tools/ui-appkit": "0.6.133",
31
31
  "lucide-react": "^0.554.0",
32
32
  "react": "^19.2.4",
33
33
  "react-dom": "^19.2.4"
@@ -36,7 +36,7 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "version": "0.6.131",
39
+ "version": "0.6.133",
40
40
  "type": "module",
41
41
  "exports": {
42
42
  "./react": "./src/react/index.ts",
@@ -2,6 +2,7 @@
2
2
  // search-as-you-type state machine. Single-index queries use AppKit's native
3
3
  // route and client config; universal queries use the dbx-tools extension route.
4
4
 
5
+ import { useAiSearchQuery, type AiSearchRequest } from "@databricks/appkit-ui/react/beta";
5
6
  import {
6
7
  search as sharedSearch,
7
8
  type SearchClientConfig,
@@ -9,7 +10,6 @@ import {
9
10
  type SearchMode,
10
11
  type SearchResult,
11
12
  } from "@dbx-tools/shared-search";
12
- import { useAiSearchQuery, type AiSearchRequest } from "@databricks/appkit-ui/react/beta";
13
13
  import { useCallback, useEffect, useMemo, useRef, useState } from "react";
14
14
 
15
15
  /** Options for {@link useSearch}. */