@beinformed/ui 1.59.21 → 1.59.23
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/CHANGELOG.md +14 -0
- package/esm/hooks/useI18n.d.ts +13 -0
- package/esm/hooks/useModelCatalog.d.ts +32 -0
- package/esm/i18n/Locales.d.ts +59 -0
- package/esm/models/actions/ActionModel.d.ts +82 -0
- package/esm/models/application/ApplicationModel.d.ts +48 -0
- package/esm/models/attributes/AttributeCollection.d.ts +102 -0
- package/esm/models/attributes/AttributeContent.d.ts +64 -0
- package/esm/models/attributes/AttributeDataHelper.d.ts +67 -0
- package/esm/models/attributes/AttributeModel.d.ts +398 -0
- package/esm/models/attributes/BooleanAttributeModel.d.ts +69 -0
- package/esm/models/attributes/ChoiceAttributeModel.d.ts +85 -0
- package/esm/models/attributes/ChoiceAttributeOptionCollection.d.ts +81 -0
- package/esm/models/attributes/ChoiceAttributeOptionModel.d.ts +151 -0
- package/esm/models/attributes/DatetimeAttributeModel.d.ts +85 -0
- package/esm/models/attributes/PasswordAttributeModel.d.ts +62 -0
- package/esm/models/attributes/UploadAttributeModel.d.ts +60 -0
- package/esm/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +65 -0
- package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +50 -0
- package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -0
- package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -0
- package/esm/models/attributes/input-constraints/RangeConstraint.d.ts +51 -0
- package/esm/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -0
- package/esm/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -0
- package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -0
- package/esm/models/base/BaseCollection.d.ts +89 -0
- package/esm/models/base/BaseModel.d.ts +78 -0
- package/esm/models/base/ResourceModel.d.ts +102 -0
- package/esm/models/caseview/CaseViewModel.d.ts +46 -0
- package/esm/models/concepts/BusinessScenarioModel.d.ts +20 -0
- package/esm/models/concepts/ConceptDetailModel.d.ts +86 -0
- package/esm/models/concepts/ConceptLinkModel.d.ts +70 -0
- package/esm/models/concepts/ConceptRelationCollection.d.ts +36 -0
- package/esm/models/concepts/ConceptRelationModel.d.ts +61 -0
- package/esm/models/concepts/ConceptTypeDetailModel.d.ts +54 -0
- package/esm/models/content/ContentLinkModel.d.ts +85 -0
- package/esm/models/content/ContentModel.d.ts +80 -0
- package/esm/models/content/ContentTOCModel.d.ts +41 -0
- package/esm/models/content/SectionModel.d.ts +76 -0
- package/esm/models/content/SubSectionModel.d.ts +69 -0
- package/esm/models/contentconfiguration/ContentConfiguration.d.ts +28 -0
- package/esm/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -0
- package/esm/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -0
- package/esm/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -0
- package/esm/models/detail/DetailModel.d.ts +80 -0
- package/esm/models/error/ErrorCollection.d.ts +51 -0
- package/esm/models/error/ErrorResponse.d.ts +156 -0
- package/esm/models/filters/BaseFilterModel.d.ts +101 -0
- package/esm/models/form/FormModel.d.ts +350 -0
- package/esm/models/form/FormObjectModel.d.ts +209 -0
- package/esm/models/grouping/GroupingModel.d.ts +86 -0
- package/esm/models/href/Href.d.ts +218 -0
- package/esm/models/href/ListHref.d.ts +64 -0
- package/esm/models/layouthint/LayoutHintCollection.d.ts +43 -0
- package/esm/models/links/LinkCollection.d.ts +71 -0
- package/esm/models/links/LinkModel.d.ts +93 -0
- package/esm/models/list/ListDetailModel.d.ts +69 -0
- package/esm/models/list/ListHeaderModel.d.ts +53 -0
- package/esm/models/list/ListModel.d.ts +143 -0
- package/esm/models/paging/PagesizeModel.d.ts +25 -0
- package/esm/models/panels/GroupingPanelModel.d.ts +49 -0
- package/esm/models/sorting/SortOptionModel.d.ts +48 -0
- package/esm/models/sorting/SortingModel.d.ts +42 -0
- package/esm/models/tab/TabModel.d.ts +53 -0
- package/esm/models/user/UserServicesModel.d.ts +39 -0
- package/esm/modularui/Authenticate.d.ts +46 -0
- package/esm/modularui/ModularUIRequest.d.ts +207 -0
- package/esm/modularui/ModularUIResponse.d.ts +78 -0
- package/esm/react-server/serverUtil.d.ts +46 -0
- package/esm/react-theme/utils/background.d.ts +4 -0
- package/esm/react-theme/utils/colors.d.ts +9 -0
- package/esm/react-theme/utils/contrast.d.ts +18 -0
- package/esm/react-theme/utils/corners.d.ts +3 -0
- package/esm/react-theme/utils/spacers.d.ts +9 -0
- package/esm/react-theme/utils/themeProps.d.ts +7 -0
- package/esm/redux/_modularui/ModularUIActions.d.ts +26 -0
- package/esm/redux/_modularui/types.d.ts +83 -0
- package/esm/redux/actions/Notification.d.ts +10 -0
- package/esm/redux/store/beforeRenderHooks.d.ts +7 -0
- package/esm/redux/store/configureStore.d.ts +9 -0
- package/lib/builder/index.d.ts +1 -0
- package/lib/builder/mergeLayoutHintConfigurations.d.ts +1 -0
- package/lib/constants/Constants.d.ts +158 -0
- package/lib/constants/LayoutHintConfig.d.ts +267 -0
- package/lib/constants/LayoutHints.d.ts +83 -0
- package/lib/constants/Settings.d.ts +32 -0
- package/lib/constants/index.d.ts +3 -0
- package/lib/exceptions/ConfigurationException.d.ts +7 -0
- package/lib/exceptions/FetchException.d.ts +31 -0
- package/lib/exceptions/IllegalArgumentException.d.ts +7 -0
- package/lib/exceptions/IllegalReturnException.d.ts +6 -0
- package/lib/exceptions/IllegalStateException.d.ts +7 -0
- package/lib/exceptions/JsonParseException.d.ts +7 -0
- package/lib/exceptions/MissingPropertyException.d.ts +7 -0
- package/lib/exceptions/NetworkException.d.ts +9 -0
- package/lib/exceptions/NotAllowedUriException.d.ts +7 -0
- package/lib/exceptions/NotFoundException.d.ts +10 -0
- package/lib/exceptions/ServerRequestException.d.ts +7 -0
- package/lib/exceptions/ThemePropertyException.d.ts +7 -0
- package/lib/exceptions/TimeoutException.d.ts +7 -0
- package/lib/exceptions/UnauthorizedException.d.ts +11 -0
- package/lib/exceptions/UnsupportedOperationException.d.ts +7 -0
- package/lib/exceptions/index.d.ts +15 -0
- package/lib/hooks/index.d.ts +16 -0
- package/lib/hooks/useAllFormsOnModel.d.ts +7 -0
- package/lib/hooks/useAuthentication.d.ts +16 -0
- package/lib/hooks/useContent.d.ts +3 -0
- package/lib/hooks/useDeepCompareEffect.d.ts +6 -0
- package/lib/hooks/useForm.d.ts +21 -0
- package/lib/hooks/useI18n.d.ts +13 -0
- package/lib/hooks/useModal.d.ts +12 -0
- package/lib/hooks/useModelCatalog.d.ts +32 -0
- package/lib/hooks/useModels.d.ts +10 -0
- package/lib/hooks/useModularUI.d.ts +3 -0
- package/lib/hooks/useModularUIBasic.d.ts +9 -0
- package/lib/hooks/useModularUIModel.d.ts +27 -0
- package/lib/hooks/useModularUIRequest.d.ts +4 -0
- package/lib/hooks/useNotification.d.ts +8 -0
- package/lib/hooks/usePreference.d.ts +2 -0
- package/lib/hooks/useProgressIndicator.d.ts +9 -0
- package/lib/hooks/useRouter.d.ts +23 -0
- package/lib/i18n/Locale.d.ts +53 -0
- package/lib/i18n/Locales.d.ts +59 -0
- package/lib/i18n/Message.d.ts +6 -0
- package/lib/i18n/index.d.ts +5 -0
- package/lib/i18n/languages.d.ts +215 -0
- package/lib/i18n/translations/beinformed_error_messages_en.nl.d.ts +97 -0
- package/lib/i18n/translations/beinformed_error_messages_nl.nl.d.ts +97 -0
- package/lib/i18n/types.d.ts +11 -0
- package/lib/i18n/withMessage.d.ts +3 -0
- package/lib/index.d.ts +6 -0
- package/lib/models/actions/ActionCollection.d.ts +30 -0
- package/lib/models/actions/ActionModel.d.ts +82 -0
- package/lib/models/application/ApplicationModel.d.ts +48 -0
- package/lib/models/attributes/AttributeCollection.d.ts +102 -0
- package/lib/models/attributes/AttributeContent.d.ts +64 -0
- package/lib/models/attributes/AttributeDataHelper.d.ts +67 -0
- package/lib/models/attributes/AttributeModel.d.ts +398 -0
- package/lib/models/attributes/AttributeSetModel.d.ts +36 -0
- package/lib/models/attributes/BooleanAttributeModel.d.ts +69 -0
- package/lib/models/attributes/CaptchaAttributeModel.d.ts +19 -0
- package/lib/models/attributes/ChoiceAttributeModel.d.ts +85 -0
- package/lib/models/attributes/ChoiceAttributeOptionCollection.d.ts +81 -0
- package/lib/models/attributes/ChoiceAttributeOptionModel.d.ts +151 -0
- package/lib/models/attributes/CompositeAttributeChildCollection.d.ts +57 -0
- package/lib/models/attributes/CompositeAttributeModel.d.ts +42 -0
- package/lib/models/attributes/DatetimeAttributeModel.d.ts +85 -0
- package/lib/models/attributes/HelptextAttributeModel.d.ts +16 -0
- package/lib/models/attributes/LabelAttributeModel.d.ts +12 -0
- package/lib/models/attributes/MemoAttributeModel.d.ts +14 -0
- package/lib/models/attributes/MoneyAttributeModel.d.ts +14 -0
- package/lib/models/attributes/NumberAttributeModel.d.ts +49 -0
- package/lib/models/attributes/PasswordAttributeModel.d.ts +62 -0
- package/lib/models/attributes/StringAttributeModel.d.ts +65 -0
- package/lib/models/attributes/UploadAttributeModel.d.ts +60 -0
- package/lib/models/attributes/XMLAttributeModel.d.ts +10 -0
- package/lib/models/attributes/_createAttribute.d.ts +7 -0
- package/lib/models/attributes/input-constraints/BSNConstraint.d.ts +26 -0
- package/lib/models/attributes/input-constraints/ConstraintCollection.d.ts +24 -0
- package/lib/models/attributes/input-constraints/ConstraintModel.d.ts +34 -0
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +65 -0
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +36 -0
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +36 -0
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +50 -0
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.d.ts +33 -0
- package/lib/models/attributes/input-constraints/FileSizeConstraint.d.ts +42 -0
- package/lib/models/attributes/input-constraints/IBANConstraint.d.ts +23 -0
- package/lib/models/attributes/input-constraints/MandatoryConstraint.d.ts +23 -0
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -0
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -0
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.d.ts +52 -0
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +46 -0
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +36 -0
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +23 -0
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +32 -0
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +32 -0
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +35 -0
- package/lib/models/attributes/input-constraints/RangeConstraint.d.ts +51 -0
- package/lib/models/attributes/input-constraints/RegexConstraint.d.ts +37 -0
- package/lib/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -0
- package/lib/models/attributes/input-constraints/XMLConstraint.d.ts +26 -0
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +45 -0
- package/lib/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -0
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -0
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +17 -0
- package/lib/models/base/BaseCollection.d.ts +89 -0
- package/lib/models/base/BaseModel.d.ts +78 -0
- package/lib/models/base/ResourceCollection.d.ts +20 -0
- package/lib/models/base/ResourceModel.d.ts +102 -0
- package/lib/models/caseview/CaseViewModel.d.ts +46 -0
- package/lib/models/concepts/BusinessScenarioModel.d.ts +20 -0
- package/lib/models/concepts/ConceptDetailModel.d.ts +86 -0
- package/lib/models/concepts/ConceptIndexModel.d.ts +44 -0
- package/lib/models/concepts/ConceptLinkModel.d.ts +70 -0
- package/lib/models/concepts/ConceptRelationCollection.d.ts +36 -0
- package/lib/models/concepts/ConceptRelationModel.d.ts +61 -0
- package/lib/models/concepts/ConceptTypeDetailModel.d.ts +54 -0
- package/lib/models/concepts/SourceReferenceCollection.d.ts +14 -0
- package/lib/models/concepts/SourceReferenceModel.d.ts +32 -0
- package/lib/models/content/ContentIndexModel.d.ts +41 -0
- package/lib/models/content/ContentLinkModel.d.ts +85 -0
- package/lib/models/content/ContentModel.d.ts +80 -0
- package/lib/models/content/ContentTOCModel.d.ts +41 -0
- package/lib/models/content/ContentTypeModel.d.ts +26 -0
- package/lib/models/content/SectionModel.d.ts +76 -0
- package/lib/models/content/SubSectionModel.d.ts +69 -0
- package/lib/models/contentconfiguration/ContentConfiguration.d.ts +28 -0
- package/lib/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -0
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -0
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.d.ts +22 -0
- package/lib/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -0
- package/lib/models/detail/DetailModel.d.ts +80 -0
- package/lib/models/error/ErrorCollection.d.ts +51 -0
- package/lib/models/error/ErrorModel.d.ts +41 -0
- package/lib/models/error/ErrorResponse.d.ts +156 -0
- package/lib/models/filters/AssignmentFilterModel.d.ts +35 -0
- package/lib/models/filters/BaseFilterModel.d.ts +101 -0
- package/lib/models/filters/ConceptIndexFilterModel.d.ts +6 -0
- package/lib/models/filters/FilterCollection.d.ts +49 -0
- package/lib/models/filters/FilterModel.d.ts +5 -0
- package/lib/models/filters/RangeFilterModel.d.ts +6 -0
- package/lib/models/filters/StringFilterModel.d.ts +30 -0
- package/lib/models/form/FormModel.d.ts +350 -0
- package/lib/models/form/FormObjectModel.d.ts +209 -0
- package/lib/models/grouping/GroupingModel.d.ts +86 -0
- package/lib/models/href/Href.d.ts +218 -0
- package/lib/models/href/ListHref.d.ts +64 -0
- package/lib/models/index.d.ts +96 -0
- package/lib/models/layouthint/LayoutHintCollection.d.ts +43 -0
- package/lib/models/links/LinkCollection.d.ts +71 -0
- package/lib/models/links/LinkModel.d.ts +93 -0
- package/lib/models/links/normalizeLinkJSON.d.ts +9 -0
- package/lib/models/list/ListDetailModel.d.ts +69 -0
- package/lib/models/list/ListHeaderModel.d.ts +53 -0
- package/lib/models/list/ListItemCollection.d.ts +21 -0
- package/lib/models/list/ListItemModel.d.ts +35 -0
- package/lib/models/list/ListModel.d.ts +143 -0
- package/lib/models/lookup/LookupOptionCollection.d.ts +15 -0
- package/lib/models/lookup/LookupOptionsModel.d.ts +23 -0
- package/lib/models/modelcatalog/ModelCatalogModel.d.ts +23 -0
- package/lib/models/modelcatalog/ModelCategoryCollection.d.ts +11 -0
- package/lib/models/modelcatalog/ModelCategoryModel.d.ts +39 -0
- package/lib/models/paging/PagesizeModel.d.ts +25 -0
- package/lib/models/paging/PagingModel.d.ts +49 -0
- package/lib/models/panels/GroupingPanelModel.d.ts +49 -0
- package/lib/models/parameter/Parameter.d.ts +40 -0
- package/lib/models/process/ProcessStatusSettingsModel.d.ts +38 -0
- package/lib/models/resolveModel.d.ts +7 -0
- package/lib/models/search/CaseSearchModel.d.ts +14 -0
- package/lib/models/sorting/SortOptionModel.d.ts +48 -0
- package/lib/models/sorting/SortingModel.d.ts +42 -0
- package/lib/models/tab/TabModel.d.ts +53 -0
- package/lib/models/taskgroup/TaskGroupCollection.d.ts +12 -0
- package/lib/models/taskgroup/TaskGroupModel.d.ts +25 -0
- package/lib/models/types.d.ts +166 -0
- package/lib/models/user/UserModel.d.ts +18 -0
- package/lib/models/user/UserProfileModel.d.ts +17 -0
- package/lib/models/user/UserServicesModel.d.ts +39 -0
- package/lib/modularui/Authenticate.d.ts +46 -0
- package/lib/modularui/CaptchaRequest.d.ts +54 -0
- package/lib/modularui/ModularUIError.d.ts +10 -0
- package/lib/modularui/ModularUIRequest.d.ts +207 -0
- package/lib/modularui/ModularUIResponse.d.ts +78 -0
- package/lib/modularui/UploadRequest.d.ts +41 -0
- package/lib/modularui/index.d.ts +5 -0
- package/lib/modularui/types.d.ts +2 -0
- package/lib/react/ErrorBoundary.d.ts +31 -0
- package/lib/react/ErrorBoundaryFallback.d.ts +8 -0
- package/lib/react/index.d.ts +2 -0
- package/lib/react/utils.d.ts +5 -0
- package/lib/react-client/Init.d.ts +6 -0
- package/lib/react-client/client.d.ts +25 -0
- package/lib/react-client/contextPath.d.ts +1 -0
- package/lib/react-client/index.d.ts +3 -0
- package/lib/react-client/rehydrate.d.ts +5 -0
- package/lib/react-server/contextPath.d.ts +1 -0
- package/lib/react-server/createSSRComplete.d.ts +5 -0
- package/lib/react-server/htmlpage.d.ts +11 -0
- package/lib/react-server/index.d.ts +8 -0
- package/lib/react-server/renderSSRComplete.d.ts +13 -0
- package/lib/react-server/renderSSRMinimal.d.ts +11 -0
- package/lib/react-server/requestInformation.d.ts +6 -0
- package/lib/react-server/serverNoSSR.d.ts +15 -0
- package/lib/react-server/serverSSR.d.ts +15 -0
- package/lib/react-server/serverUtil.d.ts +46 -0
- package/lib/react-theme/ThemeProvider.d.ts +8 -0
- package/lib/react-theme/createTheme.d.ts +53 -0
- package/lib/react-theme/index.d.ts +10 -0
- package/lib/react-theme/types.d.ts +13 -0
- package/lib/react-theme/useTheme.d.ts +4 -0
- package/lib/react-theme/utils/background.d.ts +4 -0
- package/lib/react-theme/utils/colors.d.ts +9 -0
- package/lib/react-theme/utils/contrast.d.ts +18 -0
- package/lib/react-theme/utils/corners.d.ts +3 -0
- package/lib/react-theme/utils/spacers.d.ts +9 -0
- package/lib/react-theme/utils/themeProps.d.ts +7 -0
- package/lib/redux/_i18n/I18nActions.d.ts +7 -0
- package/lib/redux/_i18n/I18nReducer.d.ts +7 -0
- package/lib/redux/_i18n/index.d.ts +3 -0
- package/lib/redux/_i18n/types.d.ts +13 -0
- package/lib/redux/_modularui/ModularUIActions.d.ts +26 -0
- package/lib/redux/_modularui/ModularUIConnector.d.ts +7 -0
- package/lib/redux/_modularui/ModularUIMiddleware.d.ts +7 -0
- package/lib/redux/_modularui/ModularUIReducer.d.ts +7 -0
- package/lib/redux/_modularui/ModularUISelectors.d.ts +3 -0
- package/lib/redux/_modularui/ModularUIUtils.d.ts +5 -0
- package/lib/redux/_modularui/index.d.ts +8 -0
- package/lib/redux/_modularui/types.d.ts +83 -0
- package/lib/redux/_modularui/withModularUI.d.ts +3 -0
- package/lib/redux/_router/RouterActions.d.ts +10 -0
- package/lib/redux/_router/RouterConnectors.d.ts +6 -0
- package/lib/redux/_router/RouterMiddleware.d.ts +5 -0
- package/lib/redux/_router/RouterReducer.d.ts +7 -0
- package/lib/redux/_router/index.d.ts +5 -0
- package/lib/redux/_router/types.d.ts +35 -0
- package/lib/redux/actions/Application.d.ts +4 -0
- package/lib/redux/actions/Authorization.d.ts +3 -0
- package/lib/redux/actions/Error.d.ts +7 -0
- package/lib/redux/actions/Form.d.ts +5 -0
- package/lib/redux/actions/FormAttributeSet.d.ts +6 -0
- package/lib/redux/actions/FormAttributeSetRepeatable.d.ts +6 -0
- package/lib/redux/actions/FormAutosave.d.ts +3 -0
- package/lib/redux/actions/FormAutosubmit.d.ts +4 -0
- package/lib/redux/actions/FormAutoupdate.d.ts +4 -0
- package/lib/redux/actions/FormValidations.d.ts +3 -0
- package/lib/redux/actions/Modals.d.ts +4 -0
- package/lib/redux/actions/ModelCatalog.d.ts +2 -0
- package/lib/redux/actions/Notification.d.ts +10 -0
- package/lib/redux/actions/Preferences.d.ts +11 -0
- package/lib/redux/actions/ProgressIndicator.d.ts +8 -0
- package/lib/redux/actions/SignIn.d.ts +10 -0
- package/lib/redux/actions/SignOut.d.ts +4 -0
- package/lib/redux/actions/index.d.ts +16 -0
- package/lib/redux/connectors/Application.d.ts +4 -0
- package/lib/redux/connectors/Breadcrumb.d.ts +3 -0
- package/lib/redux/connectors/CaseView.d.ts +4 -0
- package/lib/redux/connectors/ConceptDetail.d.ts +4 -0
- package/lib/redux/connectors/ContentBrowser.d.ts +4 -0
- package/lib/redux/connectors/ContentDetail.d.ts +4 -0
- package/lib/redux/connectors/ContentDetailSection.d.ts +4 -0
- package/lib/redux/connectors/Form.d.ts +16 -0
- package/lib/redux/connectors/FormAttributeSet.d.ts +5 -0
- package/lib/redux/connectors/ListDetail.d.ts +4 -0
- package/lib/redux/connectors/Modal.d.ts +4 -0
- package/lib/redux/connectors/ModelCatalog.d.ts +4 -0
- package/lib/redux/connectors/Notification.d.ts +4 -0
- package/lib/redux/connectors/PanelRenderer.d.ts +4 -0
- package/lib/redux/connectors/Preferences.d.ts +2 -0
- package/lib/redux/connectors/Progress.d.ts +3 -0
- package/lib/redux/connectors/ProgressIndicator.d.ts +3 -0
- package/lib/redux/connectors/QuickSearch.d.ts +11 -0
- package/lib/redux/connectors/SignIn.d.ts +4 -0
- package/lib/redux/connectors/SignOut.d.ts +4 -0
- package/lib/redux/connectors/Tab.d.ts +4 -0
- package/lib/redux/connectors/index.d.ts +21 -0
- package/lib/redux/index.d.ts +9 -0
- package/lib/redux/reducers/AuthReducer.d.ts +8 -0
- package/lib/redux/reducers/ErrorReducer.d.ts +8 -0
- package/lib/redux/reducers/ModalsReducer.d.ts +8 -0
- package/lib/redux/reducers/ModelCatalogReducer.d.ts +8 -0
- package/lib/redux/reducers/NotificationReducer.d.ts +8 -0
- package/lib/redux/reducers/PreferencesReducer.d.ts +8 -0
- package/lib/redux/reducers/ProgressIndicatorReducer.d.ts +8 -0
- package/lib/redux/reducers/createReducer.d.ts +14 -0
- package/lib/redux/reducers/index.d.ts +8 -0
- package/lib/redux/selectors/i18n.d.ts +4 -0
- package/lib/redux/selectors/index.d.ts +2 -0
- package/lib/redux/selectors/modelcatalog.d.ts +2 -0
- package/lib/redux/store/beforeRenderHooks.d.ts +7 -0
- package/lib/redux/store/configureStore.d.ts +9 -0
- package/lib/redux/types.d.ts +113 -0
- package/lib/utils/browser/Cache.d.ts +45 -0
- package/lib/utils/browser/Cookies.d.ts +9 -0
- package/lib/utils/datetime/DateTimeUtil.d.ts +214 -0
- package/lib/utils/fetch/__mocks__/universalFetch.d.ts +3 -0
- package/lib/utils/fetch/serverFetch.d.ts +5 -0
- package/lib/utils/fetch/types.d.ts +44 -0
- package/lib/utils/fetch/universalFetch.d.ts +7 -0
- package/lib/utils/fetch/xhr.d.ts +5 -0
- package/lib/utils/helpers/checkResource.d.ts +3 -0
- package/lib/utils/helpers/createHash.d.ts +8 -0
- package/lib/utils/helpers/createHref.d.ts +8 -0
- package/lib/utils/helpers/createUUID.d.ts +4 -0
- package/lib/utils/helpers/index.d.ts +8 -0
- package/lib/utils/helpers/objects.d.ts +11 -0
- package/lib/utils/helpers/repositoryResource.d.ts +1 -0
- package/lib/utils/helpers/sanitizeHtml.d.ts +9 -0
- package/lib/utils/helpers/text.d.ts +7 -0
- package/lib/utils/index.d.ts +11 -0
- package/lib/utils/number/DecimalFormat.d.ts +90 -0
- package/lib/utils/number/formatValue.d.ts +4 -0
- package/lib/utils/number/parseNumbers.d.ts +9 -0
- package/package.json +39 -56
- package/builder/package.json +0 -12
- package/constants/package.json +0 -12
- package/exceptions/package.json +0 -12
- package/hooks/package.json +0 -12
- package/i18n/package.json +0 -12
- package/models/package.json +0 -12
- package/modularui/package.json +0 -12
- package/react/package.json +0 -12
- package/react-client/package.json +0 -12
- package/react-server/package.json +0 -12
- package/react-theme/package.json +0 -12
- package/redux/package.json +0 -12
- package/tsconfig.json +0 -29
- package/types/hooks/useI18n.d.ts +0 -13
- package/types/hooks/useModelCatalog.d.ts +0 -31
- package/types/i18n/Locales.d.ts +0 -55
- package/types/models/actions/ActionModel.d.ts +0 -84
- package/types/models/application/ApplicationModel.d.ts +0 -48
- package/types/models/attributes/AttributeCollection.d.ts +0 -100
- package/types/models/attributes/AttributeContent.d.ts +0 -64
- package/types/models/attributes/AttributeDataHelper.d.ts +0 -67
- package/types/models/attributes/AttributeModel.d.ts +0 -401
- package/types/models/attributes/BooleanAttributeModel.d.ts +0 -64
- package/types/models/attributes/ChoiceAttributeModel.d.ts +0 -85
- package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +0 -81
- package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +0 -151
- package/types/models/attributes/DatetimeAttributeModel.d.ts +0 -147
- package/types/models/attributes/PasswordAttributeModel.d.ts +0 -62
- package/types/models/attributes/UploadAttributeModel.d.ts +0 -60
- package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +0 -127
- package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +0 -114
- package/types/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +0 -36
- package/types/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +0 -61
- package/types/models/attributes/input-constraints/RangeConstraint.d.ts +0 -113
- package/types/models/attributes/input-constraints/StringLengthConstraint.d.ts +0 -46
- package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +0 -57
- package/types/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +0 -27
- package/types/models/base/BaseCollection.d.ts +0 -89
- package/types/models/base/BaseModel.d.ts +0 -78
- package/types/models/base/ResourceModel.d.ts +0 -102
- package/types/models/caseview/CaseViewModel.d.ts +0 -45
- package/types/models/concepts/BusinessScenarioModel.d.ts +0 -20
- package/types/models/concepts/ConceptDetailModel.d.ts +0 -86
- package/types/models/concepts/ConceptLinkModel.d.ts +0 -70
- package/types/models/concepts/ConceptRelationCollection.d.ts +0 -36
- package/types/models/concepts/ConceptRelationModel.d.ts +0 -61
- package/types/models/concepts/ConceptTypeDetailModel.d.ts +0 -54
- package/types/models/content/ContentLinkModel.d.ts +0 -85
- package/types/models/content/ContentModel.d.ts +0 -80
- package/types/models/content/ContentTOCModel.d.ts +0 -41
- package/types/models/content/SectionModel.d.ts +0 -76
- package/types/models/content/SubSectionModel.d.ts +0 -69
- package/types/models/contentconfiguration/ContentConfiguration.d.ts +0 -28
- package/types/models/contentconfiguration/ContentConfigurationElements.d.ts +0 -47
- package/types/models/contentconfiguration/ContentConfigurationEndResults.d.ts +0 -16
- package/types/models/contentconfiguration/ContentConfigurationResults.d.ts +0 -39
- package/types/models/detail/DetailModel.d.ts +0 -80
- package/types/models/error/ErrorCollection.d.ts +0 -51
- package/types/models/error/ErrorResponse.d.ts +0 -156
- package/types/models/filters/BaseFilterModel.d.ts +0 -101
- package/types/models/form/FormModel.d.ts +0 -350
- package/types/models/form/FormObjectModel.d.ts +0 -207
- package/types/models/grouping/GroupingModel.d.ts +0 -86
- package/types/models/href/Href.d.ts +0 -226
- package/types/models/href/ListHref.d.ts +0 -64
- package/types/models/layouthint/LayoutHintCollection.d.ts +0 -43
- package/types/models/links/LinkCollection.d.ts +0 -71
- package/types/models/links/LinkModel.d.ts +0 -93
- package/types/models/list/ListDetailModel.d.ts +0 -69
- package/types/models/list/ListHeaderModel.d.ts +0 -64
- package/types/models/list/ListModel.d.ts +0 -143
- package/types/models/paging/PagesizeModel.d.ts +0 -25
- package/types/models/panels/GroupingPanelModel.d.ts +0 -48
- package/types/models/sorting/SortOptionModel.d.ts +0 -48
- package/types/models/sorting/SortingModel.d.ts +0 -42
- package/types/models/tab/TabModel.d.ts +0 -52
- package/types/models/user/UserServicesModel.d.ts +0 -38
- package/types/modularui/Authenticate.d.ts +0 -49
- package/types/modularui/ModularUIRequest.d.ts +0 -215
- package/types/modularui/ModularUIResponse.d.ts +0 -78
- package/types/react-server/serverUtil.d.ts +0 -45
- package/types/react-theme/utils/background.d.ts +0 -5
- package/types/react-theme/utils/colors.d.ts +0 -10
- package/types/react-theme/utils/contrast.d.ts +0 -19
- package/types/react-theme/utils/corners.d.ts +0 -4
- package/types/react-theme/utils/spacers.d.ts +0 -10
- package/types/react-theme/utils/themeProps.d.ts +0 -7
- package/types/redux/_modularui/ModularUIActions.d.ts +0 -29
- package/types/redux/_modularui/types.d.ts +0 -81
- package/types/redux/actions/Notification.d.ts +0 -14
- package/types/redux/store/beforeRenderHooks.d.ts +0 -7
- package/types/redux/store/configureStore.d.ts +0 -8
- package/utils/package.json +0 -12
- /package/{lib → esm}/builder/__tests__/mergeLayoutHintConfigurations.spec.js.flow +0 -0
- /package/{types → esm}/builder/index.d.ts +0 -0
- /package/{lib → esm}/builder/index.js.flow +0 -0
- /package/{types → esm}/builder/mergeLayoutHintConfigurations.d.ts +0 -0
- /package/{lib → esm}/builder/mergeLayoutHintConfigurations.js.flow +0 -0
- /package/{types → esm}/constants/Constants.d.ts +0 -0
- /package/{lib → esm}/constants/Constants.js.flow +0 -0
- /package/{types → esm}/constants/LayoutHintConfig.d.ts +0 -0
- /package/{lib → esm}/constants/LayoutHintConfig.js.flow +0 -0
- /package/{types → esm}/constants/LayoutHints.d.ts +0 -0
- /package/{lib → esm}/constants/LayoutHints.js.flow +0 -0
- /package/{types → esm}/constants/Settings.d.ts +0 -0
- /package/{lib → esm}/constants/Settings.js.flow +0 -0
- /package/{types → esm}/constants/index.d.ts +0 -0
- /package/{lib → esm}/constants/index.js.flow +0 -0
- /package/{types → esm}/exceptions/ConfigurationException.d.ts +0 -0
- /package/{lib → esm}/exceptions/ConfigurationException.js.flow +0 -0
- /package/{types → esm}/exceptions/FetchException.d.ts +0 -0
- /package/{lib → esm}/exceptions/FetchException.js.flow +0 -0
- /package/{types → esm}/exceptions/IllegalArgumentException.d.ts +0 -0
- /package/{lib → esm}/exceptions/IllegalArgumentException.js.flow +0 -0
- /package/{types → esm}/exceptions/IllegalReturnException.d.ts +0 -0
- /package/{lib → esm}/exceptions/IllegalReturnException.js.flow +0 -0
- /package/{types → esm}/exceptions/IllegalStateException.d.ts +0 -0
- /package/{lib → esm}/exceptions/IllegalStateException.js.flow +0 -0
- /package/{types → esm}/exceptions/JsonParseException.d.ts +0 -0
- /package/{lib → esm}/exceptions/JsonParseException.js.flow +0 -0
- /package/{types → esm}/exceptions/MissingPropertyException.d.ts +0 -0
- /package/{lib → esm}/exceptions/MissingPropertyException.js.flow +0 -0
- /package/{types → esm}/exceptions/NetworkException.d.ts +0 -0
- /package/{lib → esm}/exceptions/NetworkException.js.flow +0 -0
- /package/{types → esm}/exceptions/NotAllowedUriException.d.ts +0 -0
- /package/{lib → esm}/exceptions/NotAllowedUriException.js.flow +0 -0
- /package/{types → esm}/exceptions/NotFoundException.d.ts +0 -0
- /package/{lib → esm}/exceptions/NotFoundException.js.flow +0 -0
- /package/{types → esm}/exceptions/ServerRequestException.d.ts +0 -0
- /package/{lib → esm}/exceptions/ServerRequestException.js.flow +0 -0
- /package/{types → esm}/exceptions/ThemePropertyException.d.ts +0 -0
- /package/{lib → esm}/exceptions/ThemePropertyException.js.flow +0 -0
- /package/{types → esm}/exceptions/TimeoutException.d.ts +0 -0
- /package/{lib → esm}/exceptions/TimeoutException.js.flow +0 -0
- /package/{types → esm}/exceptions/UnauthorizedException.d.ts +0 -0
- /package/{lib → esm}/exceptions/UnauthorizedException.js.flow +0 -0
- /package/{types → esm}/exceptions/UnsupportedOperationException.d.ts +0 -0
- /package/{lib → esm}/exceptions/UnsupportedOperationException.js.flow +0 -0
- /package/{types → esm}/exceptions/index.d.ts +0 -0
- /package/{lib → esm}/exceptions/index.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/UseModularUIModel.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useAuthentication.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useForm.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useI18n.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModal.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModelCatalog.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModels.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModularUIBasic.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useNotification.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/usePreference.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useProgressIndicator.spec.js.flow +0 -0
- /package/{types → esm}/hooks/index.d.ts +0 -0
- /package/{lib → esm}/hooks/index.js.flow +0 -0
- /package/{types → esm}/hooks/useAllFormsOnModel.d.ts +0 -0
- /package/{lib → esm}/hooks/useAllFormsOnModel.js.flow +0 -0
- /package/{types → esm}/hooks/useAuthentication.d.ts +0 -0
- /package/{lib → esm}/hooks/useAuthentication.js.flow +0 -0
- /package/{types → esm}/hooks/useContent.d.ts +0 -0
- /package/{lib → esm}/hooks/useContent.js.flow +0 -0
- /package/{types → esm}/hooks/useDeepCompareEffect.d.ts +0 -0
- /package/{lib → esm}/hooks/useDeepCompareEffect.js.flow +0 -0
- /package/{types → esm}/hooks/useForm.d.ts +0 -0
- /package/{lib → esm}/hooks/useForm.js.flow +0 -0
- /package/{lib → esm}/hooks/useI18n.js.flow +0 -0
- /package/{types → esm}/hooks/useModal.d.ts +0 -0
- /package/{lib → esm}/hooks/useModal.js.flow +0 -0
- /package/{lib → esm}/hooks/useModelCatalog.js.flow +0 -0
- /package/{types → esm}/hooks/useModels.d.ts +0 -0
- /package/{lib → esm}/hooks/useModels.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUI.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUI.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUIBasic.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUIBasic.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUIModel.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUIModel.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUIRequest.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUIRequest.js.flow +0 -0
- /package/{types → esm}/hooks/useNotification.d.ts +0 -0
- /package/{lib → esm}/hooks/useNotification.js.flow +0 -0
- /package/{types → esm}/hooks/usePreference.d.ts +0 -0
- /package/{lib → esm}/hooks/usePreference.js.flow +0 -0
- /package/{types → esm}/hooks/useProgressIndicator.d.ts +0 -0
- /package/{lib → esm}/hooks/useProgressIndicator.js.flow +0 -0
- /package/{types → esm}/hooks/useRouter.d.ts +0 -0
- /package/{lib → esm}/hooks/useRouter.js.flow +0 -0
- /package/{types → esm}/i18n/Locale.d.ts +0 -0
- /package/{lib → esm}/i18n/Locale.js.flow +0 -0
- /package/{lib → esm}/i18n/Locales.js.flow +0 -0
- /package/{types → esm}/i18n/Message.d.ts +0 -0
- /package/{lib → esm}/i18n/Message.js.flow +0 -0
- /package/{lib → esm}/i18n/__tests__/Locale.spec.js.flow +0 -0
- /package/{lib → esm}/i18n/__tests__/Locales.spec.js.flow +0 -0
- /package/{types → esm}/i18n/index.d.ts +0 -0
- /package/{lib → esm}/i18n/index.js.flow +0 -0
- /package/{types → esm}/i18n/languages.d.ts +0 -0
- /package/{lib → esm}/i18n/languages.js.flow +0 -0
- /package/{types → esm}/i18n/translations/beinformed_error_messages_en.nl.d.ts +0 -0
- /package/{lib → esm}/i18n/translations/beinformed_error_messages_en.nl.js.flow +0 -0
- /package/{types → esm}/i18n/translations/beinformed_error_messages_nl.nl.d.ts +0 -0
- /package/{lib → esm}/i18n/translations/beinformed_error_messages_nl.nl.js.flow +0 -0
- /package/{types → esm}/i18n/types.d.ts +0 -0
- /package/{lib → esm}/i18n/types.js.flow +0 -0
- /package/{types → esm}/i18n/withMessage.d.ts +0 -0
- /package/{lib → esm}/i18n/withMessage.js.flow +0 -0
- /package/{types → esm}/index.d.ts +0 -0
- /package/{lib → esm}/index.js.flow +0 -0
- /package/{lib → esm}/models/__tests__/resolveModel.spec.js.flow +0 -0
- /package/{types → esm}/models/actions/ActionCollection.d.ts +0 -0
- /package/{lib → esm}/models/actions/ActionCollection.js.flow +0 -0
- /package/{lib → esm}/models/actions/ActionModel.js.flow +0 -0
- /package/{lib → esm}/models/actions/__mock__/action.js.flow +0 -0
- /package/{lib → esm}/models/actions/__tests__/ActionCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/actions/__tests__/ActionModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/application/ApplicationModel.js.flow +0 -0
- /package/{lib → esm}/models/application/__mock__/application.js.flow +0 -0
- /package/{lib → esm}/models/application/__tests__/Application.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeCollection.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeContent.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeDataHelper.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/AttributeSetModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/AttributeSetModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/BooleanAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/CaptchaAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/CaptchaAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/ChoiceAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/ChoiceAttributeOptionCollection.js.flow +0 -0
- /package/{lib → esm}/models/attributes/ChoiceAttributeOptionModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/CompositeAttributeChildCollection.d.ts +0 -0
- /package/{lib → esm}/models/attributes/CompositeAttributeChildCollection.js.flow +0 -0
- /package/{types → esm}/models/attributes/CompositeAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/CompositeAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/DatetimeAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/HelptextAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/HelptextAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/LabelAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/LabelAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/MemoAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/MemoAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/MoneyAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/MoneyAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/NumberAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/NumberAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/PasswordAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/StringAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/StringAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/UploadAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/XMLAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/XMLAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__mock__/form.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__mock__/list.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeCollectionComposite.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeContent.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeDataHelper.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeSetModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/BooleanAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/CaptchaAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/CompositeAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/DateAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel_offset.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/HelptextAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/LabelAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/LookupAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/MemoAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/MoneyAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/NumberAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/PasswordAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/StringAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/TimeAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/TimestampModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/UploadAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/XMLAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/_createAttribute.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/createAttributeComposite.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/createAttributeDynamicSchema.spec.js.flow +0 -0
- /package/{types → esm}/models/attributes/_createAttribute.d.ts +0 -0
- /package/{lib → esm}/models/attributes/_createAttribute.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/BSNConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/BSNConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/ConstraintCollection.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/ConstraintCollection.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/ConstraintModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/ConstraintModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DateBoundaryConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DatetimeFormatConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/FileExtensionConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/FileExtensionConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/FileSizeConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/FileSizeConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/IBANConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/IBANConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/MandatoryConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/MandatoryConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/MandatoryRangeConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/NumberBoundaryConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/NumberFormatConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/NumberFormatConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/NumberGroupingConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/RangeConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/RegexConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/RegexConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/StringLengthConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/XMLConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/XMLConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/BSNConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateBoundaryConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeDateFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeTimeFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DatetimeFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileExtensionConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileSizeConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/IBANConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/MandatoryConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberBoundaryConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberGroupingConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordConfirmConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordLowerAndUpperCaseConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinNumericCharactersConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinSpecialCharactersConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordThreeConsecutiveCharactersNotAllowedConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/RegexConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/StringLengthConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/XMLConstraint.spec.js.flow +0 -0
- /package/{types → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/DependentAttribute.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.flow +0 -0
- /package/{types → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__mock__/MockedCollectionFactory.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/BaseLayoutHintRule.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/DependentAttribute.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/LayoutHintRuleCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/RemainingTotalUploadSize.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/BaseCollection.js.flow +0 -0
- /package/{lib → esm}/models/base/BaseModel.js.flow +0 -0
- /package/{types → esm}/models/base/ResourceCollection.d.ts +0 -0
- /package/{lib → esm}/models/base/ResourceCollection.js.flow +0 -0
- /package/{lib → esm}/models/base/ResourceModel.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/BaseCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/BaseModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/ResourceCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/ResourceModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/caseview/CaseViewModel.js.flow +0 -0
- /package/{lib → esm}/models/caseview/__mock__/caseview.js.flow +0 -0
- /package/{lib → esm}/models/caseview/__tests__/CaseViewModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/BusinessScenarioModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptDetailModel.js.flow +0 -0
- /package/{types → esm}/models/concepts/ConceptIndexModel.d.ts +0 -0
- /package/{lib → esm}/models/concepts/ConceptIndexModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptLinkModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptRelationCollection.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptRelationModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptTypeDetailModel.js.flow +0 -0
- /package/{types → esm}/models/concepts/SourceReferenceCollection.d.ts +0 -0
- /package/{lib → esm}/models/concepts/SourceReferenceCollection.js.flow +0 -0
- /package/{types → esm}/models/concepts/SourceReferenceModel.d.ts +0 -0
- /package/{lib → esm}/models/concepts/SourceReferenceModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/business_scenario.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/conceptdetail.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/conceptindex.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/concepttype.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/concepttype_hierarchy.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/relation_with_props_and_tf_data.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/BusinessScenarioModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptDetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptIndexModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptLinkModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptRelationCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptRelationModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptTypeDetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/SourceReferenceCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/SourceReferenceModel.spec.js.flow +0 -0
- /package/{types → esm}/models/content/ContentIndexModel.d.ts +0 -0
- /package/{lib → esm}/models/content/ContentIndexModel.js.flow +0 -0
- /package/{lib → esm}/models/content/ContentLinkModel.js.flow +0 -0
- /package/{lib → esm}/models/content/ContentModel.js.flow +0 -0
- /package/{lib → esm}/models/content/ContentTOCModel.js.flow +0 -0
- /package/{types → esm}/models/content/ContentTypeModel.d.ts +0 -0
- /package/{lib → esm}/models/content/ContentTypeModel.js.flow +0 -0
- /package/{lib → esm}/models/content/SectionModel.js.flow +0 -0
- /package/{lib → esm}/models/content/SubSectionModel.js.flow +0 -0
- /package/{lib → esm}/models/content/__tests__/ContentIndexModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/content/__tests__/ContentLinkModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/content/__tests__/ContentModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfiguration.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationElements.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationEndResults.js.flow +0 -0
- /package/{types → esm}/models/contentconfiguration/ContentConfigurationQuestions.d.ts +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationQuestions.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationResults.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationElements.spec.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationResults.spec.js.flow +0 -0
- /package/{lib → esm}/models/detail/DetailModel.js.flow +0 -0
- /package/{lib → esm}/models/detail/__tests__/DetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/error/ErrorCollection.js.flow +0 -0
- /package/{types → esm}/models/error/ErrorModel.d.ts +0 -0
- /package/{lib → esm}/models/error/ErrorModel.js.flow +0 -0
- /package/{lib → esm}/models/error/ErrorResponse.js.flow +0 -0
- /package/{lib → esm}/models/error/__tests__/ErrorCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/error/__tests__/ErrorModel.spec.js.flow +0 -0
- /package/{types → esm}/models/filters/AssignmentFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/AssignmentFilterModel.js.flow +0 -0
- /package/{lib → esm}/models/filters/BaseFilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/ConceptIndexFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/ConceptIndexFilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/FilterCollection.d.ts +0 -0
- /package/{lib → esm}/models/filters/FilterCollection.js.flow +0 -0
- /package/{types → esm}/models/filters/FilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/FilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/RangeFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/RangeFilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/StringFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/StringFilterModel.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/AssignmentFilterModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/FilterCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/FilterModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/RangeFilterModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/ZipcodeFilter.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/FormModel.js.flow +0 -0
- /package/{lib → esm}/models/form/FormObjectModel.js.flow +0 -0
- /package/{lib → esm}/models/form/__mock__/form.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.getters.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.instrument.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.repeating.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.selfhref.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.unknown-repeat.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormObjectModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormResultData.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormWithContent.spec.js.flow +0 -0
- /package/{lib → esm}/models/grouping/GroupingModel.js.flow +0 -0
- /package/{lib → esm}/models/grouping/__tests__/GroupingModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/href/Href.js.flow +0 -0
- /package/{lib → esm}/models/href/ListHref.js.flow +0 -0
- /package/{lib → esm}/models/href/__tests__/Href.spec.js.flow +0 -0
- /package/{lib → esm}/models/href/__tests__/ListHref.spec.js.flow +0 -0
- /package/{types → esm}/models/index.d.ts +0 -0
- /package/{lib → esm}/models/index.js.flow +0 -0
- /package/{lib → esm}/models/layouthint/LayoutHintCollection.js.flow +0 -0
- /package/{lib → esm}/models/layouthint/__tests__/LayoutHintCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/links/LinkCollection.js.flow +0 -0
- /package/{lib → esm}/models/links/LinkModel.js.flow +0 -0
- /package/{lib → esm}/models/links/__tests__/LinkCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/links/__tests__/LinkModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/links/__tests__/normalizeLinkJSON.spec.js.flow +0 -0
- /package/{types → esm}/models/links/normalizeLinkJSON.d.ts +0 -0
- /package/{lib → esm}/models/links/normalizeLinkJSON.js.flow +0 -0
- /package/{lib → esm}/models/list/ListDetailModel.js.flow +0 -0
- /package/{lib → esm}/models/list/ListHeaderModel.js.flow +0 -0
- /package/{types → esm}/models/list/ListItemCollection.d.ts +0 -0
- /package/{lib → esm}/models/list/ListItemCollection.js.flow +0 -0
- /package/{types → esm}/models/list/ListItemModel.d.ts +0 -0
- /package/{lib → esm}/models/list/ListItemModel.js.flow +0 -0
- /package/{lib → esm}/models/list/ListModel.js.flow +0 -0
- /package/{lib → esm}/models/list/__mock__/caselist.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListDetailModel.hierarchy.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListDetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListItemCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListResultDetail.spec.js.flow +0 -0
- /package/{types → esm}/models/lookup/LookupOptionCollection.d.ts +0 -0
- /package/{lib → esm}/models/lookup/LookupOptionCollection.js.flow +0 -0
- /package/{types → esm}/models/lookup/LookupOptionsModel.d.ts +0 -0
- /package/{lib → esm}/models/lookup/LookupOptionsModel.js.flow +0 -0
- /package/{lib → esm}/models/lookup/__tests__/LookupOptionCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/lookup/__tests__/LookupOptionsModel.spec.js.flow +0 -0
- /package/{types → esm}/models/modelcatalog/ModelCatalogModel.d.ts +0 -0
- /package/{lib → esm}/models/modelcatalog/ModelCatalogModel.js.flow +0 -0
- /package/{types → esm}/models/modelcatalog/ModelCategoryCollection.d.ts +0 -0
- /package/{lib → esm}/models/modelcatalog/ModelCategoryCollection.js.flow +0 -0
- /package/{types → esm}/models/modelcatalog/ModelCategoryModel.d.ts +0 -0
- /package/{lib → esm}/models/modelcatalog/ModelCategoryModel.js.flow +0 -0
- /package/{lib → esm}/models/modelcatalog/__mock__/modelcatalog.js.flow +0 -0
- /package/{lib → esm}/models/modelcatalog/__tests__/ModelCatalogModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/paging/PagesizeModel.js.flow +0 -0
- /package/{types → esm}/models/paging/PagingModel.d.ts +0 -0
- /package/{lib → esm}/models/paging/PagingModel.js.flow +0 -0
- /package/{lib → esm}/models/paging/__tests__/PageSizeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/paging/__tests__/PagingModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/panels/GroupingPanelModel.js.flow +0 -0
- /package/{lib → esm}/models/panels/__tests__/GroupingPanelModel.spec.js.flow +0 -0
- /package/{types → esm}/models/parameter/Parameter.d.ts +0 -0
- /package/{lib → esm}/models/parameter/Parameter.js.flow +0 -0
- /package/{lib → esm}/models/parameter/__tests__/Parameter.spec.js.flow +0 -0
- /package/{types → esm}/models/process/ProcessStatusSettingsModel.d.ts +0 -0
- /package/{lib → esm}/models/process/ProcessStatusSettingsModel.js.flow +0 -0
- /package/{lib → esm}/models/process/__tests__/ProcessStatusSettingsModel.spec.js.flow +0 -0
- /package/{types → esm}/models/resolveModel.d.ts +0 -0
- /package/{lib → esm}/models/resolveModel.js.flow +0 -0
- /package/{types → esm}/models/search/CaseSearchModel.d.ts +0 -0
- /package/{lib → esm}/models/search/CaseSearchModel.js.flow +0 -0
- /package/{lib → esm}/models/search/__tests__/CaseSearchModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/sorting/SortOptionModel.js.flow +0 -0
- /package/{lib → esm}/models/sorting/SortingModel.js.flow +0 -0
- /package/{lib → esm}/models/sorting/__tests__/SortingModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/tab/TabModel.js.flow +0 -0
- /package/{lib → esm}/models/tab/__mock__/tab.js.flow +0 -0
- /package/{lib → esm}/models/tab/__mock__/tabPerson.js.flow +0 -0
- /package/{lib → esm}/models/tab/__tests__/TabModel.spec.js.flow +0 -0
- /package/{types → esm}/models/taskgroup/TaskGroupCollection.d.ts +0 -0
- /package/{lib → esm}/models/taskgroup/TaskGroupCollection.js.flow +0 -0
- /package/{types → esm}/models/taskgroup/TaskGroupModel.d.ts +0 -0
- /package/{lib → esm}/models/taskgroup/TaskGroupModel.js.flow +0 -0
- /package/{lib → esm}/models/taskgroup/__mock__/taskgroup.js.flow +0 -0
- /package/{lib → esm}/models/taskgroup/__tests__/TaskGroupModel.spec.js.flow +0 -0
- /package/{types → esm}/models/types.d.ts +0 -0
- /package/{lib → esm}/models/types.js.flow +0 -0
- /package/{types → esm}/models/user/UserModel.d.ts +0 -0
- /package/{lib → esm}/models/user/UserModel.js.flow +0 -0
- /package/{types → esm}/models/user/UserProfileModel.d.ts +0 -0
- /package/{lib → esm}/models/user/UserProfileModel.js.flow +0 -0
- /package/{lib → esm}/models/user/UserServicesModel.js.flow +0 -0
- /package/{lib → esm}/models/user/__tests__/UserModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/user/__tests__/UserProfileModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/user/__tests__/UserServicesModel.spec.js.flow +0 -0
- /package/{lib → esm}/modularui/Authenticate.js.flow +0 -0
- /package/{types → esm}/modularui/CaptchaRequest.d.ts +0 -0
- /package/{lib → esm}/modularui/CaptchaRequest.js.flow +0 -0
- /package/{types → esm}/modularui/ModularUIError.d.ts +0 -0
- /package/{lib → esm}/modularui/ModularUIError.js.flow +0 -0
- /package/{lib → esm}/modularui/ModularUIRequest.js.flow +0 -0
- /package/{lib → esm}/modularui/ModularUIResponse.js.flow +0 -0
- /package/{types → esm}/modularui/UploadRequest.d.ts +0 -0
- /package/{lib → esm}/modularui/UploadRequest.js.flow +0 -0
- /package/{lib → esm}/modularui/__tests__/CustomContextPath.spec.js.flow +0 -0
- /package/{lib → esm}/modularui/__tests__/ModularUIError.spec.js.flow +0 -0
- /package/{lib → esm}/modularui/__tests__/ModularUIRequest.spec.js.flow +0 -0
- /package/{types → esm}/modularui/index.d.ts +0 -0
- /package/{lib → esm}/modularui/index.js.flow +0 -0
- /package/{types → esm}/modularui/types.d.ts +0 -0
- /package/{lib → esm}/modularui/types.js.flow +0 -0
- /package/{types → esm}/react/ErrorBoundary.d.ts +0 -0
- /package/{lib → esm}/react/ErrorBoundary.js.flow +0 -0
- /package/{types → esm}/react/ErrorBoundaryFallback.d.ts +0 -0
- /package/{lib → esm}/react/ErrorBoundaryFallback.js.flow +0 -0
- /package/{types → esm}/react/index.d.ts +0 -0
- /package/{lib → esm}/react/index.js.flow +0 -0
- /package/{types → esm}/react/utils.d.ts +0 -0
- /package/{lib → esm}/react/utils.js.flow +0 -0
- /package/{types → esm}/react-client/Init.d.ts +0 -0
- /package/{lib → esm}/react-client/Init.js.flow +0 -0
- /package/{types → esm}/react-client/client.d.ts +0 -0
- /package/{lib → esm}/react-client/client.js.flow +0 -0
- /package/{types → esm}/react-client/contextPath.d.ts +0 -0
- /package/{lib → esm}/react-client/contextPath.js.flow +0 -0
- /package/{types → esm}/react-client/index.d.ts +0 -0
- /package/{lib → esm}/react-client/index.js.flow +0 -0
- /package/{types → esm}/react-client/rehydrate.d.ts +0 -0
- /package/{lib → esm}/react-client/rehydrate.js.flow +0 -0
- /package/{lib → esm}/react-server/__tests__/htmlpage.spec.js.flow +0 -0
- /package/{lib → esm}/react-server/__tests__/serverUtil.spec.js.flow +0 -0
- /package/{types → esm}/react-server/contextPath.d.ts +0 -0
- /package/{lib → esm}/react-server/contextPath.js.flow +0 -0
- /package/{types → esm}/react-server/createSSRComplete.d.ts +0 -0
- /package/{lib → esm}/react-server/createSSRComplete.js.flow +0 -0
- /package/{types → esm}/react-server/htmlpage.d.ts +0 -0
- /package/{lib → esm}/react-server/htmlpage.js.flow +0 -0
- /package/{types → esm}/react-server/index.d.ts +0 -0
- /package/{lib → esm}/react-server/index.js.flow +0 -0
- /package/{types → esm}/react-server/renderSSRComplete.d.ts +0 -0
- /package/{lib → esm}/react-server/renderSSRComplete.js.flow +0 -0
- /package/{types → esm}/react-server/renderSSRMinimal.d.ts +0 -0
- /package/{lib → esm}/react-server/renderSSRMinimal.js.flow +0 -0
- /package/{types → esm}/react-server/requestInformation.d.ts +0 -0
- /package/{lib → esm}/react-server/requestInformation.js.flow +0 -0
- /package/{types → esm}/react-server/serverNoSSR.d.ts +0 -0
- /package/{lib → esm}/react-server/serverNoSSR.js.flow +0 -0
- /package/{types → esm}/react-server/serverSSR.d.ts +0 -0
- /package/{lib → esm}/react-server/serverSSR.js.flow +0 -0
- /package/{lib → esm}/react-server/serverUtil.js.flow +0 -0
- /package/{types → esm}/react-theme/ThemeProvider.d.ts +0 -0
- /package/{lib → esm}/react-theme/ThemeProvider.js.flow +0 -0
- /package/{lib → esm}/react-theme/__tests__/ThemeProvider.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/__tests__/createTheme.spec.js.flow +0 -0
- /package/{types → esm}/react-theme/createTheme.d.ts +0 -0
- /package/{lib → esm}/react-theme/createTheme.js.flow +0 -0
- /package/{types → esm}/react-theme/index.d.ts +0 -0
- /package/{lib → esm}/react-theme/index.js.flow +0 -0
- /package/{types → esm}/react-theme/types.d.ts +0 -0
- /package/{lib → esm}/react-theme/types.js.flow +0 -0
- /package/{types → esm}/react-theme/useTheme.d.ts +0 -0
- /package/{lib → esm}/react-theme/useTheme.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/background.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/colors.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/contrast.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/corners.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/spacers.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/themeProps.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/background.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/colors.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/contrast.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/corners.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/spacers.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/themeProps.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/I18nActions.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/I18nActions.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/I18nReducer.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/I18nReducer.js.flow +0 -0
- /package/{lib → esm}/redux/_i18n/__tests__/actions.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_i18n/__tests__/reducer.spec.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/index.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/index.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/types.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/types.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIActions.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIConnector.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIConnector.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIMiddleware.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIMiddleware.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIReducer.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIReducer.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUISelectors.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUISelectors.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIUtils.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIUtils.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/__tests__/actions.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/__tests__/reducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/__tests__/selectors.spec.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/index.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/index.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/types.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/withModularUI.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/withModularUI.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterActions.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterActions.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterConnectors.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterConnectors.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterMiddleware.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterMiddleware.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterReducer.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterReducer.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/actions.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/hooks.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/middleware.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/reducer.spec.js.flow +0 -0
- /package/{types → esm}/redux/_router/index.d.ts +0 -0
- /package/{lib → esm}/redux/_router/index.js.flow +0 -0
- /package/{types → esm}/redux/_router/types.d.ts +0 -0
- /package/{lib → esm}/redux/_router/types.js.flow +0 -0
- /package/{types → esm}/redux/actions/Application.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Application.js.flow +0 -0
- /package/{types → esm}/redux/actions/Authorization.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Authorization.js.flow +0 -0
- /package/{types → esm}/redux/actions/Error.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Error.js.flow +0 -0
- /package/{types → esm}/redux/actions/Form.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Form.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAttributeSet.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAttributeSet.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAttributeSetRepeatable.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAttributeSetRepeatable.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAutosave.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAutosave.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAutosubmit.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAutosubmit.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAutoupdate.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAutoupdate.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormValidations.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormValidations.js.flow +0 -0
- /package/{types → esm}/redux/actions/Modals.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Modals.js.flow +0 -0
- /package/{types → esm}/redux/actions/ModelCatalog.d.ts +0 -0
- /package/{lib → esm}/redux/actions/ModelCatalog.js.flow +0 -0
- /package/{lib → esm}/redux/actions/Notification.js.flow +0 -0
- /package/{types → esm}/redux/actions/Preferences.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Preferences.js.flow +0 -0
- /package/{types → esm}/redux/actions/ProgressIndicator.d.ts +0 -0
- /package/{lib → esm}/redux/actions/ProgressIndicator.js.flow +0 -0
- /package/{types → esm}/redux/actions/SignIn.d.ts +0 -0
- /package/{lib → esm}/redux/actions/SignIn.js.flow +0 -0
- /package/{types → esm}/redux/actions/SignOut.d.ts +0 -0
- /package/{lib → esm}/redux/actions/SignOut.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Application.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Authorization.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/CustomErrorResponseHandler.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Error-server.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Error.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Form.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Modals.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Notification.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Preferences.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/ProgressIndicator.spec.js.flow +0 -0
- /package/{types → esm}/redux/actions/index.d.ts +0 -0
- /package/{lib → esm}/redux/actions/index.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Application.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Application.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Breadcrumb.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Breadcrumb.js.flow +0 -0
- /package/{types → esm}/redux/connectors/CaseView.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/CaseView.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ConceptDetail.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ConceptDetail.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ContentBrowser.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ContentBrowser.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ContentDetail.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ContentDetail.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ContentDetailSection.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ContentDetailSection.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Form.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Form.js.flow +0 -0
- /package/{types → esm}/redux/connectors/FormAttributeSet.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/FormAttributeSet.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ListDetail.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ListDetail.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Modal.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Modal.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ModelCatalog.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ModelCatalog.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Notification.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Notification.js.flow +0 -0
- /package/{types → esm}/redux/connectors/PanelRenderer.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/PanelRenderer.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Preferences.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Preferences.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Progress.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Progress.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ProgressIndicator.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ProgressIndicator.js.flow +0 -0
- /package/{types → esm}/redux/connectors/QuickSearch.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/QuickSearch.js.flow +0 -0
- /package/{types → esm}/redux/connectors/SignIn.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/SignIn.js.flow +0 -0
- /package/{types → esm}/redux/connectors/SignOut.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/SignOut.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Tab.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Tab.js.flow +0 -0
- /package/{types → esm}/redux/connectors/index.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/index.js.flow +0 -0
- /package/{types → esm}/redux/index.d.ts +0 -0
- /package/{lib → esm}/redux/index.js.flow +0 -0
- /package/{types → esm}/redux/reducers/AuthReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/AuthReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ErrorReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ErrorReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ModalsReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ModalsReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ModelCatalogReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ModelCatalogReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/NotificationReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/NotificationReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/PreferencesReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/PreferencesReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ProgressIndicatorReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ProgressIndicatorReducer.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/AuthReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ErrorReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ModalsReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ModelCatalogReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/NotificationReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/PreferencesReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ProgressIndicatorReducer.spec.js.flow +0 -0
- /package/{types → esm}/redux/reducers/createReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/createReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/index.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/index.js.flow +0 -0
- /package/{types → esm}/redux/selectors/i18n.d.ts +0 -0
- /package/{lib → esm}/redux/selectors/i18n.js.flow +0 -0
- /package/{types → esm}/redux/selectors/index.d.ts +0 -0
- /package/{lib → esm}/redux/selectors/index.js.flow +0 -0
- /package/{types → esm}/redux/selectors/modelcatalog.d.ts +0 -0
- /package/{lib → esm}/redux/selectors/modelcatalog.js.flow +0 -0
- /package/{lib → esm}/redux/store/__tests__/beforeRenderHooks.spec.js.flow +0 -0
- /package/{lib → esm}/redux/store/beforeRenderHooks.js.flow +0 -0
- /package/{lib → esm}/redux/store/configureStore.js.flow +0 -0
- /package/{types → esm}/redux/types.d.ts +0 -0
- /package/{lib → esm}/redux/types.js.flow +0 -0
- /package/{types → esm}/utils/browser/Cache.d.ts +0 -0
- /package/{lib → esm}/utils/browser/Cache.js.flow +0 -0
- /package/{types → esm}/utils/browser/Cookies.d.ts +0 -0
- /package/{lib → esm}/utils/browser/Cookies.js.flow +0 -0
- /package/{lib → esm}/utils/browser/__tests__/Cookies.spec.js.flow +0 -0
- /package/{types → esm}/utils/datetime/DateTimeUtil.d.ts +0 -0
- /package/{lib → esm}/utils/datetime/DateTimeUtil.js.flow +0 -0
- /package/{lib → esm}/utils/datetime/__tests__/DateTime.spec.js.flow +0 -0
- /package/{lib → esm}/utils/datetime/__tests__/DateTimeFormat.spec.js.flow +0 -0
- /package/{types → esm}/utils/fetch/__mocks__/universalFetch.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/__mocks__/universalFetch.js.flow +0 -0
- /package/{lib → esm}/utils/fetch/__tests__/xhr.spec.js.flow +0 -0
- /package/{types → esm}/utils/fetch/serverFetch.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/serverFetch.js.flow +0 -0
- /package/{types → esm}/utils/fetch/types.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/types.js.flow +0 -0
- /package/{types → esm}/utils/fetch/universalFetch.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/universalFetch.js.flow +0 -0
- /package/{types → esm}/utils/fetch/xhr.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/xhr.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/checkResource.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/createHash.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/createHref.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/objects.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/sanitizeHTML.spec.js.flow +0 -0
- /package/{types → esm}/utils/helpers/checkResource.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/checkResource.js.flow +0 -0
- /package/{types → esm}/utils/helpers/createHash.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/createHash.js.flow +0 -0
- /package/{types → esm}/utils/helpers/createHref.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/createHref.js.flow +0 -0
- /package/{types → esm}/utils/helpers/createUUID.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/createUUID.js.flow +0 -0
- /package/{types → esm}/utils/helpers/index.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/index.js.flow +0 -0
- /package/{types → esm}/utils/helpers/objects.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/objects.js.flow +0 -0
- /package/{types → esm}/utils/helpers/repositoryResource.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/repositoryResource.js.flow +0 -0
- /package/{types → esm}/utils/helpers/sanitizeHtml.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/sanitizeHtml.js.flow +0 -0
- /package/{types → esm}/utils/helpers/text.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/text.js.flow +0 -0
- /package/{types → esm}/utils/index.d.ts +0 -0
- /package/{lib → esm}/utils/index.js.flow +0 -0
- /package/{types → esm}/utils/number/DecimalFormat.d.ts +0 -0
- /package/{lib → esm}/utils/number/DecimalFormat.js.flow +0 -0
- /package/{lib → esm}/utils/number/__tests__/formatValue.spec.js.flow +0 -0
- /package/{lib → esm}/utils/number/__tests__/parseNumbers.spec.js.flow +0 -0
- /package/{types → esm}/utils/number/formatValue.d.ts +0 -0
- /package/{lib → esm}/utils/number/formatValue.js.flow +0 -0
- /package/{types → esm}/utils/number/parseNumbers.d.ts +0 -0
- /package/{lib → esm}/utils/number/parseNumbers.js.flow +0 -0
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
type ChoiceAttributeOptionModelOptions = {
|
|
2
|
-
ModelOptions: any;
|
|
3
|
-
referenceDate: ISO_DATE;
|
|
4
|
-
};
|
|
5
|
-
export default ChoiceAttributeOptionModel;
|
|
6
|
-
/**
|
|
7
|
-
*/
|
|
8
|
-
declare class ChoiceAttributeOptionModel extends BaseModel {
|
|
9
|
-
/**
|
|
10
|
-
*/
|
|
11
|
-
static createFromListItemModel(listitem: ListItemModel): ChoiceAttributeOptionModel;
|
|
12
|
-
/**
|
|
13
|
-
*/
|
|
14
|
-
constructor(selectedValues?: Array<string>, option?: Object, modelOptions?: ChoiceAttributeOptionModelOptions);
|
|
15
|
-
_code: string;
|
|
16
|
-
_isSelected: boolean;
|
|
17
|
-
_referenceDate: ISO_DATE;
|
|
18
|
-
_level: number;
|
|
19
|
-
_children: ChoiceAttributeOptionCollection;
|
|
20
|
-
_concept: ConceptDetailModel | null;
|
|
21
|
-
_links: LinkCollection;
|
|
22
|
-
_attributeCollection: AttributeCollection;
|
|
23
|
-
_content: AttributeContent;
|
|
24
|
-
_isUser: boolean;
|
|
25
|
-
/**
|
|
26
|
-
*/
|
|
27
|
-
set code(code: string);
|
|
28
|
-
/**
|
|
29
|
-
* Get code of option
|
|
30
|
-
*/
|
|
31
|
-
get code(): string;
|
|
32
|
-
/**
|
|
33
|
-
* Indicates that this a choice attribute option model, used when adding options to a choice attribute
|
|
34
|
-
* @returns {boolean}
|
|
35
|
-
*/
|
|
36
|
-
get isChoiceAttributeOptionModel(): boolean;
|
|
37
|
-
/**
|
|
38
|
-
*/
|
|
39
|
-
getInitialChildModelLinks(): Array<LinkModel>;
|
|
40
|
-
/**
|
|
41
|
-
*/
|
|
42
|
-
setChildModels(models: Array<ModularUIModel>, errors: Array<ErrorResponse>): void;
|
|
43
|
-
/**
|
|
44
|
-
* Set the concept
|
|
45
|
-
*/
|
|
46
|
-
set concept(concept: ConceptDetailModel | null);
|
|
47
|
-
/**
|
|
48
|
-
* Get concept information
|
|
49
|
-
*/
|
|
50
|
-
get concept(): ConceptDetailModel | null;
|
|
51
|
-
/**
|
|
52
|
-
*/
|
|
53
|
-
equals(model: ChoiceAttributeOptionModel): boolean;
|
|
54
|
-
/**
|
|
55
|
-
*/
|
|
56
|
-
set attributeCollection(attributeCollection: AttributeCollection);
|
|
57
|
-
/**
|
|
58
|
-
* Retrieve attributes for Composite codemaps (e.g. table and case list codemaps)
|
|
59
|
-
*/
|
|
60
|
-
get attributeCollection(): AttributeCollection;
|
|
61
|
-
/**
|
|
62
|
-
*/
|
|
63
|
-
createAttributeCollection(modelOptions?: ChoiceAttributeOptionModelOptions): AttributeCollection;
|
|
64
|
-
/**
|
|
65
|
-
* Get label of option for simple codemaps (e.g. static codemap)
|
|
66
|
-
*/
|
|
67
|
-
get label(): string;
|
|
68
|
-
/**
|
|
69
|
-
* Retrieve the first permitted label to render when a concept and contentConfiguration is available
|
|
70
|
-
* Be aware that permission could be in place for labels from a concept.
|
|
71
|
-
*/
|
|
72
|
-
getContentConfiguredLabel(contentConfiguration: Object): string;
|
|
73
|
-
/**
|
|
74
|
-
* Set selected property of option
|
|
75
|
-
*/
|
|
76
|
-
set selected(selected: boolean);
|
|
77
|
-
/**
|
|
78
|
-
* Indicates if option is selected
|
|
79
|
-
*/
|
|
80
|
-
get selected(): boolean;
|
|
81
|
-
/**
|
|
82
|
-
* Retrieve count of filter for option
|
|
83
|
-
*/
|
|
84
|
-
get count(): number | null;
|
|
85
|
-
/**
|
|
86
|
-
*/
|
|
87
|
-
addChildren(selectedValues?: Array<string>, option?: Object, modelOptions?: ChoiceAttributeOptionModelOptions): ChoiceAttributeOptionCollection;
|
|
88
|
-
/**
|
|
89
|
-
* get children of option
|
|
90
|
-
*/
|
|
91
|
-
get children(): ChoiceAttributeOptionCollection;
|
|
92
|
-
/**
|
|
93
|
-
*/
|
|
94
|
-
set links(links: LinkCollection);
|
|
95
|
-
/**
|
|
96
|
-
* Retrieve links of attribute
|
|
97
|
-
*/
|
|
98
|
-
get links(): LinkCollection;
|
|
99
|
-
/**
|
|
100
|
-
*/
|
|
101
|
-
set referenceDate(date: ISO_DATE);
|
|
102
|
-
/**
|
|
103
|
-
* referenceDate received from attribute
|
|
104
|
-
*/
|
|
105
|
-
get referenceDate(): ISO_DATE;
|
|
106
|
-
/**
|
|
107
|
-
* Retrieve concept link of attribute when available
|
|
108
|
-
*/
|
|
109
|
-
get conceptLink(): LinkModel | null;
|
|
110
|
-
/**
|
|
111
|
-
*
|
|
112
|
-
*/
|
|
113
|
-
get avatarLink(): LinkModel | null;
|
|
114
|
-
/**
|
|
115
|
-
* Set level of option
|
|
116
|
-
*/
|
|
117
|
-
set level(level: number);
|
|
118
|
-
/**
|
|
119
|
-
* Get level of option, used in tree view choice attributes (taxonomy)
|
|
120
|
-
*/
|
|
121
|
-
get level(): number;
|
|
122
|
-
/**
|
|
123
|
-
*/
|
|
124
|
-
get isBooleanType(): boolean;
|
|
125
|
-
/**
|
|
126
|
-
*/
|
|
127
|
-
get hasAlternativeLabel(): boolean;
|
|
128
|
-
/**
|
|
129
|
-
*/
|
|
130
|
-
mergeOption(withOption: ChoiceAttributeOptionModel): void;
|
|
131
|
-
/**
|
|
132
|
-
* Indicates if content comes from the data service
|
|
133
|
-
*/
|
|
134
|
-
get hasContentFromData(): boolean;
|
|
135
|
-
/**
|
|
136
|
-
*/
|
|
137
|
-
get content(): AttributeContent;
|
|
138
|
-
/**
|
|
139
|
-
*/
|
|
140
|
-
get isUser(): boolean;
|
|
141
|
-
}
|
|
142
|
-
import BaseModel from "../base/BaseModel";
|
|
143
|
-
import ChoiceAttributeOptionCollection from "./ChoiceAttributeOptionCollection";
|
|
144
|
-
import ConceptDetailModel from "../concepts/ConceptDetailModel";
|
|
145
|
-
import LinkCollection from "../links/LinkCollection";
|
|
146
|
-
import AttributeCollection from "./AttributeCollection";
|
|
147
|
-
import AttributeContent from "./AttributeContent";
|
|
148
|
-
import LinkModel from "../links/LinkModel";
|
|
149
|
-
import { ModularUIModel } from "../types";
|
|
150
|
-
import ErrorResponse from "../error/ErrorResponse";
|
|
151
|
-
import ListItemModel from "../list/ListItemModel";
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
export default DatetimeAttributeModel;
|
|
2
|
-
/**
|
|
3
|
-
*/
|
|
4
|
-
declare class DatetimeAttributeModel extends StringAttributeModel {
|
|
5
|
-
_dateInputFormat: string | null;
|
|
6
|
-
_timeInputFormat: string | null;
|
|
7
|
-
/**
|
|
8
|
-
*/
|
|
9
|
-
get formatUtil(): {
|
|
10
|
-
_isoFormat: string;
|
|
11
|
-
_doOffsets: boolean;
|
|
12
|
-
_timeZone: string;
|
|
13
|
-
readonly doOffsets: boolean;
|
|
14
|
-
getOptions(): {
|
|
15
|
-
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
16
|
-
firstWeekContainsDate: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
17
|
-
};
|
|
18
|
-
getIsoFormat(): string;
|
|
19
|
-
convertFormat(javaFormat: string): string;
|
|
20
|
-
getLocale(): import("date-fns/types").Locale;
|
|
21
|
-
toDate(date: string | Date, inputFormat?: string): Date;
|
|
22
|
-
toFormat(date: string | Date, targetFormat: string, inputFormat?: string): string;
|
|
23
|
-
toISO(date: string | Date, sourceFormat?: string): string;
|
|
24
|
-
now(): string;
|
|
25
|
-
hasFormat(date: string, sourceFormat: string): boolean;
|
|
26
|
-
isValid(date: string | void | Date | null, inputFormat?: string): boolean;
|
|
27
|
-
isAfter(inputDate: string | Date, afterISODate: string | Date | null, inputFormat?: string): boolean;
|
|
28
|
-
isSameOrAfter(inputDate: string | Date, afterISODate: string | Date | null, inputFormat?: string): boolean;
|
|
29
|
-
isBefore(inputDate: string | Date, beforeISODate: string | Date | null, inputFormat?: string): boolean;
|
|
30
|
-
isSameOrBefore(inputDate: string | Date, beforeISODate: string | Date | null, inputFormat?: string): boolean;
|
|
31
|
-
isSame(inputDate: string | Date, compareDate: string | Date | null, inputFormat?: string): boolean;
|
|
32
|
-
isSameDay(inputDate: string | Date, compareDate: string | Date, inputFormat?: string): boolean;
|
|
33
|
-
isOther(inputDate: string | Date, compareDate: string | Date | null, inputFormat?: string): boolean;
|
|
34
|
-
isWeekend(inputDate: string | Date): boolean;
|
|
35
|
-
isAmbiguous(inputDate: string | Date, inputFormat?: string): boolean;
|
|
36
|
-
_calculate(date: string | Date, calculationFn: Function, property: string, value: number, inputFormat?: string): string;
|
|
37
|
-
addSeconds(date: string, amount: number, inputFormat?: string): string;
|
|
38
|
-
addMinutes(date: string, amount: number, inputFormat?: string): string;
|
|
39
|
-
addHours(date: string, amount: number, inputFormat?: string): string;
|
|
40
|
-
addDays(date: string, amount: number, inputFormat?: string): string;
|
|
41
|
-
addWeeks(date: string, amount: number, inputFormat?: string): string;
|
|
42
|
-
addMonths(date: string, amount: number, inputFormat?: string): string;
|
|
43
|
-
addYears(date: string, amount: number, inputFormat?: string): string;
|
|
44
|
-
subtractSeconds(date: string, amount: number, inputFormat?: string): string;
|
|
45
|
-
subtractMinutes(date: string, amount: number, inputFormat?: string): string;
|
|
46
|
-
subtractHours(date: string, amount: number, inputFormat?: string): string;
|
|
47
|
-
subtractDays(date: string, amount: number, inputFormat?: string): string;
|
|
48
|
-
subtractWeeks(date: string, amount: number, inputFormat?: string): string;
|
|
49
|
-
subtractMonths(date: string, amount: number, inputFormat?: string): string;
|
|
50
|
-
subtractYears(date: string, amount: number, inputFormat?: string): string;
|
|
51
|
-
_get(date: string | Date, method: Function, inputFormat?: string, options?: Object): string;
|
|
52
|
-
startOfMonth(date: string | Date, inputFormat?: string): string;
|
|
53
|
-
endOfMonth(date: string | Date, inputFormat?: string): string;
|
|
54
|
-
startOfWeek(date: string | Date, inputFormat?: string): string;
|
|
55
|
-
getHours(date: string | Date, inputFormat?: string): number;
|
|
56
|
-
getMinutes(date: string | Date, inputFormat?: string): number;
|
|
57
|
-
getWeek(date: string | Date, inputFormat?: string): number;
|
|
58
|
-
_set(date: string | Date, property: string, value: number, inputFormat?: string): string;
|
|
59
|
-
setYear(date: string | Date, year: number, inputFormat?: string): string;
|
|
60
|
-
setMonth(date: string | Date, month: number, inputFormat?: string): string;
|
|
61
|
-
setDay(date: string | Date, day: number, inputFormat?: string): string;
|
|
62
|
-
setHour(date: string | Date, hour: number, inputFormat?: string): string;
|
|
63
|
-
setMinute(date: string | Date, minute: number, inputFormat?: string): string;
|
|
64
|
-
setSecond(date: string | Date, second: number, inputFormat?: string): string;
|
|
65
|
-
setMilliseconds(date: string | Date, millisecond: number, inputFormat?: string): string;
|
|
66
|
-
setTime(date: string, hours: number, minutes: number, seconds: number, milliseconds: number, inputFormat?: string): string;
|
|
67
|
-
getTimeZone(): string;
|
|
68
|
-
setTimeZone(timeZone: string): void;
|
|
69
|
-
getDateFnsContext(): Function | null;
|
|
70
|
-
getOffset(date: string | Date, inputFormat?: string): OffsetInfo | null;
|
|
71
|
-
getTimezoneOffsets(): {
|
|
72
|
-
standard?: OffsetInfo | undefined;
|
|
73
|
-
daylight?: OffsetInfo | undefined;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
*/
|
|
78
|
-
getInitValue(): string | null;
|
|
79
|
-
/**
|
|
80
|
-
*/
|
|
81
|
-
getTimeValue(value: string): string;
|
|
82
|
-
/**
|
|
83
|
-
* Set time in the correct value based on available elements in the time format
|
|
84
|
-
*/
|
|
85
|
-
updateInitValue(): void;
|
|
86
|
-
/**
|
|
87
|
-
* Get initial user input value
|
|
88
|
-
*/
|
|
89
|
-
getInitialInputValue(value?: string): string;
|
|
90
|
-
/**
|
|
91
|
-
* Get date format
|
|
92
|
-
*/
|
|
93
|
-
get format(): string;
|
|
94
|
-
/**
|
|
95
|
-
*/
|
|
96
|
-
get hasDate(): boolean;
|
|
97
|
-
/**
|
|
98
|
-
*/
|
|
99
|
-
get hasTime(): boolean;
|
|
100
|
-
/**
|
|
101
|
-
*/
|
|
102
|
-
get inputFormatWithoutOffset(): string;
|
|
103
|
-
/**
|
|
104
|
-
*/
|
|
105
|
-
get inputFormat(): string;
|
|
106
|
-
/**
|
|
107
|
-
*/
|
|
108
|
-
extractDateInputFormat(): string;
|
|
109
|
-
/**
|
|
110
|
-
*/
|
|
111
|
-
get dateInputFormat(): string;
|
|
112
|
-
/**
|
|
113
|
-
*/
|
|
114
|
-
get dateReadonlyFormat(): string;
|
|
115
|
-
/**
|
|
116
|
-
*/
|
|
117
|
-
get timeInputFormat(): string;
|
|
118
|
-
/**
|
|
119
|
-
*/
|
|
120
|
-
get timeReadonlyFormat(): string;
|
|
121
|
-
/**
|
|
122
|
-
*/
|
|
123
|
-
get dateInputValue(): string;
|
|
124
|
-
/**
|
|
125
|
-
*/
|
|
126
|
-
get timeInputValue(): string;
|
|
127
|
-
/**
|
|
128
|
-
*/
|
|
129
|
-
get isAmbiguous(): boolean;
|
|
130
|
-
/**
|
|
131
|
-
*/
|
|
132
|
-
get offset(): OffsetInfo | null;
|
|
133
|
-
/**
|
|
134
|
-
* Get minimum date
|
|
135
|
-
*/
|
|
136
|
-
get mindate(): string | null;
|
|
137
|
-
/**
|
|
138
|
-
* Get maximum date
|
|
139
|
-
*/
|
|
140
|
-
get maxdate(): string | null;
|
|
141
|
-
/**
|
|
142
|
-
*/
|
|
143
|
-
getFormatConstraint(): IConstraintModel;
|
|
144
|
-
}
|
|
145
|
-
import StringAttributeModel from "./StringAttributeModel";
|
|
146
|
-
import { OffsetInfo } from "../../utils/datetime/DateTimeUtil";
|
|
147
|
-
import { IConstraintModel } from "../types";
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Password attribute
|
|
3
|
-
*/
|
|
4
|
-
export default class PasswordAttributeModel extends StringAttributeModel {
|
|
5
|
-
_confirmValue: string;
|
|
6
|
-
_isConfirmPassword: boolean;
|
|
7
|
-
_otherLabel: string;
|
|
8
|
-
/**
|
|
9
|
-
* Update the attribute by name and value
|
|
10
|
-
*/
|
|
11
|
-
update(value: string): PasswordAttributeModel;
|
|
12
|
-
/**
|
|
13
|
-
*/
|
|
14
|
-
get constraints(): Object;
|
|
15
|
-
/**
|
|
16
|
-
*/
|
|
17
|
-
get upperAndLowerCaseMandatory(): boolean | null;
|
|
18
|
-
/**
|
|
19
|
-
*/
|
|
20
|
-
get maxSequenceOfIdenticalCharacters(): number | null;
|
|
21
|
-
/**
|
|
22
|
-
*/
|
|
23
|
-
get maxSequenceOfUsernameCharacters(): number | null;
|
|
24
|
-
/**
|
|
25
|
-
*/
|
|
26
|
-
get minNumberOfNumericCharacters(): number | null;
|
|
27
|
-
/**
|
|
28
|
-
*/
|
|
29
|
-
get minNumberOfSpecialCharacters(): number | null;
|
|
30
|
-
/**
|
|
31
|
-
*/
|
|
32
|
-
get regexConstraints(): RegexObject[] | null;
|
|
33
|
-
/**
|
|
34
|
-
* Constraints for a confirmation password
|
|
35
|
-
*/
|
|
36
|
-
getConfirmPasswordConstraints(): ConstraintCollection;
|
|
37
|
-
/**
|
|
38
|
-
* Constrains for a standard password
|
|
39
|
-
*/
|
|
40
|
-
getStandardPasswordConstraints(): ConstraintCollection;
|
|
41
|
-
/**
|
|
42
|
-
*/
|
|
43
|
-
set isConfirmPassword(isConfirmPassword: boolean | null);
|
|
44
|
-
/**
|
|
45
|
-
*/
|
|
46
|
-
get isConfirmPassword(): boolean | null;
|
|
47
|
-
/**
|
|
48
|
-
*/
|
|
49
|
-
set confirmValue(confirmValue: string);
|
|
50
|
-
/**
|
|
51
|
-
*/
|
|
52
|
-
get confirmValue(): string;
|
|
53
|
-
/**
|
|
54
|
-
*/
|
|
55
|
-
set otherLabel(otherLabel: string);
|
|
56
|
-
/**
|
|
57
|
-
*/
|
|
58
|
-
get otherLabel(): string;
|
|
59
|
-
}
|
|
60
|
-
import StringAttributeModel from "./StringAttributeModel";
|
|
61
|
-
import { RegexObject } from "./input-constraints/RegexConstraint";
|
|
62
|
-
import ConstraintCollection from "./input-constraints/ConstraintCollection";
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Upload attribute
|
|
3
|
-
*/
|
|
4
|
-
export default class UploadAttributeModel extends StringAttributeModel {
|
|
5
|
-
_files: FilesType;
|
|
6
|
-
_initialTotalFileSize: number;
|
|
7
|
-
_maxTotalFileSize: number;
|
|
8
|
-
/**
|
|
9
|
-
* Retrieve single or multi upload
|
|
10
|
-
*/
|
|
11
|
-
get multiple(): boolean;
|
|
12
|
-
/**
|
|
13
|
-
*/
|
|
14
|
-
set initialTotalFileSize(initialTotalFileSize: number);
|
|
15
|
-
/**
|
|
16
|
-
*/
|
|
17
|
-
get initialTotalFileSize(): number;
|
|
18
|
-
/**
|
|
19
|
-
*/
|
|
20
|
-
set maxTotalFileSize(maxTotalFileSize: number);
|
|
21
|
-
/**
|
|
22
|
-
*/
|
|
23
|
-
get maxTotalFileSize(): number;
|
|
24
|
-
/**
|
|
25
|
-
*/
|
|
26
|
-
get currentFilesize(): number;
|
|
27
|
-
/**
|
|
28
|
-
*/
|
|
29
|
-
get maxFileSize(): number | null;
|
|
30
|
-
/**
|
|
31
|
-
*/
|
|
32
|
-
get uploadedFileSize(): number;
|
|
33
|
-
/**
|
|
34
|
-
* Upload constraints
|
|
35
|
-
*/
|
|
36
|
-
get uploadConstraints(): {
|
|
37
|
-
fileTypes: FiletypeConstraintsType;
|
|
38
|
-
maxFileSize: FilesizeConstraintsType;
|
|
39
|
-
acceptedFiles: Array<string>;
|
|
40
|
-
};
|
|
41
|
-
/**
|
|
42
|
-
* Array of accepted file extensions and mime types.
|
|
43
|
-
* Convenience method for accept attribute of file input html control
|
|
44
|
-
*/
|
|
45
|
-
get acceptedFiles(): string[];
|
|
46
|
-
/**
|
|
47
|
-
*/
|
|
48
|
-
set files(files: FilesType);
|
|
49
|
-
/**
|
|
50
|
-
*/
|
|
51
|
-
get files(): FilesType;
|
|
52
|
-
/**
|
|
53
|
-
* Update the attribute
|
|
54
|
-
*/
|
|
55
|
-
update(value: string): UploadAttributeModel;
|
|
56
|
-
}
|
|
57
|
-
import StringAttributeModel from "./StringAttributeModel";
|
|
58
|
-
import { FilesType } from "../types";
|
|
59
|
-
import { FiletypeConstraintsType } from "../types";
|
|
60
|
-
import { FilesizeConstraintsType } from "../types";
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
export default DateBoundaryConstraint;
|
|
2
|
-
/**
|
|
3
|
-
*/
|
|
4
|
-
declare class DateBoundaryConstraint {
|
|
5
|
-
/**
|
|
6
|
-
*/
|
|
7
|
-
constructor(type: string, minDate?: string | null, maxDate?: string | null, format?: string);
|
|
8
|
-
_type: string;
|
|
9
|
-
_format: string;
|
|
10
|
-
_formatNoOffset: string;
|
|
11
|
-
_minDate: string | null;
|
|
12
|
-
_maxDate: string | null;
|
|
13
|
-
/**
|
|
14
|
-
*/
|
|
15
|
-
get type(): string;
|
|
16
|
-
/**
|
|
17
|
-
*/
|
|
18
|
-
get id(): string;
|
|
19
|
-
/**
|
|
20
|
-
*/
|
|
21
|
-
get format(): string;
|
|
22
|
-
/**
|
|
23
|
-
*/
|
|
24
|
-
get minDate(): string | null;
|
|
25
|
-
/**
|
|
26
|
-
*/
|
|
27
|
-
get maxDate(): string | null;
|
|
28
|
-
/**
|
|
29
|
-
*/
|
|
30
|
-
get defaultMessage(): string;
|
|
31
|
-
/**
|
|
32
|
-
*/
|
|
33
|
-
get parameters(): {
|
|
34
|
-
"max-date": string | null;
|
|
35
|
-
"min-date": string | null;
|
|
36
|
-
};
|
|
37
|
-
/**
|
|
38
|
-
*/
|
|
39
|
-
hasValidation(): boolean;
|
|
40
|
-
/**
|
|
41
|
-
*/
|
|
42
|
-
isExactDate(value: string): boolean;
|
|
43
|
-
/**
|
|
44
|
-
*/
|
|
45
|
-
isBetweenDates(value: string): boolean;
|
|
46
|
-
/**
|
|
47
|
-
*/
|
|
48
|
-
isSameOrAfterMinDate(value: string): boolean;
|
|
49
|
-
/**
|
|
50
|
-
*/
|
|
51
|
-
isSameOrBeforeMaxDate(value: string): boolean;
|
|
52
|
-
/**
|
|
53
|
-
*/
|
|
54
|
-
get formatUtil(): {
|
|
55
|
-
_isoFormat: string;
|
|
56
|
-
_doOffsets: boolean;
|
|
57
|
-
_timeZone: string;
|
|
58
|
-
readonly doOffsets: boolean;
|
|
59
|
-
getOptions(): {
|
|
60
|
-
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
61
|
-
firstWeekContainsDate: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
62
|
-
};
|
|
63
|
-
getIsoFormat(): string;
|
|
64
|
-
convertFormat(javaFormat: string): string;
|
|
65
|
-
getLocale(): import("date-fns/types").Locale;
|
|
66
|
-
toDate(date: string | Date, inputFormat?: string): Date;
|
|
67
|
-
toFormat(date: string | Date, targetFormat: string, inputFormat?: string): string;
|
|
68
|
-
toISO(date: string | Date, sourceFormat?: string): string;
|
|
69
|
-
now(): string;
|
|
70
|
-
hasFormat(date: string, sourceFormat: string): boolean;
|
|
71
|
-
isValid(date: string | void | Date | null, inputFormat?: string): boolean;
|
|
72
|
-
isAfter(inputDate: string | Date, afterISODate: string | Date | null, inputFormat?: string): boolean;
|
|
73
|
-
isSameOrAfter(inputDate: string | Date, afterISODate: string | Date | null, inputFormat?: string): boolean;
|
|
74
|
-
isBefore(inputDate: string | Date, beforeISODate: string | Date | null, inputFormat?: string): boolean;
|
|
75
|
-
isSameOrBefore(inputDate: string | Date, beforeISODate: string | Date | null, inputFormat?: string): boolean;
|
|
76
|
-
isSame(inputDate: string | Date, compareDate: string | Date | null, inputFormat?: string): boolean;
|
|
77
|
-
isSameDay(inputDate: string | Date, compareDate: string | Date, inputFormat?: string): boolean;
|
|
78
|
-
isOther(inputDate: string | Date, compareDate: string | Date | null, inputFormat?: string): boolean;
|
|
79
|
-
isWeekend(inputDate: string | Date): boolean;
|
|
80
|
-
isAmbiguous(inputDate: string | Date, inputFormat?: string): boolean;
|
|
81
|
-
_calculate(date: string | Date, calculationFn: Function, property: string, value: number, inputFormat?: string): string;
|
|
82
|
-
addSeconds(date: string, amount: number, inputFormat?: string): string;
|
|
83
|
-
addMinutes(date: string, amount: number, inputFormat?: string): string;
|
|
84
|
-
addHours(date: string, amount: number, inputFormat?: string): string;
|
|
85
|
-
addDays(date: string, amount: number, inputFormat?: string): string;
|
|
86
|
-
addWeeks(date: string, amount: number, inputFormat?: string): string;
|
|
87
|
-
addMonths(date: string, amount: number, inputFormat?: string): string;
|
|
88
|
-
addYears(date: string, amount: number, inputFormat?: string): string;
|
|
89
|
-
subtractSeconds(date: string, amount: number, inputFormat?: string): string;
|
|
90
|
-
subtractMinutes(date: string, amount: number, inputFormat?: string): string;
|
|
91
|
-
subtractHours(date: string, amount: number, inputFormat?: string): string;
|
|
92
|
-
subtractDays(date: string, amount: number, inputFormat?: string): string;
|
|
93
|
-
subtractWeeks(date: string, amount: number, inputFormat?: string): string;
|
|
94
|
-
subtractMonths(date: string, amount: number, inputFormat?: string): string;
|
|
95
|
-
subtractYears(date: string, amount: number, inputFormat?: string): string;
|
|
96
|
-
_get(date: string | Date, method: Function, inputFormat?: string, options?: Object): string;
|
|
97
|
-
startOfMonth(date: string | Date, inputFormat?: string): string;
|
|
98
|
-
endOfMonth(date: string | Date, inputFormat?: string): string;
|
|
99
|
-
startOfWeek(date: string | Date, inputFormat?: string): string;
|
|
100
|
-
getHours(date: string | Date, inputFormat?: string): number;
|
|
101
|
-
getMinutes(date: string | Date, inputFormat?: string): number;
|
|
102
|
-
getWeek(date: string | Date, inputFormat?: string): number;
|
|
103
|
-
_set(date: string | Date, property: string, value: number, inputFormat?: string): string;
|
|
104
|
-
setYear(date: string | Date, year: number, inputFormat?: string): string;
|
|
105
|
-
setMonth(date: string | Date, month: number, inputFormat?: string): string;
|
|
106
|
-
setDay(date: string | Date, day: number, inputFormat?: string): string;
|
|
107
|
-
setHour(date: string | Date, hour: number, inputFormat?: string): string;
|
|
108
|
-
setMinute(date: string | Date, minute: number, inputFormat?: string): string;
|
|
109
|
-
setSecond(date: string | Date, second: number, inputFormat?: string): string;
|
|
110
|
-
setMilliseconds(date: string | Date, millisecond: number, inputFormat?: string): string;
|
|
111
|
-
setTime(date: string, hours: number, minutes: number, seconds: number, milliseconds: number, inputFormat?: string): string;
|
|
112
|
-
getTimeZone(): string;
|
|
113
|
-
setTimeZone(timeZone: string): void;
|
|
114
|
-
getDateFnsContext(): Function | null;
|
|
115
|
-
getOffset(date: string | Date, inputFormat?: string): import("../../../utils/datetime/DateTimeUtil").OffsetInfo | null;
|
|
116
|
-
getTimezoneOffsets(): {
|
|
117
|
-
standard?: import("../../../utils/datetime/DateTimeUtil").OffsetInfo | undefined;
|
|
118
|
-
daylight?: import("../../../utils/datetime/DateTimeUtil").OffsetInfo | undefined;
|
|
119
|
-
};
|
|
120
|
-
};
|
|
121
|
-
/**
|
|
122
|
-
*/
|
|
123
|
-
validate(value: string): boolean;
|
|
124
|
-
/**
|
|
125
|
-
*/
|
|
126
|
-
get isMandatoryConstraint(): boolean;
|
|
127
|
-
}
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
export default DatetimeFormatConstraint;
|
|
2
|
-
/**
|
|
3
|
-
*/
|
|
4
|
-
declare class DatetimeFormatConstraint {
|
|
5
|
-
/**
|
|
6
|
-
*/
|
|
7
|
-
constructor(type: string, format: string, formatLabel: string);
|
|
8
|
-
_type: string;
|
|
9
|
-
_format: string;
|
|
10
|
-
_formatNoOffset: string;
|
|
11
|
-
_formatLabel: string;
|
|
12
|
-
_id: string;
|
|
13
|
-
/**
|
|
14
|
-
*/
|
|
15
|
-
get type(): string;
|
|
16
|
-
/**
|
|
17
|
-
*/
|
|
18
|
-
get id(): string;
|
|
19
|
-
/**
|
|
20
|
-
*/
|
|
21
|
-
get format(): string;
|
|
22
|
-
/**
|
|
23
|
-
*/
|
|
24
|
-
get formatLabel(): string;
|
|
25
|
-
/**
|
|
26
|
-
*/
|
|
27
|
-
hasValidation(): boolean;
|
|
28
|
-
/**
|
|
29
|
-
*/
|
|
30
|
-
get defaultMessage(): string;
|
|
31
|
-
/**
|
|
32
|
-
*/
|
|
33
|
-
get parameters(): {
|
|
34
|
-
format: string;
|
|
35
|
-
} | {
|
|
36
|
-
"daylight-label": string | null;
|
|
37
|
-
"standard-label": string | null;
|
|
38
|
-
};
|
|
39
|
-
/**
|
|
40
|
-
*/
|
|
41
|
-
get formatUtil(): {
|
|
42
|
-
_isoFormat: string;
|
|
43
|
-
_doOffsets: boolean;
|
|
44
|
-
_timeZone: string;
|
|
45
|
-
readonly doOffsets: boolean;
|
|
46
|
-
getOptions(): {
|
|
47
|
-
weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
48
|
-
firstWeekContainsDate: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
49
|
-
};
|
|
50
|
-
getIsoFormat(): string;
|
|
51
|
-
convertFormat(javaFormat: string): string;
|
|
52
|
-
getLocale(): import("date-fns/types").Locale;
|
|
53
|
-
toDate(date: string | Date, inputFormat?: string): Date;
|
|
54
|
-
toFormat(date: string | Date, targetFormat: string, inputFormat?: string): string;
|
|
55
|
-
toISO(date: string | Date, sourceFormat?: string): string;
|
|
56
|
-
now(): string;
|
|
57
|
-
hasFormat(date: string, sourceFormat: string): boolean;
|
|
58
|
-
isValid(date: string | void | Date | null, inputFormat?: string): boolean;
|
|
59
|
-
isAfter(inputDate: string | Date, afterISODate: string | Date | null, inputFormat?: string): boolean;
|
|
60
|
-
isSameOrAfter(inputDate: string | Date, afterISODate: string | Date | null, inputFormat?: string): boolean;
|
|
61
|
-
isBefore(inputDate: string | Date, beforeISODate: string | Date | null, inputFormat?: string): boolean;
|
|
62
|
-
isSameOrBefore(inputDate: string | Date, beforeISODate: string | Date | null, inputFormat?: string): boolean;
|
|
63
|
-
isSame(inputDate: string | Date, compareDate: string | Date | null, inputFormat?: string): boolean;
|
|
64
|
-
isSameDay(inputDate: string | Date, compareDate: string | Date, inputFormat?: string): boolean;
|
|
65
|
-
isOther(inputDate: string | Date, compareDate: string | Date | null, inputFormat?: string): boolean;
|
|
66
|
-
isWeekend(inputDate: string | Date): boolean;
|
|
67
|
-
isAmbiguous(inputDate: string | Date, inputFormat?: string): boolean;
|
|
68
|
-
_calculate(date: string | Date, calculationFn: Function, property: string, value: number, inputFormat?: string): string;
|
|
69
|
-
addSeconds(date: string, amount: number, inputFormat?: string): string;
|
|
70
|
-
addMinutes(date: string, amount: number, inputFormat?: string): string;
|
|
71
|
-
addHours(date: string, amount: number, inputFormat?: string): string;
|
|
72
|
-
addDays(date: string, amount: number, inputFormat?: string): string;
|
|
73
|
-
addWeeks(date: string, amount: number, inputFormat?: string): string;
|
|
74
|
-
addMonths(date: string, amount: number, inputFormat?: string): string;
|
|
75
|
-
addYears(date: string, amount: number, inputFormat?: string): string;
|
|
76
|
-
subtractSeconds(date: string, amount: number, inputFormat?: string): string;
|
|
77
|
-
subtractMinutes(date: string, amount: number, inputFormat?: string): string;
|
|
78
|
-
subtractHours(date: string, amount: number, inputFormat?: string): string;
|
|
79
|
-
subtractDays(date: string, amount: number, inputFormat?: string): string;
|
|
80
|
-
subtractWeeks(date: string, amount: number, inputFormat?: string): string;
|
|
81
|
-
subtractMonths(date: string, amount: number, inputFormat?: string): string;
|
|
82
|
-
subtractYears(date: string, amount: number, inputFormat?: string): string;
|
|
83
|
-
_get(date: string | Date, method: Function, inputFormat?: string, options?: Object): string;
|
|
84
|
-
startOfMonth(date: string | Date, inputFormat?: string): string;
|
|
85
|
-
endOfMonth(date: string | Date, inputFormat?: string): string;
|
|
86
|
-
startOfWeek(date: string | Date, inputFormat?: string): string;
|
|
87
|
-
getHours(date: string | Date, inputFormat?: string): number;
|
|
88
|
-
getMinutes(date: string | Date, inputFormat?: string): number;
|
|
89
|
-
getWeek(date: string | Date, inputFormat?: string): number;
|
|
90
|
-
_set(date: string | Date, property: string, value: number, inputFormat?: string): string;
|
|
91
|
-
setYear(date: string | Date, year: number, inputFormat?: string): string;
|
|
92
|
-
setMonth(date: string | Date, month: number, inputFormat?: string): string;
|
|
93
|
-
setDay(date: string | Date, day: number, inputFormat?: string): string;
|
|
94
|
-
setHour(date: string | Date, hour: number, inputFormat?: string): string;
|
|
95
|
-
setMinute(date: string | Date, minute: number, inputFormat?: string): string;
|
|
96
|
-
setSecond(date: string | Date, second: number, inputFormat?: string): string;
|
|
97
|
-
setMilliseconds(date: string | Date, millisecond: number, inputFormat?: string): string;
|
|
98
|
-
setTime(date: string, hours: number, minutes: number, seconds: number, milliseconds: number, inputFormat?: string): string;
|
|
99
|
-
getTimeZone(): string;
|
|
100
|
-
setTimeZone(timeZone: string): void;
|
|
101
|
-
getDateFnsContext(): Function | null;
|
|
102
|
-
getOffset(date: string | Date, inputFormat?: string): import("../../../utils/datetime/DateTimeUtil").OffsetInfo | null;
|
|
103
|
-
getTimezoneOffsets(): {
|
|
104
|
-
standard?: import("../../../utils/datetime/DateTimeUtil").OffsetInfo | undefined;
|
|
105
|
-
daylight?: import("../../../utils/datetime/DateTimeUtil").OffsetInfo | undefined;
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
|
-
/**
|
|
109
|
-
*/
|
|
110
|
-
validate(value: string): boolean;
|
|
111
|
-
/**
|
|
112
|
-
*/
|
|
113
|
-
get isMandatoryConstraint(): boolean;
|
|
114
|
-
}
|