react-instantsearch 7.25.0 → 7.26.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/dist/cjs/components/AutocompleteSearch.js +25 -36
- package/dist/cjs/components/Carousel.js +25 -39
- package/dist/cjs/components/index.js +6 -15
- package/dist/cjs/index.js +85 -44
- package/dist/cjs/lib/useStickToBottom.js +11 -17
- package/dist/cjs/package.json +4 -1
- package/dist/cjs/types/PartialKeys.js +2 -1
- package/dist/cjs/types/Translatable.js +2 -1
- package/dist/cjs/types/index.js +1 -26
- package/dist/cjs/ui/Breadcrumb.js +52 -57
- package/dist/cjs/ui/ClearRefinements.js +23 -28
- package/dist/cjs/ui/CurrentRefinements.js +48 -50
- package/dist/cjs/ui/HierarchicalMenu.js +71 -79
- package/dist/cjs/ui/Highlight.js +21 -25
- package/dist/cjs/ui/HitsPerPage.js +31 -34
- package/dist/cjs/ui/InfiniteHits.js +83 -88
- package/dist/cjs/ui/InternalHighlight.js +9 -10
- package/dist/cjs/ui/Menu.js +53 -56
- package/dist/cjs/ui/Pagination.js +117 -124
- package/dist/cjs/ui/PoweredBy.js +33 -37
- package/dist/cjs/ui/RangeInput.js +96 -116
- package/dist/cjs/ui/RefinementList.js +66 -67
- package/dist/cjs/ui/ReverseHighlight.js +21 -25
- package/dist/cjs/ui/SearchBox.js +141 -151
- package/dist/cjs/ui/ShowMoreButton.js +14 -17
- package/dist/cjs/ui/Snippet.js +21 -25
- package/dist/cjs/ui/SortBy.js +32 -36
- package/dist/cjs/ui/Stats.js +29 -32
- package/dist/cjs/ui/ToggleRefinement.js +30 -33
- package/dist/cjs/ui/lib/capitalize.js +5 -7
- package/dist/cjs/ui/lib/index.js +8 -26
- package/dist/cjs/ui/lib/isModifierClick.js +6 -8
- package/dist/cjs/widgets/Autocomplete.js +450 -491
- package/dist/cjs/widgets/Breadcrumb.js +34 -47
- package/dist/cjs/widgets/Chat.js +174 -221
- package/dist/cjs/widgets/ClearRefinements.js +31 -42
- package/dist/cjs/widgets/CurrentRefinements.js +27 -32
- package/dist/cjs/widgets/FilterSuggestions.js +46 -53
- package/dist/cjs/widgets/FrequentlyBoughtTogether.js +66 -74
- package/dist/cjs/widgets/HierarchicalMenu.js +53 -68
- package/dist/cjs/widgets/Highlight.js +31 -31
- package/dist/cjs/widgets/Hits.js +59 -64
- package/dist/cjs/widgets/HitsPerPage.js +32 -38
- package/dist/cjs/widgets/InfiniteHits.js +44 -61
- package/dist/cjs/widgets/LookingSimilar.js +66 -74
- package/dist/cjs/widgets/Menu.js +48 -62
- package/dist/cjs/widgets/Pagination.js +59 -74
- package/dist/cjs/widgets/PoweredBy.js +14 -17
- package/dist/cjs/widgets/RangeInput.js +38 -51
- package/dist/cjs/widgets/RefinementList.js +100 -125
- package/dist/cjs/widgets/RelatedProducts.js +66 -74
- package/dist/cjs/widgets/ReverseHighlight.js +38 -44
- package/dist/cjs/widgets/SearchBox.js +63 -86
- package/dist/cjs/widgets/Snippet.js +31 -31
- package/dist/cjs/widgets/SortBy.js +26 -32
- package/dist/cjs/widgets/Stats.js +54 -68
- package/dist/cjs/widgets/ToggleRefinement.js +33 -38
- package/dist/cjs/widgets/TrendingItems.js +70 -78
- package/dist/cjs/widgets/chat/tools/SearchIndexTool.js +92 -99
- package/dist/cjs/widgets/index.js +77 -289
- package/dist/cjs/widgets/index.umd.js +68 -322
- package/dist/es/components/AutocompleteSearch.js +22 -28
- package/dist/es/components/Carousel.js +23 -31
- package/dist/es/components/index.js +1 -1
- package/dist/es/index.js +29 -4
- package/dist/es/lib/useStickToBottom.js +10 -12
- package/dist/es/package.json +4 -0
- package/dist/es/types/PartialKeys.js +1 -1
- package/dist/es/types/Translatable.js +1 -1
- package/dist/es/types/index.js +1 -2
- package/dist/es/ui/Breadcrumb.js +49 -49
- package/dist/es/ui/ClearRefinements.js +21 -21
- package/dist/es/ui/CurrentRefinements.js +46 -43
- package/dist/es/ui/HierarchicalMenu.js +68 -71
- package/dist/es/ui/Highlight.js +19 -18
- package/dist/es/ui/HitsPerPage.js +29 -27
- package/dist/es/ui/InfiniteHits.js +80 -80
- package/dist/es/ui/InternalHighlight.js +7 -4
- package/dist/es/ui/Menu.js +51 -49
- package/dist/es/ui/Pagination.js +114 -116
- package/dist/es/ui/PoweredBy.js +31 -30
- package/dist/es/ui/RangeInput.js +93 -107
- package/dist/es/ui/RefinementList.js +64 -60
- package/dist/es/ui/ReverseHighlight.js +19 -18
- package/dist/es/ui/SearchBox.js +138 -143
- package/dist/es/ui/ShowMoreButton.js +13 -11
- package/dist/es/ui/Snippet.js +19 -18
- package/dist/es/ui/SortBy.js +30 -29
- package/dist/es/ui/Stats.js +27 -25
- package/dist/es/ui/ToggleRefinement.js +28 -26
- package/dist/es/ui/lib/capitalize.js +5 -3
- package/dist/es/ui/lib/index.js +2 -2
- package/dist/es/ui/lib/isModifierClick.js +6 -4
- package/dist/es/widgets/Autocomplete.js +438 -474
- package/dist/es/widgets/Breadcrumb.js +31 -39
- package/dist/es/widgets/Chat.js +164 -196
- package/dist/es/widgets/ClearRefinements.js +28 -34
- package/dist/es/widgets/CurrentRefinements.js +24 -24
- package/dist/es/widgets/FilterSuggestions.js +41 -42
- package/dist/es/widgets/FrequentlyBoughtTogether.js +62 -65
- package/dist/es/widgets/HierarchicalMenu.js +50 -60
- package/dist/es/widgets/Highlight.js +30 -25
- package/dist/es/widgets/Hits.js +54 -53
- package/dist/es/widgets/HitsPerPage.js +29 -30
- package/dist/es/widgets/InfiniteHits.js +41 -53
- package/dist/es/widgets/LookingSimilar.js +62 -65
- package/dist/es/widgets/Menu.js +45 -54
- package/dist/es/widgets/Pagination.js +56 -66
- package/dist/es/widgets/PoweredBy.js +12 -10
- package/dist/es/widgets/RangeInput.js +35 -43
- package/dist/es/widgets/RefinementList.js +98 -118
- package/dist/es/widgets/RelatedProducts.js +61 -64
- package/dist/es/widgets/ReverseHighlight.js +36 -37
- package/dist/es/widgets/SearchBox.js +61 -79
- package/dist/es/widgets/Snippet.js +30 -25
- package/dist/es/widgets/SortBy.js +23 -24
- package/dist/es/widgets/Stats.js +51 -60
- package/dist/es/widgets/ToggleRefinement.js +30 -30
- package/dist/es/widgets/TrendingItems.js +65 -68
- package/dist/es/widgets/chat/tools/SearchIndexTool.js +89 -91
- package/dist/es/widgets/index.js +27 -26
- package/dist/es/widgets/index.umd.js +36 -33
- package/dist/umd/ReactInstantSearch.js +23411 -30098
- package/dist/umd/ReactInstantSearch.min.js +3 -3
- package/package.json +8 -12
- package/dist/umd/ReactInstantSearch.js.map +0 -1
- package/dist/umd/ReactInstantSearch.min.js.map +0 -1
|
@@ -1,97 +1,95 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
1
|
+
import { _ } from '@swc/helpers/cjs/_object_spread.cjs';
|
|
2
|
+
import { createButtonComponent, ArrowRightIcon, ChevronLeftIcon, ChevronRightIcon } from 'instantsearch-ui-components';
|
|
3
3
|
import React, { createElement } from 'react';
|
|
4
|
-
import { Carousel } from
|
|
4
|
+
import { Carousel } from '../../../components/Carousel.js';
|
|
5
|
+
|
|
5
6
|
function createCarouselTool(showViewAll, itemComponent, getSearchPageURL) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
});
|
|
9
|
-
function SearchLayoutComponent(_ref) {
|
|
10
|
-
var message = _ref.message,
|
|
11
|
-
applyFilters = _ref.applyFilters,
|
|
12
|
-
onClose = _ref.onClose;
|
|
13
|
-
var input = message === null || message === void 0 ? void 0 : message.input;
|
|
14
|
-
var output = message === null || message === void 0 ? void 0 : message.output;
|
|
15
|
-
var items = (output === null || output === void 0 ? void 0 : output.hits) || [];
|
|
16
|
-
var MemoedHeaderComponent = React.useMemo(function () {
|
|
17
|
-
return function (props) {
|
|
18
|
-
return /*#__PURE__*/React.createElement(HeaderComponent, _extends({
|
|
19
|
-
nbHits: output === null || output === void 0 ? void 0 : output.nbHits,
|
|
20
|
-
input: input,
|
|
21
|
-
hitsPerPage: items.length,
|
|
22
|
-
onClose: onClose,
|
|
23
|
-
applyFilters: applyFilters
|
|
24
|
-
}, props));
|
|
25
|
-
};
|
|
26
|
-
}, [items.length, input, output === null || output === void 0 ? void 0 : output.nbHits, applyFilters, onClose]);
|
|
27
|
-
return /*#__PURE__*/React.createElement(Carousel, {
|
|
28
|
-
items: items,
|
|
29
|
-
itemComponent: itemComponent,
|
|
30
|
-
sendEvent: function sendEvent() {},
|
|
31
|
-
showNavigation: false,
|
|
32
|
-
headerComponent: MemoedHeaderComponent
|
|
7
|
+
var Button = createButtonComponent({
|
|
8
|
+
createElement: createElement
|
|
33
9
|
});
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
10
|
+
function SearchLayoutComponent(param) {
|
|
11
|
+
var message = param.message, applyFilters = param.applyFilters, onClose = param.onClose;
|
|
12
|
+
var input = message === null || message === void 0 ? void 0 : message.input;
|
|
13
|
+
var output = message === null || message === void 0 ? void 0 : message.output;
|
|
14
|
+
var items = (output === null || output === void 0 ? void 0 : output.hits) || [];
|
|
15
|
+
var MemoedHeaderComponent = React.useMemo(function() {
|
|
16
|
+
return function(props) {
|
|
17
|
+
return /*#__PURE__*/ React.createElement(HeaderComponent, _({
|
|
18
|
+
nbHits: output === null || output === void 0 ? void 0 : output.nbHits,
|
|
19
|
+
input: input,
|
|
20
|
+
hitsPerPage: items.length,
|
|
21
|
+
onClose: onClose,
|
|
22
|
+
applyFilters: applyFilters
|
|
23
|
+
}, props));
|
|
24
|
+
};
|
|
25
|
+
}, [
|
|
26
|
+
items.length,
|
|
27
|
+
input,
|
|
28
|
+
output === null || output === void 0 ? void 0 : output.nbHits,
|
|
29
|
+
applyFilters,
|
|
30
|
+
onClose
|
|
31
|
+
]);
|
|
32
|
+
return /*#__PURE__*/ React.createElement(Carousel, {
|
|
33
|
+
items: items,
|
|
34
|
+
itemComponent: itemComponent,
|
|
35
|
+
sendEvent: function sendEvent() {},
|
|
36
|
+
showNavigation: false,
|
|
37
|
+
headerComponent: MemoedHeaderComponent
|
|
62
38
|
});
|
|
63
|
-
|
|
64
|
-
|
|
39
|
+
}
|
|
40
|
+
function HeaderComponent(param) {
|
|
41
|
+
var canScrollLeft = param.canScrollLeft, canScrollRight = param.canScrollRight, scrollLeft = param.scrollLeft, scrollRight = param.scrollRight, nbHits = param.nbHits, input = param.input, hitsPerPage = param.hitsPerPage, applyFilters = param.applyFilters, onClose = param.onClose;
|
|
42
|
+
if ((hitsPerPage !== null && hitsPerPage !== void 0 ? hitsPerPage : 0) < 1) {
|
|
43
|
+
return null;
|
|
65
44
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
45
|
+
return /*#__PURE__*/ React.createElement("div", {
|
|
46
|
+
className: "ais-ChatToolSearchIndexCarouselHeader"
|
|
47
|
+
}, /*#__PURE__*/ React.createElement("div", {
|
|
48
|
+
className: "ais-ChatToolSearchIndexCarouselHeaderResults"
|
|
49
|
+
}, nbHits && /*#__PURE__*/ React.createElement("div", {
|
|
50
|
+
className: "ais-ChatToolSearchIndexCarouselHeaderCount"
|
|
51
|
+
}, hitsPerPage !== null && hitsPerPage !== void 0 ? hitsPerPage : 0, " of ", nbHits.toLocaleString(), " result", nbHits > 1 ? 's' : ''), showViewAll && /*#__PURE__*/ React.createElement(Button, {
|
|
52
|
+
variant: "ghost",
|
|
53
|
+
size: "sm",
|
|
54
|
+
onClick: function onClick() {
|
|
55
|
+
if (!input || !applyFilters) return;
|
|
56
|
+
var params = applyFilters({
|
|
57
|
+
query: input.query,
|
|
58
|
+
facetFilters: input.facet_filters
|
|
59
|
+
});
|
|
60
|
+
if (getSearchPageURL && new URL(getSearchPageURL(params)).pathname !== window.location.pathname) {
|
|
61
|
+
window.location.href = getSearchPageURL(params);
|
|
62
|
+
}
|
|
63
|
+
onClose();
|
|
64
|
+
},
|
|
65
|
+
className: "ais-ChatToolSearchIndexCarouselHeaderViewAll"
|
|
66
|
+
}, "View all", /*#__PURE__*/ React.createElement(ArrowRightIcon, {
|
|
67
|
+
createElement: createElement
|
|
68
|
+
}))), (hitsPerPage !== null && hitsPerPage !== void 0 ? hitsPerPage : 0) > 2 && /*#__PURE__*/ React.createElement("div", {
|
|
69
|
+
className: "ais-ChatToolSearchIndexCarouselHeaderScrollButtons"
|
|
70
|
+
}, /*#__PURE__*/ React.createElement(Button, {
|
|
71
|
+
variant: "outline",
|
|
72
|
+
size: "sm",
|
|
73
|
+
iconOnly: true,
|
|
74
|
+
onClick: scrollLeft,
|
|
75
|
+
disabled: !canScrollLeft,
|
|
76
|
+
className: "ais-ChatToolSearchIndexCarouselHeaderScrollButton"
|
|
77
|
+
}, /*#__PURE__*/ React.createElement(ChevronLeftIcon, {
|
|
78
|
+
createElement: createElement
|
|
79
|
+
})), /*#__PURE__*/ React.createElement(Button, {
|
|
80
|
+
variant: "outline",
|
|
81
|
+
size: "sm",
|
|
82
|
+
iconOnly: true,
|
|
83
|
+
onClick: scrollRight,
|
|
84
|
+
disabled: !canScrollRight,
|
|
85
|
+
className: "ais-ChatToolSearchIndexCarouselHeaderScrollButton"
|
|
86
|
+
}, /*#__PURE__*/ React.createElement(ChevronRightIcon, {
|
|
87
|
+
createElement: createElement
|
|
88
|
+
}))));
|
|
89
|
+
}
|
|
90
|
+
return {
|
|
91
|
+
layoutComponent: SearchLayoutComponent
|
|
92
|
+
};
|
|
96
93
|
}
|
|
97
|
-
|
|
94
|
+
|
|
95
|
+
export { createCarouselTool };
|
package/dist/es/widgets/index.js
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
1
|
+
export { EXPERIMENTAL_Autocomplete } from './Autocomplete.js';
|
|
2
|
+
export { Breadcrumb } from './Breadcrumb.js';
|
|
3
|
+
export { Chat, createDefaultTools } from './Chat.js';
|
|
4
|
+
export { ClearRefinements } from './ClearRefinements.js';
|
|
5
|
+
export { CurrentRefinements } from './CurrentRefinements.js';
|
|
6
|
+
export { FrequentlyBoughtTogether } from './FrequentlyBoughtTogether.js';
|
|
7
|
+
export { HierarchicalMenu } from './HierarchicalMenu.js';
|
|
8
|
+
export { Highlight } from './Highlight.js';
|
|
9
|
+
export { Hits } from './Hits.js';
|
|
10
|
+
export { HitsPerPage } from './HitsPerPage.js';
|
|
11
|
+
export { InfiniteHits } from './InfiniteHits.js';
|
|
12
|
+
export { LookingSimilar } from './LookingSimilar.js';
|
|
13
|
+
export { Menu } from './Menu.js';
|
|
14
|
+
export { Pagination } from './Pagination.js';
|
|
15
|
+
export { PoweredBy } from './PoweredBy.js';
|
|
16
|
+
export { RangeInput } from './RangeInput.js';
|
|
17
|
+
export { RefinementList } from './RefinementList.js';
|
|
18
|
+
export { RelatedProducts } from './RelatedProducts.js';
|
|
19
|
+
export { ReverseHighlight } from './ReverseHighlight.js';
|
|
20
|
+
export { SearchBox } from './SearchBox.js';
|
|
21
|
+
export { Snippet } from './Snippet.js';
|
|
22
|
+
export { SortBy } from './SortBy.js';
|
|
23
|
+
export { Stats } from './Stats.js';
|
|
24
|
+
export { ToggleRefinement } from './ToggleRefinement.js';
|
|
25
|
+
export { TrendingItems } from './TrendingItems.js';
|
|
26
|
+
export { FilterSuggestions } from './FilterSuggestions.js';
|
|
27
|
+
export { MemorizeToolType, MemorySearchToolType, PonderToolType, RecommendToolType, SearchIndexToolType } from 'instantsearch.js/es/lib/chat/index.js';
|
|
@@ -1,34 +1,37 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
|
|
1
|
+
export { EXPERIMENTAL_Autocomplete } from './Autocomplete.js';
|
|
2
|
+
export { Breadcrumb } from './Breadcrumb.js';
|
|
3
|
+
export { FilterSuggestions } from './FilterSuggestions.js';
|
|
4
|
+
export { ClearRefinements } from './ClearRefinements.js';
|
|
5
|
+
export { CurrentRefinements } from './CurrentRefinements.js';
|
|
6
|
+
export { FrequentlyBoughtTogether } from './FrequentlyBoughtTogether.js';
|
|
7
|
+
export { HierarchicalMenu } from './HierarchicalMenu.js';
|
|
8
|
+
export { Highlight } from './Highlight.js';
|
|
9
|
+
export { Hits } from './Hits.js';
|
|
10
|
+
export { HitsPerPage } from './HitsPerPage.js';
|
|
11
|
+
export { InfiniteHits } from './InfiniteHits.js';
|
|
12
|
+
export { LookingSimilar } from './LookingSimilar.js';
|
|
13
|
+
export { Menu } from './Menu.js';
|
|
14
|
+
export { Pagination } from './Pagination.js';
|
|
15
|
+
export { PoweredBy } from './PoweredBy.js';
|
|
16
|
+
export { RangeInput } from './RangeInput.js';
|
|
17
|
+
export { RefinementList } from './RefinementList.js';
|
|
18
|
+
export { RelatedProducts } from './RelatedProducts.js';
|
|
19
|
+
export { ReverseHighlight } from './ReverseHighlight.js';
|
|
20
|
+
export { SearchBox } from './SearchBox.js';
|
|
21
|
+
export { Snippet } from './Snippet.js';
|
|
22
|
+
export { SortBy } from './SortBy.js';
|
|
23
|
+
export { Stats } from './Stats.js';
|
|
24
|
+
export { ToggleRefinement } from './ToggleRefinement.js';
|
|
25
|
+
export { TrendingItems } from './TrendingItems.js';
|
|
26
|
+
|
|
27
|
+
var Chat = function Chat() {
|
|
28
|
+
throw new Error('"<Chat>" is not available from the UMD build.\n\nPlease use React InstantSearch with a packaging system:\nhttps://www.algolia.com/doc/guides/building-search-ui/installation/react/#install-react-instantsearch-as-an-npm-package');
|
|
5
29
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export
|
|
14
|
-
export * from "./CurrentRefinements.js";
|
|
15
|
-
export * from "./FrequentlyBoughtTogether.js";
|
|
16
|
-
export * from "./HierarchicalMenu.js";
|
|
17
|
-
export * from "./Highlight.js";
|
|
18
|
-
export * from "./Hits.js";
|
|
19
|
-
export * from "./HitsPerPage.js";
|
|
20
|
-
export * from "./InfiniteHits.js";
|
|
21
|
-
export * from "./LookingSimilar.js";
|
|
22
|
-
export * from "./Menu.js";
|
|
23
|
-
export * from "./Pagination.js";
|
|
24
|
-
export * from "./PoweredBy.js";
|
|
25
|
-
export * from "./RangeInput.js";
|
|
26
|
-
export * from "./RefinementList.js";
|
|
27
|
-
export * from "./RelatedProducts.js";
|
|
28
|
-
export * from "./ReverseHighlight.js";
|
|
29
|
-
export * from "./SearchBox.js";
|
|
30
|
-
export * from "./Snippet.js";
|
|
31
|
-
export * from "./SortBy.js";
|
|
32
|
-
export * from "./Stats.js";
|
|
33
|
-
export * from "./ToggleRefinement.js";
|
|
34
|
-
export * from "./TrendingItems.js";
|
|
30
|
+
var SearchIndexToolType = undefined;
|
|
31
|
+
var RecommendToolType = undefined;
|
|
32
|
+
var MemorizeToolType = undefined;
|
|
33
|
+
var MemorySearchToolType = undefined;
|
|
34
|
+
var PonderToolType = undefined;
|
|
35
|
+
var createDefaultTools = function createDefaultTools() {};
|
|
36
|
+
|
|
37
|
+
export { Chat, MemorizeToolType, MemorySearchToolType, PonderToolType, RecommendToolType, SearchIndexToolType, createDefaultTools };
|