@process.co/ui 0.0.16 → 0.0.18

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;
@@ -188,6 +197,15 @@ interface InputProps {
188
197
  editorClassName?: string;
189
198
  /** Property definition (for richer context) */
190
199
  propertyDefinition?: any;
200
+ /**
201
+ * When true, show a small case-sensitivity toggle next to the type label (e.g. for Value position in conditions).
202
+ * Controlled by caseSensitive and onCaseSensitiveChange.
203
+ */
204
+ showCaseSensitivity?: boolean;
205
+ /** Current case-sensitive state (when showCaseSensitivity is true). */
206
+ caseSensitive?: boolean;
207
+ /** Called when the user toggles case sensitivity (when showCaseSensitivity is true). */
208
+ onCaseSensitiveChange?: (value: boolean) => void;
191
209
  }
192
210
  /**
193
211
  * Mock Input component for development/design mode.
@@ -206,7 +224,7 @@ interface InputProps {
206
224
  * />
207
225
  * ```
208
226
  */
209
- declare function Input({ fieldName, label, value, onChange, disabled, placeholder, expectedType, required, hasRequiredError, className, editorClassName, }: InputProps): React.JSX.Element;
227
+ declare function Input({ fieldName, label, value, onChange, disabled, placeholder, expectedType, required, hasRequiredError, className, editorClassName, showCaseSensitivity, caseSensitive, onCaseSensitiveChange, }: InputProps): React.JSX.Element;
210
228
 
211
229
  interface SelectOption {
212
230
  node?: React.ReactNode;
@@ -816,6 +834,7 @@ declare const index_InferredTypesProvider: typeof InferredTypesProvider;
816
834
  type index_InferredTypesProviderProps = InferredTypesProviderProps;
817
835
  declare const index_Input: typeof Input;
818
836
  type index_InputProps = InputProps;
837
+ declare const index_LogicToggleButton: typeof LogicToggleButton;
819
838
  declare const index_NestedFieldProvider: typeof NestedFieldProvider;
820
839
  type index_NestedFieldProviderProps = NestedFieldProviderProps;
821
840
  declare const index_NodePropertyProvider: typeof NodePropertyProvider;
@@ -842,6 +861,7 @@ declare const index_getNumberConstants: typeof getNumberConstants;
842
861
  declare const index_getOperatorsForType: typeof getOperatorsForType;
843
862
  declare const index_getStringConstants: typeof getStringConstants;
844
863
  declare const index_intersectTypes: typeof intersectTypes;
864
+ declare const index_logicToggleButtonStyles: typeof logicToggleButtonStyles;
845
865
  declare const index_normalizeFieldValue: typeof normalizeFieldValue;
846
866
  declare const index_parseInferSyntax: typeof parseInferSyntax;
847
867
  declare const index_parseInferredTypes: typeof parseInferredTypes;
@@ -865,7 +885,7 @@ declare const index_useSetProperty: typeof useSetProperty;
865
885
  declare const index_useTemplateFieldContext: typeof useTemplateFieldContext;
866
886
  declare const index_useTriggerLayoutUpdate: typeof useTriggerLayoutUpdate;
867
887
  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 };
888
+ 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
889
  }
870
890
 
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 };
891
+ 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;
@@ -188,6 +197,15 @@ interface InputProps {
188
197
  editorClassName?: string;
189
198
  /** Property definition (for richer context) */
190
199
  propertyDefinition?: any;
200
+ /**
201
+ * When true, show a small case-sensitivity toggle next to the type label (e.g. for Value position in conditions).
202
+ * Controlled by caseSensitive and onCaseSensitiveChange.
203
+ */
204
+ showCaseSensitivity?: boolean;
205
+ /** Current case-sensitive state (when showCaseSensitivity is true). */
206
+ caseSensitive?: boolean;
207
+ /** Called when the user toggles case sensitivity (when showCaseSensitivity is true). */
208
+ onCaseSensitiveChange?: (value: boolean) => void;
191
209
  }
192
210
  /**
193
211
  * Mock Input component for development/design mode.
@@ -206,7 +224,7 @@ interface InputProps {
206
224
  * />
207
225
  * ```
208
226
  */
209
- declare function Input({ fieldName, label, value, onChange, disabled, placeholder, expectedType, required, hasRequiredError, className, editorClassName, }: InputProps): React.JSX.Element;
227
+ declare function Input({ fieldName, label, value, onChange, disabled, placeholder, expectedType, required, hasRequiredError, className, editorClassName, showCaseSensitivity, caseSensitive, onCaseSensitiveChange, }: InputProps): React.JSX.Element;
210
228
 
211
229
  interface SelectOption {
212
230
  node?: React.ReactNode;
@@ -816,6 +834,7 @@ declare const index_InferredTypesProvider: typeof InferredTypesProvider;
816
834
  type index_InferredTypesProviderProps = InferredTypesProviderProps;
817
835
  declare const index_Input: typeof Input;
818
836
  type index_InputProps = InputProps;
837
+ declare const index_LogicToggleButton: typeof LogicToggleButton;
819
838
  declare const index_NestedFieldProvider: typeof NestedFieldProvider;
820
839
  type index_NestedFieldProviderProps = NestedFieldProviderProps;
821
840
  declare const index_NodePropertyProvider: typeof NodePropertyProvider;
@@ -842,6 +861,7 @@ declare const index_getNumberConstants: typeof getNumberConstants;
842
861
  declare const index_getOperatorsForType: typeof getOperatorsForType;
843
862
  declare const index_getStringConstants: typeof getStringConstants;
844
863
  declare const index_intersectTypes: typeof intersectTypes;
864
+ declare const index_logicToggleButtonStyles: typeof logicToggleButtonStyles;
845
865
  declare const index_normalizeFieldValue: typeof normalizeFieldValue;
846
866
  declare const index_parseInferSyntax: typeof parseInferSyntax;
847
867
  declare const index_parseInferredTypes: typeof parseInferredTypes;
@@ -865,7 +885,7 @@ declare const index_useSetProperty: typeof useSetProperty;
865
885
  declare const index_useTemplateFieldContext: typeof useTemplateFieldContext;
866
886
  declare const index_useTriggerLayoutUpdate: typeof useTriggerLayoutUpdate;
867
887
  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 };
888
+ 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
889
  }
870
890
 
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 };
891
+ 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 };