@ovok/native 0.3.4
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/LICENSE +674 -0
- package/README.md +41 -0
- package/lib/commonjs/assets/animations/breathing.json +1 -0
- package/lib/commonjs/assets/images/manual-request-apple.png +0 -0
- package/lib/commonjs/assets/images/manual-request-fitbit.png +0 -0
- package/lib/commonjs/assets/images/manual-request-google.png +0 -0
- package/lib/commonjs/index.js +281 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/modules/auth/delete-account-button/components/delete-account-button.js +122 -0
- package/lib/commonjs/modules/auth/delete-account-button/components/delete-account-button.js.map +1 -0
- package/lib/commonjs/modules/auth/delete-account-button/index.js +17 -0
- package/lib/commonjs/modules/auth/delete-account-button/index.js.map +1 -0
- package/lib/commonjs/modules/auth/delete-account-button/types/delete-account-button-props.js +6 -0
- package/lib/commonjs/modules/auth/delete-account-button/types/delete-account-button-props.js.map +1 -0
- package/lib/commonjs/modules/auth/index.js +72 -0
- package/lib/commonjs/modules/auth/index.js.map +1 -0
- package/lib/commonjs/modules/auth/logout-button/components/logout-button.js +44 -0
- package/lib/commonjs/modules/auth/logout-button/components/logout-button.js.map +1 -0
- package/lib/commonjs/modules/auth/logout-button/index.js +17 -0
- package/lib/commonjs/modules/auth/logout-button/index.js.map +1 -0
- package/lib/commonjs/modules/auth/logout-button/types/logout-button-props.js +6 -0
- package/lib/commonjs/modules/auth/logout-button/types/logout-button-props.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/components/profile-form-field-component.js +42 -0
- package/lib/commonjs/modules/auth/profile/components/profile-form-field-component.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/components/profile-form-provider.js +88 -0
- package/lib/commonjs/modules/auth/profile/components/profile-form-provider.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/components/profile-form.js +84 -0
- package/lib/commonjs/modules/auth/profile/components/profile-form.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/components/profile-with-form.js +19 -0
- package/lib/commonjs/modules/auth/profile/components/profile-with-form.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/contexts/profile-form-context.js +10 -0
- package/lib/commonjs/modules/auth/profile/contexts/profile-form-context.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/hooks/use-profile-form.js +18 -0
- package/lib/commonjs/modules/auth/profile/hooks/use-profile-form.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/index.js +52 -0
- package/lib/commonjs/modules/auth/profile/index.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-context-type.js +6 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-context-type.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-field.js +6 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-field.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-props.js +6 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-props.js.map +1 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-values.js +2 -0
- package/lib/commonjs/modules/auth/profile/types/profile-form-values.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/form/inputs.js +108 -0
- package/lib/commonjs/modules/auth/register/components/form/inputs.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/form/register-button.js +67 -0
- package/lib/commonjs/modules/auth/register/components/form/register-button.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/form/register-form-provider.js +85 -0
- package/lib/commonjs/modules/auth/register/components/form/register-form-provider.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/form/register-form.js +30 -0
- package/lib/commonjs/modules/auth/register/components/form/register-form.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/form/register-with-email.js +25 -0
- package/lib/commonjs/modules/auth/register/components/form/register-with-email.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/header/description.js +40 -0
- package/lib/commonjs/modules/auth/register/components/header/description.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/header/header.js +29 -0
- package/lib/commonjs/modules/auth/register/components/header/header.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/header/title.js +35 -0
- package/lib/commonjs/modules/auth/register/components/header/title.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/login-link.js +46 -0
- package/lib/commonjs/modules/auth/register/components/login-link.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/register-with-separator.js +60 -0
- package/lib/commonjs/modules/auth/register/components/register-with-separator.js.map +1 -0
- package/lib/commonjs/modules/auth/register/components/register.js +62 -0
- package/lib/commonjs/modules/auth/register/components/register.js.map +1 -0
- package/lib/commonjs/modules/auth/register/contexts/register-form-context.js +10 -0
- package/lib/commonjs/modules/auth/register/contexts/register-form-context.js.map +1 -0
- package/lib/commonjs/modules/auth/register/hooks/use-register-form.js +18 -0
- package/lib/commonjs/modules/auth/register/hooks/use-register-form.js.map +1 -0
- package/lib/commonjs/modules/auth/register/index.js +28 -0
- package/lib/commonjs/modules/auth/register/index.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/form-inputs-props.js +6 -0
- package/lib/commonjs/modules/auth/register/types/form-inputs-props.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/register-button-props.js +6 -0
- package/lib/commonjs/modules/auth/register/types/register-button-props.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/register-form-context-type.js +6 -0
- package/lib/commonjs/modules/auth/register/types/register-form-context-type.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/register-form-props.js +6 -0
- package/lib/commonjs/modules/auth/register/types/register-form-props.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/register-form-values.js +6 -0
- package/lib/commonjs/modules/auth/register/types/register-form-values.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/register-header-props.js +6 -0
- package/lib/commonjs/modules/auth/register/types/register-header-props.js.map +1 -0
- package/lib/commonjs/modules/auth/register/types/register-props.js +6 -0
- package/lib/commonjs/modules/auth/register/types/register-props.js.map +1 -0
- package/lib/commonjs/modules/auth/register/utils/apply-custom-validation.js +17 -0
- package/lib/commonjs/modules/auth/register/utils/apply-custom-validation.js.map +1 -0
- package/lib/commonjs/modules/auth/register/utils/create-register-validation-schema.js +33 -0
- package/lib/commonjs/modules/auth/register/utils/create-register-validation-schema.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/inputs.js +59 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/inputs.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/reset-password-button.js +67 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/reset-password-button.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/reset-password-form-provider.js +55 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/reset-password-form-provider.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/reset-password-form.js +40 -0
- package/lib/commonjs/modules/auth/reset-password/components/form/reset-password-form.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/header/description.js +40 -0
- package/lib/commonjs/modules/auth/reset-password/components/header/description.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/header/header.js +29 -0
- package/lib/commonjs/modules/auth/reset-password/components/header/header.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/header/title.js +35 -0
- package/lib/commonjs/modules/auth/reset-password/components/header/title.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/components/reset-password.js +54 -0
- package/lib/commonjs/modules/auth/reset-password/components/reset-password.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/contexts/reset-password-form-context.js +10 -0
- package/lib/commonjs/modules/auth/reset-password/contexts/reset-password-form-context.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/hooks/use-reset-password-form.js +18 -0
- package/lib/commonjs/modules/auth/reset-password/hooks/use-reset-password-form.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/index.js +28 -0
- package/lib/commonjs/modules/auth/reset-password/index.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/index.js +61 -0
- package/lib/commonjs/modules/auth/reset-password/types/index.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-button-props.js +6 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-button-props.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-context-type.js +6 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-context-type.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-form-provider-props.js +6 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-form-provider-props.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-form-values.js +2 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-form-values.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-header-props.js +6 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-header-props.js.map +1 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-props.js +6 -0
- package/lib/commonjs/modules/auth/reset-password/types/reset-password-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/footer.js +37 -0
- package/lib/commonjs/modules/auth/sign-in/components/footer.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/forgot-password.js +27 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/forgot-password.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/inputs.js +62 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/inputs.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/login-form-provider.js +83 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/login-form-provider.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/login-form.js +25 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/login-form.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/sign-in-with-email.js +27 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/sign-in-with-email.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/signin-button.js +67 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/signin-button.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/spacing.js +21 -0
- package/lib/commonjs/modules/auth/sign-in/components/form/spacing.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/header/description.js +40 -0
- package/lib/commonjs/modules/auth/sign-in/components/header/description.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/header/header.js +29 -0
- package/lib/commonjs/modules/auth/sign-in/components/header/header.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/header/title.js +35 -0
- package/lib/commonjs/modules/auth/sign-in/components/header/title.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/login-with-separator.js +60 -0
- package/lib/commonjs/modules/auth/sign-in/components/login-with-separator.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/register-link.js +46 -0
- package/lib/commonjs/modules/auth/sign-in/components/register-link.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/sign-in.js +62 -0
- package/lib/commonjs/modules/auth/sign-in/components/sign-in.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/site-url.js +31 -0
- package/lib/commonjs/modules/auth/sign-in/components/site-url.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login-button.js +97 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login-button.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login-icon.js +24 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login-icon.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login-text.js +35 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login-text.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login.js +23 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/apple-login.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-icon.js +36 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-icon.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login-button.js +112 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login-button.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login-icon.js +23 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login-icon.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login-text.js +33 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login-text.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login.js +23 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/google-login.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/social-logins.js +38 -0
- package/lib/commonjs/modules/auth/sign-in/components/social-logins/social-logins.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/contexts/login-form-context.js +10 -0
- package/lib/commonjs/modules/auth/sign-in/contexts/login-form-context.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/hooks/use-login-form.js +18 -0
- package/lib/commonjs/modules/auth/sign-in/hooks/use-login-form.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/index.js +124 -0
- package/lib/commonjs/modules/auth/sign-in/index.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/apple-login-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/apple-login-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/footer-props.js +2 -0
- package/lib/commonjs/modules/auth/sign-in/types/footer-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/google-icon-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/google-icon-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/google-login-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/google-login-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-form-context-type.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-form-context-type.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-form-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-form-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-form-values.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-form-values.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-with-separator-props.js +2 -0
- package/lib/commonjs/modules/auth/sign-in/types/login-with-separator-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/sign-in-header-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/sign-in-header-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/sign-in-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/sign-in-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/signin-button-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/signin-button-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/signin-form-forgot-password-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/signin-form-forgot-password-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/social-logins-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/social-logins-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/spacing-props.js +6 -0
- package/lib/commonjs/modules/auth/sign-in/types/spacing-props.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/types/token-response.js +2 -0
- package/lib/commonjs/modules/auth/sign-in/types/token-response.js.map +1 -0
- package/lib/commonjs/modules/auth/sign-in/utils/create-login-validation-schema.js +19 -0
- package/lib/commonjs/modules/auth/sign-in/utils/create-login-validation-schema.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/animation-wrapper.js +30 -0
- package/lib/commonjs/modules/breathing-exercise/components/animation-wrapper.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/animation.js +43 -0
- package/lib/commonjs/modules/breathing-exercise/components/animation.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/breathing-exercise-provider.js +80 -0
- package/lib/commonjs/modules/breathing-exercise/components/breathing-exercise-provider.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/breathing-exercise.js +44 -0
- package/lib/commonjs/modules/breathing-exercise/components/breathing-exercise.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/icons/exhale-icon.js +27 -0
- package/lib/commonjs/modules/breathing-exercise/components/icons/exhale-icon.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/icons/hold-icon.js +27 -0
- package/lib/commonjs/modules/breathing-exercise/components/icons/hold-icon.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/icons/inhale-icon.js +27 -0
- package/lib/commonjs/modules/breathing-exercise/components/icons/inhale-icon.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/info.js +28 -0
- package/lib/commonjs/modules/breathing-exercise/components/info.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/method-name.js +35 -0
- package/lib/commonjs/modules/breathing-exercise/components/method-name.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/method-type-icon.js +72 -0
- package/lib/commonjs/modules/breathing-exercise/components/method-type-icon.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/progress-bar.js +20 -0
- package/lib/commonjs/modules/breathing-exercise/components/progress-bar.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/components/remaining-time.js +31 -0
- package/lib/commonjs/modules/breathing-exercise/components/remaining-time.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/context/breathing-exercise-context.js +10 -0
- package/lib/commonjs/modules/breathing-exercise/context/breathing-exercise-context.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/hooks/use-breathing-exercise.js +18 -0
- package/lib/commonjs/modules/breathing-exercise/hooks/use-breathing-exercise.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/index.js +17 -0
- package/lib/commonjs/modules/breathing-exercise/index.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise-animation-props.js +6 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise-animation-props.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise-context-type.js +6 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise-context-type.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise-props.js +6 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise-props.js.map +1 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise.js +2 -0
- package/lib/commonjs/modules/breathing-exercise/types/breathing-exercise.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/btdevice-instruction.js +33 -0
- package/lib/commonjs/modules/bt-device/components/btdevice-instruction.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/btdevice-list.js +77 -0
- package/lib/commonjs/modules/bt-device/components/btdevice-list.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/device-list-provider.js +25 -0
- package/lib/commonjs/modules/bt-device/components/device-list-provider.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/hooks/use-device-list.js +18 -0
- package/lib/commonjs/modules/bt-device/components/hooks/use-device-list.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/bottom-container.js +32 -0
- package/lib/commonjs/modules/bt-device/components/item/bottom-container.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/btdevice-item.js +56 -0
- package/lib/commonjs/modules/bt-device/components/item/btdevice-item.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/content.js +31 -0
- package/lib/commonjs/modules/bt-device/components/item/content.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/image.js +23 -0
- package/lib/commonjs/modules/bt-device/components/item/image.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/status.js +54 -0
- package/lib/commonjs/modules/bt-device/components/item/status.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/sub-title.js +29 -0
- package/lib/commonjs/modules/bt-device/components/item/sub-title.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/title.js +33 -0
- package/lib/commonjs/modules/bt-device/components/item/title.js.map +1 -0
- package/lib/commonjs/modules/bt-device/components/item/top-container.js +34 -0
- package/lib/commonjs/modules/bt-device/components/item/top-container.js.map +1 -0
- package/lib/commonjs/modules/bt-device/constants/device-images.js +2 -0
- package/lib/commonjs/modules/bt-device/constants/device-images.js.map +1 -0
- package/lib/commonjs/modules/bt-device/constants/device-instruction-pdfs.js +32 -0
- package/lib/commonjs/modules/bt-device/constants/device-instruction-pdfs.js.map +1 -0
- package/lib/commonjs/modules/bt-device/constants/device-list-items.js +100 -0
- package/lib/commonjs/modules/bt-device/constants/device-list-items.js.map +1 -0
- package/lib/commonjs/modules/bt-device/contexts/device-list-context.js +13 -0
- package/lib/commonjs/modules/bt-device/contexts/device-list-context.js.map +1 -0
- package/lib/commonjs/modules/bt-device/index.js +94 -0
- package/lib/commonjs/modules/bt-device/index.js.map +1 -0
- package/lib/commonjs/modules/bt-device/types/btdevice-instruction-props.js +6 -0
- package/lib/commonjs/modules/bt-device/types/btdevice-instruction-props.js.map +1 -0
- package/lib/commonjs/modules/bt-device/types/btdevice-item-status-props.js +6 -0
- package/lib/commonjs/modules/bt-device/types/btdevice-item-status-props.js.map +1 -0
- package/lib/commonjs/modules/bt-device/types/btdevice-list-props.js +6 -0
- package/lib/commonjs/modules/bt-device/types/btdevice-list-props.js.map +1 -0
- package/lib/commonjs/modules/bt-device/types/device-list-item.js +6 -0
- package/lib/commonjs/modules/bt-device/types/device-list-item.js.map +1 -0
- package/lib/commonjs/modules/bt-management/components/bt-provider-child-wrapper.js +99 -0
- package/lib/commonjs/modules/bt-management/components/bt-provider-child-wrapper.js.map +1 -0
- package/lib/commonjs/modules/bt-management/components/bt-provider.js +40 -0
- package/lib/commonjs/modules/bt-management/components/bt-provider.js.map +1 -0
- package/lib/commonjs/modules/bt-management/components/default-permission-fallback.js +28 -0
- package/lib/commonjs/modules/bt-management/components/default-permission-fallback.js.map +1 -0
- package/lib/commonjs/modules/bt-management/constants/blood-pressure-translated-exception-map.js +9 -0
- package/lib/commonjs/modules/bt-management/constants/blood-pressure-translated-exception-map.js.map +1 -0
- package/lib/commonjs/modules/bt-management/constants/diagnostic-results.js +16 -0
- package/lib/commonjs/modules/bt-management/constants/diagnostic-results.js.map +1 -0
- package/lib/commonjs/modules/bt-management/constants/integrated-devices-map.js +9 -0
- package/lib/commonjs/modules/bt-management/constants/integrated-devices-map.js.map +1 -0
- package/lib/commonjs/modules/bt-management/hooks/use-request-permissions.js +56 -0
- package/lib/commonjs/modules/bt-management/hooks/use-request-permissions.js.map +1 -0
- package/lib/commonjs/modules/bt-management/index.js +149 -0
- package/lib/commonjs/modules/bt-management/index.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/bt-manager.js +162 -0
- package/lib/commonjs/modules/bt-management/services/bt-manager.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/device-creator.js +93 -0
- package/lib/commonjs/modules/bt-management/services/device-creator.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/bp2/bp2.device.js +161 -0
- package/lib/commonjs/modules/bt-management/services/devices/bp2/bp2.device.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/bp2/bp2.main-services.js +105 -0
- package/lib/commonjs/modules/bt-management/services/devices/bp2/bp2.main-services.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/bt-connection-handler.js +143 -0
- package/lib/commonjs/modules/bt-management/services/devices/bt-connection-handler.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/bt-data-processor.js +112 -0
- package/lib/commonjs/modules/bt-management/services/devices/bt-data-processor.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/bt-managed-device.js +129 -0
- package/lib/commonjs/modules/bt-management/services/devices/bt-managed-device.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/f4/f4.device.js +47 -0
- package/lib/commonjs/modules/bt-management/services/devices/f4/f4.device.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/f4/f4.main-services.js +64 -0
- package/lib/commonjs/modules/bt-management/services/devices/f4/f4.main-services.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/spo/spo2.device.js +68 -0
- package/lib/commonjs/modules/bt-management/services/devices/spo/spo2.device.js.map +1 -0
- package/lib/commonjs/modules/bt-management/services/devices/spo/spo2.main-services.js +39 -0
- package/lib/commonjs/modules/bt-management/services/devices/spo/spo2.main-services.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/blood-pressure-states.js +15 -0
- package/lib/commonjs/modules/bt-management/types/blood-pressure-states.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/btprovider-children-props.js +6 -0
- package/lib/commonjs/modules/bt-management/types/btprovider-children-props.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/btprovider-props.js +6 -0
- package/lib/commonjs/modules/bt-management/types/btprovider-props.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/case-type.js +15 -0
- package/lib/commonjs/modules/bt-management/types/case-type.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/create-device-params.js +6 -0
- package/lib/commonjs/modules/bt-management/types/create-device-params.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/device-data.js +6 -0
- package/lib/commonjs/modules/bt-management/types/device-data.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/device-measurement-map.js +4 -0
- package/lib/commonjs/modules/bt-management/types/device-measurement-map.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/device-status-change-callback.js +6 -0
- package/lib/commonjs/modules/bt-management/types/device-status-change-callback.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/device-status.js +14 -0
- package/lib/commonjs/modules/bt-management/types/device-status.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/diagnostic-key-enum.js +17 -0
- package/lib/commonjs/modules/bt-management/types/diagnostic-key-enum.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/error-callback.js +6 -0
- package/lib/commonjs/modules/bt-management/types/error-callback.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/i-bt-managed-device.js +2 -0
- package/lib/commonjs/modules/bt-management/types/i-bt-managed-device.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/i-medical-device.js +6 -0
- package/lib/commonjs/modules/bt-management/types/i-medical-device.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/integrated-devices.js +29 -0
- package/lib/commonjs/modules/bt-management/types/integrated-devices.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/measurement-with-case-type.js +6 -0
- package/lib/commonjs/modules/bt-management/types/measurement-with-case-type.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/monitor-characteristic.js +6 -0
- package/lib/commonjs/modules/bt-management/types/monitor-characteristic.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/parser-definition.js +2 -0
- package/lib/commonjs/modules/bt-management/types/parser-definition.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/parsing-case.js +6 -0
- package/lib/commonjs/modules/bt-management/types/parsing-case.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/parsing-model.js +6 -0
- package/lib/commonjs/modules/bt-management/types/parsing-model.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/result-callback.js +6 -0
- package/lib/commonjs/modules/bt-management/types/result-callback.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/service.type.js +6 -0
- package/lib/commonjs/modules/bt-management/types/service.type.js.map +1 -0
- package/lib/commonjs/modules/bt-management/types/write-characteristic.js +2 -0
- package/lib/commonjs/modules/bt-management/types/write-characteristic.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/base-64-to-hex.js +17 -0
- package/lib/commonjs/modules/bt-management/utils/base-64-to-hex.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/convert-bp-state-flag.js +25 -0
- package/lib/commonjs/modules/bt-management/utils/convert-bp-state-flag.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/convert-ecg-diagnostic-flag.js +38 -0
- package/lib/commonjs/modules/bt-management/utils/convert-ecg-diagnostic-flag.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/hex-to-base-64.js +14 -0
- package/lib/commonjs/modules/bt-management/utils/hex-to-base-64.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/hex-to-byte.js +10 -0
- package/lib/commonjs/modules/bt-management/utils/hex-to-byte.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/i-16-from-hex.js +14 -0
- package/lib/commonjs/modules/bt-management/utils/i-16-from-hex.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/le-16-from-hex.js +15 -0
- package/lib/commonjs/modules/bt-management/utils/le-16-from-hex.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/le-32-from-hex.js +17 -0
- package/lib/commonjs/modules/bt-management/utils/le-32-from-hex.js.map +1 -0
- package/lib/commonjs/modules/bt-management/utils/parse-measurement.js +38 -0
- package/lib/commonjs/modules/bt-management/utils/parse-measurement.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/components/content-card.js +39 -0
- package/lib/commonjs/modules/content/content-card/components/content-card.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/components/cover-badge.js +51 -0
- package/lib/commonjs/modules/content/content-card/components/cover-badge.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/components/cover.js +51 -0
- package/lib/commonjs/modules/content/content-card/components/cover.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/components/title.js +32 -0
- package/lib/commonjs/modules/content/content-card/components/title.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/index.js +17 -0
- package/lib/commonjs/modules/content/content-card/index.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-cover-badge-props.js +6 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-cover-badge-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-cover-props.js +6 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-cover-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-metadata-props.js +6 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-metadata-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-title-props.js +6 -0
- package/lib/commonjs/modules/content/content-card/types/content-card-title-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-body.js +33 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-body.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-footer.js +27 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-footer.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-header.js +27 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-header.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-resource.js +59 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-resource.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-rich-content.js +90 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-rich-content.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-tags.js +47 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-tags.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-title.js +28 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail-title.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail.js +52 -0
- package/lib/commonjs/modules/content/content-detail/components/content-detail.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-author.js +27 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-author.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-date.js +42 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-date.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-item.js +22 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-item.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.js +38 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-separator.js +19 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata-separator.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata.js +45 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/content-detail-metadata.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/index.js +13 -0
- package/lib/commonjs/modules/content/content-detail/components/metadata/index.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/context/components/composition-context.js +10 -0
- package/lib/commonjs/modules/content/content-detail/context/components/composition-context.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/context/hooks/use-composition.js +18 -0
- package/lib/commonjs/modules/content/content-detail/context/hooks/use-composition.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/context/index.js +14 -0
- package/lib/commonjs/modules/content/content-detail/context/index.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/context/types/composition-context-type.js +6 -0
- package/lib/commonjs/modules/content/content-detail/context/types/composition-context-type.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/index.js +17 -0
- package/lib/commonjs/modules/content/content-detail/index.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-metadata-item-props.js +6 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-metadata-item-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-metadata-props.js +6 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-metadata-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-props.js +6 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-rich-content-props.js +6 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-rich-content-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-tags-props.js +6 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-tags-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-title-props.js +6 -0
- package/lib/commonjs/modules/content/content-detail/types/content-detail-title-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/components/content-list.js +35 -0
- package/lib/commonjs/modules/content/content-list/components/content-list.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/components/header.js +30 -0
- package/lib/commonjs/modules/content/content-list/components/header.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/components/horizontal-list.js +67 -0
- package/lib/commonjs/modules/content/content-list/components/horizontal-list.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/components/section.js +25 -0
- package/lib/commonjs/modules/content/content-list/components/section.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/components/title.js +20 -0
- package/lib/commonjs/modules/content/content-list/components/title.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/components/view-all.js +32 -0
- package/lib/commonjs/modules/content/content-list/components/view-all.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/index.js +41 -0
- package/lib/commonjs/modules/content/content-list/index.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/types/content-list-props.js +6 -0
- package/lib/commonjs/modules/content/content-list/types/content-list-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/types/default-content-data.js +2 -0
- package/lib/commonjs/modules/content/content-list/types/default-content-data.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/types/horizontal-contents-props.js +6 -0
- package/lib/commonjs/modules/content/content-list/types/horizontal-contents-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/types/horizontal-list-props.js +6 -0
- package/lib/commonjs/modules/content/content-list/types/horizontal-list-props.js.map +1 -0
- package/lib/commonjs/modules/content/content-list/types/index.js +28 -0
- package/lib/commonjs/modules/content/content-list/types/index.js.map +1 -0
- package/lib/commonjs/modules/content/index.js +39 -0
- package/lib/commonjs/modules/content/index.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/android/android-health-connect-authorization-provider.js +78 -0
- package/lib/commonjs/modules/data-sync/components/android/android-health-connect-authorization-provider.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/android/android-health-sync.js +72 -0
- package/lib/commonjs/modules/data-sync/components/android/android-health-sync.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/apple/apple-health-authorization-provider.js +43 -0
- package/lib/commonjs/modules/data-sync/components/apple/apple-health-authorization-provider.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/apple/apple-health-sync.js +73 -0
- package/lib/commonjs/modules/data-sync/components/apple/apple-health-sync.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/data-sync.js +28 -0
- package/lib/commonjs/modules/data-sync/components/data-sync.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/container.js +27 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/container.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/description.js +30 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/description.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/image.js +46 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/image.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/request-button.js +20 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/request-button.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/sheet.js +42 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/sheet.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/skip-button.js +21 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/skip-button.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/title.js +30 -0
- package/lib/commonjs/modules/data-sync/components/manually-request-sheet/title.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/sync-progress-list/sync-progress-bar.js +34 -0
- package/lib/commonjs/modules/data-sync/components/sync-progress-list/sync-progress-bar.js.map +1 -0
- package/lib/commonjs/modules/data-sync/components/sync-progress-list/sync-progress-list.js +63 -0
- package/lib/commonjs/modules/data-sync/components/sync-progress-list/sync-progress-list.js.map +1 -0
- package/lib/commonjs/modules/data-sync/hooks/use-listen-changes.js +56 -0
- package/lib/commonjs/modules/data-sync/hooks/use-listen-changes.js.map +1 -0
- package/lib/commonjs/modules/data-sync/index.js +61 -0
- package/lib/commonjs/modules/data-sync/index.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/android-health-sync-service.js +33 -0
- package/lib/commonjs/modules/data-sync/services/android-health-sync-service.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/apple-health-sync-service.js +33 -0
- package/lib/commonjs/modules/data-sync/services/apple-health-sync-service.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/base-health-sync-service.js +115 -0
- package/lib/commonjs/modules/data-sync/services/base-health-sync-service.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/managers/data-processor.js +85 -0
- package/lib/commonjs/modules/data-sync/services/managers/data-processor.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/managers/instance-manager.js +46 -0
- package/lib/commonjs/modules/data-sync/services/managers/instance-manager.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/managers/storage-manager.js +35 -0
- package/lib/commonjs/modules/data-sync/services/managers/storage-manager.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/managers/sync-progress-manager.js +81 -0
- package/lib/commonjs/modules/data-sync/services/managers/sync-progress-manager.js.map +1 -0
- package/lib/commonjs/modules/data-sync/services/managers/sync-state-manager.js +29 -0
- package/lib/commonjs/modules/data-sync/services/managers/sync-state-manager.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/android-health-connect-authorization-provider-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/android-health-connect-authorization-provider-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/android-health-sync-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/android-health-sync-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/apple-health-authorization-provider-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/apple-health-authorization-provider-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/apple-health-sync-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/apple-health-sync-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/base-service-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/base-service-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/convert-data-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/convert-data-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/data-from-provider-result.js +2 -0
- package/lib/commonjs/modules/data-sync/types/data-from-provider-result.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/get-data-from-provider-props.js +2 -0
- package/lib/commonjs/modules/data-sync/types/get-data-from-provider-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/get-total-count-props.js +2 -0
- package/lib/commonjs/modules/data-sync/types/get-total-count-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/health-authorization-provider-props.js +2 -0
- package/lib/commonjs/modules/data-sync/types/health-authorization-provider-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/health-provider.js +2 -0
- package/lib/commonjs/modules/data-sync/types/health-provider.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/health-sync-keys.js +6 -0
- package/lib/commonjs/modules/data-sync/types/health-sync-keys.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/health-sync-props.js +6 -0
- package/lib/commonjs/modules/data-sync/types/health-sync-props.js.map +1 -0
- package/lib/commonjs/modules/data-sync/types/sync-progress.js +6 -0
- package/lib/commonjs/modules/data-sync/types/sync-progress.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/convert-records-to-observation.js +44 -0
- package/lib/commonjs/modules/data-sync/utils/convert-records-to-observation.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/convert-samples-to-observation.js +30 -0
- package/lib/commonjs/modules/data-sync/utils/convert-samples-to-observation.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/generate-observation-entry.js +36 -0
- package/lib/commonjs/modules/data-sync/utils/generate-observation-entry.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/get-latest-observation-dates-by-code.js +45 -0
- package/lib/commonjs/modules/data-sync/utils/get-latest-observation-dates-by-code.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/get-latest-valid-start-date.js +23 -0
- package/lib/commonjs/modules/data-sync/utils/get-latest-valid-start-date.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/get-records-from-health-connect.js +36 -0
- package/lib/commonjs/modules/data-sync/utils/get-records-from-health-connect.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/get-samples-from-health.js +43 -0
- package/lib/commonjs/modules/data-sync/utils/get-samples-from-health.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/get-total-records-count.js +37 -0
- package/lib/commonjs/modules/data-sync/utils/get-total-records-count.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/get-total-samples-count.js +36 -0
- package/lib/commonjs/modules/data-sync/utils/get-total-samples-count.js.map +1 -0
- package/lib/commonjs/modules/data-sync/utils/save-bundle-observations.js +28 -0
- package/lib/commonjs/modules/data-sync/utils/save-bundle-observations.js.map +1 -0
- package/lib/commonjs/modules/diary/components/diary-card.js +54 -0
- package/lib/commonjs/modules/diary/components/diary-card.js.map +1 -0
- package/lib/commonjs/modules/diary/components/no-data.js +31 -0
- package/lib/commonjs/modules/diary/components/no-data.js.map +1 -0
- package/lib/commonjs/modules/diary/components/start-section.js +38 -0
- package/lib/commonjs/modules/diary/components/start-section.js.map +1 -0
- package/lib/commonjs/modules/diary/index.js +28 -0
- package/lib/commonjs/modules/diary/index.js.map +1 -0
- package/lib/commonjs/modules/diary/types/diary-card-props.js +6 -0
- package/lib/commonjs/modules/diary/types/diary-card-props.js.map +1 -0
- package/lib/commonjs/modules/diary/types/no-data-props.js +6 -0
- package/lib/commonjs/modules/diary/types/no-data-props.js.map +1 -0
- package/lib/commonjs/modules/diary/types/start-section-props.js +6 -0
- package/lib/commonjs/modules/diary/types/start-section-props.js.map +1 -0
- package/lib/commonjs/modules/helpers/conditional.js +22 -0
- package/lib/commonjs/modules/helpers/conditional.js.map +1 -0
- package/lib/commonjs/modules/helpers/form-items/form-date-field.js +88 -0
- package/lib/commonjs/modules/helpers/form-items/form-date-field.js.map +1 -0
- package/lib/commonjs/modules/helpers/form-items/form-field.js +65 -0
- package/lib/commonjs/modules/helpers/form-items/form-field.js.map +1 -0
- package/lib/commonjs/modules/helpers/form-items/form-select.js +175 -0
- package/lib/commonjs/modules/helpers/form-items/form-select.js.map +1 -0
- package/lib/commonjs/modules/helpers/index.js +88 -0
- package/lib/commonjs/modules/helpers/index.js.map +1 -0
- package/lib/commonjs/modules/helpers/utils/s-log.js +26 -0
- package/lib/commonjs/modules/helpers/utils/s-log.js.map +1 -0
- package/lib/commonjs/modules/helpers/utils/safe-json-parse.js +16 -0
- package/lib/commonjs/modules/helpers/utils/safe-json-parse.js.map +1 -0
- package/lib/commonjs/modules/helpers/utils/sentry-logger.js +27 -0
- package/lib/commonjs/modules/helpers/utils/sentry-logger.js.map +1 -0
- package/lib/commonjs/modules/helpers/utils/with-animated.js +28 -0
- package/lib/commonjs/modules/helpers/utils/with-animated.js.map +1 -0
- package/lib/commonjs/modules/image/components/optimized-image.js +82 -0
- package/lib/commonjs/modules/image/components/optimized-image.js.map +1 -0
- package/lib/commonjs/modules/image/index.js +39 -0
- package/lib/commonjs/modules/image/index.js.map +1 -0
- package/lib/commonjs/modules/image/types/image-dimension.js +2 -0
- package/lib/commonjs/modules/image/types/image-dimension.js.map +1 -0
- package/lib/commonjs/modules/image/types/optimized-image-props.js +6 -0
- package/lib/commonjs/modules/image/types/optimized-image-props.js.map +1 -0
- package/lib/commonjs/modules/image/utils/calculate-dimension.js +18 -0
- package/lib/commonjs/modules/image/utils/calculate-dimension.js.map +1 -0
- package/lib/commonjs/modules/image/utils/get-optimized-image-url.js +37 -0
- package/lib/commonjs/modules/image/utils/get-optimized-image-url.js.map +1 -0
- package/lib/commonjs/modules/journal/answer/components/actions.js +24 -0
- package/lib/commonjs/modules/journal/answer/components/actions.js.map +1 -0
- package/lib/commonjs/modules/journal/answer/components/answer.js +41 -0
- package/lib/commonjs/modules/journal/answer/components/answer.js.map +1 -0
- package/lib/commonjs/modules/journal/answer/components/header.js +26 -0
- package/lib/commonjs/modules/journal/answer/components/header.js.map +1 -0
- package/lib/commonjs/modules/journal/answer/components/input.js +27 -0
- package/lib/commonjs/modules/journal/answer/components/input.js.map +1 -0
- package/lib/commonjs/modules/journal/answer/components/question.js +27 -0
- package/lib/commonjs/modules/journal/answer/components/question.js.map +1 -0
- package/lib/commonjs/modules/journal/answer/index.js +17 -0
- package/lib/commonjs/modules/journal/answer/index.js.map +1 -0
- package/lib/commonjs/modules/journal/index.js +39 -0
- package/lib/commonjs/modules/journal/index.js.map +1 -0
- package/lib/commonjs/modules/journal/past-journal/components/answer.js +30 -0
- package/lib/commonjs/modules/journal/past-journal/components/answer.js.map +1 -0
- package/lib/commonjs/modules/journal/past-journal/components/date.js +31 -0
- package/lib/commonjs/modules/journal/past-journal/components/date.js.map +1 -0
- package/lib/commonjs/modules/journal/past-journal/components/past-journal-card.js +39 -0
- package/lib/commonjs/modules/journal/past-journal/components/past-journal-card.js.map +1 -0
- package/lib/commonjs/modules/journal/past-journal/components/title.js +34 -0
- package/lib/commonjs/modules/journal/past-journal/components/title.js.map +1 -0
- package/lib/commonjs/modules/journal/past-journal/index.js +17 -0
- package/lib/commonjs/modules/journal/past-journal/index.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/components/actions.js +30 -0
- package/lib/commonjs/modules/journal/today-question/components/actions.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/components/content.js +25 -0
- package/lib/commonjs/modules/journal/today-question/components/content.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/components/gradient.js +19 -0
- package/lib/commonjs/modules/journal/today-question/components/gradient.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/components/question.js +30 -0
- package/lib/commonjs/modules/journal/today-question/components/question.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/components/title.js +34 -0
- package/lib/commonjs/modules/journal/today-question/components/title.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/components/today-question-card.js +38 -0
- package/lib/commonjs/modules/journal/today-question/components/today-question-card.js.map +1 -0
- package/lib/commonjs/modules/journal/today-question/index.js +17 -0
- package/lib/commonjs/modules/journal/today-question/index.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/language-switcher.js +30 -0
- package/lib/commonjs/modules/language-switcher/components/language-switcher.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/context/language-option-context.js +10 -0
- package/lib/commonjs/modules/language-switcher/components/option/context/language-option-context.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/flag.js +21 -0
- package/lib/commonjs/modules/language-switcher/components/option/flag.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/hooks/use-language-option.js +18 -0
- package/lib/commonjs/modules/language-switcher/components/option/hooks/use-language-option.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/label.js +28 -0
- package/lib/commonjs/modules/language-switcher/components/option/label.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/language-switcher-option.js +64 -0
- package/lib/commonjs/modules/language-switcher/components/option/language-switcher-option.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/radio-button.js +23 -0
- package/lib/commonjs/modules/language-switcher/components/option/radio-button.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/types/language-option-context-type.js +2 -0
- package/lib/commonjs/modules/language-switcher/components/option/types/language-option-context-type.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/components/option/types/language-switcher-option-props.js +6 -0
- package/lib/commonjs/modules/language-switcher/components/option/types/language-switcher-option-props.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/context/language-option-context.js +10 -0
- package/lib/commonjs/modules/language-switcher/context/language-option-context.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/hooks/use-language-switcher.js +18 -0
- package/lib/commonjs/modules/language-switcher/hooks/use-language-switcher.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/index.js +17 -0
- package/lib/commonjs/modules/language-switcher/index.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/types/language-switcher-context-type.js +2 -0
- package/lib/commonjs/modules/language-switcher/types/language-switcher-context-type.js.map +1 -0
- package/lib/commonjs/modules/language-switcher/types/language-switcher-props.js +6 -0
- package/lib/commonjs/modules/language-switcher/types/language-switcher-props.js.map +1 -0
- package/lib/commonjs/modules/measurement/components/date-range.js +119 -0
- package/lib/commonjs/modules/measurement/components/date-range.js.map +1 -0
- package/lib/commonjs/modules/measurement/components/measurement-list-item.js +80 -0
- package/lib/commonjs/modules/measurement/components/measurement-list-item.js.map +1 -0
- package/lib/commonjs/modules/measurement/components/measurement-list.js +43 -0
- package/lib/commonjs/modules/measurement/components/measurement-list.js.map +1 -0
- package/lib/commonjs/modules/measurement/index.js +39 -0
- package/lib/commonjs/modules/measurement/index.js.map +1 -0
- package/lib/commonjs/modules/measurement/types/date-range-props.js +6 -0
- package/lib/commonjs/modules/measurement/types/date-range-props.js.map +1 -0
- package/lib/commonjs/modules/measurement/types/measurement-list-item-props.js +6 -0
- package/lib/commonjs/modules/measurement/types/measurement-list-item-props.js.map +1 -0
- package/lib/commonjs/modules/measurement/utils/get-end-date.js +16 -0
- package/lib/commonjs/modules/measurement/utils/get-end-date.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/data-container.js +36 -0
- package/lib/commonjs/modules/observation-detail/components/data-container.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/date-time.js +27 -0
- package/lib/commonjs/modules/observation-detail/components/date-time.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/observation-detail.js +49 -0
- package/lib/commonjs/modules/observation-detail/components/observation-detail.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/photo-preview.js +128 -0
- package/lib/commonjs/modules/observation-detail/components/photo-preview.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/preview-modal.js +201 -0
- package/lib/commonjs/modules/observation-detail/components/preview-modal.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/resource.js +52 -0
- package/lib/commonjs/modules/observation-detail/components/resource.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/single-card-data-row.js +55 -0
- package/lib/commonjs/modules/observation-detail/components/single-card-data-row.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/components/text-data.js +27 -0
- package/lib/commonjs/modules/observation-detail/components/text-data.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/index.js +28 -0
- package/lib/commonjs/modules/observation-detail/index.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/types/observation-detail-date-time-props.js +6 -0
- package/lib/commonjs/modules/observation-detail/types/observation-detail-date-time-props.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/types/photo-preview-props.js +6 -0
- package/lib/commonjs/modules/observation-detail/types/photo-preview-props.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/types/preview-modal-props.js +2 -0
- package/lib/commonjs/modules/observation-detail/types/preview-modal-props.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/types/resource-props.js +6 -0
- package/lib/commonjs/modules/observation-detail/types/resource-props.js.map +1 -0
- package/lib/commonjs/modules/observation-detail/types/single-card-data-row-props.js +6 -0
- package/lib/commonjs/modules/observation-detail/types/single-card-data-row-props.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/birth-date/patient-birth-date-icon.js +24 -0
- package/lib/commonjs/modules/patient/components/card/birth-date/patient-birth-date-icon.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/birth-date/patient-birth-date-text.js +61 -0
- package/lib/commonjs/modules/patient/components/card/birth-date/patient-birth-date-text.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/birth-date/patient-birth-date.js +39 -0
- package/lib/commonjs/modules/patient/components/card/birth-date/patient-birth-date.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/patient-card.js +53 -0
- package/lib/commonjs/modules/patient/components/card/patient-card.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/patient-gender.js +138 -0
- package/lib/commonjs/modules/patient/components/card/patient-gender.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/patient-meta.js +34 -0
- package/lib/commonjs/modules/patient/components/card/patient-meta.js.map +1 -0
- package/lib/commonjs/modules/patient/components/card/patient-name.js +57 -0
- package/lib/commonjs/modules/patient/components/card/patient-name.js.map +1 -0
- package/lib/commonjs/modules/patient/components/patient-list.js +67 -0
- package/lib/commonjs/modules/patient/components/patient-list.js.map +1 -0
- package/lib/commonjs/modules/patient/index.js +72 -0
- package/lib/commonjs/modules/patient/index.js.map +1 -0
- package/lib/commonjs/modules/patient/types/patient-birth-date-text-props.js +6 -0
- package/lib/commonjs/modules/patient/types/patient-birth-date-text-props.js.map +1 -0
- package/lib/commonjs/modules/patient/types/patient-gender-props.js +6 -0
- package/lib/commonjs/modules/patient/types/patient-gender-props.js.map +1 -0
- package/lib/commonjs/modules/patient/types/patient-list-props.js +6 -0
- package/lib/commonjs/modules/patient/types/patient-list-props.js.map +1 -0
- package/lib/commonjs/modules/patient/types/patient-name-props.js +6 -0
- package/lib/commonjs/modules/patient/types/patient-name-props.js.map +1 -0
- package/lib/commonjs/modules/pdf/components/pdf-viewer.js +81 -0
- package/lib/commonjs/modules/pdf/components/pdf-viewer.js.map +1 -0
- package/lib/commonjs/modules/pdf/index.js +17 -0
- package/lib/commonjs/modules/pdf/index.js.map +1 -0
- package/lib/commonjs/modules/pdf/types/pdf-viewer-props.js +6 -0
- package/lib/commonjs/modules/pdf/types/pdf-viewer-props.js.map +1 -0
- package/lib/commonjs/modules/picker-sheet/components/picker-sheet.js +40 -0
- package/lib/commonjs/modules/picker-sheet/components/picker-sheet.js.map +1 -0
- package/lib/commonjs/modules/picker-sheet/components/wheel-picker-item.js +72 -0
- package/lib/commonjs/modules/picker-sheet/components/wheel-picker-item.js.map +1 -0
- package/lib/commonjs/modules/picker-sheet/components/wheel-picker.js +201 -0
- package/lib/commonjs/modules/picker-sheet/components/wheel-picker.js.map +1 -0
- package/lib/commonjs/modules/picker-sheet/index.js +28 -0
- package/lib/commonjs/modules/picker-sheet/index.js.map +1 -0
- package/lib/commonjs/modules/progress-bar/components/progress-bar.js +56 -0
- package/lib/commonjs/modules/progress-bar/components/progress-bar.js.map +1 -0
- package/lib/commonjs/modules/progress-bar/index.js +28 -0
- package/lib/commonjs/modules/progress-bar/index.js.map +1 -0
- package/lib/commonjs/modules/progress-bar/types/progress-bar-props.js +6 -0
- package/lib/commonjs/modules/progress-bar/types/progress-bar-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/README.md +375 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.js +39 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-error.js +38 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-error.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-item.js +46 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-item.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.js +47 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content.js +47 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/content/questionnaire-content.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/index.js +39 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/index.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.js +57 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.js +57 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.js +37 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.js +48 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.js +60 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-date-field.js +116 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-date-field.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.js +65 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-text-field.js +59 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/fields/questionnaire-text-field.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.js +38 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/header/questionnaire-header-title.js +29 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/header/questionnaire-header-title.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/header/questionnaire-header.js +31 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/header/questionnaire-header.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.js +38 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.js +35 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.js +39 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.js +45 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/questionnaire-form-provider.js +143 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/questionnaire-form-provider.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/questionnaire-form.js +59 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/questionnaire-form.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/questionnaire-navigation-provider.js +55 -0
- package/lib/commonjs/modules/questionnaire-response-form/components/questionnaire-navigation-provider.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/contexts/questionnaire-form-context.js +10 -0
- package/lib/commonjs/modules/questionnaire-response-form/contexts/questionnaire-form-context.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.js +10 -0
- package/lib/commonjs/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/index.js +39 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/index.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-initial-selected-values.js +68 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-initial-selected-values.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-navigation-handlers.js +64 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-navigation-handlers.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-questionnaire-form.js +18 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-questionnaire-form.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.js +28 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.js +18 -0
- package/lib/commonjs/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/index.js +20 -0
- package/lib/commonjs/modules/questionnaire-response-form/index.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/date-item-type.js +2 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/date-item-type.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/extended-questionnaire-item.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/extended-questionnaire-item.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/index.js +28 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/index.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/navigation-button-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/navigation-button-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-content-error-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-content-error-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-content-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-content-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-context-type.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-context-type.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-provider-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-provider-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-values.js +2 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-form-values.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-header-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-header-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-header-title-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-header-title-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-props.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire-props.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire.js +6 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/questionnaire.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/response-values.js +2 -0
- package/lib/commonjs/modules/questionnaire-response-form/types/response-values.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/condition-utils.js +51 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/condition-utils.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/boolean-condition.js +22 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/boolean-condition.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/date-condition.js +73 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/date-condition.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/decimal-condition.js +38 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/decimal-condition.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/index.js +34 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/index.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/string-condition.js +22 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/conditions/string-condition.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/fields/get-keyboard-type.js +18 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/fields/get-keyboard-type.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/fields/get-option-text.js +20 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/fields/get-option-text.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/fields/get-option-value.js +17 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/fields/get-option-value.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/form-utils.js +110 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/form-utils.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/form-validation.js +40 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/form-validation.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.js +52 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.js.map +1 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/questionnaire-submit-utils.js +22 -0
- package/lib/commonjs/modules/questionnaire-response-form/utils/questionnaire-submit-utils.js.map +1 -0
- package/lib/commonjs/modules/setting/components/list-header.js +38 -0
- package/lib/commonjs/modules/setting/components/list-header.js.map +1 -0
- package/lib/commonjs/modules/setting/components/setting-list-item.js +54 -0
- package/lib/commonjs/modules/setting/components/setting-list-item.js.map +1 -0
- package/lib/commonjs/modules/setting/components/setting-list.js +83 -0
- package/lib/commonjs/modules/setting/components/setting-list.js.map +1 -0
- package/lib/commonjs/modules/setting/index.js +27 -0
- package/lib/commonjs/modules/setting/index.js.map +1 -0
- package/lib/commonjs/modules/setting/types/custom-setting-list-item.js +2 -0
- package/lib/commonjs/modules/setting/types/custom-setting-list-item.js.map +1 -0
- package/lib/commonjs/modules/setting/types/setting-list-item-props.js +6 -0
- package/lib/commonjs/modules/setting/types/setting-list-item-props.js.map +1 -0
- package/lib/commonjs/modules/setting/types/setting-list-props.js +6 -0
- package/lib/commonjs/modules/setting/types/setting-list-props.js.map +1 -0
- package/lib/commonjs/modules/socket/components/socket-provider.js +114 -0
- package/lib/commonjs/modules/socket/components/socket-provider.js.map +1 -0
- package/lib/commonjs/modules/socket/contexts/socket-context.js +10 -0
- package/lib/commonjs/modules/socket/contexts/socket-context.js.map +1 -0
- package/lib/commonjs/modules/socket/hooks/use-ai-event-listener.js +42 -0
- package/lib/commonjs/modules/socket/hooks/use-ai-event-listener.js.map +1 -0
- package/lib/commonjs/modules/socket/hooks/use-socket.js +18 -0
- package/lib/commonjs/modules/socket/hooks/use-socket.js.map +1 -0
- package/lib/commonjs/modules/socket/index.js +72 -0
- package/lib/commonjs/modules/socket/index.js.map +1 -0
- package/lib/commonjs/modules/socket/types/socket-context-type.js +6 -0
- package/lib/commonjs/modules/socket/types/socket-context-type.js.map +1 -0
- package/lib/commonjs/modules/socket/types/socket-log-payload.js +2 -0
- package/lib/commonjs/modules/socket/types/socket-log-payload.js.map +1 -0
- package/lib/commonjs/modules/socket/types/socket-provider-props.js +6 -0
- package/lib/commonjs/modules/socket/types/socket-provider-props.js.map +1 -0
- package/lib/commonjs/modules/tab/components/tab-item.js +53 -0
- package/lib/commonjs/modules/tab/components/tab-item.js.map +1 -0
- package/lib/commonjs/modules/tab/components/tab-provider.js +19 -0
- package/lib/commonjs/modules/tab/components/tab-provider.js.map +1 -0
- package/lib/commonjs/modules/tab/components/tab.js +31 -0
- package/lib/commonjs/modules/tab/components/tab.js.map +1 -0
- package/lib/commonjs/modules/tab/contexts/tab-context.js +10 -0
- package/lib/commonjs/modules/tab/contexts/tab-context.js.map +1 -0
- package/lib/commonjs/modules/tab/hooks/use-tab.js +18 -0
- package/lib/commonjs/modules/tab/hooks/use-tab.js.map +1 -0
- package/lib/commonjs/modules/tab/index.js +28 -0
- package/lib/commonjs/modules/tab/index.js.map +1 -0
- package/lib/commonjs/modules/tab/types/tab-context-type.js +2 -0
- package/lib/commonjs/modules/tab/types/tab-context-type.js.map +1 -0
- package/lib/commonjs/modules/tab/types/tab-item-props.js +6 -0
- package/lib/commonjs/modules/tab/types/tab-item-props.js.map +1 -0
- package/lib/commonjs/modules/tab/types/tab-props.js +6 -0
- package/lib/commonjs/modules/tab/types/tab-props.js.map +1 -0
- package/lib/commonjs/modules/theme/components/theme-provider.js +39 -0
- package/lib/commonjs/modules/theme/components/theme-provider.js.map +1 -0
- package/lib/commonjs/modules/theme/constants/colors.js +142 -0
- package/lib/commonjs/modules/theme/constants/colors.js.map +1 -0
- package/lib/commonjs/modules/theme/constants/multipliers.js +11 -0
- package/lib/commonjs/modules/theme/constants/multipliers.js.map +1 -0
- package/lib/commonjs/modules/theme/hooks/use-app-theme.js +11 -0
- package/lib/commonjs/modules/theme/hooks/use-app-theme.js.map +1 -0
- package/lib/commonjs/modules/theme/index.js +50 -0
- package/lib/commonjs/modules/theme/index.js.map +1 -0
- package/lib/commonjs/modules/theme/types/app-theme.js +6 -0
- package/lib/commonjs/modules/theme/types/app-theme.js.map +1 -0
- package/lib/commonjs/modules/theme/types/theme-provider-props.js +6 -0
- package/lib/commonjs/modules/theme/types/theme-provider-props.js.map +1 -0
- package/lib/commonjs/modules/theme/utils/generate-theme.js +23 -0
- package/lib/commonjs/modules/theme/utils/generate-theme.js.map +1 -0
- package/lib/commonjs/modules/tile/components/complete-animation.js +63 -0
- package/lib/commonjs/modules/tile/components/complete-animation.js.map +1 -0
- package/lib/commonjs/modules/tile/components/measured-value.js +59 -0
- package/lib/commonjs/modules/tile/components/measured-value.js.map +1 -0
- package/lib/commonjs/modules/tile/components/measuring-spinner.js +19 -0
- package/lib/commonjs/modules/tile/components/measuring-spinner.js.map +1 -0
- package/lib/commonjs/modules/tile/components/no-measured-value.js +28 -0
- package/lib/commonjs/modules/tile/components/no-measured-value.js.map +1 -0
- package/lib/commonjs/modules/tile/components/start-section.js +39 -0
- package/lib/commonjs/modules/tile/components/start-section.js.map +1 -0
- package/lib/commonjs/modules/tile/components/status.js +44 -0
- package/lib/commonjs/modules/tile/components/status.js.map +1 -0
- package/lib/commonjs/modules/tile/components/task-icon.js +32 -0
- package/lib/commonjs/modules/tile/components/task-icon.js.map +1 -0
- package/lib/commonjs/modules/tile/components/tile.js +64 -0
- package/lib/commonjs/modules/tile/components/tile.js.map +1 -0
- package/lib/commonjs/modules/tile/components/title.js +31 -0
- package/lib/commonjs/modules/tile/components/title.js.map +1 -0
- package/lib/commonjs/modules/tile/constants/measurement-icon-svg.js +156 -0
- package/lib/commonjs/modules/tile/constants/measurement-icon-svg.js.map +1 -0
- package/lib/commonjs/modules/tile/index.js +28 -0
- package/lib/commonjs/modules/tile/index.js.map +1 -0
- package/lib/commonjs/modules/tile/types/complete-animation-props.js +2 -0
- package/lib/commonjs/modules/tile/types/complete-animation-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/measured-value-props.js +6 -0
- package/lib/commonjs/modules/tile/types/measured-value-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/measurement-icon-props.js +6 -0
- package/lib/commonjs/modules/tile/types/measurement-icon-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/measuring-spinner-props.js +6 -0
- package/lib/commonjs/modules/tile/types/measuring-spinner-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/start-section-props.js +6 -0
- package/lib/commonjs/modules/tile/types/start-section-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/task-icon-props.js +6 -0
- package/lib/commonjs/modules/tile/types/task-icon-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/tile-list-props.js +6 -0
- package/lib/commonjs/modules/tile/types/tile-list-props.js.map +1 -0
- package/lib/commonjs/modules/tile/types/tile-props.js +6 -0
- package/lib/commonjs/modules/tile/types/tile-props.js.map +1 -0
- package/lib/commonjs/polyfills/index.js +49 -0
- package/lib/commonjs/polyfills/index.js.map +1 -0
- package/lib/module/assets/animations/breathing.json +1 -0
- package/lib/module/assets/images/manual-request-apple.png +0 -0
- package/lib/module/assets/images/manual-request-fitbit.png +0 -0
- package/lib/module/assets/images/manual-request-google.png +0 -0
- package/lib/module/index.js +28 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/modules/auth/delete-account-button/components/delete-account-button.js +116 -0
- package/lib/module/modules/auth/delete-account-button/components/delete-account-button.js.map +1 -0
- package/lib/module/modules/auth/delete-account-button/index.js +4 -0
- package/lib/module/modules/auth/delete-account-button/index.js.map +1 -0
- package/lib/module/modules/auth/delete-account-button/types/delete-account-button-props.js +4 -0
- package/lib/module/modules/auth/delete-account-button/types/delete-account-button-props.js.map +1 -0
- package/lib/module/modules/auth/index.js +9 -0
- package/lib/module/modules/auth/index.js.map +1 -0
- package/lib/module/modules/auth/logout-button/components/logout-button.js +38 -0
- package/lib/module/modules/auth/logout-button/components/logout-button.js.map +1 -0
- package/lib/module/modules/auth/logout-button/index.js +4 -0
- package/lib/module/modules/auth/logout-button/index.js.map +1 -0
- package/lib/module/modules/auth/logout-button/types/logout-button-props.js +4 -0
- package/lib/module/modules/auth/logout-button/types/logout-button-props.js.map +1 -0
- package/lib/module/modules/auth/profile/components/profile-form-field-component.js +36 -0
- package/lib/module/modules/auth/profile/components/profile-form-field-component.js.map +1 -0
- package/lib/module/modules/auth/profile/components/profile-form-provider.js +81 -0
- package/lib/module/modules/auth/profile/components/profile-form-provider.js.map +1 -0
- package/lib/module/modules/auth/profile/components/profile-form.js +79 -0
- package/lib/module/modules/auth/profile/components/profile-form.js.map +1 -0
- package/lib/module/modules/auth/profile/components/profile-with-form.js +14 -0
- package/lib/module/modules/auth/profile/components/profile-with-form.js.map +1 -0
- package/lib/module/modules/auth/profile/contexts/profile-form-context.js +5 -0
- package/lib/module/modules/auth/profile/contexts/profile-form-context.js.map +1 -0
- package/lib/module/modules/auth/profile/hooks/use-profile-form.js +12 -0
- package/lib/module/modules/auth/profile/hooks/use-profile-form.js.map +1 -0
- package/lib/module/modules/auth/profile/index.js +7 -0
- package/lib/module/modules/auth/profile/index.js.map +1 -0
- package/lib/module/modules/auth/profile/types/profile-form-context-type.js +4 -0
- package/lib/module/modules/auth/profile/types/profile-form-context-type.js.map +1 -0
- package/lib/module/modules/auth/profile/types/profile-form-field.js +4 -0
- package/lib/module/modules/auth/profile/types/profile-form-field.js.map +1 -0
- package/lib/module/modules/auth/profile/types/profile-form-props.js +4 -0
- package/lib/module/modules/auth/profile/types/profile-form-props.js.map +1 -0
- package/lib/module/modules/auth/profile/types/profile-form-values.js +2 -0
- package/lib/module/modules/auth/profile/types/profile-form-values.js.map +1 -0
- package/lib/module/modules/auth/register/components/form/inputs.js +102 -0
- package/lib/module/modules/auth/register/components/form/inputs.js.map +1 -0
- package/lib/module/modules/auth/register/components/form/register-button.js +62 -0
- package/lib/module/modules/auth/register/components/form/register-button.js.map +1 -0
- package/lib/module/modules/auth/register/components/form/register-form-provider.js +79 -0
- package/lib/module/modules/auth/register/components/form/register-form-provider.js.map +1 -0
- package/lib/module/modules/auth/register/components/form/register-form.js +25 -0
- package/lib/module/modules/auth/register/components/form/register-form.js.map +1 -0
- package/lib/module/modules/auth/register/components/form/register-with-email.js +20 -0
- package/lib/module/modules/auth/register/components/form/register-with-email.js.map +1 -0
- package/lib/module/modules/auth/register/components/header/description.js +34 -0
- package/lib/module/modules/auth/register/components/header/description.js.map +1 -0
- package/lib/module/modules/auth/register/components/header/header.js +24 -0
- package/lib/module/modules/auth/register/components/header/header.js.map +1 -0
- package/lib/module/modules/auth/register/components/header/title.js +29 -0
- package/lib/module/modules/auth/register/components/header/title.js.map +1 -0
- package/lib/module/modules/auth/register/components/login-link.js +41 -0
- package/lib/module/modules/auth/register/components/login-link.js.map +1 -0
- package/lib/module/modules/auth/register/components/register-with-separator.js +55 -0
- package/lib/module/modules/auth/register/components/register-with-separator.js.map +1 -0
- package/lib/module/modules/auth/register/components/register.js +57 -0
- package/lib/module/modules/auth/register/components/register.js.map +1 -0
- package/lib/module/modules/auth/register/contexts/register-form-context.js +5 -0
- package/lib/module/modules/auth/register/contexts/register-form-context.js.map +1 -0
- package/lib/module/modules/auth/register/hooks/use-register-form.js +12 -0
- package/lib/module/modules/auth/register/hooks/use-register-form.js.map +1 -0
- package/lib/module/modules/auth/register/index.js +5 -0
- package/lib/module/modules/auth/register/index.js.map +1 -0
- package/lib/module/modules/auth/register/types/form-inputs-props.js +4 -0
- package/lib/module/modules/auth/register/types/form-inputs-props.js.map +1 -0
- package/lib/module/modules/auth/register/types/register-button-props.js +4 -0
- package/lib/module/modules/auth/register/types/register-button-props.js.map +1 -0
- package/lib/module/modules/auth/register/types/register-form-context-type.js +4 -0
- package/lib/module/modules/auth/register/types/register-form-context-type.js.map +1 -0
- package/lib/module/modules/auth/register/types/register-form-props.js +4 -0
- package/lib/module/modules/auth/register/types/register-form-props.js.map +1 -0
- package/lib/module/modules/auth/register/types/register-form-values.js +4 -0
- package/lib/module/modules/auth/register/types/register-form-values.js.map +1 -0
- package/lib/module/modules/auth/register/types/register-header-props.js +4 -0
- package/lib/module/modules/auth/register/types/register-header-props.js.map +1 -0
- package/lib/module/modules/auth/register/types/register-props.js +4 -0
- package/lib/module/modules/auth/register/types/register-props.js.map +1 -0
- package/lib/module/modules/auth/register/utils/apply-custom-validation.js +12 -0
- package/lib/module/modules/auth/register/utils/apply-custom-validation.js.map +1 -0
- package/lib/module/modules/auth/register/utils/create-register-validation-schema.js +27 -0
- package/lib/module/modules/auth/register/utils/create-register-validation-schema.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/form/inputs.js +53 -0
- package/lib/module/modules/auth/reset-password/components/form/inputs.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/form/reset-password-button.js +62 -0
- package/lib/module/modules/auth/reset-password/components/form/reset-password-button.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/form/reset-password-form-provider.js +49 -0
- package/lib/module/modules/auth/reset-password/components/form/reset-password-form-provider.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/form/reset-password-form.js +34 -0
- package/lib/module/modules/auth/reset-password/components/form/reset-password-form.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/header/description.js +34 -0
- package/lib/module/modules/auth/reset-password/components/header/description.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/header/header.js +24 -0
- package/lib/module/modules/auth/reset-password/components/header/header.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/header/title.js +29 -0
- package/lib/module/modules/auth/reset-password/components/header/title.js.map +1 -0
- package/lib/module/modules/auth/reset-password/components/reset-password.js +49 -0
- package/lib/module/modules/auth/reset-password/components/reset-password.js.map +1 -0
- package/lib/module/modules/auth/reset-password/contexts/reset-password-form-context.js +5 -0
- package/lib/module/modules/auth/reset-password/contexts/reset-password-form-context.js.map +1 -0
- package/lib/module/modules/auth/reset-password/hooks/use-reset-password-form.js +12 -0
- package/lib/module/modules/auth/reset-password/hooks/use-reset-password-form.js.map +1 -0
- package/lib/module/modules/auth/reset-password/index.js +5 -0
- package/lib/module/modules/auth/reset-password/index.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/index.js +8 -0
- package/lib/module/modules/auth/reset-password/types/index.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-button-props.js +4 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-button-props.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-context-type.js +4 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-context-type.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-form-provider-props.js +4 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-form-provider-props.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-form-values.js +2 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-form-values.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-header-props.js +4 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-header-props.js.map +1 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-props.js +4 -0
- package/lib/module/modules/auth/reset-password/types/reset-password-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/footer.js +32 -0
- package/lib/module/modules/auth/sign-in/components/footer.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/forgot-password.js +22 -0
- package/lib/module/modules/auth/sign-in/components/form/forgot-password.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/inputs.js +56 -0
- package/lib/module/modules/auth/sign-in/components/form/inputs.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/login-form-provider.js +77 -0
- package/lib/module/modules/auth/sign-in/components/form/login-form-provider.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/login-form.js +20 -0
- package/lib/module/modules/auth/sign-in/components/form/login-form.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/sign-in-with-email.js +22 -0
- package/lib/module/modules/auth/sign-in/components/form/sign-in-with-email.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/signin-button.js +62 -0
- package/lib/module/modules/auth/sign-in/components/form/signin-button.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/form/spacing.js +16 -0
- package/lib/module/modules/auth/sign-in/components/form/spacing.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/header/description.js +34 -0
- package/lib/module/modules/auth/sign-in/components/header/description.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/header/header.js +24 -0
- package/lib/module/modules/auth/sign-in/components/header/header.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/header/title.js +29 -0
- package/lib/module/modules/auth/sign-in/components/header/title.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/login-with-separator.js +55 -0
- package/lib/module/modules/auth/sign-in/components/login-with-separator.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/register-link.js +41 -0
- package/lib/module/modules/auth/sign-in/components/register-link.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/sign-in.js +57 -0
- package/lib/module/modules/auth/sign-in/components/sign-in.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/site-url.js +25 -0
- package/lib/module/modules/auth/sign-in/components/site-url.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login-button.js +90 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login-button.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login-icon.js +19 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login-icon.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login-text.js +30 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login-text.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login.js +18 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/apple-login.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-icon.js +30 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-icon.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login-button.js +106 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login-button.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login-icon.js +18 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login-icon.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login-text.js +28 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login-text.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login.js +18 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/google-login.js.map +1 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/social-logins.js +32 -0
- package/lib/module/modules/auth/sign-in/components/social-logins/social-logins.js.map +1 -0
- package/lib/module/modules/auth/sign-in/contexts/login-form-context.js +5 -0
- package/lib/module/modules/auth/sign-in/contexts/login-form-context.js.map +1 -0
- package/lib/module/modules/auth/sign-in/hooks/use-login-form.js +12 -0
- package/lib/module/modules/auth/sign-in/hooks/use-login-form.js.map +1 -0
- package/lib/module/modules/auth/sign-in/index.js +13 -0
- package/lib/module/modules/auth/sign-in/index.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/apple-login-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/apple-login-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/footer-props.js +2 -0
- package/lib/module/modules/auth/sign-in/types/footer-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/google-icon-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/google-icon-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/google-login-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/google-login-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/login-form-context-type.js +4 -0
- package/lib/module/modules/auth/sign-in/types/login-form-context-type.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/login-form-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/login-form-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/login-form-values.js +4 -0
- package/lib/module/modules/auth/sign-in/types/login-form-values.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/login-with-separator-props.js +2 -0
- package/lib/module/modules/auth/sign-in/types/login-with-separator-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/sign-in-header-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/sign-in-header-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/sign-in-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/sign-in-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/signin-button-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/signin-button-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/signin-form-forgot-password-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/signin-form-forgot-password-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/social-logins-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/social-logins-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/spacing-props.js +4 -0
- package/lib/module/modules/auth/sign-in/types/spacing-props.js.map +1 -0
- package/lib/module/modules/auth/sign-in/types/token-response.js +2 -0
- package/lib/module/modules/auth/sign-in/types/token-response.js.map +1 -0
- package/lib/module/modules/auth/sign-in/utils/create-login-validation-schema.js +13 -0
- package/lib/module/modules/auth/sign-in/utils/create-login-validation-schema.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/animation-wrapper.js +25 -0
- package/lib/module/modules/breathing-exercise/components/animation-wrapper.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/animation.js +36 -0
- package/lib/module/modules/breathing-exercise/components/animation.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/breathing-exercise-provider.js +74 -0
- package/lib/module/modules/breathing-exercise/components/breathing-exercise-provider.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/breathing-exercise.js +38 -0
- package/lib/module/modules/breathing-exercise/components/breathing-exercise.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/icons/exhale-icon.js +21 -0
- package/lib/module/modules/breathing-exercise/components/icons/exhale-icon.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/icons/hold-icon.js +21 -0
- package/lib/module/modules/breathing-exercise/components/icons/hold-icon.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/icons/inhale-icon.js +21 -0
- package/lib/module/modules/breathing-exercise/components/icons/inhale-icon.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/info.js +23 -0
- package/lib/module/modules/breathing-exercise/components/info.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/method-name.js +30 -0
- package/lib/module/modules/breathing-exercise/components/method-name.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/method-type-icon.js +66 -0
- package/lib/module/modules/breathing-exercise/components/method-type-icon.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/progress-bar.js +15 -0
- package/lib/module/modules/breathing-exercise/components/progress-bar.js.map +1 -0
- package/lib/module/modules/breathing-exercise/components/remaining-time.js +26 -0
- package/lib/module/modules/breathing-exercise/components/remaining-time.js.map +1 -0
- package/lib/module/modules/breathing-exercise/context/breathing-exercise-context.js +5 -0
- package/lib/module/modules/breathing-exercise/context/breathing-exercise-context.js.map +1 -0
- package/lib/module/modules/breathing-exercise/hooks/use-breathing-exercise.js +12 -0
- package/lib/module/modules/breathing-exercise/hooks/use-breathing-exercise.js.map +1 -0
- package/lib/module/modules/breathing-exercise/index.js +4 -0
- package/lib/module/modules/breathing-exercise/index.js.map +1 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise-animation-props.js +4 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise-animation-props.js.map +1 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise-context-type.js +4 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise-context-type.js.map +1 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise-props.js +4 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise-props.js.map +1 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise.js +2 -0
- package/lib/module/modules/breathing-exercise/types/breathing-exercise.js.map +1 -0
- package/lib/module/modules/bt-device/components/btdevice-instruction.js +27 -0
- package/lib/module/modules/bt-device/components/btdevice-instruction.js.map +1 -0
- package/lib/module/modules/bt-device/components/btdevice-list.js +71 -0
- package/lib/module/modules/bt-device/components/btdevice-list.js.map +1 -0
- package/lib/module/modules/bt-device/components/device-list-provider.js +19 -0
- package/lib/module/modules/bt-device/components/device-list-provider.js.map +1 -0
- package/lib/module/modules/bt-device/components/hooks/use-device-list.js +12 -0
- package/lib/module/modules/bt-device/components/hooks/use-device-list.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/bottom-container.js +27 -0
- package/lib/module/modules/bt-device/components/item/bottom-container.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/btdevice-item.js +51 -0
- package/lib/module/modules/bt-device/components/item/btdevice-item.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/content.js +25 -0
- package/lib/module/modules/bt-device/components/item/content.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/image.js +18 -0
- package/lib/module/modules/bt-device/components/item/image.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/status.js +48 -0
- package/lib/module/modules/bt-device/components/item/status.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/sub-title.js +23 -0
- package/lib/module/modules/bt-device/components/item/sub-title.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/title.js +27 -0
- package/lib/module/modules/bt-device/components/item/title.js.map +1 -0
- package/lib/module/modules/bt-device/components/item/top-container.js +28 -0
- package/lib/module/modules/bt-device/components/item/top-container.js.map +1 -0
- package/lib/module/modules/bt-device/constants/device-images.js +2 -0
- package/lib/module/modules/bt-device/constants/device-images.js.map +1 -0
- package/lib/module/modules/bt-device/constants/device-instruction-pdfs.js +29 -0
- package/lib/module/modules/bt-device/constants/device-instruction-pdfs.js.map +1 -0
- package/lib/module/modules/bt-device/constants/device-list-items.js +96 -0
- package/lib/module/modules/bt-device/constants/device-list-items.js.map +1 -0
- package/lib/module/modules/bt-device/contexts/device-list-context.js +8 -0
- package/lib/module/modules/bt-device/contexts/device-list-context.js.map +1 -0
- package/lib/module/modules/bt-device/index.js +11 -0
- package/lib/module/modules/bt-device/index.js.map +1 -0
- package/lib/module/modules/bt-device/types/btdevice-instruction-props.js +4 -0
- package/lib/module/modules/bt-device/types/btdevice-instruction-props.js.map +1 -0
- package/lib/module/modules/bt-device/types/btdevice-item-status-props.js +4 -0
- package/lib/module/modules/bt-device/types/btdevice-item-status-props.js.map +1 -0
- package/lib/module/modules/bt-device/types/btdevice-list-props.js +4 -0
- package/lib/module/modules/bt-device/types/btdevice-list-props.js.map +1 -0
- package/lib/module/modules/bt-device/types/device-list-item.js +4 -0
- package/lib/module/modules/bt-device/types/device-list-item.js.map +1 -0
- package/lib/module/modules/bt-management/components/bt-provider-child-wrapper.js +94 -0
- package/lib/module/modules/bt-management/components/bt-provider-child-wrapper.js.map +1 -0
- package/lib/module/modules/bt-management/components/bt-provider.js +34 -0
- package/lib/module/modules/bt-management/components/bt-provider.js.map +1 -0
- package/lib/module/modules/bt-management/components/default-permission-fallback.js +23 -0
- package/lib/module/modules/bt-management/components/default-permission-fallback.js.map +1 -0
- package/lib/module/modules/bt-management/constants/blood-pressure-translated-exception-map.js +5 -0
- package/lib/module/modules/bt-management/constants/blood-pressure-translated-exception-map.js.map +1 -0
- package/lib/module/modules/bt-management/constants/diagnostic-results.js +12 -0
- package/lib/module/modules/bt-management/constants/diagnostic-results.js.map +1 -0
- package/lib/module/modules/bt-management/constants/integrated-devices-map.js +5 -0
- package/lib/module/modules/bt-management/constants/integrated-devices-map.js.map +1 -0
- package/lib/module/modules/bt-management/hooks/use-request-permissions.js +50 -0
- package/lib/module/modules/bt-management/hooks/use-request-permissions.js.map +1 -0
- package/lib/module/modules/bt-management/index.js +17 -0
- package/lib/module/modules/bt-management/index.js.map +1 -0
- package/lib/module/modules/bt-management/services/bt-manager.js +157 -0
- package/lib/module/modules/bt-management/services/bt-manager.js.map +1 -0
- package/lib/module/modules/bt-management/services/device-creator.js +88 -0
- package/lib/module/modules/bt-management/services/device-creator.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/bp2/bp2.device.js +156 -0
- package/lib/module/modules/bt-management/services/devices/bp2/bp2.device.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/bp2/bp2.main-services.js +101 -0
- package/lib/module/modules/bt-management/services/devices/bp2/bp2.main-services.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/bt-connection-handler.js +138 -0
- package/lib/module/modules/bt-management/services/devices/bt-connection-handler.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/bt-data-processor.js +107 -0
- package/lib/module/modules/bt-management/services/devices/bt-data-processor.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/bt-managed-device.js +124 -0
- package/lib/module/modules/bt-management/services/devices/bt-managed-device.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/f4/f4.device.js +42 -0
- package/lib/module/modules/bt-management/services/devices/f4/f4.device.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/f4/f4.main-services.js +60 -0
- package/lib/module/modules/bt-management/services/devices/f4/f4.main-services.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/spo/spo2.device.js +63 -0
- package/lib/module/modules/bt-management/services/devices/spo/spo2.device.js.map +1 -0
- package/lib/module/modules/bt-management/services/devices/spo/spo2.main-services.js +35 -0
- package/lib/module/modules/bt-management/services/devices/spo/spo2.main-services.js.map +1 -0
- package/lib/module/modules/bt-management/types/blood-pressure-states.js +11 -0
- package/lib/module/modules/bt-management/types/blood-pressure-states.js.map +1 -0
- package/lib/module/modules/bt-management/types/btprovider-children-props.js +4 -0
- package/lib/module/modules/bt-management/types/btprovider-children-props.js.map +1 -0
- package/lib/module/modules/bt-management/types/btprovider-props.js +4 -0
- package/lib/module/modules/bt-management/types/btprovider-props.js.map +1 -0
- package/lib/module/modules/bt-management/types/case-type.js +11 -0
- package/lib/module/modules/bt-management/types/case-type.js.map +1 -0
- package/lib/module/modules/bt-management/types/create-device-params.js +4 -0
- package/lib/module/modules/bt-management/types/create-device-params.js.map +1 -0
- package/lib/module/modules/bt-management/types/device-data.js +4 -0
- package/lib/module/modules/bt-management/types/device-data.js.map +1 -0
- package/lib/module/modules/bt-management/types/device-measurement-map.js +4 -0
- package/lib/module/modules/bt-management/types/device-measurement-map.js.map +1 -0
- package/lib/module/modules/bt-management/types/device-status-change-callback.js +4 -0
- package/lib/module/modules/bt-management/types/device-status-change-callback.js.map +1 -0
- package/lib/module/modules/bt-management/types/device-status.js +10 -0
- package/lib/module/modules/bt-management/types/device-status.js.map +1 -0
- package/lib/module/modules/bt-management/types/diagnostic-key-enum.js +13 -0
- package/lib/module/modules/bt-management/types/diagnostic-key-enum.js.map +1 -0
- package/lib/module/modules/bt-management/types/error-callback.js +4 -0
- package/lib/module/modules/bt-management/types/error-callback.js.map +1 -0
- package/lib/module/modules/bt-management/types/i-bt-managed-device.js +2 -0
- package/lib/module/modules/bt-management/types/i-bt-managed-device.js.map +1 -0
- package/lib/module/modules/bt-management/types/i-medical-device.js +4 -0
- package/lib/module/modules/bt-management/types/i-medical-device.js.map +1 -0
- package/lib/module/modules/bt-management/types/integrated-devices.js +25 -0
- package/lib/module/modules/bt-management/types/integrated-devices.js.map +1 -0
- package/lib/module/modules/bt-management/types/measurement-with-case-type.js +4 -0
- package/lib/module/modules/bt-management/types/measurement-with-case-type.js.map +1 -0
- package/lib/module/modules/bt-management/types/monitor-characteristic.js +4 -0
- package/lib/module/modules/bt-management/types/monitor-characteristic.js.map +1 -0
- package/lib/module/modules/bt-management/types/parser-definition.js +2 -0
- package/lib/module/modules/bt-management/types/parser-definition.js.map +1 -0
- package/lib/module/modules/bt-management/types/parsing-case.js +4 -0
- package/lib/module/modules/bt-management/types/parsing-case.js.map +1 -0
- package/lib/module/modules/bt-management/types/parsing-model.js +4 -0
- package/lib/module/modules/bt-management/types/parsing-model.js.map +1 -0
- package/lib/module/modules/bt-management/types/result-callback.js +4 -0
- package/lib/module/modules/bt-management/types/result-callback.js.map +1 -0
- package/lib/module/modules/bt-management/types/service.type.js +4 -0
- package/lib/module/modules/bt-management/types/service.type.js.map +1 -0
- package/lib/module/modules/bt-management/types/write-characteristic.js +2 -0
- package/lib/module/modules/bt-management/types/write-characteristic.js.map +1 -0
- package/lib/module/modules/bt-management/utils/base-64-to-hex.js +12 -0
- package/lib/module/modules/bt-management/utils/base-64-to-hex.js.map +1 -0
- package/lib/module/modules/bt-management/utils/convert-bp-state-flag.js +20 -0
- package/lib/module/modules/bt-management/utils/convert-bp-state-flag.js.map +1 -0
- package/lib/module/modules/bt-management/utils/convert-ecg-diagnostic-flag.js +34 -0
- package/lib/module/modules/bt-management/utils/convert-ecg-diagnostic-flag.js.map +1 -0
- package/lib/module/modules/bt-management/utils/hex-to-base-64.js +9 -0
- package/lib/module/modules/bt-management/utils/hex-to-base-64.js.map +1 -0
- package/lib/module/modules/bt-management/utils/hex-to-byte.js +5 -0
- package/lib/module/modules/bt-management/utils/hex-to-byte.js.map +1 -0
- package/lib/module/modules/bt-management/utils/i-16-from-hex.js +10 -0
- package/lib/module/modules/bt-management/utils/i-16-from-hex.js.map +1 -0
- package/lib/module/modules/bt-management/utils/le-16-from-hex.js +11 -0
- package/lib/module/modules/bt-management/utils/le-16-from-hex.js.map +1 -0
- package/lib/module/modules/bt-management/utils/le-32-from-hex.js +13 -0
- package/lib/module/modules/bt-management/utils/le-32-from-hex.js.map +1 -0
- package/lib/module/modules/bt-management/utils/parse-measurement.js +33 -0
- package/lib/module/modules/bt-management/utils/parse-measurement.js.map +1 -0
- package/lib/module/modules/content/content-card/components/content-card.js +33 -0
- package/lib/module/modules/content/content-card/components/content-card.js.map +1 -0
- package/lib/module/modules/content/content-card/components/cover-badge.js +46 -0
- package/lib/module/modules/content/content-card/components/cover-badge.js.map +1 -0
- package/lib/module/modules/content/content-card/components/cover.js +46 -0
- package/lib/module/modules/content/content-card/components/cover.js.map +1 -0
- package/lib/module/modules/content/content-card/components/title.js +27 -0
- package/lib/module/modules/content/content-card/components/title.js.map +1 -0
- package/lib/module/modules/content/content-card/index.js +4 -0
- package/lib/module/modules/content/content-card/index.js.map +1 -0
- package/lib/module/modules/content/content-card/types/content-card-cover-badge-props.js +4 -0
- package/lib/module/modules/content/content-card/types/content-card-cover-badge-props.js.map +1 -0
- package/lib/module/modules/content/content-card/types/content-card-cover-props.js +4 -0
- package/lib/module/modules/content/content-card/types/content-card-cover-props.js.map +1 -0
- package/lib/module/modules/content/content-card/types/content-card-metadata-props.js +4 -0
- package/lib/module/modules/content/content-card/types/content-card-metadata-props.js.map +1 -0
- package/lib/module/modules/content/content-card/types/content-card-title-props.js +4 -0
- package/lib/module/modules/content/content-card/types/content-card-title-props.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-body.js +27 -0
- package/lib/module/modules/content/content-detail/components/content-detail-body.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-footer.js +21 -0
- package/lib/module/modules/content/content-detail/components/content-detail-footer.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-header.js +21 -0
- package/lib/module/modules/content/content-detail/components/content-detail-header.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-resource.js +52 -0
- package/lib/module/modules/content/content-detail/components/content-detail-resource.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-rich-content.js +84 -0
- package/lib/module/modules/content/content-detail/components/content-detail-rich-content.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-tags.js +42 -0
- package/lib/module/modules/content/content-detail/components/content-detail-tags.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail-title.js +23 -0
- package/lib/module/modules/content/content-detail/components/content-detail-title.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/content-detail.js +46 -0
- package/lib/module/modules/content/content-detail/components/content-detail.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-author.js +22 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-author.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-date.js +36 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-date.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-item.js +17 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-item.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.js +32 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-separator.js +14 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata-separator.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata.js +40 -0
- package/lib/module/modules/content/content-detail/components/metadata/content-detail-metadata.js.map +1 -0
- package/lib/module/modules/content/content-detail/components/metadata/index.js +4 -0
- package/lib/module/modules/content/content-detail/components/metadata/index.js.map +1 -0
- package/lib/module/modules/content/content-detail/context/components/composition-context.js +5 -0
- package/lib/module/modules/content/content-detail/context/components/composition-context.js.map +1 -0
- package/lib/module/modules/content/content-detail/context/hooks/use-composition.js +12 -0
- package/lib/module/modules/content/content-detail/context/hooks/use-composition.js.map +1 -0
- package/lib/module/modules/content/content-detail/context/index.js +10 -0
- package/lib/module/modules/content/content-detail/context/index.js.map +1 -0
- package/lib/module/modules/content/content-detail/context/types/composition-context-type.js +4 -0
- package/lib/module/modules/content/content-detail/context/types/composition-context-type.js.map +1 -0
- package/lib/module/modules/content/content-detail/index.js +4 -0
- package/lib/module/modules/content/content-detail/index.js.map +1 -0
- package/lib/module/modules/content/content-detail/types/content-detail-metadata-item-props.js +4 -0
- package/lib/module/modules/content/content-detail/types/content-detail-metadata-item-props.js.map +1 -0
- package/lib/module/modules/content/content-detail/types/content-detail-metadata-props.js +4 -0
- package/lib/module/modules/content/content-detail/types/content-detail-metadata-props.js.map +1 -0
- package/lib/module/modules/content/content-detail/types/content-detail-props.js +4 -0
- package/lib/module/modules/content/content-detail/types/content-detail-props.js.map +1 -0
- package/lib/module/modules/content/content-detail/types/content-detail-rich-content-props.js +4 -0
- package/lib/module/modules/content/content-detail/types/content-detail-rich-content-props.js.map +1 -0
- package/lib/module/modules/content/content-detail/types/content-detail-tags-props.js +4 -0
- package/lib/module/modules/content/content-detail/types/content-detail-tags-props.js.map +1 -0
- package/lib/module/modules/content/content-detail/types/content-detail-title-props.js +4 -0
- package/lib/module/modules/content/content-detail/types/content-detail-title-props.js.map +1 -0
- package/lib/module/modules/content/content-list/components/content-list.js +30 -0
- package/lib/module/modules/content/content-list/components/content-list.js.map +1 -0
- package/lib/module/modules/content/content-list/components/header.js +24 -0
- package/lib/module/modules/content/content-list/components/header.js.map +1 -0
- package/lib/module/modules/content/content-list/components/horizontal-list.js +61 -0
- package/lib/module/modules/content/content-list/components/horizontal-list.js.map +1 -0
- package/lib/module/modules/content/content-list/components/section.js +20 -0
- package/lib/module/modules/content/content-list/components/section.js.map +1 -0
- package/lib/module/modules/content/content-list/components/title.js +15 -0
- package/lib/module/modules/content/content-list/components/title.js.map +1 -0
- package/lib/module/modules/content/content-list/components/view-all.js +27 -0
- package/lib/module/modules/content/content-list/components/view-all.js.map +1 -0
- package/lib/module/modules/content/content-list/index.js +8 -0
- package/lib/module/modules/content/content-list/index.js.map +1 -0
- package/lib/module/modules/content/content-list/types/content-list-props.js +4 -0
- package/lib/module/modules/content/content-list/types/content-list-props.js.map +1 -0
- package/lib/module/modules/content/content-list/types/default-content-data.js +2 -0
- package/lib/module/modules/content/content-list/types/default-content-data.js.map +1 -0
- package/lib/module/modules/content/content-list/types/horizontal-contents-props.js +4 -0
- package/lib/module/modules/content/content-list/types/horizontal-contents-props.js.map +1 -0
- package/lib/module/modules/content/content-list/types/horizontal-list-props.js +4 -0
- package/lib/module/modules/content/content-list/types/horizontal-list-props.js.map +1 -0
- package/lib/module/modules/content/content-list/types/index.js +5 -0
- package/lib/module/modules/content/content-list/types/index.js.map +1 -0
- package/lib/module/modules/content/index.js +6 -0
- package/lib/module/modules/content/index.js.map +1 -0
- package/lib/module/modules/data-sync/components/android/android-health-connect-authorization-provider.js +73 -0
- package/lib/module/modules/data-sync/components/android/android-health-connect-authorization-provider.js.map +1 -0
- package/lib/module/modules/data-sync/components/android/android-health-sync.js +67 -0
- package/lib/module/modules/data-sync/components/android/android-health-sync.js.map +1 -0
- package/lib/module/modules/data-sync/components/apple/apple-health-authorization-provider.js +38 -0
- package/lib/module/modules/data-sync/components/apple/apple-health-authorization-provider.js.map +1 -0
- package/lib/module/modules/data-sync/components/apple/apple-health-sync.js +68 -0
- package/lib/module/modules/data-sync/components/apple/apple-health-sync.js.map +1 -0
- package/lib/module/modules/data-sync/components/data-sync.js +22 -0
- package/lib/module/modules/data-sync/components/data-sync.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/container.js +22 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/container.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/description.js +25 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/description.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/image.js +41 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/image.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/request-button.js +15 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/request-button.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/sheet.js +37 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/sheet.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/skip-button.js +17 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/skip-button.js.map +1 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/title.js +25 -0
- package/lib/module/modules/data-sync/components/manually-request-sheet/title.js.map +1 -0
- package/lib/module/modules/data-sync/components/sync-progress-list/sync-progress-bar.js +29 -0
- package/lib/module/modules/data-sync/components/sync-progress-list/sync-progress-bar.js.map +1 -0
- package/lib/module/modules/data-sync/components/sync-progress-list/sync-progress-list.js +58 -0
- package/lib/module/modules/data-sync/components/sync-progress-list/sync-progress-list.js.map +1 -0
- package/lib/module/modules/data-sync/hooks/use-listen-changes.js +49 -0
- package/lib/module/modules/data-sync/hooks/use-listen-changes.js.map +1 -0
- package/lib/module/modules/data-sync/index.js +8 -0
- package/lib/module/modules/data-sync/index.js.map +1 -0
- package/lib/module/modules/data-sync/services/android-health-sync-service.js +28 -0
- package/lib/module/modules/data-sync/services/android-health-sync-service.js.map +1 -0
- package/lib/module/modules/data-sync/services/apple-health-sync-service.js +28 -0
- package/lib/module/modules/data-sync/services/apple-health-sync-service.js.map +1 -0
- package/lib/module/modules/data-sync/services/base-health-sync-service.js +110 -0
- package/lib/module/modules/data-sync/services/base-health-sync-service.js.map +1 -0
- package/lib/module/modules/data-sync/services/managers/data-processor.js +80 -0
- package/lib/module/modules/data-sync/services/managers/data-processor.js.map +1 -0
- package/lib/module/modules/data-sync/services/managers/instance-manager.js +41 -0
- package/lib/module/modules/data-sync/services/managers/instance-manager.js.map +1 -0
- package/lib/module/modules/data-sync/services/managers/storage-manager.js +30 -0
- package/lib/module/modules/data-sync/services/managers/storage-manager.js.map +1 -0
- package/lib/module/modules/data-sync/services/managers/sync-progress-manager.js +76 -0
- package/lib/module/modules/data-sync/services/managers/sync-progress-manager.js.map +1 -0
- package/lib/module/modules/data-sync/services/managers/sync-state-manager.js +24 -0
- package/lib/module/modules/data-sync/services/managers/sync-state-manager.js.map +1 -0
- package/lib/module/modules/data-sync/types/android-health-connect-authorization-provider-props.js +4 -0
- package/lib/module/modules/data-sync/types/android-health-connect-authorization-provider-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/android-health-sync-props.js +4 -0
- package/lib/module/modules/data-sync/types/android-health-sync-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/apple-health-authorization-provider-props.js +4 -0
- package/lib/module/modules/data-sync/types/apple-health-authorization-provider-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/apple-health-sync-props.js +4 -0
- package/lib/module/modules/data-sync/types/apple-health-sync-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/base-service-props.js +4 -0
- package/lib/module/modules/data-sync/types/base-service-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/convert-data-props.js +4 -0
- package/lib/module/modules/data-sync/types/convert-data-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/data-from-provider-result.js +2 -0
- package/lib/module/modules/data-sync/types/data-from-provider-result.js.map +1 -0
- package/lib/module/modules/data-sync/types/get-data-from-provider-props.js +2 -0
- package/lib/module/modules/data-sync/types/get-data-from-provider-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/get-total-count-props.js +2 -0
- package/lib/module/modules/data-sync/types/get-total-count-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/health-authorization-provider-props.js +2 -0
- package/lib/module/modules/data-sync/types/health-authorization-provider-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/health-provider.js +2 -0
- package/lib/module/modules/data-sync/types/health-provider.js.map +1 -0
- package/lib/module/modules/data-sync/types/health-sync-keys.js +4 -0
- package/lib/module/modules/data-sync/types/health-sync-keys.js.map +1 -0
- package/lib/module/modules/data-sync/types/health-sync-props.js +4 -0
- package/lib/module/modules/data-sync/types/health-sync-props.js.map +1 -0
- package/lib/module/modules/data-sync/types/sync-progress.js +4 -0
- package/lib/module/modules/data-sync/types/sync-progress.js.map +1 -0
- package/lib/module/modules/data-sync/utils/convert-records-to-observation.js +39 -0
- package/lib/module/modules/data-sync/utils/convert-records-to-observation.js.map +1 -0
- package/lib/module/modules/data-sync/utils/convert-samples-to-observation.js +25 -0
- package/lib/module/modules/data-sync/utils/convert-samples-to-observation.js.map +1 -0
- package/lib/module/modules/data-sync/utils/generate-observation-entry.js +31 -0
- package/lib/module/modules/data-sync/utils/generate-observation-entry.js.map +1 -0
- package/lib/module/modules/data-sync/utils/get-latest-observation-dates-by-code.js +40 -0
- package/lib/module/modules/data-sync/utils/get-latest-observation-dates-by-code.js.map +1 -0
- package/lib/module/modules/data-sync/utils/get-latest-valid-start-date.js +18 -0
- package/lib/module/modules/data-sync/utils/get-latest-valid-start-date.js.map +1 -0
- package/lib/module/modules/data-sync/utils/get-records-from-health-connect.js +31 -0
- package/lib/module/modules/data-sync/utils/get-records-from-health-connect.js.map +1 -0
- package/lib/module/modules/data-sync/utils/get-samples-from-health.js +37 -0
- package/lib/module/modules/data-sync/utils/get-samples-from-health.js.map +1 -0
- package/lib/module/modules/data-sync/utils/get-total-records-count.js +32 -0
- package/lib/module/modules/data-sync/utils/get-total-records-count.js.map +1 -0
- package/lib/module/modules/data-sync/utils/get-total-samples-count.js +30 -0
- package/lib/module/modules/data-sync/utils/get-total-samples-count.js.map +1 -0
- package/lib/module/modules/data-sync/utils/save-bundle-observations.js +23 -0
- package/lib/module/modules/data-sync/utils/save-bundle-observations.js.map +1 -0
- package/lib/module/modules/diary/components/diary-card.js +49 -0
- package/lib/module/modules/diary/components/diary-card.js.map +1 -0
- package/lib/module/modules/diary/components/no-data.js +26 -0
- package/lib/module/modules/diary/components/no-data.js.map +1 -0
- package/lib/module/modules/diary/components/start-section.js +33 -0
- package/lib/module/modules/diary/components/start-section.js.map +1 -0
- package/lib/module/modules/diary/index.js +5 -0
- package/lib/module/modules/diary/index.js.map +1 -0
- package/lib/module/modules/diary/types/diary-card-props.js +4 -0
- package/lib/module/modules/diary/types/diary-card-props.js.map +1 -0
- package/lib/module/modules/diary/types/no-data-props.js +4 -0
- package/lib/module/modules/diary/types/no-data-props.js.map +1 -0
- package/lib/module/modules/diary/types/start-section-props.js +4 -0
- package/lib/module/modules/diary/types/start-section-props.js.map +1 -0
- package/lib/module/modules/helpers/conditional.js +16 -0
- package/lib/module/modules/helpers/conditional.js.map +1 -0
- package/lib/module/modules/helpers/form-items/form-date-field.js +82 -0
- package/lib/module/modules/helpers/form-items/form-date-field.js.map +1 -0
- package/lib/module/modules/helpers/form-items/form-field.js +60 -0
- package/lib/module/modules/helpers/form-items/form-field.js.map +1 -0
- package/lib/module/modules/helpers/form-items/form-select.js +170 -0
- package/lib/module/modules/helpers/form-items/form-select.js.map +1 -0
- package/lib/module/modules/helpers/index.js +10 -0
- package/lib/module/modules/helpers/index.js.map +1 -0
- package/lib/module/modules/helpers/utils/s-log.js +20 -0
- package/lib/module/modules/helpers/utils/s-log.js.map +1 -0
- package/lib/module/modules/helpers/utils/safe-json-parse.js +11 -0
- package/lib/module/modules/helpers/utils/safe-json-parse.js.map +1 -0
- package/lib/module/modules/helpers/utils/sentry-logger.js +20 -0
- package/lib/module/modules/helpers/utils/sentry-logger.js.map +1 -0
- package/lib/module/modules/helpers/utils/with-animated.js +21 -0
- package/lib/module/modules/helpers/utils/with-animated.js.map +1 -0
- package/lib/module/modules/image/components/optimized-image.js +77 -0
- package/lib/module/modules/image/components/optimized-image.js.map +1 -0
- package/lib/module/modules/image/index.js +6 -0
- package/lib/module/modules/image/index.js.map +1 -0
- package/lib/module/modules/image/types/image-dimension.js +2 -0
- package/lib/module/modules/image/types/image-dimension.js.map +1 -0
- package/lib/module/modules/image/types/optimized-image-props.js +4 -0
- package/lib/module/modules/image/types/optimized-image-props.js.map +1 -0
- package/lib/module/modules/image/utils/calculate-dimension.js +13 -0
- package/lib/module/modules/image/utils/calculate-dimension.js.map +1 -0
- package/lib/module/modules/image/utils/get-optimized-image-url.js +32 -0
- package/lib/module/modules/image/utils/get-optimized-image-url.js.map +1 -0
- package/lib/module/modules/journal/answer/components/actions.js +19 -0
- package/lib/module/modules/journal/answer/components/actions.js.map +1 -0
- package/lib/module/modules/journal/answer/components/answer.js +36 -0
- package/lib/module/modules/journal/answer/components/answer.js.map +1 -0
- package/lib/module/modules/journal/answer/components/header.js +21 -0
- package/lib/module/modules/journal/answer/components/header.js.map +1 -0
- package/lib/module/modules/journal/answer/components/input.js +22 -0
- package/lib/module/modules/journal/answer/components/input.js.map +1 -0
- package/lib/module/modules/journal/answer/components/question.js +22 -0
- package/lib/module/modules/journal/answer/components/question.js.map +1 -0
- package/lib/module/modules/journal/answer/index.js +4 -0
- package/lib/module/modules/journal/answer/index.js.map +1 -0
- package/lib/module/modules/journal/index.js +6 -0
- package/lib/module/modules/journal/index.js.map +1 -0
- package/lib/module/modules/journal/past-journal/components/answer.js +25 -0
- package/lib/module/modules/journal/past-journal/components/answer.js.map +1 -0
- package/lib/module/modules/journal/past-journal/components/date.js +26 -0
- package/lib/module/modules/journal/past-journal/components/date.js.map +1 -0
- package/lib/module/modules/journal/past-journal/components/past-journal-card.js +33 -0
- package/lib/module/modules/journal/past-journal/components/past-journal-card.js.map +1 -0
- package/lib/module/modules/journal/past-journal/components/title.js +29 -0
- package/lib/module/modules/journal/past-journal/components/title.js.map +1 -0
- package/lib/module/modules/journal/past-journal/index.js +4 -0
- package/lib/module/modules/journal/past-journal/index.js.map +1 -0
- package/lib/module/modules/journal/today-question/components/actions.js +25 -0
- package/lib/module/modules/journal/today-question/components/actions.js.map +1 -0
- package/lib/module/modules/journal/today-question/components/content.js +20 -0
- package/lib/module/modules/journal/today-question/components/content.js.map +1 -0
- package/lib/module/modules/journal/today-question/components/gradient.js +14 -0
- package/lib/module/modules/journal/today-question/components/gradient.js.map +1 -0
- package/lib/module/modules/journal/today-question/components/question.js +25 -0
- package/lib/module/modules/journal/today-question/components/question.js.map +1 -0
- package/lib/module/modules/journal/today-question/components/title.js +29 -0
- package/lib/module/modules/journal/today-question/components/title.js.map +1 -0
- package/lib/module/modules/journal/today-question/components/today-question-card.js +33 -0
- package/lib/module/modules/journal/today-question/components/today-question-card.js.map +1 -0
- package/lib/module/modules/journal/today-question/index.js +4 -0
- package/lib/module/modules/journal/today-question/index.js.map +1 -0
- package/lib/module/modules/language-switcher/components/language-switcher.js +25 -0
- package/lib/module/modules/language-switcher/components/language-switcher.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/context/language-option-context.js +5 -0
- package/lib/module/modules/language-switcher/components/option/context/language-option-context.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/flag.js +15 -0
- package/lib/module/modules/language-switcher/components/option/flag.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/hooks/use-language-option.js +12 -0
- package/lib/module/modules/language-switcher/components/option/hooks/use-language-option.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/label.js +23 -0
- package/lib/module/modules/language-switcher/components/option/label.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/language-switcher-option.js +58 -0
- package/lib/module/modules/language-switcher/components/option/language-switcher-option.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/radio-button.js +18 -0
- package/lib/module/modules/language-switcher/components/option/radio-button.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/types/language-option-context-type.js +2 -0
- package/lib/module/modules/language-switcher/components/option/types/language-option-context-type.js.map +1 -0
- package/lib/module/modules/language-switcher/components/option/types/language-switcher-option-props.js +4 -0
- package/lib/module/modules/language-switcher/components/option/types/language-switcher-option-props.js.map +1 -0
- package/lib/module/modules/language-switcher/context/language-option-context.js +5 -0
- package/lib/module/modules/language-switcher/context/language-option-context.js.map +1 -0
- package/lib/module/modules/language-switcher/hooks/use-language-switcher.js +12 -0
- package/lib/module/modules/language-switcher/hooks/use-language-switcher.js.map +1 -0
- package/lib/module/modules/language-switcher/index.js +4 -0
- package/lib/module/modules/language-switcher/index.js.map +1 -0
- package/lib/module/modules/language-switcher/types/language-switcher-context-type.js +2 -0
- package/lib/module/modules/language-switcher/types/language-switcher-context-type.js.map +1 -0
- package/lib/module/modules/language-switcher/types/language-switcher-props.js +4 -0
- package/lib/module/modules/language-switcher/types/language-switcher-props.js.map +1 -0
- package/lib/module/modules/measurement/components/date-range.js +114 -0
- package/lib/module/modules/measurement/components/date-range.js.map +1 -0
- package/lib/module/modules/measurement/components/measurement-list-item.js +75 -0
- package/lib/module/modules/measurement/components/measurement-list-item.js.map +1 -0
- package/lib/module/modules/measurement/components/measurement-list.js +38 -0
- package/lib/module/modules/measurement/components/measurement-list.js.map +1 -0
- package/lib/module/modules/measurement/index.js +6 -0
- package/lib/module/modules/measurement/index.js.map +1 -0
- package/lib/module/modules/measurement/types/date-range-props.js +4 -0
- package/lib/module/modules/measurement/types/date-range-props.js.map +1 -0
- package/lib/module/modules/measurement/types/measurement-list-item-props.js +4 -0
- package/lib/module/modules/measurement/types/measurement-list-item-props.js.map +1 -0
- package/lib/module/modules/measurement/utils/get-end-date.js +11 -0
- package/lib/module/modules/measurement/utils/get-end-date.js.map +1 -0
- package/lib/module/modules/observation-detail/components/data-container.js +31 -0
- package/lib/module/modules/observation-detail/components/data-container.js.map +1 -0
- package/lib/module/modules/observation-detail/components/date-time.js +22 -0
- package/lib/module/modules/observation-detail/components/date-time.js.map +1 -0
- package/lib/module/modules/observation-detail/components/observation-detail.js +44 -0
- package/lib/module/modules/observation-detail/components/observation-detail.js.map +1 -0
- package/lib/module/modules/observation-detail/components/photo-preview.js +122 -0
- package/lib/module/modules/observation-detail/components/photo-preview.js.map +1 -0
- package/lib/module/modules/observation-detail/components/preview-modal.js +195 -0
- package/lib/module/modules/observation-detail/components/preview-modal.js.map +1 -0
- package/lib/module/modules/observation-detail/components/resource.js +47 -0
- package/lib/module/modules/observation-detail/components/resource.js.map +1 -0
- package/lib/module/modules/observation-detail/components/single-card-data-row.js +50 -0
- package/lib/module/modules/observation-detail/components/single-card-data-row.js.map +1 -0
- package/lib/module/modules/observation-detail/components/text-data.js +22 -0
- package/lib/module/modules/observation-detail/components/text-data.js.map +1 -0
- package/lib/module/modules/observation-detail/index.js +5 -0
- package/lib/module/modules/observation-detail/index.js.map +1 -0
- package/lib/module/modules/observation-detail/types/observation-detail-date-time-props.js +4 -0
- package/lib/module/modules/observation-detail/types/observation-detail-date-time-props.js.map +1 -0
- package/lib/module/modules/observation-detail/types/photo-preview-props.js +4 -0
- package/lib/module/modules/observation-detail/types/photo-preview-props.js.map +1 -0
- package/lib/module/modules/observation-detail/types/preview-modal-props.js +2 -0
- package/lib/module/modules/observation-detail/types/preview-modal-props.js.map +1 -0
- package/lib/module/modules/observation-detail/types/resource-props.js +4 -0
- package/lib/module/modules/observation-detail/types/resource-props.js.map +1 -0
- package/lib/module/modules/observation-detail/types/single-card-data-row-props.js +4 -0
- package/lib/module/modules/observation-detail/types/single-card-data-row-props.js.map +1 -0
- package/lib/module/modules/patient/components/card/birth-date/patient-birth-date-icon.js +19 -0
- package/lib/module/modules/patient/components/card/birth-date/patient-birth-date-icon.js.map +1 -0
- package/lib/module/modules/patient/components/card/birth-date/patient-birth-date-text.js +55 -0
- package/lib/module/modules/patient/components/card/birth-date/patient-birth-date-text.js.map +1 -0
- package/lib/module/modules/patient/components/card/birth-date/patient-birth-date.js +34 -0
- package/lib/module/modules/patient/components/card/birth-date/patient-birth-date.js.map +1 -0
- package/lib/module/modules/patient/components/card/patient-card.js +48 -0
- package/lib/module/modules/patient/components/card/patient-card.js.map +1 -0
- package/lib/module/modules/patient/components/card/patient-gender.js +132 -0
- package/lib/module/modules/patient/components/card/patient-gender.js.map +1 -0
- package/lib/module/modules/patient/components/card/patient-meta.js +29 -0
- package/lib/module/modules/patient/components/card/patient-meta.js.map +1 -0
- package/lib/module/modules/patient/components/card/patient-name.js +51 -0
- package/lib/module/modules/patient/components/card/patient-name.js.map +1 -0
- package/lib/module/modules/patient/components/patient-list.js +62 -0
- package/lib/module/modules/patient/components/patient-list.js.map +1 -0
- package/lib/module/modules/patient/index.js +9 -0
- package/lib/module/modules/patient/index.js.map +1 -0
- package/lib/module/modules/patient/types/patient-birth-date-text-props.js +4 -0
- package/lib/module/modules/patient/types/patient-birth-date-text-props.js.map +1 -0
- package/lib/module/modules/patient/types/patient-gender-props.js +4 -0
- package/lib/module/modules/patient/types/patient-gender-props.js.map +1 -0
- package/lib/module/modules/patient/types/patient-list-props.js +4 -0
- package/lib/module/modules/patient/types/patient-list-props.js.map +1 -0
- package/lib/module/modules/patient/types/patient-name-props.js +4 -0
- package/lib/module/modules/patient/types/patient-name-props.js.map +1 -0
- package/lib/module/modules/pdf/components/pdf-viewer.js +74 -0
- package/lib/module/modules/pdf/components/pdf-viewer.js.map +1 -0
- package/lib/module/modules/pdf/index.js +4 -0
- package/lib/module/modules/pdf/index.js.map +1 -0
- package/lib/module/modules/pdf/types/pdf-viewer-props.js +4 -0
- package/lib/module/modules/pdf/types/pdf-viewer-props.js.map +1 -0
- package/lib/module/modules/picker-sheet/components/picker-sheet.js +35 -0
- package/lib/module/modules/picker-sheet/components/picker-sheet.js.map +1 -0
- package/lib/module/modules/picker-sheet/components/wheel-picker-item.js +67 -0
- package/lib/module/modules/picker-sheet/components/wheel-picker-item.js.map +1 -0
- package/lib/module/modules/picker-sheet/components/wheel-picker.js +195 -0
- package/lib/module/modules/picker-sheet/components/wheel-picker.js.map +1 -0
- package/lib/module/modules/picker-sheet/index.js +5 -0
- package/lib/module/modules/picker-sheet/index.js.map +1 -0
- package/lib/module/modules/progress-bar/components/progress-bar.js +50 -0
- package/lib/module/modules/progress-bar/components/progress-bar.js.map +1 -0
- package/lib/module/modules/progress-bar/index.js +5 -0
- package/lib/module/modules/progress-bar/index.js.map +1 -0
- package/lib/module/modules/progress-bar/types/progress-bar-props.js +4 -0
- package/lib/module/modules/progress-bar/types/progress-bar-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/README.md +375 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.js +34 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-error.js +33 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-error.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-item.js +41 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-item.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.js +42 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content.js +42 -0
- package/lib/module/modules/questionnaire-response-form/components/content/questionnaire-content.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/index.js +6 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/index.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.js +52 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.js +52 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.js +32 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.js +43 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.js +55 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-date-field.js +110 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-date-field.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.js +60 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-text-field.js +53 -0
- package/lib/module/modules/questionnaire-response-form/components/fields/questionnaire-text-field.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.js +32 -0
- package/lib/module/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/header/questionnaire-header-title.js +23 -0
- package/lib/module/modules/questionnaire-response-form/components/header/questionnaire-header-title.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/header/questionnaire-header.js +26 -0
- package/lib/module/modules/questionnaire-response-form/components/header/questionnaire-header.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.js +33 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.js +30 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.js +34 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.js +40 -0
- package/lib/module/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/questionnaire-form-provider.js +138 -0
- package/lib/module/modules/questionnaire-response-form/components/questionnaire-form-provider.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/questionnaire-form.js +54 -0
- package/lib/module/modules/questionnaire-response-form/components/questionnaire-form.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/components/questionnaire-navigation-provider.js +49 -0
- package/lib/module/modules/questionnaire-response-form/components/questionnaire-navigation-provider.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/contexts/questionnaire-form-context.js +5 -0
- package/lib/module/modules/questionnaire-response-form/contexts/questionnaire-form-context.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.js +5 -0
- package/lib/module/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/hooks/index.js +6 -0
- package/lib/module/modules/questionnaire-response-form/hooks/index.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-initial-selected-values.js +63 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-initial-selected-values.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-navigation-handlers.js +58 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-navigation-handlers.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-questionnaire-form.js +12 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-questionnaire-form.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.js +22 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.js +12 -0
- package/lib/module/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/index.js +5 -0
- package/lib/module/modules/questionnaire-response-form/index.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/date-item-type.js +2 -0
- package/lib/module/modules/questionnaire-response-form/types/date-item-type.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/extended-questionnaire-item.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/extended-questionnaire-item.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/index.js +6 -0
- package/lib/module/modules/questionnaire-response-form/types/index.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/navigation-button-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/navigation-button-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-content-error-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-content-error-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-content-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-content-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-context-type.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-context-type.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-provider-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-provider-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-values.js +2 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-form-values.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-header-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-header-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-header-title-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-header-title-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-props.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire-props.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire.js +4 -0
- package/lib/module/modules/questionnaire-response-form/types/questionnaire.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/types/response-values.js +2 -0
- package/lib/module/modules/questionnaire-response-form/types/response-values.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/condition-utils.js +47 -0
- package/lib/module/modules/questionnaire-response-form/utils/condition-utils.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/boolean-condition.js +17 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/boolean-condition.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/date-condition.js +68 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/date-condition.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/decimal-condition.js +33 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/decimal-condition.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/index.js +7 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/index.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/string-condition.js +17 -0
- package/lib/module/modules/questionnaire-response-form/utils/conditions/string-condition.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/fields/get-keyboard-type.js +13 -0
- package/lib/module/modules/questionnaire-response-form/utils/fields/get-keyboard-type.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/fields/get-option-text.js +15 -0
- package/lib/module/modules/questionnaire-response-form/utils/fields/get-option-text.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/fields/get-option-value.js +12 -0
- package/lib/module/modules/questionnaire-response-form/utils/fields/get-option-value.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/form-utils.js +106 -0
- package/lib/module/modules/questionnaire-response-form/utils/form-utils.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/form-validation.js +37 -0
- package/lib/module/modules/questionnaire-response-form/utils/form-validation.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.js +47 -0
- package/lib/module/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.js.map +1 -0
- package/lib/module/modules/questionnaire-response-form/utils/questionnaire-submit-utils.js +17 -0
- package/lib/module/modules/questionnaire-response-form/utils/questionnaire-submit-utils.js.map +1 -0
- package/lib/module/modules/setting/components/list-header.js +33 -0
- package/lib/module/modules/setting/components/list-header.js.map +1 -0
- package/lib/module/modules/setting/components/setting-list-item.js +49 -0
- package/lib/module/modules/setting/components/setting-list-item.js.map +1 -0
- package/lib/module/modules/setting/components/setting-list.js +77 -0
- package/lib/module/modules/setting/components/setting-list.js.map +1 -0
- package/lib/module/modules/setting/index.js +6 -0
- package/lib/module/modules/setting/index.js.map +1 -0
- package/lib/module/modules/setting/types/custom-setting-list-item.js +2 -0
- package/lib/module/modules/setting/types/custom-setting-list-item.js.map +1 -0
- package/lib/module/modules/setting/types/setting-list-item-props.js +4 -0
- package/lib/module/modules/setting/types/setting-list-item-props.js.map +1 -0
- package/lib/module/modules/setting/types/setting-list-props.js +4 -0
- package/lib/module/modules/setting/types/setting-list-props.js.map +1 -0
- package/lib/module/modules/socket/components/socket-provider.js +108 -0
- package/lib/module/modules/socket/components/socket-provider.js.map +1 -0
- package/lib/module/modules/socket/contexts/socket-context.js +5 -0
- package/lib/module/modules/socket/contexts/socket-context.js.map +1 -0
- package/lib/module/modules/socket/hooks/use-ai-event-listener.js +36 -0
- package/lib/module/modules/socket/hooks/use-ai-event-listener.js.map +1 -0
- package/lib/module/modules/socket/hooks/use-socket.js +12 -0
- package/lib/module/modules/socket/hooks/use-socket.js.map +1 -0
- package/lib/module/modules/socket/index.js +9 -0
- package/lib/module/modules/socket/index.js.map +1 -0
- package/lib/module/modules/socket/types/socket-context-type.js +4 -0
- package/lib/module/modules/socket/types/socket-context-type.js.map +1 -0
- package/lib/module/modules/socket/types/socket-log-payload.js +2 -0
- package/lib/module/modules/socket/types/socket-log-payload.js.map +1 -0
- package/lib/module/modules/socket/types/socket-provider-props.js +4 -0
- package/lib/module/modules/socket/types/socket-provider-props.js.map +1 -0
- package/lib/module/modules/tab/components/tab-item.js +47 -0
- package/lib/module/modules/tab/components/tab-item.js.map +1 -0
- package/lib/module/modules/tab/components/tab-provider.js +14 -0
- package/lib/module/modules/tab/components/tab-provider.js.map +1 -0
- package/lib/module/modules/tab/components/tab.js +25 -0
- package/lib/module/modules/tab/components/tab.js.map +1 -0
- package/lib/module/modules/tab/contexts/tab-context.js +5 -0
- package/lib/module/modules/tab/contexts/tab-context.js.map +1 -0
- package/lib/module/modules/tab/hooks/use-tab.js +12 -0
- package/lib/module/modules/tab/hooks/use-tab.js.map +1 -0
- package/lib/module/modules/tab/index.js +5 -0
- package/lib/module/modules/tab/index.js.map +1 -0
- package/lib/module/modules/tab/types/tab-context-type.js +2 -0
- package/lib/module/modules/tab/types/tab-context-type.js.map +1 -0
- package/lib/module/modules/tab/types/tab-item-props.js +4 -0
- package/lib/module/modules/tab/types/tab-item-props.js.map +1 -0
- package/lib/module/modules/tab/types/tab-props.js +4 -0
- package/lib/module/modules/tab/types/tab-props.js.map +1 -0
- package/lib/module/modules/theme/components/theme-provider.js +34 -0
- package/lib/module/modules/theme/components/theme-provider.js.map +1 -0
- package/lib/module/modules/theme/constants/colors.js +138 -0
- package/lib/module/modules/theme/constants/colors.js.map +1 -0
- package/lib/module/modules/theme/constants/multipliers.js +7 -0
- package/lib/module/modules/theme/constants/multipliers.js.map +1 -0
- package/lib/module/modules/theme/hooks/use-app-theme.js +6 -0
- package/lib/module/modules/theme/hooks/use-app-theme.js.map +1 -0
- package/lib/module/modules/theme/index.js +7 -0
- package/lib/module/modules/theme/index.js.map +1 -0
- package/lib/module/modules/theme/types/app-theme.js +4 -0
- package/lib/module/modules/theme/types/app-theme.js.map +1 -0
- package/lib/module/modules/theme/types/theme-provider-props.js +4 -0
- package/lib/module/modules/theme/types/theme-provider-props.js.map +1 -0
- package/lib/module/modules/theme/utils/generate-theme.js +18 -0
- package/lib/module/modules/theme/utils/generate-theme.js.map +1 -0
- package/lib/module/modules/tile/components/complete-animation.js +57 -0
- package/lib/module/modules/tile/components/complete-animation.js.map +1 -0
- package/lib/module/modules/tile/components/measured-value.js +54 -0
- package/lib/module/modules/tile/components/measured-value.js.map +1 -0
- package/lib/module/modules/tile/components/measuring-spinner.js +14 -0
- package/lib/module/modules/tile/components/measuring-spinner.js.map +1 -0
- package/lib/module/modules/tile/components/no-measured-value.js +23 -0
- package/lib/module/modules/tile/components/no-measured-value.js.map +1 -0
- package/lib/module/modules/tile/components/start-section.js +34 -0
- package/lib/module/modules/tile/components/start-section.js.map +1 -0
- package/lib/module/modules/tile/components/status.js +38 -0
- package/lib/module/modules/tile/components/status.js.map +1 -0
- package/lib/module/modules/tile/components/task-icon.js +26 -0
- package/lib/module/modules/tile/components/task-icon.js.map +1 -0
- package/lib/module/modules/tile/components/tile.js +59 -0
- package/lib/module/modules/tile/components/tile.js.map +1 -0
- package/lib/module/modules/tile/components/title.js +25 -0
- package/lib/module/modules/tile/components/title.js.map +1 -0
- package/lib/module/modules/tile/constants/measurement-icon-svg.js +152 -0
- package/lib/module/modules/tile/constants/measurement-icon-svg.js.map +1 -0
- package/lib/module/modules/tile/index.js +5 -0
- package/lib/module/modules/tile/index.js.map +1 -0
- package/lib/module/modules/tile/types/complete-animation-props.js +2 -0
- package/lib/module/modules/tile/types/complete-animation-props.js.map +1 -0
- package/lib/module/modules/tile/types/measured-value-props.js +4 -0
- package/lib/module/modules/tile/types/measured-value-props.js.map +1 -0
- package/lib/module/modules/tile/types/measurement-icon-props.js +4 -0
- package/lib/module/modules/tile/types/measurement-icon-props.js.map +1 -0
- package/lib/module/modules/tile/types/measuring-spinner-props.js +4 -0
- package/lib/module/modules/tile/types/measuring-spinner-props.js.map +1 -0
- package/lib/module/modules/tile/types/start-section-props.js +4 -0
- package/lib/module/modules/tile/types/start-section-props.js.map +1 -0
- package/lib/module/modules/tile/types/task-icon-props.js +4 -0
- package/lib/module/modules/tile/types/task-icon-props.js.map +1 -0
- package/lib/module/modules/tile/types/tile-list-props.js +4 -0
- package/lib/module/modules/tile/types/tile-list-props.js.map +1 -0
- package/lib/module/modules/tile/types/tile-props.js +4 -0
- package/lib/module/modules/tile/types/tile-props.js.map +1 -0
- package/lib/module/polyfills/index.js +4 -0
- package/lib/module/polyfills/index.js.map +1 -0
- package/lib/typescript/commonjs/jest.setup.d.ts +2 -0
- package/lib/typescript/commonjs/jest.setup.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/@kingstinct/react-native-healthkit.d.ts +32 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/@kingstinct/react-native-healthkit.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/ble-manager.d.ts +3 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/ble-manager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-field-items.d.ts +11 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-field-items.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-navigation-props.d.ts +29 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-navigation-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire-form.d.ts +15 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire.d.ts +3 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/questionnaire-response-layout.d.ts +5 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/questionnaire-response-form/questionnaire-response-layout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/test-layout.d.ts +11 -0
- package/lib/typescript/commonjs/src/__tests__/__mocks__/test-layout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/animation-wrapper.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/animation-wrapper.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/animation.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/animation.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/exercise-info.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/exercise-info.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/progress-bar.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/progress-bar.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/utils/breating-exercise-wrapper.d.ts +3 -0
- package/lib/typescript/commonjs/src/__tests__/breathing-exercise/utils/breating-exercise-wrapper.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/bottom-container.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/bottom-container.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/content.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/content.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/device-list.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/device-list.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/image.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/image.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/instruction/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/instruction/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/status.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/status.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/subtitle.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/subtitle.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/top-container.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-device/top-container.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/bt-provider/child-wrapper.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/bt-provider/child-wrapper.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/bt-provider/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/bt-provider/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/constants/integrated-devices-map.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/constants/integrated-devices-map.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bp2/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bp2/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bp2/main-services.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bp2/main-services.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bp2/measurement.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bp2/measurement.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bt-connection-handler.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bt-connection-handler.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bt-data-processor.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bt-data-processor.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bt-managed-device.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/bt-managed-device.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/f4/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/f4/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/f4/main-services.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/f4/main-services.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/spo2/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/spo2/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/spo2/main-services.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/spo2/main-services.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/spo2/measurement.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/devices/spo2/measurement.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/integration.test.d.ts +11 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/integration.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/services/bt-manager.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/services/bt-manager.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/services/device-creator.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/services/device-creator.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/hex-to-byte.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/hex-to-byte.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/i-16-from-hex.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/i-16-from-hex.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/le-16-from-hex.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/le-16-from-hex.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/le-32-from-hex.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/bt-management/utils/le-32-from-hex.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/cover/badge.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/cover/badge.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/cover/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/cover/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-card/title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/body.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/body.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/constants/mock-composition.d.ts +3 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/constants/mock-composition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/content-detail-resource.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/content-detail-resource.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/footer.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/footer.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/header.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/header.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/author.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/author.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/date.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/date.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/reading-time.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/metadata/reading-time.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/rich-content.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/rich-content.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/tags.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/tags.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-detail/title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/header.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/header.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/horizontal-list.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/horizontal-list.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/section.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/section.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/view-all.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/content-list/view-all.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/android-health-connect-authorization-provider.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/android-health-connect-authorization-provider.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/android-health-sync.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/android-health-sync.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/apple-health-authorization-provider.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/apple-health-authorization-provider.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/apple-health-sync.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/apple-health-sync.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/data-sync.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/data-sync.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/sync-progress-bar.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/sync-progress-bar.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/sync-progress-list.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/data-sync/sync-progress-list.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/delete-account-button/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/delete-account-button/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.measured-value.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.measured-value.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.no-data.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.no-data.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.start-section.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.start-section.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.task-icon.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.task-icon.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/diary-card/diary-card.title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/helpers/form-items/form-field/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/helpers/form-items/form-field/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/helpers/form-items/form-select/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/helpers/form-items/form-select/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/actions.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/actions.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/header.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/header.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/input.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/input.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/question.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/journal/answer/question.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/hooks/use-language-switcher.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/hooks/use-language-switcher.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/option/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/option/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/option/radio-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/language-switcher/option/radio-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/logout-button/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/logout-button/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/date-range/format.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/date-range/format.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/date-range/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/date-range/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/date-range/on-date-change.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/date-range/on-date-change.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/item.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/measurement-list/item.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/apple/apple-health-authorization-provider.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/apple/apple-health-authorization-provider.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/container.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/container.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/description.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/description.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/image.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/image.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/request-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/request-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/sheet.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/sheet.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/skip-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/skip-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/components/manually-request-sheet/title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/apple-health-sync-service.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/apple-health-sync-service.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/convert-records-to-observation.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/convert-records-to-observation.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/convert-samples-to-observation.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/convert-samples-to-observation.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/generate-observation-entry.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/generate-observation-entry.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-latest-observation-dates-by-code.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-latest-observation-dates-by-code.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-latest-valid-start-date.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-latest-valid-start-date.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-records-from-health-connect.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-records-from-health-connect.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-samples-from-health.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-samples-from-health.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-total-records-count.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-total-records-count.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-total-samples-count.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/data-sync/utils/get-total-samples-count.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/modules/image/optimized-image.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/modules/image/optimized-image.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-birth-date-icon.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-birth-date-icon.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-birth-date-text.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-birth-date-text.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-birth-date.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-birth-date.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-gender.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-gender.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-meta.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-meta.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-name.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-card/patient-name.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/patient-list/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/patient-list/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/pdf-viewer/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/pdf-viewer/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/progress-bar/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/progress-bar/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/all-items.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/all-items.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/error.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/error.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/item.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/item.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/specific-item.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/content/specific-item.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/common/field-wrapper.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/common/field-wrapper.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/common/option-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/common/option-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/common/options-container.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/common/options-container.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-boolean-field.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-boolean-field.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-choice-field.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-choice-field.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-date-field.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-date-field.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-item-renderer.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-item-renderer.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-text-field.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/fields/questionnaire-text-field.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/header/questionnaire-header-subtitle.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/header/questionnaire-header-subtitle.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/header/questionnaire-header-title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/header/questionnaire-header-title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/header/questionnaire-header.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/header/questionnaire-header.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-initial-selected-values.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-initial-selected-values.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-navigation-handlers.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-navigation-handlers.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-form.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-form.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-navigation.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-navigation.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-next-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-next-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-previous-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-previous-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-submit-button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-submit-button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/questionnaire-form-provider.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/questionnaire-form-provider.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/questionnaire-form.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/questionnaire-form.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/utils/condition-utils.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/questionnaire-response-form/utils/condition-utils.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/data-container.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/data-container.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/date-time.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/date-time.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/preview-modal.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/preview-modal.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/utils/photos.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/utils/photos.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/utils/setup.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/photo-preview/utils/setup.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/resource.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/resource.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/single-card-data-row.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/single-card-data-row.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/text-data.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/observation-detail/text-data.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/profile-form/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/profile-form/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/inputs.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/inputs.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/utils/fill-form.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/form/utils/fill-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/header/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/header/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/login-link.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/register/login-link.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/button.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/button.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/forgot-password.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/forgot-password.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/inputs.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/inputs.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/spacing.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/spacing.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/utils/fill-form.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/form/utils/fill-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/header/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/header/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/no-measured-value.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/no-measured-value.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/register-link.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/register-link.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/social-logins/apple-login.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/social-logins/apple-login.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/social-logins/google-login.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/social-logins/google-login.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/social-logins/social-logins.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/screens/sign-in/social-logins/social-logins.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/setting-list/heder.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/setting-list/heder.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/setting-list/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/setting-list/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/setting-list/item.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/setting-list/item.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/socket/components/socket-provider.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/socket/components/socket-provider.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/socket/hooks/use-ai-event-listener.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/socket/hooks/use-ai-event-listener.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/socket/hooks/use-socket.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/socket/hooks/use-socket.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tab/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tab/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tab/item.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tab/item.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/theme/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/theme/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/complete-animation.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/complete-animation.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/end-item.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/end-item.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/index.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/list.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/list.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/measured-value.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/measured-value.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/start-section.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/start-section.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/status.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/status.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/task-icon.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/task-icon.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/tile/title.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/__tests__/tile/title.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/utils/get-host-parent.d.ts +11 -0
- package/lib/typescript/commonjs/src/__tests__/utils/get-host-parent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/utils/mock-socket.d.ts +11 -0
- package/lib/typescript/commonjs/src/__tests__/utils/mock-socket.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/utils/ovok-client.d.ts +3 -0
- package/lib/typescript/commonjs/src/__tests__/utils/ovok-client.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/utils/theme.d.ts +188 -0
- package/lib/typescript/commonjs/src/__tests__/utils/theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +26 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/delete-account-button/components/delete-account-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/delete-account-button/components/delete-account-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/delete-account-button/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/auth/delete-account-button/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/delete-account-button/types/delete-account-button-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/delete-account-button/types/delete-account-button-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/index.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/logout-button/components/logout-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/logout-button/components/logout-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/logout-button/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/auth/logout-button/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/logout-button/types/logout-button-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/logout-button/types/logout-button-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-form-field-component.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-form-field-component.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-form-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-form-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-form.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-with-form.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/components/profile-with-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/contexts/profile-form-context.d.ts +48 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/contexts/profile-form-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/hooks/use-profile-form.d.ts +48 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/hooks/use-profile-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/index.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-context-type.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-field.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-props.d.ts +18 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-values.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/profile/types/profile-form-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/inputs.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/inputs.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-form-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-form-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-form.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-with-email.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/form/register-with-email.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/header/description.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/header/description.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/header/header.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/header/header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/header/title.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/header/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/login-link.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/login-link.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/register-with-separator.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/register-with-separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/register.d.ts +40 -0
- package/lib/typescript/commonjs/src/modules/auth/register/components/register.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/contexts/register-form-context.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/auth/register/contexts/register-form-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/hooks/use-register-form.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/register/hooks/use-register-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/form-inputs-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/form-inputs-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-button-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-button-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-form-context-type.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-form-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-form-props.d.ts +24 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-form-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-form-values.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-form-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-header-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-header-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-props.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/types/register-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/utils/apply-custom-validation.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/register/utils/apply-custom-validation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/register/utils/create-register-validation-schema.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/auth/register/utils/create-register-validation-schema.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/inputs.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/inputs.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/reset-password-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/reset-password-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/reset-password-form-provider.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/reset-password-form-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/reset-password-form.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/form/reset-password-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/header/description.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/header/description.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/header/header.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/header/header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/header/title.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/header/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/reset-password.d.ts +20 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/components/reset-password.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/contexts/reset-password-form-context.d.ts +48 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/contexts/reset-password-form-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/hooks/use-reset-password-form.d.ts +48 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/hooks/use-reset-password-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/index.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-button-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-button-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-context-type.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-form-provider-props.d.ts +19 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-form-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-form-values.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-form-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-header-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-header-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-props.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/reset-password/types/reset-password-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/footer.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/footer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/forgot-password.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/forgot-password.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/inputs.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/inputs.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/login-form-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/login-form-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/login-form.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/login-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/sign-in-with-email.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/sign-in-with-email.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/signin-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/signin-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/spacing.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/form/spacing.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/header/description.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/header/description.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/header/header.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/header/header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/header/title.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/header/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/login-with-separator.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/login-with-separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/register-link.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/register-link.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/sign-in.d.ts +41 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/sign-in.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/site-url.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/site-url.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login-button.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login-icon.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login-text.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login-text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/apple-login.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-icon.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login-button.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login-icon.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login-text.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login-text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/google-login.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/social-logins.d.ts +20 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/components/social-logins/social-logins.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/contexts/login-form-context.d.ts +48 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/contexts/login-form-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/hooks/use-login-form.d.ts +48 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/hooks/use-login-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/index.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/apple-login-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/apple-login-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/footer-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/footer-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/google-icon-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/google-icon-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/google-login-props.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/google-login-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-form-context-type.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-form-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-form-props.d.ts +28 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-form-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-form-values.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-form-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-with-separator-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/login-with-separator-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/sign-in-header-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/sign-in-header-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/sign-in-props.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/sign-in-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/signin-button-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/signin-button-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/signin-form-forgot-password-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/signin-form-forgot-password-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/social-logins-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/social-logins-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/spacing-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/spacing-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/token-response.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/types/token-response.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/utils/create-login-validation-schema.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/auth/sign-in/utils/create-login-validation-schema.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/animation-wrapper.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/animation-wrapper.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/animation.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/animation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/breathing-exercise-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/breathing-exercise-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/breathing-exercise.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/breathing-exercise.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/icons/exhale-icon.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/icons/exhale-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/icons/hold-icon.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/icons/hold-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/icons/inhale-icon.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/icons/inhale-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/info.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/info.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/method-name.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/method-name.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/method-type-icon.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/method-type-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/progress-bar.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/progress-bar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/remaining-time.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/components/remaining-time.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/context/breathing-exercise-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/context/breathing-exercise-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/hooks/use-breathing-exercise.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/hooks/use-breathing-exercise.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise-animation-props.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise-animation-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise-context-type.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/breathing-exercise/types/breathing-exercise.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/btdevice-instruction.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/btdevice-instruction.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/btdevice-list.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/btdevice-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/device-list-provider.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/device-list-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/hooks/use-device-list.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/hooks/use-device-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/bottom-container.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/bottom-container.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/btdevice-item.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/btdevice-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/content.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/content.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/image.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/image.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/status.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/status.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/sub-title.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/sub-title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/title.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/top-container.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/bt-device/components/item/top-container.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/constants/device-images.d.ts +24 -0
- package/lib/typescript/commonjs/src/modules/bt-device/constants/device-images.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/constants/device-instruction-pdfs.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-device/constants/device-instruction-pdfs.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/constants/device-list-items.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-device/constants/device-list-items.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/contexts/device-list-context.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/bt-device/contexts/device-list-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/index.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/bt-device/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/btdevice-instruction-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/btdevice-instruction-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/btdevice-item-status-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/btdevice-item-status-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/btdevice-list-props.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/btdevice-list-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/device-list-item.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/bt-device/types/device-list-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/components/bt-provider-child-wrapper.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/bt-management/components/bt-provider-child-wrapper.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/components/bt-provider.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/bt-management/components/bt-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/components/default-permission-fallback.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/bt-management/components/default-permission-fallback.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/constants/blood-pressure-translated-exception-map.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/constants/blood-pressure-translated-exception-map.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/constants/diagnostic-results.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/bt-management/constants/diagnostic-results.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/constants/integrated-devices-map.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/constants/integrated-devices-map.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/hooks/use-request-permissions.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/bt-management/hooks/use-request-permissions.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/bt-management/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/bt-manager.d.ts +30 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/bt-manager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/device-creator.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/device-creator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bp2/bp2.device.d.ts +20 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bp2/bp2.device.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bp2/bp2.main-services.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bp2/bp2.main-services.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bt-connection-handler.d.ts +25 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bt-connection-handler.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bt-data-processor.d.ts +30 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bt-data-processor.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bt-managed-device.d.ts +30 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/bt-managed-device.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/f4/f4.device.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/f4/f4.device.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/f4/f4.main-services.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/f4/f4.main-services.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/spo/spo2.device.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/spo/spo2.device.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/spo/spo2.main-services.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/services/devices/spo/spo2.main-services.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/blood-pressure-states.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/blood-pressure-states.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/btprovider-children-props.d.ts +16 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/btprovider-children-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/btprovider-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/btprovider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/case-type.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/case-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/create-device-params.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/create-device-params.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-data.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-data.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-measurement-map.d.ts +31 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-measurement-map.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-status-change-callback.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-status-change-callback.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-status.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/device-status.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/diagnostic-key-enum.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/diagnostic-key-enum.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/error-callback.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/error-callback.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/i-bt-managed-device.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/i-bt-managed-device.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/i-medical-device.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/i-medical-device.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/integrated-devices.d.ts +22 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/integrated-devices.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/measurement-with-case-type.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/measurement-with-case-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/monitor-characteristic.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/monitor-characteristic.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/parser-definition.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/parser-definition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/parsing-case.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/parsing-case.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/parsing-model.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/parsing-model.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/result-callback.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/result-callback.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/service.type.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/service.type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/write-characteristic.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/bt-management/types/write-characteristic.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/base-64-to-hex.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/base-64-to-hex.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/convert-bp-state-flag.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/convert-bp-state-flag.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/convert-ecg-diagnostic-flag.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/convert-ecg-diagnostic-flag.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/hex-to-base-64.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/hex-to-base-64.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/hex-to-byte.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/hex-to-byte.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/i-16-from-hex.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/i-16-from-hex.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/le-16-from-hex.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/le-16-from-hex.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/le-32-from-hex.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/le-32-from-hex.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/parse-measurement.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/bt-management/utils/parse-measurement.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/content-card.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/content-card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/cover-badge.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/cover-badge.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/cover.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/cover.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/title.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/components/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-cover-badge-props.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-cover-badge-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-cover-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-cover-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-metadata-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-metadata-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-title-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/content/content-card/types/content-card-title-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-body.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-body.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-footer.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-footer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-header.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-resource.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-resource.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-rich-content.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-rich-content.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-tags.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-tags.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-title.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail-title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail.d.ts +23 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/content-detail.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-author.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-author.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-date.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-date.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-item.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-separator.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata-separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/content-detail-metadata.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/components/metadata/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/components/composition-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/components/composition-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/hooks/use-composition.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/hooks/use-composition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/index.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/types/composition-context-type.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/context/types/composition-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-metadata-item-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-metadata-item-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-metadata-props.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-metadata-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-rich-content-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-rich-content-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-tags-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-tags-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-title-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/content/content-detail/types/content-detail-title-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/content-list.d.ts +16 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/content-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/header.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/horizontal-list.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/horizontal-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/section.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/section.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/title.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/view-all.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/components/view-all.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/index.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/content-list-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/content-list-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/default-content-data.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/default-content-data.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/horizontal-contents-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/horizontal-contents-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/horizontal-list-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/horizontal-list-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/content/content-list/types/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/content/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/content/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/android/android-health-connect-authorization-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/android/android-health-connect-authorization-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/android/android-health-sync.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/android/android-health-sync.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/apple/apple-health-authorization-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/apple/apple-health-authorization-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/apple/apple-health-sync.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/apple/apple-health-sync.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/data-sync.d.ts +24 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/data-sync.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/container.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/container.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/description.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/description.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/image.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/image.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/request-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/request-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/sheet.d.ts +18 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/skip-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/skip-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/title.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/manually-request-sheet/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/sync-progress-list/sync-progress-bar.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/sync-progress-list/sync-progress-bar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/sync-progress-list/sync-progress-list.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/data-sync/components/sync-progress-list/sync-progress-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/hooks/use-listen-changes.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/hooks/use-listen-changes.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/index.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/data-sync/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/android-health-sync-service.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/android-health-sync-service.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/apple-health-sync-service.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/apple-health-sync-service.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/base-health-sync-service.d.ts +35 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/base-health-sync-service.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/data-processor.d.ts +40 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/data-processor.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/instance-manager.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/instance-manager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/storage-manager.d.ts +17 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/storage-manager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/sync-progress-manager.d.ts +22 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/sync-progress-manager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/sync-state-manager.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/data-sync/services/managers/sync-state-manager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/android-health-connect-authorization-provider-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/android-health-connect-authorization-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/android-health-sync-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/android-health-sync-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/apple-health-authorization-provider-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/apple-health-authorization-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/apple-health-sync-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/apple-health-sync-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/base-service-props.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/base-service-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/convert-data-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/convert-data-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/data-from-provider-result.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/data-from-provider-result.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/get-data-from-provider-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/get-data-from-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/get-total-count-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/get-total-count-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-authorization-provider-props.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-authorization-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-provider.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-sync-keys.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-sync-keys.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-sync-props.d.ts +26 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/health-sync-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/sync-progress.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/data-sync/types/sync-progress.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/convert-records-to-observation.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/convert-records-to-observation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/convert-samples-to-observation.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/convert-samples-to-observation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/generate-observation-entry.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/generate-observation-entry.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-latest-observation-dates-by-code.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-latest-observation-dates-by-code.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-latest-valid-start-date.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-latest-valid-start-date.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-records-from-health-connect.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-records-from-health-connect.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-samples-from-health.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-samples-from-health.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-total-records-count.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-total-records-count.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-total-samples-count.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/get-total-samples-count.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/save-bundle-observations.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/data-sync/utils/save-bundle-observations.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/components/diary-card.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/diary/components/diary-card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/components/no-data.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/diary/components/no-data.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/components/start-section.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/diary/components/start-section.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/diary/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/types/diary-card-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/diary/types/diary-card-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/types/no-data-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/diary/types/no-data-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/diary/types/start-section-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/diary/types/start-section-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/conditional.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/helpers/conditional.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/form-items/form-date-field.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/helpers/form-items/form-date-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/form-items/form-field.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/helpers/form-items/form-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/form-items/form-select.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/helpers/form-items/form-select.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/index.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/helpers/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/s-log.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/s-log.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/safe-json-parse.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/safe-json-parse.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/sentry-logger.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/sentry-logger.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/with-animated.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/helpers/utils/with-animated.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/image/components/optimized-image.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/image/components/optimized-image.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/image/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/image/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/image/types/image-dimension.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/image/types/image-dimension.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/image/types/optimized-image-props.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/image/types/optimized-image-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/image/utils/calculate-dimension.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/image/utils/calculate-dimension.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/image/utils/get-optimized-image-url.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/image/utils/get-optimized-image-url.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/actions.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/actions.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/answer.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/answer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/header.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/input.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/input.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/question.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/components/question.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/journal/answer/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/journal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/answer.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/answer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/date.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/date.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/past-journal-card.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/past-journal-card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/title.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/components/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/journal/past-journal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/actions.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/actions.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/content.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/content.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/gradient.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/gradient.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/question.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/question.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/title.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/today-question-card.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/components/today-question-card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/journal/today-question/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/language-switcher.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/language-switcher.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/context/language-option-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/context/language-option-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/flag.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/flag.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/hooks/use-language-option.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/hooks/use-language-option.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/label.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/label.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/language-switcher-option.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/language-switcher-option.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/radio-button.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/radio-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/types/language-option-context-type.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/types/language-option-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/types/language-switcher-option-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/components/option/types/language-switcher-option-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/context/language-option-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/context/language-option-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/hooks/use-language-switcher.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/hooks/use-language-switcher.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/types/language-switcher-context-type.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/types/language-switcher-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/types/language-switcher-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/language-switcher/types/language-switcher-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/components/date-range.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/measurement/components/date-range.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/components/measurement-list-item.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/measurement/components/measurement-list-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/components/measurement-list.d.ts +33 -0
- package/lib/typescript/commonjs/src/modules/measurement/components/measurement-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/measurement/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/types/date-range-props.d.ts +16 -0
- package/lib/typescript/commonjs/src/modules/measurement/types/date-range-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/types/measurement-list-item-props.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/measurement/types/measurement-list-item-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/measurement/utils/get-end-date.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/measurement/utils/get-end-date.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/data-container.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/data-container.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/date-time.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/date-time.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/observation-detail.d.ts +18 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/observation-detail.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/photo-preview.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/photo-preview.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/preview-modal.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/preview-modal.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/resource.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/resource.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/single-card-data-row.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/single-card-data-row.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/text-data.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/components/text-data.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/observation-detail-date-time-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/observation-detail-date-time-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/photo-preview-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/photo-preview-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/preview-modal-props.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/preview-modal-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/resource-props.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/resource-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/single-card-data-row-props.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/observation-detail/types/single-card-data-row-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/birth-date/patient-birth-date-icon.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/birth-date/patient-birth-date-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/birth-date/patient-birth-date-text.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/birth-date/patient-birth-date-text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/birth-date/patient-birth-date.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/birth-date/patient-birth-date.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-card.d.ts +16 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-gender.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-gender.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-meta.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-meta.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-name.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/patient/components/card/patient-name.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/components/patient-list.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/patient/components/patient-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/index.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/patient/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-birth-date-text-props.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-birth-date-text-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-gender-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-gender-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-list-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-list-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-name-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/patient/types/patient-name-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/pdf/components/pdf-viewer.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/pdf/components/pdf-viewer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/pdf/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/pdf/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/pdf/types/pdf-viewer-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/pdf/types/pdf-viewer-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/components/picker-sheet.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/components/picker-sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/components/wheel-picker-item.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/components/wheel-picker-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/components/wheel-picker.d.ts +18 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/components/wheel-picker.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/picker-sheet/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/progress-bar/components/progress-bar.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/progress-bar/components/progress-bar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/progress-bar/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/progress-bar/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/progress-bar/types/progress-bar-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/progress-bar/types/progress-bar-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-error.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-error.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-item.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/content/questionnaire-content.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-date-field.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-date-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-text-field.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/fields/questionnaire-text-field.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/header/questionnaire-header-title.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/header/questionnaire-header-title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/header/questionnaire-header.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/header/questionnaire-header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/questionnaire-form-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/questionnaire-form-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/questionnaire-form.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/questionnaire-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/questionnaire-navigation-provider.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/components/questionnaire-navigation-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/contexts/questionnaire-form-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/contexts/questionnaire-form-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-initial-selected-values.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-initial-selected-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-navigation-handlers.d.ts +26 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-navigation-handlers.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-questionnaire-form.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-questionnaire-form.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.d.ts +13 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/index.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/date-item-type.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/date-item-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/extended-questionnaire-item.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/extended-questionnaire-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/index.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/navigation-button-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/navigation-button-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-content-error-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-content-error-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-content-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-content-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-context-type.d.ts +19 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-provider-props.d.ts +17 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-values.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-form-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-header-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-header-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-header-title-props.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-header-title-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.d.ts +19 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire.d.ts +14 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/questionnaire.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/response-values.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/types/response-values.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/condition-utils.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/condition-utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/boolean-condition.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/boolean-condition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/date-condition.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/date-condition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/decimal-condition.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/decimal-condition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/index.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/string-condition.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/conditions/string-condition.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/fields/get-keyboard-type.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/fields/get-keyboard-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/fields/get-option-text.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/fields/get-option-text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/fields/get-option-value.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/fields/get-option-value.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/form-utils.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/form-utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/form-validation.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/form-validation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.d.ts +15 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/questionnaire-submit-utils.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/questionnaire-response-form/utils/questionnaire-submit-utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/components/list-header.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/setting/components/list-header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/components/setting-list-item.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/setting/components/setting-list-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/components/setting-list.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/setting/components/setting-list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/index.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/setting/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/types/custom-setting-list-item.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/setting/types/custom-setting-list-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/types/setting-list-item-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/setting/types/setting-list-item-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/setting/types/setting-list-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/setting/types/setting-list-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/components/socket-provider.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/socket/components/socket-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/contexts/socket-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/socket/contexts/socket-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/hooks/use-ai-event-listener.d.ts +16 -0
- package/lib/typescript/commonjs/src/modules/socket/hooks/use-ai-event-listener.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/hooks/use-socket.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/socket/hooks/use-socket.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/index.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/socket/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/types/socket-context-type.d.ts +6 -0
- package/lib/typescript/commonjs/src/modules/socket/types/socket-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/types/socket-log-payload.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/socket/types/socket-log-payload.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/socket/types/socket-provider-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/socket/types/socket-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/components/tab-item.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/tab/components/tab-item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/components/tab-provider.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tab/components/tab-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/components/tab.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/tab/components/tab.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/contexts/tab-context.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/tab/contexts/tab-context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/hooks/use-tab.d.ts +2 -0
- package/lib/typescript/commonjs/src/modules/tab/hooks/use-tab.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tab/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/types/tab-context-type.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/tab/types/tab-context-type.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/types/tab-item-props.d.ts +11 -0
- package/lib/typescript/commonjs/src/modules/tab/types/tab-item-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tab/types/tab-props.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/tab/types/tab-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/components/theme-provider.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/theme/components/theme-provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/constants/colors.d.ts +33 -0
- package/lib/typescript/commonjs/src/modules/theme/constants/colors.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/constants/multipliers.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/theme/constants/multipliers.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/hooks/use-app-theme.d.ts +187 -0
- package/lib/typescript/commonjs/src/modules/theme/hooks/use-app-theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/index.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/theme/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/types/app-theme.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/theme/types/app-theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/types/theme-provider-props.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/theme/types/theme-provider-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/theme/utils/generate-theme.d.ts +188 -0
- package/lib/typescript/commonjs/src/modules/theme/utils/generate-theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/complete-animation.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/components/complete-animation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/measured-value.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/components/measured-value.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/measuring-spinner.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/components/measuring-spinner.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/no-measured-value.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/tile/components/no-measured-value.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/start-section.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/components/start-section.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/status.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/tile/components/status.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/task-icon.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/components/task-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/tile.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/tile/components/tile.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/components/title.d.ts +8 -0
- package/lib/typescript/commonjs/src/modules/tile/components/title.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/constants/measurement-icon-svg.d.ts +21 -0
- package/lib/typescript/commonjs/src/modules/tile/constants/measurement-icon-svg.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/complete-animation-props.d.ts +5 -0
- package/lib/typescript/commonjs/src/modules/tile/types/complete-animation-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/measured-value-props.d.ts +9 -0
- package/lib/typescript/commonjs/src/modules/tile/types/measured-value-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/measurement-icon-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/tile/types/measurement-icon-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/measuring-spinner-props.d.ts +3 -0
- package/lib/typescript/commonjs/src/modules/tile/types/measuring-spinner-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/start-section-props.d.ts +12 -0
- package/lib/typescript/commonjs/src/modules/tile/types/start-section-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/task-icon-props.d.ts +10 -0
- package/lib/typescript/commonjs/src/modules/tile/types/task-icon-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/tile-list-props.d.ts +4 -0
- package/lib/typescript/commonjs/src/modules/tile/types/tile-list-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/modules/tile/types/tile-props.d.ts +7 -0
- package/lib/typescript/commonjs/src/modules/tile/types/tile-props.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/polyfills/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/polyfills/index.d.ts.map +1 -0
- package/lib/typescript/module/jest.setup.d.ts +2 -0
- package/lib/typescript/module/jest.setup.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/@kingstinct/react-native-healthkit.d.ts +32 -0
- package/lib/typescript/module/src/__tests__/__mocks__/@kingstinct/react-native-healthkit.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/ble-manager.d.ts +3 -0
- package/lib/typescript/module/src/__tests__/__mocks__/ble-manager.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-field-items.d.ts +11 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-field-items.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-navigation-props.d.ts +29 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-navigation-props.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire-form.d.ts +15 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire-form.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire.d.ts +3 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/mock-questionnaire.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/questionnaire-response-layout.d.ts +5 -0
- package/lib/typescript/module/src/__tests__/__mocks__/questionnaire-response-form/questionnaire-response-layout.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/__mocks__/test-layout.d.ts +11 -0
- package/lib/typescript/module/src/__tests__/__mocks__/test-layout.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/animation-wrapper.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/animation-wrapper.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/animation.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/animation.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/exercise-info.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/exercise-info.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/progress-bar.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/progress-bar.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/utils/breating-exercise-wrapper.d.ts +3 -0
- package/lib/typescript/module/src/__tests__/breathing-exercise/utils/breating-exercise-wrapper.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/bottom-container.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/bottom-container.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/content.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/content.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/device-list.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/device-list.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/image.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/image.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/instruction/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/instruction/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/status.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/status.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/subtitle.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/subtitle.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-device/top-container.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-device/top-container.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/bt-provider/child-wrapper.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/bt-provider/child-wrapper.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/bt-provider/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/bt-provider/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/constants/integrated-devices-map.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/constants/integrated-devices-map.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bp2/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bp2/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bp2/main-services.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bp2/main-services.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bp2/measurement.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bp2/measurement.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bt-connection-handler.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bt-connection-handler.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bt-data-processor.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bt-data-processor.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bt-managed-device.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/bt-managed-device.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/f4/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/f4/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/f4/main-services.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/f4/main-services.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/spo2/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/spo2/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/spo2/main-services.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/spo2/main-services.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/spo2/measurement.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/devices/spo2/measurement.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/integration.test.d.ts +11 -0
- package/lib/typescript/module/src/__tests__/bt-management/integration.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/services/bt-manager.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/services/bt-manager.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/services/device-creator.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/services/device-creator.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/hex-to-byte.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/hex-to-byte.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/i-16-from-hex.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/i-16-from-hex.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/le-16-from-hex.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/le-16-from-hex.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/le-32-from-hex.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/bt-management/utils/le-32-from-hex.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-card/cover/badge.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-card/cover/badge.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-card/cover/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-card/cover/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-card/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-card/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-card/title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-card/title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/body.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/body.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/constants/mock-composition.d.ts +3 -0
- package/lib/typescript/module/src/__tests__/content-detail/constants/mock-composition.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/content-detail-resource.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/content-detail-resource.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/footer.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/footer.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/header.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/header.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/author.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/author.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/date.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/date.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/reading-time.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/metadata/reading-time.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/rich-content.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/rich-content.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/tags.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/tags.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-detail/title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-detail/title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-list/header.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-list/header.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-list/horizontal-list.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-list/horizontal-list.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-list/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-list/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-list/section.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-list/section.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-list/title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-list/title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/content-list/view-all.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/content-list/view-all.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/android-health-connect-authorization-provider.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/android-health-connect-authorization-provider.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/android-health-sync.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/android-health-sync.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/apple-health-authorization-provider.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/apple-health-authorization-provider.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/apple-health-sync.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/apple-health-sync.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/data-sync.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/data-sync.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/sync-progress-bar.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/sync-progress-bar.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/data-sync/sync-progress-list.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/data-sync/sync-progress-list.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/delete-account-button/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/delete-account-button/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.measured-value.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.measured-value.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.no-data.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.no-data.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.start-section.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.start-section.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.task-icon.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.task-icon.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/diary-card/diary-card.title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/helpers/form-items/form-field/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/helpers/form-items/form-field/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/helpers/form-items/form-select/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/helpers/form-items/form-select/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/journal/answer/actions.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/journal/answer/actions.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/journal/answer/header.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/journal/answer/header.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/journal/answer/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/journal/answer/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/journal/answer/input.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/journal/answer/input.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/journal/answer/question.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/journal/answer/question.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/language-switcher/hooks/use-language-switcher.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/language-switcher/hooks/use-language-switcher.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/language-switcher/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/language-switcher/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/language-switcher/option/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/language-switcher/option/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/language-switcher/option/radio-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/language-switcher/option/radio-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/logout-button/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/logout-button/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/measurement-list/date-range/format.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/measurement-list/date-range/format.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/measurement-list/date-range/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/measurement-list/date-range/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/measurement-list/date-range/on-date-change.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/measurement-list/date-range/on-date-change.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/measurement-list/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/measurement-list/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/measurement-list/item.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/measurement-list/item.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/apple/apple-health-authorization-provider.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/apple/apple-health-authorization-provider.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/container.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/container.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/description.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/description.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/image.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/image.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/request-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/request-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/sheet.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/sheet.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/skip-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/skip-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/components/manually-request-sheet/title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/apple-health-sync-service.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/apple-health-sync-service.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/convert-records-to-observation.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/convert-records-to-observation.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/convert-samples-to-observation.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/convert-samples-to-observation.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/generate-observation-entry.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/generate-observation-entry.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-latest-observation-dates-by-code.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-latest-observation-dates-by-code.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-latest-valid-start-date.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-latest-valid-start-date.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-records-from-health-connect.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-records-from-health-connect.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-samples-from-health.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-samples-from-health.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-total-records-count.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-total-records-count.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-total-samples-count.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/data-sync/utils/get-total-samples-count.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/modules/image/optimized-image.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/modules/image/optimized-image.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-birth-date-icon.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-birth-date-icon.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-birth-date-text.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-birth-date-text.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-birth-date.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-birth-date.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-gender.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-gender.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-meta.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-meta.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-name.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-card/patient-name.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/patient-list/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/patient-list/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/pdf-viewer/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/pdf-viewer/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/progress-bar/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/progress-bar/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/all-items.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/all-items.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/error.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/error.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/item.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/item.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/specific-item.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/content/specific-item.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/common/field-wrapper.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/common/field-wrapper.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/common/option-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/common/option-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/common/options-container.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/common/options-container.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-boolean-field.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-boolean-field.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-choice-field.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-choice-field.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-date-field.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-date-field.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-item-renderer.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-item-renderer.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-text-field.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/fields/questionnaire-text-field.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/header/questionnaire-header-subtitle.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/header/questionnaire-header-subtitle.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/header/questionnaire-header-title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/header/questionnaire-header-title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/header/questionnaire-header.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/header/questionnaire-header.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-initial-selected-values.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-initial-selected-values.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-navigation-handlers.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-navigation-handlers.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-form.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-form.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-navigation.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/hooks/use-questionnaire-navigation.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-next-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-next-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-previous-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-previous-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-submit-button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation-submit-button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/navigation/questionnaire-navigation.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/questionnaire-form-provider.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/questionnaire-form-provider.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/questionnaire-form.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/questionnaire-form.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/utils/condition-utils.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/questionnaire-response-form/utils/condition-utils.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/data-container.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/data-container.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/date-time.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/date-time.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/preview-modal.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/preview-modal.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/utils/photos.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/utils/photos.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/utils/setup.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/photo-preview/utils/setup.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/resource.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/resource.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/single-card-data-row.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/single-card-data-row.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/text-data.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/observation-detail/text-data.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/profile-form/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/profile-form/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/inputs.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/inputs.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/utils/fill-form.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/form/utils/fill-form.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/header/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/header/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/register/login-link.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/register/login-link.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/button.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/button.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/forgot-password.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/forgot-password.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/inputs.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/inputs.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/spacing.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/spacing.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/utils/fill-form.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/form/utils/fill-form.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/header/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/header/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/no-measured-value.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/no-measured-value.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/register-link.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/register-link.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/social-logins/apple-login.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/social-logins/apple-login.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/social-logins/google-login.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/social-logins/google-login.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/social-logins/social-logins.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/screens/sign-in/social-logins/social-logins.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/setting-list/heder.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/setting-list/heder.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/setting-list/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/setting-list/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/setting-list/item.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/setting-list/item.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/socket/components/socket-provider.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/socket/components/socket-provider.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/socket/hooks/use-ai-event-listener.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/socket/hooks/use-ai-event-listener.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/socket/hooks/use-socket.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/socket/hooks/use-socket.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tab/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tab/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tab/item.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tab/item.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/theme/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/theme/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/complete-animation.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/complete-animation.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/end-item.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/end-item.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/index.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/list.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/list.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/measured-value.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/measured-value.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/start-section.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/start-section.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/status.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/status.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/task-icon.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/task-icon.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/tile/title.test.d.ts +2 -0
- package/lib/typescript/module/src/__tests__/tile/title.test.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/utils/get-host-parent.d.ts +11 -0
- package/lib/typescript/module/src/__tests__/utils/get-host-parent.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/utils/mock-socket.d.ts +11 -0
- package/lib/typescript/module/src/__tests__/utils/mock-socket.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/utils/ovok-client.d.ts +3 -0
- package/lib/typescript/module/src/__tests__/utils/ovok-client.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/utils/theme.d.ts +188 -0
- package/lib/typescript/module/src/__tests__/utils/theme.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +26 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/delete-account-button/components/delete-account-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/delete-account-button/components/delete-account-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/delete-account-button/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/auth/delete-account-button/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/delete-account-button/types/delete-account-button-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/delete-account-button/types/delete-account-button-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/index.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/logout-button/components/logout-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/logout-button/components/logout-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/logout-button/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/auth/logout-button/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/logout-button/types/logout-button-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/logout-button/types/logout-button-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-form-field-component.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-form-field-component.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-form-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-form-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-form.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-with-form.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/profile/components/profile-with-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/contexts/profile-form-context.d.ts +48 -0
- package/lib/typescript/module/src/modules/auth/profile/contexts/profile-form-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/hooks/use-profile-form.d.ts +48 -0
- package/lib/typescript/module/src/modules/auth/profile/hooks/use-profile-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/index.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/profile/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-context-type.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-field.d.ts +21 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-props.d.ts +18 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-values.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/profile/types/profile-form-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/inputs.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/inputs.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-form-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-form-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-form.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-with-email.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/register/components/form/register-with-email.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/header/description.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/register/components/header/description.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/header/header.d.ts +11 -0
- package/lib/typescript/module/src/modules/auth/register/components/header/header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/header/title.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/register/components/header/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/login-link.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/components/login-link.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/register-with-separator.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/register/components/register-with-separator.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/components/register.d.ts +40 -0
- package/lib/typescript/module/src/modules/auth/register/components/register.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/contexts/register-form-context.d.ts +9 -0
- package/lib/typescript/module/src/modules/auth/register/contexts/register-form-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/hooks/use-register-form.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/register/hooks/use-register-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/form-inputs-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/auth/register/types/form-inputs-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-button-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-button-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-form-context-type.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-form-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-form-props.d.ts +24 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-form-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-form-values.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-form-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-header-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-header-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-props.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/types/register-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/utils/apply-custom-validation.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/register/utils/apply-custom-validation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/register/utils/create-register-validation-schema.d.ts +21 -0
- package/lib/typescript/module/src/modules/auth/register/utils/create-register-validation-schema.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/inputs.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/inputs.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/reset-password-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/reset-password-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/reset-password-form-provider.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/reset-password-form-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/reset-password-form.d.ts +9 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/form/reset-password-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/header/description.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/header/description.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/header/header.d.ts +11 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/header/header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/header/title.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/header/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/reset-password.d.ts +20 -0
- package/lib/typescript/module/src/modules/auth/reset-password/components/reset-password.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/contexts/reset-password-form-context.d.ts +48 -0
- package/lib/typescript/module/src/modules/auth/reset-password/contexts/reset-password-form-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/hooks/use-reset-password-form.d.ts +48 -0
- package/lib/typescript/module/src/modules/auth/reset-password/hooks/use-reset-password-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/reset-password/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/index.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-button-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-button-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-context-type.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-form-provider-props.d.ts +19 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-form-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-form-values.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-form-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-header-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-header-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-props.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/reset-password/types/reset-password-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/footer.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/footer.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/forgot-password.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/forgot-password.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/inputs.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/inputs.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/login-form-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/login-form-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/login-form.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/login-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/sign-in-with-email.d.ts +9 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/sign-in-with-email.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/signin-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/signin-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/spacing.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/form/spacing.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/header/description.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/header/description.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/header/header.d.ts +11 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/header/header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/header/title.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/header/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/login-with-separator.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/login-with-separator.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/register-link.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/register-link.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/sign-in.d.ts +41 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/sign-in.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/site-url.d.ts +2 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/site-url.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login-button.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login-icon.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login-text.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login-text.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login.d.ts +9 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/apple-login.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-icon.d.ts +8 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login-button.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login-icon.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login-text.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login-text.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login.d.ts +9 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/google-login.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/social-logins.d.ts +20 -0
- package/lib/typescript/module/src/modules/auth/sign-in/components/social-logins/social-logins.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/contexts/login-form-context.d.ts +48 -0
- package/lib/typescript/module/src/modules/auth/sign-in/contexts/login-form-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/hooks/use-login-form.d.ts +48 -0
- package/lib/typescript/module/src/modules/auth/sign-in/hooks/use-login-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/index.d.ts +11 -0
- package/lib/typescript/module/src/modules/auth/sign-in/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/apple-login-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/apple-login-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/footer-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/footer-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/google-icon-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/google-icon-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/google-login-props.d.ts +12 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/google-login-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-form-context-type.d.ts +4 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-form-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-form-props.d.ts +28 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-form-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-form-values.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-form-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-with-separator-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/login-with-separator-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/sign-in-header-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/sign-in-header-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/sign-in-props.d.ts +3 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/sign-in-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/signin-button-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/signin-button-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/signin-form-forgot-password-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/signin-form-forgot-password-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/social-logins-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/social-logins-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/spacing-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/spacing-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/token-response.d.ts +7 -0
- package/lib/typescript/module/src/modules/auth/sign-in/types/token-response.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/auth/sign-in/utils/create-login-validation-schema.d.ts +10 -0
- package/lib/typescript/module/src/modules/auth/sign-in/utils/create-login-validation-schema.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/animation-wrapper.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/animation-wrapper.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/animation.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/animation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/breathing-exercise-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/breathing-exercise-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/breathing-exercise.d.ts +15 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/breathing-exercise.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/icons/exhale-icon.d.ts +9 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/icons/exhale-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/icons/hold-icon.d.ts +9 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/icons/hold-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/icons/inhale-icon.d.ts +9 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/icons/inhale-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/info.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/info.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/method-name.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/method-name.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/method-type-icon.d.ts +8 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/method-type-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/progress-bar.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/progress-bar.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/remaining-time.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/components/remaining-time.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/context/breathing-exercise-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/breathing-exercise/context/breathing-exercise-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/hooks/use-breathing-exercise.d.ts +2 -0
- package/lib/typescript/module/src/modules/breathing-exercise/hooks/use-breathing-exercise.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/breathing-exercise/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise-animation-props.d.ts +3 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise-animation-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise-context-type.d.ts +13 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise.d.ts +21 -0
- package/lib/typescript/module/src/modules/breathing-exercise/types/breathing-exercise.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/btdevice-instruction.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-device/components/btdevice-instruction.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/btdevice-list.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-device/components/btdevice-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/device-list-provider.d.ts +5 -0
- package/lib/typescript/module/src/modules/bt-device/components/device-list-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/hooks/use-device-list.d.ts +6 -0
- package/lib/typescript/module/src/modules/bt-device/components/hooks/use-device-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/bottom-container.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/bottom-container.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/btdevice-item.d.ts +13 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/btdevice-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/content.d.ts +4 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/content.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/image.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/image.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/status.d.ts +4 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/status.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/sub-title.d.ts +4 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/sub-title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/title.d.ts +4 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/top-container.d.ts +4 -0
- package/lib/typescript/module/src/modules/bt-device/components/item/top-container.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/constants/device-images.d.ts +24 -0
- package/lib/typescript/module/src/modules/bt-device/constants/device-images.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/constants/device-instruction-pdfs.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-device/constants/device-instruction-pdfs.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/constants/device-list-items.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-device/constants/device-list-items.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/contexts/device-list-context.d.ts +7 -0
- package/lib/typescript/module/src/modules/bt-device/contexts/device-list-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/index.d.ts +9 -0
- package/lib/typescript/module/src/modules/bt-device/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/types/btdevice-instruction-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/bt-device/types/btdevice-instruction-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/types/btdevice-item-status-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/bt-device/types/btdevice-item-status-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/types/btdevice-list-props.d.ts +12 -0
- package/lib/typescript/module/src/modules/bt-device/types/btdevice-list-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-device/types/device-list-item.d.ts +9 -0
- package/lib/typescript/module/src/modules/bt-device/types/device-list-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/components/bt-provider-child-wrapper.d.ts +5 -0
- package/lib/typescript/module/src/modules/bt-management/components/bt-provider-child-wrapper.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/components/bt-provider.d.ts +5 -0
- package/lib/typescript/module/src/modules/bt-management/components/bt-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/components/default-permission-fallback.d.ts +4 -0
- package/lib/typescript/module/src/modules/bt-management/components/default-permission-fallback.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/constants/blood-pressure-translated-exception-map.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/constants/blood-pressure-translated-exception-map.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/constants/diagnostic-results.d.ts +10 -0
- package/lib/typescript/module/src/modules/bt-management/constants/diagnostic-results.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/constants/integrated-devices-map.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/constants/integrated-devices-map.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/hooks/use-request-permissions.d.ts +7 -0
- package/lib/typescript/module/src/modules/bt-management/hooks/use-request-permissions.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/index.d.ts +15 -0
- package/lib/typescript/module/src/modules/bt-management/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/bt-manager.d.ts +30 -0
- package/lib/typescript/module/src/modules/bt-management/services/bt-manager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/device-creator.d.ts +15 -0
- package/lib/typescript/module/src/modules/bt-management/services/device-creator.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bp2/bp2.device.d.ts +20 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bp2/bp2.device.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bp2/bp2.main-services.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bp2/bp2.main-services.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bt-connection-handler.d.ts +25 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bt-connection-handler.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bt-data-processor.d.ts +30 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bt-data-processor.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bt-managed-device.d.ts +30 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/bt-managed-device.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/f4/f4.device.d.ts +14 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/f4/f4.device.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/f4/f4.main-services.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/f4/f4.main-services.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/spo/spo2.device.d.ts +14 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/spo/spo2.device.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/spo/spo2.main-services.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/services/devices/spo/spo2.main-services.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/blood-pressure-states.d.ts +8 -0
- package/lib/typescript/module/src/modules/bt-management/types/blood-pressure-states.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/btprovider-children-props.d.ts +16 -0
- package/lib/typescript/module/src/modules/bt-management/types/btprovider-children-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/btprovider-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/bt-management/types/btprovider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/case-type.d.ts +8 -0
- package/lib/typescript/module/src/modules/bt-management/types/case-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/create-device-params.d.ts +14 -0
- package/lib/typescript/module/src/modules/bt-management/types/create-device-params.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-data.d.ts +11 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-data.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-measurement-map.d.ts +31 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-measurement-map.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-status-change-callback.d.ts +9 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-status-change-callback.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-status.d.ts +7 -0
- package/lib/typescript/module/src/modules/bt-management/types/device-status.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/diagnostic-key-enum.d.ts +10 -0
- package/lib/typescript/module/src/modules/bt-management/types/diagnostic-key-enum.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/error-callback.d.ts +7 -0
- package/lib/typescript/module/src/modules/bt-management/types/error-callback.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/i-bt-managed-device.d.ts +5 -0
- package/lib/typescript/module/src/modules/bt-management/types/i-bt-managed-device.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/i-medical-device.d.ts +7 -0
- package/lib/typescript/module/src/modules/bt-management/types/i-medical-device.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/integrated-devices.d.ts +22 -0
- package/lib/typescript/module/src/modules/bt-management/types/integrated-devices.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/measurement-with-case-type.d.ts +6 -0
- package/lib/typescript/module/src/modules/bt-management/types/measurement-with-case-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/monitor-characteristic.d.ts +6 -0
- package/lib/typescript/module/src/modules/bt-management/types/monitor-characteristic.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/parser-definition.d.ts +9 -0
- package/lib/typescript/module/src/modules/bt-management/types/parser-definition.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/parsing-case.d.ts +11 -0
- package/lib/typescript/module/src/modules/bt-management/types/parsing-case.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/parsing-model.d.ts +6 -0
- package/lib/typescript/module/src/modules/bt-management/types/parsing-model.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/result-callback.d.ts +8 -0
- package/lib/typescript/module/src/modules/bt-management/types/result-callback.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/service.type.d.ts +8 -0
- package/lib/typescript/module/src/modules/bt-management/types/service.type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/types/write-characteristic.d.ts +5 -0
- package/lib/typescript/module/src/modules/bt-management/types/write-characteristic.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/base-64-to-hex.d.ts +2 -0
- package/lib/typescript/module/src/modules/bt-management/utils/base-64-to-hex.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/convert-bp-state-flag.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/utils/convert-bp-state-flag.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/convert-ecg-diagnostic-flag.d.ts +3 -0
- package/lib/typescript/module/src/modules/bt-management/utils/convert-ecg-diagnostic-flag.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/hex-to-base-64.d.ts +2 -0
- package/lib/typescript/module/src/modules/bt-management/utils/hex-to-base-64.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/hex-to-byte.d.ts +2 -0
- package/lib/typescript/module/src/modules/bt-management/utils/hex-to-byte.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/i-16-from-hex.d.ts +2 -0
- package/lib/typescript/module/src/modules/bt-management/utils/i-16-from-hex.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/le-16-from-hex.d.ts +2 -0
- package/lib/typescript/module/src/modules/bt-management/utils/le-16-from-hex.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/le-32-from-hex.d.ts +2 -0
- package/lib/typescript/module/src/modules/bt-management/utils/le-32-from-hex.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/bt-management/utils/parse-measurement.d.ts +5 -0
- package/lib/typescript/module/src/modules/bt-management/utils/parse-measurement.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/components/content-card.d.ts +13 -0
- package/lib/typescript/module/src/modules/content/content-card/components/content-card.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/components/cover-badge.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-card/components/cover-badge.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/components/cover.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-card/components/cover.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/components/title.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-card/components/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/content/content-card/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-cover-badge-props.d.ts +14 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-cover-badge-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-cover-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-cover-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-metadata-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-metadata-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-title-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/content/content-card/types/content-card-title-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-body.d.ts +4 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-body.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-footer.d.ts +4 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-footer.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-header.d.ts +4 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-resource.d.ts +7 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-resource.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-rich-content.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-rich-content.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-tags.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-tags.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-title.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail-title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail.d.ts +23 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/content-detail.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-author.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-author.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-date.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-date.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-item.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-reading-time.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-separator.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata-separator.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata.d.ts +10 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/content-detail-metadata.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/content/content-detail/components/metadata/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/components/composition-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/components/composition-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/hooks/use-composition.d.ts +2 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/hooks/use-composition.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/index.d.ts +6 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/types/composition-context-type.d.ts +5 -0
- package/lib/typescript/module/src/modules/content/content-detail/context/types/composition-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/content/content-detail/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-metadata-item-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-metadata-item-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-metadata-props.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-metadata-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-rich-content-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-rich-content-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-tags-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-tags-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-title-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/content/content-detail/types/content-detail-title-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/components/content-list.d.ts +16 -0
- package/lib/typescript/module/src/modules/content/content-list/components/content-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/components/header.d.ts +4 -0
- package/lib/typescript/module/src/modules/content/content-list/components/header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/components/horizontal-list.d.ts +6 -0
- package/lib/typescript/module/src/modules/content/content-list/components/horizontal-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/components/section.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-list/components/section.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/components/title.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-list/components/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/components/view-all.d.ts +5 -0
- package/lib/typescript/module/src/modules/content/content-list/components/view-all.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/index.d.ts +6 -0
- package/lib/typescript/module/src/modules/content/content-list/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/types/content-list-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/content/content-list/types/content-list-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/types/default-content-data.d.ts +10 -0
- package/lib/typescript/module/src/modules/content/content-list/types/default-content-data.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/types/horizontal-contents-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/content/content-list/types/horizontal-contents-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/types/horizontal-list-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/content/content-list/types/horizontal-list-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/content-list/types/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/content/content-list/types/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/content/index.d.ts +4 -0
- package/lib/typescript/module/src/modules/content/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/android/android-health-connect-authorization-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/components/android/android-health-connect-authorization-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/android/android-health-sync.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/components/android/android-health-sync.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/apple/apple-health-authorization-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/components/apple/apple-health-authorization-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/apple/apple-health-sync.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/components/apple/apple-health-sync.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/data-sync.d.ts +24 -0
- package/lib/typescript/module/src/modules/data-sync/components/data-sync.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/container.d.ts +3 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/container.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/description.d.ts +3 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/description.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/image.d.ts +9 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/image.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/request-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/request-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/sheet.d.ts +18 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/sheet.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/skip-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/skip-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/title.d.ts +3 -0
- package/lib/typescript/module/src/modules/data-sync/components/manually-request-sheet/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/sync-progress-list/sync-progress-bar.d.ts +7 -0
- package/lib/typescript/module/src/modules/data-sync/components/sync-progress-list/sync-progress-bar.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/components/sync-progress-list/sync-progress-list.d.ts +9 -0
- package/lib/typescript/module/src/modules/data-sync/components/sync-progress-list/sync-progress-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/hooks/use-listen-changes.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/hooks/use-listen-changes.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/index.d.ts +6 -0
- package/lib/typescript/module/src/modules/data-sync/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/android-health-sync-service.d.ts +21 -0
- package/lib/typescript/module/src/modules/data-sync/services/android-health-sync-service.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/apple-health-sync-service.d.ts +21 -0
- package/lib/typescript/module/src/modules/data-sync/services/apple-health-sync-service.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/base-health-sync-service.d.ts +35 -0
- package/lib/typescript/module/src/modules/data-sync/services/base-health-sync-service.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/data-processor.d.ts +40 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/data-processor.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/instance-manager.d.ts +10 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/instance-manager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/storage-manager.d.ts +17 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/storage-manager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/sync-progress-manager.d.ts +22 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/sync-progress-manager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/sync-state-manager.d.ts +15 -0
- package/lib/typescript/module/src/modules/data-sync/services/managers/sync-state-manager.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/android-health-connect-authorization-provider-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/types/android-health-connect-authorization-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/android-health-sync-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/types/android-health-sync-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/apple-health-authorization-provider-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/types/apple-health-authorization-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/apple-health-sync-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/types/apple-health-sync-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/base-service-props.d.ts +13 -0
- package/lib/typescript/module/src/modules/data-sync/types/base-service-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/convert-data-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/data-sync/types/convert-data-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/data-from-provider-result.d.ts +8 -0
- package/lib/typescript/module/src/modules/data-sync/types/data-from-provider-result.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/get-data-from-provider-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/data-sync/types/get-data-from-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/get-total-count-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/data-sync/types/get-total-count-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-authorization-provider-props.d.ts +12 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-authorization-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-provider.d.ts +2 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-sync-keys.d.ts +3 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-sync-keys.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-sync-props.d.ts +26 -0
- package/lib/typescript/module/src/modules/data-sync/types/health-sync-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/types/sync-progress.d.ts +10 -0
- package/lib/typescript/module/src/modules/data-sync/types/sync-progress.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/convert-records-to-observation.d.ts +5 -0
- package/lib/typescript/module/src/modules/data-sync/utils/convert-records-to-observation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/convert-samples-to-observation.d.ts +5 -0
- package/lib/typescript/module/src/modules/data-sync/utils/convert-samples-to-observation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/generate-observation-entry.d.ts +9 -0
- package/lib/typescript/module/src/modules/data-sync/utils/generate-observation-entry.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-latest-observation-dates-by-code.d.ts +14 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-latest-observation-dates-by-code.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-latest-valid-start-date.d.ts +13 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-latest-valid-start-date.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-records-from-health-connect.d.ts +10 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-records-from-health-connect.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-samples-from-health.d.ts +10 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-samples-from-health.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-total-records-count.d.ts +4 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-total-records-count.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-total-samples-count.d.ts +9 -0
- package/lib/typescript/module/src/modules/data-sync/utils/get-total-samples-count.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/data-sync/utils/save-bundle-observations.d.ts +9 -0
- package/lib/typescript/module/src/modules/data-sync/utils/save-bundle-observations.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/components/diary-card.d.ts +14 -0
- package/lib/typescript/module/src/modules/diary/components/diary-card.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/components/no-data.d.ts +3 -0
- package/lib/typescript/module/src/modules/diary/components/no-data.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/components/start-section.d.ts +3 -0
- package/lib/typescript/module/src/modules/diary/components/start-section.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/diary/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/types/diary-card-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/diary/types/diary-card-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/types/no-data-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/diary/types/no-data-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/diary/types/start-section-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/diary/types/start-section-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/conditional.d.ts +8 -0
- package/lib/typescript/module/src/modules/helpers/conditional.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/form-items/form-date-field.d.ts +14 -0
- package/lib/typescript/module/src/modules/helpers/form-items/form-date-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/form-items/form-field.d.ts +12 -0
- package/lib/typescript/module/src/modules/helpers/form-items/form-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/form-items/form-select.d.ts +15 -0
- package/lib/typescript/module/src/modules/helpers/form-items/form-select.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/index.d.ts +8 -0
- package/lib/typescript/module/src/modules/helpers/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/utils/s-log.d.ts +2 -0
- package/lib/typescript/module/src/modules/helpers/utils/s-log.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/utils/safe-json-parse.d.ts +2 -0
- package/lib/typescript/module/src/modules/helpers/utils/safe-json-parse.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/utils/sentry-logger.d.ts +2 -0
- package/lib/typescript/module/src/modules/helpers/utils/sentry-logger.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/helpers/utils/with-animated.d.ts +4 -0
- package/lib/typescript/module/src/modules/helpers/utils/with-animated.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/image/components/optimized-image.d.ts +4 -0
- package/lib/typescript/module/src/modules/image/components/optimized-image.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/image/index.d.ts +4 -0
- package/lib/typescript/module/src/modules/image/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/image/types/image-dimension.d.ts +2 -0
- package/lib/typescript/module/src/modules/image/types/image-dimension.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/image/types/optimized-image-props.d.ts +13 -0
- package/lib/typescript/module/src/modules/image/types/optimized-image-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/image/utils/calculate-dimension.d.ts +3 -0
- package/lib/typescript/module/src/modules/image/utils/calculate-dimension.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/image/utils/get-optimized-image-url.d.ts +11 -0
- package/lib/typescript/module/src/modules/image/utils/get-optimized-image-url.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/answer/components/actions.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/answer/components/actions.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/answer/components/answer.d.ts +9 -0
- package/lib/typescript/module/src/modules/journal/answer/components/answer.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/answer/components/header.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/answer/components/header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/answer/components/input.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/answer/components/input.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/answer/components/question.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/answer/components/question.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/answer/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/journal/answer/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/index.d.ts +4 -0
- package/lib/typescript/module/src/modules/journal/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/answer.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/answer.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/date.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/date.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/past-journal-card.d.ts +13 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/past-journal-card.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/title.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/past-journal/components/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/past-journal/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/journal/past-journal/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/actions.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/actions.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/content.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/content.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/gradient.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/gradient.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/question.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/question.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/title.d.ts +3 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/today-question-card.d.ts +10 -0
- package/lib/typescript/module/src/modules/journal/today-question/components/today-question-card.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/journal/today-question/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/journal/today-question/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/language-switcher.d.ts +11 -0
- package/lib/typescript/module/src/modules/language-switcher/components/language-switcher.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/context/language-option-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/context/language-option-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/flag.d.ts +4 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/flag.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/hooks/use-language-option.d.ts +2 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/hooks/use-language-option.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/label.d.ts +3 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/label.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/language-switcher-option.d.ts +9 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/language-switcher-option.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/radio-button.d.ts +3 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/radio-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/types/language-option-context-type.d.ts +5 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/types/language-option-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/types/language-switcher-option-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/language-switcher/components/option/types/language-switcher-option-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/context/language-option-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/language-switcher/context/language-option-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/hooks/use-language-switcher.d.ts +2 -0
- package/lib/typescript/module/src/modules/language-switcher/hooks/use-language-switcher.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/language-switcher/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/types/language-switcher-context-type.d.ts +5 -0
- package/lib/typescript/module/src/modules/language-switcher/types/language-switcher-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/language-switcher/types/language-switcher-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/language-switcher/types/language-switcher-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/components/date-range.d.ts +4 -0
- package/lib/typescript/module/src/modules/measurement/components/date-range.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/components/measurement-list-item.d.ts +3 -0
- package/lib/typescript/module/src/modules/measurement/components/measurement-list-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/components/measurement-list.d.ts +33 -0
- package/lib/typescript/module/src/modules/measurement/components/measurement-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/index.d.ts +4 -0
- package/lib/typescript/module/src/modules/measurement/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/types/date-range-props.d.ts +16 -0
- package/lib/typescript/module/src/modules/measurement/types/date-range-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/types/measurement-list-item-props.d.ts +11 -0
- package/lib/typescript/module/src/modules/measurement/types/measurement-list-item-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/measurement/utils/get-end-date.d.ts +3 -0
- package/lib/typescript/module/src/modules/measurement/utils/get-end-date.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/data-container.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/data-container.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/date-time.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/date-time.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/observation-detail.d.ts +18 -0
- package/lib/typescript/module/src/modules/observation-detail/components/observation-detail.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/photo-preview.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/photo-preview.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/preview-modal.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/preview-modal.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/resource.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/resource.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/single-card-data-row.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/single-card-data-row.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/components/text-data.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/components/text-data.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/observation-detail/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/types/observation-detail-date-time-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/observation-detail/types/observation-detail-date-time-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/types/photo-preview-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/observation-detail/types/photo-preview-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/types/preview-modal-props.d.ts +11 -0
- package/lib/typescript/module/src/modules/observation-detail/types/preview-modal-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/types/resource-props.d.ts +12 -0
- package/lib/typescript/module/src/modules/observation-detail/types/resource-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/observation-detail/types/single-card-data-row-props.d.ts +11 -0
- package/lib/typescript/module/src/modules/observation-detail/types/single-card-data-row-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/birth-date/patient-birth-date-icon.d.ts +3 -0
- package/lib/typescript/module/src/modules/patient/components/card/birth-date/patient-birth-date-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/birth-date/patient-birth-date-text.d.ts +3 -0
- package/lib/typescript/module/src/modules/patient/components/card/birth-date/patient-birth-date-text.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/birth-date/patient-birth-date.d.ts +11 -0
- package/lib/typescript/module/src/modules/patient/components/card/birth-date/patient-birth-date.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-card.d.ts +16 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-card.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-gender.d.ts +3 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-gender.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-meta.d.ts +3 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-meta.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-name.d.ts +3 -0
- package/lib/typescript/module/src/modules/patient/components/card/patient-name.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/components/patient-list.d.ts +9 -0
- package/lib/typescript/module/src/modules/patient/components/patient-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/index.d.ts +7 -0
- package/lib/typescript/module/src/modules/patient/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/types/patient-birth-date-text-props.d.ts +14 -0
- package/lib/typescript/module/src/modules/patient/types/patient-birth-date-text-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/types/patient-gender-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/patient/types/patient-gender-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/types/patient-list-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/patient/types/patient-list-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/patient/types/patient-name-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/patient/types/patient-name-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/pdf/components/pdf-viewer.d.ts +3 -0
- package/lib/typescript/module/src/modules/pdf/components/pdf-viewer.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/pdf/index.d.ts +2 -0
- package/lib/typescript/module/src/modules/pdf/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/pdf/types/pdf-viewer-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/pdf/types/pdf-viewer-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/picker-sheet/components/picker-sheet.d.ts +8 -0
- package/lib/typescript/module/src/modules/picker-sheet/components/picker-sheet.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/picker-sheet/components/wheel-picker-item.d.ts +15 -0
- package/lib/typescript/module/src/modules/picker-sheet/components/wheel-picker-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/picker-sheet/components/wheel-picker.d.ts +18 -0
- package/lib/typescript/module/src/modules/picker-sheet/components/wheel-picker.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/picker-sheet/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/picker-sheet/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/progress-bar/components/progress-bar.d.ts +4 -0
- package/lib/typescript/module/src/modules/progress-bar/components/progress-bar.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/progress-bar/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/progress-bar/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/progress-bar/types/progress-bar-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/progress-bar/types/progress-bar-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-all-items.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-error.d.ts +5 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-error.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-item.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.d.ts +7 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content-specific-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content.d.ts +13 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/content/questionnaire-content.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/index.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.d.ts +12 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.d.ts +12 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-choice-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-date-field.d.ts +14 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-date-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-text-field.d.ts +12 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/fields/questionnaire-text-field.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/header/questionnaire-header-subtitle.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/header/questionnaire-header-title.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/header/questionnaire-header-title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/header/questionnaire-header.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/header/questionnaire-header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-next-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-previous-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation-submit-button.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.d.ts +13 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/navigation/questionnaire-navigation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/questionnaire-form-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/questionnaire-form-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/questionnaire-form.d.ts +13 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/questionnaire-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/questionnaire-navigation-provider.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/components/questionnaire-navigation-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/contexts/questionnaire-form-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/contexts/questionnaire-form-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.d.ts +14 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/contexts/questionnaire-navigation-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/index.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-initial-selected-values.d.ts +7 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-initial-selected-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-navigation-handlers.d.ts +26 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-navigation-handlers.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-questionnaire-form.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-questionnaire-form.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.d.ts +13 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation-state.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/hooks/use-questionnaire-navigation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/index.d.ts +9 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/date-item-type.d.ts +2 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/date-item-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/extended-questionnaire-item.d.ts +11 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/extended-questionnaire-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/index.d.ts +5 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/navigation-button-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/navigation-button-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-content-error-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-content-error-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-content-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-content-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-context-type.d.ts +19 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-provider-props.d.ts +17 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-values.d.ts +5 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-form-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-header-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-header-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-header-subtitle-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-header-title-props.d.ts +6 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-header-title-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.d.ts +19 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-navigation-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire.d.ts +14 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/questionnaire.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/response-values.d.ts +2 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/types/response-values.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/condition-utils.d.ts +9 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/condition-utils.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/boolean-condition.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/boolean-condition.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/date-condition.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/date-condition.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/decimal-condition.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/decimal-condition.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/index.d.ts +5 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/string-condition.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/conditions/string-condition.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/fields/get-keyboard-type.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/fields/get-keyboard-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/fields/get-option-text.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/fields/get-option-text.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/fields/get-option-value.d.ts +3 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/fields/get-option-value.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/form-utils.d.ts +10 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/form-utils.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/form-validation.d.ts +12 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/form-validation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.d.ts +15 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/questionnaire-navigation-utils.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/questionnaire-submit-utils.d.ts +7 -0
- package/lib/typescript/module/src/modules/questionnaire-response-form/utils/questionnaire-submit-utils.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/components/list-header.d.ts +8 -0
- package/lib/typescript/module/src/modules/setting/components/list-header.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/components/setting-list-item.d.ts +3 -0
- package/lib/typescript/module/src/modules/setting/components/setting-list-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/components/setting-list.d.ts +3 -0
- package/lib/typescript/module/src/modules/setting/components/setting-list.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/index.d.ts +7 -0
- package/lib/typescript/module/src/modules/setting/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/types/custom-setting-list-item.d.ts +11 -0
- package/lib/typescript/module/src/modules/setting/types/custom-setting-list-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/types/setting-list-item-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/setting/types/setting-list-item-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/setting/types/setting-list-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/setting/types/setting-list-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/components/socket-provider.d.ts +3 -0
- package/lib/typescript/module/src/modules/socket/components/socket-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/contexts/socket-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/socket/contexts/socket-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/hooks/use-ai-event-listener.d.ts +16 -0
- package/lib/typescript/module/src/modules/socket/hooks/use-ai-event-listener.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/hooks/use-socket.d.ts +2 -0
- package/lib/typescript/module/src/modules/socket/hooks/use-socket.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/index.d.ts +7 -0
- package/lib/typescript/module/src/modules/socket/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/types/socket-context-type.d.ts +6 -0
- package/lib/typescript/module/src/modules/socket/types/socket-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/types/socket-log-payload.d.ts +5 -0
- package/lib/typescript/module/src/modules/socket/types/socket-log-payload.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/socket/types/socket-provider-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/socket/types/socket-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/components/tab-item.d.ts +4 -0
- package/lib/typescript/module/src/modules/tab/components/tab-item.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/components/tab-provider.d.ts +3 -0
- package/lib/typescript/module/src/modules/tab/components/tab-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/components/tab.d.ts +7 -0
- package/lib/typescript/module/src/modules/tab/components/tab.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/contexts/tab-context.d.ts +4 -0
- package/lib/typescript/module/src/modules/tab/contexts/tab-context.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/hooks/use-tab.d.ts +2 -0
- package/lib/typescript/module/src/modules/tab/hooks/use-tab.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/tab/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/types/tab-context-type.d.ts +5 -0
- package/lib/typescript/module/src/modules/tab/types/tab-context-type.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/types/tab-item-props.d.ts +11 -0
- package/lib/typescript/module/src/modules/tab/types/tab-item-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tab/types/tab-props.d.ts +8 -0
- package/lib/typescript/module/src/modules/tab/types/tab-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/components/theme-provider.d.ts +3 -0
- package/lib/typescript/module/src/modules/theme/components/theme-provider.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/constants/colors.d.ts +33 -0
- package/lib/typescript/module/src/modules/theme/constants/colors.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/constants/multipliers.d.ts +5 -0
- package/lib/typescript/module/src/modules/theme/constants/multipliers.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/hooks/use-app-theme.d.ts +187 -0
- package/lib/typescript/module/src/modules/theme/hooks/use-app-theme.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/index.d.ts +7 -0
- package/lib/typescript/module/src/modules/theme/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/types/app-theme.d.ts +3 -0
- package/lib/typescript/module/src/modules/theme/types/app-theme.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/types/theme-provider-props.d.ts +12 -0
- package/lib/typescript/module/src/modules/theme/types/theme-provider-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/theme/utils/generate-theme.d.ts +188 -0
- package/lib/typescript/module/src/modules/theme/utils/generate-theme.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/complete-animation.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/components/complete-animation.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/measured-value.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/components/measured-value.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/measuring-spinner.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/components/measuring-spinner.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/no-measured-value.d.ts +7 -0
- package/lib/typescript/module/src/modules/tile/components/no-measured-value.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/start-section.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/components/start-section.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/status.d.ts +8 -0
- package/lib/typescript/module/src/modules/tile/components/status.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/task-icon.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/components/task-icon.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/tile.d.ts +21 -0
- package/lib/typescript/module/src/modules/tile/components/tile.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/components/title.d.ts +8 -0
- package/lib/typescript/module/src/modules/tile/components/title.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/constants/measurement-icon-svg.d.ts +21 -0
- package/lib/typescript/module/src/modules/tile/constants/measurement-icon-svg.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/index.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/index.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/complete-animation-props.d.ts +5 -0
- package/lib/typescript/module/src/modules/tile/types/complete-animation-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/measured-value-props.d.ts +9 -0
- package/lib/typescript/module/src/modules/tile/types/measured-value-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/measurement-icon-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/tile/types/measurement-icon-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/measuring-spinner-props.d.ts +3 -0
- package/lib/typescript/module/src/modules/tile/types/measuring-spinner-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/start-section-props.d.ts +12 -0
- package/lib/typescript/module/src/modules/tile/types/start-section-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/task-icon-props.d.ts +10 -0
- package/lib/typescript/module/src/modules/tile/types/task-icon-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/tile-list-props.d.ts +4 -0
- package/lib/typescript/module/src/modules/tile/types/tile-list-props.d.ts.map +1 -0
- package/lib/typescript/module/src/modules/tile/types/tile-props.d.ts +7 -0
- package/lib/typescript/module/src/modules/tile/types/tile-props.d.ts.map +1 -0
- package/lib/typescript/module/src/polyfills/index.d.ts +2 -0
- package/lib/typescript/module/src/polyfills/index.d.ts.map +1 -0
- package/package.json +235 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _questionnaireFieldWrapper = require("./questionnaire-field-wrapper.js");
|
|
7
|
+
Object.keys(_questionnaireFieldWrapper).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _questionnaireFieldWrapper[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _questionnaireFieldWrapper[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _questionnaireOptionButton = require("./questionnaire-option-button.js");
|
|
18
|
+
Object.keys(_questionnaireOptionButton).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _questionnaireOptionButton[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _questionnaireOptionButton[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
var _questionnaireOptionsContainer = require("./questionnaire-options-container.js");
|
|
29
|
+
Object.keys(_questionnaireOptionsContainer).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _questionnaireOptionsContainer[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () {
|
|
35
|
+
return _questionnaireOptionsContainer[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
//# sourceMappingURL=index.js.map
|
package/lib/commonjs/modules/questionnaire-response-form/components/fields/common/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_questionnaireFieldWrapper","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_questionnaireOptionButton","_questionnaireOptionsContainer"],"sourceRoot":"../../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/common/index.ts"],"mappings":";;;;;AAAA,IAAAA,0BAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,0BAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,0BAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,0BAAA,CAAAK,GAAA;IAAA;EAAA;AAAA;AACA,IAAAK,0BAAA,GAAAT,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAO,0BAAA,EAAAN,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAK,0BAAA,CAAAL,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,0BAAA,CAAAL,GAAA;IAAA;EAAA;AAAA;AACA,IAAAM,8BAAA,GAAAV,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAQ,8BAAA,EAAAP,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAM,8BAAA,CAAAN,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAE,8BAAA,CAAAN,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireFieldWrapper = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _reactNativePaper = require("react-native-paper");
|
|
10
|
+
var _index = require("../../../../theme/index.js");
|
|
11
|
+
var _index2 = require("../../../hooks/index.js");
|
|
12
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
14
|
+
const QuestionnaireFieldWrapper = exports.QuestionnaireFieldWrapper = /*#__PURE__*/React.memo(({
|
|
15
|
+
item,
|
|
16
|
+
children,
|
|
17
|
+
testID,
|
|
18
|
+
style
|
|
19
|
+
}) => {
|
|
20
|
+
const theme = (0, _index.useAppTheme)();
|
|
21
|
+
const {
|
|
22
|
+
paged
|
|
23
|
+
} = (0, _index2.useQuestionnaireForm)();
|
|
24
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
25
|
+
testID: testID,
|
|
26
|
+
style: [styles.container, {
|
|
27
|
+
gap: paged ? theme.spacing(4) : theme.spacing(2)
|
|
28
|
+
}, style],
|
|
29
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativePaper.Text, {
|
|
30
|
+
variant: paged ? "titleLarge" : "titleMedium",
|
|
31
|
+
style: [styles.title, {
|
|
32
|
+
color: theme.colors.onSurface
|
|
33
|
+
}],
|
|
34
|
+
children: [item.text, item.required && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativePaper.Text, {
|
|
35
|
+
style: {
|
|
36
|
+
color: theme.colors.error
|
|
37
|
+
},
|
|
38
|
+
children: " *"
|
|
39
|
+
})]
|
|
40
|
+
}), children, item.helperText && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativePaper.Text, {
|
|
41
|
+
variant: "bodySmall",
|
|
42
|
+
style: [{
|
|
43
|
+
color: theme.colors.onSurfaceVariant
|
|
44
|
+
}],
|
|
45
|
+
children: item.helperText
|
|
46
|
+
})]
|
|
47
|
+
});
|
|
48
|
+
});
|
|
49
|
+
const styles = _reactNative.StyleSheet.create({
|
|
50
|
+
container: {
|
|
51
|
+
width: "100%"
|
|
52
|
+
},
|
|
53
|
+
title: {
|
|
54
|
+
fontWeight: "500"
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
//# sourceMappingURL=questionnaire-field-wrapper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_reactNativePaper","_index","_index2","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","QuestionnaireFieldWrapper","exports","memo","item","children","testID","style","theme","useAppTheme","paged","useQuestionnaireForm","jsxs","View","styles","container","gap","spacing","Text","variant","title","color","colors","onSurface","text","required","jsx","error","helperText","onSurfaceVariant","StyleSheet","create","width","fontWeight"],"sourceRoot":"../../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/common/questionnaire-field-wrapper.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,iBAAA,GAAAF,OAAA;AAEA,IAAAG,MAAA,GAAAH,OAAA;AACA,IAAAI,OAAA,GAAAJ,OAAA;AAAsD,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAD,wBAAAO,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAT,uBAAA,YAAAA,CAAAO,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAU/C,MAAMkB,yBAAyB,GAAAC,OAAA,CAAAD,yBAAA,gBAAG3B,KAAK,CAAC6B,IAAI,CACjD,CAAC;EAAEC,IAAI;EAAEC,QAAQ;EAAEC,MAAM;EAAEC;AAAsC,CAAC,KAAK;EACrE,MAAMC,KAAK,GAAG,IAAAC,kBAAW,EAAC,CAAC;EAC3B,MAAM;IAAEC;EAAM,CAAC,GAAG,IAAAC,4BAAoB,EAAC,CAAC;EAExC,oBACE,IAAA9B,WAAA,CAAA+B,IAAA,EAACnC,YAAA,CAAAoC,IAAI;IACHP,MAAM,EAAEA,MAAO;IACfC,KAAK,EAAE,CACLO,MAAM,CAACC,SAAS,EAChB;MAAEC,GAAG,EAAEN,KAAK,GAAGF,KAAK,CAACS,OAAO,CAAC,CAAC,CAAC,GAAGT,KAAK,CAACS,OAAO,CAAC,CAAC;IAAE,CAAC,EACpDV,KAAK,CACL;IAAAF,QAAA,gBAEF,IAAAxB,WAAA,CAAA+B,IAAA,EAAClC,iBAAA,CAAAwC,IAAI;MACHC,OAAO,EAAET,KAAK,GAAG,YAAY,GAAG,aAAc;MAC9CH,KAAK,EAAE,CAACO,MAAM,CAACM,KAAK,EAAE;QAAEC,KAAK,EAAEb,KAAK,CAACc,MAAM,CAACC;MAAU,CAAC,CAAE;MAAAlB,QAAA,GAExDD,IAAI,CAACoB,IAAI,EACTpB,IAAI,CAACqB,QAAQ,iBACZ,IAAA5C,WAAA,CAAA6C,GAAA,EAAChD,iBAAA,CAAAwC,IAAI;QAACX,KAAK,EAAE;UAAEc,KAAK,EAAEb,KAAK,CAACc,MAAM,CAACK;QAAM,CAAE;QAAAtB,QAAA,EAAC;MAAE,CAAM,CACrD;IAAA,CACG,CAAC,EAENA,QAAQ,EAERD,IAAI,CAACwB,UAAU,iBACd,IAAA/C,WAAA,CAAA6C,GAAA,EAAChD,iBAAA,CAAAwC,IAAI;MACHC,OAAO,EAAC,WAAW;MACnBZ,KAAK,EAAE,CAAC;QAAEc,KAAK,EAAEb,KAAK,CAACc,MAAM,CAACO;MAAiB,CAAC,CAAE;MAAAxB,QAAA,EAEjDD,IAAI,CAACwB;IAAU,CACZ,CACP;EAAA,CACG,CAAC;AAEX,CACF,CAAC;AAED,MAAMd,MAAM,GAAGgB,uBAAU,CAACC,MAAM,CAAC;EAC/BhB,SAAS,EAAE;IACTiB,KAAK,EAAE;EACT,CAAC;EACDZ,KAAK,EAAE;IACLa,UAAU,EAAE;EACd;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireOptionButton = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _reactNativePaper = require("react-native-paper");
|
|
10
|
+
var _index = require("../../../../theme/index.js");
|
|
11
|
+
var _index2 = require("../../../hooks/index.js");
|
|
12
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
14
|
+
const QuestionnaireOptionButton = exports.QuestionnaireOptionButton = /*#__PURE__*/React.memo(({
|
|
15
|
+
value,
|
|
16
|
+
label,
|
|
17
|
+
isSelected,
|
|
18
|
+
onPress,
|
|
19
|
+
testID
|
|
20
|
+
}) => {
|
|
21
|
+
const theme = (0, _index.useAppTheme)();
|
|
22
|
+
const {
|
|
23
|
+
paged
|
|
24
|
+
} = (0, _index2.useQuestionnaireForm)();
|
|
25
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
|
|
26
|
+
testID: testID,
|
|
27
|
+
style: [styles.container, {
|
|
28
|
+
padding: paged ? theme.spacing(2) : theme.spacing(1),
|
|
29
|
+
borderColor: theme.colors.outlineVariant,
|
|
30
|
+
backgroundColor: isSelected ? theme.colors.primaryContainer : theme.colors.surface,
|
|
31
|
+
borderRadius: theme.borderRadius(2)
|
|
32
|
+
}],
|
|
33
|
+
onPress: onPress,
|
|
34
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativePaper.RadioButton.Android, {
|
|
35
|
+
testID: "radio-button",
|
|
36
|
+
value: value,
|
|
37
|
+
color: theme.colors.primary,
|
|
38
|
+
onPress: onPress,
|
|
39
|
+
status: isSelected ? "checked" : "unchecked"
|
|
40
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativePaper.Text, {
|
|
41
|
+
variant: paged ? "bodyMedium" : "bodySmall",
|
|
42
|
+
style: [{
|
|
43
|
+
color: theme.colors.onSurface,
|
|
44
|
+
fontWeight: isSelected ? "600" : "normal"
|
|
45
|
+
}],
|
|
46
|
+
children: label
|
|
47
|
+
})]
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
const styles = _reactNative.StyleSheet.create({
|
|
51
|
+
container: {
|
|
52
|
+
flexDirection: "row",
|
|
53
|
+
alignItems: "center",
|
|
54
|
+
borderWidth: 1
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
//# sourceMappingURL=questionnaire-option-button.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_reactNativePaper","_index","_index2","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","QuestionnaireOptionButton","exports","memo","value","label","isSelected","onPress","testID","theme","useAppTheme","paged","useQuestionnaireForm","jsxs","TouchableOpacity","style","styles","container","padding","spacing","borderColor","colors","outlineVariant","backgroundColor","primaryContainer","surface","borderRadius","children","jsx","RadioButton","Android","color","primary","status","Text","variant","onSurface","fontWeight","StyleSheet","create","flexDirection","alignItems","borderWidth"],"sourceRoot":"../../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/common/questionnaire-option-button.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,iBAAA,GAAAF,OAAA;AAEA,IAAAG,MAAA,GAAAH,OAAA;AACA,IAAAI,OAAA,GAAAJ,OAAA;AAAsD,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAD,wBAAAO,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAT,uBAAA,YAAAA,CAAAO,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAU/C,MAAMkB,yBAAyB,GAAAC,OAAA,CAAAD,yBAAA,gBAAG3B,KAAK,CAAC6B,IAAI,CACjD,CAAC;EACCC,KAAK;EACLC,KAAK;EACLC,UAAU;EACVC,OAAO;EACPC;AAC8B,CAAC,KAAK;EACpC,MAAMC,KAAK,GAAG,IAAAC,kBAAW,EAAC,CAAC;EAC3B,MAAM;IAAEC;EAAM,CAAC,GAAG,IAAAC,4BAAoB,EAAC,CAAC;EAExC,oBACE,IAAA/B,WAAA,CAAAgC,IAAA,EAACpC,YAAA,CAAAqC,gBAAgB;IACfN,MAAM,EAAEA,MAAO;IACfO,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MACEC,OAAO,EAAEP,KAAK,GAAGF,KAAK,CAACU,OAAO,CAAC,CAAC,CAAC,GAAGV,KAAK,CAACU,OAAO,CAAC,CAAC,CAAC;MACpDC,WAAW,EAAEX,KAAK,CAACY,MAAM,CAACC,cAAc;MACxCC,eAAe,EAAEjB,UAAU,GACvBG,KAAK,CAACY,MAAM,CAACG,gBAAgB,GAC7Bf,KAAK,CAACY,MAAM,CAACI,OAAO;MACxBC,YAAY,EAAEjB,KAAK,CAACiB,YAAY,CAAC,CAAC;IACpC,CAAC,CACD;IACFnB,OAAO,EAAEA,OAAQ;IAAAoB,QAAA,gBAEjB,IAAA9C,WAAA,CAAA+C,GAAA,EAAClD,iBAAA,CAAAmD,WAAW,CAACC,OAAO;MAClBtB,MAAM,EAAC,cAAc;MACrBJ,KAAK,EAAEA,KAAM;MACb2B,KAAK,EAAEtB,KAAK,CAACY,MAAM,CAACW,OAAQ;MAC5BzB,OAAO,EAAEA,OAAQ;MACjB0B,MAAM,EAAE3B,UAAU,GAAG,SAAS,GAAG;IAAY,CAC9C,CAAC,eACF,IAAAzB,WAAA,CAAA+C,GAAA,EAAClD,iBAAA,CAAAwD,IAAI;MACHC,OAAO,EAAExB,KAAK,GAAG,YAAY,GAAG,WAAY;MAC5CI,KAAK,EAAE,CACL;QACEgB,KAAK,EAAEtB,KAAK,CAACY,MAAM,CAACe,SAAS;QAC7BC,UAAU,EAAE/B,UAAU,GAAG,KAAK,GAAG;MACnC,CAAC,CACD;MAAAqB,QAAA,EAEDtB;IAAK,CACF,CAAC;EAAA,CACS,CAAC;AAEvB,CACF,CAAC;AAED,MAAMW,MAAM,GAAGsB,uBAAU,CAACC,MAAM,CAAC;EAC/BtB,SAAS,EAAE;IACTuB,aAAa,EAAE,KAAK;IACpBC,UAAU,EAAE,QAAQ;IACpBC,WAAW,EAAE;EACf;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireOptionsContainer = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _reactNativePaper = require("react-native-paper");
|
|
10
|
+
var _index = require("../../../../theme/index.js");
|
|
11
|
+
var _index2 = require("../../../hooks/index.js");
|
|
12
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
14
|
+
const QuestionnaireOptionsContainer = exports.QuestionnaireOptionsContainer = /*#__PURE__*/React.memo(({
|
|
15
|
+
children,
|
|
16
|
+
value,
|
|
17
|
+
onValueChange,
|
|
18
|
+
style,
|
|
19
|
+
testID
|
|
20
|
+
}) => {
|
|
21
|
+
const theme = (0, _index.useAppTheme)();
|
|
22
|
+
const {
|
|
23
|
+
paged
|
|
24
|
+
} = (0, _index2.useQuestionnaireForm)();
|
|
25
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativePaper.RadioButton.Group, {
|
|
26
|
+
value: value,
|
|
27
|
+
onValueChange: onValueChange,
|
|
28
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
29
|
+
testID: testID,
|
|
30
|
+
style: [{
|
|
31
|
+
gap: paged ? theme.spacing(3) : theme.spacing(2)
|
|
32
|
+
}, style],
|
|
33
|
+
children: children
|
|
34
|
+
})
|
|
35
|
+
});
|
|
36
|
+
});
|
|
37
|
+
//# sourceMappingURL=questionnaire-options-container.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_reactNativePaper","_index","_index2","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","QuestionnaireOptionsContainer","exports","memo","children","value","onValueChange","style","testID","theme","useAppTheme","paged","useQuestionnaireForm","jsx","RadioButton","Group","View","gap","spacing"],"sourceRoot":"../../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/common/questionnaire-options-container.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,iBAAA,GAAAF,OAAA;AAEA,IAAAG,MAAA,GAAAH,OAAA;AACA,IAAAI,OAAA,GAAAJ,OAAA;AAAsD,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAD,wBAAAO,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAT,uBAAA,YAAAA,CAAAO,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAU/C,MAAMkB,6BAA6B,GAAAC,OAAA,CAAAD,6BAAA,gBAAG3B,KAAK,CAAC6B,IAAI,CACrD,CAAC;EACCC,QAAQ;EACRC,KAAK;EACLC,aAAa;EACbC,KAAK;EACLC;AACkC,CAAC,KAAK;EACxC,MAAMC,KAAK,GAAG,IAAAC,kBAAW,EAAC,CAAC;EAC3B,MAAM;IAAEC;EAAM,CAAC,GAAG,IAAAC,4BAAoB,EAAC,CAAC;EAExC,oBACE,IAAA/B,WAAA,CAAAgC,GAAA,EAACnC,iBAAA,CAAAoC,WAAW,CAACC,KAAK;IAACV,KAAK,EAAEA,KAAM;IAACC,aAAa,EAAEA,aAAc;IAAAF,QAAA,eAC5D,IAAAvB,WAAA,CAAAgC,GAAA,EAACpC,YAAA,CAAAuC,IAAI;MACHR,MAAM,EAAEA,MAAO;MACfD,KAAK,EAAE,CAAC;QAAEU,GAAG,EAAEN,KAAK,GAAGF,KAAK,CAACS,OAAO,CAAC,CAAC,CAAC,GAAGT,KAAK,CAACS,OAAO,CAAC,CAAC;MAAE,CAAC,EAAEX,KAAK,CAAE;MAAAH,QAAA,EAEpEA;IAAQ,CACL;EAAC,CACU,CAAC;AAExB,CACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireBooleanField = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactI18next = require("react-i18next");
|
|
9
|
+
var _index = require("./common/index.js");
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
12
|
+
const options = [{
|
|
13
|
+
value: true,
|
|
14
|
+
label: "common.yes"
|
|
15
|
+
}, {
|
|
16
|
+
value: false,
|
|
17
|
+
label: "common.no"
|
|
18
|
+
}];
|
|
19
|
+
const QuestionnaireBooleanField = exports.QuestionnaireBooleanField = /*#__PURE__*/React.memo(({
|
|
20
|
+
item,
|
|
21
|
+
value = null,
|
|
22
|
+
onChange,
|
|
23
|
+
testID
|
|
24
|
+
}) => {
|
|
25
|
+
const {
|
|
26
|
+
t
|
|
27
|
+
} = (0, _reactI18next.useTranslation)();
|
|
28
|
+
const handleValueChange = React.useCallback(stringValue => {
|
|
29
|
+
onChange(stringValue === "true");
|
|
30
|
+
}, [onChange]);
|
|
31
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.QuestionnaireFieldWrapper, {
|
|
32
|
+
testID: testID,
|
|
33
|
+
item: item,
|
|
34
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.QuestionnaireOptionsContainer, {
|
|
35
|
+
value: value === null ? "" : value ? "true" : "false",
|
|
36
|
+
onValueChange: handleValueChange,
|
|
37
|
+
testID: `${testID}-options`,
|
|
38
|
+
children: options.map(option => /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.QuestionnaireOptionButton, {
|
|
39
|
+
value: option.value.toString(),
|
|
40
|
+
label: t(option.label),
|
|
41
|
+
isSelected: value === option.value,
|
|
42
|
+
onPress: () => onChange(option.value),
|
|
43
|
+
testID: `${testID}-option-${option.value}`
|
|
44
|
+
}, option.label))
|
|
45
|
+
})
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
//# sourceMappingURL=questionnaire-boolean-field.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_reactI18next","_index","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","options","value","label","QuestionnaireBooleanField","exports","memo","item","onChange","testID","useTranslation","handleValueChange","useCallback","stringValue","jsx","QuestionnaireFieldWrapper","children","QuestionnaireOptionsContainer","onValueChange","map","option","QuestionnaireOptionButton","toString","isSelected","onPress"],"sourceRoot":"../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/questionnaire-boolean-field.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,aAAA,GAAAD,OAAA;AAIA,IAAAE,MAAA,GAAAF,OAAA;AAIkB,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,wBAAAK,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAP,uBAAA,YAAAA,CAAAK,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AASlB,MAAMkB,OAAO,GAAG,CACd;EAAEC,KAAK,EAAE,IAAI;EAAEC,KAAK,EAAE;AAAa,CAAC,EACpC;EAAED,KAAK,EAAE,KAAK;EAAEC,KAAK,EAAE;AAAY,CAAC,CACrC;AAEM,MAAMC,yBAAyB,GAAAC,OAAA,CAAAD,yBAAA,gBAAG5B,KAAK,CAAC8B,IAAI,CACjD,CAAC;EACCC,IAAI;EACJL,KAAK,GAAG,IAAI;EACZM,QAAQ;EACRC;AAC8B,CAAC,KAAK;EACpC,MAAM;IAAE1B;EAAE,CAAC,GAAG,IAAA2B,4BAAc,EAAC,CAAC;EAE9B,MAAMC,iBAAiB,GAAGnC,KAAK,CAACoC,WAAW,CACxCC,WAAmB,IAAK;IACvBL,QAAQ,CAACK,WAAW,KAAK,MAAM,CAAC;EAClC,CAAC,EACD,CAACL,QAAQ,CACX,CAAC;EAED,oBACE,IAAA3B,WAAA,CAAAiC,GAAA,EAAClC,MAAA,CAAAmC,yBAAyB;IAACN,MAAM,EAAEA,MAAO;IAACF,IAAI,EAAEA,IAAK;IAAAS,QAAA,eACpD,IAAAnC,WAAA,CAAAiC,GAAA,EAAClC,MAAA,CAAAqC,6BAA6B;MAC5Bf,KAAK,EAAEA,KAAK,KAAK,IAAI,GAAG,EAAE,GAAGA,KAAK,GAAG,MAAM,GAAG,OAAQ;MACtDgB,aAAa,EAAEP,iBAAkB;MACjCF,MAAM,EAAE,GAAGA,MAAM,UAAW;MAAAO,QAAA,EAE3Bf,OAAO,CAACkB,GAAG,CAAEC,MAAM,iBAClB,IAAAvC,WAAA,CAAAiC,GAAA,EAAClC,MAAA,CAAAyC,yBAAyB;QAExBnB,KAAK,EAAEkB,MAAM,CAAClB,KAAK,CAACoB,QAAQ,CAAC,CAAE;QAC/BnB,KAAK,EAAEpB,CAAC,CAACqC,MAAM,CAACjB,KAAK,CAAE;QACvBoB,UAAU,EAAErB,KAAK,KAAKkB,MAAM,CAAClB,KAAM;QACnCsB,OAAO,EAAEA,CAAA,KAAMhB,QAAQ,CAACY,MAAM,CAAClB,KAAK,CAAE;QACtCO,MAAM,EAAE,GAAGA,MAAM,WAAWW,MAAM,CAAClB,KAAK;MAAG,GALtCkB,MAAM,CAACjB,KAMb,CACF;IAAC,CAC2B;EAAC,CACP,CAAC;AAEhC,CACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireChoiceField = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _getOptionText = require("../../utils/fields/get-option-text.js");
|
|
9
|
+
var _getOptionValue = require("../../utils/fields/get-option-value.js");
|
|
10
|
+
var _index = require("./common/index.js");
|
|
11
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
13
|
+
const MemoizedOptionButton = /*#__PURE__*/React.memo(({
|
|
14
|
+
option,
|
|
15
|
+
index,
|
|
16
|
+
value,
|
|
17
|
+
onChange,
|
|
18
|
+
testID
|
|
19
|
+
}) => {
|
|
20
|
+
const optionValue = React.useMemo(() => (0, _getOptionValue.getOptionValue)(option), [option]);
|
|
21
|
+
const optionText = React.useMemo(() => (0, _getOptionText.getOptionText)(option), [option]);
|
|
22
|
+
const isSelected = React.useMemo(() => value === optionValue, [value, optionValue]);
|
|
23
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.QuestionnaireOptionButton, {
|
|
24
|
+
value: optionValue,
|
|
25
|
+
label: optionText,
|
|
26
|
+
isSelected: isSelected,
|
|
27
|
+
onPress: () => onChange(optionValue),
|
|
28
|
+
testID: `${testID}-option-${index}`
|
|
29
|
+
}, index);
|
|
30
|
+
});
|
|
31
|
+
const QuestionnaireChoiceField = exports.QuestionnaireChoiceField = /*#__PURE__*/React.memo(({
|
|
32
|
+
item,
|
|
33
|
+
value,
|
|
34
|
+
onChange,
|
|
35
|
+
testID
|
|
36
|
+
}) => {
|
|
37
|
+
if (!item.answerOption || item.answerOption.length === 0) {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
const options = React.useMemo(() => item.answerOption || [], [item.answerOption]);
|
|
41
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.QuestionnaireFieldWrapper, {
|
|
42
|
+
testID: testID,
|
|
43
|
+
item: item,
|
|
44
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.QuestionnaireOptionsContainer, {
|
|
45
|
+
value: value || "",
|
|
46
|
+
onValueChange: onChange,
|
|
47
|
+
testID: `${testID}-options`,
|
|
48
|
+
children: options.map((option, index) => {
|
|
49
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MemoizedOptionButton, {
|
|
50
|
+
option: option,
|
|
51
|
+
index: index,
|
|
52
|
+
onChange: onChange,
|
|
53
|
+
testID: testID,
|
|
54
|
+
value: value || ""
|
|
55
|
+
}, index);
|
|
56
|
+
})
|
|
57
|
+
})
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
//# sourceMappingURL=questionnaire-choice-field.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_getOptionText","_getOptionValue","_index","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","MemoizedOptionButton","memo","option","index","value","onChange","testID","optionValue","useMemo","getOptionValue","optionText","getOptionText","isSelected","jsx","QuestionnaireOptionButton","label","onPress","QuestionnaireChoiceField","exports","item","answerOption","length","options","QuestionnaireFieldWrapper","children","QuestionnaireOptionsContainer","onValueChange","map"],"sourceRoot":"../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/questionnaire-choice-field.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AAMA,IAAAC,cAAA,GAAAD,OAAA;AACA,IAAAE,eAAA,GAAAF,OAAA;AAEA,IAAAG,MAAA,GAAAH,OAAA;AAIkB,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,wBAAAM,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAR,uBAAA,YAAAA,CAAAM,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAiBlB,MAAMkB,oBAAoB,gBAAG1B,KAAK,CAAC2B,IAAI,CACrC,CAAC;EACCC,MAAM;EACNC,KAAK;EACLC,KAAK;EACLC,QAAQ;EACRC;AAC8B,CAAC,KAAK;EACpC,MAAMC,WAAW,GAAGjC,KAAK,CAACkC,OAAO,CAAC,MAAM,IAAAC,8BAAc,EAACP,MAAM,CAAC,EAAE,CAACA,MAAM,CAAC,CAAC;EAEzE,MAAMQ,UAAU,GAAGpC,KAAK,CAACkC,OAAO,CAAC,MAAM,IAAAG,4BAAa,EAACT,MAAM,CAAC,EAAE,CAACA,MAAM,CAAC,CAAC;EAEvE,MAAMU,UAAU,GAAGtC,KAAK,CAACkC,OAAO,CAC9B,MAAMJ,KAAK,KAAKG,WAAW,EAC3B,CAACH,KAAK,EAAEG,WAAW,CACrB,CAAC;EAED,oBACE,IAAA3B,WAAA,CAAAiC,GAAA,EAAClC,MAAA,CAAAmC,yBAAyB;IAExBV,KAAK,EAAEG,WAAY;IACnBQ,KAAK,EAAEL,UAAW;IAClBE,UAAU,EAAEA,UAAW;IACvBI,OAAO,EAAEA,CAAA,KAAMX,QAAQ,CAACE,WAAW,CAAE;IACrCD,MAAM,EAAE,GAAGA,MAAM,WAAWH,KAAK;EAAG,GAL/BA,KAMN,CAAC;AAEN,CACF,CAAC;AAEM,MAAMc,wBAAwB,GAAAC,OAAA,CAAAD,wBAAA,gBAAG3C,KAAK,CAAC2B,IAAI,CAChD,CAAC;EAAEkB,IAAI;EAAEf,KAAK;EAAEC,QAAQ;EAAEC;AAAsC,CAAC,KAAK;EACpE,IAAI,CAACa,IAAI,CAACC,YAAY,IAAID,IAAI,CAACC,YAAY,CAACC,MAAM,KAAK,CAAC,EAAE;IACxD,OAAO,IAAI;EACb;EAEA,MAAMC,OAAO,GAAGhD,KAAK,CAACkC,OAAO,CAC3B,MAAMW,IAAI,CAACC,YAAY,IAAI,EAAE,EAC7B,CAACD,IAAI,CAACC,YAAY,CACpB,CAAC;EAED,oBACE,IAAAxC,WAAA,CAAAiC,GAAA,EAAClC,MAAA,CAAA4C,yBAAyB;IAACjB,MAAM,EAAEA,MAAO;IAACa,IAAI,EAAEA,IAAK;IAAAK,QAAA,eACpD,IAAA5C,WAAA,CAAAiC,GAAA,EAAClC,MAAA,CAAA8C,6BAA6B;MAC5BrB,KAAK,EAAEA,KAAK,IAAI,EAAG;MACnBsB,aAAa,EAAErB,QAAS;MACxBC,MAAM,EAAE,GAAGA,MAAM,UAAW;MAAAkB,QAAA,EAE3BF,OAAO,CAACK,GAAG,CAAC,CAACzB,MAAM,EAAEC,KAAK,KAAK;QAC9B,oBACE,IAAAvB,WAAA,CAAAiC,GAAA,EAACb,oBAAoB;UAEnBE,MAAM,EAAEA,MAAO;UACfC,KAAK,EAAEA,KAAM;UACbE,QAAQ,EAAEA,QAAS;UACnBC,MAAM,EAAEA,MAAO;UACfF,KAAK,EAAEA,KAAK,IAAI;QAAG,GALdD,KAMN,CAAC;MAEN,CAAC;IAAC,CAC2B;EAAC,CACP,CAAC;AAEhC,CACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireDateField = void 0;
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
+
var React = _react;
|
|
9
|
+
var _reactNative = require("react-native");
|
|
10
|
+
var _reactNativeModalDatetimePicker = _interopRequireDefault(require("react-native-modal-datetime-picker"));
|
|
11
|
+
var _reactNativePaper = require("react-native-paper");
|
|
12
|
+
var _index = require("../../../theme/index.js");
|
|
13
|
+
var _index2 = require("../../hooks/index.js");
|
|
14
|
+
var _index3 = require("./common/index.js");
|
|
15
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
16
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
17
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
18
|
+
const QuestionnaireDateField = exports.QuestionnaireDateField = /*#__PURE__*/React.memo(({
|
|
19
|
+
item,
|
|
20
|
+
value,
|
|
21
|
+
onChange,
|
|
22
|
+
testID
|
|
23
|
+
}) => {
|
|
24
|
+
const theme = (0, _index.useAppTheme)();
|
|
25
|
+
const [isPickerVisible, setPickerVisible] = (0, _react.useState)(false);
|
|
26
|
+
const {
|
|
27
|
+
paged
|
|
28
|
+
} = (0, _index2.useQuestionnaireForm)();
|
|
29
|
+
const showPicker = React.useCallback(() => setPickerVisible(true), []);
|
|
30
|
+
const hidePicker = React.useCallback(() => setPickerVisible(false), []);
|
|
31
|
+
const handleConfirm = React.useCallback(selectedDate => {
|
|
32
|
+
hidePicker();
|
|
33
|
+
const actionMap = {
|
|
34
|
+
dateTime: () => {
|
|
35
|
+
const dateTimeString = selectedDate.toISOString();
|
|
36
|
+
if (dateTimeString) {
|
|
37
|
+
onChange(dateTimeString);
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
date: () => {
|
|
41
|
+
const dateString = selectedDate.toISOString().split("T")[0];
|
|
42
|
+
if (dateString) {
|
|
43
|
+
onChange(dateString);
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
time: () => {
|
|
47
|
+
const timeString = selectedDate.toLocaleTimeString([], {
|
|
48
|
+
hour: "2-digit",
|
|
49
|
+
minute: "2-digit"
|
|
50
|
+
});
|
|
51
|
+
if (timeString) {
|
|
52
|
+
onChange(timeString);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
actionMap[item.type]();
|
|
57
|
+
}, [hidePicker, onChange, item.type]);
|
|
58
|
+
const formattedDate = React.useMemo(() => {
|
|
59
|
+
if (!value) {
|
|
60
|
+
return "Select a date";
|
|
61
|
+
}
|
|
62
|
+
const dateObj = new Date(value);
|
|
63
|
+
const actionMap = {
|
|
64
|
+
dateTime: () => {
|
|
65
|
+
const dateFormatted = dateObj.toLocaleDateString();
|
|
66
|
+
const timeFormatted = dateObj.toLocaleTimeString([], {
|
|
67
|
+
hour: "2-digit",
|
|
68
|
+
minute: "2-digit"
|
|
69
|
+
});
|
|
70
|
+
return `${dateFormatted} ${timeFormatted}`;
|
|
71
|
+
},
|
|
72
|
+
date: () => {
|
|
73
|
+
return dateObj.toLocaleDateString();
|
|
74
|
+
},
|
|
75
|
+
time: () => {
|
|
76
|
+
return value;
|
|
77
|
+
}
|
|
78
|
+
};
|
|
79
|
+
return actionMap[item.type]();
|
|
80
|
+
}, [value, item.type]);
|
|
81
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_index3.QuestionnaireFieldWrapper, {
|
|
82
|
+
testID: testID,
|
|
83
|
+
item: item,
|
|
84
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
85
|
+
onPress: showPicker,
|
|
86
|
+
style: [styles.datePickerContainer, {
|
|
87
|
+
borderColor: theme.colors.outline,
|
|
88
|
+
backgroundColor: theme.colors.surface,
|
|
89
|
+
borderRadius: theme.borderRadius(2),
|
|
90
|
+
padding: paged ? theme.spacing(4) : theme.spacing(2)
|
|
91
|
+
}],
|
|
92
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativePaper.Text, {
|
|
93
|
+
variant: paged ? "bodyMedium" : "bodySmall",
|
|
94
|
+
style: [{
|
|
95
|
+
color: theme.colors.onSurface
|
|
96
|
+
}],
|
|
97
|
+
children: formattedDate
|
|
98
|
+
})
|
|
99
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeModalDatetimePicker.default, {
|
|
100
|
+
isVisible: isPickerVisible,
|
|
101
|
+
mode: item.type.toLowerCase(),
|
|
102
|
+
onConfirm: handleConfirm,
|
|
103
|
+
onCancel: hidePicker,
|
|
104
|
+
date: value ? new Date(value) : new Date(),
|
|
105
|
+
testID: `${testID}-picker`,
|
|
106
|
+
display: "inline"
|
|
107
|
+
})]
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
const styles = _reactNative.StyleSheet.create({
|
|
111
|
+
datePickerContainer: {
|
|
112
|
+
borderWidth: 1,
|
|
113
|
+
alignItems: "center"
|
|
114
|
+
}
|
|
115
|
+
});
|
|
116
|
+
//# sourceMappingURL=questionnaire-date-field.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","React","_reactNative","_reactNativeModalDatetimePicker","_interopRequireDefault","_reactNativePaper","_index","_index2","_index3","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","QuestionnaireDateField","exports","memo","item","value","onChange","testID","theme","useAppTheme","isPickerVisible","setPickerVisible","useState","paged","useQuestionnaireForm","showPicker","useCallback","hidePicker","handleConfirm","selectedDate","actionMap","dateTime","dateTimeString","toISOString","date","dateString","split","time","timeString","toLocaleTimeString","hour","minute","type","formattedDate","useMemo","dateObj","Date","dateFormatted","toLocaleDateString","timeFormatted","jsxs","QuestionnaireFieldWrapper","children","jsx","TouchableOpacity","onPress","style","styles","datePickerContainer","borderColor","colors","outline","backgroundColor","surface","borderRadius","padding","spacing","Text","variant","color","onSurface","isVisible","mode","toLowerCase","onConfirm","onCancel","display","StyleSheet","create","borderWidth","alignItems"],"sourceRoot":"../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/questionnaire-date-field.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AAA+B,IAAAC,KAAA,GAAAH,MAAA;AAE/B,IAAAI,YAAA,GAAAF,OAAA;AACA,IAAAG,+BAAA,GAAAC,sBAAA,CAAAJ,OAAA;AACA,IAAAK,iBAAA,GAAAL,OAAA;AAEA,IAAAM,MAAA,GAAAN,OAAA;AACA,IAAAO,OAAA,GAAAP,OAAA;AAIA,IAAAQ,OAAA,GAAAR,OAAA;AAAqD,IAAAS,WAAA,GAAAT,OAAA;AAAA,SAAAI,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAX,wBAAAW,CAAA,EAAAG,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAf,uBAAA,YAAAA,CAAAW,CAAA,EAAAG,CAAA,SAAAA,CAAA,IAAAH,CAAA,IAAAA,CAAA,CAAAC,UAAA,SAAAD,CAAA,MAAAO,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAR,OAAA,EAAAF,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAS,CAAA,MAAAF,CAAA,GAAAJ,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAE,CAAA,CAAAI,GAAA,CAAAX,CAAA,UAAAO,CAAA,CAAAK,GAAA,CAAAZ,CAAA,GAAAO,CAAA,CAAAM,GAAA,CAAAb,CAAA,EAAAS,CAAA,gBAAAN,CAAA,IAAAH,CAAA,gBAAAG,CAAA,OAAAW,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAG,CAAA,OAAAK,CAAA,IAAAD,CAAA,GAAAS,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAG,CAAA,OAAAK,CAAA,CAAAI,GAAA,IAAAJ,CAAA,CAAAK,GAAA,IAAAN,CAAA,CAAAE,CAAA,EAAAN,CAAA,EAAAK,CAAA,IAAAC,CAAA,CAAAN,CAAA,IAAAH,CAAA,CAAAG,CAAA,WAAAM,CAAA,KAAAT,CAAA,EAAAG,CAAA;AAS9C,MAAMgB,sBAAsB,GAAAC,OAAA,CAAAD,sBAAA,gBAAG5B,KAAK,CAAC8B,IAAI,CAC9C,CAAC;EAAEC,IAAI;EAAEC,KAAK;EAAEC,QAAQ;EAAEC;AAAoC,CAAC,KAAK;EAClE,MAAMC,KAAK,GAAG,IAAAC,kBAAW,EAAC,CAAC;EAC3B,MAAM,CAACC,eAAe,EAAEC,gBAAgB,CAAC,GAAG,IAAAC,eAAQ,EAAC,KAAK,CAAC;EAC3D,MAAM;IAAEC;EAAM,CAAC,GAAG,IAAAC,4BAAoB,EAAC,CAAC;EAExC,MAAMC,UAAU,GAAG1C,KAAK,CAAC2C,WAAW,CAAC,MAAML,gBAAgB,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;EACtE,MAAMM,UAAU,GAAG5C,KAAK,CAAC2C,WAAW,CAAC,MAAML,gBAAgB,CAAC,KAAK,CAAC,EAAE,EAAE,CAAC;EAEvE,MAAMO,aAAa,GAAG7C,KAAK,CAAC2C,WAAW,CACpCG,YAAkB,IAAK;IACtBF,UAAU,CAAC,CAAC;IAEZ,MAAMG,SAA2C,GAAG;MAClDC,QAAQ,EAAEA,CAAA,KAAM;QACd,MAAMC,cAAc,GAAGH,YAAY,CAACI,WAAW,CAAC,CAAC;QAEjD,IAAID,cAAc,EAAE;UAClBhB,QAAQ,CAACgB,cAAc,CAAC;QAC1B;MACF,CAAC;MACDE,IAAI,EAAEA,CAAA,KAAM;QACV,MAAMC,UAAU,GAAGN,YAAY,CAACI,WAAW,CAAC,CAAC,CAACG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAE3D,IAAID,UAAU,EAAE;UACdnB,QAAQ,CAACmB,UAAU,CAAC;QACtB;MACF,CAAC;MACDE,IAAI,EAAEA,CAAA,KAAM;QACV,MAAMC,UAAU,GAAGT,YAAY,CAACU,kBAAkB,CAAC,EAAE,EAAE;UACrDC,IAAI,EAAE,SAAS;UACfC,MAAM,EAAE;QACV,CAAC,CAAC;QAEF,IAAIH,UAAU,EAAE;UACdtB,QAAQ,CAACsB,UAAU,CAAC;QACtB;MACF;IACF,CAAC;IAEDR,SAAS,CAAChB,IAAI,CAAC4B,IAAI,CAAC,CAAC,CAAC;EACxB,CAAC,EACD,CAACf,UAAU,EAAEX,QAAQ,EAAEF,IAAI,CAAC4B,IAAI,CAClC,CAAC;EAED,MAAMC,aAAa,GAAG5D,KAAK,CAAC6D,OAAO,CAAC,MAAM;IACxC,IAAI,CAAC7B,KAAK,EAAE;MACV,OAAO,eAAe;IACxB;IAEA,MAAM8B,OAAO,GAAG,IAAIC,IAAI,CAAC/B,KAAK,CAAC;IAE/B,MAAMe,SAA6C,GAAG;MACpDC,QAAQ,EAAEA,CAAA,KAAM;QACd,MAAMgB,aAAa,GAAGF,OAAO,CAACG,kBAAkB,CAAC,CAAC;QAElD,MAAMC,aAAa,GAAGJ,OAAO,CAACN,kBAAkB,CAAC,EAAE,EAAE;UACnDC,IAAI,EAAE,SAAS;UACfC,MAAM,EAAE;QACV,CAAC,CAAC;QAEF,OAAO,GAAGM,aAAa,IAAIE,aAAa,EAAE;MAC5C,CAAC;MACDf,IAAI,EAAEA,CAAA,KAAM;QACV,OAAOW,OAAO,CAACG,kBAAkB,CAAC,CAAC;MACrC,CAAC;MACDX,IAAI,EAAEA,CAAA,KAAM;QACV,OAAOtB,KAAK;MACd;IACF,CAAC;IAED,OAAOe,SAAS,CAAChB,IAAI,CAAC4B,IAAI,CAAC,CAAC,CAAC;EAC/B,CAAC,EAAE,CAAC3B,KAAK,EAAED,IAAI,CAAC4B,IAAI,CAAC,CAAC;EAEtB,oBACE,IAAAnD,WAAA,CAAA2D,IAAA,EAAC5D,OAAA,CAAA6D,yBAAyB;IAAClC,MAAM,EAAEA,MAAO;IAACH,IAAI,EAAEA,IAAK;IAAAsC,QAAA,gBACpD,IAAA7D,WAAA,CAAA8D,GAAA,EAACrE,YAAA,CAAAsE,gBAAgB;MACfC,OAAO,EAAE9B,UAAW;MACpB+B,KAAK,EAAE,CACLC,MAAM,CAACC,mBAAmB,EAC1B;QACEC,WAAW,EAAEzC,KAAK,CAAC0C,MAAM,CAACC,OAAO;QACjCC,eAAe,EAAE5C,KAAK,CAAC0C,MAAM,CAACG,OAAO;QACrCC,YAAY,EAAE9C,KAAK,CAAC8C,YAAY,CAAC,CAAC,CAAC;QACnCC,OAAO,EAAE1C,KAAK,GAAGL,KAAK,CAACgD,OAAO,CAAC,CAAC,CAAC,GAAGhD,KAAK,CAACgD,OAAO,CAAC,CAAC;MACrD,CAAC,CACD;MAAAd,QAAA,eAEF,IAAA7D,WAAA,CAAA8D,GAAA,EAAClE,iBAAA,CAAAgF,IAAI;QACHC,OAAO,EAAE7C,KAAK,GAAG,YAAY,GAAG,WAAY;QAC5CiC,KAAK,EAAE,CAAC;UAAEa,KAAK,EAAEnD,KAAK,CAAC0C,MAAM,CAACU;QAAU,CAAC,CAAE;QAAAlB,QAAA,EAE1CT;MAAa,CACV;IAAC,CACS,CAAC,eAEnB,IAAApD,WAAA,CAAA8D,GAAA,EAACpE,+BAAA,CAAAS,OAAmB;MAClB6E,SAAS,EAAEnD,eAAgB;MAC3BoD,IAAI,EAAE1D,IAAI,CAAC4B,IAAI,CAAC+B,WAAW,CAAC,CAAkC;MAC9DC,SAAS,EAAE9C,aAAc;MACzB+C,QAAQ,EAAEhD,UAAW;MACrBO,IAAI,EAAEnB,KAAK,GAAG,IAAI+B,IAAI,CAAC/B,KAAK,CAAC,GAAG,IAAI+B,IAAI,CAAC,CAAE;MAC3C7B,MAAM,EAAE,GAAGA,MAAM,SAAU;MAC3B2D,OAAO,EAAC;IAAQ,CACjB,CAAC;EAAA,CACuB,CAAC;AAEhC,CACF,CAAC;AAED,MAAMnB,MAAM,GAAGoB,uBAAU,CAACC,MAAM,CAAC;EAC/BpB,mBAAmB,EAAE;IACnBqB,WAAW,EAAE,CAAC;IACdC,UAAU,EAAE;EACd;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireItemRenderer = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _getKeyboardType = require("../../utils/fields/get-keyboard-type.js");
|
|
9
|
+
var _questionnaireBooleanField = require("./questionnaire-boolean-field.js");
|
|
10
|
+
var _questionnaireChoiceField = require("./questionnaire-choice-field.js");
|
|
11
|
+
var _questionnaireDateField = require("./questionnaire-date-field.js");
|
|
12
|
+
var _questionnaireTextField = require("./questionnaire-text-field.js");
|
|
13
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
15
|
+
const QuestionnaireItemRenderer = exports.QuestionnaireItemRenderer = /*#__PURE__*/React.memo(({
|
|
16
|
+
item,
|
|
17
|
+
value,
|
|
18
|
+
onChange,
|
|
19
|
+
testID
|
|
20
|
+
}) => {
|
|
21
|
+
const extendedItem = item;
|
|
22
|
+
const keyboardType = React.useMemo(() => (0, _getKeyboardType.getKeyboardType)(item.type), [item.type]);
|
|
23
|
+
const handleChange = React.useCallback(val => {
|
|
24
|
+
onChange(val);
|
|
25
|
+
}, [onChange]);
|
|
26
|
+
switch (item.type) {
|
|
27
|
+
case "boolean":
|
|
28
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_questionnaireBooleanField.QuestionnaireBooleanField, {
|
|
29
|
+
testID: testID,
|
|
30
|
+
item: extendedItem,
|
|
31
|
+
value: value,
|
|
32
|
+
onChange: handleChange
|
|
33
|
+
});
|
|
34
|
+
case "choice":
|
|
35
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_questionnaireChoiceField.QuestionnaireChoiceField, {
|
|
36
|
+
testID: testID,
|
|
37
|
+
item: extendedItem,
|
|
38
|
+
value: value,
|
|
39
|
+
onChange: handleChange
|
|
40
|
+
});
|
|
41
|
+
case "date":
|
|
42
|
+
case "time":
|
|
43
|
+
case "dateTime":
|
|
44
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_questionnaireDateField.QuestionnaireDateField, {
|
|
45
|
+
testID: testID,
|
|
46
|
+
item: extendedItem,
|
|
47
|
+
value: value,
|
|
48
|
+
onChange: handleChange
|
|
49
|
+
});
|
|
50
|
+
case "decimal":
|
|
51
|
+
case "integer":
|
|
52
|
+
case "string":
|
|
53
|
+
case "text":
|
|
54
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_questionnaireTextField.QuestionnaireTextField, {
|
|
55
|
+
testID: testID,
|
|
56
|
+
item: extendedItem,
|
|
57
|
+
value: value,
|
|
58
|
+
onChange: handleChange,
|
|
59
|
+
keyboardType: keyboardType
|
|
60
|
+
});
|
|
61
|
+
default:
|
|
62
|
+
return null;
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
//# sourceMappingURL=questionnaire-item-renderer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_getKeyboardType","_questionnaireBooleanField","_questionnaireChoiceField","_questionnaireDateField","_questionnaireTextField","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","QuestionnaireItemRenderer","exports","memo","item","value","onChange","testID","extendedItem","keyboardType","useMemo","getKeyboardType","type","handleChange","useCallback","val","jsx","QuestionnaireBooleanField","QuestionnaireChoiceField","QuestionnaireDateField","QuestionnaireTextField"],"sourceRoot":"../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/questionnaire-item-renderer.tsx"],"mappings":";;;;;;AACA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AAIA,IAAAC,gBAAA,GAAAD,OAAA;AAEA,IAAAE,0BAAA,GAAAF,OAAA;AACA,IAAAG,yBAAA,GAAAH,OAAA;AACA,IAAAI,uBAAA,GAAAJ,OAAA;AACA,IAAAK,uBAAA,GAAAL,OAAA;AAAoE,IAAAM,WAAA,GAAAN,OAAA;AAAA,SAAAD,wBAAAQ,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAV,uBAAA,YAAAA,CAAAQ,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAS7D,MAAMkB,yBAAyB,GAAAC,OAAA,CAAAD,yBAAA,gBAAG5B,KAAK,CAAC8B,IAAI,CACjD,CAAC;EAAEC,IAAI;EAAEC,KAAK;EAAEC,QAAQ;EAAEC;AAAuC,CAAC,KAAK;EACrE,MAAMC,YAAY,GAAGJ,IAAiC;EAEtD,MAAMK,YAAY,GAAGpC,KAAK,CAACqC,OAAO,CAChC,MAAM,IAAAC,gCAAe,EAACP,IAAI,CAACQ,IAAI,CAAC,EAChC,CAACR,IAAI,CAACQ,IAAI,CACZ,CAAC;EAED,MAAMC,YAAY,GAAGxC,KAAK,CAACyC,WAAW,CACnCC,GAAqB,IAAK;IACzBT,QAAQ,CAACS,GAAG,CAAC;EACf,CAAC,EACD,CAACT,QAAQ,CACX,CAAC;EAED,QAAQF,IAAI,CAACQ,IAAI;IACf,KAAK,SAAS;MACZ,oBACE,IAAA/B,WAAA,CAAAmC,GAAA,EAACvC,0BAAA,CAAAwC,yBAAyB;QACxBV,MAAM,EAAEA,MAAO;QACfH,IAAI,EAAEI,YAAa;QACnBH,KAAK,EAAEA,KAAwB;QAC/BC,QAAQ,EAAEO;MAAa,CACxB,CAAC;IAEN,KAAK,QAAQ;MACX,oBACE,IAAAhC,WAAA,CAAAmC,GAAA,EAACtC,yBAAA,CAAAwC,wBAAwB;QACvBX,MAAM,EAAEA,MAAO;QACfH,IAAI,EAAEI,YAAa;QACnBH,KAAK,EAAEA,KAAgB;QACvBC,QAAQ,EAAEO;MAAa,CACxB,CAAC;IAEN,KAAK,MAAM;IACX,KAAK,MAAM;IACX,KAAK,UAAU;MACb,oBACE,IAAAhC,WAAA,CAAAmC,GAAA,EAACrC,uBAAA,CAAAwC,sBAAsB;QACrBZ,MAAM,EAAEA,MAAO;QACfH,IAAI,EACFI,YACD;QACDH,KAAK,EAAEA,KAAgB;QACvBC,QAAQ,EAAEO;MAAa,CACxB,CAAC;IAEN,KAAK,SAAS;IACd,KAAK,SAAS;IACd,KAAK,QAAQ;IACb,KAAK,MAAM;MACT,oBACE,IAAAhC,WAAA,CAAAmC,GAAA,EAACpC,uBAAA,CAAAwC,sBAAsB;QACrBb,MAAM,EAAEA,MAAO;QACfH,IAAI,EAAEI,YAAa;QACnBH,KAAK,EAAEA,KAAgB;QACvBC,QAAQ,EAAEO,YAAa;QACvBJ,YAAY,EAAEA;MAAa,CAC5B,CAAC;IAEN;MACE,OAAO,IAAI;EACf;AACF,CACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QuestionnaireTextField = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _index = require("../../../theme/index.js");
|
|
10
|
+
var _index2 = require("./common/index.js");
|
|
11
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
13
|
+
const QuestionnaireTextField = ({
|
|
14
|
+
item,
|
|
15
|
+
value,
|
|
16
|
+
onChange,
|
|
17
|
+
testID,
|
|
18
|
+
keyboardType = "default"
|
|
19
|
+
}) => {
|
|
20
|
+
const theme = (0, _index.useAppTheme)();
|
|
21
|
+
const handleChangeText = React.useCallback(text => {
|
|
22
|
+
if (item.type === "decimal") {
|
|
23
|
+
if (text === "" || /^-?\d*\.?\d*$/.test(text)) {
|
|
24
|
+
onChange(text);
|
|
25
|
+
}
|
|
26
|
+
} else if (item.type === "integer") {
|
|
27
|
+
if (text === "" || /^-?\d*$/.test(text)) {
|
|
28
|
+
onChange(text);
|
|
29
|
+
}
|
|
30
|
+
} else {
|
|
31
|
+
onChange(text);
|
|
32
|
+
}
|
|
33
|
+
}, [item.type, onChange]);
|
|
34
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.QuestionnaireFieldWrapper, {
|
|
35
|
+
testID: testID,
|
|
36
|
+
item: item,
|
|
37
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TextInput, {
|
|
38
|
+
value: value || "",
|
|
39
|
+
onChangeText: handleChangeText,
|
|
40
|
+
placeholder: item.placeholder,
|
|
41
|
+
keyboardType: keyboardType,
|
|
42
|
+
style: [styles.input, {
|
|
43
|
+
borderColor: theme.colors.outline,
|
|
44
|
+
backgroundColor: theme.colors.surface,
|
|
45
|
+
color: theme.colors.onSurface,
|
|
46
|
+
borderRadius: theme.borderRadius(2),
|
|
47
|
+
padding: theme.spacing(2)
|
|
48
|
+
}]
|
|
49
|
+
})
|
|
50
|
+
});
|
|
51
|
+
};
|
|
52
|
+
exports.QuestionnaireTextField = QuestionnaireTextField;
|
|
53
|
+
const styles = _reactNative.StyleSheet.create({
|
|
54
|
+
input: {
|
|
55
|
+
fontSize: 16,
|
|
56
|
+
borderWidth: 1
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
//# sourceMappingURL=questionnaire-text-field.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_index","_index2","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","QuestionnaireTextField","item","value","onChange","testID","keyboardType","theme","useAppTheme","handleChangeText","useCallback","text","type","test","jsx","QuestionnaireFieldWrapper","children","TextInput","onChangeText","placeholder","style","styles","input","borderColor","colors","outline","backgroundColor","surface","color","onSurface","borderRadius","padding","spacing","exports","StyleSheet","create","fontSize","borderWidth"],"sourceRoot":"../../../../../../src","sources":["modules/questionnaire-response-form/components/fields/questionnaire-text-field.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAEA,IAAAE,MAAA,GAAAF,OAAA;AAGA,IAAAG,OAAA,GAAAH,OAAA;AAAqD,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,wBAAAM,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAR,uBAAA,YAAAA,CAAAM,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAU9C,MAAMkB,sBAAsB,GAAGA,CAAC;EACrCC,IAAI;EACJC,KAAK;EACLC,QAAQ;EACRC,MAAM;EACNC,YAAY,GAAG;AACY,CAAC,KAAK;EACjC,MAAMC,KAAK,GAAG,IAAAC,kBAAW,EAAC,CAAC;EAE3B,MAAMC,gBAAgB,GAAGlC,KAAK,CAACmC,WAAW,CACvCC,IAAY,IAAK;IAChB,IAAIT,IAAI,CAACU,IAAI,KAAK,SAAS,EAAE;MAC3B,IAAID,IAAI,KAAK,EAAE,IAAI,eAAe,CAACE,IAAI,CAACF,IAAI,CAAC,EAAE;QAC7CP,QAAQ,CAACO,IAAI,CAAC;MAChB;IACF,CAAC,MAAM,IAAIT,IAAI,CAACU,IAAI,KAAK,SAAS,EAAE;MAClC,IAAID,IAAI,KAAK,EAAE,IAAI,SAAS,CAACE,IAAI,CAACF,IAAI,CAAC,EAAE;QACvCP,QAAQ,CAACO,IAAI,CAAC;MAChB;IACF,CAAC,MAAM;MACLP,QAAQ,CAACO,IAAI,CAAC;IAChB;EACF,CAAC,EACD,CAACT,IAAI,CAACU,IAAI,EAAER,QAAQ,CACtB,CAAC;EAED,oBACE,IAAAvB,WAAA,CAAAiC,GAAA,EAAClC,OAAA,CAAAmC,yBAAyB;IAACV,MAAM,EAAEA,MAAO;IAACH,IAAI,EAAEA,IAAK;IAAAc,QAAA,eACpD,IAAAnC,WAAA,CAAAiC,GAAA,EAACpC,YAAA,CAAAuC,SAAS;MACRd,KAAK,EAAEA,KAAK,IAAI,EAAG;MACnBe,YAAY,EAAET,gBAAiB;MAC/BU,WAAW,EAAEjB,IAAI,CAACiB,WAAY;MAC9Bb,YAAY,EAAEA,YAAa;MAC3Bc,KAAK,EAAE,CACLC,MAAM,CAACC,KAAK,EACZ;QACEC,WAAW,EAAEhB,KAAK,CAACiB,MAAM,CAACC,OAAO;QACjCC,eAAe,EAAEnB,KAAK,CAACiB,MAAM,CAACG,OAAO;QACrCC,KAAK,EAAErB,KAAK,CAACiB,MAAM,CAACK,SAAS;QAC7BC,YAAY,EAAEvB,KAAK,CAACuB,YAAY,CAAC,CAAC,CAAC;QACnCC,OAAO,EAAExB,KAAK,CAACyB,OAAO,CAAC,CAAC;MAC1B,CAAC;IACD,CACH;EAAC,CACuB,CAAC;AAEhC,CAAC;AAACC,OAAA,CAAAhC,sBAAA,GAAAA,sBAAA;AAEF,MAAMoB,MAAM,GAAGa,uBAAU,CAACC,MAAM,CAAC;EAC/Bb,KAAK,EAAE;IACLc,QAAQ,EAAE,EAAE;IACZC,WAAW,EAAE;EACf;AACF,CAAC,CAAC","ignoreList":[]}
|