@uniformdev/mesh-sdk-react 13.0.0-beta.0 → 13.0.1-alpha.271
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/index.d.ts +311 -14
- package/dist/index.esm.js +517 -1
- package/dist/index.js +517 -1
- package/dist/index.mjs +517 -1
- package/package.json +59 -22
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
import * as _uniformdev_mesh_sdk from '@uniformdev/mesh-sdk';
|
|
2
2
|
import { UniformMeshSDK, MeshLocation } from '@uniformdev/mesh-sdk';
|
|
3
3
|
export * from '@uniformdev/mesh-sdk';
|
|
4
|
-
import React from 'react';
|
|
4
|
+
import * as React from 'react';
|
|
5
|
+
import React__default, { SVGProps } from 'react';
|
|
6
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
7
|
+
import { TDate } from 'timeago.js';
|
|
8
|
+
import * as _emotion_react from '@emotion/react';
|
|
9
|
+
export { Button, ButtonProps, Callout, CalloutProps, Heading, HeadingProps, Input, InputProps, InputSelect, InputToggle, InputToggleProps, InputKeywordSearch as KeywordSearchInput, LoadingIndicator, LoadingOverlay, Menu, MenuItem, MenuItemProps, MenuProps, ScrollableList, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, Theme, ThemeProps } from '@uniformdev/design-system';
|
|
5
10
|
|
|
6
11
|
/**
|
|
7
12
|
* Provides convenient access to the current Uniform Mesh location via React hook.
|
|
8
13
|
* Intended to be used within a UniformMeshLocationContextProvider.
|
|
9
14
|
*/
|
|
10
|
-
declare function useUniformMeshLocation<TLocationMethodsValue = unknown, TLocationMethodsMetadata = unknown>(): {
|
|
15
|
+
declare function useUniformMeshLocation<TLocationMethodsValue = unknown, TLocationMethodsMetadata = unknown, TLocationSetValue = TLocationMethodsValue>(): {
|
|
11
16
|
value: TLocationMethodsValue;
|
|
12
|
-
setValue: (value:
|
|
17
|
+
setValue: (value: TLocationSetValue) => Promise<void>;
|
|
13
18
|
metadata: TLocationMethodsMetadata;
|
|
14
19
|
};
|
|
15
20
|
|
|
@@ -32,24 +37,316 @@ declare const useInitializeUniformMeshSdk: ({ autoResizingDisabled }?: UseUnifor
|
|
|
32
37
|
*/
|
|
33
38
|
declare function useUniformMeshSdk(): _uniformdev_mesh_sdk.UniformMeshSDK;
|
|
34
39
|
|
|
40
|
+
interface UniformMeshLocationContextValue<TLocationValue = unknown, TLocationMetadata = unknown, TLocationSetValue = TLocationValue> {
|
|
41
|
+
location: MeshLocation<TLocationValue, TLocationMetadata, TLocationSetValue>;
|
|
42
|
+
}
|
|
43
|
+
declare const UniformMeshLocationContext: React__default.Context<UniformMeshLocationContextValue<unknown, unknown, unknown> | undefined>;
|
|
44
|
+
declare const UniformMeshLocationContextProvider: React__default.FC;
|
|
45
|
+
/**
|
|
46
|
+
* Provides access to the current UniformMeshLocationContext value.
|
|
47
|
+
*/
|
|
48
|
+
declare const useUniformMeshLocationContext: <TLocationValue, TLocationMetadata, TLocationSetValue = TLocationValue>() => UniformMeshLocationContextValue<TLocationValue, TLocationMetadata, TLocationSetValue>;
|
|
49
|
+
|
|
35
50
|
interface UniformMeshSdkContextValue {
|
|
36
51
|
sdk: UniformMeshSDK;
|
|
37
52
|
}
|
|
38
|
-
declare const UniformMeshSdkContext:
|
|
39
|
-
declare const UniformMeshSdkContextProvider:
|
|
53
|
+
declare const UniformMeshSdkContext: React__default.Context<UniformMeshSdkContextValue | undefined>;
|
|
54
|
+
declare const UniformMeshSdkContextProvider: React__default.FC;
|
|
40
55
|
/**
|
|
41
56
|
* Provides access to the current (initialized) Uniform Mesh SDK context value.
|
|
42
57
|
*/
|
|
43
58
|
declare const useUniformMeshSdkContext: () => UniformMeshSdkContextValue;
|
|
44
59
|
|
|
45
|
-
interface
|
|
46
|
-
|
|
60
|
+
interface EntrySearchSelectedItemProps<TResult extends EntrySearchResult = EntrySearchResult> {
|
|
61
|
+
selectedItem: TResult;
|
|
62
|
+
logoIcon: string | React__default.ComponentType<{
|
|
63
|
+
className?: string;
|
|
64
|
+
}>;
|
|
65
|
+
onDeselect: (item: TResult) => void;
|
|
66
|
+
onEditClosed?: (item: TResult) => void;
|
|
67
|
+
}
|
|
68
|
+
declare const DefaultSelectedItem: React__default.FC<EntrySearchSelectedItemProps>;
|
|
69
|
+
|
|
70
|
+
interface EntrySearchRowProps<TResult extends EntrySearchResult = EntrySearchResult> {
|
|
71
|
+
result: TResult;
|
|
72
|
+
isSelected: boolean;
|
|
73
|
+
triggerSelection: () => void;
|
|
74
|
+
}
|
|
75
|
+
declare const DefaultSearchRow: React__default.FC<EntrySearchRowProps>;
|
|
76
|
+
|
|
77
|
+
declare type EntrySearchQueryOptions = {
|
|
78
|
+
count: number;
|
|
79
|
+
offset: number;
|
|
80
|
+
contentType?: string;
|
|
81
|
+
};
|
|
82
|
+
declare type EntrySearchProps<TResult extends EntrySearchResult = EntrySearchResult> = {
|
|
83
|
+
search: (text: string, options: EntrySearchQueryOptions) => void;
|
|
84
|
+
results: TResult[] | undefined;
|
|
85
|
+
totalResults?: number | undefined;
|
|
86
|
+
contentTypes?: EntrySearchContentType[];
|
|
87
|
+
selectedItems: TResult[] | undefined;
|
|
88
|
+
logoIcon: string | React.ComponentType<{
|
|
89
|
+
className?: string;
|
|
90
|
+
}>;
|
|
91
|
+
select: (id: string[], contentType?: string) => void;
|
|
92
|
+
requireContentType?: boolean;
|
|
93
|
+
multiSelectId?: string;
|
|
94
|
+
multiSelect?: boolean;
|
|
95
|
+
rowComponent?: React.FC<EntrySearchRowProps<TResult>>;
|
|
96
|
+
selectedItemComponent?: React.FC<EntrySearchSelectedItemProps<TResult>>;
|
|
97
|
+
onAddNew?: (type: EntrySearchContentType) => void;
|
|
98
|
+
onEditClosed?: (item: EntrySearchResult) => void;
|
|
99
|
+
onCancel?: () => void;
|
|
100
|
+
resultsLoading?: boolean;
|
|
101
|
+
noResultsComponent?: React.FC<{
|
|
102
|
+
searchText?: string;
|
|
103
|
+
selectedContentType?: string;
|
|
104
|
+
}>;
|
|
105
|
+
helpComponent?: JSX.Element;
|
|
106
|
+
onSort?: (ids: string[]) => void;
|
|
107
|
+
};
|
|
108
|
+
interface EntrySearchResult {
|
|
109
|
+
id: string;
|
|
110
|
+
title: string | JSX.Element;
|
|
111
|
+
createdDate?: TDate;
|
|
112
|
+
editLink?: string;
|
|
113
|
+
metadata?: Record<string, string | JSX.Element>;
|
|
114
|
+
popoverData?: Record<string, string | JSX.Element>;
|
|
115
|
+
}
|
|
116
|
+
interface EntrySearchContentType {
|
|
117
|
+
id: string;
|
|
118
|
+
name: string;
|
|
119
|
+
}
|
|
120
|
+
interface NoResultsProps {
|
|
121
|
+
searchText: string | undefined;
|
|
122
|
+
selectedContentType: string | undefined;
|
|
123
|
+
}
|
|
124
|
+
declare const EntrySearch: <TResult extends EntrySearchResult>({ search, results, contentTypes, selectedItems, logoIcon, select, multiSelect, multiSelectId, rowComponent, selectedItemComponent, totalResults, resultsLoading, requireContentType, onAddNew, onEditClosed, onCancel, noResultsComponent, helpComponent, onSort, }: EntrySearchProps<TResult>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
125
|
+
|
|
126
|
+
declare const searchRowContainer: _emotion_react.SerializedStyles;
|
|
127
|
+
declare const searchRowContainerActive: _emotion_react.SerializedStyles;
|
|
128
|
+
declare const searchRowTextSmall: _emotion_react.SerializedStyles;
|
|
129
|
+
declare const searchRowText: _emotion_react.SerializedStyles;
|
|
130
|
+
declare const searchRowPopover: _emotion_react.SerializedStyles;
|
|
131
|
+
declare const searchRowBtn: _emotion_react.SerializedStyles;
|
|
132
|
+
|
|
133
|
+
declare const selectedItemContainer: _emotion_react.SerializedStyles;
|
|
134
|
+
declare const selectedItemInner: _emotion_react.SerializedStyles;
|
|
135
|
+
declare const selectedItemDetails: _emotion_react.SerializedStyles;
|
|
136
|
+
declare const selectedItemCopy: _emotion_react.SerializedStyles;
|
|
137
|
+
declare const selectedItemTitle: _emotion_react.SerializedStyles;
|
|
138
|
+
declare const selectedItemIcon: _emotion_react.SerializedStyles;
|
|
139
|
+
declare const selectedItemCloseIcon: _emotion_react.SerializedStyles;
|
|
140
|
+
declare const selectItemPopover: _emotion_react.SerializedStyles;
|
|
141
|
+
declare const selectItemSmallText: _emotion_react.SerializedStyles;
|
|
142
|
+
declare const selectItemPopoverLabel: _emotion_react.SerializedStyles;
|
|
143
|
+
declare const selectItemLinkContainer: _emotion_react.SerializedStyles;
|
|
144
|
+
declare const selectItemLinkBtn: _emotion_react.SerializedStyles;
|
|
145
|
+
|
|
146
|
+
declare const entrySearchWrapper: _emotion_react.SerializedStyles;
|
|
147
|
+
declare const entrySearchBtn: _emotion_react.SerializedStyles;
|
|
148
|
+
declare const entrySearchLoadMoreBtn: _emotion_react.SerializedStyles;
|
|
149
|
+
declare const entrySearchConfig: _emotion_react.SerializedStyles;
|
|
150
|
+
declare const entrySearchConfigHidden: _emotion_react.SerializedStyles;
|
|
151
|
+
declare const entrySearchResultList: _emotion_react.SerializedStyles;
|
|
152
|
+
declare const entrySearchSelectInput: _emotion_react.SerializedStyles;
|
|
153
|
+
declare const entrySearchSelectIcon: _emotion_react.SerializedStyles;
|
|
154
|
+
declare const entrySearchSelectImg: _emotion_react.SerializedStyles;
|
|
155
|
+
declare const entrySearchSelectOption: _emotion_react.SerializedStyles;
|
|
156
|
+
declare const draggableContainer: _emotion_react.SerializedStyles;
|
|
157
|
+
declare const draggableIconWrapper: _emotion_react.SerializedStyles;
|
|
158
|
+
declare const draggableIcon: _emotion_react.SerializedStyles;
|
|
159
|
+
declare const draggableIconOffset: _emotion_react.SerializedStyles;
|
|
160
|
+
declare const badgeIcon: _emotion_react.SerializedStyles;
|
|
161
|
+
|
|
162
|
+
declare type GetProductsOptions = {
|
|
163
|
+
keyword?: string;
|
|
164
|
+
count?: number;
|
|
165
|
+
categories?: string[];
|
|
166
|
+
brand?: string;
|
|
167
|
+
sort?: string;
|
|
168
|
+
sortOrder?: string;
|
|
169
|
+
ids?: string[];
|
|
170
|
+
offset?: number;
|
|
171
|
+
};
|
|
172
|
+
declare type ProductSearchResult = EntrySearchResult & {
|
|
173
|
+
price: number;
|
|
174
|
+
sku?: string;
|
|
175
|
+
thumbnailUrl?: string;
|
|
176
|
+
categories?: Array<{
|
|
177
|
+
id: string;
|
|
178
|
+
name: string;
|
|
179
|
+
}>;
|
|
180
|
+
url?: string;
|
|
181
|
+
name: string;
|
|
182
|
+
};
|
|
183
|
+
interface ProductSearchResults {
|
|
184
|
+
total: number;
|
|
185
|
+
products: ProductSearchResult[];
|
|
186
|
+
}
|
|
187
|
+
interface ProductCategory {
|
|
188
|
+
id: string;
|
|
189
|
+
name: string;
|
|
190
|
+
children?: ProductCategory[];
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
declare const ProductPreviewList: ({ products, }: {
|
|
194
|
+
products: ProductSearchResults['products'] | undefined;
|
|
195
|
+
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
196
|
+
|
|
197
|
+
interface ProductDynamicSelectorValue {
|
|
198
|
+
count: number;
|
|
199
|
+
categories?: string[];
|
|
200
|
+
brand?: string;
|
|
201
|
+
keyword?: string;
|
|
202
|
+
sort?: string;
|
|
203
|
+
sortOrder?: string;
|
|
204
|
+
}
|
|
205
|
+
interface ProductQueryProps<TValue extends ProductDynamicSelectorValue = ProductDynamicSelectorValue> {
|
|
206
|
+
value: TValue;
|
|
207
|
+
setValue: (value: TValue) => Promise<void>;
|
|
208
|
+
brands: Brand[] | undefined;
|
|
209
|
+
categories: ProductQueryCategory[] | undefined;
|
|
210
|
+
loading?: boolean;
|
|
211
|
+
categoriesLoading?: boolean;
|
|
212
|
+
brandsLoading?: boolean;
|
|
213
|
+
logoIcon?: string | React__default.ComponentType<{
|
|
214
|
+
className?: string;
|
|
215
|
+
}>;
|
|
216
|
+
onGetProducts: (options?: GetProductsOptions) => Promise<ProductSearchResults>;
|
|
217
|
+
sortOptions?: Array<{
|
|
218
|
+
name: string;
|
|
219
|
+
sortKey: string;
|
|
220
|
+
}>;
|
|
221
|
+
sortOrderOptions?: Array<{
|
|
222
|
+
name: string;
|
|
223
|
+
sortOrderKey: string;
|
|
224
|
+
}>;
|
|
225
|
+
}
|
|
226
|
+
interface ProductQueryCategory {
|
|
227
|
+
id: string;
|
|
228
|
+
name: string;
|
|
229
|
+
children?: ProductQueryCategory[];
|
|
230
|
+
}
|
|
231
|
+
interface Brand {
|
|
232
|
+
id: string;
|
|
233
|
+
name: string;
|
|
234
|
+
}
|
|
235
|
+
declare const ProductQuery: ({ value, setValue, brands, categories, loading, categoriesLoading, brandsLoading, logoIcon, onGetProducts, sortOptions, sortOrderOptions, }: ProductQueryProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
236
|
+
interface ProductQueryContextValue {
|
|
237
|
+
categories: ProductQueryProps['categories'];
|
|
238
|
+
logoIcon: ProductQueryProps['logoIcon'];
|
|
239
|
+
}
|
|
240
|
+
declare const ProductQueryContext: React__default.Context<ProductQueryContextValue | undefined>;
|
|
241
|
+
declare const useProductQueryContext: () => ProductQueryContextValue;
|
|
242
|
+
|
|
243
|
+
declare type ProductSearchProps<TResult extends ProductSearchResult = ProductSearchResult> = Pick<EntrySearchProps<TResult>, 'multiSelect' | 'multiSelectId' | 'logoIcon' | 'rowComponent' | 'selectedItemComponent'> & {
|
|
244
|
+
value: string[] | undefined;
|
|
245
|
+
setValue: (ids: string[] | undefined) => Promise<void>;
|
|
246
|
+
onGetSelectedProducts: (args: {
|
|
247
|
+
ids: string[];
|
|
248
|
+
options?: GetProductOptions;
|
|
249
|
+
}) => Promise<TResult[]>;
|
|
250
|
+
onGetCategories: () => Promise<ProductCategory[]>;
|
|
251
|
+
onSearchProducts: (args: {
|
|
252
|
+
text: string;
|
|
253
|
+
options?: GetProductOptions;
|
|
254
|
+
}) => Promise<{
|
|
255
|
+
total: number;
|
|
256
|
+
products: TResult[];
|
|
257
|
+
}>;
|
|
258
|
+
};
|
|
259
|
+
interface GetProductOptions {
|
|
260
|
+
limit?: number;
|
|
261
|
+
offset?: number;
|
|
262
|
+
categoryId?: string;
|
|
263
|
+
}
|
|
264
|
+
declare function ProductSearch({ value, setValue, onGetSelectedProducts, onGetCategories, onSearchProducts, logoIcon, multiSelect, multiSelectId, selectedItemComponent, rowComponent, }: ProductSearchProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
265
|
+
interface ProductSearchContextValue {
|
|
266
|
+
logoIcon: ProductSearchProps['logoIcon'];
|
|
267
|
+
categories: ProductCategory[] | undefined;
|
|
268
|
+
}
|
|
269
|
+
declare const ProductSearchContext: React__default.Context<ProductSearchContextValue | undefined>;
|
|
270
|
+
declare const useProductSearchContext: () => ProductSearchContextValue;
|
|
271
|
+
|
|
272
|
+
declare const productSearchRowContainer: _emotion_react.SerializedStyles;
|
|
273
|
+
declare const productSearchRowContent: _emotion_react.SerializedStyles;
|
|
274
|
+
declare const productSearchRowContentActive: _emotion_react.SerializedStyles;
|
|
275
|
+
declare const productSearchRowTitle: _emotion_react.SerializedStyles;
|
|
276
|
+
declare const productSearchRowCategory: _emotion_react.SerializedStyles;
|
|
277
|
+
declare const productSearchRowDetails: _emotion_react.SerializedStyles;
|
|
278
|
+
declare const productSearchRowActiveIcon: _emotion_react.SerializedStyles;
|
|
279
|
+
|
|
280
|
+
declare function ProductSearchRow({ result, isSelected, triggerSelection, }: EntrySearchRowProps<ProductSearchResult>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
281
|
+
|
|
282
|
+
declare const productSelectedItemContainer: _emotion_react.SerializedStyles;
|
|
283
|
+
declare const productSelectedItemDetails: _emotion_react.SerializedStyles;
|
|
284
|
+
declare const productSelectedItemContent: _emotion_react.SerializedStyles;
|
|
285
|
+
declare const productSelectedItemImage: _emotion_react.SerializedStyles;
|
|
286
|
+
|
|
287
|
+
declare function ProductSelectedItem({ selectedItem, onDeselect, }: EntrySearchSelectedItemProps<ProductSearchResult>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
288
|
+
|
|
289
|
+
declare const ResolvableLoadingValue: ({ value, text, loading, }: {
|
|
290
|
+
value: string;
|
|
291
|
+
text: string | undefined;
|
|
292
|
+
loading: boolean;
|
|
293
|
+
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
294
|
+
|
|
295
|
+
declare type SelectionFieldValue = {
|
|
296
|
+
id: string;
|
|
297
|
+
name: string;
|
|
298
|
+
};
|
|
299
|
+
declare const SelectionField: ({ name, loading, selectedValues, values, onAdd, onRemove, }: {
|
|
300
|
+
name: string;
|
|
301
|
+
loading: boolean;
|
|
302
|
+
selectedValues: string[] | undefined;
|
|
303
|
+
values: SelectionFieldValue[];
|
|
304
|
+
onAdd: (id: string) => void;
|
|
305
|
+
onRemove: (id: string) => void;
|
|
306
|
+
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
307
|
+
|
|
308
|
+
declare const SvgCaution: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
309
|
+
|
|
310
|
+
declare const SvgCheckmark: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
311
|
+
|
|
312
|
+
declare const SvgChevronDown: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
313
|
+
|
|
314
|
+
declare const SvgClose: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
315
|
+
|
|
316
|
+
declare const SvgDanger: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
317
|
+
|
|
318
|
+
declare const SvgExclamationPoint: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
319
|
+
|
|
320
|
+
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
321
|
+
|
|
322
|
+
declare const SvgLightbulb: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
323
|
+
|
|
324
|
+
declare const SvgMagnifyingGlass: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
325
|
+
|
|
326
|
+
declare const SvgMaximizeAlt: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
327
|
+
|
|
328
|
+
declare const SvgMinus: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
329
|
+
|
|
330
|
+
declare const SvgMoreVerticalAlt: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
331
|
+
|
|
332
|
+
declare const SvgPlus: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
333
|
+
|
|
334
|
+
declare namespace index {
|
|
335
|
+
export {
|
|
336
|
+
SvgCaution as Caution,
|
|
337
|
+
SvgCheckmark as Checkmark,
|
|
338
|
+
SvgChevronDown as ChevronDown,
|
|
339
|
+
SvgClose as Close,
|
|
340
|
+
SvgDanger as Danger,
|
|
341
|
+
SvgExclamationPoint as ExclamationPoint,
|
|
342
|
+
SvgInfo as Info,
|
|
343
|
+
SvgLightbulb as Lightbulb,
|
|
344
|
+
SvgMagnifyingGlass as MagnifyingGlass,
|
|
345
|
+
SvgMaximizeAlt as MaximizeAlt,
|
|
346
|
+
SvgMinus as Minus,
|
|
347
|
+
SvgMoreVerticalAlt as MoreVerticalAlt,
|
|
348
|
+
SvgPlus as Plus,
|
|
349
|
+
};
|
|
47
350
|
}
|
|
48
|
-
declare const UniformMeshLocationContext: React.Context<UniformMeshLocationContextValue<unknown, unknown> | undefined>;
|
|
49
|
-
declare const UniformMeshLocationContextProvider: React.FC;
|
|
50
|
-
/**
|
|
51
|
-
* Provides access to the current UniformMeshLocationContext value.
|
|
52
|
-
*/
|
|
53
|
-
declare const useUniformMeshLocationContext: <TLocationValue, TLocationMetadata>() => UniformMeshLocationContextValue<TLocationValue, TLocationMetadata>;
|
|
54
351
|
|
|
55
|
-
export { UniformMeshLocationContext, UniformMeshLocationContextProvider, UniformMeshLocationContextValue, UniformMeshSdkContext, UniformMeshSdkContextProvider, UniformMeshSdkContextValue, UseUniformMeshSdkOptions, useInitializeUniformMeshSdk, useUniformMeshLocation, useUniformMeshLocationContext, useUniformMeshSdk, useUniformMeshSdkContext };
|
|
352
|
+
export { Brand, DefaultSearchRow, DefaultSelectedItem, EntrySearch, EntrySearchContentType, EntrySearchProps, EntrySearchQueryOptions, EntrySearchResult, EntrySearchRowProps, EntrySearchSelectedItemProps, GetProductOptions, GetProductsOptions, index as Icons, NoResultsProps, ProductCategory, ProductDynamicSelectorValue, ProductPreviewList, ProductQuery, ProductQueryCategory, ProductQueryContext, ProductQueryContextValue, ProductQueryProps, ProductSearch, ProductSearchContext, ProductSearchContextValue, ProductSearchProps, ProductSearchResult, ProductSearchResults, ProductSearchRow, ProductSelectedItem, ResolvableLoadingValue, SelectionField, SelectionFieldValue, UniformMeshLocationContext, UniformMeshLocationContextProvider, UniformMeshLocationContextValue, UniformMeshSdkContext, UniformMeshSdkContextProvider, UniformMeshSdkContextValue, UseUniformMeshSdkOptions, badgeIcon, draggableContainer, draggableIcon, draggableIconOffset, draggableIconWrapper, entrySearchBtn, entrySearchConfig, entrySearchConfigHidden, entrySearchLoadMoreBtn, entrySearchResultList, entrySearchSelectIcon, entrySearchSelectImg, entrySearchSelectInput, entrySearchSelectOption, entrySearchWrapper, productSearchRowActiveIcon, productSearchRowCategory, productSearchRowContainer, productSearchRowContent, productSearchRowContentActive, productSearchRowDetails, productSearchRowTitle, productSelectedItemContainer, productSelectedItemContent, productSelectedItemDetails, productSelectedItemImage, searchRowBtn, searchRowContainer, searchRowContainerActive, searchRowPopover, searchRowText, searchRowTextSmall, selectItemLinkBtn, selectItemLinkContainer, selectItemPopover, selectItemPopoverLabel, selectItemSmallText, selectedItemCloseIcon, selectedItemContainer, selectedItemCopy, selectedItemDetails, selectedItemIcon, selectedItemInner, selectedItemTitle, useInitializeUniformMeshSdk, useProductQueryContext, useProductSearchContext, useUniformMeshLocation, useUniformMeshLocationContext, useUniformMeshSdk, useUniformMeshSdkContext };
|