@process.co/ui 0.0.10 → 0.0.11

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.
@@ -460,6 +460,10 @@ interface InferredTypesContextValue {
460
460
  setInferredType: (fieldName: string, type: string) => void;
461
461
  /** Get the inferred type for a field (called by subscriber fields) */
462
462
  getInferredType: (fieldName: string) => string | undefined;
463
+ /** Remove an inferred type by field name */
464
+ clearInferredType: (fieldName: string) => void;
465
+ /** Remove all inferred types */
466
+ clearAllInferredTypes: () => void;
463
467
  }
464
468
  /**
465
469
  * Context for inferred types.
@@ -468,7 +472,10 @@ interface InferredTypesContextValue {
468
472
  declare const InferredTypesContext: React__default.Context<InferredTypesContextValue | null>;
469
473
  /**
470
474
  * Hook to access the inferred types context.
471
- * Returns null when not inside an InferredTypesProvider (e.g., in mock/dev mode).
475
+ *
476
+ * When used within a DevProvider, uses the dev context's inferred types storage.
477
+ * When used within a production InferredTypesProvider, uses the real context.
478
+ * Returns null when not inside any provider.
472
479
  *
473
480
  * @example
474
481
  * ```tsx
@@ -587,47 +594,77 @@ interface NodePropertyProviderProps {
587
594
  */
588
595
  declare function NodePropertyProvider({ children }: NodePropertyProviderProps): React__default.ReactElement;
589
596
  /**
590
- * Mock hook - always returns false in development mode.
591
- * In production, returns true when inside a NodePropertyProvider.
597
+ * Hook to check if we're inside a property provider.
598
+ *
599
+ * Returns true when inside a DevProvider or a production NodePropertyProvider.
600
+ * Returns false otherwise.
592
601
  */
593
602
  declare function useIsInNodePropertyProvider(): boolean;
594
603
  /**
595
- * Mock hook - returns [undefined, no-op] in development mode.
596
- * In production, subscribes to a single property from the store.
604
+ * Hook to access and update a single property from the node store.
605
+ *
606
+ * When used within a DevProvider, uses the dev context's storage.
607
+ * When used within a production NodePropertyProvider, uses the real store.
608
+ * Otherwise, returns [undefined, no-op] as a fallback.
597
609
  *
598
610
  * @example
599
611
  * ```tsx
600
612
  * const [operator, setOperator] = useNodeProperty<string>('operator');
601
- * // In mock mode: operator is undefined, setOperator is a no-op
602
613
  * ```
603
614
  */
604
615
  declare function useNodeProperty<T = any>(key: string): [T | undefined, (value: T, metadata?: any) => void];
605
616
  /**
606
- * Mock hook - returns [{}, no-op] in development mode.
607
- * In production, subscribes to all properties from the store.
617
+ * Hook to access and update all properties from the node store.
618
+ *
619
+ * When used within a DevProvider, uses the dev context's storage.
620
+ * When used within a production NodePropertyProvider, uses the real store.
621
+ * Otherwise, returns [{}, no-op] as a fallback.
608
622
  */
609
623
  declare function useNodeProperties(): [
610
624
  Record<string, any>,
611
625
  (updates: Record<string, any>, metadata?: Record<string, any>) => void
612
626
  ];
613
627
  /**
614
- * Mock hook - returns undefined in development mode.
615
- * In production, subscribes to an inferred type by field name.
628
+ * Hook to subscribe to an inferred type by field name.
629
+ *
630
+ * When used within a DevProvider, uses the dev context's inferred types.
631
+ * When used within a production provider, uses the real store.
632
+ * Returns undefined when not inside any provider.
616
633
  */
617
634
  declare function useInferredType(fieldName: string): string | undefined;
618
635
  /**
619
- * Mock hook - returns no-op in development mode.
620
- * In production, returns a setter for inferred types.
636
+ * Hook to get a setter for inferred types.
637
+ *
638
+ * When used within a DevProvider, uses the dev context's setInferredType.
639
+ * Returns a no-op when not inside any provider.
621
640
  */
