formanitor 0.0.41 → 0.0.42
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.cjs +115 -1509
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -33
- package/dist/index.d.ts +2 -33
- package/dist/index.mjs +116 -1507
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -415,22 +415,6 @@ interface PainScaleFlagsFieldDef extends BaseFieldDef {
|
|
|
415
415
|
step?: number;
|
|
416
416
|
options?: SelectOption[];
|
|
417
417
|
}
|
|
418
|
-
/** Urology OPD: SOCRATES, IPSS/QoL, haematuria, sexual history, past notes (panel visibility from chips/syndrome). */
|
|
419
|
-
interface UrologySmartHistoryFieldDef extends BaseFieldDef {
|
|
420
|
-
type: 'urology_smart_history';
|
|
421
|
-
}
|
|
422
|
-
/** Urology OPD: general / abdomen / GU / DRE + notes. */
|
|
423
|
-
interface UrologyExaminationFieldDef extends BaseFieldDef {
|
|
424
|
-
type: 'urology_examination';
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* Urology OPD: stone/BPH objectives, uroflow, risk (Clearsight decision engine).
|
|
428
|
-
* **`meta.subtitle`**: Optional line rendered inside the white body below `label`
|
|
429
|
-
* (e.g. objective scoring description while `label` stays the pink-bar title).
|
|
430
|
-
*/
|
|
431
|
-
interface UrologyPathwayFieldDef extends BaseFieldDef {
|
|
432
|
-
type: 'urology_pathway';
|
|
433
|
-
}
|
|
434
418
|
interface MedicationFrequentItem {
|
|
435
419
|
id: string;
|
|
436
420
|
name: string;
|
|
@@ -489,7 +473,7 @@ interface DiagnosticPackage {
|
|
|
489
473
|
department?: string;
|
|
490
474
|
tests: DiagnosticPackageTest[];
|
|
491
475
|
}
|
|
492
|
-
type FieldDef = TextFieldDef | RichTextFieldDef | NumberFieldDef | SliderFieldDef | SelectFieldDef | RadioFieldDef | CheckboxFieldDef | RepeatableFieldDef | ImageUploadFieldDef | MediaUploadFieldDef | SignatureFieldDef | EditableTableFieldDef | StaticTextFieldDef | MedicationsFieldDef | InvestigationsFieldDef | ProceduresFieldDef | DifferentialDiagnosisFieldDef | VitalsFieldDef | ReferralFieldDef | FollowupFieldDef | SmartTextareaFieldDef | DiagnosisTextareaFieldDef | SuggestionTextareaFieldDef | LensAssessmentFieldDef | FunctionalImpairmentScoreFieldDef | ToggleFieldDef | BiometryIolWorkupFieldDef | SurgicalRiskFlagsFieldDef | GeneralSurgerySmartHistoryFieldDef | GeneralSurgeryExaminationFieldDef | GeneralSurgeryGradingFieldDef | PainScaleFlagsFieldDef |
|
|
476
|
+
type FieldDef = TextFieldDef | RichTextFieldDef | NumberFieldDef | SliderFieldDef | SelectFieldDef | RadioFieldDef | CheckboxFieldDef | RepeatableFieldDef | ImageUploadFieldDef | MediaUploadFieldDef | SignatureFieldDef | EditableTableFieldDef | StaticTextFieldDef | MedicationsFieldDef | InvestigationsFieldDef | ProceduresFieldDef | DifferentialDiagnosisFieldDef | VitalsFieldDef | ReferralFieldDef | FollowupFieldDef | SmartTextareaFieldDef | DiagnosisTextareaFieldDef | SuggestionTextareaFieldDef | LensAssessmentFieldDef | FunctionalImpairmentScoreFieldDef | ToggleFieldDef | BiometryIolWorkupFieldDef | SurgicalRiskFlagsFieldDef | GeneralSurgerySmartHistoryFieldDef | GeneralSurgeryExaminationFieldDef | GeneralSurgeryGradingFieldDef | PainScaleFlagsFieldDef | BaseFieldDef;
|
|
493
477
|
/** Boolean switch; value is `true` | `false`. */
|
|
494
478
|
interface ToggleFieldDef extends BaseFieldDef {
|
|
495
479
|
type: 'toggle';
|
|
@@ -633,21 +617,6 @@ interface FormState {
|
|
|
633
617
|
declare const MAR_MEDICATION_ORDERS_META_KEY: "mar_medication_orders";
|
|
634
618
|
declare function fieldMetaRequestsMarMedicationOrdersButton(meta: Record<string, unknown> | undefined): boolean;
|
|
635
619
|
|
|
636
|
-
/** Template shape used for urology detection (submitted schema / API template). */
|
|
637
|
-
type UrologyTemplateRef = Pick<FormDef, 'id' | 'meta'> & {
|
|
638
|
-
specialization?: string;
|
|
639
|
-
};
|
|
640
|
-
/** True when prescription template targets urology (Clearsight OPD parity). */
|
|
641
|
-
declare function isUrologyTemplate(template?: UrologyTemplateRef): boolean;
|
|
642
|
-
/** Urology OPD: fold pathway when template matches or serialized values contain urology fields. */
|
|
643
|
-
declare function shouldFoldUrologyClinicalPathway(template: UrologyTemplateRef, payload: Record<string, unknown>): boolean;
|
|
644
|
-
/**
|
|
645
|
-
* Moves top-level chief complaint + urology pathway fields into structured
|
|
646
|
-
* metadata.clinical_pathways.urology (parity with orthopedic_exam pathway).
|
|
647
|
-
* Called from FormStore serialization so the host dashboard can forward payloads as-is.
|
|
648
|
-
*/
|
|
649
|
-
declare function attachUrologyClinicalPathwayMetadata(payload: Record<string, unknown>, template: UrologyTemplateRef): void;
|
|
650
|
-
|
|
651
620
|
interface SavedState {
|
|
652
621
|
values: FormValues;
|
|
653
622
|
meta: {
|
|
@@ -1152,4 +1121,4 @@ declare const SmartTextareaWidget: React.FC<{
|
|
|
1152
1121
|
fieldId: string;
|
|
1153
1122
|
}>;
|
|
1154
1123
|
|
|
1155
|
-
export { type AIDifferentialDiagnosisItem, AddInvestigationField, type AddInvestigationFieldProps, AddMedicationField, type AddMedicationFieldProps, type BaseFieldDef, type BiometryIolWorkupFieldDef, type BiometryIolWorkupValue, type BiometryMethod, type CheckboxFieldDef, type ColumnLayout, type Computation, type Condition, type CreateUploadHandlerOptions, type DataSource, type DiagnosisGradeSelection, type DiagnosisTextareaFieldDef, type DiagnosisTextareaValue, type DiagnosticPackage, type DiagnosticPackageTest, DifferentialDiagnosis, type DifferentialDiagnosisFieldDef, type DifferentialDiagnosisItem, type DifferentialDiagnosisProps, type DoctorFrequentItems, DynamicForm, EMAIL_REGEX, type EditableTableColumnDef, type EditableTableFieldDef, type EventDefinition, type ExtractedKeywordMatch, type FieldDef, type FieldHandler, type FieldHandlersMap, type FieldPrefill, FieldRenderer, type FieldState, type FieldType, type FollowupFieldDef, type FollowupValue, FormControls, type FormControlsProps, type FormDef, type FormErrors, FormProvider, type FormState, FormStore, type FormValues, type FormulaComputation, type FormulaExpr, type FunctionalImpairmentDimension, type FunctionalImpairmentScoreFieldDef, type FunctionalImpairmentScoreValue, type GeneralSurgeryExaminationFieldDef, type GeneralSurgeryGradingFieldDef, type GeneralSurgerySmartHistoryFieldDef, type ImageUploadFieldDef, ImageUploadWidget, type Investigation, type InvestigationFrequentItem, type InvestigationSearchResult, type InvestigationsFieldDef, type LayoutNode, type LensAssessmentFieldDef, type LensAssessmentValue, type LocsGrades, MAR_MEDICATION_ORDERS_META_KEY, type MatchedCondition, type MediaUploadFieldDef, MediaUploadWidget, type Medication, type MedicationFrequentItem, type MedicationSearchResult, type MedicationsFieldDef, type NumberFieldDef, type PainScaleFlagsFieldDef, type Permission, type PresignedUploadResponse, type ProcedureFrequentItem, type ProceduresFieldDef, type RadioFieldDef, ReadOnlyForm, ReadOnlyImageUpload, ReadOnlyMediaUpload, ReadOnlySignature, ReadOnlyTable, type ReferralFieldDef, type ReferralItem, type RepeatableFieldDef, type RichTextFieldDef, RichTextWidget, type Rule, type RuleAction, type RuleResult, type ScoreComputation, type ScoreRange, type Section, type SectionChild, type SelectFieldDef, type SelectOption, type SignatureFieldDef, SignatureUploadWidget, type SliderFieldDef, SmartForm, type SmartFormProps, type SmartKeywordsResult, type SmartTextareaFieldDef, type SmartTextareaValue, SmartTextareaWidget, type StaticTextFieldDef, type StoreConfig, type SubmissionData, type SuggestionTextareaFieldDef, type SumComputation, type SurgicalRiskFlagsFieldDef, type SurgicalRiskFlagsValue, type TextFieldDef, type ToggleFieldDef, type
|
|
1124
|
+
export { type AIDifferentialDiagnosisItem, AddInvestigationField, type AddInvestigationFieldProps, AddMedicationField, type AddMedicationFieldProps, type BaseFieldDef, type BiometryIolWorkupFieldDef, type BiometryIolWorkupValue, type BiometryMethod, type CheckboxFieldDef, type ColumnLayout, type Computation, type Condition, type CreateUploadHandlerOptions, type DataSource, type DiagnosisGradeSelection, type DiagnosisTextareaFieldDef, type DiagnosisTextareaValue, type DiagnosticPackage, type DiagnosticPackageTest, DifferentialDiagnosis, type DifferentialDiagnosisFieldDef, type DifferentialDiagnosisItem, type DifferentialDiagnosisProps, type DoctorFrequentItems, DynamicForm, EMAIL_REGEX, type EditableTableColumnDef, type EditableTableFieldDef, type EventDefinition, type ExtractedKeywordMatch, type FieldDef, type FieldHandler, type FieldHandlersMap, type FieldPrefill, FieldRenderer, type FieldState, type FieldType, type FollowupFieldDef, type FollowupValue, FormControls, type FormControlsProps, type FormDef, type FormErrors, FormProvider, type FormState, FormStore, type FormValues, type FormulaComputation, type FormulaExpr, type FunctionalImpairmentDimension, type FunctionalImpairmentScoreFieldDef, type FunctionalImpairmentScoreValue, type GeneralSurgeryExaminationFieldDef, type GeneralSurgeryGradingFieldDef, type GeneralSurgerySmartHistoryFieldDef, type ImageUploadFieldDef, ImageUploadWidget, type Investigation, type InvestigationFrequentItem, type InvestigationSearchResult, type InvestigationsFieldDef, type LayoutNode, type LensAssessmentFieldDef, type LensAssessmentValue, type LocsGrades, MAR_MEDICATION_ORDERS_META_KEY, type MatchedCondition, type MediaUploadFieldDef, MediaUploadWidget, type Medication, type MedicationFrequentItem, type MedicationSearchResult, type MedicationsFieldDef, type NumberFieldDef, type PainScaleFlagsFieldDef, type Permission, type PresignedUploadResponse, type ProcedureFrequentItem, type ProceduresFieldDef, type RadioFieldDef, ReadOnlyForm, ReadOnlyImageUpload, ReadOnlyMediaUpload, ReadOnlySignature, ReadOnlyTable, type ReferralFieldDef, type ReferralItem, type RepeatableFieldDef, type RichTextFieldDef, RichTextWidget, type Rule, type RuleAction, type RuleResult, type ScoreComputation, type ScoreRange, type Section, type SectionChild, type SelectFieldDef, type SelectOption, type SignatureFieldDef, SignatureUploadWidget, type SliderFieldDef, SmartForm, type SmartFormProps, type SmartKeywordsResult, type SmartTextareaFieldDef, type SmartTextareaValue, SmartTextareaWidget, type StaticTextFieldDef, type StoreConfig, type SubmissionData, type SuggestionTextareaFieldDef, type SumComputation, type SurgicalRiskFlagsFieldDef, type SurgicalRiskFlagsValue, type TextFieldDef, type ToggleFieldDef, type ValidationRule, type VitalsFieldDef, type WebhookDef, type Workflow, type WorkflowTransition, createUploadHandler, evaluateRules, fieldMetaRequestsMarMedicationOrdersButton, useField, useFieldHandlers, useForm, useFormStore, useFrequentItems, usePackages, useSmartKeywords, validateField, validateForm };
|
package/dist/index.d.ts
CHANGED
|
@@ -415,22 +415,6 @@ interface PainScaleFlagsFieldDef extends BaseFieldDef {
|
|
|
415
415
|
step?: number;
|
|
416
416
|
options?: SelectOption[];
|
|
417
417
|
}
|
|
418
|
-
/** Urology OPD: SOCRATES, IPSS/QoL, haematuria, sexual history, past notes (panel visibility from chips/syndrome). */
|
|
419
|
-
interface UrologySmartHistoryFieldDef extends BaseFieldDef {
|
|
420
|
-
type: 'urology_smart_history';
|
|
421
|
-
}
|
|
422
|
-
/** Urology OPD: general / abdomen / GU / DRE + notes. */
|
|
423
|
-
interface UrologyExaminationFieldDef extends BaseFieldDef {
|
|
424
|
-
type: 'urology_examination';
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* Urology OPD: stone/BPH objectives, uroflow, risk (Clearsight decision engine).
|
|
428
|
-
* **`meta.subtitle`**: Optional line rendered inside the white body below `label`
|
|
429
|
-
* (e.g. objective scoring description while `label` stays the pink-bar title).
|
|
430
|
-
*/
|
|
431
|
-
interface UrologyPathwayFieldDef extends BaseFieldDef {
|
|
432
|
-
type: 'urology_pathway';
|
|
433
|
-
}
|
|
434
418
|
interface MedicationFrequentItem {
|
|
435
419
|
id: string;
|
|
436
420
|
name: string;
|
|
@@ -489,7 +473,7 @@ interface DiagnosticPackage {
|
|
|
489
473
|
department?: string;
|
|
490
474
|
tests: DiagnosticPackageTest[];
|
|
491
475
|
}
|
|
492
|
-
type FieldDef = TextFieldDef | RichTextFieldDef | NumberFieldDef | SliderFieldDef | SelectFieldDef | RadioFieldDef | CheckboxFieldDef | RepeatableFieldDef | ImageUploadFieldDef | MediaUploadFieldDef | SignatureFieldDef | EditableTableFieldDef | StaticTextFieldDef | MedicationsFieldDef | InvestigationsFieldDef | ProceduresFieldDef | DifferentialDiagnosisFieldDef | VitalsFieldDef | ReferralFieldDef | FollowupFieldDef | SmartTextareaFieldDef | DiagnosisTextareaFieldDef | SuggestionTextareaFieldDef | LensAssessmentFieldDef | FunctionalImpairmentScoreFieldDef | ToggleFieldDef | BiometryIolWorkupFieldDef | SurgicalRiskFlagsFieldDef | GeneralSurgerySmartHistoryFieldDef | GeneralSurgeryExaminationFieldDef | GeneralSurgeryGradingFieldDef | PainScaleFlagsFieldDef |
|
|
476
|
+
type FieldDef = TextFieldDef | RichTextFieldDef | NumberFieldDef | SliderFieldDef | SelectFieldDef | RadioFieldDef | CheckboxFieldDef | RepeatableFieldDef | ImageUploadFieldDef | MediaUploadFieldDef | SignatureFieldDef | EditableTableFieldDef | StaticTextFieldDef | MedicationsFieldDef | InvestigationsFieldDef | ProceduresFieldDef | DifferentialDiagnosisFieldDef | VitalsFieldDef | ReferralFieldDef | FollowupFieldDef | SmartTextareaFieldDef | DiagnosisTextareaFieldDef | SuggestionTextareaFieldDef | LensAssessmentFieldDef | FunctionalImpairmentScoreFieldDef | ToggleFieldDef | BiometryIolWorkupFieldDef | SurgicalRiskFlagsFieldDef | GeneralSurgerySmartHistoryFieldDef | GeneralSurgeryExaminationFieldDef | GeneralSurgeryGradingFieldDef | PainScaleFlagsFieldDef | BaseFieldDef;
|
|
493
477
|
/** Boolean switch; value is `true` | `false`. */
|
|
494
478
|
interface ToggleFieldDef extends BaseFieldDef {
|
|
495
479
|
type: 'toggle';
|
|
@@ -633,21 +617,6 @@ interface FormState {
|
|
|
633
617
|
declare const MAR_MEDICATION_ORDERS_META_KEY: "mar_medication_orders";
|
|
634
618
|
declare function fieldMetaRequestsMarMedicationOrdersButton(meta: Record<string, unknown> | undefined): boolean;
|
|
635
619
|
|
|
636
|
-
/** Template shape used for urology detection (submitted schema / API template). */
|
|
637
|
-
type UrologyTemplateRef = Pick<FormDef, 'id' | 'meta'> & {
|
|
638
|
-
specialization?: string;
|
|
639
|
-
};
|
|
640
|
-
/** True when prescription template targets urology (Clearsight OPD parity). */
|
|
641
|
-
declare function isUrologyTemplate(template?: UrologyTemplateRef): boolean;
|
|
642
|
-
/** Urology OPD: fold pathway when template matches or serialized values contain urology fields. */
|
|
643
|
-
declare function shouldFoldUrologyClinicalPathway(template: UrologyTemplateRef, payload: Record<string, unknown>): boolean;
|
|
644
|
-
/**
|
|
645
|
-
* Moves top-level chief complaint + urology pathway fields into structured
|
|
646
|
-
* metadata.clinical_pathways.urology (parity with orthopedic_exam pathway).
|
|
647
|
-
* Called from FormStore serialization so the host dashboard can forward payloads as-is.
|
|
648
|
-
*/
|
|
649
|
-
declare function attachUrologyClinicalPathwayMetadata(payload: Record<string, unknown>, template: UrologyTemplateRef): void;
|
|
650
|
-
|
|
651
620
|
interface SavedState {
|
|
652
621
|
values: FormValues;
|
|
653
622
|
meta: {
|
|
@@ -1152,4 +1121,4 @@ declare const SmartTextareaWidget: React.FC<{
|
|
|
1152
1121
|
fieldId: string;
|
|
1153
1122
|
}>;
|
|
1154
1123
|
|
|
1155
|
-
export { type AIDifferentialDiagnosisItem, AddInvestigationField, type AddInvestigationFieldProps, AddMedicationField, type AddMedicationFieldProps, type BaseFieldDef, type BiometryIolWorkupFieldDef, type BiometryIolWorkupValue, type BiometryMethod, type CheckboxFieldDef, type ColumnLayout, type Computation, type Condition, type CreateUploadHandlerOptions, type DataSource, type DiagnosisGradeSelection, type DiagnosisTextareaFieldDef, type DiagnosisTextareaValue, type DiagnosticPackage, type DiagnosticPackageTest, DifferentialDiagnosis, type DifferentialDiagnosisFieldDef, type DifferentialDiagnosisItem, type DifferentialDiagnosisProps, type DoctorFrequentItems, DynamicForm, EMAIL_REGEX, type EditableTableColumnDef, type EditableTableFieldDef, type EventDefinition, type ExtractedKeywordMatch, type FieldDef, type FieldHandler, type FieldHandlersMap, type FieldPrefill, FieldRenderer, type FieldState, type FieldType, type FollowupFieldDef, type FollowupValue, FormControls, type FormControlsProps, type FormDef, type FormErrors, FormProvider, type FormState, FormStore, type FormValues, type FormulaComputation, type FormulaExpr, type FunctionalImpairmentDimension, type FunctionalImpairmentScoreFieldDef, type FunctionalImpairmentScoreValue, type GeneralSurgeryExaminationFieldDef, type GeneralSurgeryGradingFieldDef, type GeneralSurgerySmartHistoryFieldDef, type ImageUploadFieldDef, ImageUploadWidget, type Investigation, type InvestigationFrequentItem, type InvestigationSearchResult, type InvestigationsFieldDef, type LayoutNode, type LensAssessmentFieldDef, type LensAssessmentValue, type LocsGrades, MAR_MEDICATION_ORDERS_META_KEY, type MatchedCondition, type MediaUploadFieldDef, MediaUploadWidget, type Medication, type MedicationFrequentItem, type MedicationSearchResult, type MedicationsFieldDef, type NumberFieldDef, type PainScaleFlagsFieldDef, type Permission, type PresignedUploadResponse, type ProcedureFrequentItem, type ProceduresFieldDef, type RadioFieldDef, ReadOnlyForm, ReadOnlyImageUpload, ReadOnlyMediaUpload, ReadOnlySignature, ReadOnlyTable, type ReferralFieldDef, type ReferralItem, type RepeatableFieldDef, type RichTextFieldDef, RichTextWidget, type Rule, type RuleAction, type RuleResult, type ScoreComputation, type ScoreRange, type Section, type SectionChild, type SelectFieldDef, type SelectOption, type SignatureFieldDef, SignatureUploadWidget, type SliderFieldDef, SmartForm, type SmartFormProps, type SmartKeywordsResult, type SmartTextareaFieldDef, type SmartTextareaValue, SmartTextareaWidget, type StaticTextFieldDef, type StoreConfig, type SubmissionData, type SuggestionTextareaFieldDef, type SumComputation, type SurgicalRiskFlagsFieldDef, type SurgicalRiskFlagsValue, type TextFieldDef, type ToggleFieldDef, type
|
|
1124
|
+
export { type AIDifferentialDiagnosisItem, AddInvestigationField, type AddInvestigationFieldProps, AddMedicationField, type AddMedicationFieldProps, type BaseFieldDef, type BiometryIolWorkupFieldDef, type BiometryIolWorkupValue, type BiometryMethod, type CheckboxFieldDef, type ColumnLayout, type Computation, type Condition, type CreateUploadHandlerOptions, type DataSource, type DiagnosisGradeSelection, type DiagnosisTextareaFieldDef, type DiagnosisTextareaValue, type DiagnosticPackage, type DiagnosticPackageTest, DifferentialDiagnosis, type DifferentialDiagnosisFieldDef, type DifferentialDiagnosisItem, type DifferentialDiagnosisProps, type DoctorFrequentItems, DynamicForm, EMAIL_REGEX, type EditableTableColumnDef, type EditableTableFieldDef, type EventDefinition, type ExtractedKeywordMatch, type FieldDef, type FieldHandler, type FieldHandlersMap, type FieldPrefill, FieldRenderer, type FieldState, type FieldType, type FollowupFieldDef, type FollowupValue, FormControls, type FormControlsProps, type FormDef, type FormErrors, FormProvider, type FormState, FormStore, type FormValues, type FormulaComputation, type FormulaExpr, type FunctionalImpairmentDimension, type FunctionalImpairmentScoreFieldDef, type FunctionalImpairmentScoreValue, type GeneralSurgeryExaminationFieldDef, type GeneralSurgeryGradingFieldDef, type GeneralSurgerySmartHistoryFieldDef, type ImageUploadFieldDef, ImageUploadWidget, type Investigation, type InvestigationFrequentItem, type InvestigationSearchResult, type InvestigationsFieldDef, type LayoutNode, type LensAssessmentFieldDef, type LensAssessmentValue, type LocsGrades, MAR_MEDICATION_ORDERS_META_KEY, type MatchedCondition, type MediaUploadFieldDef, MediaUploadWidget, type Medication, type MedicationFrequentItem, type MedicationSearchResult, type MedicationsFieldDef, type NumberFieldDef, type PainScaleFlagsFieldDef, type Permission, type PresignedUploadResponse, type ProcedureFrequentItem, type ProceduresFieldDef, type RadioFieldDef, ReadOnlyForm, ReadOnlyImageUpload, ReadOnlyMediaUpload, ReadOnlySignature, ReadOnlyTable, type ReferralFieldDef, type ReferralItem, type RepeatableFieldDef, type RichTextFieldDef, RichTextWidget, type Rule, type RuleAction, type RuleResult, type ScoreComputation, type ScoreRange, type Section, type SectionChild, type SelectFieldDef, type SelectOption, type SignatureFieldDef, SignatureUploadWidget, type SliderFieldDef, SmartForm, type SmartFormProps, type SmartKeywordsResult, type SmartTextareaFieldDef, type SmartTextareaValue, SmartTextareaWidget, type StaticTextFieldDef, type StoreConfig, type SubmissionData, type SuggestionTextareaFieldDef, type SumComputation, type SurgicalRiskFlagsFieldDef, type SurgicalRiskFlagsValue, type TextFieldDef, type ToggleFieldDef, type ValidationRule, type VitalsFieldDef, type WebhookDef, type Workflow, type WorkflowTransition, createUploadHandler, evaluateRules, fieldMetaRequestsMarMedicationOrdersButton, useField, useFieldHandlers, useForm, useFormStore, useFrequentItems, usePackages, useSmartKeywords, validateField, validateForm };
|