@uniformdev/mesh-sdk-react 18.31.0 → 18.31.1-alpha.22

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,348 @@ 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
+ /** disable or enable drag and drop functionality
770
+ * @default false
771
+ */
772
+ disableDnD?: boolean;
773
+ };
774
+ /**
775
+ * @description An opinionated result item, best used for selected results
776
+ * @example <EntrySearchResultItem id="my-result" title="title" />
777
+ */
778
+ declare const EntrySearchResultItem: ({ id, title, name, contentType, popoverData, publishStatus, editLinkIcon, editLink, imageUrl, onRemove, createdAt, publishedAt, hideRemoveButton, disableDnD, children, }: EntrySearchResultItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
779
+
780
+ type EntrySearchResultItemButtonProps<THtml extends HTMLAttributes<HTMLElement> = HTMLAttributes<HTMLButtonElement>> = {
781
+ /** sets the button or link text value */
782
+ text: string;
783
+ /** sets the button or link icon */
784
+ icon?: string | React.ComponentType<{
785
+ className?: string;
786
+ }>;
787
+ } & THtml;
788
+ /**
789
+ * @description An opinionated button component best used within the EntrySearchResultItem component
790
+ * @example <EntrySearchResultItemButton text="button text" icon="/my-image.png" onClick={() => myFunction()} />
791
+ */
792
+ declare const EntrySearchResultItemButton: ({ text, icon, ...props }: EntrySearchResultItemButtonProps<HTMLAttributes<HTMLButtonElement>>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
793
+ /**
794
+ * @description An opinionated link component styled the same of the EntrySearchResultItemButton component,
795
+ * that automatically sets the target and rel attributes. Best used within the EntrySearchResultItem component
796
+ * @example <LinkButton text="link text" icon="/my-image.png" />
797
+ */
798
+ declare const LinkButton: ({ text, icon, ...props }: EntrySearchResultItemButtonProps<Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'target' | 'rel'>>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
799
+
800
+ type EntrySearchResultListProps<TRenderComponent extends SelectedItemProps = SelectedItemProps> = {
801
+ /** sets the result label value
802
+ * @default 'Selected'
803
+ */
804
+ resultLabelText?: string;
805
+ /** sets the on remove button click action */
806
+ onRemoveAllSelected?: () => void;
807
+ /** sets the remove button text
808
+ * @default 'Remove all'
809
+ */
810
+ removeButtonText?: string;
811
+ /** sets whether to show or hide the remove button
812
+ * @default false
813
+ */
814
+ hideRemoveButton?: boolean;
815
+ /** allows additional buttons to be added to the result title group */
816
+ additionalButtons?: React.ReactNode;
817
+ /** allows placing child components within the result list area */
818
+ renderResultComponent?: (value: TRenderComponent) => React.ReactNode;
819
+ /** disable or enable drag and drop functionality
820
+ * @default false
821
+ */
822
+ disableDnD?: boolean;
823
+ };
824
+ /**
825
+ * @description An opinionated result list UI component that has built in drag and drop functionality and removal of all selected items from context.
826
+ * The result item component defaults to <EntrySearchResultItem {...props} />, however this can be overridden with any other UI component and still
827
+ * maintain drag and drop functionality
828
+ * @example <EntrySearchResultList id="my-id" title="title" renderResultComponent={(values) => <CustomComponent {...values} />} />
829
+ */
830
+ declare const EntrySearchResultList: ({ resultLabelText, removeButtonText, onRemoveAllSelected, hideRemoveButton, additionalButtons, renderResultComponent, disableDnD, }: EntrySearchResultListProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
831
+
832
+ type QueryFilterSearchProps = {
833
+ /** sets the count value */
834
+ count: number;
835
+ /** sets the sortBy filter value */
836
+ sortBy: string;
837
+ /** sets the sortOrder filter value */
838
+ sortOrder: string;
839
+ };
840
+ type QuertFilterSelectionOptionProps = Array<{
841
+ id: string;
842
+ name: string;
843
+ label: string;
844
+ }>;
845
+ type QueryFilterProps<TSelectOptions extends QuertFilterSelectionOptionProps = QuertFilterSelectionOptionProps> = {
846
+ /** sets the query filter title
847
+ * @default 'Configure Query'
848
+ */
849
+ queryFilterTitle?: string;
850
+ /** sets the content type all selected options label
851
+ * @default 'All content types'
852
+ */
853
+ typeSelectorAllTypesOptionText?: string;
854
+ /** sets the content type label value
855
+ * @default 'Filter by content type'
856
+ */
857
+ contentTypeLabel?: string;
858
+ /** sets the content type select options */
859
+ contentTypeOptions: TSelectOptions;
860
+ /** sets whether the content type filter is required */
861
+ requireContentType?: boolean;
862
+ /** sets the count label value
863
+ * @default 'Count'
864
+ */
865
+ countLabel?: string;
866
+ /** sets the count value or items to show
867
+ * @default 5
868
+ */
869
+ countValue?: number;
870
+ /** sets the sort label text
871
+ * @default 'Sort'
872
+ */
873
+ sortLabel?: string;
874
+ /** sets the sort select options value */
875
+ sortOptions: TSelectOptions;
876
+ /** sets the sort order lable value
877
+ * @default 'Sort Order'
878
+ */
879
+ sortOrderLabel?: string;
880
+ /** sets the sort order select options value */
881
+ sortOrderOptions: TSelectOptions;
882
+ /** sets the search input name value
883
+ * @default 'searchText'
884
+ */
885
+ searchInputName?: string;
886
+ /** sets the search input placeholder text
887
+ * @default 'Enter keyword to narrow your results'
888
+ */
889
+ searchInputPlaceholderText?: string;
890
+ /** allows for additional child components, for example more input components */
891
+ children?: ReactNode;
892
+ };
893
+ /**
894
+ * @description An opinionated multi query filter UI component, best used for querying product data or more complex scenarios
895
+ * @example <QueryFilter contentTypeOptions={[{ id: 'id', name: 'name' }]} sortOptions={[{ id: 'id', name: 'name' }]} sortOrderOptions={[{ id: 'id', name: 'name' }]} />
896
+ */
897
+ 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;
898
+
557
899
  type MeshAppProps = {
558
900
  loadingComponent?: React__default.ComponentType;
559
901
  errorComponent?: React__default.ComponentType<{
@@ -592,7 +934,7 @@ type RequestData = {
592
934
  method?: string;
593
935
  body?: string;
594
936
  };
595
- type RequestProviderProps = React.PropsWithChildren<{
937
+ type RequestProviderProps = React$1.PropsWithChildren<{
596
938
  value: RequestData;
597
939
  onChange: (delegate: (oldValue: RequestData) => RequestData) => void;
598
940
  }>;
@@ -629,12 +971,12 @@ type RequestContext = {
629
971
  declare function RequestProvider({ value, onChange, children }: RequestProviderProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
630
972
  declare function useRequest(): RequestContext;
631
973
 
632
- type RequestTypeContainerProps = React.HTMLAttributes<HTMLDivElement> & {
974
+ type RequestTypeContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
633
975
  /**sets the background color of the container
634
976
  * @default 'transparent'
635
977
  */
636
978
  bgColor?: 'transparent' | 'var(--gray-100)';
637
- children: React.ReactNode;
979
+ children: React$1.ReactNode;
638
980
  };
639
981
  /**
640
982
  * @description a container to layout content in a 2 column grid format = 12ch 1fr
@@ -747,4 +1089,4 @@ declare function useUniformMeshSdk(): _uniformdev_mesh_sdk.UniformMeshSDK;
747
1089
  */
748
1090
  declare function createLocationValidator<TSetValue>(setValue: SetLocationValueDispatch<TSetValue>, validate: (newValue: TSetValue, currentResult: SetValueOptions | undefined) => SetValueOptions): SetLocationValueDispatch<TSetValue>;
749
1091
 
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 };
1092
+ 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 };