622
641
  declare function useSetInferredType(): (fieldName: string, type: string) => void;
623
642
  /**
624
- * Mock hook - returns {} in development mode.
625
- * In production, subscribes to all inferred types.
643
+ * Hook to get a clearer for inferred types.
644
+ *
645
+ * When used within a DevProvider, uses the dev context's clearInferredType.
646
+ * Returns a no-op when not inside any provider.
647
+ */
648
+ declare function useClearInferredType(): (fieldName: string) => void;
649
+ /**
650
+ * Hook to get a function that clears all inferred types.
651
+ *
652
+ * When used within a DevProvider, uses the dev context's clearAllInferredTypes.
653
+ * Returns a no-op when not inside any provider.
654
+ */
655
+ declare function useClearAllInferredTypes(): () => void;
656
+ /**
657
+ * Hook to subscribe to all inferred types.
658
+ *
659
+ * When used within a DevProvider, uses the dev context's inferred types.
660
+ * Returns {} when not inside any provider.
626
661
  */
627
662
  declare function useAllInferredTypes(): Record<string, string>;
628
663
  /**
629
- * Mock hook - returns no-op in development mode.
630
- * In production, returns a setter for individual properties.
664
+ * Hook to get a setter for individual properties.
665
+ *
666
+ * When used within a DevProvider, uses the dev context's setProperty.
667
+ * Returns a no-op when not inside any provider.
631
668
  */
632
669
  declare function useSetProperty(): <T = any>(key: string, value: T, metadata?: any) => void;
633
670
  /**
@@ -693,6 +730,8 @@ declare const index_intersectTypes: typeof intersectTypes;
693
730
  declare const index_parseInferSyntax: typeof parseInferSyntax;
694
731
  declare const index_parseInferredTypes: typeof parseInferredTypes;
695
732
  declare const index_useAllInferredTypes: typeof useAllInferredTypes;
733
+ declare const index_useClearAllInferredTypes: typeof useClearAllInferredTypes;
734
+ declare const index_useClearInferredType: typeof useClearInferredType;
696
735
  declare const index_useFieldPath: typeof useFieldPath;
697
736
  declare const index_useFieldValidation: typeof useFieldValidation;
698
737
  declare const index_useInferredType: typeof useInferredType;
@@ -705,7 +744,7 @@ declare const index_useSetInferredType: typeof useSetInferredType;
705
744
  declare const index_useSetProperty: typeof useSetProperty;
706
745
  declare const index_useTemplateFieldContext: typeof useTemplateFieldContext;
707
746
  declare namespace index {
708
- export { type index_BaseOperatorType as BaseOperatorType, type index_FieldValidationRule as FieldValidationRule, 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, 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_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_useAllInferredTypes as useAllInferredTypes, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, 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_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext };
747
+ export { type index_BaseOperatorType as BaseOperatorType, type index_FieldValidationRule as FieldValidationRule, 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, 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_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_useAllInferredTypes as useAllInferredTypes, index_useClearAllInferredTypes as useClearAllInferredTypes, index_useClearInferredType as useClearInferredType, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, 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_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext };
709
748
  }
710
749
 
711
- export { useSetProperty as A, useFieldValidation as B, Input as C, type InputProps as D, type SelectProps as E, type FieldValidationRule as F, type SelectOption as G, type SelectRenderProps as H, type InferredTypesContextValue as I, parseInferredTypes as J, computeExtendedType as K, filterOperatorsByType as L, getStringConstants as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, getNumberConstants as P, type BaseOperatorType as Q, type OperatorDef as R, Select as S, type TemplateFieldContextValue as T, type ParsedTypes as U, useIsInTemplateFieldProvider as a, useFieldPath as b, TemplateFieldProvider as c, type TemplateFieldProviderProps as d, type NestedFieldProviderProps as e, type TemplateFieldValidationError as f, type TemplateFieldFocusContext as g, type TemplateFieldChangeEvent as h, index as i, InferredTypesContext as j, useInferredTypes as k, type InferredTypesProviderProps as l, InferredTypesProvider as m, intersectTypes as n, type InferConfig as o, parseInferSyntax as p, getOperatorsForType as q, type NodePropertyProviderProps as r, NodePropertyProvider as s, useIsInNodePropertyProvider as t, useTemplateFieldContext as u, useNodeProperty as v, useNodeProperties as w, useInferredType as x, useSetInferredType as y, useAllInferredTypes as z };
750
+ export { useClearAllInferredTypes as A, useAllInferredTypes as B, useSetProperty as C, useFieldValidation as D, Input as E, type FieldValidationRule as F, type InputProps as G, type SelectProps as H, type InferredTypesContextValue as I, type SelectOption as J, type SelectRenderProps as K, parseInferredTypes as L, computeExtendedType as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, filterOperatorsByType as P, getStringConstants as Q, getNumberConstants as R, Select as S, type TemplateFieldContextValue as T, type BaseOperatorType as U, type OperatorDef as V, type ParsedTypes as W, useIsInTemplateFieldProvider as a, useFieldPath as b, TemplateFieldProvider as c, type TemplateFieldProviderProps as d, type NestedFieldProviderProps as e, type TemplateFieldValidationError as f, type TemplateFieldFocusContext as g, type TemplateFieldChangeEvent as h, index as i, InferredTypesContext as j, useInferredTypes as k, type InferredTypesProviderProps as l, InferredTypesProvider as m, intersectTypes as n, type InferConfig as o, parseInferSyntax as p, getOperatorsForType as q, type NodePropertyProviderProps as r, NodePropertyProvider as s, useIsInNodePropertyProvider as t, useTemplateFieldContext as u, useNodeProperty as v, useNodeProperties as w, useInferredType as x, useSetInferredType as y, useClearInferredType as z };
@@ -460,6 +460,10 @@ interface InferredTypesContextValue {
460
460
  setInferredType: (fieldName: string, type: string) => void;
461
461
  /** Get the inferred type for a field (called by subscriber fields) */
