@awell-health/ui-library 0.1.90 → 0.1.93
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.css +33 -0
- package/dist/index.js +7050 -81
- package/dist/types/atoms/fileInputField/FileInputField.d.ts +19 -0
- package/dist/types/atoms/fileInputField/index.d.ts +1 -0
- package/dist/types/atoms/fileInputField/types.d.ts +7 -0
- package/dist/types/hostedPages/activities/form/ConversationalForm.d.ts +1 -1
- package/dist/types/hostedPages/activities/form/TraditionalForm.d.ts +1 -1
- package/dist/types/hostedPages/activities/wizardForm/WizardForm.d.ts +1 -1
- package/dist/types/molecules/question/Question.d.ts +2 -2
- package/dist/types/molecules/question/types.d.ts +8 -0
- package/dist/types/types/form.d.ts +1 -0
- package/dist/types/types/generated/types-orchestration.d.ts +87 -1
- package/dist/types/utils/custom_json_parser.d.ts +1 -0
- package/package.json +3 -1
package/dist/index.css
CHANGED
|
@@ -5952,6 +5952,39 @@ html {
|
|
|
5952
5952
|
.react-international-phone-dial-code-preview{display:flex;align-items:center;justify-content:center;padding:0 8px;border:1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, gainsboro));margin-right:-1px;background-color:var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, white));color:var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));font-size:var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px))}.react-international-phone-dial-code-preview--disabled{background-color:var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));color:var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666))}
|
|
5953
5953
|
.react-international-phone-input-container{display:flex}.react-international-phone-input-container .react-international-phone-country-selector-button{border-radius:var(--react-international-phone-border-radius, 4px);margin-right:-1px;border-bottom-right-radius:0;border-top-right-radius:0}.react-international-phone-input-container .react-international-phone-input{overflow:visible;height:var(--react-international-phone-height, 36px);box-sizing:border-box;padding:0 8px;border:1px solid var(--react-international-phone-border-color, gainsboro);border-radius:var(--react-international-phone-border-radius, 4px);margin:0;background-color:var(--react-international-phone-background-color, white);border-bottom-left-radius:0;border-top-left-radius:0;color:var(--react-international-phone-text-color, #222);font-family:inherit;font-size:var(--react-international-phone-font-size, 13px)}.react-international-phone-input-container .react-international-phone-input:focus{outline:none}.react-international-phone-input-container .react-international-phone-input--disabled{background-color:var(--react-international-phone-disabled-background-color, whitesmoke);color:var(--react-international-phone-disabled-text-color, #666)}
|
|
5954
5954
|
|
|
5955
|
+
.awell__FileInputField_file_input_field_container {
|
|
5956
|
+
display: flex;
|
|
5957
|
+
flex-direction: column;
|
|
5958
|
+
gap: 12px;
|
|
5959
|
+
/* Higher specificity to override Tailwind */
|
|
5960
|
+
}
|
|
5961
|
+
.awell__FileInputField_file_input_field_container.awell__FileInputField_file_input_field_container {
|
|
5962
|
+
width: 100%;
|
|
5963
|
+
}
|
|
5964
|
+
|
|
5965
|
+
.awell__FileInputField_error_message {
|
|
5966
|
+
color: #e53e3e; /* Red for error */
|
|
5967
|
+
font-size: 14px;
|
|
5968
|
+
margin-bottom: 4px;
|
|
5969
|
+
}
|
|
5970
|
+
|
|
5971
|
+
.awell__FileInputField_file_upload_wrapper {
|
|
5972
|
+
/* Isolate FileUpload component styles */
|
|
5973
|
+
}
|
|
5974
|
+
.awell__FileInputField_file_upload_wrapper .awell-file-upload {
|
|
5975
|
+
width: 100%;
|
|
5976
|
+
}
|
|
5977
|
+
|
|
5978
|
+
.awell__FileInputField_file_list_wrapper {
|
|
5979
|
+
/* Isolate FileList component styles */
|
|
5980
|
+
width: 100%;
|
|
5981
|
+
/* Override Tailwind with higher specificity if needed */
|
|
5982
|
+
}
|
|
5983
|
+
.awell__FileInputField_file_list_wrapper .awell-file-list {
|
|
5984
|
+
width: 100%;
|
|
5985
|
+
display: flex;
|
|
5986
|
+
flex-direction: column;
|
|
5987
|
+
}
|
|
5955
5988
|
@import 'https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap';
|
|
5956
5989
|
:root {
|
|
5957
5990
|
--awell-accent100: #fdb833;
|