@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.
- package/README.md +18 -0
- package/css/ui.css +176 -0
- package/dist/components/dev/index.cjs +486 -0
- package/dist/components/dev/index.cjs.map +1 -0
- package/dist/components/dev/index.d.cts +88 -0
- package/dist/components/dev/index.d.ts +88 -0
- package/dist/components/dev/index.js +474 -0
- package/dist/components/dev/index.js.map +1 -0
- package/dist/components/fields/index.cjs +334 -90
- package/dist/components/fields/index.cjs.map +1 -1
- package/dist/components/fields/index.d.cts +1 -1
- package/dist/components/fields/index.d.ts +1 -1
- package/dist/components/fields/index.js +322 -80
- package/dist/components/fields/index.js.map +1 -1
- package/dist/{index-DGN9LJqq.d.cts → index-B-kAG1RW.d.cts} +57 -18
- package/dist/{index-DGN9LJqq.d.ts → index-B-kAG1RW.d.ts} +57 -18
- package/dist/index.cjs +285 -37
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +286 -38
- package/dist/index.js.map +1 -1
- package/package.json +11 -1
|
@@ -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
|
-
*
|
|
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
|
-
*
|
|
591
|
-
*
|
|
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
|
-
*
|
|
596
|
-
*
|
|
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
|
-
*
|
|
607
|
-
*
|
|
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
|
-
*
|
|
615
|
-
*
|
|
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
|
-
*
|
|
620
|
-
*
|
|
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
|
-
*
|
|
625
|
-
*
|
|
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
|
-
*
|
|
630
|
-
*
|
|
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 {
|
|
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
|
-
*
|
|
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
|
-
*
|
|
591
|
-
*
|
|
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
|
-
*
|
|
596
|
-
*
|
|
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
|
-
*
|
|
607
|
-
*
|
|
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
|
-
*
|
|
615
|
-
*
|
|
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
|
-
*
|
|
620
|
-
*
|
|
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
|
-
*
|
|
625
|
-
*
|
|
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
|
-
*
|
|
630
|
-
*
|
|
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 {
|
|
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 };
|