@process.co/ui 0.0.15 → 0.0.17

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.
@@ -19,6 +19,15 @@ declare const toggleButtonVariants: (props?: ({
19
19
  type ToggleButtonProps = React.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleButtonVariants>;
20
20
  declare function ToggleButton({ className, variant, size, ...props }: ToggleButtonProps): React.JSX.Element;
21
21
 
22
+ /**
23
+ * Dedicated and/or logic toggle for condition groups. Styled as a compact pill:
24
+ * pressed (and) = primary blue, unpressed (or) = neutral gray. Text is rotated -90deg
25
+ * so width stays fixed regardless of "and" vs "or". Use on condition bracket lines.
26
+ */
27
+ declare const logicToggleButtonStyles: string;
28
+ type LogicToggleButtonProps = React.ComponentProps<typeof TogglePrimitive.Root>;
29
+ declare function LogicToggleButton({ className, children, ...props }: LogicToggleButtonProps): React.JSX.Element;
30
+
22
31
  /** Accepted value for Input/Select: string or expression object. For untyped sources (e.g. condition.value), assert: value={x as FieldValue} */
23
32
  type FieldValue = string | {
24
33
  expression: string;
@@ -816,6 +825,7 @@ declare const index_InferredTypesProvider: typeof InferredTypesProvider;
816
825
  type index_InferredTypesProviderProps = InferredTypesProviderProps;
817
826
  declare const index_Input: typeof Input;
818
827
  type index_InputProps = InputProps;
828
+ declare const index_LogicToggleButton: typeof LogicToggleButton;
819
829
  declare const index_NestedFieldProvider: typeof NestedFieldProvider;
820
830
  type index_NestedFieldProviderProps = NestedFieldProviderProps;
821
831
  declare const index_NodePropertyProvider: typeof NodePropertyProvider;
@@ -842,6 +852,7 @@ declare const index_getNumberConstants: typeof getNumberConstants;
842
852
  declare const index_getOperatorsForType: typeof getOperatorsForType;
843
853
  declare const index_getStringConstants: typeof getStringConstants;
844
854
  declare const index_intersectTypes: typeof intersectTypes;
855
+ declare const index_logicToggleButtonStyles: typeof logicToggleButtonStyles;
845
856
  declare const index_normalizeFieldValue: typeof normalizeFieldValue;
846
857
  declare const index_parseInferSyntax: typeof parseInferSyntax;
847
858
  declare const index_parseInferredTypes: typeof parseInferredTypes;
@@ -865,7 +876,7 @@ declare const index_useSetProperty: typeof useSetProperty;
865
876
  declare const index_useTemplateFieldContext: typeof useTemplateFieldContext;
866
877
  declare const index_useTriggerLayoutUpdate: typeof useTriggerLayoutUpdate;
867
878
  declare namespace index {
868
- export { type index_BaseOperatorType as BaseOperatorType, index_Button as Button, type index_FieldValidationRule as FieldValidationRule, type index_FieldValue as FieldValue, type index_InferConfig as InferConfig, index_InferredTypesContext as InferredTypesContext, type index_InferredTypesContextValue as InferredTypesContextValue, index_InferredTypesProvider as InferredTypesProvider, type index_InferredTypesProviderProps as InferredTypesProviderProps, index_Input as Input, type index_InputProps as InputProps, index_NestedFieldProvider as NestedFieldProvider, type index_NestedFieldProviderProps as NestedFieldProviderProps, index_NodePropertyProvider as NodePropertyProvider, type index_NodePropertyProviderProps as NodePropertyProviderProps, index_OPERATORS_BY_TYPE as OPERATORS_BY_TYPE, type index_OperatorDef as OperatorDef, type index_ParsedTypes as ParsedTypes, type index_PropertyMetadata as PropertyMetadata, index_Select as Select, type index_SelectOption as SelectOption, type index_SelectProps as SelectProps, type index_SelectRenderProps as SelectRenderProps, type index_TemplateFieldChangeEvent as TemplateFieldChangeEvent, type index_TemplateFieldContextValue as TemplateFieldContextValue, type index_TemplateFieldFocusContext as TemplateFieldFocusContext, index_TemplateFieldProvider as TemplateFieldProvider, type index_TemplateFieldProviderProps as TemplateFieldProviderProps, type index_TemplateFieldValidationError as TemplateFieldValidationError, index_ToggleButton as ToggleButton, index_buttonVariants as buttonVariants, index_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_normalizeFieldValue as normalizeFieldValue, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_toggleButtonVariants as toggleButtonVariants, index_useAllInferredTypes as useAllInferredTypes, index_useClearAllInferredTypes as useClearAllInferredTypes, index_useClearInferredType as useClearInferredType, index_useClearValidationErrorsByPrefix as useClearValidationErrorsByPrefix, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, index_useFlowEditorActions as useFlowEditorActions, index_useInferredType as useInferredType, index_useInferredTypes as useInferredTypes, index_useIsInNodePropertyProvider as useIsInNodePropertyProvider, index_useIsInTemplateFieldProvider as useIsInTemplateFieldProvider, index_useNodeProperties as useNodeProperties, index_useNodeProperty as useNodeProperty, index_useSetFieldMetadataOnly as useSetFieldMetadataOnly, index_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext, index_useTriggerLayoutUpdate as useTriggerLayoutUpdate };
879
+ export { type index_BaseOperatorType as BaseOperatorType, index_Button as Button, type index_FieldValidationRule as FieldValidationRule, type index_FieldValue as FieldValue, type index_InferConfig as InferConfig, index_InferredTypesContext as InferredTypesContext, type index_InferredTypesContextValue as InferredTypesContextValue, index_InferredTypesProvider as InferredTypesProvider, type index_InferredTypesProviderProps as InferredTypesProviderProps, index_Input as Input, type index_InputProps as InputProps, index_LogicToggleButton as LogicToggleButton, index_NestedFieldProvider as NestedFieldProvider, type index_NestedFieldProviderProps as NestedFieldProviderProps, index_NodePropertyProvider as NodePropertyProvider, type index_NodePropertyProviderProps as NodePropertyProviderProps, index_OPERATORS_BY_TYPE as OPERATORS_BY_TYPE, type index_OperatorDef as OperatorDef, type index_ParsedTypes as ParsedTypes, type index_PropertyMetadata as PropertyMetadata, index_Select as Select, type index_SelectOption as SelectOption, type index_SelectProps as SelectProps, type index_SelectRenderProps as SelectRenderProps, type index_TemplateFieldChangeEvent as TemplateFieldChangeEvent, type index_TemplateFieldContextValue as TemplateFieldContextValue, type index_TemplateFieldFocusContext as TemplateFieldFocusContext, index_TemplateFieldProvider as TemplateFieldProvider, type index_TemplateFieldProviderProps as TemplateFieldProviderProps, type index_TemplateFieldValidationError as TemplateFieldValidationError, index_ToggleButton as ToggleButton, index_buttonVariants as buttonVariants, index_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_logicToggleButtonStyles as logicToggleButtonStyles, index_normalizeFieldValue as normalizeFieldValue, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_toggleButtonVariants as toggleButtonVariants, index_useAllInferredTypes as useAllInferredTypes, index_useClearAllInferredTypes as useClearAllInferredTypes, index_useClearInferredType as useClearInferredType, index_useClearValidationErrorsByPrefix as useClearValidationErrorsByPrefix, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, index_useFlowEditorActions as useFlowEditorActions, index_useInferredType as useInferredType, index_useInferredTypes as useInferredTypes, index_useIsInNodePropertyProvider as useIsInNodePropertyProvider, index_useIsInTemplateFieldProvider as useIsInTemplateFieldProvider, index_useNodeProperties as useNodeProperties, index_useNodeProperty as useNodeProperty, index_useSetFieldMetadataOnly as useSetFieldMetadataOnly, index_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext, index_useTriggerLayoutUpdate as useTriggerLayoutUpdate };
869
880
  }
870
881
 
871
- export { computeExtendedType as $, useNodeProperty as A, Button as B, useNodeProperties as C, useInferredType as D, useSetInferredType as E, useClearInferredType as F, useClearAllInferredTypes as G, useClearValidationErrorsByPrefix as H, type InferredTypesContextValue as I, useFlowEditorActions as J, useAllInferredTypes as K, useSetProperty as L, useTriggerLayoutUpdate as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, type PropertyMetadata as P, type FieldValidationRule as Q, useFieldValidation as R, type FieldValue as S, ToggleButton as T, Input as U, type InputProps as V, Select as W, type SelectProps as X, type SelectOption as Y, type SelectRenderProps as Z, parseInferredTypes as _, type TemplateFieldContextValue as a, filterOperatorsByType as a0, getStringConstants as a1, getNumberConstants as a2, type BaseOperatorType as a3, type OperatorDef as a4, type ParsedTypes as a5, buttonVariants as b, useIsInTemplateFieldProvider as c, useFieldPath as d, TemplateFieldProvider as e, type TemplateFieldProviderProps as f, type NestedFieldProviderProps as g, type TemplateFieldValidationError as h, index as i, type TemplateFieldFocusContext as j, type TemplateFieldChangeEvent as k, InferredTypesContext as l, useInferredTypes as m, normalizeFieldValue as n, type InferredTypesProviderProps as o, InferredTypesProvider as p, intersectTypes as q, type InferConfig as r, parseInferSyntax as s, toggleButtonVariants as t, useTemplateFieldContext as u, getOperatorsForType as v, type NodePropertyProviderProps as w, NodePropertyProvider as x, useSetFieldMetadataOnly as y, useIsInNodePropertyProvider as z };
882
+ export { type SelectRenderProps as $, useIsInNodePropertyProvider as A, Button as B, useNodeProperty as C, useNodeProperties as D, useInferredType as E, useSetInferredType as F, useClearInferredType as G, useClearAllInferredTypes as H, type InferredTypesContextValue as I, useClearValidationErrorsByPrefix as J, useFlowEditorActions as K, LogicToggleButton as L, useAllInferredTypes as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, type PropertyMetadata as P, useSetProperty as Q, useTriggerLayoutUpdate as R, type FieldValidationRule as S, ToggleButton as T, useFieldValidation as U, type FieldValue as V, Input as W, type InputProps as X, Select as Y, type SelectProps as Z, type SelectOption as _, type TemplateFieldContextValue as a, parseInferredTypes as a0, computeExtendedType as a1, filterOperatorsByType as a2, getStringConstants as a3, getNumberConstants as a4, type BaseOperatorType as a5, type OperatorDef as a6, type ParsedTypes as a7, buttonVariants as b, useIsInTemplateFieldProvider as c, useFieldPath as d, TemplateFieldProvider as e, type TemplateFieldProviderProps as f, type NestedFieldProviderProps as g, type TemplateFieldValidationError as h, index as i, type TemplateFieldFocusContext as j, type TemplateFieldChangeEvent as k, logicToggleButtonStyles as l, InferredTypesContext as m, normalizeFieldValue as n, useInferredTypes as o, type InferredTypesProviderProps as p, InferredTypesProvider as q, intersectTypes as r, type InferConfig as s, toggleButtonVariants as t, useTemplateFieldContext as u, parseInferSyntax as v, getOperatorsForType as w, type NodePropertyProviderProps as x, NodePropertyProvider as y, useSetFieldMetadataOnly as z };
@@ -19,6 +19,15 @@ declare const toggleButtonVariants: (props?: ({
19
19
  type ToggleButtonProps = React.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleButtonVariants>;
20
20
  declare function ToggleButton({ className, variant, size, ...props }: ToggleButtonProps): React.JSX.Element;
21
21
 
22
+ /**
23
+ * Dedicated and/or logic toggle for condition groups. Styled as a compact pill:
24
+ * pressed (and) = primary blue, unpressed (or) = neutral gray. Text is rotated -90deg
25
+ * so width stays fixed regardless of "and" vs "or". Use on condition bracket lines.
26
+ */
27
+ declare const logicToggleButtonStyles: string;
28
+ type LogicToggleButtonProps = React.ComponentProps<typeof TogglePrimitive.Root>;
29
+ declare function LogicToggleButton({ className, children, ...props }: LogicToggleButtonProps): React.JSX.Element;
30
+
22
31
  /** Accepted value for Input/Select: string or expression object. For untyped sources (e.g. condition.value), assert: value={x as FieldValue} */
23
32
  type FieldValue = string | {
24
33
  expression: string;
@@ -816,6 +825,7 @@ declare const index_InferredTypesProvider: typeof InferredTypesProvider;
816
825
  type index_InferredTypesProviderProps = InferredTypesProviderProps;
817
826
  declare const index_Input: typeof Input;
818
827
  type index_InputProps = InputProps;
828
+ declare const index_LogicToggleButton: typeof LogicToggleButton;
819
829
  declare const index_NestedFieldProvider: typeof NestedFieldProvider;
820
830
  type index_NestedFieldProviderProps = NestedFieldProviderProps;
821
831
  declare const index_NodePropertyProvider: typeof NodePropertyProvider;
@@ -842,6 +852,7 @@ declare const index_getNumberConstants: typeof getNumberConstants;
842
852
  declare const index_getOperatorsForType: typeof getOperatorsForType;
843
853
  declare const index_getStringConstants: typeof getStringConstants;
844
854
  declare const index_intersectTypes: typeof intersectTypes;
855
+ declare const index_logicToggleButtonStyles: typeof logicToggleButtonStyles;
845
856
  declare const index_normalizeFieldValue: typeof normalizeFieldValue;
846
857
  declare const index_parseInferSyntax: typeof parseInferSyntax;
847
858
  declare const index_parseInferredTypes: typeof parseInferredTypes;
@@ -865,7 +876,7 @@ declare const index_useSetProperty: typeof useSetProperty;
865
876
  declare const index_useTemplateFieldContext: typeof useTemplateFieldContext;
866
877
  declare const index_useTriggerLayoutUpdate: typeof useTriggerLayoutUpdate;
867
878
  declare namespace index {
868
- export { type index_BaseOperatorType as BaseOperatorType, index_Button as Button, type index_FieldValidationRule as FieldValidationRule, type index_FieldValue as FieldValue, type index_InferConfig as InferConfig, index_InferredTypesContext as InferredTypesContext, type index_InferredTypesContextValue as InferredTypesContextValue, index_InferredTypesProvider as InferredTypesProvider, type index_InferredTypesProviderProps as InferredTypesProviderProps, index_Input as Input, type index_InputProps as InputProps, index_NestedFieldProvider as NestedFieldProvider, type index_NestedFieldProviderProps as NestedFieldProviderProps, index_NodePropertyProvider as NodePropertyProvider, type index_NodePropertyProviderProps as NodePropertyProviderProps, index_OPERATORS_BY_TYPE as OPERATORS_BY_TYPE, type index_OperatorDef as OperatorDef, type index_ParsedTypes as ParsedTypes, type index_PropertyMetadata as PropertyMetadata, index_Select as Select, type index_SelectOption as SelectOption, type index_SelectProps as SelectProps, type index_SelectRenderProps as SelectRenderProps, type index_TemplateFieldChangeEvent as TemplateFieldChangeEvent, type index_TemplateFieldContextValue as TemplateFieldContextValue, type index_TemplateFieldFocusContext as TemplateFieldFocusContext, index_TemplateFieldProvider as TemplateFieldProvider, type index_TemplateFieldProviderProps as TemplateFieldProviderProps, type index_TemplateFieldValidationError as TemplateFieldValidationError, index_ToggleButton as ToggleButton, index_buttonVariants as buttonVariants, index_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_normalizeFieldValue as normalizeFieldValue, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_toggleButtonVariants as toggleButtonVariants, index_useAllInferredTypes as useAllInferredTypes, index_useClearAllInferredTypes as useClearAllInferredTypes, index_useClearInferredType as useClearInferredType, index_useClearValidationErrorsByPrefix as useClearValidationErrorsByPrefix, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, index_useFlowEditorActions as useFlowEditorActions, index_useInferredType as useInferredType, index_useInferredTypes as useInferredTypes, index_useIsInNodePropertyProvider as useIsInNodePropertyProvider, index_useIsInTemplateFieldProvider as useIsInTemplateFieldProvider, index_useNodeProperties as useNodeProperties, index_useNodeProperty as useNodeProperty, index_useSetFieldMetadataOnly as useSetFieldMetadataOnly, index_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext, index_useTriggerLayoutUpdate as useTriggerLayoutUpdate };
879
+ export { type index_BaseOperatorType as BaseOperatorType, index_Button as Button, type index_FieldValidationRule as FieldValidationRule, type index_FieldValue as FieldValue, type index_InferConfig as InferConfig, index_InferredTypesContext as InferredTypesContext, type index_InferredTypesContextValue as InferredTypesContextValue, index_InferredTypesProvider as InferredTypesProvider, type index_InferredTypesProviderProps as InferredTypesProviderProps, index_Input as Input, type index_InputProps as InputProps, index_LogicToggleButton as LogicToggleButton, index_NestedFieldProvider as NestedFieldProvider, type index_NestedFieldProviderProps as NestedFieldProviderProps, index_NodePropertyProvider as NodePropertyProvider, type index_NodePropertyProviderProps as NodePropertyProviderProps, index_OPERATORS_BY_TYPE as OPERATORS_BY_TYPE, type index_OperatorDef as OperatorDef, type index_ParsedTypes as ParsedTypes, type index_PropertyMetadata as PropertyMetadata, index_Select as Select, type index_SelectOption as SelectOption, type index_SelectProps as SelectProps, type index_SelectRenderProps as SelectRenderProps, type index_TemplateFieldChangeEvent as TemplateFieldChangeEvent, type index_TemplateFieldContextValue as TemplateFieldContextValue, type index_TemplateFieldFocusContext as TemplateFieldFocusContext, index_TemplateFieldProvider as TemplateFieldProvider, type index_TemplateFieldProviderProps as TemplateFieldProviderProps, type index_TemplateFieldValidationError as TemplateFieldValidationError, index_ToggleButton as ToggleButton, index_buttonVariants as buttonVariants, index_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_logicToggleButtonStyles as logicToggleButtonStyles, index_normalizeFieldValue as normalizeFieldValue, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_toggleButtonVariants as toggleButtonVariants, index_useAllInferredTypes as useAllInferredTypes, index_useClearAllInferredTypes as useClearAllInferredTypes, index_useClearInferredType as useClearInferredType, index_useClearValidationErrorsByPrefix as useClearValidationErrorsByPrefix, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, index_useFlowEditorActions as useFlowEditorActions, index_useInferredType as useInferredType, index_useInferredTypes as useInferredTypes, index_useIsInNodePropertyProvider as useIsInNodePropertyProvider, index_useIsInTemplateFieldProvider as useIsInTemplateFieldProvider, index_useNodeProperties as useNodeProperties, index_useNodeProperty as useNodeProperty, index_useSetFieldMetadataOnly as useSetFieldMetadataOnly, index_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext, index_useTriggerLayoutUpdate as useTriggerLayoutUpdate };
869
880
  }
870
881
 
871
- export { computeExtendedType as $, useNodeProperty as A, Button as B, useNodeProperties as C, useInferredType as D, useSetInferredType as E, useClearInferredType as F, useClearAllInferredTypes as G, useClearValidationErrorsByPrefix as H, type InferredTypesContextValue as I, useFlowEditorActions as J, useAllInferredTypes as K, useSetProperty as L, useTriggerLayoutUpdate as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, type PropertyMetadata as P, type FieldValidationRule as Q, useFieldValidation as R, type FieldValue as S, ToggleButton as T, Input as U, type InputProps as V, Select as W, type SelectProps as X, type SelectOption as Y, type SelectRenderProps as Z, parseInferredTypes as _, type TemplateFieldContextValue as a, filterOperatorsByType as a0, getStringConstants as a1, getNumberConstants as a2, type BaseOperatorType as a3, type OperatorDef as a4, type ParsedTypes as a5, buttonVariants as b, useIsInTemplateFieldProvider as c, useFieldPath as d, TemplateFieldProvider as e, type TemplateFieldProviderProps as f, type NestedFieldProviderProps as g, type TemplateFieldValidationError as h, index as i, type TemplateFieldFocusContext as j, type TemplateFieldChangeEvent as k, InferredTypesContext as l, useInferredTypes as m, normalizeFieldValue as n, type InferredTypesProviderProps as o, InferredTypesProvider as p, intersectTypes as q, type InferConfig as r, parseInferSyntax as s, toggleButtonVariants as t, useTemplateFieldContext as u, getOperatorsForType as v, type NodePropertyProviderProps as w, NodePropertyProvider as x, useSetFieldMetadataOnly as y, useIsInNodePropertyProvider as z };
882
+ export { type SelectRenderProps as $, useIsInNodePropertyProvider as A, Button as B, useNodeProperty as C, useNodeProperties as D, useInferredType as E, useSetInferredType as F, useClearInferredType as G, useClearAllInferredTypes as H, type InferredTypesContextValue as I, useClearValidationErrorsByPrefix as J, useFlowEditorActions as K, LogicToggleButton as L, useAllInferredTypes as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, type PropertyMetadata as P, useSetProperty as Q, useTriggerLayoutUpdate as R, type FieldValidationRule as S, ToggleButton as T, useFieldValidation as U, type FieldValue as V, Input as W, type InputProps as X, Select as Y, type SelectProps as Z, type SelectOption as _, type TemplateFieldContextValue as a, parseInferredTypes as a0, computeExtendedType as a1, filterOperatorsByType as a2, getStringConstants as a3, getNumberConstants as a4, type BaseOperatorType as a5, type OperatorDef as a6, type ParsedTypes as a7, buttonVariants as b, useIsInTemplateFieldProvider as c, useFieldPath as d, TemplateFieldProvider as e, type TemplateFieldProviderProps as f, type NestedFieldProviderProps as g, type TemplateFieldValidationError as h, index as i, type TemplateFieldFocusContext as j, type TemplateFieldChangeEvent as k, logicToggleButtonStyles as l, InferredTypesContext as m, normalizeFieldValue as n, useInferredTypes as o, type InferredTypesProviderProps as p, InferredTypesProvider as q, intersectTypes as r, type InferConfig as s, toggleButtonVariants as t, useTemplateFieldContext as u, parseInferSyntax as v, getOperatorsForType as w, type NodePropertyProviderProps as x, NodePropertyProvider as y, useSetFieldMetadataOnly as z };