Skip to content

Commit

Permalink
(chore) Bump form engine lib (#356)
Browse files Browse the repository at this point in the history
* chore: up esm-form-engine-lib

* fix: fix diff on types FormSchema and Schema
  • Loading branch information
usamaidrsk authored Oct 25, 2024
1 parent 3a3aaef commit 31ab9c4
Show file tree
Hide file tree
Showing 2 changed files with 5,769 additions and 7,792 deletions.
6 changes: 4 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export interface Schema {
isExpanded: string;
questions: Array<{
id: string;
label: string;
label?: string;
value?:string;
type: string;
required?: string | boolean | RequiredFieldProps;
questionOptions: {
Expand Down Expand Up @@ -115,7 +116,8 @@ export interface Section {

export interface Question {
id: string;
label: string;
label?: string;
value?:string;
type: string;
questionOptions: QuestionOptions;
datePickerFormat?: DatePickerType;
Expand Down
Loading

0 comments on commit 31ab9c4

Please sign in to comment.