@uniformdev/mesh-sdk-react 18.30.1-alpha.17 → 18.31.0

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,13 +1,13 @@
1
1
  import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
2
- import * as React$1 from 'react';
3
- import React__default, { SVGProps, ComponentType, PropsWithChildren, HTMLAttributes, ReactNode, AnchorHTMLAttributes } from 'react';
2
+ import * as React from 'react';
3
+ import React__default, { SVGProps, ComponentType, PropsWithChildren } from 'react';
4
4
  import { TDate } from 'timeago.js';
5
5
  import * as _emotion_react from '@emotion/react';
6
6
  import { DataVariableDefinition, DataResourceVariables } from '@uniformdev/canvas';
7
7
  import * as _uniformdev_mesh_sdk from '@uniformdev/mesh-sdk';
8
8
  import { MeshLocation, SetValueOptions, DataSourceLocationValue, DataTypeLocationValue, UniformMeshSDK, MeshLocationCore } from '@uniformdev/mesh-sdk';
9
9
  export * from '@uniformdev/mesh-sdk';
10
- import { BadgeThemeProps, InputSelectProps } from '@uniformdev/design-system';
10
+ import { InputSelectProps } from '@uniformdev/design-system';
11
11
  export { AddListButton, AddListButtonProps, Button, ButtonProps, Callout, CalloutProps, Heading, HeadingProps, Input, InputComboBox, InputComboBoxProps, InputKeywordSearch, InputProps, InputSelect, InputToggle, InputToggleProps, InputKeywordSearch as KeywordSearchInput, Label, LabelProps, LoadingIndicator, LoadingOverlay, Menu, MenuItem, MenuItemProps, MenuProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, ScrollableList, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, Switch, SwitchProps, Textarea, TextareaProps, Theme, ThemeProps, useParameterShell } from '@uniformdev/design-system';
12
12
 