462
462
  getInferredType: (fieldName: string) => string | undefined;
463
+ /** Remove an inferred type by field name */
464
+ clearInferredType: (fieldName: string) => void;
465
+ /** Remove all inferred types */
466
+ clearAllInferredTypes: () => void;
463
467
  }
464
468
  /**
465
469
  * Context for inferred types.
@@ -468,7 +472,10 @@ interface InferredTypesContextValue {
468
472
  declare const InferredTypesContext: React__default.Context<InferredTypesContextValue | null>;
469
473
  /**
470
474
  * Hook to access the inferred types context.
471
- * Returns null when not inside an InferredTypesProvider (e.g., in mock/dev mode).
475
+ *
476
+ * When used within a DevProvider, uses the dev context's inferred types storage.
477
+ * When used within a production InferredTypesProvider, uses the real context.
478
+ * Returns null when not inside any provider.
472
479
  *
473
480
  * @example
474
481
  * ```tsx
@@ -587,47 +594,77 @@ interface NodePropertyProviderProps {
587
594
  */
588
595
  declare function NodePropertyProvider({ children }: NodePropertyProviderProps): React__default.ReactElement;
589
596
  /**
590
- * Mock hook - always returns false in development mode.
591
- * In production, returns true when inside a NodePropertyProvider.
597
+ * Hook to check if we're inside a property provider.
598
+ *
599
+ * Returns true when inside a DevProvider or a production NodePropertyProvider.
600
+ * Returns false otherwise.
592
601
  */
593
602
  declare function useIsInNodePropertyProvider(): boolean;
594
603
  /**
595
- * Mock hook - returns [undefined, no-op] in development mode.
596
- * In production, subscribes to a single property from the store.
604
+ * Hook to access and update a single property from the node store.
605
+ *
606
+ * When used within a DevProvider, uses the dev context's storage.
607
+ * When used within a production NodePropertyProvider, uses the real store.
608
+ * Otherwise, returns [undefined, no-op] as a fallback.
597
609
  *
598
610
  * @example
599
611
  * ```tsx
600
612
  * const [operator, setOperator] = useNodeProperty<string>('operator');
601
- * // In mock mode: operator is undefined, setOperator is a no-op
602
613
  * ```
603
614
  */
