@uniformdev/mesh-sdk-react 12.2.1-alpha.183 → 13.0.1-alpha.132

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 CHANGED
@@ -1,10 +1,12 @@
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, { ReactNode, SVGProps } from 'react';
5
- import { ButtonProps as ButtonProps$1, MenuItemHTMLProps, InputProps as InputProps$1 } from 'reakit';
6
- import { MenuHTMLProps, MenuProps as MenuProps$1, MenuStateReturn } from 'reakit/Menu';
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
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';
8
10
 
9
11
  /**
10
12
  * Provides convenient access to the current Uniform Mesh location via React hook.
@@ -35,90 +37,53 @@ declare const useInitializeUniformMeshSdk: ({ autoResizingDisabled }?: UseUnifor
35
37
  */
36
38
  declare function useUniformMeshSdk(): _uniformdev_mesh_sdk.UniformMeshSDK;
37
39
 
38
- interface ButtonProps extends ButtonProps$1 {
39
- size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
40
- buttonType?: 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'unimportant';
41
- disablePadding?: boolean;
42
- rounded?: boolean;
43
- }
44
- declare const Button: React.FC<ButtonProps>;
45
-
46
- declare type CalloutType = 'caution' | 'danger' | 'info' | 'note' | 'success' | 'tip' | 'error';
47
- interface CalloutProps {
48
- type: CalloutType;
49
- title?: ReactNode;
50
- children: ReactNode;
51
- className?: string;
52
- }
53
- declare const Callout: React.FC<CalloutProps>;
54
-
55
- interface KeywordSearchInputProps {
56
- onSearchTextChanged: (searchText: string) => void;
57
- disabled?: boolean;
58
- placeholder?: string;
59
- inputFieldName?: string;
60
- disabledFieldSubmission?: boolean;
61
- }
62
- declare function KeywordSearchInput({ onSearchTextChanged, disabled, placeholder, inputFieldName, disabledFieldSubmission, }: KeywordSearchInputProps): React.ReactElement;
63
-
64
- declare const LoadingIndicator: () => JSX.Element;
65
-
66
- interface MenuProps extends MenuHTMLProps {
67
- menuTrigger: React.ReactElement & React.RefAttributes<any>;
68
- menuLabel: string;
69
- menuItemsContainerCssClasses?: string;
70
- placement?: MenuProps$1['placement'];
71
- }
72
- declare const MenuContext: React.Context<MenuStateReturn>;
73
- declare const useMenuContext: () => MenuStateReturn;
74
- declare const Menu: React.FC<MenuProps>;
75
-
76
- declare type MenuItemProps = MenuItemHTMLProps & {
77
- focusable?: boolean;
78
- children: ChildFunction | React.ReactNode;
79
- hideMenuOnClick?: boolean;
80
- icon?: React.ReactElement;
81
- };
82
- declare type ChildFunction = (menuItemProps: MenuItemHTMLProps) => React.ReactElement | null;
83
- declare const MenuItem: React.FC<MenuItemProps>;
84
-
85
- declare type InputProps = InputProps$1 & {
86
- label?: string;
87
- classNameContainer?: string;
88
- classNameControl?: string;
89
- classNameLabel?: string;
90
- icon?: React.ReactElement;
91
- capture?: boolean | 'user' | 'environment';
92
- };
93
- declare const Input: React.FC<InputProps>;
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
+
50
+ interface UniformMeshSdkContextValue {
51
+ sdk: UniformMeshSDK;
52
+ }
53
+ declare const UniformMeshSdkContext: React__default.Context<UniformMeshSdkContextValue | undefined>;
54
+ declare const UniformMeshSdkContextProvider: React__default.FC;
55
+ /**
56
+ * Provides access to the current (initialized) Uniform Mesh SDK context value.
57
+ */
58
+ declare const useUniformMeshSdkContext: () => UniformMeshSdkContextValue;
94
59
 