13
13
  declare const SvgCaution: (props: SVGProps<SVGSVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
@@ -77,20 +77,20 @@ type EntrySearchProps<TResult extends EntrySearchResult = EntrySearchResult> = {
77
77
  cursor?: string;
78
78
  contentTypes?: EntrySearchContentType[];
79
79
  selectedItems: TResult[] | undefined;
80
- logoIcon: string | React$1.ComponentType<{
80
+ logoIcon: string | React.ComponentType<{
81
81
  className?: string;
82
82
  }>;
83
83
  select: (items: TResult[], selectedContentType?: string) => void;
84
84
  requireContentType?: boolean;
85
85
  multiSelectId?: string;
86
86
  multiSelect?: boolean;
87
- rowComponent?: React$1.FC<EntrySearchRowProps<TResult>>;
88
- selectedItemComponent?: React$1.FC<EntrySearchSelectedItemProps<TResult>>;
87
+ rowComponent?: React.FC<EntrySearchRowProps<TResult>>;
88
+ selectedItemComponent?: React.FC<EntrySearchSelectedItemProps<TResult>>;
89
89
  onAddNew?: (type: EntrySearchContentType) => void;
90
90
  onEditClosed?: (item: EntrySearchResult) => void;
91
91
  onCancel?: () => void;
92
92
  resultsLoading?: boolean;
93
- noResultsComponent?: React$1.FC<{
93
+ noResultsComponent?: React.FC<{
94
94
  searchText?: string;
95
95
  selectedContentType?: string;
96
96
  }>;
@@ -470,10 +470,10 @@ declare function VariableEditor({ variable, onSubmit, onCancel }: VariableEditor
470
470
 
471
471
  declare function VariablesList(): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
472
472
 
473
- type VariablesProviderProps = React$1.PropsWithChildren<{
473
+ type VariablesProviderProps = React.PropsWithChildren<{
474
474
  value: Record<string, DataVariableDefinition>;
475
475
  onChange: (newValue: Record<string, DataVariableDefinition>) => void;
476
- editVariableComponent?: React$1.ComponentType<VariableEditorProps>;
476
+ editVariableComponent?: React.ComponentType<VariableEditorProps>;
477
477
  }>;
478
478
  type VariablesAction = {
479
479
  type: 'edit';
@@ -554,344 +554,6 @@ type DataTypeEditorProps = PropsWithChildren<{
554
554
  */
555
555
  declare function DataTypeEditor({ onChange, children, editVariableComponent }: DataTypeEditorProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
556
556
 
557
- type DataRefreshButtonProps = HTMLAttributes<HTMLButtonElement> & {
558
- /** sets the button text */
559
- buttonText: string;
560
- /** shows or hides the loading indicator when retrieving data */
561
- isLoading: boolean;
562
- /** sets the onClick function */
563
- onRefreshData: () => void;
564
- };
565
- /**
566
- * @description The data refresh button is a UI component to indicate to users a request for data is taking place
567
- * @example <DataRefreshButton buttonText="my button" isLoading /> */
568
- declare const DataRefreshButton: ({ buttonText, isLoading, onRefreshData, ...props }: DataRefreshButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
569
-
570
- type EntrySearchContainerProps = {
571
- /** a child node that places components within the search location */
572
- searchFilters: ReactNode;
573
- /** a child node that places components within a scrollable list location */
574
- resultList?: ReactNode;
575
- /** allows any child element */
576
- children?: ReactNode;
577
- /** function for the save action */
578
- onSave?: () => void;
579
- /** function fort he cancel action */
580
- onCancel?: () => void;
581
- };
582
- /**
583
- * @description Entry search container is an opinionated layout for search parameters and retrieved results
584
- * @example <EntrySearchContainer searchFilters={<>your component</>} resultList={<>your result list component<>} onSave={yourSaveAction} onCancel={yourCancelAction} /> */
585
- declare const EntrySearchContainer: ({ searchFilters, resultList, onSave, onCancel, children, }: EntrySearchContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
586
-
587
- type EntrySearchFilterProps = {
588
- /** shows or hides the required content type select option */
589
- requireContentType?: boolean;
590
- /** sets the text for the required content type select option
591
- * @default 'All content types'
592
- */
593
- typeSelectorAllTypesOptionText?: string;
594
- /** sets the select input value label text
595
- * @default 'Content Type Select'
596
- */
597
- selectLabel?: string;
598
- /** sets the select input options */
599
- selectOptions: Array<{
600
- id: string;
601
- name?: string;
602
- label: string;
603
- }>;
604
- /** sets the search input name value
605
- * @default 'searchText'
606
- */
607
- searchInputName?: string;
608
- /** sets the search input placeholder text
609
- * @default 'Enter keyword to narrow your results'
610
- */
611
- searchInputPlaceholderText?: string;
612
- };
613
- /**
614
- * @description Entry search filter is an opinionated filter that has pre-defined query and setQuery functions
615
- * that can be extended with custom fuctions
616
- * @example <EntrySearchFilter selectOptions={[{ id: 'id value', name: 'name value'}]} /> */
617
- declare const EntrySearchFilter: ({ requireContentType, typeSelectorAllTypesOptionText, searchInputName, searchInputPlaceholderText, selectLabel, selectOptions, }: EntrySearchFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
618
-
619
- type EntrySearchFilterContainerProps = {
620
- /** sets the title for the container */
621
- label: string;
622
- /** sets child components in an opinionated layout */
623
- children?: React.ReactNode;
624
- };
625
- /**
626
- * @description an opinionated layout for search filters
627
- * @example <EntrySearchFilterContainer label="my label"><input type="text" aria-label="my input" /></EntrySearchFilterContainer>
628
- */
629
- declare const EntrySearchFilterContainer: ({ label, children }: EntrySearchFilterContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
630
-
631
- type SearchQueryProps = {
632
- /** sets the content type in the search context */
633
- contentType: string | undefined;
634
- /** sets the keyword search in the search context */
635
- keyword?: string;
636
- };
637
- type SelectedItemExtendedProps = {
638
- [key: string]: unknown;
639
- };
640
- type SelectedItemProps<TProps extends SelectedItemExtendedProps = SelectedItemExtendedProps> = {
641
- /** sets the id value */
642
- id: string;
643
- /** sets the title value */
644
- title: string;
645
- /** sets the name valu, sometimes used for products */
646
- name?: string;
647
- /** sets the subtitle value */
648
- subtitle?: string;
649
- /** sets the content type value */
650
- contentType?: string;
651
- /** sets the created date value using TimeAgo to transform the date */
652
- createdAt?: TDate;
653
- /** sets the image src */
654
- imageUrl?: string;
655
- /** sets the link icon */
656
- editLinkIcon?: string | React.ComponentType<{
657
- className?: string;
658
- }>;
659
- /** sets the link href value to an external source */
660
- editLink?: string;
661
- /** sets the published date value using TimeAgo to transform the date */
662
- publishedAt?: TDate;
663
- /** sets the publish status */
664
- publishStatus?: {
665
- /** sets the text value of the publish badge */
666
- text: string;
667
- /** sets the theme value of the publish badge
668
- * @default 'unimportant'
669
- */
670
- theme?: BadgeThemeProps;
671
- };
672
- /** sets any additional meta data */
673
- metadata?: Record<string, string>;
674
- /** allows for child react elements to be nested in the popover */
675
- popoverData?: ReactNode;
676
- } & TProps;
677
- type ItemsProp = Array<SelectedItemProps & Record<string, unknown>>;
678
- type ItemListProps<TList extends ItemsProp = ItemsProp> = {
679
- items?: TList;
680
- [key: string]: unknown;
681
- };
682
- type EntrySearchContextProps = {
683
- /** function that updates / sets the search query state */
684
- onSetQuery: (value: SearchQueryProps) => void;
685
- /** current search query state */
686
- query: SearchQueryProps;
687
- /** function that sets the selected items to state */
688
- onSelectItem: (selectedResult: any) => void;
689
- /** function that clears all selected items from state */
690
- onRemoveAllSelectedItems: () => void;
691
- /** current selected items in state */
692
- selectedListItems: Array<SelectedItemProps>;
693
- /** current list of results in state */
694
- list: ItemListProps;
695
- /** function that sets the list of items to state */
696
- onSetList: (value: ItemListProps) => void;
697
- };
698
- declare const EntrySearchContext: React$1.Context<EntrySearchContextProps>;
699
- type EntrySearchProviderProps = {
700
- children: ReactNode;
701
- currentlySelectedItems?: Array<SelectedItemProps>;
702
- };
703
- declare const EntrySearchProvider: ({ currentlySelectedItems, children }: EntrySearchProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
704
- declare const useEntrySearchContext: () => {
705
- /** function that updates / sets the search query state */
706
- onSetQuery: (value: SearchQueryProps) => void;
707
- /** current search query state */
708
- query: SearchQueryProps;
709
- /** function that sets the selected items to state */
710
- onSelectItem: (selectedResult: any) => void;
711
- /** function that clears all selected items from state */
712
- onRemoveAllSelectedItems: () => void;
713
- /** current selected items in state */
714
- selectedListItems: Array<SelectedItemProps>;
715
- /** current list of results in state */
716
- list: ItemListProps;
717
- /** function that sets the list of items to state */
718
- onSetList: (value: ItemListProps) => void;
719
- };
720
-
721
- type EntrySearchListItemProps = SelectedItemProps & {
722
- /** sets the content type value, this is normally used for subtitles e.g. Kitchens */
723
- contentType?: string | string[];
724
- /** sets image parameters */
725
- image?: {
726
- /** sets the src valuue */
727
- src: string;
728
- /** sets the alt text value */
729
- alt: string;
730
- /** set the width attribute of the image
731
- * if both width and height are set the image loading attribute is set to `lazy`
732
- */
733
- width?: number;
734
- /** set the height attribute of the image
735
- * if both width and height are set the image loading attribute is set to `lazy`
736
- */
737
- height?: number;
738
- };
739
- /** sets the function call on the role="button" wrapping element */
740
- onSelect?: (data?: Record<string, unknown>) => void;
741
- /** allows child components within the popover data */
742
- popoverData?: React$1.ReactNode;
743
- /** allows authors to add any child component that is not controlled by Uniform */
744
- children?: React$1.ReactNode;
745
- /** sets whether multiple entries can be added to the results list context
746
- * @default false
747
- */
748
- isMulti?: boolean;
749
- };
750
- /**
751
- * @description entry search list item is an opinionated UI component best used for initial retrieved results
752
- * @example <EntrySearchListItem id="my-result-item" title="title" popoverData={<p>some data info</p>}><div>example of uncontrolled content</div></EntrySearchListItem> */
753
- declare const EntrySearchListItem: ({ id, title, contentType, image, popoverData, onSelect, isMulti, children, ...props }: EntrySearchListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
754
- /**
755
- * An opinionated loading skeleton component best used with EntrySearchListItem
756
- * @example <EntrySearchListItemLoadingSkeleton />
757
- */
758
- declare const EntrySearchListItemLoadingSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
759
-
760
- type EntrySearchResultItemProps = SelectedItemProps & {
761
- /** sets additional remove functionality onto of default removal */
762
- onRemove?: () => void;
763
- /** sets whether to show or hide the remove button
764
- * @default false
765
- */
766
- hideRemoveButton?: boolean;
767
- /** sets user defined child nodes that are uncontrolled by Uniform */
768
- children?: ReactNode;
769
- };
770
- /**
771
- * @description An opinionated result item, best used for selected results
772
- * @example <EntrySearchResultItem id="my-result" title="title" />
773
- */
774
- declare const EntrySearchResultItem: ({ id, title, name, contentType, popoverData, publishStatus, editLinkIcon, editLink, imageUrl, onRemove, createdAt, publishedAt, hideRemoveButton, children, }: EntrySearchResultItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
775
-
776
- type EntrySearchResultItemButtonProps<THtml extends HTMLAttributes<HTMLElement> = HTMLAttributes<HTMLButtonElement>> = {
777
- /** sets the button or link text value */
778
- text: string;
779
- /** sets the button or link icon */
780
- icon?: string | React.ComponentType<{
781
- className?: string;
782
- }>;
783
- } & THtml;
784
- /**
785
- * @description An opinionated button component best used within the EntrySearchResultItem component
786
- * @example <EntrySearchResultItemButton text="button text" icon="/my-image.png" onClick={() => myFunction()} />
787
- */
788
- declare const EntrySearchResultItemButton: ({ text, icon, ...props }: EntrySearchResultItemButtonProps<HTMLAttributes<HTMLButtonElement>>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
789
- /**
790
- * @description An opinionated link component styled the same of the EntrySearchResultItemButton component,
791
- * that automatically sets the target and rel attributes. Best used within the EntrySearchResultItem component
792
- * @example <LinkButton text="link text" icon="/my-image.png" />
793
- */
794
- declare const LinkButton: ({ text, icon, ...props }: EntrySearchResultItemButtonProps<Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'target' | 'rel'>>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
795
-
796
- type EntrySearchResultListProps<TRenderComponent extends SelectedItemProps = SelectedItemProps> = {
797
- /** sets the result label value
798
- * @default 'Selected'
799
- */
800
- resultLabelText?: string;
801
- /** sets the on remove button click action */
802
- onRemoveAllSelected?: () => void;
803
- /** sets the remove button text
804
- * @default 'Remove all'
805
- */
806
- removeButtonText?: string;
807
- /** sets whether to show or hide the remove button
808
- * @default false
809
- */
810
- hideRemoveButton?: boolean;
811
- /** allows additional buttons to be added to the result title group */
812
- additionalButtons?: React.ReactNode;
813
- /** allows placing child components within the result list area */
814
- renderResultComponent?: (value: TRenderComponent) => React.ReactNode;
815
- /** disable or enable drag and drop functionality
816
- * @default false
817
- */
818
- disableDnD?: boolean;
819
- };
820
- /**
821
- * @description An opinionated result list UI component that has built in drag and drop functionality and removal of all selected items from context.
822
- * The result item component defaults to <EntrySearchResultItem {...props} />, however this can be overridden with any other UI component and still
823
- * maintain drag and drop functionality
824
- * @example <EntrySearchResultList id="my-id" title="title" renderResultComponent={(values) => <CustomComponent {...values} />} />
825
- */
826
- declare const EntrySearchResultList: ({ resultLabelText, removeButtonText, onRemoveAllSelected, hideRemoveButton, additionalButtons, renderResultComponent, disableDnD, }: EntrySearchResultListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
827
-
828
- type QueryFilterSearchProps = {
829
- /** sets the count value */
830
- count: number;
831
- /** sets the sortBy filter value */
832
- sortBy: string;
833
- /** sets the sortOrder filter value */
834
- sortOrder: string;
835
- };
836
- type QuertFilterSelectionOptionProps = Array<{
837
- id: string;
838
- name: string;
839
- label: string;
840
- }>;
841
- type QueryFilterProps<TSelectOptions extends QuertFilterSelectionOptionProps = QuertFilterSelectionOptionProps> = {
842
- /** sets the query filter title
843
- * @default 'Configure Query'
844
- */
845
- queryFilterTitle?: string;
846
- /** sets the content type all selected options label
847
- * @default 'All content types'
848
- */
849
- typeSelectorAllTypesOptionText?: string;
850
- /** sets the content type label value
851
- * @default 'Filter by content type'
852
- */
853
- contentTypeLabel?: string;
854
- /** sets the content type select options */
855
- contentTypeOptions: TSelectOptions;
856
- /** sets whether the content type filter is required */
857
- requireContentType?: boolean;
858
- /** sets the count label value
859
- * @default 'Count'
860
- */
861
- countLabel?: string;
862
- /** sets the count value or items to show
863
- * @default 5
864
- */
865
- countValue?: number;
866
- /** sets the sort label text
867
- * @default 'Sort'
868
- */
869
- sortLabel?: string;
870
- /** sets the sort select options value */
871
- sortOptions: TSelectOptions;
872
- /** sets the sort order lable value
873
- * @default 'Sort Order'
874
- */
875
- sortOrderLabel?: string;
876
- /** sets the sort order select options value */
877
- sortOrderOptions: TSelectOptions;
878
- /** sets the search input name value
879
- * @default 'searchText'
880
- */
881
- searchInputName?: string;
882
- /** sets the search input placeholder text
883
- * @default 'Enter keyword to narrow your results'
884
- */
885
- searchInputPlaceholderText?: string;
886
- /** allows for additional child components, for example more input components */
887
- children?: ReactNode;
888
- };
889
- /**
890
- * @description An opinionated multi query filter UI component, best used for querying product data or more complex scenarios
891
- * @example <QueryFilter contentTypeOptions={[{ id: 'id', name: 'name' }]} sortOptions={[{ id: 'id', name: 'name' }]} sortOrderOptions={[{ id: 'id', name: 'name' }]} />
892
- */
893
- declare const QueryFilter: ({ requireContentType, queryFilterTitle, contentTypeLabel, typeSelectorAllTypesOptionText, contentTypeOptions, searchInputName, searchInputPlaceholderText, countLabel, countValue, sortLabel, sortOptions, sortOrderLabel, sortOrderOptions, children, }: QueryFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
894
-
895
557
  type MeshAppProps = {
896
558
  loadingComponent?: React__default.ComponentType;
897
559
  errorComponent?: React__default.ComponentType<{
@@ -930,7 +592,7 @@ type RequestData = {
930
592
  method?: string;
931
593
  body?: string;
932
594
  };
933
- type RequestProviderProps = React$1.PropsWithChildren<{
595
+ type RequestProviderProps = React.PropsWithChildren<{
934
596
  value: RequestData;
935
597
  onChange: (delegate: (oldValue: RequestData) => RequestData) => void;
936
598
  }>;
@@ -967,12 +629,12 @@ type RequestContext = {
967
629
  declare function RequestProvider({ value, onChange, children }: RequestProviderProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
968
630
  declare function useRequest(): RequestContext;
969
631
 
970
- type RequestTypeContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
632
+ type RequestTypeContainerProps = React.HTMLAttributes<HTMLDivElement> & {
971
633
  /**sets the background color of the container
972
634
  * @default 'transparent'
973
635
  */
974
636
  bgColor?: 'transparent' | 'var(--gray-100)';
975
- children: React$1.ReactNode;
637
+ children: React.ReactNode;
976
638
  };
977
639
  /**
978
640
  * @description a container to layout content in a 2 column grid format = 12ch 1fr
@@ -1085,4 +747,4 @@ declare function useUniformMeshSdk(): _uniformdev_mesh_sdk.UniformMeshSDK;
1085
747
  */
1086
748
  declare function createLocationValidator<TSetValue>(setValue: SetLocationValueDispatch<TSetValue>, validate: (newValue: TSetValue, currentResult: SetValueOptions | undefined) => SetValueOptions): SetLocationValueDispatch<TSetValue>;
1087
749
 
1088
- export { BaseRequestData, Brand, DamItem, DamSelectedItem, DamSelectedItemProps, DataRefreshButton, DataRefreshButtonProps, DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListProps, DataSourceEditor, DataSourceEditorProps, DataTypeEditor, DataTypeEditorProps, DataVariableDefinitionWithName, DefaultSearchRow, DefaultSelectedItem, DispatchResult, EntrySearch, EntrySearchContainer, EntrySearchContainerProps, EntrySearchContentType, EntrySearchContext, EntrySearchContextProps, EntrySearchFilter, EntrySearchFilterContainer, EntrySearchFilterContainerProps, EntrySearchFilterProps, EntrySearchListItem, EntrySearchListItemLoadingSkeleton, EntrySearchListItemProps, EntrySearchProps, EntrySearchProvider, EntrySearchProviderProps, EntrySearchQueryOptions, EntrySearchResult, EntrySearchResultItem, EntrySearchResultItemButton, EntrySearchResultItemButtonProps, EntrySearchResultItemProps, EntrySearchResultList, EntrySearchResultListProps, EntrySearchRowProps, EntrySearchSelectedItemProps, GetProductOptions, GetProductsOptions, index as Icons, InputToken, InputVariables, InputVariablesProps, ItemListProps, LinkButton, MeshApp, MeshAppProps, NoResultsProps, ProductCategory, ProductDynamicSelectorValue, ProductPreviewList, ProductQuery, ProductQueryCategory, ProductQueryContext, ProductQueryContextValue, ProductQueryProps, ProductSearch, ProductSearchContext, ProductSearchContextValue, ProductSearchProps, ProductSearchResult, ProductSearchResults, ProductSearchRow, ProductSelectedItem, QueryFilter, QueryFilterProps, QueryFilterSearchProps, RequestAction, RequestBody, RequestContext, RequestData, RequestHeaders, RequestMethodSelect, RequestParameter, RequestParameters, RequestParametersProps, RequestProvider, RequestProviderProps, RequestTypeContainer, RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, SearchQueryProps, SelectedItemProps, SelectionField, SelectionFieldValue, SetLocationValueDispatch, SetLocationValueFunction, TextVariableRenderer, UniformMeshLocationContext, UniformMeshLocationContextProvider, UniformMeshLocationContextValue, UniformMeshSdkContext, UniformMeshSdkContextProvider, UniformMeshSdkContextValue, UseUniformMeshSdkOptions, VariableEditor, VariableEditorProps, VariablesAction, VariablesContext, VariablesList, VariablesProvider, VariablesProviderProps, badgeIcon, createLocationValidator, damSelectItemImage, damSelectedItemContainer, damSelectedItemCopy, damSelectedItemDetails, damSelectedItemIcon, damSelectedItemInfoBtn, damSelectedItemInner, damSelectedItemLinkBtn, damSelectedItemLinkContainer, damSelectedItemMediaContainer, damSelectedItemPopover, damSelectedItemPopoverLabel, damSelectedItemSmallText, damSelectedItemTitle, draggableContainer, draggableIcon, draggableIconOffset, draggableIconWrapper, entrySearchBtn, entrySearchConfig, entrySearchConfigHidden, entrySearchLoadMoreBtn, entrySearchResultList, entrySearchSelectIcon, entrySearchSelectImg, entrySearchSelectInput, entrySearchSelectOption, entrySearchWrapper, productSearchRowActiveIcon, productSearchRowCategory, productSearchRowContainer, productSearchRowContent, productSearchRowContentActive, productSearchRowDetails, productSearchRowTitle, productSelectedItemContainer, productSelectedItemContent, productSelectedItemDetails, productSelectedItemIcon, productSelectedItemImage, productSelectedItemLinkContainer, productedSelectedItemLinkBtn, productedSelectedItemSmallText, searchRowBtn, searchRowContainer, searchRowContainerActive, searchRowContainerWithPopover, searchRowPopover, searchRowText, searchRowTextSmall, selectItemLinkBtn, selectItemLinkContainer, selectItemPopover, selectItemPopoverLabel, selectItemSmallText, selectedItemContainer, selectedItemCopy, selectedItemDetails, selectedItemIcon, selectedItemInner, selectedItemTitle, urlEncodeRequestParameter, urlEncodeRequestUrl, useEntrySearchContext, useInitializeUniformMeshSdk, useMeshLocation, useProductQueryContext, useProductSearchContext, useRequest, useRequestHeader, useRequestParameter, useUniformMeshLocation, useUniformMeshLocationContext, useUniformMeshSdk, useUniformMeshSdkContext, useVariables, variablesToList };
750
+ export { BaseRequestData, Brand, DamItem, DamSelectedItem, DamSelectedItemProps, DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListProps, DataSourceEditor, DataSourceEditorProps, DataTypeEditor, DataTypeEditorProps, DataVariableDefinitionWithName, DefaultSearchRow, DefaultSelectedItem, DispatchResult, EntrySearch, EntrySearchContentType, EntrySearchProps, EntrySearchQueryOptions, EntrySearchResult, EntrySearchRowProps, EntrySearchSelectedItemProps, GetProductOptions, GetProductsOptions, index as Icons, InputToken, InputVariables, InputVariablesProps, MeshApp, MeshAppProps, NoResultsProps, ProductCategory, ProductDynamicSelectorValue, ProductPreviewList, ProductQuery, ProductQueryCategory, ProductQueryContext, ProductQueryContextValue, ProductQueryProps, ProductSearch, ProductSearchContext, ProductSearchContextValue, ProductSearchProps, ProductSearchResult, ProductSearchResults, ProductSearchRow, ProductSelectedItem, RequestAction, RequestBody, RequestContext, RequestData, RequestHeaders, RequestMethodSelect, RequestParameter, RequestParameters, RequestParametersProps, RequestProvider, RequestProviderProps, RequestTypeContainer, RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, SelectionField, SelectionFieldValue, SetLocationValueDispatch, SetLocationValueFunction, TextVariableRenderer, UniformMeshLocationContext, UniformMeshLocationContextProvider, UniformMeshLocationContextValue, UniformMeshSdkContext, UniformMeshSdkContextProvider, UniformMeshSdkContextValue, UseUniformMeshSdkOptions, VariableEditor, VariableEditorProps, VariablesAction, VariablesContext, VariablesList, VariablesProvider, VariablesProviderProps, badgeIcon, createLocationValidator, damSelectItemImage, damSelectedItemContainer, damSelectedItemCopy, damSelectedItemDetails, damSelectedItemIcon, damSelectedItemInfoBtn, damSelectedItemInner, damSelectedItemLinkBtn, damSelectedItemLinkContainer, damSelectedItemMediaContainer, damSelectedItemPopover, damSelectedItemPopoverLabel, damSelectedItemSmallText, damSelectedItemTitle, draggableContainer, draggableIcon, draggableIconOffset, draggableIconWrapper, entrySearchBtn, entrySearchConfig, entrySearchConfigHidden, entrySearchLoadMoreBtn, entrySearchResultList, entrySearchSelectIcon, entrySearchSelectImg, entrySearchSelectInput, entrySearchSelectOption, entrySearchWrapper, productSearchRowActiveIcon, productSearchRowCategory, productSearchRowContainer, productSearchRowContent, productSearchRowContentActive, productSearchRowDetails, productSearchRowTitle, productSelectedItemContainer, productSelectedItemContent, productSelectedItemDetails, productSelectedItemIcon, productSelectedItemImage, productSelectedItemLinkContainer, productedSelectedItemLinkBtn, productedSelectedItemSmallText, searchRowBtn, searchRowContainer, searchRowContainerActive, searchRowContainerWithPopover, searchRowPopover, searchRowText, searchRowTextSmall, selectItemLinkBtn, selectItemLinkContainer, selectItemPopover, selectItemPopoverLabel, selectItemSmallText, selectedItemContainer, selectedItemCopy, selectedItemDetails, selectedItemIcon, selectedItemInner, selectedItemTitle, urlEncodeRequestParameter, urlEncodeRequestUrl, useInitializeUniformMeshSdk, useMeshLocation, useProductQueryContext, useProductSearchContext, useRequest, useRequestHeader, useRequestParameter, useUniformMeshLocation, useUniformMeshLocationContext, useUniformMeshSdk, useUniformMeshSdkContext, useVariables, variablesToList };