604
615
  declare function useNodeProperty<T = any>(key: string): [T | undefined, (value: T, metadata?: any) => void];
605
616
  /**
606
- * Mock hook - returns [{}, no-op] in development mode.
607
- * In production, subscribes to all properties from the store.
617
+ * Hook to access and update all properties from the node store.
618
+ *
619
+ * When used within a DevProvider, uses the dev context's storage.
620
+ * When used within a production NodePropertyProvider, uses the real store.
621
+ * Otherwise, returns [{}, no-op] as a fallback.
608
622
  */
609
623
  declare function useNodeProperties(): [
610
624
  Record<string, any>,
611
625
  (updates: Record<string, any>, metadata?: Record<string, any>) => void
612
626
  ];
613
627
  /**
614
- * Mock hook - returns undefined in development mode.
615
- * In production, subscribes to an inferred type by field name.
628
+ * Hook to subscribe to an inferred type by field name.
629
+ *
630
+ * When used within a DevProvider, uses the dev context's inferred types.
631
+ * When used within a production provider, uses the real store.
632
+ * Returns undefined when not inside any provider.
616
633
  */
617
634
  declare function useInferredType(fieldName: string): string | undefined;
618
635
  /**
619
- * Mock hook - returns no-op in development mode.
620
- * In production, returns a setter for inferred types.
636
+ * Hook to get a setter for inferred types.
637
+ *
638
+ * When used within a DevProvider, uses the dev context's setInferredType.
639
+ * Returns a no-op when not inside any provider.
621
640
  */
622
641
  declare function useSetInferredType(): (fieldName: string, type: string) => void;
623
642
  /**
624
- * Mock hook - returns {} in development mode.
625
- * In production, subscribes to all inferred types.
643
+ * Hook to get a clearer for inferred types.
644
+ *
645
+ * When used within a DevProvider, uses the dev context's clearInferredType.
646
+ * Returns a no-op when not inside any provider.
647
+ */
648
+ declare function useClearInferredType(): (fieldName: string) => void;
649
+ /**
650
+ * Hook to get a function that clears all inferred types.
651
+ *
652
+ * When used within a DevProvider, uses the dev context's clearAllInferredTypes.
653
+ * Returns a no-op when not inside any provider.
654
+ */
655
+ declare function useClearAllInferredTypes(): () => void;
656
+ /**
657
+ * Hook to subscribe to all inferred types.
658
+ *
659
+ * When used within a DevProvider, uses the dev context's inferred types.
660
+ * Returns {} when not inside any provider.
626
661
  */
627
662
  declare function useAllInferredTypes(): Record<string, string>;
628
663
  /**
629
- * Mock hook - returns no-op in development mode.
630
- * In production, returns a setter for individual properties.
664
+ * Hook to get a setter for individual properties.
665
+ *
666
+ * When used within a DevProvider, uses the dev context's setProperty.
667
+ * Returns a no-op when not inside any provider.
631
668
  */
632
669
  declare function useSetProperty(): <T = any>(key: string, value: T, metadata?: any) => void;
