@bsm-form/schema 0.39.0 → 0.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -697,6 +697,7 @@ type ApiRequestQuery = {
697
697
  type ApiStep = {
698
698
  type: "api";
699
699
  request: {
700
+ /** Static URL or ${values.path}/${resources.path} component placeholders. */
700
701
  url: string;
701
702
  method: "GET" | "POST" | "PUT" | "DELETE";
702
703
  headers?: Record<string, string>;
@@ -978,4 +979,21 @@ declare function defaultPendingConditionValue(): boolean;
978
979
  declare function isValidStateConditionValue(field: StateConditionField, value: unknown): boolean;
979
980
  declare function isValidPendingConditionValue(value: unknown): value is boolean;
980
981
 
981
- export { type AccordionItemLayoutProps, type AccordionLayoutNode, type ActionNode, type ActionType, type AlertDisplayEventType, type AlertDisplayNode, type BadgeLayoutNode, type BadgeLayoutProps, type BadgeType, type BaseNode, type CardContentLayoutNode, type CardContentLayoutProps, type CardFooterLayoutNode, type CardFooterLayoutProps, type CardHeaderLayoutNode, type CardHeaderLayoutProps, type CardLayoutNode, type CardLayoutProps, type CardSlotLayoutNode, type ChipsDisplayEventType, type ChipsDisplayNode, type ComputedCondition, type ComputedConfig, type ComputedInput, type ComputedOperator, type Condition, type ConditionOperator, type CustomActionNode, type DialogBodyLayoutNode, type DialogEventConfig, type DialogEventType, type DialogFooterLayoutNode, type DialogHeaderLayoutNode, type DialogHeaderLayoutProps, type DialogLayoutNode, type DialogLayoutProps, type DialogOperation, type DialogSize, type DialogSlotLayoutNode, type DialogSlotLayoutProps, type DialogStep, type DisplayEventConfig, type DisplayEventType, type DisplayNode, type DisplayType, type DrawerBodyLayoutNode, type DrawerEventConfig, type DrawerEventType, type DrawerFooterLayoutNode, type DrawerHeaderLayoutNode, type DrawerHeaderLayoutProps, type DrawerLayoutNode, type DrawerLayoutProps, type DrawerOperation, type DrawerSide, type DrawerSlotLayoutNode, type DrawerSlotLayoutProps, type DrawerStep, type DropdownMenuAlign, type DropdownMenuContentLayoutNode, type DropdownMenuContentLayoutProps, type DropdownMenuEntryLayoutNode, type DropdownMenuGroupEntryLayoutNode, type DropdownMenuGroupLayoutNode, type DropdownMenuGroupLayoutProps, type DropdownMenuItemLayoutNode, type DropdownMenuItemLayoutProps, type DropdownMenuItemVariant, type DropdownMenuLabelLayoutNode, type DropdownMenuLabelLayoutProps, type DropdownMenuLayoutNode, type DropdownMenuLayoutProps, type DropdownMenuSeparatorLayoutNode, type DropdownMenuSeparatorLayoutProps, type DropdownMenuSide, type DropdownMenuSlotLayoutNode, type DropdownMenuSubContentLayoutNode, type DropdownMenuSubContentLayoutProps, type DropdownMenuSubLayoutNode, type DropdownMenuSubLayoutProps, type DropdownMenuSubTriggerLayoutNode, type DropdownMenuSubTriggerLayoutProps, type DropdownMenuTriggerLayoutNode, type DropdownMenuTriggerLayoutProps, FIELD_TYPES_WITH_CHANGE_EVENT, FIELD_TYPES_WITH_COMMIT_EVENT, type FieldCondition, type FieldEventConfig, type FieldEventType, type FieldNode, type FieldType, type FieldTypeWithChangeEvent, type FieldTypeWithCommitEvent, type FixedLoadingPropBinding, type FormRefLayoutNode, type FormRefLayoutProps, type FormSchema, type InvokeCondition, type InvokeStep, LOADING_PROP_BINDINGS, type LayoutNode, type LayoutType, type LoadingPropBinding, type LoadingPropValue, type NavigationEventConfig, type NavigationEventType, type Node, type NodeKind, type OptionsConfig, PENDING_ACTION_CONDITION_PREFIX, PENDING_BOOLEAN_VALUES, PENDING_RESOURCE_CONDITION_PREFIX, type PaginationEventConfig, type PaginationEventType, type PaginationLayoutNode, type PaginationLayoutProps, type PopoverAlign, type PopoverContentLayoutNode, type PopoverContentLayoutProps, type PopoverLayoutNode, type PopoverLayoutProps, type PopoverSide, type PopoverSlotLayoutNode, type PopoverTriggerLayoutNode, type PopoverTriggerLayoutProps, type PropertyDefinition, REPEAT_MAX_COUNT, type Registry, type RegistryItem, type RepeatEventConfig, type RepeatEventType, type RepeatLayoutNode, type RepeatLayoutProps, type RepeatMode, type RepeatOperation, type RepeatStep, type ResetActionNode, STATE_BOOLEAN_VALUES, STATE_CONDITION_FIELDS, STATE_INITIALIZATION_STATUS_VALUES, STATE_IS_LOADING_VALUES, type ScrollAreaDirection, type ScrollAreaLayoutNode, type ScrollAreaLayoutProps, type ScrollAreaType, type SegmentButtonFieldNode, type SegmentButtonFieldProps, type SegmentButtonOptionsConfig, type SegmentButtonSize, type SegmentButtonValue, type SelectMode, type SelectOptionValue, type SelectValue, type SkeletonDisplayNode, type SkeletonDisplayProps, type SliderMode, type SliderRangeValue, type SliderValue, type SlotDisplayNode, type SlotDisplayProps, type StandardLayoutNode, type StateConditionField, type StateInitializationStatusValue, type Step, type StepLayoutNode, type StepLayoutProps, type StepperActionNode, type StepperActionType, type StepperConnector, type StepperLayoutNode, type StepperLayoutProps, type StepperOrientation, type SubmitActionNode, type SubmitOrResetActionNode, type TableActionsColumn, type TableAlign, type TableColumn, type TableColumnAction, type TableColumnActionColor, type TableData, type TableDisplayEventType, type TableDisplayNode, type TableDisplayProps, type TableInteraction, type TableSourceData, type TableStaticData, type TableTagColumn, type TableTagValueMapping, type TableTagVariant, type TableTextColumn, type TabsLayoutNode, type TagDisplayNode, type TagDisplayProps, type TimeValue, type ToastPosition, type ToastStep, type ToastVariant, type TooltipLayoutNode, type TooltipLayoutProps, type TooltipSide, type TypographyAs, type TypographyDisplayNode, type TypographyDisplayProps, type ValidationRule, type WhenStep, defaultPendingConditionValue, defaultStateConditionValue, fieldAllowsBlurEvent, fieldAllowsChangeEvent, fieldAllowsCommitEvent, fieldAllowsEvent, isBooleanStateConditionField, isFieldCondition, isInvokeCondition, isLoadingPropBinding, isPendingActionConditionField, isPendingConditionField, isPendingResourceConditionField, isReservedConditionField, isStateConditionField, isValidPendingConditionValue, isValidStateConditionValue, isValuelessConditionOperator, pendingActionConditionField, pendingActionIdFromField, pendingResourceConditionField, pendingResourcePathFromField };
982
+ /** Companion configuration, deliberately outside FormSchema. */
983
+ type FormEnvValue = string | number | boolean;
984
+ type FormEnvDefinition = {
985
+ type: "string" | "number" | "boolean" | "url";
986
+ label?: string;
987
+ description?: string;
988
+ default?: FormEnvValue;
989
+ required?: boolean;
990
+ allowOverride?: boolean;
991
+ };
992
+ type FormEnvDefinitions = Record<string, FormEnvDefinition>;
993
+ type FormEnvValues = Readonly<Record<string, FormEnvValue>>;
994
+ type FormEnvConfig = {
995
+ definitions?: FormEnvDefinitions;
996
+ overrides?: FormEnvValues;
997
+ };
998
+
999
+ export { type AccordionItemLayoutProps, type AccordionLayoutNode, type ActionNode, type ActionType, type AlertDisplayEventType, type AlertDisplayNode, type BadgeLayoutNode, type BadgeLayoutProps, type BadgeType, type BaseNode, type CardContentLayoutNode, type CardContentLayoutProps, type CardFooterLayoutNode, type CardFooterLayoutProps, type CardHeaderLayoutNode, type CardHeaderLayoutProps, type CardLayoutNode, type CardLayoutProps, type CardSlotLayoutNode, type ChipsDisplayEventType, type ChipsDisplayNode, type ComputedCondition, type ComputedConfig, type ComputedInput, type ComputedOperator, type Condition, type ConditionOperator, type CustomActionNode, type DialogBodyLayoutNode, type DialogEventConfig, type DialogEventType, type DialogFooterLayoutNode, type DialogHeaderLayoutNode, type DialogHeaderLayoutProps, type DialogLayoutNode, type DialogLayoutProps, type DialogOperation, type DialogSize, type DialogSlotLayoutNode, type DialogSlotLayoutProps, type DialogStep, type DisplayEventConfig, type DisplayEventType, type DisplayNode, type DisplayType, type DrawerBodyLayoutNode, type DrawerEventConfig, type DrawerEventType, type DrawerFooterLayoutNode, type DrawerHeaderLayoutNode, type DrawerHeaderLayoutProps, type DrawerLayoutNode, type DrawerLayoutProps, type DrawerOperation, type DrawerSide, type DrawerSlotLayoutNode, type DrawerSlotLayoutProps, type DrawerStep, type DropdownMenuAlign, type DropdownMenuContentLayoutNode, type DropdownMenuContentLayoutProps, type DropdownMenuEntryLayoutNode, type DropdownMenuGroupEntryLayoutNode, type DropdownMenuGroupLayoutNode, type DropdownMenuGroupLayoutProps, type DropdownMenuItemLayoutNode, type DropdownMenuItemLayoutProps, type DropdownMenuItemVariant, type DropdownMenuLabelLayoutNode, type DropdownMenuLabelLayoutProps, type DropdownMenuLayoutNode, type DropdownMenuLayoutProps, type DropdownMenuSeparatorLayoutNode, type DropdownMenuSeparatorLayoutProps, type DropdownMenuSide, type DropdownMenuSlotLayoutNode, type DropdownMenuSubContentLayoutNode, type DropdownMenuSubContentLayoutProps, type DropdownMenuSubLayoutNode, type DropdownMenuSubLayoutProps, type DropdownMenuSubTriggerLayoutNode, type DropdownMenuSubTriggerLayoutProps, type DropdownMenuTriggerLayoutNode, type DropdownMenuTriggerLayoutProps, FIELD_TYPES_WITH_CHANGE_EVENT, FIELD_TYPES_WITH_COMMIT_EVENT, type FieldCondition, type FieldEventConfig, type FieldEventType, type FieldNode, type FieldType, type FieldTypeWithChangeEvent, type FieldTypeWithCommitEvent, type FixedLoadingPropBinding, type FormEnvConfig, type FormEnvDefinition, type FormEnvDefinitions, type FormEnvValue, type FormEnvValues, type FormRefLayoutNode, type FormRefLayoutProps, type FormSchema, type InvokeCondition, type InvokeStep, LOADING_PROP_BINDINGS, type LayoutNode, type LayoutType, type LoadingPropBinding, type LoadingPropValue, type NavigationEventConfig, type NavigationEventType, type Node, type NodeKind, type OptionsConfig, PENDING_ACTION_CONDITION_PREFIX, PENDING_BOOLEAN_VALUES, PENDING_RESOURCE_CONDITION_PREFIX, type PaginationEventConfig, type PaginationEventType, type PaginationLayoutNode, type PaginationLayoutProps, type PopoverAlign, type PopoverContentLayoutNode, type PopoverContentLayoutProps, type PopoverLayoutNode, type PopoverLayoutProps, type PopoverSide, type PopoverSlotLayoutNode, type PopoverTriggerLayoutNode, type PopoverTriggerLayoutProps, type PropertyDefinition, REPEAT_MAX_COUNT, type Registry, type RegistryItem, type RepeatEventConfig, type RepeatEventType, type RepeatLayoutNode, type RepeatLayoutProps, type RepeatMode, type RepeatOperation, type RepeatStep, type ResetActionNode, STATE_BOOLEAN_VALUES, STATE_CONDITION_FIELDS, STATE_INITIALIZATION_STATUS_VALUES, STATE_IS_LOADING_VALUES, type ScrollAreaDirection, type ScrollAreaLayoutNode, type ScrollAreaLayoutProps, type ScrollAreaType, type SegmentButtonFieldNode, type SegmentButtonFieldProps, type SegmentButtonOptionsConfig, type SegmentButtonSize, type SegmentButtonValue, type SelectMode, type SelectOptionValue, type SelectValue, type SkeletonDisplayNode, type SkeletonDisplayProps, type SliderMode, type SliderRangeValue, type SliderValue, type SlotDisplayNode, type SlotDisplayProps, type StandardLayoutNode, type StateConditionField, type StateInitializationStatusValue, type Step, type StepLayoutNode, type StepLayoutProps, type StepperActionNode, type StepperActionType, type StepperConnector, type StepperLayoutNode, type StepperLayoutProps, type StepperOrientation, type SubmitActionNode, type SubmitOrResetActionNode, type TableActionsColumn, type TableAlign, type TableColumn, type TableColumnAction, type TableColumnActionColor, type TableData, type TableDisplayEventType, type TableDisplayNode, type TableDisplayProps, type TableInteraction, type TableSourceData, type TableStaticData, type TableTagColumn, type TableTagValueMapping, type TableTagVariant, type TableTextColumn, type TabsLayoutNode, type TagDisplayNode, type TagDisplayProps, type TimeValue, type ToastPosition, type ToastStep, type ToastVariant, type TooltipLayoutNode, type TooltipLayoutProps, type TooltipSide, type TypographyAs, type TypographyDisplayNode, type TypographyDisplayProps, type ValidationRule, type WhenStep, defaultPendingConditionValue, defaultStateConditionValue, fieldAllowsBlurEvent, fieldAllowsChangeEvent, fieldAllowsCommitEvent, fieldAllowsEvent, isBooleanStateConditionField, isFieldCondition, isInvokeCondition, isLoadingPropBinding, isPendingActionConditionField, isPendingConditionField, isPendingResourceConditionField, isReservedConditionField, isStateConditionField, isValidPendingConditionValue, isValidStateConditionValue, isValuelessConditionOperator, pendingActionConditionField, pendingActionIdFromField, pendingResourceConditionField, pendingResourcePathFromField };
package/dist/index.d.ts CHANGED
@@ -697,6 +697,7 @@ type ApiRequestQuery = {
697
697
  type ApiStep = {
698
698
  type: "api";
699
699
  request: {
700
+ /** Static URL or ${values.path}/${resources.path} component placeholders. */
700
701
  url: string;
701
702
  method: "GET" | "POST" | "PUT" | "DELETE";
702
703
  headers?: Record<string, string>;
@@ -978,4 +979,21 @@ declare function defaultPendingConditionValue(): boolean;
978
979
  declare function isValidStateConditionValue(field: StateConditionField, value: unknown): boolean;
979
980
  declare function isValidPendingConditionValue(value: unknown): value is boolean;
980
981
 
981
- export { type AccordionItemLayoutProps, type AccordionLayoutNode, type ActionNode, type ActionType, type AlertDisplayEventType, type AlertDisplayNode, type BadgeLayoutNode, type BadgeLayoutProps, type BadgeType, type BaseNode, type CardContentLayoutNode, type CardContentLayoutProps, type CardFooterLayoutNode, type CardFooterLayoutProps, type CardHeaderLayoutNode, type CardHeaderLayoutProps, type CardLayoutNode, type CardLayoutProps, type CardSlotLayoutNode, type ChipsDisplayEventType, type ChipsDisplayNode, type ComputedCondition, type ComputedConfig, type ComputedInput, type ComputedOperator, type Condition, type ConditionOperator, type CustomActionNode, type DialogBodyLayoutNode, type DialogEventConfig, type DialogEventType, type DialogFooterLayoutNode, type DialogHeaderLayoutNode, type DialogHeaderLayoutProps, type DialogLayoutNode, type DialogLayoutProps, type DialogOperation, type DialogSize, type DialogSlotLayoutNode, type DialogSlotLayoutProps, type DialogStep, type DisplayEventConfig, type DisplayEventType, type DisplayNode, type DisplayType, type DrawerBodyLayoutNode, type DrawerEventConfig, type DrawerEventType, type DrawerFooterLayoutNode, type DrawerHeaderLayoutNode, type DrawerHeaderLayoutProps, type DrawerLayoutNode, type DrawerLayoutProps, type DrawerOperation, type DrawerSide, type DrawerSlotLayoutNode, type DrawerSlotLayoutProps, type DrawerStep, type DropdownMenuAlign, type DropdownMenuContentLayoutNode, type DropdownMenuContentLayoutProps, type DropdownMenuEntryLayoutNode, type DropdownMenuGroupEntryLayoutNode, type DropdownMenuGroupLayoutNode, type DropdownMenuGroupLayoutProps, type DropdownMenuItemLayoutNode, type DropdownMenuItemLayoutProps, type DropdownMenuItemVariant, type DropdownMenuLabelLayoutNode, type DropdownMenuLabelLayoutProps, type DropdownMenuLayoutNode, type DropdownMenuLayoutProps, type DropdownMenuSeparatorLayoutNode, type DropdownMenuSeparatorLayoutProps, type DropdownMenuSide, type DropdownMenuSlotLayoutNode, type DropdownMenuSubContentLayoutNode, type DropdownMenuSubContentLayoutProps, type DropdownMenuSubLayoutNode, type DropdownMenuSubLayoutProps, type DropdownMenuSubTriggerLayoutNode, type DropdownMenuSubTriggerLayoutProps, type DropdownMenuTriggerLayoutNode, type DropdownMenuTriggerLayoutProps, FIELD_TYPES_WITH_CHANGE_EVENT, FIELD_TYPES_WITH_COMMIT_EVENT, type FieldCondition, type FieldEventConfig, type FieldEventType, type FieldNode, type FieldType, type FieldTypeWithChangeEvent, type FieldTypeWithCommitEvent, type FixedLoadingPropBinding, type FormRefLayoutNode, type FormRefLayoutProps, type FormSchema, type InvokeCondition, type InvokeStep, LOADING_PROP_BINDINGS, type LayoutNode, type LayoutType, type LoadingPropBinding, type LoadingPropValue, type NavigationEventConfig, type NavigationEventType, type Node, type NodeKind, type OptionsConfig, PENDING_ACTION_CONDITION_PREFIX, PENDING_BOOLEAN_VALUES, PENDING_RESOURCE_CONDITION_PREFIX, type PaginationEventConfig, type PaginationEventType, type PaginationLayoutNode, type PaginationLayoutProps, type PopoverAlign, type PopoverContentLayoutNode, type PopoverContentLayoutProps, type PopoverLayoutNode, type PopoverLayoutProps, type PopoverSide, type PopoverSlotLayoutNode, type PopoverTriggerLayoutNode, type PopoverTriggerLayoutProps, type PropertyDefinition, REPEAT_MAX_COUNT, type Registry, type RegistryItem, type RepeatEventConfig, type RepeatEventType, type RepeatLayoutNode, type RepeatLayoutProps, type RepeatMode, type RepeatOperation, type RepeatStep, type ResetActionNode, STATE_BOOLEAN_VALUES, STATE_CONDITION_FIELDS, STATE_INITIALIZATION_STATUS_VALUES, STATE_IS_LOADING_VALUES, type ScrollAreaDirection, type ScrollAreaLayoutNode, type ScrollAreaLayoutProps, type ScrollAreaType, type SegmentButtonFieldNode, type SegmentButtonFieldProps, type SegmentButtonOptionsConfig, type SegmentButtonSize, type SegmentButtonValue, type SelectMode, type SelectOptionValue, type SelectValue, type SkeletonDisplayNode, type SkeletonDisplayProps, type SliderMode, type SliderRangeValue, type SliderValue, type SlotDisplayNode, type SlotDisplayProps, type StandardLayoutNode, type StateConditionField, type StateInitializationStatusValue, type Step, type StepLayoutNode, type StepLayoutProps, type StepperActionNode, type StepperActionType, type StepperConnector, type StepperLayoutNode, type StepperLayoutProps, type StepperOrientation, type SubmitActionNode, type SubmitOrResetActionNode, type TableActionsColumn, type TableAlign, type TableColumn, type TableColumnAction, type TableColumnActionColor, type TableData, type TableDisplayEventType, type TableDisplayNode, type TableDisplayProps, type TableInteraction, type TableSourceData, type TableStaticData, type TableTagColumn, type TableTagValueMapping, type TableTagVariant, type TableTextColumn, type TabsLayoutNode, type TagDisplayNode, type TagDisplayProps, type TimeValue, type ToastPosition, type ToastStep, type ToastVariant, type TooltipLayoutNode, type TooltipLayoutProps, type TooltipSide, type TypographyAs, type TypographyDisplayNode, type TypographyDisplayProps, type ValidationRule, type WhenStep, defaultPendingConditionValue, defaultStateConditionValue, fieldAllowsBlurEvent, fieldAllowsChangeEvent, fieldAllowsCommitEvent, fieldAllowsEvent, isBooleanStateConditionField, isFieldCondition, isInvokeCondition, isLoadingPropBinding, isPendingActionConditionField, isPendingConditionField, isPendingResourceConditionField, isReservedConditionField, isStateConditionField, isValidPendingConditionValue, isValidStateConditionValue, isValuelessConditionOperator, pendingActionConditionField, pendingActionIdFromField, pendingResourceConditionField, pendingResourcePathFromField };
982
+ /** Companion configuration, deliberately outside FormSchema. */
983
+ type FormEnvValue = string | number | boolean;
984
+ type FormEnvDefinition = {
985
+ type: "string" | "number" | "boolean" | "url";
986
+ label?: string;
987
+ description?: string;
988
+ default?: FormEnvValue;
989
+ required?: boolean;
990
+ allowOverride?: boolean;
991
+ };
992
+ type FormEnvDefinitions = Record<string, FormEnvDefinition>;
993
+ type FormEnvValues = Readonly<Record<string, FormEnvValue>>;
994
+ type FormEnvConfig = {
995
+ definitions?: FormEnvDefinitions;
996
+ overrides?: FormEnvValues;
997
+ };
998
+
999
+ export { type AccordionItemLayoutProps, type AccordionLayoutNode, type ActionNode, type ActionType, type AlertDisplayEventType, type AlertDisplayNode, type BadgeLayoutNode, type BadgeLayoutProps, type BadgeType, type BaseNode, type CardContentLayoutNode, type CardContentLayoutProps, type CardFooterLayoutNode, type CardFooterLayoutProps, type CardHeaderLayoutNode, type CardHeaderLayoutProps, type CardLayoutNode, type CardLayoutProps, type CardSlotLayoutNode, type ChipsDisplayEventType, type ChipsDisplayNode, type ComputedCondition, type ComputedConfig, type ComputedInput, type ComputedOperator, type Condition, type ConditionOperator, type CustomActionNode, type DialogBodyLayoutNode, type DialogEventConfig, type DialogEventType, type DialogFooterLayoutNode, type DialogHeaderLayoutNode, type DialogHeaderLayoutProps, type DialogLayoutNode, type DialogLayoutProps, type DialogOperation, type DialogSize, type DialogSlotLayoutNode, type DialogSlotLayoutProps, type DialogStep, type DisplayEventConfig, type DisplayEventType, type DisplayNode, type DisplayType, type DrawerBodyLayoutNode, type DrawerEventConfig, type DrawerEventType, type DrawerFooterLayoutNode, type DrawerHeaderLayoutNode, type DrawerHeaderLayoutProps, type DrawerLayoutNode, type DrawerLayoutProps, type DrawerOperation, type DrawerSide, type DrawerSlotLayoutNode, type DrawerSlotLayoutProps, type DrawerStep, type DropdownMenuAlign, type DropdownMenuContentLayoutNode, type DropdownMenuContentLayoutProps, type DropdownMenuEntryLayoutNode, type DropdownMenuGroupEntryLayoutNode, type DropdownMenuGroupLayoutNode, type DropdownMenuGroupLayoutProps, type DropdownMenuItemLayoutNode, type DropdownMenuItemLayoutProps, type DropdownMenuItemVariant, type DropdownMenuLabelLayoutNode, type DropdownMenuLabelLayoutProps, type DropdownMenuLayoutNode, type DropdownMenuLayoutProps, type DropdownMenuSeparatorLayoutNode, type DropdownMenuSeparatorLayoutProps, type DropdownMenuSide, type DropdownMenuSlotLayoutNode, type DropdownMenuSubContentLayoutNode, type DropdownMenuSubContentLayoutProps, type DropdownMenuSubLayoutNode, type DropdownMenuSubLayoutProps, type DropdownMenuSubTriggerLayoutNode, type DropdownMenuSubTriggerLayoutProps, type DropdownMenuTriggerLayoutNode, type DropdownMenuTriggerLayoutProps, FIELD_TYPES_WITH_CHANGE_EVENT, FIELD_TYPES_WITH_COMMIT_EVENT, type FieldCondition, type FieldEventConfig, type FieldEventType, type FieldNode, type FieldType, type FieldTypeWithChangeEvent, type FieldTypeWithCommitEvent, type FixedLoadingPropBinding, type FormEnvConfig, type FormEnvDefinition, type FormEnvDefinitions, type FormEnvValue, type FormEnvValues, type FormRefLayoutNode, type FormRefLayoutProps, type FormSchema, type InvokeCondition, type InvokeStep, LOADING_PROP_BINDINGS, type LayoutNode, type LayoutType, type LoadingPropBinding, type LoadingPropValue, type NavigationEventConfig, type NavigationEventType, type Node, type NodeKind, type OptionsConfig, PENDING_ACTION_CONDITION_PREFIX, PENDING_BOOLEAN_VALUES, PENDING_RESOURCE_CONDITION_PREFIX, type PaginationEventConfig, type PaginationEventType, type PaginationLayoutNode, type PaginationLayoutProps, type PopoverAlign, type PopoverContentLayoutNode, type PopoverContentLayoutProps, type PopoverLayoutNode, type PopoverLayoutProps, type PopoverSide, type PopoverSlotLayoutNode, type PopoverTriggerLayoutNode, type PopoverTriggerLayoutProps, type PropertyDefinition, REPEAT_MAX_COUNT, type Registry, type RegistryItem, type RepeatEventConfig, type RepeatEventType, type RepeatLayoutNode, type RepeatLayoutProps, type RepeatMode, type RepeatOperation, type RepeatStep, type ResetActionNode, STATE_BOOLEAN_VALUES, STATE_CONDITION_FIELDS, STATE_INITIALIZATION_STATUS_VALUES, STATE_IS_LOADING_VALUES, type ScrollAreaDirection, type ScrollAreaLayoutNode, type ScrollAreaLayoutProps, type ScrollAreaType, type SegmentButtonFieldNode, type SegmentButtonFieldProps, type SegmentButtonOptionsConfig, type SegmentButtonSize, type SegmentButtonValue, type SelectMode, type SelectOptionValue, type SelectValue, type SkeletonDisplayNode, type SkeletonDisplayProps, type SliderMode, type SliderRangeValue, type SliderValue, type SlotDisplayNode, type SlotDisplayProps, type StandardLayoutNode, type StateConditionField, type StateInitializationStatusValue, type Step, type StepLayoutNode, type StepLayoutProps, type StepperActionNode, type StepperActionType, type StepperConnector, type StepperLayoutNode, type StepperLayoutProps, type StepperOrientation, type SubmitActionNode, type SubmitOrResetActionNode, type TableActionsColumn, type TableAlign, type TableColumn, type TableColumnAction, type TableColumnActionColor, type TableData, type TableDisplayEventType, type TableDisplayNode, type TableDisplayProps, type TableInteraction, type TableSourceData, type TableStaticData, type TableTagColumn, type TableTagValueMapping, type TableTagVariant, type TableTextColumn, type TabsLayoutNode, type TagDisplayNode, type TagDisplayProps, type TimeValue, type ToastPosition, type ToastStep, type ToastVariant, type TooltipLayoutNode, type TooltipLayoutProps, type TooltipSide, type TypographyAs, type TypographyDisplayNode, type TypographyDisplayProps, type ValidationRule, type WhenStep, defaultPendingConditionValue, defaultStateConditionValue, fieldAllowsBlurEvent, fieldAllowsChangeEvent, fieldAllowsCommitEvent, fieldAllowsEvent, isBooleanStateConditionField, isFieldCondition, isInvokeCondition, isLoadingPropBinding, isPendingActionConditionField, isPendingConditionField, isPendingResourceConditionField, isReservedConditionField, isStateConditionField, isValidPendingConditionValue, isValidStateConditionValue, isValuelessConditionOperator, pendingActionConditionField, pendingActionIdFromField, pendingResourceConditionField, pendingResourcePathFromField };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsm-form/schema",
3
- "version": "0.39.0",
3
+ "version": "0.41.0",
4
4
  "description": "Serializable FormSchema contracts for the BSM form platform",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",