95
- interface CmsEntrySearchSelectedItemProps<TResult extends CmsEntrySearchResult = CmsEntrySearchResult> {
60
+ interface EntrySearchSelectedItemProps<TResult extends EntrySearchResult = EntrySearchResult> {
96
61
  selectedItem: TResult;
97
- logoIcon: string | React.ComponentType<{
62
+ logoIcon: string | React__default.ComponentType<{
98
63
  className?: string;
99
64
  }>;
100
65
  onDeselect: (item: TResult) => void;
101
66
  onEditClosed?: (item: TResult) => void;
102
67
  }
103
- declare const DefaultSelectedItem: React.FC<CmsEntrySearchSelectedItemProps>;
68
+ declare const DefaultSelectedItem: React__default.FC<EntrySearchSelectedItemProps>;
104
69
 
105
- interface CmsEntrySearchRowProps<TResult extends CmsEntrySearchResult = CmsEntrySearchResult> {
70
+ interface EntrySearchRowProps<TResult extends EntrySearchResult = EntrySearchResult> {
106
71
  result: TResult;
107
72
  isSelected: boolean;
108
73
  triggerSelection: () => void;
109
74
  }
110
- declare const DefaultSearchRow: React.FC<CmsEntrySearchRowProps>;
75
+ declare const DefaultSearchRow: React__default.FC<EntrySearchRowProps>;
111
76
 
112
- declare type CmsEntrySearchQueryOptions = {
77
+ declare type EntrySearchQueryOptions = {
113
78
  count: number;
114
79
  offset: number;
115
80
  contentType?: string;
116
81
  };
117
- declare type CmsEntrySearchProps<TResult extends CmsEntrySearchResult = CmsEntrySearchResult> = {
118
- search: (text: string, options: CmsEntrySearchQueryOptions) => void;
82
+ declare type EntrySearchProps<TResult extends EntrySearchResult = EntrySearchResult> = {
83
+ search: (text: string, options: EntrySearchQueryOptions) => void;
119
84
  results: TResult[] | undefined;
120
85
  totalResults?: number | undefined;
121
- contentTypes?: CmsEntrySearchContentType[];
86
+ contentTypes?: EntrySearchContentType[];
122
87
  selectedItems: TResult[] | undefined;
123
88
  logoIcon: string | React.ComponentType<{
124
89
  className?: string;
@@ -127,10 +92,10 @@ declare type CmsEntrySearchProps<TResult extends CmsEntrySearchResult = CmsEntry
127
92
  requireContentType?: boolean;
128
93
  multiSelectId?: string;
129
94
  multiSelect?: boolean;
130
- rowComponent?: React.FC<CmsEntrySearchRowProps<TResult>>;
131
- selectedItemComponent?: React.FC<CmsEntrySearchSelectedItemProps<TResult>>;
132
- onAddNew?: (type: CmsEntrySearchContentType) => void;
133
- onEditClosed?: (item: CmsEntrySearchResult) => void;
95
+ rowComponent?: React.FC<EntrySearchRowProps<TResult>>;
96
+ selectedItemComponent?: React.FC<EntrySearchSelectedItemProps<TResult>>;
97
+ onAddNew?: (type: EntrySearchContentType) => void;
98
+ onEditClosed?: (item: EntrySearchResult) => void;
134
99
  onCancel?: () => void;
135
100
  resultsLoading?: boolean;
136
101
  noResultsComponent?: React.FC<{
@@ -140,7 +105,7 @@ declare type CmsEntrySearchProps<TResult extends CmsEntrySearchResult = CmsEntry
140
105
  helpComponent?: JSX.Element;
141
106
  onSort?: (ids: string[]) => void;
142
107
  };
143
- interface CmsEntrySearchResult {
108
+ interface EntrySearchResult {
144
109
  id: string;
145
110
  title: string | JSX.Element;
146
111
  createdDate?: TDate;
@@ -148,7 +113,7 @@ interface CmsEntrySearchResult {
148
113
  metadata?: Record<string, string | JSX.Element>;
149
114
  popoverData?: Record<string, string | JSX.Element>;
150
115
  }
151
- interface CmsEntrySearchContentType {
116
+ interface EntrySearchContentType {
152
117
  id: string;
153
118
  name: string;
154
119
  }
@@ -156,60 +121,215 @@ interface NoResultsProps {
156
121
  searchText: string | undefined;
157
122
  selectedContentType: string | undefined;
158
123
  }
159
- declare const CmsEntrySearch: <TResult extends CmsEntrySearchResult>({ search, results, contentTypes, selectedItems, logoIcon, select, multiSelect, multiSelectId, rowComponent, selectedItemComponent, totalResults, resultsLoading, requireContentType, onAddNew, onEditClosed, onCancel, noResultsComponent, helpComponent, onSort, }: CmsEntrySearchProps<TResult>) => JSX.Element;
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;
160
125
 
161
- interface UniformMeshLocationContextValue<TLocationValue = unknown, TLocationMetadata = unknown, TLocationSetValue = TLocationValue> {
162
- location: MeshLocation<TLocationValue, TLocationMetadata, TLocationSetValue>;
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[];
163
191
  }
164
- declare const UniformMeshLocationContext: React.Context<UniformMeshLocationContextValue<unknown, unknown, unknown> | undefined>;
165
- declare const UniformMeshLocationContextProvider: React.FC;
166
- /**
167
- * Provides access to the current UniformMeshLocationContext value.
168
- */
169
- declare const useUniformMeshLocationContext: <TLocationValue, TLocationMetadata, TLocationSetValue = TLocationValue>() => UniformMeshLocationContextValue<TLocationValue, TLocationMetadata, TLocationSetValue>;
170
192
 
171
- interface UniformMeshSdkContextValue {
172
- sdk: UniformMeshSDK;
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;
173
204
  }
174
- declare const UniformMeshSdkContext: React.Context<UniformMeshSdkContextValue | undefined>;
175
- declare const UniformMeshSdkContextProvider: React.FC;
176
- /**
177
- * Provides access to the current (initialized) Uniform Mesh SDK context value.
178
- */
179
- declare const useUniformMeshSdkContext: () => UniformMeshSdkContextValue;
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;
180
242
 
181
- interface LoadingOverlayProps {
182
- isActive: boolean;
183
- statusMessage?: string | JSX.Element;
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;
184
263
  }
185
- declare const LoadingOverlay: React.FC<LoadingOverlayProps>;
186
- interface LoadingIconProps {
187
- width?: number;
188
- height?: number;
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;
189
268
  }
190
- declare const LoadingIcon: React.FC<LoadingIconProps>;
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;
191
311
 
192
- declare const SvgCaution: (props: SVGProps<SVGSVGElement>) => JSX.Element;
312
+ declare const SvgChevronDown: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
193
313
 
194
- declare const SvgCheckmark: (props: SVGProps<SVGSVGElement>) => JSX.Element;
314
+ declare const SvgClose: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
195
315
 
196
- declare const SvgChevronDown: (props: SVGProps<SVGSVGElement>) => JSX.Element;
316
+ declare const SvgDanger: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
197
317
 
198
- declare const SvgClose: (props: SVGProps<SVGSVGElement>) => JSX.Element;
318
+ declare const SvgExclamationPoint: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
199
319
 
200
- declare const SvgDanger: (props: SVGProps<SVGSVGElement>) => JSX.Element;
320
+ declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
201
321
 
202
- declare const SvgExclamationPoint: (props: SVGProps<SVGSVGElement>) => JSX.Element;
322
+ declare const SvgLightbulb: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
203
323
 
204
- declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => JSX.Element;
324
+ declare const SvgMagnifyingGlass: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
205
325
 
206
- declare const SvgLightbulb: (props: SVGProps<SVGSVGElement>) => JSX.Element;
326
+ declare const SvgMaximizeAlt: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
207
327
 
208
- declare const SvgMagnifyingGlass: (props: SVGProps<SVGSVGElement>) => JSX.Element;
328
+ declare const SvgMinus: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
209
329
 
210
- declare const SvgMaximizeAlt: (props: SVGProps<SVGSVGElement>) => JSX.Element;
330
+ declare const SvgMoreVerticalAlt: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
211
331
 
212
- declare const SvgMoreVerticalAlt: (props: SVGProps<SVGSVGElement>) => JSX.Element;
332
+ declare const SvgPlus: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
213
333
 
214
334
  declare namespace index {
215
335
  export {
@@ -223,8 +343,10 @@ declare namespace index {
223
343
  SvgLightbulb as Lightbulb,
224
344
  SvgMagnifyingGlass as MagnifyingGlass,
225
345
  SvgMaximizeAlt as MaximizeAlt,
346
+ SvgMinus as Minus,
226
347
  SvgMoreVerticalAlt as MoreVerticalAlt,
348
+ SvgPlus as Plus,
227
349
  };
228
350
  }
229
351
 
230
- export { Button, ButtonProps, Callout, CalloutProps, CalloutType, ChildFunction, CmsEntrySearch, CmsEntrySearchContentType, CmsEntrySearchProps, CmsEntrySearchQueryOptions, CmsEntrySearchResult, CmsEntrySearchRowProps, CmsEntrySearchSelectedItemProps, DefaultSearchRow, DefaultSelectedItem, index as Icons, Input, InputProps, KeywordSearchInput, KeywordSearchInputProps, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuItem, MenuItemProps, MenuProps, NoResultsProps, UniformMeshLocationContext, UniformMeshLocationContextProvider, UniformMeshLocationContextValue, UniformMeshSdkContext, UniformMeshSdkContextProvider, UniformMeshSdkContextValue, UseUniformMeshSdkOptions, useInitializeUniformMeshSdk, useMenuContext, 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 };