633
670
  /**
@@ -693,6 +730,8 @@ declare const index_intersectTypes: typeof intersectTypes;
693
730
  declare const index_parseInferSyntax: typeof parseInferSyntax;
694
731
  declare const index_parseInferredTypes: typeof parseInferredTypes;
695
732
  declare const index_useAllInferredTypes: typeof useAllInferredTypes;
733
+ declare const index_useClearAllInferredTypes: typeof useClearAllInferredTypes;
734
+ declare const index_useClearInferredType: typeof useClearInferredType;
696
735
  declare const index_useFieldPath: typeof useFieldPath;
697
736
  declare const index_useFieldValidation: typeof useFieldValidation;
698
737
  declare const index_useInferredType: typeof useInferredType;
@@ -705,7 +744,7 @@ declare const index_useSetInferredType: typeof useSetInferredType;
705
744
  declare const index_useSetProperty: typeof useSetProperty;
706
745
  declare const index_useTemplateFieldContext: typeof useTemplateFieldContext;
707
746
  declare namespace index {
708
- export { type index_BaseOperatorType as BaseOperatorType, type index_FieldValidationRule as FieldValidationRule, 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, 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_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_useAllInferredTypes as useAllInferredTypes, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, 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_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext };
747
+ export { type index_BaseOperatorType as BaseOperatorType, type index_FieldValidationRule as FieldValidationRule, 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, 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_computeExtendedType as computeExtendedType, index_filterOperatorsByType as filterOperatorsByType, index_getNumberConstants as getNumberConstants, index_getOperatorsForType as getOperatorsForType, index_getStringConstants as getStringConstants, index_intersectTypes as intersectTypes, index_parseInferSyntax as parseInferSyntax, index_parseInferredTypes as parseInferredTypes, index_useAllInferredTypes as useAllInferredTypes, index_useClearAllInferredTypes as useClearAllInferredTypes, index_useClearInferredType as useClearInferredType, index_useFieldPath as useFieldPath, index_useFieldValidation as useFieldValidation, 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_useSetInferredType as useSetInferredType, index_useSetProperty as useSetProperty, index_useTemplateFieldContext as useTemplateFieldContext };
709
748
  }
710
749
 
711
- export { useSetProperty as A, useFieldValidation as B, Input as C, type InputProps as D, type SelectProps as E, type FieldValidationRule as F, type SelectOption as G, type SelectRenderProps as H, type InferredTypesContextValue as I, parseInferredTypes as J, computeExtendedType as K, filterOperatorsByType as L, getStringConstants as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, getNumberConstants as P, type BaseOperatorType as Q, type OperatorDef as R, Select as S, type TemplateFieldContextValue as T, type ParsedTypes as U, useIsInTemplateFieldProvider as a, useFieldPath as b, TemplateFieldProvider as c, type TemplateFieldProviderProps as d, type NestedFieldProviderProps as e, type TemplateFieldValidationError as f, type TemplateFieldFocusContext as g, type TemplateFieldChangeEvent as h, index as i, InferredTypesContext as j, useInferredTypes as k, type InferredTypesProviderProps as l, InferredTypesProvider as m, intersectTypes as n, type InferConfig as o, parseInferSyntax as p, getOperatorsForType as q, type NodePropertyProviderProps as r, NodePropertyProvider as s, useIsInNodePropertyProvider as t, useTemplateFieldContext as u, useNodeProperty as v, useNodeProperties as w, useInferredType as x, useSetInferredType as y, useAllInferredTypes as z };
750
+ export { useClearAllInferredTypes as A, useAllInferredTypes as B, useSetProperty as C, useFieldValidation as D, Input as E, type FieldValidationRule as F, type InputProps as G, type SelectProps as H, type InferredTypesContextValue as I, type SelectOption as J, type SelectRenderProps as K, parseInferredTypes as L, computeExtendedType as M, NestedFieldProvider as N, OPERATORS_BY_TYPE as O, filterOperatorsByType as P, getStringConstants as Q, getNumberConstants as R, Select as S, type TemplateFieldContextValue as T, type BaseOperatorType as U, type OperatorDef as V, type ParsedTypes as W, useIsInTemplateFieldProvider as a, useFieldPath as b, TemplateFieldProvider as c, type TemplateFieldProviderProps as d, type NestedFieldProviderProps as e, type TemplateFieldValidationError as f, type TemplateFieldFocusContext as g, type TemplateFieldChangeEvent as h, index as i, InferredTypesContext as j, useInferredTypes as k, type InferredTypesProviderProps as l, InferredTypesProvider as m, intersectTypes as n, type InferConfig as o, parseInferSyntax as p, getOperatorsForType as q, type NodePropertyProviderProps as r, NodePropertyProvider as s, useIsInNodePropertyProvider as t, useTemplateFieldContext as u, useNodeProperty as v, useNodeProperties as w, useInferredType as x, useSetInferredType as y, useClearInferredType as z };