@uniformdev/mesh-sdk-react 18.28.0 → 18.30.1-alpha.15

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 from 'react';
3
- import React__default, { SVGProps, ComponentType, PropsWithChildren } from 'react';
2
+ import * as React$1 from 'react';
3
+ import React__default, { SVGProps, ComponentType, PropsWithChildren, HTMLAttributes, ReactNode, AnchorHTMLAttributes } 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 { InputSelectProps } from '@uniformdev/design-system';
10
+ import { BadgeThemeProps, 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.ComponentType<{
80
+ logoIcon: string | React$1.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.FC<EntrySearchRowProps<TResult>>;
88
- selectedItemComponent?: React.FC<EntrySearchSelectedItemProps<TResult>>;
87
+ rowComponent?: React$1.FC<EntrySearchRowProps<TResult>>;
88
+ selectedItemComponent?: React$1.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.FC<{
93
+ noResultsComponent?: React$1.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.PropsWithChildren<{
473
+ type VariablesProviderProps = React$1.PropsWithChildren<{
474
474
  value: Record<string, DataVariableDefinition>;
475
475
  onChange: (newValue: Record<string, DataVariableDefinition>) => void;
476
- editVariableComponent?: React.ComponentType<VariableEditorProps>;
476
+ editVariableComponent?: React$1.ComponentType<VariableEditorProps>;
477
477
  }>;
478
478
  type VariablesAction = {
479
479
  type: 'edit';
@@ -554,6 +554,331 @@ 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
+ }>;
603
+ /** sets the search input name value
604
+ * @default 'searchText'
605
+ */
606
+ searchInputName?: string;
607
+ /** sets the search input placeholder text
608
+ * @default 'Enter keyword to narrow your results'
609
+ */
610
+ searchInputPlaceholderText?: string;
611
+ };
612
+ /**
613
+ * @description Entry search filter is an opinionated filter that has pre-defined query and setQuery functions
614
+ * that can be extended with custom fuctions
615
+ * @example <EntrySearchFilter selectOptions={[{ id: 'id value', name: 'name value'}]} /> */
616
+ declare const EntrySearchFilter: ({ requireContentType, typeSelectorAllTypesOptionText, searchInputName, searchInputPlaceholderText, selectLabel, selectOptions, }: EntrySearchFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
617
+
618
+ type EntrySearchFilterContainerProps = {
619
+ /** sets the title for the container */
620
+ label: string;
621
+ /** sets child components in an opinionated layout */
622
+ children?: React.ReactNode;
623
+ };
624
+ /**
625
+ * @description an opinionated layout for search filters
626
+ * @example <EntrySearchFilterContainer label="my label"><input type="text" aria-label="my input" /></EntrySearchFilterContainer>
627
+ */
628
+ declare const EntrySearchFilterContainer: ({ label, children }: EntrySearchFilterContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
629
+
630
+ type SearchQueryProps = {
631
+ /** sets the content type in the search context */
632
+ contentType: string | undefined;
633
+ /** sets the keyword search in the search context */
634
+ keywordSearch?: string;
635
+ };
636
+ type SelectedItemProps = {
637
+ /** sets the id value */
638
+ id: string;
639
+ /** sets the title value */
640
+ title: string;
641
+ /** sets the name valu, sometimes used for products */
642
+ name?: string;
643
+ /** sets the subtitle value */
644
+ subtitle?: string;
645
+ /** sets the content type value */
646
+ contentType?: string;
647
+ /** sets the created date value using TimeAgo to transform the date */
648
+ createdAt?: TDate;
649
+ /** sets the image src */
650
+ imageUrl?: string;
651
+ /** sets the link icon */
652
+ editLinkIcon?: string | React.ComponentType<{
653
+ className?: string;
654
+ }>;
655
+ /** sets the link href value to an external source */
656
+ editLink?: string;
657
+ /** sets the published date value using TimeAgo to transform the date */
658
+ publishedAt?: TDate;
659
+ /** sets the publish status */
660
+ publishStatus?: {
661
+ /** sets the text value of the publish badge */
662
+ text: string;
663
+ /** sets the theme value of the publish badge
664
+ * @default 'unimportant'
665
+ */
666
+ theme?: BadgeThemeProps;
667
+ };
668
+ /** sets any additional meta data */
669
+ metadata?: Record<string, string>;
670
+ /** allows for child react elements to be nested in the popover */
671
+ popoverData?: ReactNode;
672
+ };
673
+ type ItemsProp = Array<SelectedItemProps & Record<string, unknown>>;
674
+ type ItemListProps<TList extends ItemsProp = ItemsProp> = {
675
+ items?: TList;
676
+ [key: string]: unknown;
677
+ };
678
+ type EntrySearchContextProps = {
679
+ /** function that updates / sets the search query state */
680
+ onSetQuery: (value: SearchQueryProps) => void;
681
+ /** current search query state */
682
+ query: SearchQueryProps;
683
+ /** function that sets the selected items to state */
684
+ onSelectItem: (selectedResult: any) => void;
685
+ /** function that clears all selected items from state */
686
+ onRemoveAllSelectedItems: () => void;
687
+ /** current selected items in state */
688
+ selectedListItems: Array<SelectedItemProps>;
689
+ /** current list of results in state */
690
+ list: ItemListProps;
691
+ /** function that sets the list of items to state */
692
+ onSetList: (value: ItemListProps) => void;
693
+ };
694
+ declare const EntrySearchContext: React$1.Context<EntrySearchContextProps>;
695
+ type EntrySearchProviderProps = {
696
+ children: ReactNode;
697
+ currentlySelectedItems?: Array<SelectedItemProps>;
698
+ };
699
+ declare const EntrySearchProvider: ({ currentlySelectedItems, children }: EntrySearchProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
700
+ declare const useEntrySearchContext: () => {
701
+ /** function that updates / sets the search query state */
702
+ onSetQuery: (value: SearchQueryProps) => void;
703
+ /** current search query state */
704
+ query: SearchQueryProps;
705
+ /** function that sets the selected items to state */
706
+ onSelectItem: (selectedResult: any) => void;
707
+ /** function that clears all selected items from state */
708
+ onRemoveAllSelectedItems: () => void;
709
+ /** current selected items in state */
710
+ selectedListItems: Array<SelectedItemProps>;
711
+ /** current list of results in state */
712
+ list: ItemListProps;
713
+ /** function that sets the list of items to state */
714
+ onSetList: (value: ItemListProps) => void;
715
+ };
716
+
717
+ type EntrySearchListItemProps = SelectedItemProps & {
718
+ /** sets the content type value, this is normally used for subtitles e.g. Kitchens */
719
+ contentType?: string | string[];
720
+ /** sets image parameters */
721
+ image?: {
722
+ /** sets the src valuue */
723
+ src: string;
724
+ /** sets the alt text value */
725
+ alt: string;
726
+ /** set the width attribute of the image
727
+ * if both width and height are set the image loading attribute is set to `lazy`
728
+ */
729
+ width?: number;
730
+ /** set the height attribute of the image
731
+ * if both width and height are set the image loading attribute is set to `lazy`
732
+ */
733
+ height?: number;
734
+ };
735
+ /** sets the function call on the role="button" wrapping element */
736
+ onSelect?: (data?: Record<string, unknown>) => void;
737
+ /** allows child components within the popover data */
738
+ popoverData?: React$1.ReactNode;
739
+ /** allows authors to add any child component that is not controlled by Uniform */
740
+ children?: React$1.ReactNode;
741
+ /** sets whether multiple entries can be added to the results list context
742
+ * @default false
743
+ */
744
+ isMulti?: boolean;
745
+ };
746
+ /**
747
+ * @description entry search list item is an opinionated UI component best used for initial retrieved results
748
+ * @example <EntrySearchListItem id="my-result-item" title="title" popoverData={<p>some data info</p>}><div>example of uncontrolled content</div></EntrySearchListItem> */
749
+ declare const EntrySearchListItem: ({ id, title, contentType, image, popoverData, onSelect, isMulti, children, ...props }: EntrySearchListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
750
+ /**
751
+ * An opinionated loading skeleton component best used with EntrySearchListItem
752
+ * @example <EntrySearchListItemLoadingSkeleton />
753
+ */
754
+ declare const EntrySearchListItemLoadingSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
755
+
756
+ type EntrySearchResultItemProps = SelectedItemProps & {
757
+ /** sets additional remove functionality onto of default removal */
758
+ onRemove?: () => void;
759
+ /** sets whether to show or hide the remove button
760
+ * @default false
761
+ */
762
+ hideRemoveButton?: boolean;
763
+ /** sets user defined child nodes that are uncontrolled by Uniform */
764
+ children?: ReactNode;
765
+ };
766
+ /**
767
+ * @description An opinionated result item, best used for selected results
768
+ * @example <EntrySearchResultItem id="my-result" title="title" />
769
+ */
770
+ 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;
771
+
772
+ type EntrySearchResultItemButtonProps<THtml extends HTMLAttributes<HTMLElement> = HTMLAttributes<HTMLButtonElement>> = {
773
+ /** sets the button or link text value */
774
+ text: string;
775
+ /** sets the button or link icon */
776
+ icon?: string | React.ComponentType<{
777
+ className?: string;
778
+ }>;
779
+ } & THtml;
780
+ /**
781
+ * @description An opinionated button component best used within the EntrySearchResultItem component
782
+ * @example <EntrySearchResultItemButton text="button text" icon="/my-image.png" onClick={() => myFunction()} />
783
+ */
784
+ declare const EntrySearchResultItemButton: ({ text, icon, ...props }: EntrySearchResultItemButtonProps<HTMLAttributes<HTMLButtonElement>>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
785
+ /**
786
+ * @description An opinionated link component styled the same of the EntrySearchResultItemButton component,
787
+ * that automatically sets the target and rel attributes. Best used within the EntrySearchResultItem component
788
+ * @example <LinkButton text="link text" icon="/my-image.png" />
789
+ */
790
+ declare const LinkButton: ({ text, icon, ...props }: EntrySearchResultItemButtonProps<Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'target' | 'rel'>>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
791
+
792
+ type EntrySearchResultListProps<TRenderComponent extends SelectedItemProps = SelectedItemProps> = {
793
+ /** sets the result label value
794
+ * @default 'Selected'
795
+ */
796
+ resultLabelText?: string;
797
+ /** sets the on remove button click action */
798
+ onRemoveAllSelected?: () => void;
799
+ /** sets the remove button text
800
+ * @default 'Remove all'
801
+ */
802
+ removeButtonText?: string;
803
+ /** sets whether to show or hide the remove button
804
+ * @default false
805
+ */
806
+ hideRemoveButton?: boolean;
807
+ /** allows additional buttons to be added to the result title group */
808
+ additionalButtons?: React.ReactNode;
809
+ /** allows placing child components within the result list area */
810
+ renderResultComponent?: (value: TRenderComponent) => React.ReactNode;
811
+ /** disable or enable drag and drop functionality
812
+ * @default false
813
+ */
814
+ disableDnD?: boolean;
815
+ };
816
+ /**
817
+ * @description An opinionated result list UI component that has built in drag and drop functionality and removal of all selected items from context.
818
+ * The result item component defaults to <EntrySearchResultItem {...props} />, however this can be overridden with any other UI component and still
819
+ * maintain drag and drop functionality
820
+ * @example <EntrySearchResultList id="my-id" title="title" renderResultComponent={(values) => <CustomComponent {...values} />} />
821
+ */
822
+ declare const EntrySearchResultList: ({ resultLabelText, removeButtonText, onRemoveAllSelected, hideRemoveButton, additionalButtons, renderResultComponent, disableDnD, }: EntrySearchResultListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
823
+
824
+ type QueryFilterSearchProps = {
825
+ /** sets the count value */
826
+ count: number;
827
+ /** sets the sortBy filter value */
828
+ sortBy: string;
829
+ /** sets the sortOrder filter value */
830
+ sortOrder: string;
831
+ };
832
+ type QuertFilterSelectionOptionProps = Array<{
833
+ id: string;
834
+ name: string;
835
+ }>;
836
+ type QueryFilterProps<TSelectOptions extends QuertFilterSelectionOptionProps = QuertFilterSelectionOptionProps> = {
837
+ /** sets the query filter title
838
+ * @default 'Configure Query'
839
+ */
840
+ queryFilterTitle?: string;
841
+ /** sets the content type all selected options label
842
+ * @default 'All content types'
843
+ */
844
+ typeSelectorAllTypesOptionText?: string;
845
+ /** sets the content type label value
846
+ * @default 'Filter by content type'
847
+ */
848
+ contentTypeLabel?: string;
849
+ /** sets the content type select options */
850
+ contentTypeOptions: TSelectOptions;
851
+ /** sets whether the content type filter is required */
852
+ requireContentType?: boolean;
853
+ /** sets the count label value
854
+ * @default 'Count'
855
+ */
856
+ countLabel?: string;
857
+ /** sets the count value or items to show
858
+ * @default 5
859
+ */
860
+ countValue?: number;
861
+ /** sets the sort label text
862
+ * @default 'Sort'
863
+ */
864
+ sortLabel?: string;
865
+ /** sets the sort select options value */
866
+ sortOptions: TSelectOptions;
867
+ /** sets the sort order lable value
868
+ * @default 'Sort Order'
869
+ */
870
+ sortOrderLabel?: string;
871
+ /** sets the sort order select options value */
872
+ sortOrderOptions: TSelectOptions;
873
+ /** allows for additional child components, for example more input components */
874
+ children?: ReactNode;
875
+ };
876
+ /**
877
+ * @description An opinionated multi query filter UI component, best used for querying product data or more complex scenarios
878
+ * @example <QueryFilter contentTypeOptions={[{ id: 'id', name: 'name' }]} sortOptions={[{ id: 'id', name: 'name' }]} sortOrderOptions={[{ id: 'id', name: 'name' }]} />
879
+ */
880
+ declare const QueryFilter: ({ requireContentType, queryFilterTitle, contentTypeLabel, typeSelectorAllTypesOptionText, contentTypeOptions, countLabel, countValue, sortLabel, sortOptions, sortOrderLabel, sortOrderOptions, children, }: QueryFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
881
+
557
882
  type MeshAppProps = {
558
883
  loadingComponent?: React__default.ComponentType;
559
884
  errorComponent?: React__default.ComponentType<{
@@ -592,7 +917,7 @@ type RequestData = {
592
917
  method?: string;
593
918
  body?: string;
594
919
  };
595
- type RequestProviderProps = React.PropsWithChildren<{
920
+ type RequestProviderProps = React$1.PropsWithChildren<{
596
921
  value: RequestData;
597
922
  onChange: (delegate: (oldValue: RequestData) => RequestData) => void;
598
923
  }>;
@@ -629,12 +954,12 @@ type RequestContext = {
629
954
  declare function RequestProvider({ value, onChange, children }: RequestProviderProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
630
955
  declare function useRequest(): RequestContext;
631
956
 
632
- type RequestTypeContainerProps = React.HTMLAttributes<HTMLDivElement> & {
957
+ type RequestTypeContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
633
958
  /**sets the background color of the container
634
959
  * @default 'transparent'
635
960
  */
636
961
  bgColor?: 'transparent' | 'var(--gray-100)';
637
- children: React.ReactNode;
962
+ children: React$1.ReactNode;
638
963
  };
639
964
  /**
640
965
  * @description a container to layout content in a 2 column grid format = 12ch 1fr
@@ -747,4 +1072,4 @@ declare function useUniformMeshSdk(): _uniformdev_mesh_sdk.UniformMeshSDK;
747
1072
  */
748
1073
  declare function createLocationValidator<TSetValue>(setValue: SetLocationValueDispatch<TSetValue>, validate: (newValue: TSetValue, currentResult: SetValueOptions | undefined) => SetValueOptions): SetLocationValueDispatch<TSetValue>;
749
1074
 
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 };
1075
+ 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 };