@uniformdev/mesh-sdk-react 19.116.2-alpha.0 → 19.117.1-alpha.1

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 CHANGED
@@ -391,6 +391,8 @@ type DataResourceDynamicInputProviderProps = {
391
391
  /** Child components of the provider. Variables-using components, such as InputVariables, can be used here. */
392
392
  children: ReactNode;
393
393
  };
394
+ declare const DataResourceInputContext: React$1.Context<DynamicInputs | undefined>;
395
+ declare const useDataResourceDynamicInputs: () => DynamicInputs | undefined;
394
396
  /**
395
397
  * Wrapper for data resource locations. Provides read-only access to dynamic inputs as if they were variables,
396
398
  * using variables-aware components (i.e. InputVariables). This simplifies building dynamic-input-aware editors,
@@ -903,8 +905,9 @@ type VariableEditorProps<TEditorContext = unknown, TEditVariableCompletedContext
903
905
  onCancel: (context: TEditVariableCancelledContext) => void;
904
906
  context: TEditorContext | undefined;
905
907
  disableAutoFocusOnMount?: boolean;
908
+ showDisplayName?: boolean;
906
909
  };
907
- declare function VariableEditor({ variable, onSubmit, onCancel, disableMeshTip, }: VariableEditorProps<any, unknown, EditConnectedDataResponseCancellationContext>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
910
+ declare function VariableEditor({ variable, onSubmit, onCancel, showDisplayName, disableMeshTip, }: VariableEditorProps<any, unknown, EditConnectedDataResponseCancellationContext>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
908
911
 
909
912
  type VariablesProviderProps<TEditVariableContext = unknown, TEditVariableCompletedContext = unknown, TEditVariableCancelledContext = unknown> = React.PropsWithChildren<{
910
913
  /**
@@ -1188,54 +1191,6 @@ type ObjectSearchContainerProps = {
1188
1191
  * @example <ObjectSearchContainer searchFilters={<>your component</>} resultList={<>your result list component<>} onSave={yourSaveAction} onCancel={yourCancelAction} /> */
