@uniformdev/mesh-sdk-react 19.158.0 → 19.159.1-alpha.9
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.mts +94 -129
- package/dist/index.d.ts +94 -129
- package/dist/index.esm.js +734 -622
- package/dist/index.js +793 -695
- package/dist/index.mjs +734 -622
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1722,17 +1722,30 @@ declare function useRequestParameter(paramName: string): {
|
|
|
1722
1722
|
/** @deprecated beta - Filter editor component names */
|
|
1723
1723
|
type FilterEditor = 'singleChoice' | 'multiChoice' | 'dateRange' | 'date' | 'text' | 'empty' | 'number' | 'numberRange' | 'statusMultiChoice' | 'statusSingleChoice';
|
|
1724
1724
|
/** @deprecated beta - Input option props */
|
|
1725
|
-
type InputOption =
|
|
1725
|
+
type InputOption = InputOptionGroup | InputOptionValue;
|
|
1726
|
+
/** @deprecated beta - Input option group props */
|
|
1727
|
+
type InputOptionGroup = {
|
|
1728
|
+
type: 'group';
|
|
1729
|
+
/** The label for the option group */
|
|
1730
|
+
label: string;
|
|
1731
|
+
/**
|
|
1732
|
+
* Option values to select when clicking the group
|
|
1733
|
+
* If not provided, the group will not be clickable when multiple selection is allowed
|
|
1734
|
+
*/
|
|
1735
|
+
value?: string[];
|
|
1736
|
+
/** Options in the option group */
|
|
1737
|
+
options: InputOptionValue[];
|
|
1738
|
+
};
|
|
1739
|
+
/** @deprecated beta - Input option props */
|
|
1740
|
+
type InputOptionValue = {
|
|
1726
1741
|
/** The label for the option */
|
|
1727
1742
|
label: string;
|
|
1728
|
-
/**
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
/** Set a readonly state on the input */
|
|
1735
|
-
readOnly?: boolean;
|
|
1743
|
+
/**
|
|
1744
|
+
* The value to select for the option.
|
|
1745
|
+
* If an array, multiple other option values will be selected when the option is clicked (they should exist as single-valued options)
|
|
1746
|
+
* Note that array-valued options are hidden when in a single-select editor
|
|
1747
|
+
*/
|
|
1748
|
+
value: string | string[];
|
|
1736
1749
|
};
|
|
1737
1750
|
/** @deprecated beta - Operator option props */
|
|
1738
1751
|
type Operator = {
|
|
@@ -1775,6 +1788,19 @@ type Filter = {
|
|
|
1775
1788
|
/** The value selected */
|
|
1776
1789
|
value: string | string[];
|
|
1777
1790
|
};
|
|
1791
|
+
type FilterEditorRendererProps<TValue extends string | string[]> = Pick<FilterOption, 'readOnly' | 'disabled' | 'bindable'> & {
|
|
1792
|
+
ariaLabel?: string;
|
|
1793
|
+
/** The type of filter editor to render */
|
|
1794
|
+
editorType: FilterEditor;
|
|
1795
|
+
/** The options for the filter editor if it has a controlled set of options */
|
|
1796
|
+
options?: Array<InputOption>;
|
|
1797
|
+
/** The current value for the filter editor */
|
|
1798
|
+
value: TValue | undefined;
|
|
1799
|
+
/** The onChange event for the filter editor */
|
|
1800
|
+
onChange: (e: TValue | undefined) => void;
|
|
1801
|
+
/** Sets the data-testid value */
|
|
1802
|
+
valueTestId?: string;
|
|
1803
|
+
};
|
|
1778
1804
|
|
|
1779
1805
|
/** @deprecated beta - a list of possible operator values that sync with uniform search api */
|
|
1780
1806
|
type OperatorValue = 'eq' | 'sys-date-eq' | 'neq' | 'gt' | 'sys-date-gt' | 'gte' | 'sys-date-gte' | 'lt' | 'sys-date-lt' | 'lte' | 'sys-date-lte' | 'in' | 'nin' | 'between' | 'sys-date-between' | 'ndef' | 'def' | 'match' | 'starts';
|
|
@@ -1806,6 +1832,60 @@ declare const SELECT_OPERATORS: OperatorType;
|
|
|
1806
1832
|
/** @deprecated beta - uniform multi-select field operators */
|
|
1807
1833
|
declare const MULTI_SELECT_OPERATORS: OperatorType;
|
|
1808
1834
|
|
|
1835
|
+
/**
|
|
1836
|
+
* @deprecated beta - Renders a date input field for filtering
|
|
1837
|
+
* @example <DateEditor ariaLabel="Date" value={value} onChange={onChange} />
|
|
1838
|
+
*/
|
|
1839
|
+
declare const DateEditor: ({ onChange, ariaLabel, disabled, value, readOnly, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1840
|
+
|
|
1841
|
+
/**
|
|
1842
|
+
* @deprecated beta - Renders a date range input field for filtering
|
|
1843
|
+
* @example <DateRangeEditor ariaLabel="Date Range" value={value} onChange={onChange} />
|
|
1844
|
+
*/
|
|
1845
|
+
declare const DateRangeEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1846
|
+
|
|
1847
|
+
/**
|
|
1848
|
+
* @deprecated beta - Multie select filter component
|
|
1849
|
+
* @example <FilterMultiChoiceEditor options={options} value={options.filter((option) => values.includes(option.value)} onChange={(e) => onChange(e.map((option) => option.value))} />
|
|
1850
|
+
*/
|
|
1851
|
+
declare const FilterMultiChoiceEditor: ({ value, options, disabled, readOnly, valueTestId, ...props }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1852
|
+
|
|
1853
|
+
/**
|
|
1854
|
+
* @deprecated beta - Single select filter component
|
|
1855
|
+
* @example <FilterSingleChoiceEditor options={options} value={options.find((option) => values.includes(option.value)} onChange={(e) => onChange(e.value)} />
|
|
1856
|
+
*/
|
|
1857
|
+
declare const FilterSingleChoiceEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1858
|
+
|
|
1859
|
+
/**
|
|
1860
|
+
* @deprecated beta - Renders a number input field for filtering
|
|
1861
|
+
* @example <NumberEditor ariaLabel="Number" value={value} onChange={onChange} />
|
|
1862
|
+
*/
|
|
1863
|
+
declare const NumberEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1864
|
+
|
|
1865
|
+
/**
|
|
1866
|
+
* @deprecated beta - Renders a number range input field for filtering
|
|
1867
|
+
* @example <NumberRangeEditor ariaLabel="Number Range" value={value} onChange={onChange} />
|
|
1868
|
+
*/
|
|
1869
|
+
declare const NumberRangeEditor: ({ onChange, disabled, ariaLabel, value, readOnly, valueTestId, }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1870
|
+
|
|
1871
|
+
/**
|
|
1872
|
+
* @deprecated beta - Status multi select filter component that renders a custom dropdown menu
|
|
1873
|
+
* @example <StatusMultiEditor options={options} value={value} onChange={onChange} />
|
|
1874
|
+
*/
|
|
1875
|
+
declare const StatusMultiEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1876
|
+
|
|
1877
|
+
/**
|
|
1878
|
+
* @deprecated beta - Status single select filter component that renders a custom dropdown menu
|
|
1879
|
+
* @example <StatusSingleEditor options={options} value={value} onChange={onChange} />
|
|
1880
|
+
*/
|
|
1881
|
+
declare const StatusSingleEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1882
|
+
|
|
1883
|
+
/**
|
|
1884
|
+
* @deprecated beta - Renders a text input field for filtering
|
|
1885
|
+
* @example <TextEditor ariaLabel="Search" value={value} onChange={onChange} />
|
|
1886
|
+
*/
|
|
1887
|
+
declare const TextEditor: ({ onChange, ariaLabel, value, readOnly, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1888
|
+
|
|
1809
1889
|
/** @description beta - filter button type */
|
|
1810
1890
|
type FilterButtonProps = {
|
|
1811
1891
|
/** text to display on the button
|
|
@@ -1840,129 +1920,14 @@ declare const FilterControls: ({ children, hideSearchInput, }: {
|
|
|
1840
1920
|
hideSearchInput?: boolean | undefined;
|
|
1841
1921
|
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1842
1922
|
|
|
1843
|
-
type FilterEditorProps = Record<FilterEditor, ComponentType<{
|
|
1844
|
-
label?: string;
|
|
1845
|
-
value?: string;
|
|
1846
|
-
options: any;
|
|
1847
|
-
onChange: (value: any) => void;
|
|
1848
|
-
}> | (() => ReactNode) | null>;
|
|
1849
|
-
type ComboboxOption = {
|
|
1850
|
-
label: string;
|
|
1851
|
-
value: string;
|
|
1852
|
-
};
|
|
1853
|
-
type SingleValueComboboxProps = Omit<FilterEditorCommonInputProps, 'value'> & {
|
|
1854
|
-
value?: string;
|
|
1855
|
-
options: ComboboxOption[];
|
|
1856
|
-
onChange: (e: string) => void;
|
|
1857
|
-
};
|
|
1858
|
-
type MultiValueComboboxProps = Omit<FilterEditorCommonInputProps, 'value'> & {
|
|
1859
|
-
value?: string[];
|
|
1860
|
-
options: ComboboxOption[];
|
|
1861
|
-
onChange: (e: string[]) => void;
|
|
1862
|
-
};
|
|
1863
|
-
type FilterEditorCommonInputProps = {
|
|
1864
|
-
ariaLabel: string;
|
|
1865
|
-
onChange: (e: string | string[]) => void;
|
|
1866
|
-
disabled?: boolean;
|
|
1867
|
-
value?: string | string[];
|
|
1868
|
-
readOnly?: boolean;
|
|
1869
|
-
valueTestId?: string;
|
|
1870
|
-
bindable?: boolean;
|
|
1871
|
-
};
|
|
1872
|
-
/**
|
|
1873
|
-
* @deprecated beta - Multie select filter component
|
|
1874
|
-
* @example <FilterMultiChoiceEditor options={options} value={options.filter((option) => values.includes(option.value)} onChange={(e) => onChange(e.map((option) => option.value))} />
|
|
1875
|
-
*/
|
|
1876
|
-
declare const FilterMultiChoiceEditor: ({ value, options, disabled, readOnly, valueTestId, ...props }: MultiValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1877
|
-
/**
|
|
1878
|
-
* @deprecated beta - Single select filter component
|
|
1879
|
-
* @example <FilterSingleChoiceEditor options={options} value={options.find((option) => values.includes(option.value)} onChange={(e) => onChange(e.value)} />
|
|
1880
|
-
*/
|
|
1881
|
-
declare const FilterSingleChoiceEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: SingleValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1882
|
-
/**
|
|
1883
|
-
* @deprecated beta - Status multi select filter component that renders a custom dropdown menu
|
|
1884
|
-
* @example <StatusMultiEditor options={options} value={value} onChange={onChange} />
|
|
1885
|
-
*/
|
|
1886
|
-
declare const StatusMultiEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: MultiValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1887
|
-
/**
|
|
1888
|
-
* @deprecated beta - Status single select filter component that renders a custom dropdown menu
|
|
1889
|
-
* @example <StatusSingleEditor options={options} value={value} onChange={onChange} />
|
|
1890
|
-
*/
|
|
1891
|
-
declare const StatusSingleEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: SingleValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1892
|
-
/**
|
|
1893
|
-
* @deprecated beta - Renders a text input field for filtering
|
|
1894
|
-
* @example <TextEditor ariaLabel="Search" value={value} onChange={onChange} />
|
|
1895
|
-
*/
|
|
1896
|
-
declare const TextEditor: ({ onChange, ariaLabel, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1897
|
-
/**
|
|
1898
|
-
* @deprecated beta - Renders a number range input field for filtering
|
|
1899
|
-
* @example <NumberRangeEditor ariaLabel="Number Range" value={value} onChange={onChange} />
|
|
1900
|
-
*/
|
|
1901
|
-
declare const NumberRangeEditor: ({ onChange, disabled, ariaLabel, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1902
|
-
/**
|
|
1903
|
-
* @deprecated beta - Renders a number input field for filtering
|
|
1904
|
-
* @example <NumberEditor ariaLabel="Number" value={value} onChange={onChange} />
|
|
1905
|
-
*/
|
|
1906
|
-
declare const NumberEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1907
|
-
/**
|
|
1908
|
-
* @deprecated beta - Renders a date input field for filtering
|
|
1909
|
-
* @example <DateEditor ariaLabel="Date" value={value} onChange={onChange} />
|
|
1910
|
-
*/
|
|
1911
|
-
declare const DateEditor: ({ onChange, ariaLabel, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1912
|
-
/**
|
|
1913
|
-
* @deprecated beta - Renders a date range input field for filtering
|
|
1914
|
-
* @example <DateRangeEditor ariaLabel="Date Range" value={value} onChange={onChange} />
|
|
1915
|
-
*/
|
|
1916
|
-
declare const DateRangeEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1917
|
-
type FilterEditorRendererProps = Pick<FilterOption, 'readOnly' | 'disabled' | 'bindable'> & {
|
|
1918
|
-
/** The type of filter editor to render */
|
|
1919
|
-
editorType: FilterEditor;
|
|
1920
|
-
/** The options for the filter editor */
|
|
1921
|
-
options?: Array<Operator>;
|
|
1922
|
-
/** The value for the filter editor */
|
|
1923
|
-
value?: string | string[] | InputOption[] | InputOption;
|
|
1924
|
-
/** The onChange event for the filter editor */
|
|
1925
|
-
onChange: (e: string) => void;
|
|
1926
|
-
/** Sets the data-testid value */
|
|
1927
|
-
valueTestId?: string;
|
|
1928
|
-
};
|
|
1929
1923
|
/**
|
|
1930
1924
|
* @deprecated beta - Renders a filter editor component
|
|
1931
1925
|
* @example <FilterEditorRenderer editorType="multiChoice" options={options} value={value} onChange={onChange} />
|
|
1932
1926
|
*/
|
|
1933
|
-
declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRendererProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
1927
|
+
declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRendererProps<never>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
1934
1928
|
/** @deprecated beta - A mapper for filter editor components */
|
|
1935
|
-
declare const filterMapper: Record<FilterEditor, ComponentType<any
|
|
1936
|
-
declare const bindableFiltersMapper:
|
|
1937
|
-
multiChoice: React__default.FC<MultiValueComboboxProps>;
|
|
1938
|
-
singleChoice: React__default.FC<SingleValueComboboxProps>;
|
|
1939
|
-
date: React__default.FC<FilterEditorCommonInputProps & {
|
|
1940
|
-
value?: string | undefined;
|
|
1941
|
-
options?: {
|
|
1942
|
-
label: string;
|
|
1943
|
-
value: string;
|
|
1944
|
-
}[] | undefined;
|
|
1945
|
-
}>;
|
|
1946
|
-
text: React__default.FC<FilterEditorCommonInputProps & {
|
|
1947
|
-
value?: string | undefined;
|
|
1948
|
-
options?: {
|
|
1949
|
-
label: string;
|
|
1950
|
-
value: string;
|
|
1951
|
-
}[] | undefined;
|
|
1952
|
-
}>;
|
|
1953
|
-
number: React__default.FC<FilterEditorCommonInputProps & {
|
|
1954
|
-
value?: string | undefined;
|
|
1955
|
-
options?: {
|
|
1956
|
-
label: string;
|
|
1957
|
-
value: string;
|
|
1958
|
-
}[] | undefined;
|
|
1959
|
-
}>;
|
|
1960
|
-
dateRange: React__default.ComponentType<any> | null;
|
|
1961
|
-
empty: React__default.ComponentType<any> | null;
|
|
1962
|
-
numberRange: React__default.ComponentType<any> | null;
|
|
1963
|
-
statusMultiChoice: React__default.ComponentType<any> | null;
|
|
1964
|
-
statusSingleChoice: React__default.ComponentType<any> | null;
|
|
1965
|
-
};
|
|
1929
|
+
declare const filterMapper: Record<FilterEditor, ComponentType<FilterEditorRendererProps<any>> | null>;
|
|
1930
|
+
declare const bindableFiltersMapper: typeof filterMapper;
|
|
1966
1931
|
|
|
1967
1932
|
type FilterMapper = Record<string, ComponentType<any> | null>;
|
|
1968
1933
|
type SearchAndFilterProviderProps = {
|
|
@@ -2103,7 +2068,7 @@ type FilterRowProps = {
|
|
|
2103
2068
|
/** function to trigger operator change events */
|
|
2104
2069
|
onOperatorChange: (e: string) => void;
|
|
2105
2070
|
/** function to trigger value change events */
|
|
2106
|
-
onValueChange: (e: string) => void;
|
|
2071
|
+
onValueChange: (e: string | string[]) => void;
|
|
2107
2072
|
/** the list of value options for each filter row */
|
|
2108
2073
|
valueOptions: InputOption[];
|
|
2109
2074
|
};
|
|
@@ -2263,4 +2228,4 @@ type ContentDataResourceLocaleInfoProps = {
|
|
|
2263
2228
|
};
|
|
2264
2229
|
declare function useContentDataResourceLocaleInfo({ locale, setLocale, dynamicInputs, }: ContentDataResourceLocaleInfoProps): ContentDataResourceLocaleInfoResult;
|
|
2265
2230
|
|
|
2266
|
-
export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, CHECKBOX_OPERATORS, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledValuePlugin, DATE_OPERATORS, DISCONNECT_VARIABLE_COMMAND, type DamItem, DamSelectedItem, type DamSelectedItemProps, DataRefreshButton, type DataRefreshButtonProps, DataResourceDynamicInputProvider, type DataResourceDynamicInputProviderProps, type DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListExplicit, type DataResourceVariablesListProps, DataSourceEditor, type DataSourceEditorProps, DataTypeEditor, type DataTypeEditorProps, type DataVariableDefinitionWithName, DateEditor, DateRangeEditor, DefaultSearchRow, DefaultSelectedItem, type DisconnectVariableCommandArguments, type DispatchResult, EDIT_VARIABLE_COMMAND, type EditVariableCommandArguments, EntrySearch, type EntrySearchContentType, type EntrySearchProps, type EntrySearchQueryOptions, type EntrySearchResult, type EntrySearchRowProps, type EntrySearchSelectedItemProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor,
|
|
2231
|
+
export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, CHECKBOX_OPERATORS, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledValuePlugin, DATE_OPERATORS, DISCONNECT_VARIABLE_COMMAND, type DamItem, DamSelectedItem, type DamSelectedItemProps, DataRefreshButton, type DataRefreshButtonProps, DataResourceDynamicInputProvider, type DataResourceDynamicInputProviderProps, type DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListExplicit, type DataResourceVariablesListProps, DataSourceEditor, type DataSourceEditorProps, DataTypeEditor, type DataTypeEditorProps, type DataVariableDefinitionWithName, DateEditor, DateRangeEditor, DefaultSearchRow, DefaultSelectedItem, type DisconnectVariableCommandArguments, type DispatchResult, EDIT_VARIABLE_COMMAND, type EditVariableCommandArguments, EntrySearch, type EntrySearchContentType, type EntrySearchProps, type EntrySearchQueryOptions, type EntrySearchResult, type EntrySearchRowProps, type EntrySearchSelectedItemProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor, FilterEditorRenderer, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, type GetProductOptions, type GetProductsOptions, INSERT_VARIABLE_COMMAND, index as Icons, type InputOption, InputVariables, type InputVariablesProps, type InsertVariableCommandArguments, type ItemListProps, type KnownUndefinedVariableInfo, type KnownUndefinedVariableInfoWithName, LinkButton, MULTI_SELECT_OPERATORS, MeshApp, type MeshAppProps, type MeshDataVariableDefinition, NUMBER_OPERATORS, type NoResultsProps, NumberEditor, NumberRangeEditor, OPEN_INSERT_VARIABLE_COMMAND, ObjectSearchContainer, type ObjectSearchContainerProps, type ObjectSearchContextProps, ObjectSearchFilter, ObjectSearchFilterContainer, type ObjectSearchFilterContainerProps, type ObjectSearchFilterProps, ObjectSearchListItem, ObjectSearchListItemLoadingSkeleton, type ObjectSearchListItemProps, ObjectSearchProvider, type ObjectSearchProviderProps, ObjectSearchResultItem, ObjectSearchResultItemButton, type ObjectSearchResultItemButtonProps, type ObjectSearchResultItemProps, ObjectSearchResultList, type ObjectSearchResultListProps, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, ParamTypeDynamicDataProvider, type ParamTypeDynamicDataProviderProps, type ParameterConnectOptions, ParameterConnectionIndicator, type ParameterConnectionIndicatorProps, ParameterOrSingleVariable, type ParameterOrSingleVariableProps, ParameterVariables, type ParameterVariablesProps, type ProductCategory, type ProductDynamicSelectorValue, ProductPreviewList, ProductQuery, type ProductQueryCategory, ProductQueryContext, type ProductQueryContextValue, type ProductQueryProps, ProductSearch, ProductSearchContext, type ProductSearchContextValue, type ProductSearchProps, type ProductSearchResult, type ProductSearchResults, ProductSearchRow, ProductSelectedItem, QueryFilter, type QueryFilterProps, type QueryFilterSearchProps, RICHTEXT_OPERATORS, type RequestAction, RequestBody, type RequestContext, type RequestData, RequestHeaders, RequestMethodSelect, type RequestParameter, RequestParameters, type RequestParametersProps, RequestProvider, type RequestProviderProps, RequestTypeContainer, type RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, SELECT_OPERATORS, SYSTEM_DATE_OPERATORS, SYSTEM_FIELD_OPERATORS, SearchAndFilter, SearchAndFilterContext, type SearchAndFilterContextProps, SearchAndFilterOptionsContainer, type SearchAndFilterOptionsContainerProps, type SearchAndFilterProps, SearchAndFilterProvider, type SearchAndFilterProviderProps, SearchAndFilterResultContainer, type SearchAndFilterResultContainerProps, SearchOnlyContext, SearchOnlyFilter, type SearchOnlyProviderProps, type SearchQueryProps, type SelectedItemProps, SelectionField, type SelectionFieldValue, type SerializedVariableNode, type SetLocationValueDispatch, type SetLocationValueFunction, SortItems, type SortItemsProps, StatusMultiEditor, StatusSingleEditor, TEXTBOX_OPERATORS, TextEditor, TextVariableRenderer, USER_OPERATORS, type UseVariablesMenu, type UseVariablesMenuInput, VariableEditor, type VariableEditorCompleteEvent, type VariableEditorProps, VariableNode, type VariableNodeState, type VariableSourceGroup, type VariablesAction, type VariablesContext, type VariablesEvents, VariablesList, VariablesPlugin, type VariablesPluginProps, VariablesProvider, type VariablesProviderProps, badgeIcon, bindableFiltersMapper, convertConnectedDataToVariable, 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, filterMapper, hasReferencedVariables, prettifyBindExpression, 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, serializeVariablesEditorState, setVariablesEditorValue, urlEncodeRequestParameter, urlEncodeRequestUrl, useConnectedDataAsVariables, useContentDataResourceLocaleInfo, useDynamicInputsAsVariables, useMeshLocation, useObjectSearchContext, useProductQueryContext, useProductSearchContext, useRequest, useRequestHeader, useRequestParameter, useSearchAndFilter, useUniformMeshSdk, useVariableEditor, useVariables, useVariablesMenu, variableDefaultTextValue, variablePrefix, variableSuffix, variablesToGroupedList, variablesToList };
|
package/dist/index.d.ts
CHANGED
|
@@ -1722,17 +1722,30 @@ declare function useRequestParameter(paramName: string): {
|
|
|
1722
1722
|
/** @deprecated beta - Filter editor component names */
|
|
1723
1723
|
type FilterEditor = 'singleChoice' | 'multiChoice' | 'dateRange' | 'date' | 'text' | 'empty' | 'number' | 'numberRange' | 'statusMultiChoice' | 'statusSingleChoice';
|
|
1724
1724
|
/** @deprecated beta - Input option props */
|
|
1725
|
-
type InputOption =
|
|
1725
|
+
type InputOption = InputOptionGroup | InputOptionValue;
|
|
1726
|
+
/** @deprecated beta - Input option group props */
|
|
1727
|
+
type InputOptionGroup = {
|
|
1728
|
+
type: 'group';
|
|
1729
|
+
/** The label for the option group */
|
|
1730
|
+
label: string;
|
|
1731
|
+
/**
|
|
1732
|
+
* Option values to select when clicking the group
|
|
1733
|
+
* If not provided, the group will not be clickable when multiple selection is allowed
|
|
1734
|
+
*/
|
|
1735
|
+
value?: string[];
|
|
1736
|
+
/** Options in the option group */
|
|
1737
|
+
options: InputOptionValue[];
|
|
1738
|
+
};
|
|
1739
|
+
/** @deprecated beta - Input option props */
|
|
1740
|
+
type InputOptionValue = {
|
|
1726
1741
|
/** The label for the option */
|
|
1727
1742
|
label: string;
|
|
1728
|
-
/**
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
/** Set a readonly state on the input */
|
|
1735
|
-
readOnly?: boolean;
|
|
1743
|
+
/**
|
|
1744
|
+
* The value to select for the option.
|
|
1745
|
+
* If an array, multiple other option values will be selected when the option is clicked (they should exist as single-valued options)
|
|
1746
|
+
* Note that array-valued options are hidden when in a single-select editor
|
|
1747
|
+
*/
|
|
1748
|
+
value: string | string[];
|
|
1736
1749
|
};
|
|
1737
1750
|
/** @deprecated beta - Operator option props */
|
|
1738
1751
|
type Operator = {
|
|
@@ -1775,6 +1788,19 @@ type Filter = {
|
|
|
1775
1788
|
/** The value selected */
|
|
1776
1789
|
value: string | string[];
|
|
1777
1790
|
};
|
|
1791
|
+
type FilterEditorRendererProps<TValue extends string | string[]> = Pick<FilterOption, 'readOnly' | 'disabled' | 'bindable'> & {
|
|
1792
|
+
ariaLabel?: string;
|
|
1793
|
+
/** The type of filter editor to render */
|
|
1794
|
+
editorType: FilterEditor;
|
|
1795
|
+
/** The options for the filter editor if it has a controlled set of options */
|
|
1796
|
+
options?: Array<InputOption>;
|
|
1797
|
+
/** The current value for the filter editor */
|
|
1798
|
+
value: TValue | undefined;
|
|
1799
|
+
/** The onChange event for the filter editor */
|
|
1800
|
+
onChange: (e: TValue | undefined) => void;
|
|
1801
|
+
/** Sets the data-testid value */
|
|
1802
|
+
valueTestId?: string;
|
|
1803
|
+
};
|
|
1778
1804
|
|
|
1779
1805
|
/** @deprecated beta - a list of possible operator values that sync with uniform search api */
|
|
1780
1806
|
type OperatorValue = 'eq' | 'sys-date-eq' | 'neq' | 'gt' | 'sys-date-gt' | 'gte' | 'sys-date-gte' | 'lt' | 'sys-date-lt' | 'lte' | 'sys-date-lte' | 'in' | 'nin' | 'between' | 'sys-date-between' | 'ndef' | 'def' | 'match' | 'starts';
|
|
@@ -1806,6 +1832,60 @@ declare const SELECT_OPERATORS: OperatorType;
|
|
|
1806
1832
|
/** @deprecated beta - uniform multi-select field operators */
|
|
1807
1833
|
declare const MULTI_SELECT_OPERATORS: OperatorType;
|
|
1808
1834
|
|
|
1835
|
+
/**
|
|
1836
|
+
* @deprecated beta - Renders a date input field for filtering
|
|
1837
|
+
* @example <DateEditor ariaLabel="Date" value={value} onChange={onChange} />
|
|
1838
|
+
*/
|
|
1839
|
+
declare const DateEditor: ({ onChange, ariaLabel, disabled, value, readOnly, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1840
|
+
|
|
1841
|
+
/**
|
|
1842
|
+
* @deprecated beta - Renders a date range input field for filtering
|
|
1843
|
+
* @example <DateRangeEditor ariaLabel="Date Range" value={value} onChange={onChange} />
|
|
1844
|
+
*/
|
|
1845
|
+
declare const DateRangeEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1846
|
+
|
|
1847
|
+
/**
|
|
1848
|
+
* @deprecated beta - Multie select filter component
|
|
1849
|
+
* @example <FilterMultiChoiceEditor options={options} value={options.filter((option) => values.includes(option.value)} onChange={(e) => onChange(e.map((option) => option.value))} />
|
|
1850
|
+
*/
|
|
1851
|
+
declare const FilterMultiChoiceEditor: ({ value, options, disabled, readOnly, valueTestId, ...props }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1852
|
+
|
|
1853
|
+
/**
|
|
1854
|
+
* @deprecated beta - Single select filter component
|
|
1855
|
+
* @example <FilterSingleChoiceEditor options={options} value={options.find((option) => values.includes(option.value)} onChange={(e) => onChange(e.value)} />
|
|
1856
|
+
*/
|
|
1857
|
+
declare const FilterSingleChoiceEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1858
|
+
|
|
1859
|
+
/**
|
|
1860
|
+
* @deprecated beta - Renders a number input field for filtering
|
|
1861
|
+
* @example <NumberEditor ariaLabel="Number" value={value} onChange={onChange} />
|
|
1862
|
+
*/
|
|
1863
|
+
declare const NumberEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1864
|
+
|
|
1865
|
+
/**
|
|
1866
|
+
* @deprecated beta - Renders a number range input field for filtering
|
|
1867
|
+
* @example <NumberRangeEditor ariaLabel="Number Range" value={value} onChange={onChange} />
|
|
1868
|
+
*/
|
|
1869
|
+
declare const NumberRangeEditor: ({ onChange, disabled, ariaLabel, value, readOnly, valueTestId, }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1870
|
+
|
|
1871
|
+
/**
|
|
1872
|
+
* @deprecated beta - Status multi select filter component that renders a custom dropdown menu
|
|
1873
|
+
* @example <StatusMultiEditor options={options} value={value} onChange={onChange} />
|
|
1874
|
+
*/
|
|
1875
|
+
declare const StatusMultiEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: FilterEditorRendererProps<string[]>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1876
|
+
|
|
1877
|
+
/**
|
|
1878
|
+
* @deprecated beta - Status single select filter component that renders a custom dropdown menu
|
|
1879
|
+
* @example <StatusSingleEditor options={options} value={value} onChange={onChange} />
|
|
1880
|
+
*/
|
|
1881
|
+
declare const StatusSingleEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1882
|
+
|
|
1883
|
+
/**
|
|
1884
|
+
* @deprecated beta - Renders a text input field for filtering
|
|
1885
|
+
* @example <TextEditor ariaLabel="Search" value={value} onChange={onChange} />
|
|
1886
|
+
*/
|
|
1887
|
+
declare const TextEditor: ({ onChange, ariaLabel, value, readOnly, valueTestId, }: FilterEditorRendererProps<string>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1888
|
+
|
|
1809
1889
|
/** @description beta - filter button type */
|
|
1810
1890
|
type FilterButtonProps = {
|
|
1811
1891
|
/** text to display on the button
|
|
@@ -1840,129 +1920,14 @@ declare const FilterControls: ({ children, hideSearchInput, }: {
|
|
|
1840
1920
|
hideSearchInput?: boolean | undefined;
|
|
1841
1921
|
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1842
1922
|
|
|
1843
|
-
type FilterEditorProps = Record<FilterEditor, ComponentType<{
|
|
1844
|
-
label?: string;
|
|
1845
|
-
value?: string;
|
|
1846
|
-
options: any;
|
|
1847
|
-
onChange: (value: any) => void;
|
|
1848
|
-
}> | (() => ReactNode) | null>;
|
|
1849
|
-
type ComboboxOption = {
|
|
1850
|
-
label: string;
|
|
1851
|
-
value: string;
|
|
1852
|
-
};
|
|
1853
|
-
type SingleValueComboboxProps = Omit<FilterEditorCommonInputProps, 'value'> & {
|
|
1854
|
-
value?: string;
|
|
1855
|
-
options: ComboboxOption[];
|
|
1856
|
-
onChange: (e: string) => void;
|
|
1857
|
-
};
|
|
1858
|
-
type MultiValueComboboxProps = Omit<FilterEditorCommonInputProps, 'value'> & {
|
|
1859
|
-
value?: string[];
|
|
1860
|
-
options: ComboboxOption[];
|
|
1861
|
-
onChange: (e: string[]) => void;
|
|
1862
|
-
};
|
|
1863
|
-
type FilterEditorCommonInputProps = {
|
|
1864
|
-
ariaLabel: string;
|
|
1865
|
-
onChange: (e: string | string[]) => void;
|
|
1866
|
-
disabled?: boolean;
|
|
1867
|
-
value?: string | string[];
|
|
1868
|
-
readOnly?: boolean;
|
|
1869
|
-
valueTestId?: string;
|
|
1870
|
-
bindable?: boolean;
|
|
1871
|
-
};
|
|
1872
|
-
/**
|
|
1873
|
-
* @deprecated beta - Multie select filter component
|
|
1874
|
-
* @example <FilterMultiChoiceEditor options={options} value={options.filter((option) => values.includes(option.value)} onChange={(e) => onChange(e.map((option) => option.value))} />
|
|
1875
|
-
*/
|
|
1876
|
-
declare const FilterMultiChoiceEditor: ({ value, options, disabled, readOnly, valueTestId, ...props }: MultiValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1877
|
-
/**
|
|
1878
|
-
* @deprecated beta - Single select filter component
|
|
1879
|
-
* @example <FilterSingleChoiceEditor options={options} value={options.find((option) => values.includes(option.value)} onChange={(e) => onChange(e.value)} />
|
|
1880
|
-
*/
|
|
1881
|
-
declare const FilterSingleChoiceEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: SingleValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1882
|
-
/**
|
|
1883
|
-
* @deprecated beta - Status multi select filter component that renders a custom dropdown menu
|
|
1884
|
-
* @example <StatusMultiEditor options={options} value={value} onChange={onChange} />
|
|
1885
|
-
*/
|
|
1886
|
-
declare const StatusMultiEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: MultiValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1887
|
-
/**
|
|
1888
|
-
* @deprecated beta - Status single select filter component that renders a custom dropdown menu
|
|
1889
|
-
* @example <StatusSingleEditor options={options} value={value} onChange={onChange} />
|
|
1890
|
-
*/
|
|
1891
|
-
declare const StatusSingleEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: SingleValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1892
|
-
/**
|
|
1893
|
-
* @deprecated beta - Renders a text input field for filtering
|
|
1894
|
-
* @example <TextEditor ariaLabel="Search" value={value} onChange={onChange} />
|
|
1895
|
-
*/
|
|
1896
|
-
declare const TextEditor: ({ onChange, ariaLabel, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1897
|
-
/**
|
|
1898
|
-
* @deprecated beta - Renders a number range input field for filtering
|
|
1899
|
-
* @example <NumberRangeEditor ariaLabel="Number Range" value={value} onChange={onChange} />
|
|
1900
|
-
*/
|
|
1901
|
-
declare const NumberRangeEditor: ({ onChange, disabled, ariaLabel, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1902
|
-
/**
|
|
1903
|
-
* @deprecated beta - Renders a number input field for filtering
|
|
1904
|
-
* @example <NumberEditor ariaLabel="Number" value={value} onChange={onChange} />
|
|
1905
|
-
*/
|
|
1906
|
-
declare const NumberEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1907
|
-
/**
|
|
1908
|
-
* @deprecated beta - Renders a date input field for filtering
|
|
1909
|
-
* @example <DateEditor ariaLabel="Date" value={value} onChange={onChange} />
|
|
1910
|
-
*/
|
|
1911
|
-
declare const DateEditor: ({ onChange, ariaLabel, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1912
|
-
/**
|
|
1913
|
-
* @deprecated beta - Renders a date range input field for filtering
|
|
1914
|
-
* @example <DateRangeEditor ariaLabel="Date Range" value={value} onChange={onChange} />
|
|
1915
|
-
*/
|
|
1916
|
-
declare const DateRangeEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1917
|
-
type FilterEditorRendererProps = Pick<FilterOption, 'readOnly' | 'disabled' | 'bindable'> & {
|
|
1918
|
-
/** The type of filter editor to render */
|
|
1919
|
-
editorType: FilterEditor;
|
|
1920
|
-
/** The options for the filter editor */
|
|
1921
|
-
options?: Array<Operator>;
|
|
1922
|
-
/** The value for the filter editor */
|
|
1923
|
-
value?: string | string[] | InputOption[] | InputOption;
|
|
1924
|
-
/** The onChange event for the filter editor */
|
|
1925
|
-
onChange: (e: string) => void;
|
|
1926
|
-
/** Sets the data-testid value */
|
|
1927
|
-
valueTestId?: string;
|
|
1928
|
-
};
|
|
1929
1923
|
/**
|
|
1930
1924
|
* @deprecated beta - Renders a filter editor component
|
|
1931
1925
|
* @example <FilterEditorRenderer editorType="multiChoice" options={options} value={value} onChange={onChange} />
|
|
1932
1926
|
*/
|
|
1933
|
-
declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRendererProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
1927
|
+
declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRendererProps<never>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
1934
1928
|
/** @deprecated beta - A mapper for filter editor components */
|
|
1935
|
-
declare const filterMapper: Record<FilterEditor, ComponentType<any
|
|
1936
|
-
declare const bindableFiltersMapper:
|
|
1937
|
-
multiChoice: React__default.FC<MultiValueComboboxProps>;
|
|
1938
|
-
singleChoice: React__default.FC<SingleValueComboboxProps>;
|
|
1939
|
-
date: React__default.FC<FilterEditorCommonInputProps & {
|
|
1940
|
-
value?: string | undefined;
|
|
1941
|
-
options?: {
|
|
1942
|
-
label: string;
|
|
1943
|
-
value: string;
|
|
1944
|
-
}[] | undefined;
|
|
1945
|
-
}>;
|
|
1946
|
-
text: React__default.FC<FilterEditorCommonInputProps & {
|
|
1947
|
-
value?: string | undefined;
|
|
1948
|
-
options?: {
|
|
1949
|
-
label: string;
|
|
1950
|
-
value: string;
|
|
1951
|
-
}[] | undefined;
|
|
1952
|
-
}>;
|
|
1953
|
-
number: React__default.FC<FilterEditorCommonInputProps & {
|
|
1954
|
-
value?: string | undefined;
|
|
1955
|
-
options?: {
|
|
1956
|
-
label: string;
|
|
1957
|
-
value: string;
|
|
1958
|
-
}[] | undefined;
|
|
1959
|
-
}>;
|
|
1960
|
-
dateRange: React__default.ComponentType<any> | null;
|
|
1961
|
-
empty: React__default.ComponentType<any> | null;
|
|
1962
|
-
numberRange: React__default.ComponentType<any> | null;
|
|
1963
|
-
statusMultiChoice: React__default.ComponentType<any> | null;
|
|
1964
|
-
statusSingleChoice: React__default.ComponentType<any> | null;
|
|
1965
|
-
};
|
|
1929
|
+
declare const filterMapper: Record<FilterEditor, ComponentType<FilterEditorRendererProps<any>> | null>;
|
|
1930
|
+
declare const bindableFiltersMapper: typeof filterMapper;
|
|
1966
1931
|
|
|
1967
1932
|
type FilterMapper = Record<string, ComponentType<any> | null>;
|
|
1968
1933
|
type SearchAndFilterProviderProps = {
|
|
@@ -2103,7 +2068,7 @@ type FilterRowProps = {
|
|
|
2103
2068
|
/** function to trigger operator change events */
|
|
2104
2069
|
onOperatorChange: (e: string) => void;
|
|
2105
2070
|
/** function to trigger value change events */
|
|
2106
|
-
onValueChange: (e: string) => void;
|
|
2071
|
+
onValueChange: (e: string | string[]) => void;
|
|
2107
2072
|
/** the list of value options for each filter row */
|
|
2108
2073
|
valueOptions: InputOption[];
|
|
2109
2074
|
};
|
|
@@ -2263,4 +2228,4 @@ type ContentDataResourceLocaleInfoProps = {
|
|
|
2263
2228
|
};
|
|
2264
2229
|
declare function useContentDataResourceLocaleInfo({ locale, setLocale, dynamicInputs, }: ContentDataResourceLocaleInfoProps): ContentDataResourceLocaleInfoResult;
|
|
2265
2230
|
|
|
2266
|
-
export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, CHECKBOX_OPERATORS, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledValuePlugin, DATE_OPERATORS, DISCONNECT_VARIABLE_COMMAND, type DamItem, DamSelectedItem, type DamSelectedItemProps, DataRefreshButton, type DataRefreshButtonProps, DataResourceDynamicInputProvider, type DataResourceDynamicInputProviderProps, type DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListExplicit, type DataResourceVariablesListProps, DataSourceEditor, type DataSourceEditorProps, DataTypeEditor, type DataTypeEditorProps, type DataVariableDefinitionWithName, DateEditor, DateRangeEditor, DefaultSearchRow, DefaultSelectedItem, type DisconnectVariableCommandArguments, type DispatchResult, EDIT_VARIABLE_COMMAND, type EditVariableCommandArguments, EntrySearch, type EntrySearchContentType, type EntrySearchProps, type EntrySearchQueryOptions, type EntrySearchResult, type EntrySearchRowProps, type EntrySearchSelectedItemProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor,
|
|
2231
|
+
export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, CHECKBOX_OPERATORS, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledValuePlugin, DATE_OPERATORS, DISCONNECT_VARIABLE_COMMAND, type DamItem, DamSelectedItem, type DamSelectedItemProps, DataRefreshButton, type DataRefreshButtonProps, DataResourceDynamicInputProvider, type DataResourceDynamicInputProviderProps, type DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListExplicit, type DataResourceVariablesListProps, DataSourceEditor, type DataSourceEditorProps, DataTypeEditor, type DataTypeEditorProps, type DataVariableDefinitionWithName, DateEditor, DateRangeEditor, DefaultSearchRow, DefaultSelectedItem, type DisconnectVariableCommandArguments, type DispatchResult, EDIT_VARIABLE_COMMAND, type EditVariableCommandArguments, EntrySearch, type EntrySearchContentType, type EntrySearchProps, type EntrySearchQueryOptions, type EntrySearchResult, type EntrySearchRowProps, type EntrySearchSelectedItemProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor, FilterEditorRenderer, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, type GetProductOptions, type GetProductsOptions, INSERT_VARIABLE_COMMAND, index as Icons, type InputOption, InputVariables, type InputVariablesProps, type InsertVariableCommandArguments, type ItemListProps, type KnownUndefinedVariableInfo, type KnownUndefinedVariableInfoWithName, LinkButton, MULTI_SELECT_OPERATORS, MeshApp, type MeshAppProps, type MeshDataVariableDefinition, NUMBER_OPERATORS, type NoResultsProps, NumberEditor, NumberRangeEditor, OPEN_INSERT_VARIABLE_COMMAND, ObjectSearchContainer, type ObjectSearchContainerProps, type ObjectSearchContextProps, ObjectSearchFilter, ObjectSearchFilterContainer, type ObjectSearchFilterContainerProps, type ObjectSearchFilterProps, ObjectSearchListItem, ObjectSearchListItemLoadingSkeleton, type ObjectSearchListItemProps, ObjectSearchProvider, type ObjectSearchProviderProps, ObjectSearchResultItem, ObjectSearchResultItemButton, type ObjectSearchResultItemButtonProps, type ObjectSearchResultItemProps, ObjectSearchResultList, type ObjectSearchResultListProps, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, ParamTypeDynamicDataProvider, type ParamTypeDynamicDataProviderProps, type ParameterConnectOptions, ParameterConnectionIndicator, type ParameterConnectionIndicatorProps, ParameterOrSingleVariable, type ParameterOrSingleVariableProps, ParameterVariables, type ParameterVariablesProps, type ProductCategory, type ProductDynamicSelectorValue, ProductPreviewList, ProductQuery, type ProductQueryCategory, ProductQueryContext, type ProductQueryContextValue, type ProductQueryProps, ProductSearch, ProductSearchContext, type ProductSearchContextValue, type ProductSearchProps, type ProductSearchResult, type ProductSearchResults, ProductSearchRow, ProductSelectedItem, QueryFilter, type QueryFilterProps, type QueryFilterSearchProps, RICHTEXT_OPERATORS, type RequestAction, RequestBody, type RequestContext, type RequestData, RequestHeaders, RequestMethodSelect, type RequestParameter, RequestParameters, type RequestParametersProps, RequestProvider, type RequestProviderProps, RequestTypeContainer, type RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, SELECT_OPERATORS, SYSTEM_DATE_OPERATORS, SYSTEM_FIELD_OPERATORS, SearchAndFilter, SearchAndFilterContext, type SearchAndFilterContextProps, SearchAndFilterOptionsContainer, type SearchAndFilterOptionsContainerProps, type SearchAndFilterProps, SearchAndFilterProvider, type SearchAndFilterProviderProps, SearchAndFilterResultContainer, type SearchAndFilterResultContainerProps, SearchOnlyContext, SearchOnlyFilter, type SearchOnlyProviderProps, type SearchQueryProps, type SelectedItemProps, SelectionField, type SelectionFieldValue, type SerializedVariableNode, type SetLocationValueDispatch, type SetLocationValueFunction, SortItems, type SortItemsProps, StatusMultiEditor, StatusSingleEditor, TEXTBOX_OPERATORS, TextEditor, TextVariableRenderer, USER_OPERATORS, type UseVariablesMenu, type UseVariablesMenuInput, VariableEditor, type VariableEditorCompleteEvent, type VariableEditorProps, VariableNode, type VariableNodeState, type VariableSourceGroup, type VariablesAction, type VariablesContext, type VariablesEvents, VariablesList, VariablesPlugin, type VariablesPluginProps, VariablesProvider, type VariablesProviderProps, badgeIcon, bindableFiltersMapper, convertConnectedDataToVariable, 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, filterMapper, hasReferencedVariables, prettifyBindExpression, 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, serializeVariablesEditorState, setVariablesEditorValue, urlEncodeRequestParameter, urlEncodeRequestUrl, useConnectedDataAsVariables, useContentDataResourceLocaleInfo, useDynamicInputsAsVariables, useMeshLocation, useObjectSearchContext, useProductQueryContext, useProductSearchContext, useRequest, useRequestHeader, useRequestParameter, useSearchAndFilter, useUniformMeshSdk, useVariableEditor, useVariables, useVariablesMenu, variableDefaultTextValue, variablePrefix, variableSuffix, variablesToGroupedList, variablesToList };
|