@kbgarcia8/react-dynamic-form 1.1.36 → 1.1.38
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/components/atoms/Button/Button.d.ts +1 -1
- package/dist/components/atoms/Button/Button.d.ts.map +1 -1
- package/dist/components/molecules/NestedEditableOption/NestedEditableOption.d.ts.map +1 -1
- package/dist/components/organisms/DynamicForm/DynamicForm.d.ts.map +1 -1
- package/dist/react-dynamic-form.cjs.js +50 -50
- package/dist/react-dynamic-form.es.js +222 -228
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ButtonProps } from "../../../type/propTypes";
|
|
2
|
-
declare const Button: ({ onClick, id, buttonType, source, svg, alt, text, className, dataAttributes
|
|
2
|
+
declare const Button: ({ onClick, id, buttonType, source, svg, alt, text, className, dataAttributes }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Button;
|
|
4
4
|
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Button/Button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,QAAA,MAAM,MAAM,GAAI,
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Button/Button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,QAAA,MAAM,MAAM,GAAI,gFAUd,WAAW,4CAgBZ,CAAA;AAED,eAAe,MAAM,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NestedEditableOption.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/NestedEditableOption/NestedEditableOption.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AAGzE,QAAA,MAAM,oBAAoB,GAAI,uIAS5B,yBAAyB,
|
|
1
|
+
{"version":3,"file":"NestedEditableOption.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/NestedEditableOption/NestedEditableOption.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AAGzE,QAAA,MAAM,oBAAoB,GAAI,uIAS5B,yBAAyB,4CA8B1B,CAAA;AAED,eAAe,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamicForm.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/DynamicForm/DynamicForm.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,KAAK,EAAgB,gBAAgB,EAA+D,MAAM,yBAAyB,CAAC;AAE3I,QAAA,MAAM,WAAW,GAAI,mTAuBnB,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,
|
|
1
|
+
{"version":3,"file":"DynamicForm.d.ts","sourceRoot":"","sources":["../../../../src/components/organisms/DynamicForm/DynamicForm.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,KAAK,EAAgB,gBAAgB,EAA+D,MAAM,yBAAyB,CAAC;AAE3I,QAAA,MAAM,WAAW,GAAI,mTAuBnB,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,4CAmJ1C,CAAA;AAGD,eAAe,WAAW,CAAC"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),F=require("react"),c=require("styled-components"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),F=require("react"),c=require("styled-components"),t={fonts:{secondary:"Raleway",tertiary:"Lato",fallback:"system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif"},fontWeight:{light:300,medium:500,bold:700,bolder:900},fontSize:{xsmall:"0.75rem"},spacing:{xxxsmall:"0.25rem",xxsmall:"0.375rem",xsmall:"0.5rem",small:"0.75rem",medium:"1.25rem"},borderRadius:{xsmall:"0.125rem",small:"0.25rem",xlarge:"2rem"},borderThickness:{thin:"0.0625rem",light:"0.125rem"}},K=c.button`
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
justify-content: center;
|
|
5
|
-
background-color: ${({theme:
|
|
6
|
-
color: ${({theme:
|
|
7
|
-
border: ${
|
|
8
|
-
border-radius: ${
|
|
9
|
-
padding: ${
|
|
5
|
+
background-color: ${({theme:a})=>a.colors.blue||"blue"};
|
|
6
|
+
color: ${({theme:a})=>a.colors.bg||"white"};
|
|
7
|
+
border: ${t.borderThickness.light} solid ${({theme:a})=>a.colors.text||"black"};
|
|
8
|
+
border-radius: ${t.borderRadius.xlarge};
|
|
9
|
+
padding: ${t.spacing.xxxsmall} ${t.spacing.small};
|
|
10
10
|
margin: 0.125rem;
|
|
11
11
|
width: auto;
|
|
12
12
|
cursor: pointer;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
&:hover {
|
|
16
16
|
background-color: lightblue;
|
|
17
|
-
border: ${
|
|
17
|
+
border: ${t.borderThickness.light} solid gray;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
& .button-icon-text-space {
|
|
@@ -33,21 +33,21 @@
|
|
|
33
33
|
`,V=c.img`
|
|
34
34
|
maxwidth: 100%;
|
|
35
35
|
`,X=c.span`
|
|
36
|
-
font-size: ${
|
|
37
|
-
font-weight: ${
|
|
38
|
-
font-family: ${
|
|
36
|
+
font-size: ${t.fontSize.xsmall};
|
|
37
|
+
font-weight: ${t.fontWeight.medium};
|
|
38
|
+
font-family: ${t.fonts.tertiary}, ${t.fonts.fallback};
|
|
39
39
|
display: flex;
|
|
40
40
|
align-items: center;
|
|
41
41
|
justify-content: center;
|
|
42
|
-
`,f=({onClick:
|
|
42
|
+
`,f=({onClick:a,id:o,buttonType:s,source:i,svg:m,alt:r="alt-button-icon",text:d="",className:b="",dataAttributes:h={}})=>e.jsx(K,{onClick:a,id:o,type:s,className:b,...h,children:e.jsxs(Q,{className:"button-icon-text-space",children:[i?e.jsx(V,{src:i,alt:r}):m||"",d&&e.jsx(X,{id:o,children:d})]})}),Y=c.div`
|
|
43
43
|
display: flex;
|
|
44
44
|
flex-direction: column;
|
|
45
45
|
align-items: left;
|
|
46
46
|
width: 100%;
|
|
47
|
-
margin-bottom: ${
|
|
47
|
+
margin-bottom: ${t.spacing.small};
|
|
48
48
|
`,Z=c.div`
|
|
49
49
|
display: flex;
|
|
50
|
-
gap: ${
|
|
50
|
+
gap: ${t.spacing.xsmall};
|
|
51
51
|
width: auto;
|
|
52
52
|
height: auto;
|
|
53
53
|
`,_=c.label`
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
align-items: center;
|
|
56
56
|
justify-content:center;
|
|
57
57
|
height: auto;
|
|
58
|
-
flex-direction: ${
|
|
59
|
-
font-family: ${
|
|
60
|
-
font-size: ${
|
|
61
|
-
font-weight: ${
|
|
62
|
-
gap: ${
|
|
58
|
+
flex-direction: ${a=>a.$labelFlexDirection||"column"};
|
|
59
|
+
font-family: ${t.fonts.secondary}, ${t.fonts.fallback};
|
|
60
|
+
font-size: ${t.fontSize.xsmall};
|
|
61
|
+
font-weight: ${t.fontWeight.bold};
|
|
62
|
+
gap: ${t.spacing.xxsmall};
|
|
63
63
|
|
|
64
64
|
& .label-icon-container img,
|
|
65
65
|
& .label-icon-container svg {
|
|
@@ -72,82 +72,82 @@
|
|
|
72
72
|
flex-direction: column;
|
|
73
73
|
align-items: center;
|
|
74
74
|
justify-content: center;
|
|
75
|
-
gap: ${
|
|
75
|
+
gap: ${t.spacing.xxxsmall};
|
|
76
76
|
`,ee=c.span`
|
|
77
|
-
font-weight: ${
|
|
77
|
+
font-weight: ${t.fontWeight.bolder};
|
|
78
78
|
`,te=c.div`
|
|
79
79
|
max-width: 100%;
|
|
80
80
|
display: flex;
|
|
81
81
|
align-items: center;
|
|
82
82
|
`,ae=c.span`
|
|
83
|
-
font-weight: ${
|
|
84
|
-
`,
|
|
83
|
+
font-weight: ${t.fontWeight.light};
|
|
84
|
+
`,R=({htmlFor:a,textLabel:o,additionalInfo:s,$labelFlexDirection:i,source:m,svg:r,className:d,children:b})=>e.jsxs(_,{htmlFor:a,className:d,$labelFlexDirection:i,children:[(m||r)&&e.jsx(te,{className:"label-icon-container",children:m?e.jsx("img",{src:m,alt:`${a}-label-icon`}):r||""}),e.jsxs(I,{className:"label-text-container",children:[e.jsx(ee,{className:"main-label",children:o}),s&&e.jsx(ae,{className:"additional-info",children:s})]}),b]}),B=c.input`
|
|
85
85
|
display: flex;
|
|
86
86
|
place-content: center;
|
|
87
|
-
font-family: ${
|
|
88
|
-
font-size: ${
|
|
87
|
+
font-family: ${t.fonts.secondary}, ${t.fonts.fallback};
|
|
88
|
+
font-size: ${t.fontSize.xsmall};
|
|
89
89
|
line-height: 1.75;
|
|
90
|
-
padding: ${
|
|
90
|
+
padding: ${t.spacing.xxxsmall} ${t.spacing.xsmall};
|
|
91
91
|
max-width: 100%;
|
|
92
92
|
height: auto;
|
|
93
93
|
background-color: #FFFFFF;
|
|
94
94
|
outline: none;
|
|
95
|
-
border: ${
|
|
96
|
-
border-radius: ${
|
|
95
|
+
border: ${t.borderThickness.thin} solid #000000;
|
|
96
|
+
border-radius: ${t.borderRadius.xsmall};
|
|
97
97
|
|
|
98
98
|
&:focus{
|
|
99
|
-
border: ${
|
|
99
|
+
border: ${t.borderThickness.thin} solid ${({theme:a})=>a.colors.teal};
|
|
100
100
|
}
|
|
101
101
|
`,ne=c.textarea`
|
|
102
102
|
display: flex;
|
|
103
103
|
place-content: center;
|
|
104
|
-
border: ${
|
|
105
|
-
border-radius: ${
|
|
104
|
+
border: ${t.borderThickness.light} solid ${({theme:a})=>a.colors.text};
|
|
105
|
+
border-radius: ${t.borderRadius.small};
|
|
106
106
|
outline: none;
|
|
107
|
-
line-height: ${
|
|
108
|
-
padding: ${
|
|
109
|
-
font-family: ${
|
|
110
|
-
font-size: ${
|
|
107
|
+
line-height: ${t.spacing.small};
|
|
108
|
+
padding: ${t.spacing.xxxsmall};
|
|
109
|
+
font-family: ${t.fonts.secondary}, ${t.fonts.fallback};
|
|
110
|
+
font-size: ${t.fontSize.xsmall};
|
|
111
111
|
max-width: 100%;
|
|
112
112
|
resize: none;
|
|
113
113
|
overflow-y: auto;
|
|
114
|
-
`,A=F.forwardRef((
|
|
114
|
+
`,A=F.forwardRef((a,o)=>{const{type:s,id:i,onChange:m,isRequired:r,dataAttributes:d={},disabled:b,className:h}=a;if(s==="textarea"){const{rows:y=5,cols:N=30,value:E,...v}=a;return e.jsx(ne,{onChange:m,value:E,rows:y,cols:N,className:h,ref:o,disabled:b,required:r,...v,...d})}if(s==="radio"||s==="checkbox"){const{checked:y,...N}=a;return e.jsx(B,{ref:o,checked:y,onChange:m,disabled:b,className:h,...N,...d})}const u=a,{value:j,pattern:$,placeholderText:k,...C}=u;return e.jsx(B,{placeholder:k,onChange:m,value:j,required:r,className:h,ref:o,disabled:b,pattern:$,...C,...d})}),w=a=>{const{className:o,type:s,id:i,textLabel:m,additionalInfo:r,$labelFlexDirection:d,svg:b,labelClass:h,onChange:u,isRequired:j,dataAttributes:$,inputClass:k,ref:C,disabled:y,isEditable:N,editIcon:E,onClickEdit:v,deleteIcon:D,onClickDelete:S,idx:T,children:q}=a;return e.jsxs(Y,{className:`${o} ${i.replace("#","")}-label-input-container`,children:[s!=="radio"&&s!=="checkbox"&&e.jsx(R,{htmlFor:i,textLabel:m,additionalInfo:r,$labelFlexDirection:d,svg:b,className:h}),s!=="radio"&&s!=="checkbox"&&s==="textarea"&&(()=>{const{rows:n=5,cols:g=30,value:l,...p}=a;return e.jsx(A,{id:i,name:i,type:"textarea",isRequired:j,onChange:u,value:l,rows:n,cols:g,dataAttributes:$,className:k,ref:C,disabled:y})})(),s!=="radio"&&s!=="checkbox"&&s!=="textarea"&&(()=>{const n=a,{value:g,pattern:l,placeholderText:p,...z}=n;return e.jsx(A,{id:i,name:i,placeholderText:p,onChange:u,value:g,type:s,isRequired:j,dataAttributes:$,className:k,ref:C,disabled:y,pattern:l})})(),(s==="radio"||s==="checkbox")&&(()=>{const{checked:n,...g}=a;return e.jsxs(e.Fragment,{children:[e.jsx(A,{ref:C,type:s,name:i,id:i,isRequired:j,checked:n,onChange:u,disabled:y,className:k,dataAttributes:$}),e.jsx(R,{htmlFor:i,textLabel:m,additionalInfo:r,$labelFlexDirection:d,svg:b,className:h})]})})(),N&&e.jsxs(Z,{className:"input-edit-buttons",children:[e.jsx(f,{id:`editable-${i}-edit-btn`,svg:E,buttonType:"button",onClick:v,className:`edit-radio-${T}`,dataAttributes:$}),e.jsx(f,{id:`editable-${i}-delete-btn`,svg:D,buttonType:"button",onClick:S,className:`delete-radio-${T}`,dataAttributes:$})]}),q]})},se=c.fieldset`
|
|
115
115
|
padding: 0;
|
|
116
116
|
height: auto;
|
|
117
117
|
width: 100%;
|
|
118
|
-
`,
|
|
119
|
-
font-size: ${
|
|
118
|
+
`,oe=c.legend`
|
|
119
|
+
font-size: ${t.spacing.medium};
|
|
120
120
|
font-weight: 500;
|
|
121
|
-
margin: 0 auto ${
|
|
121
|
+
margin: 0 auto ${t.spacing.small} auto;
|
|
122
122
|
text-align: center;
|
|
123
|
-
font-family: ${
|
|
123
|
+
font-family: ${t.fonts.secondary}, ${t.fonts.fallback};
|
|
124
124
|
`,ie=c.div`
|
|
125
125
|
display: flex;
|
|
126
126
|
flex-direction: column;
|
|
127
127
|
align-items: flex-start;
|
|
128
128
|
width: 100%;
|
|
129
|
-
margin-bottom: ${
|
|
129
|
+
margin-bottom: ${t.spacing.small};
|
|
130
130
|
`,le=c.div`
|
|
131
131
|
display: flex;
|
|
132
132
|
justify-content: space-between;
|
|
133
133
|
width: 100%;
|
|
134
|
-
`,P=({legend:
|
|
134
|
+
`,P=({legend:a,fieldsetIndex:o,idx:s,editableInformation:i,onChangeOfEditableOption:m,onClickSaveEdit:r,onClickCancelEdit:d,onClickDeleteEntry:b})=>e.jsxs(se,{className:"editable-option-fieldset",children:[e.jsx(oe,{children:`${a} ${s+1}`}),i?.map((h,u)=>e.jsx(ie,{className:"editable-option-container",children:e.jsx(A,{id:`editable-option-${u}`,name:`editable-option-${u}`,placeholderText:h.name.charAt(0).toUpperCase()+h.name.slice(1),onChange:m,value:h.info,type:h.type,isRequired:!0,className:"editable-option",dataAttributes:{"data-index":u,"data-fieldsetindex":o,"data-key":h.info}})},`${h.name}-${u}`)),e.jsxs(le,{className:"editable-option-button-space",children:[e.jsx(f,{id:`editable-option-${s}-submit`,buttonType:"button",text:"Save",onClick:r,className:"editable-option-btn",dataAttributes:{"data-index":s,"data-fieldsetindex":o}}),e.jsx(f,{id:`editable-option-${s}-cancel`,buttonType:"button",text:"Cancel",onClick:d,className:"editable-option-btn",dataAttributes:{"data-index":s,"data-fieldsetindex":o}}),e.jsx(f,{id:`editable-option-${s}-delete`,buttonType:"button",text:"Delete",onClick:b,className:"editable-option-btn",dataAttributes:{"data-index":s,"data-fieldsetindex":o}})]})]}),ce=c.div`
|
|
135
135
|
display: flex;
|
|
136
136
|
justify-content: space-between;
|
|
137
137
|
max-width: 100%;
|
|
138
|
-
`,re=({id:
|
|
139
|
-
font-size: ${
|
|
138
|
+
`,re=({id:a,hasSubmit:o,submitText:s,handleSubmit:i,hasReset:m,resetText:r,handleReset:d,hasCancel:b,cancelText:h,handleCancel:u})=>e.jsxs(ce,{className:"form-main-button-container",children:[o&&e.jsx(f,{id:`form-${a}-submit`,buttonType:"submit",text:s??"Submit",onClick:i,className:"submit-form-btn"}),m&&e.jsx(f,{id:`form-${a}-edit`,buttonType:"button",text:r??"Reset",onClick:d,className:"reset-form-btn"}),b&&e.jsx(f,{id:`form-${a}-cancel`,buttonType:"button",text:h??"Cancel",onClick:u,className:"cancel-form-btn"})]}),W=c.legend`
|
|
139
|
+
font-size: ${t.spacing.medium};
|
|
140
140
|
font-weight: 500;
|
|
141
|
-
margin-bottom: ${
|
|
141
|
+
margin-bottom: ${t.spacing.small};
|
|
142
142
|
width: auto;
|
|
143
143
|
text-align: center;
|
|
144
|
-
font-family: ${
|
|
144
|
+
font-family: ${t.fonts.secondary}, ${t.fonts.fallback};
|
|
145
145
|
`,M=c.fieldset`
|
|
146
146
|
padding: 0;
|
|
147
147
|
height: auto;
|
|
148
148
|
width: 100%;
|
|
149
149
|
`,U=c.div`
|
|
150
|
-
padding: ${
|
|
150
|
+
padding: ${t.spacing.small};
|
|
151
151
|
height: auto;
|
|
152
152
|
width: 100%;
|
|
153
153
|
`,O=c.div`
|
|
@@ -156,9 +156,9 @@
|
|
|
156
156
|
align-items: center;
|
|
157
157
|
width: 100%;
|
|
158
158
|
height: auto;
|
|
159
|
-
font-family: ${
|
|
160
|
-
font-size: ${
|
|
161
|
-
font-weight: ${
|
|
159
|
+
font-family: ${t.fonts.tertiary}, ${t.fonts.fallback};
|
|
160
|
+
font-size: ${t.fontSize.xsmall};
|
|
161
|
+
font-weight: ${t.fontWeight.bold};
|
|
162
162
|
`,de=c.form`
|
|
163
163
|
display: flex;
|
|
164
164
|
flex-direction: column;
|
|
@@ -174,4 +174,4 @@
|
|
|
174
174
|
flex-direction: column;
|
|
175
175
|
align-items: center;
|
|
176
176
|
justify-content: center;
|
|
177
|
-
`,xe=({fieldsets:
|
|
177
|
+
`,xe=({fieldsets:a=null,legendText:o,isExpandable:s,id:i,formInputs:m,labelAndInputContainerClass:r,labelClass:d,inputClass:b,onChangeOfEditableOption:h,handleAddingInputEntry:u,hasSubmit:j=!1,submitText:$,handleSubmit:k,hasReset:C=!1,resetText:y,handleReset:N,hasCancel:E=!1,cancelText:v,handleCancel:D,handleSubmitForm:S,className:T,children:q})=>e.jsxs(de,{id:`${i}-form`,className:T,onSubmit:S,children:[a?a.map((n,g)=>e.jsxs(U,{className:`${i}-fieldset-wrapper`,children:[e.jsxs(M,{id:`${i}-form-fieldset-${g}`,className:`${n.legend}-fieldset`,children:[n.legend&&e.jsx(W,{className:`${n.legend}-legend`,children:n.legend}),n.inputs.length!==0?n.inputs.map((l,p)=>e.jsxs(F.Fragment,{children:[l.type==="textarea"&&e.jsx(w,{...l,id:l.id??`${n.legend}-input`,labelClass:d,inputClass:b,idx:p,className:`${r} ${l?.uniqueClass}`}),l.type!=="textarea"&&l.type!=="radio"&&l.type!=="checkbox"&&e.jsx(w,{...l,id:l.id??`${n.legend}-input`,labelClass:d,inputClass:b,idx:p,className:`${r} ${l?.uniqueClass}`}),(l.type==="radio"||l.type==="checkbox")&&e.jsxs(e.Fragment,{children:[e.jsx(w,{...l,id:l.id??`${n.legend}-input`,labelClass:d,inputClass:b,idx:p,className:`${r} ${l?.uniqueClass}`}),l.editing&&l.isEditable&&e.jsx(P,{legend:`${n.legend}`,fieldsetIndex:g,idx:p,editableInformation:l?.editableInformation||[],onChangeOfEditableOption:h,onClickSaveEdit:l?.onClickSave||(z=>{}),onClickCancelEdit:l?.onClickCancel||(z=>{}),onClickDeleteEntry:l?.onClickDelete||(z=>{})})]})]},`form-${i}-${p}`)):n.isExpandable?e.jsx(O,{children:`No entry yet on ${n.legend}. Click "+" button to add entry.`}):""]}),n.isExpandable&&e.jsx(H,{className:"add-input-button-space",children:e.jsx(f,{id:`expand-${n.legend}-inputs`,buttonType:"button",text:"+",onClick:u,className:"add-input-entry",dataAttributes:{"data-fieldsetindex":g}})})]},`${n.legend}-${g}`)):e.jsxs(U,{className:`${i}-fieldset-wrapper`,children:[e.jsxs(M,{id:`${i}-form-fieldset`,className:`${o}-fieldset`,children:[o&&e.jsx(W,{className:`${o}-legend`,children:o}),!a&&m&&m.length!==0?m.map((n,g)=>e.jsxs(F.Fragment,{children:[n.type==="textarea"&&e.jsx(w,{...n,id:n.id??`${o}-input`,labelClass:d,inputClass:b,idx:g,className:`${r} ${n?.uniqueClass}`}),n.type!=="textarea"&&n.type!=="radio"&&n.type!=="checkbox"&&e.jsx(w,{...n,id:n.id??`${o}-input`,labelClass:d,inputClass:b,idx:g,className:`${r} ${n?.uniqueClass}`}),(n.type==="radio"||n.type==="checkbox")&&e.jsxs(e.Fragment,{children:[e.jsx(w,{...n,id:n.id??`${o}-input`,labelClass:d,inputClass:b,idx:g,className:`${r} ${n?.uniqueClass}`}),n.editing&&n.isEditable&&e.jsx(P,{legend:`${o}`,idx:g,editableInformation:n?.editableInformation,onChangeOfEditableOption:h,onClickSaveEdit:n?.onClickSave||(l=>{}),onClickCancelEdit:n?.onClickCancel||(l=>{}),onClickDeleteEntry:n?.onClickDelete||(l=>{})})]})]},`form-${i}-${g}`)):s?e.jsx(O,{children:`No entry yet on ${o}. Please click "+" button to add`}):""]}),s&&e.jsx(H,{className:"add-input-button-space",children:e.jsx(f,{id:`expand-${o}-inputs`,buttonType:"button",text:"+",onClick:u,className:"add-input-entry"})})]}),e.jsx(re,{id:i,hasSubmit:j,submitText:$,handleSubmit:k,hasReset:C,resetText:y,handleReset:N,hasCancel:E,cancelText:v,handleCancel:D}),e.jsx(me,{className:"children-container",children:q})]}),be=a=>{const o=/^#([0-9A-Fa-f]{3}){1,2}$/,s=/^rgb(a)?\(\s*\d{1,3}\s*,\s*\d{1,3}\s*,\s*\d{1,3}(?:\s*,\s*(0|1|0?\.\d+))?\s*\)$/;return o.test(a)||s.test(a)||CSS.supports("color",a)},x=a=>{if(!be(a))throw new Error(`Invalid color: ${a}`);return a},he={mobile:"320px",tablet:"768px",desktop:"992px",largeDesktop:"1200px",largerDesktop:"1400px"},G={name:"light",colors:{text:x("#333446"),bg:x("#EEEEEE"),blue:x("#7F8CAA"),blue2:x("#80A6FF"),teal:x("#5b8280ff"),teal2:x("#AEEAE7"),gray:x("#AEAEAE"),information:x("#202234"),success:x("#123524"),warning:x("#F2C265"),error:x("#990000")}},J={name:"dark",colors:{bg:x("#333446"),text:x("#EEEEEE"),blue:x("#80A6FF"),blue2:x("#7F8CAA"),teal:x("#AEEAE7"),teal2:x("#5b8280ff"),gray:x("#D0D0DD"),information:x("#C9E6F0"),success:x("#9EDF9C"),warning:x("#FCFFC1"),error:x("#FAD4D4")}},L=F.createContext({}),ue=({children:a,initialTheme:o=G,secondTheme:s=J})=>{const[i,m]=F.useState(o),r=()=>{m(d=>d===o?s:o)};return e.jsx(L.Provider,{value:{currentTheme:i,toggleTheme:r},children:e.jsx(c.ThemeProvider,{theme:i,children:a})})},ge=()=>F.useContext(L);exports.DynamicForm=xe;exports.ThemeContext=L;exports.ThemeContextProvider=ue;exports.breakpoints=he;exports.darkTheme=J;exports.lightTheme=G;exports.useTheme=ge;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as a, jsxs as u, Fragment as R } from "react/jsx-runtime";
|
|
2
2
|
import q, { forwardRef as K, createContext as Q, useState as V, useContext as X } from "react";
|
|
3
3
|
import c, { ThemeProvider as Y } from "styled-components";
|
|
4
|
-
const
|
|
4
|
+
const e = {
|
|
5
5
|
fonts: {
|
|
6
6
|
secondary: "Raleway",
|
|
7
7
|
tertiary: "Lato",
|
|
@@ -36,11 +36,11 @@ const t = {
|
|
|
36
36
|
display: flex;
|
|
37
37
|
align-items: center;
|
|
38
38
|
justify-content: center;
|
|
39
|
-
background-color: ${({ theme:
|
|
40
|
-
color: ${({ theme:
|
|
41
|
-
border: ${
|
|
42
|
-
border-radius: ${
|
|
43
|
-
padding: ${
|
|
39
|
+
background-color: ${({ theme: t }) => t.colors.blue || "blue"};
|
|
40
|
+
color: ${({ theme: t }) => t.colors.bg || "white"};
|
|
41
|
+
border: ${e.borderThickness.light} solid ${({ theme: t }) => t.colors.text || "black"};
|
|
42
|
+
border-radius: ${e.borderRadius.xlarge};
|
|
43
|
+
padding: ${e.spacing.xxxsmall} ${e.spacing.small};
|
|
44
44
|
margin: 0.125rem;
|
|
45
45
|
width: auto;
|
|
46
46
|
cursor: pointer;
|
|
@@ -48,7 +48,7 @@ const t = {
|
|
|
48
48
|
|
|
49
49
|
&:hover {
|
|
50
50
|
background-color: lightblue;
|
|
51
|
-
border: ${
|
|
51
|
+
border: ${e.borderThickness.light} solid gray;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
& .button-icon-text-space {
|
|
@@ -67,35 +67,33 @@ const t = {
|
|
|
67
67
|
`, I = c.img`
|
|
68
68
|
maxwidth: 100%;
|
|
69
69
|
`, ee = c.span`
|
|
70
|
-
font-size: ${
|
|
71
|
-
font-weight: ${
|
|
72
|
-
font-family: ${
|
|
70
|
+
font-size: ${e.fontSize.xsmall};
|
|
71
|
+
font-weight: ${e.fontWeight.medium};
|
|
72
|
+
font-family: ${e.fonts.tertiary}, ${e.fonts.fallback};
|
|
73
73
|
display: flex;
|
|
74
74
|
align-items: center;
|
|
75
75
|
justify-content: center;
|
|
76
|
-
`,
|
|
77
|
-
onClick:
|
|
78
|
-
id:
|
|
76
|
+
`, x = ({
|
|
77
|
+
onClick: t,
|
|
78
|
+
id: i,
|
|
79
79
|
buttonType: o,
|
|
80
|
-
source:
|
|
80
|
+
source: l,
|
|
81
81
|
svg: m,
|
|
82
82
|
alt: r = "alt-button-icon",
|
|
83
83
|
text: d = "",
|
|
84
84
|
className: h = "",
|
|
85
|
-
dataAttributes:
|
|
86
|
-
|
|
87
|
-
}) => /* @__PURE__ */ n(
|
|
85
|
+
dataAttributes: f = {}
|
|
86
|
+
}) => /* @__PURE__ */ a(
|
|
88
87
|
Z,
|
|
89
88
|
{
|
|
90
|
-
|
|
89
|
+
onClick: t,
|
|
90
|
+
id: i,
|
|
91
91
|
type: o,
|
|
92
|
-
onClick: e,
|
|
93
92
|
className: h,
|
|
94
93
|
...f,
|
|
95
|
-
...g,
|
|
96
94
|
children: /* @__PURE__ */ u(_, { className: "button-icon-text-space", children: [
|
|
97
|
-
|
|
98
|
-
d && /* @__PURE__ */
|
|
95
|
+
l ? /* @__PURE__ */ a(I, { src: l, alt: r }) : m || "",
|
|
96
|
+
d && /* @__PURE__ */ a(ee, { id: i, children: d })
|
|
99
97
|
] })
|
|
100
98
|
}
|
|
101
99
|
), te = c.div`
|
|
@@ -103,10 +101,10 @@ const t = {
|
|
|
103
101
|
flex-direction: column;
|
|
104
102
|
align-items: left;
|
|
105
103
|
width: 100%;
|
|
106
|
-
margin-bottom: ${
|
|
104
|
+
margin-bottom: ${e.spacing.small};
|
|
107
105
|
`, ae = c.div`
|
|
108
106
|
display: flex;
|
|
109
|
-
gap: ${
|
|
107
|
+
gap: ${e.spacing.xsmall};
|
|
110
108
|
width: auto;
|
|
111
109
|
height: auto;
|
|
112
110
|
`, ne = c.label`
|
|
@@ -114,11 +112,11 @@ const t = {
|
|
|
114
112
|
align-items: center;
|
|
115
113
|
justify-content:center;
|
|
116
114
|
height: auto;
|
|
117
|
-
flex-direction: ${(
|
|
118
|
-
font-family: ${
|
|
119
|
-
font-size: ${
|
|
120
|
-
font-weight: ${
|
|
121
|
-
gap: ${
|
|
115
|
+
flex-direction: ${(t) => t.$labelFlexDirection || "column"};
|
|
116
|
+
font-family: ${e.fonts.secondary}, ${e.fonts.fallback};
|
|
117
|
+
font-size: ${e.fontSize.xsmall};
|
|
118
|
+
font-weight: ${e.fontWeight.bold};
|
|
119
|
+
gap: ${e.spacing.xxsmall};
|
|
122
120
|
|
|
123
121
|
& .label-icon-container img,
|
|
124
122
|
& .label-icon-container svg {
|
|
@@ -131,74 +129,74 @@ const t = {
|
|
|
131
129
|
flex-direction: column;
|
|
132
130
|
align-items: center;
|
|
133
131
|
justify-content: center;
|
|
134
|
-
gap: ${
|
|
135
|
-
`,
|
|
136
|
-
font-weight: ${
|
|
137
|
-
`,
|
|
132
|
+
gap: ${e.spacing.xxxsmall};
|
|
133
|
+
`, ie = c.span`
|
|
134
|
+
font-weight: ${e.fontWeight.bolder};
|
|
135
|
+
`, le = c.div`
|
|
138
136
|
max-width: 100%;
|
|
139
137
|
display: flex;
|
|
140
138
|
align-items: center;
|
|
141
139
|
`, se = c.span`
|
|
142
|
-
font-weight: ${
|
|
140
|
+
font-weight: ${e.fontWeight.light};
|
|
143
141
|
`, B = ({
|
|
144
|
-
htmlFor:
|
|
145
|
-
textLabel:
|
|
142
|
+
htmlFor: t,
|
|
143
|
+
textLabel: i,
|
|
146
144
|
additionalInfo: o,
|
|
147
|
-
$labelFlexDirection:
|
|
145
|
+
$labelFlexDirection: l,
|
|
148
146
|
source: m,
|
|
149
147
|
svg: r,
|
|
150
148
|
className: d,
|
|
151
149
|
children: h
|
|
152
|
-
}) => /* @__PURE__ */ u(ne, { htmlFor:
|
|
153
|
-
(m || r) && /* @__PURE__ */
|
|
150
|
+
}) => /* @__PURE__ */ u(ne, { htmlFor: t, className: d, $labelFlexDirection: l, children: [
|
|
151
|
+
(m || r) && /* @__PURE__ */ a(le, { className: "label-icon-container", children: m ? /* @__PURE__ */ a("img", { src: m, alt: `${t}-label-icon` }) : r || "" }),
|
|
154
152
|
/* @__PURE__ */ u(oe, { className: "label-text-container", children: [
|
|
155
|
-
/* @__PURE__ */
|
|
156
|
-
o && /* @__PURE__ */
|
|
153
|
+
/* @__PURE__ */ a(ie, { className: "main-label", children: i }),
|
|
154
|
+
o && /* @__PURE__ */ a(se, { className: "additional-info", children: o })
|
|
157
155
|
] }),
|
|
158
156
|
h
|
|
159
157
|
] }), W = c.input`
|
|
160
158
|
display: flex;
|
|
161
159
|
place-content: center;
|
|
162
|
-
font-family: ${
|
|
163
|
-
font-size: ${
|
|
160
|
+
font-family: ${e.fonts.secondary}, ${e.fonts.fallback};
|
|
161
|
+
font-size: ${e.fontSize.xsmall};
|
|
164
162
|
line-height: 1.75;
|
|
165
|
-
padding: ${
|
|
163
|
+
padding: ${e.spacing.xxxsmall} ${e.spacing.xsmall};
|
|
166
164
|
max-width: 100%;
|
|
167
165
|
height: auto;
|
|
168
166
|
background-color: #FFFFFF;
|
|
169
167
|
outline: none;
|
|
170
|
-
border: ${
|
|
171
|
-
border-radius: ${
|
|
168
|
+
border: ${e.borderThickness.thin} solid #000000;
|
|
169
|
+
border-radius: ${e.borderRadius.xsmall};
|
|
172
170
|
|
|
173
171
|
&:focus{
|
|
174
|
-
border: ${
|
|
172
|
+
border: ${e.borderThickness.thin} solid ${({ theme: t }) => t.colors.teal};
|
|
175
173
|
}
|
|
176
174
|
`, ce = c.textarea`
|
|
177
175
|
display: flex;
|
|
178
176
|
place-content: center;
|
|
179
|
-
border: ${
|
|
180
|
-
border-radius: ${
|
|
177
|
+
border: ${e.borderThickness.light} solid ${({ theme: t }) => t.colors.text};
|
|
178
|
+
border-radius: ${e.borderRadius.small};
|
|
181
179
|
outline: none;
|
|
182
|
-
line-height: ${
|
|
183
|
-
padding: ${
|
|
184
|
-
font-family: ${
|
|
185
|
-
font-size: ${
|
|
180
|
+
line-height: ${e.spacing.small};
|
|
181
|
+
padding: ${e.spacing.xxxsmall};
|
|
182
|
+
font-family: ${e.fonts.secondary}, ${e.fonts.fallback};
|
|
183
|
+
font-size: ${e.fontSize.xsmall};
|
|
186
184
|
max-width: 100%;
|
|
187
185
|
resize: none;
|
|
188
186
|
overflow-y: auto;
|
|
189
|
-
`,
|
|
190
|
-
const { type: o, id:
|
|
187
|
+
`, D = K((t, i) => {
|
|
188
|
+
const { type: o, id: l, onChange: m, isRequired: r, dataAttributes: d = {}, disabled: h, className: f } = t;
|
|
191
189
|
if (o === "textarea") {
|
|
192
|
-
const { rows:
|
|
193
|
-
return /* @__PURE__ */
|
|
190
|
+
const { rows: y = 5, cols: F = 30, value: v, ...A } = t;
|
|
191
|
+
return /* @__PURE__ */ a(
|
|
194
192
|
ce,
|
|
195
193
|
{
|
|
196
194
|
onChange: m,
|
|
197
195
|
value: v,
|
|
198
|
-
rows:
|
|
196
|
+
rows: y,
|
|
199
197
|
cols: F,
|
|
200
|
-
className:
|
|
201
|
-
ref:
|
|
198
|
+
className: f,
|
|
199
|
+
ref: i,
|
|
202
200
|
disabled: h,
|
|
203
201
|
required: r,
|
|
204
202
|
...A,
|
|
@@ -207,126 +205,126 @@ const t = {
|
|
|
207
205
|
);
|
|
208
206
|
}
|
|
209
207
|
if (o === "radio" || o === "checkbox") {
|
|
210
|
-
const { checked:
|
|
211
|
-
return /* @__PURE__ */
|
|
208
|
+
const { checked: y, ...F } = t;
|
|
209
|
+
return /* @__PURE__ */ a(
|
|
212
210
|
W,
|
|
213
211
|
{
|
|
214
|
-
ref:
|
|
215
|
-
checked:
|
|
212
|
+
ref: i,
|
|
213
|
+
checked: y,
|
|
216
214
|
onChange: m,
|
|
217
215
|
disabled: h,
|
|
218
|
-
className:
|
|
216
|
+
className: f,
|
|
219
217
|
...F,
|
|
220
218
|
...d
|
|
221
219
|
}
|
|
222
220
|
);
|
|
223
221
|
}
|
|
224
|
-
const
|
|
225
|
-
return /* @__PURE__ */
|
|
222
|
+
const g = t, { value: N, pattern: p, placeholderText: C, ...w } = g;
|
|
223
|
+
return /* @__PURE__ */ a(
|
|
226
224
|
W,
|
|
227
225
|
{
|
|
228
226
|
placeholder: C,
|
|
229
227
|
onChange: m,
|
|
230
228
|
value: N,
|
|
231
229
|
required: r,
|
|
232
|
-
className:
|
|
233
|
-
ref:
|
|
230
|
+
className: f,
|
|
231
|
+
ref: i,
|
|
234
232
|
disabled: h,
|
|
235
|
-
pattern:
|
|
233
|
+
pattern: p,
|
|
236
234
|
...w,
|
|
237
235
|
...d
|
|
238
236
|
}
|
|
239
237
|
);
|
|
240
|
-
}), E = (
|
|
238
|
+
}), E = (t) => {
|
|
241
239
|
const {
|
|
242
|
-
className:
|
|
240
|
+
className: i,
|
|
243
241
|
type: o,
|
|
244
|
-
id:
|
|
242
|
+
id: l,
|
|
245
243
|
textLabel: m,
|
|
246
244
|
additionalInfo: r,
|
|
247
245
|
$labelFlexDirection: d,
|
|
248
246
|
svg: h,
|
|
249
|
-
labelClass:
|
|
250
|
-
onChange:
|
|
247
|
+
labelClass: f,
|
|
248
|
+
onChange: g,
|
|
251
249
|
isRequired: N,
|
|
252
|
-
dataAttributes:
|
|
250
|
+
dataAttributes: p,
|
|
253
251
|
inputClass: C,
|
|
254
252
|
ref: w,
|
|
255
|
-
disabled:
|
|
253
|
+
disabled: y,
|
|
256
254
|
isEditable: F,
|
|
257
255
|
editIcon: v,
|
|
258
256
|
onClickEdit: A,
|
|
259
257
|
deleteIcon: S,
|
|
260
258
|
onClickDelete: z,
|
|
261
|
-
idx:
|
|
259
|
+
idx: T,
|
|
262
260
|
children: j
|
|
263
|
-
} =
|
|
264
|
-
return /* @__PURE__ */ u(te, { className: `${
|
|
265
|
-
o !== "radio" && o !== "checkbox" && /* @__PURE__ */
|
|
261
|
+
} = t;
|
|
262
|
+
return /* @__PURE__ */ u(te, { className: `${i} ${l.replace("#", "")}-label-input-container`, children: [
|
|
263
|
+
o !== "radio" && o !== "checkbox" && /* @__PURE__ */ a(B, { htmlFor: l, textLabel: m, additionalInfo: r, $labelFlexDirection: d, svg: h, className: f }),
|
|
266
264
|
o !== "radio" && o !== "checkbox" && o === "textarea" && (() => {
|
|
267
|
-
const { rows:
|
|
268
|
-
return /* @__PURE__ */
|
|
269
|
-
|
|
265
|
+
const { rows: n = 5, cols: $ = 30, value: s, ...k } = t;
|
|
266
|
+
return /* @__PURE__ */ a(
|
|
267
|
+
D,
|
|
270
268
|
{
|
|
271
|
-
id:
|
|
272
|
-
name:
|
|
269
|
+
id: l,
|
|
270
|
+
name: l,
|
|
273
271
|
type: "textarea",
|
|
274
272
|
isRequired: N,
|
|
275
|
-
onChange:
|
|
273
|
+
onChange: g,
|
|
276
274
|
value: s,
|
|
277
|
-
rows:
|
|
275
|
+
rows: n,
|
|
278
276
|
cols: $,
|
|
279
|
-
dataAttributes:
|
|
277
|
+
dataAttributes: p,
|
|
280
278
|
className: C,
|
|
281
279
|
ref: w,
|
|
282
|
-
disabled:
|
|
280
|
+
disabled: y
|
|
283
281
|
}
|
|
284
282
|
);
|
|
285
283
|
})(),
|
|
286
284
|
o !== "radio" && o !== "checkbox" && o !== "textarea" && (() => {
|
|
287
|
-
const
|
|
288
|
-
return /* @__PURE__ */
|
|
289
|
-
|
|
285
|
+
const n = t, { value: $, pattern: s, placeholderText: k, ...L } = n;
|
|
286
|
+
return /* @__PURE__ */ a(
|
|
287
|
+
D,
|
|
290
288
|
{
|
|
291
|
-
id:
|
|
292
|
-
name:
|
|
293
|
-
placeholderText:
|
|
294
|
-
onChange:
|
|
289
|
+
id: l,
|
|
290
|
+
name: l,
|
|
291
|
+
placeholderText: k,
|
|
292
|
+
onChange: g,
|
|
295
293
|
value: $,
|
|
296
294
|
type: o,
|
|
297
295
|
isRequired: N,
|
|
298
|
-
dataAttributes:
|
|
296
|
+
dataAttributes: p,
|
|
299
297
|
className: C,
|
|
300
298
|
ref: w,
|
|
301
|
-
disabled:
|
|
299
|
+
disabled: y,
|
|
302
300
|
pattern: s
|
|
303
301
|
}
|
|
304
302
|
);
|
|
305
303
|
})(),
|
|
306
304
|
(o === "radio" || o === "checkbox") && (() => {
|
|
307
|
-
const { checked:
|
|
305
|
+
const { checked: n, ...$ } = t;
|
|
308
306
|
return /* @__PURE__ */ u(R, { children: [
|
|
309
|
-
/* @__PURE__ */
|
|
310
|
-
|
|
307
|
+
/* @__PURE__ */ a(
|
|
308
|
+
D,
|
|
311
309
|
{
|
|
312
310
|
ref: w,
|
|
313
311
|
type: o,
|
|
314
|
-
name:
|
|
315
|
-
id:
|
|
312
|
+
name: l,
|
|
313
|
+
id: l,
|
|
316
314
|
isRequired: N,
|
|
317
|
-
checked:
|
|
318
|
-
onChange:
|
|
319
|
-
disabled:
|
|
315
|
+
checked: n,
|
|
316
|
+
onChange: g,
|
|
317
|
+
disabled: y,
|
|
320
318
|
className: C,
|
|
321
|
-
dataAttributes:
|
|
319
|
+
dataAttributes: p
|
|
322
320
|
}
|
|
323
321
|
),
|
|
324
|
-
/* @__PURE__ */
|
|
322
|
+
/* @__PURE__ */ a(B, { htmlFor: l, textLabel: m, additionalInfo: r, $labelFlexDirection: d, svg: h, className: f })
|
|
325
323
|
] });
|
|
326
324
|
})(),
|
|
327
325
|
F && /* @__PURE__ */ u(ae, { className: "input-edit-buttons", children: [
|
|
328
|
-
/* @__PURE__ */
|
|
329
|
-
/* @__PURE__ */
|
|
326
|
+
/* @__PURE__ */ a(x, { id: `editable-${l}-edit-btn`, svg: v, buttonType: "button", onClick: A, className: `edit-radio-${T}`, dataAttributes: p }),
|
|
327
|
+
/* @__PURE__ */ a(x, { id: `editable-${l}-delete-btn`, svg: S, buttonType: "button", onClick: z, className: `delete-radio-${T}`, dataAttributes: p })
|
|
330
328
|
] }),
|
|
331
329
|
j
|
|
332
330
|
] });
|
|
@@ -335,87 +333,87 @@ const t = {
|
|
|
335
333
|
height: auto;
|
|
336
334
|
width: 100%;
|
|
337
335
|
`, de = c.legend`
|
|
338
|
-
font-size: ${
|
|
336
|
+
font-size: ${e.spacing.medium};
|
|
339
337
|
font-weight: 500;
|
|
340
|
-
margin: 0 auto ${
|
|
338
|
+
margin: 0 auto ${e.spacing.small} auto;
|
|
341
339
|
text-align: center;
|
|
342
|
-
font-family: ${
|
|
340
|
+
font-family: ${e.fonts.secondary}, ${e.fonts.fallback};
|
|
343
341
|
`, me = c.div`
|
|
344
342
|
display: flex;
|
|
345
343
|
flex-direction: column;
|
|
346
344
|
align-items: flex-start;
|
|
347
345
|
width: 100%;
|
|
348
|
-
margin-bottom: ${
|
|
346
|
+
margin-bottom: ${e.spacing.small};
|
|
349
347
|
`, be = c.div`
|
|
350
348
|
display: flex;
|
|
351
349
|
justify-content: space-between;
|
|
352
350
|
width: 100%;
|
|
353
351
|
`, P = ({
|
|
354
|
-
legend:
|
|
355
|
-
fieldsetIndex:
|
|
352
|
+
legend: t,
|
|
353
|
+
fieldsetIndex: i,
|
|
356
354
|
idx: o,
|
|
357
|
-
editableInformation:
|
|
355
|
+
editableInformation: l,
|
|
358
356
|
onChangeOfEditableOption: m,
|
|
359
357
|
onClickSaveEdit: r,
|
|
360
358
|
onClickCancelEdit: d,
|
|
361
359
|
onClickDeleteEntry: h
|
|
362
|
-
}) =>
|
|
363
|
-
/* @__PURE__ */
|
|
364
|
-
|
|
365
|
-
|
|
360
|
+
}) => /* @__PURE__ */ u(re, { className: "editable-option-fieldset", children: [
|
|
361
|
+
/* @__PURE__ */ a(de, { children: `${t} ${o + 1}` }),
|
|
362
|
+
l?.map((f, g) => /* @__PURE__ */ a(me, { className: "editable-option-container", children: /* @__PURE__ */ a(
|
|
363
|
+
D,
|
|
366
364
|
{
|
|
367
|
-
id: `editable-option-${
|
|
368
|
-
name: `editable-option-${
|
|
369
|
-
placeholderText:
|
|
365
|
+
id: `editable-option-${g}`,
|
|
366
|
+
name: `editable-option-${g}`,
|
|
367
|
+
placeholderText: f.name.charAt(0).toUpperCase() + f.name.slice(1),
|
|
370
368
|
onChange: m,
|
|
371
|
-
value:
|
|
372
|
-
type:
|
|
369
|
+
value: f.info,
|
|
370
|
+
type: f.type,
|
|
373
371
|
isRequired: !0,
|
|
374
372
|
className: "editable-option",
|
|
375
373
|
dataAttributes: {
|
|
376
|
-
"data-index":
|
|
377
|
-
"data-fieldsetindex":
|
|
378
|
-
"data-key":
|
|
374
|
+
"data-index": g,
|
|
375
|
+
"data-fieldsetindex": i,
|
|
376
|
+
"data-key": f.info
|
|
379
377
|
}
|
|
380
378
|
}
|
|
381
|
-
) }, `${
|
|
379
|
+
) }, `${f.name}-${g}`)),
|
|
382
380
|
/* @__PURE__ */ u(be, { className: "editable-option-button-space", children: [
|
|
383
|
-
/* @__PURE__ */
|
|
384
|
-
/* @__PURE__ */
|
|
385
|
-
/* @__PURE__ */
|
|
381
|
+
/* @__PURE__ */ a(x, { id: `editable-option-${o}-submit`, buttonType: "button", text: "Save", onClick: r, className: "editable-option-btn", dataAttributes: { "data-index": o, "data-fieldsetindex": i } }),
|
|
382
|
+
/* @__PURE__ */ a(x, { id: `editable-option-${o}-cancel`, buttonType: "button", text: "Cancel", onClick: d, className: "editable-option-btn", dataAttributes: { "data-index": o, "data-fieldsetindex": i } }),
|
|
383
|
+
/* @__PURE__ */ a(x, { id: `editable-option-${o}-delete`, buttonType: "button", text: "Delete", onClick: h, className: "editable-option-btn", dataAttributes: { "data-index": o, "data-fieldsetindex": i } })
|
|
386
384
|
] })
|
|
387
|
-
] })
|
|
385
|
+
] }), he = c.div`
|
|
388
386
|
display: flex;
|
|
389
387
|
justify-content: space-between;
|
|
390
388
|
max-width: 100%;
|
|
391
|
-
`,
|
|
392
|
-
id:
|
|
393
|
-
hasSubmit:
|
|
389
|
+
`, fe = ({
|
|
390
|
+
id: t,
|
|
391
|
+
hasSubmit: i,
|
|
394
392
|
submitText: o,
|
|
395
|
-
handleSubmit:
|
|
393
|
+
handleSubmit: l,
|
|
396
394
|
hasReset: m,
|
|
397
395
|
resetText: r,
|
|
398
396
|
handleReset: d,
|
|
399
397
|
hasCancel: h,
|
|
400
|
-
cancelText:
|
|
401
|
-
handleCancel:
|
|
398
|
+
cancelText: f,
|
|
399
|
+
handleCancel: g
|
|
402
400
|
}) => /* @__PURE__ */ u(he, { className: "form-main-button-container", children: [
|
|
403
|
-
|
|
404
|
-
m && /* @__PURE__ */
|
|
405
|
-
h && /* @__PURE__ */
|
|
401
|
+
i && /* @__PURE__ */ a(x, { id: `form-${t}-submit`, buttonType: "submit", text: o ?? "Submit", onClick: l, className: "submit-form-btn" }),
|
|
402
|
+
m && /* @__PURE__ */ a(x, { id: `form-${t}-edit`, buttonType: "button", text: r ?? "Reset", onClick: d, className: "reset-form-btn" }),
|
|
403
|
+
h && /* @__PURE__ */ a(x, { id: `form-${t}-cancel`, buttonType: "button", text: f ?? "Cancel", onClick: g, className: "cancel-form-btn" })
|
|
406
404
|
] }), M = c.legend`
|
|
407
|
-
font-size: ${
|
|
405
|
+
font-size: ${e.spacing.medium};
|
|
408
406
|
font-weight: 500;
|
|
409
|
-
margin-bottom: ${
|
|
407
|
+
margin-bottom: ${e.spacing.small};
|
|
410
408
|
width: auto;
|
|
411
409
|
text-align: center;
|
|
412
|
-
font-family: ${
|
|
410
|
+
font-family: ${e.fonts.secondary}, ${e.fonts.fallback};
|
|
413
411
|
`, U = c.fieldset`
|
|
414
412
|
padding: 0;
|
|
415
413
|
height: auto;
|
|
416
414
|
width: 100%;
|
|
417
415
|
`, H = c.div`
|
|
418
|
-
padding: ${
|
|
416
|
+
padding: ${e.spacing.small};
|
|
419
417
|
height: auto;
|
|
420
418
|
width: 100%;
|
|
421
419
|
`, O = c.div`
|
|
@@ -424,9 +422,9 @@ const t = {
|
|
|
424
422
|
align-items: center;
|
|
425
423
|
width: 100%;
|
|
426
424
|
height: auto;
|
|
427
|
-
font-family: ${
|
|
428
|
-
font-size: ${
|
|
429
|
-
font-weight: ${
|
|
425
|
+
font-family: ${e.fonts.tertiary}, ${e.fonts.fallback};
|
|
426
|
+
font-size: ${e.fontSize.xsmall};
|
|
427
|
+
font-weight: ${e.fontWeight.bold};
|
|
430
428
|
`, ue = c.form`
|
|
431
429
|
display: flex;
|
|
432
430
|
flex-direction: column;
|
|
@@ -436,86 +434,82 @@ const t = {
|
|
|
436
434
|
display: flex;
|
|
437
435
|
justify-content: space-between;
|
|
438
436
|
width: 100%;
|
|
439
|
-
`,
|
|
437
|
+
`, ge = c.div`
|
|
440
438
|
width: 100%;
|
|
441
439
|
display: flex;
|
|
442
440
|
flex-direction: column;
|
|
443
441
|
align-items: center;
|
|
444
442
|
justify-content: center;
|
|
445
443
|
`, Ce = ({
|
|
446
|
-
fieldsets:
|
|
447
|
-
legendText:
|
|
444
|
+
fieldsets: t = null,
|
|
445
|
+
legendText: i,
|
|
448
446
|
isExpandable: o,
|
|
449
|
-
id:
|
|
447
|
+
id: l,
|
|
450
448
|
formInputs: m,
|
|
451
449
|
labelAndInputContainerClass: r,
|
|
452
450
|
labelClass: d,
|
|
453
451
|
inputClass: h,
|
|
454
|
-
onChangeOfEditableOption:
|
|
455
|
-
handleAddingInputEntry:
|
|
452
|
+
onChangeOfEditableOption: f,
|
|
453
|
+
handleAddingInputEntry: g,
|
|
456
454
|
hasSubmit: N = !1,
|
|
457
|
-
submitText:
|
|
455
|
+
submitText: p,
|
|
458
456
|
handleSubmit: C,
|
|
459
457
|
hasReset: w = !1,
|
|
460
|
-
resetText:
|
|
458
|
+
resetText: y,
|
|
461
459
|
handleReset: F,
|
|
462
460
|
hasCancel: v = !1,
|
|
463
461
|
cancelText: A,
|
|
464
462
|
handleCancel: S,
|
|
465
463
|
handleSubmitForm: z,
|
|
466
|
-
className:
|
|
464
|
+
className: T,
|
|
467
465
|
children: j
|
|
468
|
-
}) =>
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
/* @__PURE__ */ u(U, { id: `${i}-form-fieldset-${$}`, className: `${a.legend}-fieldset`, children: [
|
|
475
|
-
a.legend && /* @__PURE__ */ n(M, { className: `${a.legend}-legend`, children: a.legend }),
|
|
476
|
-
a.inputs.length !== 0 ? a.inputs.map((s, x) => /* @__PURE__ */ u(q.Fragment, { children: [
|
|
477
|
-
s.type === "textarea" && /* @__PURE__ */ n(
|
|
466
|
+
}) => /* @__PURE__ */ u(ue, { id: `${l}-form`, className: T, onSubmit: z, children: [
|
|
467
|
+
t ? t.map((n, $) => /* @__PURE__ */ u(H, { className: `${l}-fieldset-wrapper`, children: [
|
|
468
|
+
/* @__PURE__ */ u(U, { id: `${l}-form-fieldset-${$}`, className: `${n.legend}-fieldset`, children: [
|
|
469
|
+
n.legend && /* @__PURE__ */ a(M, { className: `${n.legend}-legend`, children: n.legend }),
|
|
470
|
+
n.inputs.length !== 0 ? n.inputs.map((s, k) => /* @__PURE__ */ u(q.Fragment, { children: [
|
|
471
|
+
s.type === "textarea" && /* @__PURE__ */ a(
|
|
478
472
|
E,
|
|
479
473
|
{
|
|
480
474
|
...s,
|
|
481
|
-
id: s.id ?? `${
|
|
475
|
+
id: s.id ?? `${n.legend}-input`,
|
|
482
476
|
labelClass: d,
|
|
483
477
|
inputClass: h,
|
|
484
|
-
idx:
|
|
478
|
+
idx: k,
|
|
485
479
|
className: `${r} ${s?.uniqueClass}`
|
|
486
480
|
}
|
|
487
481
|
),
|
|
488
|
-
s.type !== "textarea" && s.type !== "radio" && s.type !== "checkbox" && /* @__PURE__ */
|
|
482
|
+
s.type !== "textarea" && s.type !== "radio" && s.type !== "checkbox" && /* @__PURE__ */ a(
|
|
489
483
|
E,
|
|
490
484
|
{
|
|
491
485
|
...s,
|
|
492
|
-
id: s.id ?? `${
|
|
486
|
+
id: s.id ?? `${n.legend}-input`,
|
|
493
487
|
labelClass: d,
|
|
494
488
|
inputClass: h,
|
|
495
|
-
idx:
|
|
489
|
+
idx: k,
|
|
496
490
|
className: `${r} ${s?.uniqueClass}`
|
|
497
491
|
}
|
|
498
492
|
),
|
|
499
493
|
(s.type === "radio" || s.type === "checkbox") && /* @__PURE__ */ u(R, { children: [
|
|
500
|
-
/* @__PURE__ */
|
|
494
|
+
/* @__PURE__ */ a(
|
|
501
495
|
E,
|
|
502
496
|
{
|
|
503
497
|
...s,
|
|
504
|
-
id: s.id ?? `${
|
|
498
|
+
id: s.id ?? `${n.legend}-input`,
|
|
505
499
|
labelClass: d,
|
|
506
500
|
inputClass: h,
|
|
507
|
-
idx:
|
|
501
|
+
idx: k,
|
|
508
502
|
className: `${r} ${s?.uniqueClass}`
|
|
509
503
|
}
|
|
510
504
|
),
|
|
511
|
-
s.editing && s.isEditable && /* @__PURE__ */
|
|
505
|
+
s.editing && s.isEditable && /* @__PURE__ */ a(
|
|
512
506
|
P,
|
|
513
507
|
{
|
|
514
|
-
legend: `${
|
|
508
|
+
legend: `${n.legend}`,
|
|
515
509
|
fieldsetIndex: $,
|
|
516
|
-
idx:
|
|
510
|
+
idx: k,
|
|
517
511
|
editableInformation: s?.editableInformation || [],
|
|
518
|
-
onChangeOfEditableOption:
|
|
512
|
+
onChangeOfEditableOption: f,
|
|
519
513
|
onClickSaveEdit: s?.onClickSave || ((L) => {
|
|
520
514
|
}),
|
|
521
515
|
onClickCancelEdit: s?.onClickCancel || ((L) => {
|
|
@@ -525,89 +519,89 @@ const t = {
|
|
|
525
519
|
}
|
|
526
520
|
)
|
|
527
521
|
] })
|
|
528
|
-
] }, `form-${
|
|
522
|
+
] }, `form-${l}-${k}`)) : n.isExpandable ? /* @__PURE__ */ a(O, { children: `No entry yet on ${n.legend}. Click "+" button to add entry.` }) : ""
|
|
529
523
|
] }),
|
|
530
|
-
|
|
531
|
-
] }, `${
|
|
532
|
-
/* @__PURE__ */ u(U, { id: `${
|
|
533
|
-
|
|
534
|
-
!
|
|
535
|
-
|
|
524
|
+
n.isExpandable && /* @__PURE__ */ a(G, { className: "add-input-button-space", children: /* @__PURE__ */ a(x, { id: `expand-${n.legend}-inputs`, buttonType: "button", text: "+", onClick: g, className: "add-input-entry", dataAttributes: { "data-fieldsetindex": $ } }) })
|
|
525
|
+
] }, `${n.legend}-${$}`)) : /* @__PURE__ */ u(H, { className: `${l}-fieldset-wrapper`, children: [
|
|
526
|
+
/* @__PURE__ */ u(U, { id: `${l}-form-fieldset`, className: `${i}-fieldset`, children: [
|
|
527
|
+
i && /* @__PURE__ */ a(M, { className: `${i}-legend`, children: i }),
|
|
528
|
+
!t && m && m.length !== 0 ? m.map((n, $) => /* @__PURE__ */ u(q.Fragment, { children: [
|
|
529
|
+
n.type === "textarea" && /* @__PURE__ */ a(
|
|
536
530
|
E,
|
|
537
531
|
{
|
|
538
|
-
...
|
|
539
|
-
id:
|
|
532
|
+
...n,
|
|
533
|
+
id: n.id ?? `${i}-input`,
|
|
540
534
|
labelClass: d,
|
|
541
535
|
inputClass: h,
|
|
542
536
|
idx: $,
|
|
543
|
-
className: `${r} ${
|
|
537
|
+
className: `${r} ${n?.uniqueClass}`
|
|
544
538
|
}
|
|
545
539
|
),
|
|
546
|
-
|
|
540
|
+
n.type !== "textarea" && n.type !== "radio" && n.type !== "checkbox" && /* @__PURE__ */ a(
|
|
547
541
|
E,
|
|
548
542
|
{
|
|
549
|
-
...
|
|
550
|
-
id:
|
|
543
|
+
...n,
|
|
544
|
+
id: n.id ?? `${i}-input`,
|
|
551
545
|
labelClass: d,
|
|
552
546
|
inputClass: h,
|
|
553
547
|
idx: $,
|
|
554
|
-
className: `${r} ${
|
|
548
|
+
className: `${r} ${n?.uniqueClass}`
|
|
555
549
|
}
|
|
556
550
|
),
|
|
557
|
-
(
|
|
558
|
-
/* @__PURE__ */
|
|
551
|
+
(n.type === "radio" || n.type === "checkbox") && /* @__PURE__ */ u(R, { children: [
|
|
552
|
+
/* @__PURE__ */ a(
|
|
559
553
|
E,
|
|
560
554
|
{
|
|
561
|
-
...
|
|
562
|
-
id:
|
|
555
|
+
...n,
|
|
556
|
+
id: n.id ?? `${i}-input`,
|
|
563
557
|
labelClass: d,
|
|
564
558
|
inputClass: h,
|
|
565
559
|
idx: $,
|
|
566
|
-
className: `${r} ${
|
|
560
|
+
className: `${r} ${n?.uniqueClass}`
|
|
567
561
|
}
|
|
568
562
|
),
|
|
569
|
-
|
|
563
|
+
n.editing && n.isEditable && /* @__PURE__ */ a(
|
|
570
564
|
P,
|
|
571
565
|
{
|
|
572
|
-
legend: `${
|
|
566
|
+
legend: `${i}`,
|
|
573
567
|
idx: $,
|
|
574
|
-
editableInformation:
|
|
575
|
-
onChangeOfEditableOption:
|
|
576
|
-
onClickSaveEdit:
|
|
568
|
+
editableInformation: n?.editableInformation,
|
|
569
|
+
onChangeOfEditableOption: f,
|
|
570
|
+
onClickSaveEdit: n?.onClickSave || ((s) => {
|
|
577
571
|
}),
|
|
578
|
-
onClickCancelEdit:
|
|
572
|
+
onClickCancelEdit: n?.onClickCancel || ((s) => {
|
|
579
573
|
}),
|
|
580
|
-
onClickDeleteEntry:
|
|
574
|
+
onClickDeleteEntry: n?.onClickDelete || ((s) => {
|
|
581
575
|
})
|
|
582
576
|
}
|
|
583
577
|
)
|
|
584
578
|
] })
|
|
585
|
-
] }, `form-${
|
|
579
|
+
] }, `form-${l}-${$}`)) : o ? /* @__PURE__ */ a(O, { children: `No entry yet on ${i}. Please click "+" button to add` }) : ""
|
|
586
580
|
] }),
|
|
587
|
-
o && /* @__PURE__ */
|
|
581
|
+
o && /* @__PURE__ */ a(G, { className: "add-input-button-space", children: /* @__PURE__ */ a(x, { id: `expand-${i}-inputs`, buttonType: "button", text: "+", onClick: g, className: "add-input-entry" }) })
|
|
588
582
|
] }),
|
|
589
|
-
/* @__PURE__ */
|
|
590
|
-
|
|
583
|
+
/* @__PURE__ */ a(
|
|
584
|
+
fe,
|
|
591
585
|
{
|
|
592
|
-
id:
|
|
586
|
+
id: l,
|
|
593
587
|
hasSubmit: N,
|
|
594
|
-
submitText:
|
|
588
|
+
submitText: p,
|
|
595
589
|
handleSubmit: C,
|
|
596
590
|
hasReset: w,
|
|
597
|
-
resetText:
|
|
591
|
+
resetText: y,
|
|
598
592
|
handleReset: F,
|
|
599
593
|
hasCancel: v,
|
|
600
594
|
cancelText: A,
|
|
601
595
|
handleCancel: S
|
|
602
596
|
}
|
|
603
597
|
),
|
|
604
|
-
/* @__PURE__ */
|
|
605
|
-
] })
|
|
606
|
-
const
|
|
607
|
-
return
|
|
608
|
-
}, b = (
|
|
609
|
-
if (!$e(
|
|
610
|
-
return
|
|
598
|
+
/* @__PURE__ */ a(ge, { className: "children-container", children: j })
|
|
599
|
+
] }), $e = (t) => {
|
|
600
|
+
const i = /^#([0-9A-Fa-f]{3}){1,2}$/, o = /^rgb(a)?\(\s*\d{1,3}\s*,\s*\d{1,3}\s*,\s*\d{1,3}(?:\s*,\s*(0|1|0?\.\d+))?\s*\)$/;
|
|
601
|
+
return i.test(t) || o.test(t) || CSS.supports("color", t);
|
|
602
|
+
}, b = (t) => {
|
|
603
|
+
if (!$e(t)) throw new Error(`Invalid color: ${t}`);
|
|
604
|
+
return t;
|
|
611
605
|
}, we = {
|
|
612
606
|
mobile: "320px",
|
|
613
607
|
//Small iPhone SE & Medium: iPhone 12-15
|
|
@@ -648,14 +642,14 @@ const t = {
|
|
|
648
642
|
error: b("#FAD4D4")
|
|
649
643
|
}
|
|
650
644
|
}, J = Q({}), Fe = ({
|
|
651
|
-
children:
|
|
652
|
-
initialTheme:
|
|
645
|
+
children: t,
|
|
646
|
+
initialTheme: i = xe,
|
|
653
647
|
secondTheme: o = pe
|
|
654
648
|
}) => {
|
|
655
|
-
const [
|
|
656
|
-
m((d) => d ===
|
|
649
|
+
const [l, m] = V(i), r = () => {
|
|
650
|
+
m((d) => d === i ? o : i);
|
|
657
651
|
};
|
|
658
|
-
return /* @__PURE__ */
|
|
652
|
+
return /* @__PURE__ */ a(J.Provider, { value: { currentTheme: l, toggleTheme: r }, children: /* @__PURE__ */ a(Y, { theme: l, children: t }) });
|
|
659
653
|
}, Ee = () => X(J);
|
|
660
654
|
export {
|
|
661
655
|
Ce as DynamicForm,
|