1189
1192
  declare const ObjectSearchContainer: ({ label, enableDynamicInputToResultId, searchFilters, resultList, children, }: ObjectSearchContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1190
1193
 
1191
- type ObjectSearchFilterProps = {
1192
- /** shows or hides the required content type select option */
1193
- requireContentType?: boolean;
1194
- /** sets the text for the required content type select option
1195
- * @default 'All content types'
1196
- */
1197
- typeSelectorAllTypesOptionText?: string;
1198
- /** sets the select input value label text
1199
- * @default 'Content Type Select'
1200
- */
1201
- selectLabel?: string;
1202
- /** sets the select input options, if empty - only keyword search field will be rendered */
1203
- selectOptions?: Array<{
1204
- id?: string;
1205
- name?: string;
1206
- label: string;
1207
- value?: string;
1208
- }>;
1209
- /** sets the search input name value
1210
- * @default 'searchText'
1211
- */
1212
- searchInputName?: string;
1213
- /** sets the search input placeholder text
1214
- * @default 'Enter keyword to narrow your results'
1215
- */
1216
- searchInputPlaceholderText?: string;
1217
- };
1218
- /**
1219
- * @description Object search filter is an opinionated filter that has pre-defined query and setQuery functions
1220
- * that can be extended with custom functions
1221
- * @example <ObjectSearchFilter selectOptions={[{ id: 'id value', name: 'name value'}]} /> */
1222
- declare const ObjectSearchFilter: ({ requireContentType, typeSelectorAllTypesOptionText, searchInputName, searchInputPlaceholderText, selectLabel, selectOptions, }: ObjectSearchFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1223
-
1224
- type ObjectSearchFilterContainerProps = {
1225
- /**
1226
- * sets the title for the container
1227
- * @deprecated we recommend setting the label on ObjectSearchContainer instead
1228
- */
1229
- label?: string;
1230
- /** sets child components in an opinionated layout */
1231
- children?: React.ReactNode;
1232
- };
1233
- /**
1234
- * @description an opinionated layout for search filters
1235
- * @example <ObjectSearchFilterContainer label="my label"><input type="text" aria-label="my input" /></ObjectSearchFilterContainer>
1236
- */
1237
- declare const ObjectSearchFilterContainer: ({ label, children }: ObjectSearchFilterContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1238
-
1239
1194
  type SearchQueryProps<TExtraFilters = unknown> = {
1240
1195
  /** sets the content type in the search context */
1241
1196
  contentType?: string;
@@ -1243,6 +1198,7 @@ type SearchQueryProps<TExtraFilters = unknown> = {
1243
1198
  keyword?: string;
1244
1199
  /** sets the locale in the search context */
1245
1200
  locale?: string;
1201
+ dynamicEntryId?: string;
1246
1202
  } & TExtraFilters;
1247
1203
  type SelectedItemProps<TExtraProps = unknown> = {
1248
1204
  /** sets the id value */
@@ -1312,18 +1268,91 @@ type ObjectSearchContextProps<TExtraFilters = unknown, TExtraItemProps = unknown
1312
1268
  /** current list of results in state */
1313
1269
  list: ItemListProps<TExtraItemProps>;
1314
1270
  /** function that sets the list of items to state */
1315
- onSetList: (value: ItemListProps) => void;
1271
+ onSetList?: (value: ItemListProps) => void;
1316
1272
  /** is multi items selection allowed or not */
1317
1273
  isMulti: boolean;
1274
+ localeOptions?: {
1275
+ label: string;
1276
+ value: string;
1277
+ }[];
1278
+ enableFilterByLocale?: boolean;
1279
+ isListLoading?: boolean;
1280
+ isSelectedItemsListLoading?: boolean;
1281
+ dynamicEntryId?: string;
1318
1282
  };
1283
+ declare const ObjectSearchContext: React$1.Context<ObjectSearchContextProps<unknown, unknown>>;
1319
1284
  type ObjectSearchProviderProps = {
1320
1285
  children: ReactNode;
1321
1286
  currentlySelectedItems?: Array<SelectedItemProps>;
1287
+ searchResultList?: Array<SelectedItemProps>;
1322
1288
  isMulti?: boolean;
1323
1289
  defaultQuery?: SearchQueryProps;
1324
1290
  };
1325
1291
  declare const ObjectSearchProvider: ({ currentlySelectedItems, isMulti, children, defaultQuery, }: ObjectSearchProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1326
1292
  declare function useObjectSearchContext<TExtraSearchFilters = unknown, TExtraItemProps = unknown>(): ObjectSearchContextProps<TExtraSearchFilters, TExtraItemProps>;
1293
+ declare function bindQuery(query: SearchQueryProps, inputs: Record<string, unknown>): {
1294
+ /** sets the content type in the search context */
1295
+ contentType?: string | undefined;
1296
+ /** sets the keyword search in the search context */
1297
+ keyword?: string | undefined;
1298
+ /** sets the locale in the search context */
1299
+ locale?: string | undefined;
1300
+ dynamicEntryId?: string | undefined;
1301
+ };
1302
+
1303
+ type ObjectSearchFilterProps = {
1304
+ /** shows or hides the required content type select option */
1305
+ requireContentType?: boolean;
1306
+ /** sets the text for the required content type select option
1307
+ * @default 'All content types'
1308
+ */
1309
+ typeSelectorAllTypesOptionText?: string;
1310
+ /** sets the select input value label text
1311
+ * @default 'Content Type Select'
1312
+ */
1313
+ selectLabel?: string;
1314
+ /** sets the select input options, if empty - only keyword search field will be rendered */
1315
+ selectOptions?: Array<{
1316
+ id?: string;
1317
+ name?: string;
1318
+ label: string;
1319
+ value?: string;
1320
+ }>;
1321
+ /** sets the search input name value
1322
+ * @default 'searchText'
1323
+ */
1324
+ searchInputName?: string;
1325
+ /** sets the search input placeholder text
1326
+ * @default 'Enter keyword to narrow your results'
1327
+ */
1328
+ searchInputPlaceholderText?: string;
1329
+ /** sets the label for the locale selectbox filter */
1330
+ localeFilterLabel?: string;
1331
+ /** sets the locale options for the locale selectbox filter */
1332
+ localeOptions?: ObjectSearchContextProps['localeOptions'];
1333
+ /** enables or disables the locale filter */
1334
+ enableFilterByLocale?: ObjectSearchContextProps['enableFilterByLocale'];
1335
+ };
1336
+ /**
1337
+ * @description Object search filter is an opinionated filter that has pre-defined query and setQuery functions
1338
+ * that can be extended with custom functions
1339
+ * @example <ObjectSearchFilter selectOptions={[{ id: 'id value', name: 'name value'}]} /> */
1340
+ declare const ObjectSearchFilter: ({ requireContentType, typeSelectorAllTypesOptionText, searchInputName, searchInputPlaceholderText, selectLabel, localeFilterLabel, selectOptions, }: ObjectSearchFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1341
+
1342
+ type ObjectSearchFilterContainerProps = {
1343
+ /**
1344
+ * sets the title for the container
1345
+ * @deprecated we recommend setting the label on ObjectSearchContainer instead
1346
+ */
1347
+ label?: string;
1348
+ /** sets child components in an opinionated layout */
1349
+ children?: React.ReactNode;
1350
+ };
1351
+ /**
1352
+ * @description an opinionated layout for search filters
1353
+ * @example <ObjectSearchFilterContainer label="my label"><input type="text" aria-label="my input" /></ObjectSearchFilterContainer>
1354
+ */
1355
+ declare const ObjectSearchFilterContainer: ({ label, children }: ObjectSearchFilterContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1327
1356
 
1328
1357
  type ObjectSearchListItemProps = SelectedItemProps & {
1329
1358
  /** sets the content type value, this is normally used for subtitles e.g. Kitchens */
@@ -1529,6 +1558,23 @@ type QueryFilterProps<TSelectOptions extends QueryFilterSelectionOptionProps = Q
1529
1558
  */
1530
1559
  declare const QueryFilter: ({ requireContentType, queryFilterTitle, contentTypeLabel, typeSelectorAllTypesOptionText, contentTypeOptions, searchInputName, searchInputPlaceholderText, searchInputLabel, countLabel, countValue, sortLabel, sortOptions, sortOrderLabel, sortOrderOptions, children, }: QueryFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1531
1560
 
1561
+ type ControlledObjectSearchProviderProps = {
1562
+ children: ReactNode;
1563
+ selectedItems: Array<SelectedItemProps> | undefined;
1564
+ searchResultItems: Array<SelectedItemProps> | undefined;
1565
+ selectedItemsLoading?: boolean;
1566
+ searchResultItemsLoading?: boolean;
1567
+ searchResultListLoading?: boolean;
1568
+ onQueryChange: (value: SearchQueryProps) => void;
1569
+ onSelectItemsChange: (selectedItems: Array<SelectedItemProps>) => void;
1570
+ isMulti?: boolean;
1571
+ query: SearchQueryProps;
1572
+ localeOptions?: ObjectSearchContextProps['localeOptions'];
1573
+ enableFilterByLocale?: ObjectSearchContextProps['enableFilterByLocale'];
1574
+ dynamicEntryId?: ObjectSearchContextProps['dynamicEntryId'];
1575
+ };
1576
+ declare const ControlledObjectSearchProvider: ({ selectedItems, searchResultItems, selectedItemsLoading, searchResultListLoading, searchResultItemsLoading, onQueryChange, onSelectItemsChange, isMulti, children, query, enableFilterByLocale, localeOptions, dynamicEntryId, }: ControlledObjectSearchProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1577
+
1532
1578
  type ParamTypeDynamicDataProviderProps = {
1533
1579
  /** Child components of the provider. Variables-using components, such as ParameterVariables, can be used here. */
1534
1580
  children: ReactNode;
@@ -1720,4 +1766,4 @@ type ContentDataResourceLocaleInfoProps = {
1720
1766
  };
1721
1767
  declare function useContentDataResourceLocaleInfo({ locale, setLocale, dynamicInputs, }: ContentDataResourceLocaleInfoProps): ContentDataResourceLocaleInfoResult;
1722
1768
 
1723
- export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledValuePlugin, 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, 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 GetProductOptions, type GetProductsOptions, INSERT_VARIABLE_COMMAND, index as Icons, InputVariables, type InputVariablesProps, type InsertVariableCommandArguments, type ItemListProps, type KnownUndefinedVariableInfo, LinkButton, MeshApp, type MeshAppProps, type MeshDataVariableDefinition, type NoResultsProps, 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, 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, type RequestAction, RequestBody, type RequestContext, type RequestData, RequestHeaders, RequestMethodSelect, type RequestParameter, RequestParameters, type RequestParametersProps, RequestProvider, type RequestProviderProps, RequestTypeContainer, type RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, type SearchQueryProps, type SelectedItemProps, SelectionField, type SelectionFieldValue, type SerializedVariableNode, type SetLocationValueDispatch, type SetLocationValueFunction, TextVariableRenderer, 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, 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, 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, useUniformMeshSdk, useVariableEditor, useVariables, useVariablesMenu, variableDefaultTextValue, variablePrefix, variableSuffix, variablesToGroupedList, variablesToList };
1769
+ export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledObjectSearchProvider, type ControlledObjectSearchProviderProps, ControlledValuePlugin, DISCONNECT_VARIABLE_COMMAND, type DamItem, DamSelectedItem, type DamSelectedItemProps, DataRefreshButton, type DataRefreshButtonProps, DataResourceDynamicInputProvider, type DataResourceDynamicInputProviderProps, DataResourceInputContext, type DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListExplicit, type DataResourceVariablesListProps, DataSourceEditor, type DataSourceEditorProps, DataTypeEditor, type DataTypeEditorProps, type DataVariableDefinitionWithName, 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 GetProductOptions, type GetProductsOptions, INSERT_VARIABLE_COMMAND, index as Icons, InputVariables, type InputVariablesProps, type InsertVariableCommandArguments, type ItemListProps, type KnownUndefinedVariableInfo, LinkButton, MeshApp, type MeshAppProps, type MeshDataVariableDefinition, type NoResultsProps, OPEN_INSERT_VARIABLE_COMMAND, ObjectSearchContainer, type ObjectSearchContainerProps, ObjectSearchContext, type ObjectSearchContextProps, ObjectSearchFilter, ObjectSearchFilterContainer, type ObjectSearchFilterContainerProps, type ObjectSearchFilterProps, ObjectSearchListItem, ObjectSearchListItemLoadingSkeleton, type ObjectSearchListItemProps, ObjectSearchProvider, type ObjectSearchProviderProps, ObjectSearchResultItem, ObjectSearchResultItemButton, type ObjectSearchResultItemButtonProps, type ObjectSearchResultItemProps, ObjectSearchResultList, type ObjectSearchResultListProps, 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, type RequestAction, RequestBody, type RequestContext, type RequestData, RequestHeaders, RequestMethodSelect, type RequestParameter, RequestParameters, type RequestParametersProps, RequestProvider, type RequestProviderProps, RequestTypeContainer, type RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, type SearchQueryProps, type SelectedItemProps, SelectionField, type SelectionFieldValue, type SerializedVariableNode, type SetLocationValueDispatch, type SetLocationValueFunction, TextVariableRenderer, 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, bindQuery, 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, 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, useDataResourceDynamicInputs, useDynamicInputsAsVariables, useMeshLocation, useObjectSearchContext, useProductQueryContext, useProductSearchContext, useRequest, useRequestHeader, useRequestParameter, useUniformMeshSdk, useVariableEditor, useVariables, useVariablesMenu, variableDefaultTextValue, variablePrefix, variableSuffix, variablesToGroupedList, variablesToList };
package/dist/index.d.ts CHANGED
@@ -391,6 +391,8 @@ type DataResourceDynamicInputProviderProps = {
391
391
  /** Child components of the provider. Variables-using components, such as InputVariables, can be used here. */
392
392
  children: ReactNode;
393
393
  };
394
+ declare const DataResourceInputContext: React$1.Context<DynamicInputs | undefined>;
395
+ declare const useDataResourceDynamicInputs: () => DynamicInputs | undefined;
394
396
  /**
395
397
  * Wrapper for data resource locations. Provides read-only access to dynamic inputs as if they were variables,
396
398
  * using variables-aware components (i.e. InputVariables). This simplifies building dynamic-input-aware editors,
@@ -903,8 +905,9 @@ type VariableEditorProps<TEditorContext = unknown, TEditVariableCompletedContext
903
905
  onCancel: (context: TEditVariableCancelledContext) => void;
904
906
  context: TEditorContext | undefined;
905
907
  disableAutoFocusOnMount?: boolean;
908
+ showDisplayName?: boolean;
906
909
  };
907
- declare function VariableEditor({ variable, onSubmit, onCancel, disableMeshTip, }: VariableEditorProps<any, unknown, EditConnectedDataResponseCancellationContext>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
910
+ declare function VariableEditor({ variable, onSubmit, onCancel, showDisplayName, disableMeshTip, }: VariableEditorProps<any, unknown, EditConnectedDataResponseCancellationContext>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
908
911
 
909
912
  type VariablesProviderProps<TEditVariableContext = unknown, TEditVariableCompletedContext = unknown, TEditVariableCancelledContext = unknown> = React.PropsWithChildren<{
910
913
  /**
@@ -1188,54 +1191,6 @@ type ObjectSearchContainerProps = {
1188
1191
  * @example <ObjectSearchContainer searchFilters={<>your component</>} resultList={<>your result list component<>} onSave={yourSaveAction} onCancel={yourCancelAction} /> */
1189
1192
  declare const ObjectSearchContainer: ({ label, enableDynamicInputToResultId, searchFilters, resultList, children, }: ObjectSearchContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1190
1193
 
1191
- type ObjectSearchFilterProps = {
1192
- /** shows or hides the required content type select option */
1193
- requireContentType?: boolean;
1194
- /** sets the text for the required content type select option
1195
- * @default 'All content types'
1196
- */
1197
- typeSelectorAllTypesOptionText?: string;
1198
- /** sets the select input value label text
1199
- * @default 'Content Type Select'
1200
- */
1201
- selectLabel?: string;
1202
- /** sets the select input options, if empty - only keyword search field will be rendered */
1203
- selectOptions?: Array<{
1204
- id?: string;
1205
- name?: string;
1206
- label: string;
1207
- value?: string;
1208
- }>;
1209
- /** sets the search input name value
1210
- * @default 'searchText'
1211
- */
1212
- searchInputName?: string;
1213
- /** sets the search input placeholder text
1214
- * @default 'Enter keyword to narrow your results'
1215
- */
1216
- searchInputPlaceholderText?: string;
1217
- };
1218
- /**
1219
- * @description Object search filter is an opinionated filter that has pre-defined query and setQuery functions
1220
- * that can be extended with custom functions
1221
- * @example <ObjectSearchFilter selectOptions={[{ id: 'id value', name: 'name value'}]} /> */
1222
- declare const ObjectSearchFilter: ({ requireContentType, typeSelectorAllTypesOptionText, searchInputName, searchInputPlaceholderText, selectLabel, selectOptions, }: ObjectSearchFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1223
-
1224
- type ObjectSearchFilterContainerProps = {
1225
- /**
1226
- * sets the title for the container
1227
- * @deprecated we recommend setting the label on ObjectSearchContainer instead
1228
- */
1229
- label?: string;
1230
- /** sets child components in an opinionated layout */
1231
- children?: React.ReactNode;
1232
- };
1233
- /**
1234
- * @description an opinionated layout for search filters
1235
- * @example <ObjectSearchFilterContainer label="my label"><input type="text" aria-label="my input" /></ObjectSearchFilterContainer>
1236
- */
1237
- declare const ObjectSearchFilterContainer: ({ label, children }: ObjectSearchFilterContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1238
-
1239
1194
  type SearchQueryProps<TExtraFilters = unknown> = {
1240
1195
  /** sets the content type in the search context */
1241
1196
  contentType?: string;
@@ -1243,6 +1198,7 @@ type SearchQueryProps<TExtraFilters = unknown> = {
1243
1198
  keyword?: string;
1244
1199
  /** sets the locale in the search context */
1245
1200
  locale?: string;
1201
+ dynamicEntryId?: string;
1246
1202
  } & TExtraFilters;
1247
1203
  type SelectedItemProps<TExtraProps = unknown> = {
1248
1204
  /** sets the id value */
@@ -1312,18 +1268,91 @@ type ObjectSearchContextProps<TExtraFilters = unknown, TExtraItemProps = unknown
1312
1268
  /** current list of results in state */
1313
1269
  list: ItemListProps<TExtraItemProps>;
1314
1270
  /** function that sets the list of items to state */
1315
- onSetList: (value: ItemListProps) => void;
1271
+ onSetList?: (value: ItemListProps) => void;
1316
1272
  /** is multi items selection allowed or not */
1317
1273
  isMulti: boolean;
1274
+ localeOptions?: {
1275
+ label: string;
1276
+ value: string;
1277
+ }[];
1278
+ enableFilterByLocale?: boolean;
1279
+ isListLoading?: boolean;
1280
+ isSelectedItemsListLoading?: boolean;
1281
+ dynamicEntryId?: string;
1318
1282
  };
1283
+ declare const ObjectSearchContext: React$1.Context<ObjectSearchContextProps<unknown, unknown>>;
1319
1284
  type ObjectSearchProviderProps = {
1320
1285
  children: ReactNode;
1321
1286
  currentlySelectedItems?: Array<SelectedItemProps>;
1287
+ searchResultList?: Array<SelectedItemProps>;
1322
1288
  isMulti?: boolean;
1323
1289
  defaultQuery?: SearchQueryProps;
1324
1290
  };
1325
1291
  declare const ObjectSearchProvider: ({ currentlySelectedItems, isMulti, children, defaultQuery, }: ObjectSearchProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1326
1292
  declare function useObjectSearchContext<TExtraSearchFilters = unknown, TExtraItemProps = unknown>(): ObjectSearchContextProps<TExtraSearchFilters, TExtraItemProps>;
1293
+ declare function bindQuery(query: SearchQueryProps, inputs: Record<string, unknown>): {
1294
+ /** sets the content type in the search context */
1295
+ contentType?: string | undefined;
1296
+ /** sets the keyword search in the search context */
1297
+ keyword?: string | undefined;
1298
+ /** sets the locale in the search context */
1299
+ locale?: string | undefined;
1300
+ dynamicEntryId?: string | undefined;
1301
+ };
1302
+
1303
+ type ObjectSearchFilterProps = {
1304
+ /** shows or hides the required content type select option */
1305
+ requireContentType?: boolean;
1306
+ /** sets the text for the required content type select option
1307
+ * @default 'All content types'
1308
+ */
1309
+ typeSelectorAllTypesOptionText?: string;
1310
+ /** sets the select input value label text
1311
+ * @default 'Content Type Select'
1312
+ */
1313
+ selectLabel?: string;
1314
+ /** sets the select input options, if empty - only keyword search field will be rendered */
1315
+ selectOptions?: Array<{
1316
+ id?: string;
1317
+ name?: string;
1318
+ label: string;
1319
+ value?: string;
1320
+ }>;
1321
+ /** sets the search input name value
1322
+ * @default 'searchText'
1323
+ */
1324
+ searchInputName?: string;
1325
+ /** sets the search input placeholder text
1326
+ * @default 'Enter keyword to narrow your results'
1327
+ */
1328
+ searchInputPlaceholderText?: string;
1329
+ /** sets the label for the locale selectbox filter */
1330
+ localeFilterLabel?: string;
1331
+ /** sets the locale options for the locale selectbox filter */
1332
+ localeOptions?: ObjectSearchContextProps['localeOptions'];
1333
+ /** enables or disables the locale filter */
1334
+ enableFilterByLocale?: ObjectSearchContextProps['enableFilterByLocale'];
1335
+ };
1336
+ /**
1337
+ * @description Object search filter is an opinionated filter that has pre-defined query and setQuery functions
1338
+ * that can be extended with custom functions
1339
+ * @example <ObjectSearchFilter selectOptions={[{ id: 'id value', name: 'name value'}]} /> */
1340
+ declare const ObjectSearchFilter: ({ requireContentType, typeSelectorAllTypesOptionText, searchInputName, searchInputPlaceholderText, selectLabel, localeFilterLabel, selectOptions, }: ObjectSearchFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1341
+
1342
+ type ObjectSearchFilterContainerProps = {
1343
+ /**
1344
+ * sets the title for the container
1345
+ * @deprecated we recommend setting the label on ObjectSearchContainer instead
1346
+ */
1347
+ label?: string;
1348
+ /** sets child components in an opinionated layout */
1349
+ children?: React.ReactNode;
1350
+ };
1351
+ /**
1352
+ * @description an opinionated layout for search filters
1353
+ * @example <ObjectSearchFilterContainer label="my label"><input type="text" aria-label="my input" /></ObjectSearchFilterContainer>
1354
+ */
1355
+ declare const ObjectSearchFilterContainer: ({ label, children }: ObjectSearchFilterContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1327
1356
 
1328
1357
  type ObjectSearchListItemProps = SelectedItemProps & {
1329
1358
  /** sets the content type value, this is normally used for subtitles e.g. Kitchens */
@@ -1529,6 +1558,23 @@ type QueryFilterProps<TSelectOptions extends QueryFilterSelectionOptionProps = Q
1529
1558
  */
1530
1559
  declare const QueryFilter: ({ requireContentType, queryFilterTitle, contentTypeLabel, typeSelectorAllTypesOptionText, contentTypeOptions, searchInputName, searchInputPlaceholderText, searchInputLabel, countLabel, countValue, sortLabel, sortOptions, sortOrderLabel, sortOrderOptions, children, }: QueryFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1531
1560
 
1561
+ type ControlledObjectSearchProviderProps = {
1562
+ children: ReactNode;
1563
+ selectedItems: Array<SelectedItemProps> | undefined;
1564
+ searchResultItems: Array<SelectedItemProps> | undefined;
1565
+ selectedItemsLoading?: boolean;
1566
+ searchResultItemsLoading?: boolean;
1567
+ searchResultListLoading?: boolean;
1568
+ onQueryChange: (value: SearchQueryProps) => void;
1569
+ onSelectItemsChange: (selectedItems: Array<SelectedItemProps>) => void;
1570
+ isMulti?: boolean;
1571
+ query: SearchQueryProps;
1572
+ localeOptions?: ObjectSearchContextProps['localeOptions'];
1573
+ enableFilterByLocale?: ObjectSearchContextProps['enableFilterByLocale'];
1574
+ dynamicEntryId?: ObjectSearchContextProps['dynamicEntryId'];
1575
+ };
1576
+ declare const ControlledObjectSearchProvider: ({ selectedItems, searchResultItems, selectedItemsLoading, searchResultListLoading, searchResultItemsLoading, onQueryChange, onSelectItemsChange, isMulti, children, query, enableFilterByLocale, localeOptions, dynamicEntryId, }: ControlledObjectSearchProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1577
+
1532
1578
  type ParamTypeDynamicDataProviderProps = {
1533
1579
  /** Child components of the provider. Variables-using components, such as ParameterVariables, can be used here. */
1534
1580
  children: ReactNode;
@@ -1720,4 +1766,4 @@ type ContentDataResourceLocaleInfoProps = {
1720
1766
  };
1721
1767
  declare function useContentDataResourceLocaleInfo({ locale, setLocale, dynamicInputs, }: ContentDataResourceLocaleInfoProps): ContentDataResourceLocaleInfoResult;
1722
1768
 
1723
- export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledValuePlugin, 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, 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 GetProductOptions, type GetProductsOptions, INSERT_VARIABLE_COMMAND, index as Icons, InputVariables, type InputVariablesProps, type InsertVariableCommandArguments, type ItemListProps, type KnownUndefinedVariableInfo, LinkButton, MeshApp, type MeshAppProps, type MeshDataVariableDefinition, type NoResultsProps, 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, 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, type RequestAction, RequestBody, type RequestContext, type RequestData, RequestHeaders, RequestMethodSelect, type RequestParameter, RequestParameters, type RequestParametersProps, RequestProvider, type RequestProviderProps, RequestTypeContainer, type RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, type SearchQueryProps, type SelectedItemProps, SelectionField, type SelectionFieldValue, type SerializedVariableNode, type SetLocationValueDispatch, type SetLocationValueFunction, TextVariableRenderer, 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, 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, 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, useUniformMeshSdk, useVariableEditor, useVariables, useVariablesMenu, variableDefaultTextValue, variablePrefix, variableSuffix, variablesToGroupedList, variablesToList };
1769
+ export { $createVariableNode, $isVariableNode, type BaseRequestData, type Brand, type ContentDataResourceLocaleInfoProps, type ContentDataResourceLocaleInfoResult, ControlledObjectSearchProvider, type ControlledObjectSearchProviderProps, ControlledValuePlugin, DISCONNECT_VARIABLE_COMMAND, type DamItem, DamSelectedItem, type DamSelectedItemProps, DataRefreshButton, type DataRefreshButtonProps, DataResourceDynamicInputProvider, type DataResourceDynamicInputProviderProps, DataResourceInputContext, type DataResourceVariableRendererProps, DataResourceVariablesList, DataResourceVariablesListExplicit, type DataResourceVariablesListProps, DataSourceEditor, type DataSourceEditorProps, DataTypeEditor, type DataTypeEditorProps, type DataVariableDefinitionWithName, 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 GetProductOptions, type GetProductsOptions, INSERT_VARIABLE_COMMAND, index as Icons, InputVariables, type InputVariablesProps, type InsertVariableCommandArguments, type ItemListProps, type KnownUndefinedVariableInfo, LinkButton, MeshApp, type MeshAppProps, type MeshDataVariableDefinition, type NoResultsProps, OPEN_INSERT_VARIABLE_COMMAND, ObjectSearchContainer, type ObjectSearchContainerProps, ObjectSearchContext, type ObjectSearchContextProps, ObjectSearchFilter, ObjectSearchFilterContainer, type ObjectSearchFilterContainerProps, type ObjectSearchFilterProps, ObjectSearchListItem, ObjectSearchListItemLoadingSkeleton, type ObjectSearchListItemProps, ObjectSearchProvider, type ObjectSearchProviderProps, ObjectSearchResultItem, ObjectSearchResultItemButton, type ObjectSearchResultItemButtonProps, type ObjectSearchResultItemProps, ObjectSearchResultList, type ObjectSearchResultListProps, 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, type RequestAction, RequestBody, type RequestContext, type RequestData, RequestHeaders, RequestMethodSelect, type RequestParameter, RequestParameters, type RequestParametersProps, RequestProvider, type RequestProviderProps, RequestTypeContainer, type RequestTypeContainerProps, RequestUrl, RequestUrlInput, ResolvableLoadingValue, type SearchQueryProps, type SelectedItemProps, SelectionField, type SelectionFieldValue, type SerializedVariableNode, type SetLocationValueDispatch, type SetLocationValueFunction, TextVariableRenderer, 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, bindQuery, 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, 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, useDataResourceDynamicInputs, useDynamicInputsAsVariables, useMeshLocation, useObjectSearchContext, useProductQueryContext, useProductSearchContext, useRequest, useRequestHeader, useRequestParameter, useUniformMeshSdk, useVariableEditor, useVariables, useVariablesMenu, variableDefaultTextValue, variablePrefix, variableSuffix, variablesToGroupedList, variablesToList };