@beinformed/ui 1.20.8 → 1.20.9
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 +6 -0
- package/esm/builder/mergeLayoutHintConfigurations.js +34 -59
- package/esm/builder/mergeLayoutHintConfigurations.js.map +1 -1
- package/esm/constants/Constants.js +37 -37
- package/esm/constants/Constants.js.map +1 -1
- package/esm/constants/LayoutHintConfig.js +1 -1
- package/esm/constants/LayoutHintConfig.js.map +1 -1
- package/esm/constants/LayoutHints.js +20 -22
- package/esm/constants/LayoutHints.js.map +1 -1
- package/esm/constants/Settings.js +12 -26
- package/esm/constants/Settings.js.map +1 -1
- package/esm/exceptions/ConfigurationException.js +5 -27
- package/esm/exceptions/ConfigurationException.js.map +1 -1
- package/esm/exceptions/FetchException.js +33 -65
- package/esm/exceptions/FetchException.js.map +1 -1
- package/esm/exceptions/IllegalArgumentException.js +5 -27
- package/esm/exceptions/IllegalArgumentException.js.map +1 -1
- package/esm/exceptions/IllegalReturnException.js +5 -27
- package/esm/exceptions/IllegalReturnException.js.map +1 -1
- package/esm/exceptions/IllegalStateException.js +5 -27
- package/esm/exceptions/IllegalStateException.js.map +1 -1
- package/esm/exceptions/JsonParseException.js +5 -27
- package/esm/exceptions/JsonParseException.js.map +1 -1
- package/esm/exceptions/MissingPropertyException.js +5 -27
- package/esm/exceptions/MissingPropertyException.js.map +1 -1
- package/esm/exceptions/NetworkException.js +9 -31
- package/esm/exceptions/NetworkException.js.map +1 -1
- package/esm/exceptions/NotAllowedUriException.js +5 -27
- package/esm/exceptions/NotAllowedUriException.js.map +1 -1
- package/esm/exceptions/NotFoundException.js +12 -35
- package/esm/exceptions/NotFoundException.js.map +1 -1
- package/esm/exceptions/ServerRequestException.js +5 -27
- package/esm/exceptions/ServerRequestException.js.map +1 -1
- package/esm/exceptions/ThemePropertyException.js +5 -27
- package/esm/exceptions/ThemePropertyException.js.map +1 -1
- package/esm/exceptions/TimeoutException.js +5 -26
- package/esm/exceptions/TimeoutException.js.map +1 -1
- package/esm/exceptions/UnauthorizedException.js +11 -33
- package/esm/exceptions/UnauthorizedException.js.map +1 -1
- package/esm/exceptions/UnsupportedOperationException.js +5 -27
- package/esm/exceptions/UnsupportedOperationException.js.map +1 -1
- package/esm/hooks/useAllFormsOnModel.js +25 -46
- package/esm/hooks/useAllFormsOnModel.js.map +1 -1
- package/esm/hooks/useAuthentication.js +20 -26
- package/esm/hooks/useAuthentication.js.map +1 -1
- package/esm/hooks/useContent.js +13 -24
- package/esm/hooks/useContent.js.map +1 -1
- package/esm/hooks/useDeepCompareEffect.js +3 -3
- package/esm/hooks/useDeepCompareEffect.js.map +1 -1
- package/esm/hooks/useForm.js +27 -45
- package/esm/hooks/useForm.js.map +1 -1
- package/esm/hooks/useI18n.js +9 -19
- package/esm/hooks/useI18n.js.map +1 -1
- package/esm/hooks/useModal.js +11 -11
- package/esm/hooks/useModal.js.map +1 -1
- package/esm/hooks/useModelCatalog.js +24 -30
- package/esm/hooks/useModelCatalog.js.map +1 -1
- package/esm/hooks/useModels.js +3 -3
- package/esm/hooks/useModels.js.map +1 -1
- package/esm/hooks/useModularUI.js +17 -16
- package/esm/hooks/useModularUI.js.map +1 -1
- package/esm/hooks/useModularUIBasic.js +9 -7
- package/esm/hooks/useModularUIBasic.js.map +1 -1
- package/esm/hooks/useModularUIModel.js +39 -59
- package/esm/hooks/useModularUIModel.js.map +1 -1
- package/esm/hooks/useModularUIRequest.js +4 -6
- package/esm/hooks/useModularUIRequest.js.map +1 -1
- package/esm/hooks/useNotification.js +16 -21
- package/esm/hooks/useNotification.js.map +1 -1
- package/esm/hooks/usePreference.js +3 -5
- package/esm/hooks/usePreference.js.map +1 -1
- package/esm/hooks/useProgressIndicator.js +9 -30
- package/esm/hooks/useProgressIndicator.js.map +1 -1
- package/esm/hooks/useRouter.js +12 -26
- package/esm/hooks/useRouter.js.map +1 -1
- package/esm/i18n/Locale.js +96 -135
- package/esm/i18n/Locale.js.map +1 -1
- package/esm/i18n/Locales.js +94 -148
- package/esm/i18n/Locales.js.map +1 -1
- package/esm/i18n/Message.js +13 -24
- package/esm/i18n/Message.js.map +1 -1
- package/esm/i18n/languages.js +1 -1
- package/esm/i18n/languages.js.map +1 -1
- package/esm/i18n/withMessage.js +10 -16
- package/esm/i18n/withMessage.js.map +1 -1
- package/esm/models/actions/ActionCollection.js +55 -100
- package/esm/models/actions/ActionCollection.js.map +1 -1
- package/esm/models/actions/ActionModel.js +165 -204
- package/esm/models/actions/ActionModel.js.map +1 -1
- package/esm/models/application/ApplicationModel.js +104 -153
- package/esm/models/application/ApplicationModel.js.map +1 -1
- package/esm/models/attributes/AttributeCollection.js +246 -331
- package/esm/models/attributes/AttributeCollection.js.map +1 -1
- package/esm/models/attributes/AttributeContent.js +181 -246
- package/esm/models/attributes/AttributeContent.js.map +1 -1
- package/esm/models/attributes/AttributeDataHelper.js +202 -250
- package/esm/models/attributes/AttributeDataHelper.js.map +1 -1
- package/esm/models/attributes/AttributeModel.js +832 -941
- package/esm/models/attributes/AttributeModel.js.map +1 -1
- package/esm/models/attributes/AttributeSetModel.js +46 -77
- package/esm/models/attributes/AttributeSetModel.js.map +1 -1
- package/esm/models/attributes/BooleanAttributeModel.js +259 -325
- package/esm/models/attributes/BooleanAttributeModel.js.map +1 -1
- package/esm/models/attributes/CaptchaAttributeModel.js +24 -55
- package/esm/models/attributes/CaptchaAttributeModel.js.map +1 -1
- package/esm/models/attributes/ChoiceAttributeModel.js +337 -424
- package/esm/models/attributes/ChoiceAttributeModel.js.map +1 -1
- package/esm/models/attributes/ChoiceAttributeOptionCollection.js +271 -361
- package/esm/models/attributes/ChoiceAttributeOptionCollection.js.map +1 -1
- package/esm/models/attributes/ChoiceAttributeOptionModel.js +297 -351
- package/esm/models/attributes/ChoiceAttributeOptionModel.js.map +1 -1
- package/esm/models/attributes/CompositeAttributeChildCollection.js +180 -257
- package/esm/models/attributes/CompositeAttributeChildCollection.js.map +1 -1
- package/esm/models/attributes/CompositeAttributeModel.js +326 -401
- package/esm/models/attributes/CompositeAttributeModel.js.map +1 -1
- package/esm/models/attributes/DatetimeAttributeModel.js +368 -419
- package/esm/models/attributes/DatetimeAttributeModel.js.map +1 -1
- package/esm/models/attributes/HelptextAttributeModel.js +38 -70
- package/esm/models/attributes/HelptextAttributeModel.js.map +1 -1
- package/esm/models/attributes/LabelAttributeModel.js +23 -54
- package/esm/models/attributes/LabelAttributeModel.js.map +1 -1
- package/esm/models/attributes/MemoAttributeModel.js +31 -63
- package/esm/models/attributes/MemoAttributeModel.js.map +1 -1
- package/esm/models/attributes/MoneyAttributeModel.js +30 -62
- package/esm/models/attributes/MoneyAttributeModel.js.map +1 -1
- package/esm/models/attributes/NumberAttributeModel.js +178 -225
- package/esm/models/attributes/NumberAttributeModel.js.map +1 -1
- package/esm/models/attributes/PasswordAttributeModel.js +197 -246
- package/esm/models/attributes/PasswordAttributeModel.js.map +1 -1
- package/esm/models/attributes/StringAttributeModel.js +234 -282
- package/esm/models/attributes/StringAttributeModel.js.map +1 -1
- package/esm/models/attributes/UploadAttributeModel.js +181 -238
- package/esm/models/attributes/UploadAttributeModel.js.map +1 -1
- package/esm/models/attributes/XMLAttributeModel.js +32 -64
- package/esm/models/attributes/XMLAttributeModel.js.map +1 -1
- package/esm/models/attributes/_createAttribute.js +21 -36
- package/esm/models/attributes/_createAttribute.js.map +1 -1
- package/esm/models/attributes/input-constraints/BSNConstraint.js +63 -81
- package/esm/models/attributes/input-constraints/BSNConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/ConstraintCollection.js +29 -66
- package/esm/models/attributes/input-constraints/ConstraintCollection.js.map +1 -1
- package/esm/models/attributes/input-constraints/ConstraintModel.js +44 -59
- package/esm/models/attributes/input-constraints/ConstraintModel.js.map +1 -1
- package/esm/models/attributes/input-constraints/DateBoundaryConstraint.js +170 -192
- package/esm/models/attributes/input-constraints/DateBoundaryConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +52 -67
- package/esm/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +52 -67
- package/esm/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.js +66 -83
- package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/FileExtensionConstraint.js +53 -69
- package/esm/models/attributes/input-constraints/FileExtensionConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/FileSizeConstraint.js +78 -94
- package/esm/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/IBANConstraint.js +35 -51
- package/esm/models/attributes/input-constraints/IBANConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/MandatoryConstraint.js +39 -57
- package/esm/models/attributes/input-constraints/MandatoryConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.js +62 -81
- package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.js +149 -171
- package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/NumberFormatConstraint.js +104 -124
- package/esm/models/attributes/input-constraints/NumberFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/NumberGroupingConstraint.js +91 -113
- package/esm/models/attributes/input-constraints/NumberGroupingConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordConfirmConstraint.js +58 -73
- package/esm/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +35 -52
- package/esm/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +51 -65
- package/esm/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +51 -65
- package/esm/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +65 -83
- package/esm/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/RangeConstraint.js +115 -134
- package/esm/models/attributes/input-constraints/RangeConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/RegexConstraint.js +47 -61
- package/esm/models/attributes/input-constraints/RegexConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/StringLengthConstraint.js +157 -176
- package/esm/models/attributes/input-constraints/StringLengthConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/XMLConstraint.js +48 -66
- package/esm/models/attributes/input-constraints/XMLConstraint.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/BaseLayoutHintRule.js +49 -64
- package/esm/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/DependentAttribute.js +167 -209
- package/esm/models/attributes/layouthint-rules/DependentAttribute.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +40 -68
- package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +30 -59
- package/esm/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +1 -1
- package/esm/models/base/BaseCollection.js +169 -203
- package/esm/models/base/BaseCollection.js.map +1 -1
- package/esm/models/base/BaseModel.js +97 -112
- package/esm/models/base/BaseModel.js.map +1 -1
- package/esm/models/base/ResourceCollection.js +27 -55
- package/esm/models/base/ResourceCollection.js.map +1 -1
- package/esm/models/base/ResourceModel.js +167 -217
- package/esm/models/base/ResourceModel.js.map +1 -1
- package/esm/models/caseview/CaseViewModel.js +132 -180
- package/esm/models/caseview/CaseViewModel.js.map +1 -1
- package/esm/models/concepts/BusinessScenarioModel.js +98 -147
- package/esm/models/concepts/BusinessScenarioModel.js.map +1 -1
- package/esm/models/concepts/ConceptDetailModel.js +239 -316
- package/esm/models/concepts/ConceptDetailModel.js.map +1 -1
- package/esm/models/concepts/ConceptIndexModel.js +114 -150
- package/esm/models/concepts/ConceptIndexModel.js.map +1 -1
- package/esm/models/concepts/ConceptLinkModel.js +118 -158
- package/esm/models/concepts/ConceptLinkModel.js.map +1 -1
- package/esm/models/concepts/ConceptRelationCollection.js +56 -103
- package/esm/models/concepts/ConceptRelationCollection.js.map +1 -1
- package/esm/models/concepts/ConceptRelationModel.js +60 -75
- package/esm/models/concepts/ConceptRelationModel.js.map +1 -1
- package/esm/models/concepts/ConceptTypeDetailModel.js +89 -126
- package/esm/models/concepts/ConceptTypeDetailModel.js.map +1 -1
- package/esm/models/concepts/SourceReferenceCollection.js +11 -42
- package/esm/models/concepts/SourceReferenceCollection.js.map +1 -1
- package/esm/models/concepts/SourceReferenceModel.js +47 -70
- package/esm/models/concepts/SourceReferenceModel.js.map +1 -1
- package/esm/models/content/ContentIndexModel.js +108 -150
- package/esm/models/content/ContentIndexModel.js.map +1 -1
- package/esm/models/content/ContentLinkModel.js +157 -199
- package/esm/models/content/ContentLinkModel.js.map +1 -1
- package/esm/models/content/ContentModel.js +184 -228
- package/esm/models/content/ContentModel.js.map +1 -1
- package/esm/models/content/ContentTOCModel.js +132 -196
- package/esm/models/content/ContentTOCModel.js.map +1 -1
- package/esm/models/content/ContentTypeModel.js +58 -93
- package/esm/models/content/ContentTypeModel.js.map +1 -1
- package/esm/models/content/SectionModel.js +161 -247
- package/esm/models/content/SectionModel.js.map +1 -1
- package/esm/models/content/SubSectionModel.js +122 -188
- package/esm/models/content/SubSectionModel.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfiguration.js +44 -58
- package/esm/models/contentconfiguration/ContentConfiguration.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationElements.js +123 -162
- package/esm/models/contentconfiguration/ContentConfigurationElements.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationEndResults.js +24 -38
- package/esm/models/contentconfiguration/ContentConfigurationEndResults.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationQuestions.js +30 -41
- package/esm/models/contentconfiguration/ContentConfigurationQuestions.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationResults.js +73 -95
- package/esm/models/contentconfiguration/ContentConfigurationResults.js.map +1 -1
- package/esm/models/detail/DetailModel.js +174 -225
- package/esm/models/detail/DetailModel.js.map +1 -1
- package/esm/models/error/ErrorCollection.js +79 -132
- package/esm/models/error/ErrorCollection.js.map +1 -1
- package/esm/models/error/ErrorModel.js +36 -48
- package/esm/models/error/ErrorModel.js.map +1 -1
- package/esm/models/error/ErrorResponse.js +175 -204
- package/esm/models/error/ErrorResponse.js.map +1 -1
- package/esm/models/filters/AssignmentFilterModel.js +142 -186
- package/esm/models/filters/AssignmentFilterModel.js.map +1 -1
- package/esm/models/filters/BaseFilterModel.js +170 -220
- package/esm/models/filters/BaseFilterModel.js.map +1 -1
- package/esm/models/filters/ConceptIndexFilterModel.js +8 -36
- package/esm/models/filters/ConceptIndexFilterModel.js.map +1 -1
- package/esm/models/filters/FilterCollection.js +106 -165
- package/esm/models/filters/FilterCollection.js.map +1 -1
- package/esm/models/filters/FilterModel.js +1 -26
- package/esm/models/filters/FilterModel.js.map +1 -1
- package/esm/models/filters/RangeFilterModel.js +29 -58
- package/esm/models/filters/RangeFilterModel.js.map +1 -1
- package/esm/models/form/FormModel.js +957 -1133
- package/esm/models/form/FormModel.js.map +1 -1
- package/esm/models/form/FormObjectModel.js +412 -506
- package/esm/models/form/FormObjectModel.js.map +1 -1
- package/esm/models/grouping/GroupingModel.js +115 -163
- package/esm/models/grouping/GroupingModel.js.map +1 -1
- package/esm/models/href/Href.js +391 -450
- package/esm/models/href/Href.js.map +1 -1
- package/esm/models/href/ListHref.js +116 -155
- package/esm/models/href/ListHref.js.map +1 -1
- package/esm/models/layouthint/LayoutHintCollection.js +91 -136
- package/esm/models/layouthint/LayoutHintCollection.js.map +1 -1
- package/esm/models/links/LinkCollection.js +127 -185
- package/esm/models/links/LinkCollection.js.map +1 -1
- package/esm/models/links/LinkModel.js +189 -228
- package/esm/models/links/LinkModel.js.map +1 -1
- package/esm/models/links/normalizeLinkJSON.js +30 -57
- package/esm/models/links/normalizeLinkJSON.js.map +1 -1
- package/esm/models/list/ListDetailModel.js +226 -289
- package/esm/models/list/ListDetailModel.js.map +1 -1
- package/esm/models/list/ListHeaderModel.js +74 -97
- package/esm/models/list/ListHeaderModel.js.map +1 -1
- package/esm/models/list/ListItemCollection.js +49 -85
- package/esm/models/list/ListItemCollection.js.map +1 -1
- package/esm/models/list/ListItemModel.js +73 -110
- package/esm/models/list/ListItemModel.js.map +1 -1
- package/esm/models/list/ListModel.js +342 -421
- package/esm/models/list/ListModel.js.map +1 -1
- package/esm/models/lookup/LookupOptionCollection.js +15 -51
- package/esm/models/lookup/LookupOptionCollection.js.map +1 -1
- package/esm/models/lookup/LookupOptionsModel.js +42 -71
- package/esm/models/lookup/LookupOptionsModel.js.map +1 -1
- package/esm/models/modelcatalog/ModelCatalogModel.js +35 -67
- package/esm/models/modelcatalog/ModelCatalogModel.js.map +1 -1
- package/esm/models/paging/PagesizeModel.js +31 -42
- package/esm/models/paging/PagesizeModel.js.map +1 -1
- package/esm/models/paging/PagingModel.js +77 -94
- package/esm/models/paging/PagingModel.js.map +1 -1
- package/esm/models/panels/GroupingPanelModel.js +116 -160
- package/esm/models/panels/GroupingPanelModel.js.map +1 -1
- package/esm/models/parameter/Parameter.js +82 -97
- package/esm/models/parameter/Parameter.js.map +1 -1
- package/esm/models/process/ProcessStatusSettingsModel.js +63 -100
- package/esm/models/process/ProcessStatusSettingsModel.js.map +1 -1
- package/esm/models/resolveModel.js +3 -5
- package/esm/models/resolveModel.js.map +1 -1
- package/esm/models/search/CaseSearchModel.js +23 -56
- package/esm/models/search/CaseSearchModel.js.map +1 -1
- package/esm/models/sorting/SortOptionModel.js +76 -90
- package/esm/models/sorting/SortOptionModel.js.map +1 -1
- package/esm/models/sorting/SortingModel.js +86 -134
- package/esm/models/sorting/SortingModel.js.map +1 -1
- package/esm/models/tab/TabModel.js +118 -163
- package/esm/models/tab/TabModel.js.map +1 -1
- package/esm/models/taskgroup/TaskGroupCollection.js +7 -37
- package/esm/models/taskgroup/TaskGroupCollection.js.map +1 -1
- package/esm/models/taskgroup/TaskGroupModel.js +51 -83
- package/esm/models/taskgroup/TaskGroupModel.js.map +1 -1
- package/esm/models/user/UserModel.js +29 -61
- package/esm/models/user/UserModel.js.map +1 -1
- package/esm/models/user/UserProfileModel.js +19 -50
- package/esm/models/user/UserProfileModel.js.map +1 -1
- package/esm/models/user/UserServicesModel.js +79 -123
- package/esm/models/user/UserServicesModel.js.map +1 -1
- package/esm/modularui/Authenticate.js +143 -156
- package/esm/modularui/Authenticate.js.map +1 -1
- package/esm/modularui/ModularUIError.js +9 -32
- package/esm/modularui/ModularUIError.js.map +1 -1
- package/esm/modularui/ModularUIRequest.js +476 -630
- package/esm/modularui/ModularUIRequest.js.map +1 -1
- package/esm/modularui/ModularUIResponse.js +104 -119
- package/esm/modularui/ModularUIResponse.js.map +1 -1
- package/esm/react/ErrorBoundary.js +32 -65
- package/esm/react/ErrorBoundary.js.map +1 -1
- package/esm/react/ErrorBoundaryFallback.js +8 -6
- package/esm/react/ErrorBoundaryFallback.js.map +1 -1
- package/esm/react/utils.js +12 -15
- package/esm/react/utils.js.map +1 -1
- package/esm/react-client/Init.js +9 -7
- package/esm/react-client/Init.js.map +1 -1
- package/esm/react-client/client.js +21 -22
- package/esm/react-client/client.js.map +1 -1
- package/esm/react-client/contextPath.js +4 -4
- package/esm/react-client/contextPath.js.map +1 -1
- package/esm/react-client/rehydrate.js +14 -21
- package/esm/react-client/rehydrate.js.map +1 -1
- package/esm/react-server/createSSRComplete.js +10 -14
- package/esm/react-server/createSSRComplete.js.map +1 -1
- package/esm/react-server/htmlpage.js +5 -8
- package/esm/react-server/htmlpage.js.map +1 -1
- package/esm/react-server/renderSSRComplete.js +50 -55
- package/esm/react-server/renderSSRComplete.js.map +1 -1
- package/esm/react-server/renderSSRMinimal.js +13 -13
- package/esm/react-server/renderSSRMinimal.js.map +1 -1
- package/esm/react-server/requestInformation.js +8 -10
- package/esm/react-server/requestInformation.js.map +1 -1
- package/esm/react-server/serverNoSSR.js +22 -21
- package/esm/react-server/serverNoSSR.js.map +1 -1
- package/esm/react-server/serverSSR.js +24 -24
- package/esm/react-server/serverSSR.js.map +1 -1
- package/esm/react-server/serverUtil.js +45 -61
- package/esm/react-server/serverUtil.js.map +1 -1
- package/esm/react-theme/ThemeProvider.js +10 -7
- package/esm/react-theme/ThemeProvider.js.map +1 -1
- package/esm/react-theme/createTheme.js +15 -35
- package/esm/react-theme/createTheme.js.map +1 -1
- package/esm/react-theme/useTheme.js +1 -1
- package/esm/react-theme/useTheme.js.map +1 -1
- package/esm/react-theme/utils/background.js +9 -9
- package/esm/react-theme/utils/background.js.map +1 -1
- package/esm/react-theme/utils/colors.js +12 -12
- package/esm/react-theme/utils/colors.js.map +1 -1
- package/esm/react-theme/utils/contrast.js +27 -27
- package/esm/react-theme/utils/contrast.js.map +1 -1
- package/esm/react-theme/utils/corners.js +10 -9
- package/esm/react-theme/utils/corners.js.map +1 -1
- package/esm/react-theme/utils/spacers.js +23 -22
- package/esm/react-theme/utils/spacers.js.map +1 -1
- package/esm/react-theme/utils/themeProps.js +28 -29
- package/esm/react-theme/utils/themeProps.js.map +1 -1
- package/esm/redux/_i18n/actions.js +15 -21
- package/esm/redux/_i18n/actions.js.map +1 -1
- package/esm/redux/_i18n/reducer.js +20 -29
- package/esm/redux/_i18n/reducer.js.map +1 -1
- package/esm/redux/_modularui/actions.js +40 -67
- package/esm/redux/_modularui/actions.js.map +1 -1
- package/esm/redux/_modularui/connector.js +46 -50
- package/esm/redux/_modularui/connector.js.map +1 -1
- package/esm/redux/_modularui/middleware.js +23 -36
- package/esm/redux/_modularui/middleware.js.map +1 -1
- package/esm/redux/_modularui/modularuiUtils.js +16 -23
- package/esm/redux/_modularui/modularuiUtils.js.map +1 -1
- package/esm/redux/_modularui/reducer.js +42 -53
- package/esm/redux/_modularui/reducer.js.map +1 -1
- package/esm/redux/_modularui/selectors.js +89 -99
- package/esm/redux/_modularui/selectors.js.map +1 -1
- package/esm/redux/_modularui/withModularUI.js +15 -19
- package/esm/redux/_modularui/withModularUI.js.map +1 -1
- package/esm/redux/_router/actions.js +29 -39
- package/esm/redux/_router/actions.js.map +1 -1
- package/esm/redux/_router/connectors.js +12 -14
- package/esm/redux/_router/connectors.js.map +1 -1
- package/esm/redux/_router/middleware.js +27 -29
- package/esm/redux/_router/middleware.js.map +1 -1
- package/esm/redux/_router/reducer.js +4 -4
- package/esm/redux/_router/reducer.js.map +1 -1
- package/esm/redux/actions/Application.js +9 -32
- package/esm/redux/actions/Application.js.map +1 -1
- package/esm/redux/actions/Authorization.js +31 -33
- package/esm/redux/actions/Authorization.js.map +1 -1
- package/esm/redux/actions/Error.js +33 -43
- package/esm/redux/actions/Error.js.map +1 -1
- package/esm/redux/actions/Form.js +13 -15
- package/esm/redux/actions/Form.js.map +1 -1
- package/esm/redux/actions/FormAttributeSet.js +6 -6
- package/esm/redux/actions/FormAttributeSet.js.map +1 -1
- package/esm/redux/actions/FormAttributeSetRepeatable.js +6 -6
- package/esm/redux/actions/FormAttributeSetRepeatable.js.map +1 -1
- package/esm/redux/actions/FormAutosave.js +12 -18
- package/esm/redux/actions/FormAutosave.js.map +1 -1
- package/esm/redux/actions/FormAutosubmit.js +2 -2
- package/esm/redux/actions/FormAutosubmit.js.map +1 -1
- package/esm/redux/actions/FormValidations.js +12 -20
- package/esm/redux/actions/FormValidations.js.map +1 -1
- package/esm/redux/actions/Modals.js +8 -12
- package/esm/redux/actions/Modals.js.map +1 -1
- package/esm/redux/actions/Notification.js +32 -42
- package/esm/redux/actions/Notification.js.map +1 -1
- package/esm/redux/actions/Preferences.js +32 -38
- package/esm/redux/actions/Preferences.js.map +1 -1
- package/esm/redux/actions/ProgressIndicator.js +15 -23
- package/esm/redux/actions/ProgressIndicator.js.map +1 -1
- package/esm/redux/actions/SignIn.js +39 -53
- package/esm/redux/actions/SignIn.js.map +1 -1
- package/esm/redux/actions/SignOut.js +9 -17
- package/esm/redux/actions/SignOut.js.map +1 -1
- package/esm/redux/connectors/Application.js +1 -1
- package/esm/redux/connectors/Application.js.map +1 -1
- package/esm/redux/connectors/Breadcrumb.js +4 -6
- package/esm/redux/connectors/Breadcrumb.js.map +1 -1
- package/esm/redux/connectors/CaseView.js +4 -2
- package/esm/redux/connectors/CaseView.js.map +1 -1
- package/esm/redux/connectors/ConceptDetail.js +5 -3
- package/esm/redux/connectors/ConceptDetail.js.map +1 -1
- package/esm/redux/connectors/ContentBrowser.js +4 -2
- package/esm/redux/connectors/ContentBrowser.js.map +1 -1
- package/esm/redux/connectors/ContentDetail.js +5 -3
- package/esm/redux/connectors/ContentDetail.js.map +1 -1
- package/esm/redux/connectors/ContentDetailSection.js +6 -4
- package/esm/redux/connectors/ContentDetailSection.js.map +1 -1
- package/esm/redux/connectors/Form.js +11 -9
- package/esm/redux/connectors/Form.js.map +1 -1
- package/esm/redux/connectors/FormAttributeSet.js +13 -21
- package/esm/redux/connectors/FormAttributeSet.js.map +1 -1
- package/esm/redux/connectors/ListDetail.js +4 -2
- package/esm/redux/connectors/ListDetail.js.map +1 -1
- package/esm/redux/connectors/Modal.js +4 -6
- package/esm/redux/connectors/Modal.js.map +1 -1
- package/esm/redux/connectors/ModelCatalog.js +4 -2
- package/esm/redux/connectors/ModelCatalog.js.map +1 -1
- package/esm/redux/connectors/Notification.js +8 -10
- package/esm/redux/connectors/Notification.js.map +1 -1
- package/esm/redux/connectors/PanelRenderer.js +7 -6
- package/esm/redux/connectors/PanelRenderer.js.map +1 -1
- package/esm/redux/connectors/Preferences.js +6 -8
- package/esm/redux/connectors/Preferences.js.map +1 -1
- package/esm/redux/connectors/Progress.js +2 -2
- package/esm/redux/connectors/Progress.js.map +1 -1
- package/esm/redux/connectors/ProgressIndicator.js +6 -8
- package/esm/redux/connectors/ProgressIndicator.js.map +1 -1
- package/esm/redux/connectors/QuickSearch.js +6 -4
- package/esm/redux/connectors/QuickSearch.js.map +1 -1
- package/esm/redux/connectors/SignIn.js +4 -4
- package/esm/redux/connectors/SignIn.js.map +1 -1
- package/esm/redux/connectors/SignOut.js +3 -3
- package/esm/redux/connectors/SignOut.js.map +1 -1
- package/esm/redux/connectors/Tab.js +4 -2
- package/esm/redux/connectors/Tab.js.map +1 -1
- package/esm/redux/reducers/AuthReducer.js +14 -25
- package/esm/redux/reducers/AuthReducer.js.map +1 -1
- package/esm/redux/reducers/ErrorReducer.js +4 -4
- package/esm/redux/reducers/ErrorReducer.js.map +1 -1
- package/esm/redux/reducers/ModalsReducer.js +19 -37
- package/esm/redux/reducers/ModalsReducer.js.map +1 -1
- package/esm/redux/reducers/NotificationReducer.js +8 -19
- package/esm/redux/reducers/NotificationReducer.js.map +1 -1
- package/esm/redux/reducers/PreferencesReducer.js +10 -17
- package/esm/redux/reducers/PreferencesReducer.js.map +1 -1
- package/esm/redux/reducers/ProgressIndicatorReducer.js +14 -25
- package/esm/redux/reducers/ProgressIndicatorReducer.js.map +1 -1
- package/esm/redux/reducers/createReducer.js +11 -13
- package/esm/redux/reducers/createReducer.js.map +1 -1
- package/esm/redux/selectors/i18n.js +2 -4
- package/esm/redux/selectors/i18n.js.map +1 -1
- package/esm/redux/store/beforeRenderHooks.js +5 -26
- package/esm/redux/store/beforeRenderHooks.js.map +1 -1
- package/esm/redux/store/configureStore.js +10 -19
- package/esm/redux/store/configureStore.js.map +1 -1
- package/esm/utils/browser/Cache.js +122 -156
- package/esm/utils/browser/Cache.js.map +1 -1
- package/esm/utils/browser/Cookies.js +4 -4
- package/esm/utils/browser/Cookies.js.map +1 -1
- package/esm/utils/datetime/DateTimeUtil.js +363 -418
- package/esm/utils/datetime/DateTimeUtil.js.map +1 -1
- package/esm/utils/fetch/serverFetch.js +5 -5
- package/esm/utils/fetch/serverFetch.js.map +1 -1
- package/esm/utils/fetch/universalFetch.js +13 -14
- package/esm/utils/fetch/universalFetch.js.map +1 -1
- package/esm/utils/fetch/xhr.js +281 -358
- package/esm/utils/fetch/xhr.js.map +1 -1
- package/esm/utils/helpers/checkResource.js +7 -7
- package/esm/utils/helpers/checkResource.js.map +1 -1
- package/esm/utils/helpers/createHash.js +5 -5
- package/esm/utils/helpers/createHash.js.map +1 -1
- package/esm/utils/helpers/createUUID.js +4 -4
- package/esm/utils/helpers/createUUID.js.map +1 -1
- package/esm/utils/helpers/objects.js +9 -14
- package/esm/utils/helpers/objects.js.map +1 -1
- package/esm/utils/helpers/sanitizeHtml.js +13 -13
- package/esm/utils/helpers/sanitizeHtml.js.map +1 -1
- package/esm/utils/helpers/text.js +1 -1
- package/esm/utils/helpers/text.js.map +1 -1
- package/esm/utils/number/DecimalFormat.js +297 -327
- package/esm/utils/number/DecimalFormat.js.map +1 -1
- package/esm/utils/number/formatValue.js +10 -16
- package/esm/utils/number/formatValue.js.map +1 -1
- package/esm/utils/number/parseNumbers.js +13 -13
- package/esm/utils/number/parseNumbers.js.map +1 -1
- package/lib/builder/index.js +1 -1
- package/lib/builder/mergeLayoutHintConfigurations.js +34 -64
- package/lib/builder/mergeLayoutHintConfigurations.js.map +1 -1
- package/lib/constants/Constants.js +37 -37
- package/lib/constants/Constants.js.map +1 -1
- package/lib/constants/LayoutHintConfig.js +1 -1
- package/lib/constants/LayoutHintConfig.js.map +1 -1
- package/lib/constants/LayoutHints.js +20 -22
- package/lib/constants/LayoutHints.js.map +1 -1
- package/lib/constants/Settings.js +12 -26
- package/lib/constants/Settings.js.map +1 -1
- package/lib/constants/index.js +3 -3
- package/lib/exceptions/ConfigurationException.js +5 -34
- package/lib/exceptions/ConfigurationException.js.map +1 -1
- package/lib/exceptions/FetchException.js +32 -75
- package/lib/exceptions/FetchException.js.map +1 -1
- package/lib/exceptions/IllegalArgumentException.js +5 -34
- package/lib/exceptions/IllegalArgumentException.js.map +1 -1
- package/lib/exceptions/IllegalReturnException.js +5 -34
- package/lib/exceptions/IllegalReturnException.js.map +1 -1
- package/lib/exceptions/IllegalStateException.js +5 -34
- package/lib/exceptions/IllegalStateException.js.map +1 -1
- package/lib/exceptions/JsonParseException.js +5 -34
- package/lib/exceptions/JsonParseException.js.map +1 -1
- package/lib/exceptions/MissingPropertyException.js +5 -34
- package/lib/exceptions/MissingPropertyException.js.map +1 -1
- package/lib/exceptions/NetworkException.js +9 -38
- package/lib/exceptions/NetworkException.js.map +1 -1
- package/lib/exceptions/NotAllowedUriException.js +5 -34
- package/lib/exceptions/NotAllowedUriException.js.map +1 -1
- package/lib/exceptions/NotFoundException.js +12 -41
- package/lib/exceptions/NotFoundException.js.map +1 -1
- package/lib/exceptions/ServerRequestException.js +5 -34
- package/lib/exceptions/ServerRequestException.js.map +1 -1
- package/lib/exceptions/ThemePropertyException.js +5 -34
- package/lib/exceptions/ThemePropertyException.js.map +1 -1
- package/lib/exceptions/TimeoutException.js +5 -32
- package/lib/exceptions/TimeoutException.js.map +1 -1
- package/lib/exceptions/UnauthorizedException.js +11 -40
- package/lib/exceptions/UnauthorizedException.js.map +1 -1
- package/lib/exceptions/UnsupportedOperationException.js +5 -34
- package/lib/exceptions/UnsupportedOperationException.js.map +1 -1
- package/lib/exceptions/index.js +15 -15
- package/lib/hooks/index.js +16 -16
- package/lib/hooks/useAllFormsOnModel.js +25 -51
- package/lib/hooks/useAllFormsOnModel.js.map +1 -1
- package/lib/hooks/useAuthentication.js +18 -24
- package/lib/hooks/useAuthentication.js.map +1 -1
- package/lib/hooks/useContent.js +14 -27
- package/lib/hooks/useContent.js.map +1 -1
- package/lib/hooks/useDeepCompareEffect.js +5 -7
- package/lib/hooks/useDeepCompareEffect.js.map +1 -1
- package/lib/hooks/useForm.js +27 -45
- package/lib/hooks/useForm.js.map +1 -1
- package/lib/hooks/useI18n.js +10 -20
- package/lib/hooks/useI18n.js.map +1 -1
- package/lib/hooks/useModal.js +11 -11
- package/lib/hooks/useModal.js.map +1 -1
- package/lib/hooks/useModelCatalog.js +24 -30
- package/lib/hooks/useModelCatalog.js.map +1 -1
- package/lib/hooks/useModels.js +3 -3
- package/lib/hooks/useModels.js.map +1 -1
- package/lib/hooks/useModularUI.js +17 -16
- package/lib/hooks/useModularUI.js.map +1 -1
- package/lib/hooks/useModularUIBasic.js +9 -7
- package/lib/hooks/useModularUIBasic.js.map +1 -1
- package/lib/hooks/useModularUIModel.js +39 -59
- package/lib/hooks/useModularUIModel.js.map +1 -1
- package/lib/hooks/useModularUIRequest.js +4 -6
- package/lib/hooks/useModularUIRequest.js.map +1 -1
- package/lib/hooks/useNotification.js +16 -21
- package/lib/hooks/useNotification.js.map +1 -1
- package/lib/hooks/usePreference.js +3 -5
- package/lib/hooks/usePreference.js.map +1 -1
- package/lib/hooks/useProgressIndicator.js +9 -37
- package/lib/hooks/useProgressIndicator.js.map +1 -1
- package/lib/hooks/useRouter.js +11 -25
- package/lib/hooks/useRouter.js.map +1 -1
- package/lib/i18n/Locale.js +97 -144
- package/lib/i18n/Locale.js.map +1 -1
- package/lib/i18n/Locales.js +97 -160
- package/lib/i18n/Locales.js.map +1 -1
- package/lib/i18n/Message.js +13 -31
- package/lib/i18n/Message.js.map +1 -1
- package/lib/i18n/index.js +9 -11
- package/lib/i18n/index.js.map +1 -1
- package/lib/i18n/languages.js +1 -1
- package/lib/i18n/languages.js.map +1 -1
- package/lib/i18n/withMessage.js +11 -17
- package/lib/i18n/withMessage.js.map +1 -1
- package/lib/index.js +6 -6
- package/lib/models/actions/ActionCollection.js +58 -104
- package/lib/models/actions/ActionCollection.js.map +1 -1
- package/lib/models/actions/ActionModel.js +169 -210
- package/lib/models/actions/ActionModel.js.map +1 -1
- package/lib/models/application/ApplicationModel.js +107 -159
- package/lib/models/application/ApplicationModel.js.map +1 -1
- package/lib/models/attributes/AttributeCollection.js +245 -341
- package/lib/models/attributes/AttributeCollection.js.map +1 -1
- package/lib/models/attributes/AttributeContent.js +182 -257
- package/lib/models/attributes/AttributeContent.js.map +1 -1
- package/lib/models/attributes/AttributeDataHelper.js +203 -257
- package/lib/models/attributes/AttributeDataHelper.js.map +1 -1
- package/lib/models/attributes/AttributeModel.js +838 -950
- package/lib/models/attributes/AttributeModel.js.map +1 -1
- package/lib/models/attributes/AttributeSetModel.js +49 -83
- package/lib/models/attributes/AttributeSetModel.js.map +1 -1
- package/lib/models/attributes/BooleanAttributeModel.js +267 -339
- package/lib/models/attributes/BooleanAttributeModel.js.map +1 -1
- package/lib/models/attributes/CaptchaAttributeModel.js +27 -59
- package/lib/models/attributes/CaptchaAttributeModel.js.map +1 -1
- package/lib/models/attributes/ChoiceAttributeModel.js +343 -437
- package/lib/models/attributes/ChoiceAttributeModel.js.map +1 -1
- package/lib/models/attributes/ChoiceAttributeOptionCollection.js +268 -369
- package/lib/models/attributes/ChoiceAttributeOptionCollection.js.map +1 -1
- package/lib/models/attributes/ChoiceAttributeOptionModel.js +299 -357
- package/lib/models/attributes/ChoiceAttributeOptionModel.js.map +1 -1
- package/lib/models/attributes/CompositeAttributeChildCollection.js +181 -270
- package/lib/models/attributes/CompositeAttributeChildCollection.js.map +1 -1
- package/lib/models/attributes/CompositeAttributeModel.js +331 -411
- package/lib/models/attributes/CompositeAttributeModel.js.map +1 -1
- package/lib/models/attributes/DatetimeAttributeModel.js +371 -425
- package/lib/models/attributes/DatetimeAttributeModel.js.map +1 -1
- package/lib/models/attributes/HelptextAttributeModel.js +41 -74
- package/lib/models/attributes/HelptextAttributeModel.js.map +1 -1
- package/lib/models/attributes/LabelAttributeModel.js +26 -58
- package/lib/models/attributes/LabelAttributeModel.js.map +1 -1
- package/lib/models/attributes/MemoAttributeModel.js +34 -67
- package/lib/models/attributes/MemoAttributeModel.js.map +1 -1
- package/lib/models/attributes/MoneyAttributeModel.js +34 -67
- package/lib/models/attributes/MoneyAttributeModel.js.map +1 -1
- package/lib/models/attributes/NumberAttributeModel.js +181 -231
- package/lib/models/attributes/NumberAttributeModel.js.map +1 -1
- package/lib/models/attributes/PasswordAttributeModel.js +201 -253
- package/lib/models/attributes/PasswordAttributeModel.js.map +1 -1
- package/lib/models/attributes/StringAttributeModel.js +239 -289
- package/lib/models/attributes/StringAttributeModel.js.map +1 -1
- package/lib/models/attributes/UploadAttributeModel.js +183 -243
- package/lib/models/attributes/UploadAttributeModel.js.map +1 -1
- package/lib/models/attributes/XMLAttributeModel.js +38 -71
- package/lib/models/attributes/XMLAttributeModel.js.map +1 -1
- package/lib/models/attributes/_createAttribute.js +20 -43
- package/lib/models/attributes/_createAttribute.js.map +1 -1
- package/lib/models/attributes/input-constraints/BSNConstraint.js +64 -84
- package/lib/models/attributes/input-constraints/BSNConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/ConstraintCollection.js +36 -74
- package/lib/models/attributes/input-constraints/ConstraintCollection.js.map +1 -1
- package/lib/models/attributes/input-constraints/ConstraintModel.js +46 -59
- package/lib/models/attributes/input-constraints/ConstraintModel.js.map +1 -1
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js +171 -193
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +53 -68
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +53 -68
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js +67 -84
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.js +53 -69
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/FileSizeConstraint.js +79 -95
- package/lib/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/IBANConstraint.js +41 -58
- package/lib/models/attributes/input-constraints/IBANConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/MandatoryConstraint.js +39 -60
- package/lib/models/attributes/input-constraints/MandatoryConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js +63 -82
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js +150 -172
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.js +105 -125
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js +92 -114
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js +58 -73
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +36 -55
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +51 -65
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +51 -65
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +64 -82
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/RangeConstraint.js +116 -135
- package/lib/models/attributes/input-constraints/RangeConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/RegexConstraint.js +48 -62
- package/lib/models/attributes/input-constraints/RegexConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/StringLengthConstraint.js +158 -177
- package/lib/models/attributes/input-constraints/StringLengthConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/XMLConstraint.js +49 -69
- package/lib/models/attributes/input-constraints/XMLConstraint.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js +54 -70
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/DependentAttribute.js +172 -218
- package/lib/models/attributes/layouthint-rules/DependentAttribute.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +43 -74
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +32 -64
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +1 -1
- package/lib/models/base/BaseCollection.js +170 -206
- package/lib/models/base/BaseCollection.js.map +1 -1
- package/lib/models/base/BaseModel.js +98 -113
- package/lib/models/base/BaseModel.js.map +1 -1
- package/lib/models/base/ResourceCollection.js +28 -60
- package/lib/models/base/ResourceCollection.js.map +1 -1
- package/lib/models/base/ResourceModel.js +171 -231
- package/lib/models/base/ResourceModel.js.map +1 -1
- package/lib/models/caseview/CaseViewModel.js +137 -188
- package/lib/models/caseview/CaseViewModel.js.map +1 -1
- package/lib/models/concepts/BusinessScenarioModel.js +97 -153
- package/lib/models/concepts/BusinessScenarioModel.js.map +1 -1
- package/lib/models/concepts/ConceptDetailModel.js +243 -329
- package/lib/models/concepts/ConceptDetailModel.js.map +1 -1
- package/lib/models/concepts/ConceptIndexModel.js +118 -156
- package/lib/models/concepts/ConceptIndexModel.js.map +1 -1
- package/lib/models/concepts/ConceptLinkModel.js +122 -163
- package/lib/models/concepts/ConceptLinkModel.js.map +1 -1
- package/lib/models/concepts/ConceptRelationCollection.js +57 -105
- package/lib/models/concepts/ConceptRelationCollection.js.map +1 -1
- package/lib/models/concepts/ConceptRelationModel.js +62 -75
- package/lib/models/concepts/ConceptRelationModel.js.map +1 -1
- package/lib/models/concepts/ConceptTypeDetailModel.js +87 -127
- package/lib/models/concepts/ConceptTypeDetailModel.js.map +1 -1
- package/lib/models/concepts/SourceReferenceCollection.js +13 -44
- package/lib/models/concepts/SourceReferenceCollection.js.map +1 -1
- package/lib/models/concepts/SourceReferenceModel.js +47 -74
- package/lib/models/concepts/SourceReferenceModel.js.map +1 -1
- package/lib/models/content/ContentIndexModel.js +112 -156
- package/lib/models/content/ContentIndexModel.js.map +1 -1
- package/lib/models/content/ContentLinkModel.js +162 -205
- package/lib/models/content/ContentLinkModel.js.map +1 -1
- package/lib/models/content/ContentModel.js +188 -235
- package/lib/models/content/ContentModel.js.map +1 -1
- package/lib/models/content/ContentTOCModel.js +133 -209
- package/lib/models/content/ContentTOCModel.js.map +1 -1
- package/lib/models/content/ContentTypeModel.js +56 -92
- package/lib/models/content/ContentTypeModel.js.map +1 -1
- package/lib/models/content/SectionModel.js +160 -254
- package/lib/models/content/SectionModel.js.map +1 -1
- package/lib/models/content/SubSectionModel.js +125 -196
- package/lib/models/content/SubSectionModel.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfiguration.js +46 -58
- package/lib/models/contentconfiguration/ContentConfiguration.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationElements.js +127 -171
- package/lib/models/contentconfiguration/ContentConfigurationElements.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.js +28 -45
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.js +31 -42
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationResults.js +74 -98
- package/lib/models/contentconfiguration/ContentConfigurationResults.js.map +1 -1
- package/lib/models/detail/DetailModel.js +176 -232
- package/lib/models/detail/DetailModel.js.map +1 -1
- package/lib/models/error/ErrorCollection.js +82 -139
- package/lib/models/error/ErrorCollection.js.map +1 -1
- package/lib/models/error/ErrorModel.js +36 -48
- package/lib/models/error/ErrorModel.js.map +1 -1
- package/lib/models/error/ErrorResponse.js +177 -205
- package/lib/models/error/ErrorResponse.js.map +1 -1
- package/lib/models/filters/AssignmentFilterModel.js +144 -195
- package/lib/models/filters/AssignmentFilterModel.js.map +1 -1
- package/lib/models/filters/BaseFilterModel.js +171 -228
- package/lib/models/filters/BaseFilterModel.js.map +1 -1
- package/lib/models/filters/ConceptIndexFilterModel.js +9 -39
- package/lib/models/filters/ConceptIndexFilterModel.js.map +1 -1
- package/lib/models/filters/FilterCollection.js +109 -177
- package/lib/models/filters/FilterCollection.js.map +1 -1
- package/lib/models/filters/FilterModel.js +2 -29
- package/lib/models/filters/FilterModel.js.map +1 -1
- package/lib/models/filters/RangeFilterModel.js +30 -60
- package/lib/models/filters/RangeFilterModel.js.map +1 -1
- package/lib/models/form/FormModel.js +961 -1150
- package/lib/models/form/FormModel.js.map +1 -1
- package/lib/models/form/FormObjectModel.js +411 -517
- package/lib/models/form/FormObjectModel.js.map +1 -1
- package/lib/models/grouping/GroupingModel.js +117 -165
- package/lib/models/grouping/GroupingModel.js.map +1 -1
- package/lib/models/href/Href.js +392 -452
- package/lib/models/href/Href.js.map +1 -1
- package/lib/models/href/ListHref.js +119 -159
- package/lib/models/href/ListHref.js.map +1 -1
- package/lib/models/index.js +97 -99
- package/lib/models/index.js.map +1 -1
- package/lib/models/layouthint/LayoutHintCollection.js +94 -140
- package/lib/models/layouthint/LayoutHintCollection.js.map +1 -1
- package/lib/models/links/LinkCollection.js +136 -196
- package/lib/models/links/LinkCollection.js.map +1 -1
- package/lib/models/links/LinkModel.js +191 -235
- package/lib/models/links/LinkModel.js.map +1 -1
- package/lib/models/links/normalizeLinkJSON.js +30 -66
- package/lib/models/links/normalizeLinkJSON.js.map +1 -1
- package/lib/models/list/ListDetailModel.js +229 -302
- package/lib/models/list/ListDetailModel.js.map +1 -1
- package/lib/models/list/ListHeaderModel.js +73 -97
- package/lib/models/list/ListHeaderModel.js.map +1 -1
- package/lib/models/list/ListItemCollection.js +49 -91
- package/lib/models/list/ListItemCollection.js.map +1 -1
- package/lib/models/list/ListItemModel.js +76 -114
- package/lib/models/list/ListItemModel.js.map +1 -1
- package/lib/models/list/ListModel.js +347 -435
- package/lib/models/list/ListModel.js.map +1 -1
- package/lib/models/lookup/LookupOptionCollection.js +16 -61
- package/lib/models/lookup/LookupOptionCollection.js.map +1 -1
- package/lib/models/lookup/LookupOptionsModel.js +48 -79
- package/lib/models/lookup/LookupOptionsModel.js.map +1 -1
- package/lib/models/modelcatalog/ModelCatalogModel.js +39 -72
- package/lib/models/modelcatalog/ModelCatalogModel.js.map +1 -1
- package/lib/models/paging/PagesizeModel.js +29 -38
- package/lib/models/paging/PagesizeModel.js.map +1 -1
- package/lib/models/paging/PagingModel.js +77 -92
- package/lib/models/paging/PagingModel.js.map +1 -1
- package/lib/models/panels/GroupingPanelModel.js +117 -164
- package/lib/models/panels/GroupingPanelModel.js.map +1 -1
- package/lib/models/parameter/Parameter.js +83 -99
- package/lib/models/parameter/Parameter.js.map +1 -1
- package/lib/models/process/ProcessStatusSettingsModel.js +67 -105
- package/lib/models/process/ProcessStatusSettingsModel.js.map +1 -1
- package/lib/models/resolveModel.js +3 -5
- package/lib/models/resolveModel.js.map +1 -1
- package/lib/models/search/CaseSearchModel.js +26 -60
- package/lib/models/search/CaseSearchModel.js.map +1 -1
- package/lib/models/sorting/SortOptionModel.js +77 -91
- package/lib/models/sorting/SortOptionModel.js.map +1 -1
- package/lib/models/sorting/SortingModel.js +88 -140
- package/lib/models/sorting/SortingModel.js.map +1 -1
- package/lib/models/tab/TabModel.js +122 -170
- package/lib/models/tab/TabModel.js.map +1 -1
- package/lib/models/taskgroup/TaskGroupCollection.js +8 -39
- package/lib/models/taskgroup/TaskGroupCollection.js.map +1 -1
- package/lib/models/taskgroup/TaskGroupModel.js +54 -88
- package/lib/models/taskgroup/TaskGroupModel.js.map +1 -1
- package/lib/models/user/UserModel.js +32 -65
- package/lib/models/user/UserModel.js.map +1 -1
- package/lib/models/user/UserProfileModel.js +21 -56
- package/lib/models/user/UserProfileModel.js.map +1 -1
- package/lib/models/user/UserServicesModel.js +78 -128
- package/lib/models/user/UserServicesModel.js.flow +1 -7
- package/lib/models/user/UserServicesModel.js.map +1 -1
- package/lib/modularui/Authenticate.js +144 -157
- package/lib/modularui/Authenticate.js.flow +13 -7
- package/lib/modularui/Authenticate.js.map +1 -1
- package/lib/modularui/ModularUIError.js +9 -39
- package/lib/modularui/ModularUIError.js.map +1 -1
- package/lib/modularui/ModularUIRequest.js +477 -647
- package/lib/modularui/ModularUIRequest.js.map +1 -1
- package/lib/modularui/ModularUIResponse.js +102 -120
- package/lib/modularui/ModularUIResponse.js.map +1 -1
- package/lib/modularui/index.js +3 -3
- package/lib/react/ErrorBoundary.js +33 -71
- package/lib/react/ErrorBoundary.js.map +1 -1
- package/lib/react/ErrorBoundaryFallback.js +8 -6
- package/lib/react/ErrorBoundaryFallback.js.map +1 -1
- package/lib/react/index.js +2 -2
- package/lib/react/utils.js +12 -16
- package/lib/react/utils.js.map +1 -1
- package/lib/react-client/Init.js +9 -7
- package/lib/react-client/Init.js.map +1 -1
- package/lib/react-client/client.js +22 -23
- package/lib/react-client/client.js.map +1 -1
- package/lib/react-client/contextPath.js +4 -4
- package/lib/react-client/contextPath.js.map +1 -1
- package/lib/react-client/index.js +3 -3
- package/lib/react-client/rehydrate.js +14 -22
- package/lib/react-client/rehydrate.js.map +1 -1
- package/lib/react-server/createSSRComplete.js +10 -14
- package/lib/react-server/createSSRComplete.js.map +1 -1
- package/lib/react-server/htmlpage.js +5 -8
- package/lib/react-server/htmlpage.js.map +1 -1
- package/lib/react-server/index.js +8 -8
- package/lib/react-server/renderSSRComplete.js +50 -55
- package/lib/react-server/renderSSRComplete.js.map +1 -1
- package/lib/react-server/renderSSRMinimal.js +13 -13
- package/lib/react-server/renderSSRMinimal.js.map +1 -1
- package/lib/react-server/requestInformation.js +8 -10
- package/lib/react-server/requestInformation.js.map +1 -1
- package/lib/react-server/serverNoSSR.js +22 -21
- package/lib/react-server/serverNoSSR.js.map +1 -1
- package/lib/react-server/serverSSR.js +24 -24
- package/lib/react-server/serverSSR.js.map +1 -1
- package/lib/react-server/serverUtil.js +49 -74
- package/lib/react-server/serverUtil.js.map +1 -1
- package/lib/react-theme/ThemeProvider.js +10 -7
- package/lib/react-theme/ThemeProvider.js.map +1 -1
- package/lib/react-theme/createTheme.js +15 -44
- package/lib/react-theme/createTheme.js.map +1 -1
- package/lib/react-theme/index.js +9 -9
- package/lib/react-theme/useTheme.js +1 -1
- package/lib/react-theme/useTheme.js.map +1 -1
- package/lib/react-theme/utils/background.js +9 -9
- package/lib/react-theme/utils/background.js.map +1 -1
- package/lib/react-theme/utils/colors.js +12 -12
- package/lib/react-theme/utils/colors.js.map +1 -1
- package/lib/react-theme/utils/contrast.js +27 -28
- package/lib/react-theme/utils/contrast.js.map +1 -1
- package/lib/react-theme/utils/corners.js +10 -9
- package/lib/react-theme/utils/corners.js.map +1 -1
- package/lib/react-theme/utils/spacers.js +23 -22
- package/lib/react-theme/utils/spacers.js.map +1 -1
- package/lib/react-theme/utils/themeProps.js +28 -30
- package/lib/react-theme/utils/themeProps.js.map +1 -1
- package/lib/redux/_i18n/actions.js +15 -21
- package/lib/redux/_i18n/actions.js.map +1 -1
- package/lib/redux/_i18n/index.js +2 -2
- package/lib/redux/_i18n/reducer.js +20 -34
- package/lib/redux/_i18n/reducer.js.map +1 -1
- package/lib/redux/_modularui/actions.js +40 -72
- package/lib/redux/_modularui/actions.js.map +1 -1
- package/lib/redux/_modularui/connector.js +46 -55
- package/lib/redux/_modularui/connector.js.map +1 -1
- package/lib/redux/_modularui/index.js +7 -7
- package/lib/redux/_modularui/middleware.js +23 -36
- package/lib/redux/_modularui/middleware.js.map +1 -1
- package/lib/redux/_modularui/modularuiUtils.js +16 -24
- package/lib/redux/_modularui/modularuiUtils.js.map +1 -1
- package/lib/redux/_modularui/reducer.js +42 -61
- package/lib/redux/_modularui/reducer.js.map +1 -1
- package/lib/redux/_modularui/selectors.js +89 -106
- package/lib/redux/_modularui/selectors.js.map +1 -1
- package/lib/redux/_modularui/withModularUI.js +11 -15
- package/lib/redux/_modularui/withModularUI.js.map +1 -1
- package/lib/redux/_router/actions.js +29 -39
- package/lib/redux/_router/actions.js.map +1 -1
- package/lib/redux/_router/connectors.js +7 -9
- package/lib/redux/_router/connectors.js.map +1 -1
- package/lib/redux/_router/index.js +4 -4
- package/lib/redux/_router/middleware.js +27 -29
- package/lib/redux/_router/middleware.js.map +1 -1
- package/lib/redux/_router/reducer.js +4 -4
- package/lib/redux/_router/reducer.js.map +1 -1
- package/lib/redux/actions/Application.js +11 -37
- package/lib/redux/actions/Application.js.map +1 -1
- package/lib/redux/actions/Authorization.js +31 -33
- package/lib/redux/actions/Authorization.js.map +1 -1
- package/lib/redux/actions/Error.js +33 -43
- package/lib/redux/actions/Error.js.map +1 -1
- package/lib/redux/actions/Form.js +14 -16
- package/lib/redux/actions/Form.js.map +1 -1
- package/lib/redux/actions/FormAttributeSet.js +6 -6
- package/lib/redux/actions/FormAttributeSet.js.map +1 -1
- package/lib/redux/actions/FormAttributeSetRepeatable.js +6 -6
- package/lib/redux/actions/FormAttributeSetRepeatable.js.map +1 -1
- package/lib/redux/actions/FormAutosave.js +12 -18
- package/lib/redux/actions/FormAutosave.js.map +1 -1
- package/lib/redux/actions/FormAutosubmit.js +2 -2
- package/lib/redux/actions/FormAutosubmit.js.map +1 -1
- package/lib/redux/actions/FormValidations.js +12 -20
- package/lib/redux/actions/FormValidations.js.map +1 -1
- package/lib/redux/actions/Modals.js +8 -12
- package/lib/redux/actions/Modals.js.map +1 -1
- package/lib/redux/actions/Notification.js +32 -42
- package/lib/redux/actions/Notification.js.map +1 -1
- package/lib/redux/actions/Preferences.js +32 -43
- package/lib/redux/actions/Preferences.js.map +1 -1
- package/lib/redux/actions/ProgressIndicator.js +15 -23
- package/lib/redux/actions/ProgressIndicator.js.map +1 -1
- package/lib/redux/actions/SignIn.js +43 -57
- package/lib/redux/actions/SignIn.js.map +1 -1
- package/lib/redux/actions/SignOut.js +9 -17
- package/lib/redux/actions/SignOut.js.map +1 -1
- package/lib/redux/actions/index.js +15 -15
- package/lib/redux/connectors/Application.js +1 -1
- package/lib/redux/connectors/Application.js.map +1 -1
- package/lib/redux/connectors/Breadcrumb.js +4 -6
- package/lib/redux/connectors/Breadcrumb.js.map +1 -1
- package/lib/redux/connectors/CaseView.js +4 -2
- package/lib/redux/connectors/CaseView.js.map +1 -1
- package/lib/redux/connectors/ConceptDetail.js +5 -3
- package/lib/redux/connectors/ConceptDetail.js.map +1 -1
- package/lib/redux/connectors/ContentBrowser.js +4 -2
- package/lib/redux/connectors/ContentBrowser.js.map +1 -1
- package/lib/redux/connectors/ContentDetail.js +5 -3
- package/lib/redux/connectors/ContentDetail.js.map +1 -1
- package/lib/redux/connectors/ContentDetailSection.js +6 -4
- package/lib/redux/connectors/ContentDetailSection.js.map +1 -1
- package/lib/redux/connectors/Form.js +10 -8
- package/lib/redux/connectors/Form.js.map +1 -1
- package/lib/redux/connectors/FormAttributeSet.js +13 -21
- package/lib/redux/connectors/FormAttributeSet.js.map +1 -1
- package/lib/redux/connectors/ListDetail.js +4 -2
- package/lib/redux/connectors/ListDetail.js.map +1 -1
- package/lib/redux/connectors/Modal.js +4 -6
- package/lib/redux/connectors/Modal.js.map +1 -1
- package/lib/redux/connectors/ModelCatalog.js +4 -2
- package/lib/redux/connectors/ModelCatalog.js.map +1 -1
- package/lib/redux/connectors/Notification.js +8 -10
- package/lib/redux/connectors/Notification.js.map +1 -1
- package/lib/redux/connectors/PanelRenderer.js +7 -6
- package/lib/redux/connectors/PanelRenderer.js.map +1 -1
- package/lib/redux/connectors/Preferences.js +6 -8
- package/lib/redux/connectors/Preferences.js.map +1 -1
- package/lib/redux/connectors/Progress.js +2 -2
- package/lib/redux/connectors/Progress.js.map +1 -1
- package/lib/redux/connectors/ProgressIndicator.js +6 -8
- package/lib/redux/connectors/ProgressIndicator.js.map +1 -1
- package/lib/redux/connectors/QuickSearch.js +5 -3
- package/lib/redux/connectors/QuickSearch.js.map +1 -1
- package/lib/redux/connectors/SignIn.js +4 -4
- package/lib/redux/connectors/SignIn.js.map +1 -1
- package/lib/redux/connectors/SignOut.js +3 -3
- package/lib/redux/connectors/SignOut.js.map +1 -1
- package/lib/redux/connectors/Tab.js +4 -2
- package/lib/redux/connectors/Tab.js.map +1 -1
- package/lib/redux/connectors/index.js +21 -21
- package/lib/redux/index.js +8 -8
- package/lib/redux/reducers/AuthReducer.js +14 -33
- package/lib/redux/reducers/AuthReducer.js.map +1 -1
- package/lib/redux/reducers/ErrorReducer.js +4 -4
- package/lib/redux/reducers/ErrorReducer.js.map +1 -1
- package/lib/redux/reducers/ModalsReducer.js +19 -45
- package/lib/redux/reducers/ModalsReducer.js.map +1 -1
- package/lib/redux/reducers/NotificationReducer.js +8 -27
- package/lib/redux/reducers/NotificationReducer.js.map +1 -1
- package/lib/redux/reducers/PreferencesReducer.js +10 -25
- package/lib/redux/reducers/PreferencesReducer.js.map +1 -1
- package/lib/redux/reducers/ProgressIndicatorReducer.js +14 -33
- package/lib/redux/reducers/ProgressIndicatorReducer.js.map +1 -1
- package/lib/redux/reducers/createReducer.js +11 -13
- package/lib/redux/reducers/createReducer.js.map +1 -1
- package/lib/redux/reducers/index.js +7 -7
- package/lib/redux/selectors/i18n.js +2 -4
- package/lib/redux/selectors/i18n.js.map +1 -1
- package/lib/redux/selectors/index.js +1 -1
- package/lib/redux/store/beforeRenderHooks.js +5 -29
- package/lib/redux/store/beforeRenderHooks.js.map +1 -1
- package/lib/redux/store/configureStore.js +10 -24
- package/lib/redux/store/configureStore.js.map +1 -1
- package/lib/utils/browser/Cache.js +126 -161
- package/lib/utils/browser/Cache.js.map +1 -1
- package/lib/utils/browser/Cookies.js +4 -4
- package/lib/utils/browser/Cookies.js.map +1 -1
- package/lib/utils/datetime/DateTimeUtil.js +364 -418
- package/lib/utils/datetime/DateTimeUtil.js.map +1 -1
- package/lib/utils/fetch/serverFetch.js +5 -5
- package/lib/utils/fetch/serverFetch.js.map +1 -1
- package/lib/utils/fetch/universalFetch.js +13 -13
- package/lib/utils/fetch/universalFetch.js.map +1 -1
- package/lib/utils/fetch/xhr.js +281 -365
- package/lib/utils/fetch/xhr.js.map +1 -1
- package/lib/utils/helpers/checkResource.js +7 -7
- package/lib/utils/helpers/checkResource.js.map +1 -1
- package/lib/utils/helpers/createHash.js +5 -5
- package/lib/utils/helpers/createHash.js.map +1 -1
- package/lib/utils/helpers/createUUID.js +4 -4
- package/lib/utils/helpers/createUUID.js.map +1 -1
- package/lib/utils/helpers/objects.js +9 -15
- package/lib/utils/helpers/objects.js.map +1 -1
- package/lib/utils/helpers/sanitizeHtml.js +13 -13
- package/lib/utils/helpers/sanitizeHtml.js.map +1 -1
- package/lib/utils/helpers/text.js +1 -1
- package/lib/utils/helpers/text.js.map +1 -1
- package/lib/utils/index.js +15 -15
- package/lib/utils/number/DecimalFormat.js +298 -328
- package/lib/utils/number/DecimalFormat.js.map +1 -1
- package/lib/utils/number/formatValue.js +10 -17
- package/lib/utils/number/formatValue.js.map +1 -1
- package/lib/utils/number/parseNumbers.js +13 -13
- package/lib/utils/number/parseNumbers.js.map +1 -1
- package/package.json +13 -13
- package/src/models/user/UserServicesModel.js +1 -7
- package/src/modularui/Authenticate.js +13 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Href.js","names":["BASE","CONTENT_PATH","HTTP_METHODS","Parameter","IllegalArgumentException","Href","href","resourcetype","path","parameters","hash","state","method","GET","setFromHref","setFromString","setFromLocationOrObject","pathname","_path","search","addParametersFromString","Array","isArray","_parameters","param","addParameter","_name","_value","_prefix","getHashFromString","_hash","_state","getPathFromString","checkAbsoluteUrl","split","forEach","paramFromString","fromString","setParameter","name","value","prefix","removeParameter","push","getParameter","undefined","_method","withPrefix","toQuerystring","join","isModUIParameter","getQuerystring","_resourcetype","isExternal","querystring","length","absolutepath","thisPath","otherPath","equals","thisParams","toString","every","checkAbsolute","RegExp","test","decodedHref","decodeURI","hrefNoHash","substr","indexOf"],"sources":["../../../src/models/href/Href.js"],"sourcesContent":["// @flow\nimport { BASE, CONTENT_PATH, HTTP_METHODS } from \"../../constants/Constants\";\n\nimport Parameter from \"../parameter/Parameter\";\nimport { IllegalArgumentException } from \"../../exceptions\";\n\nimport type { LocationShape } from \"react-router\";\n\ntype HrefObject = {\n _path: string,\n _hash: string,\n _parameters: Array<Parameter>,\n _resourcetype: string,\n _method: $Keys<typeof HTTP_METHODS>,\n _state: ?{ [key: string]: any },\n pathname: ?string,\n};\n\nexport type HrefInput = Href | HrefObject | LocationShape | string;\n\n/**\n * Defines a Href with the parameters\n */\nclass Href {\n _path: string;\n _hash: string;\n _parameters: Array<Parameter>;\n _resourcetype: string;\n _method: $Keys<typeof HTTP_METHODS>;\n _state: ?{ +[key: string]: any };\n\n /**\n * Create a Href\n */\n constructor(href?: HrefInput, resourcetype?: string) {\n this.path = \"\";\n this.parameters = [];\n this.hash = \"\";\n this.state = null;\n this.method = HTTP_METHODS.GET;\n this.resourcetype = resourcetype || \"\";\n\n if (href instanceof Href) {\n this.setFromHref(href);\n } else if (typeof href === \"string\") {\n this.setFromString(href);\n } else if (typeof href === \"object\") {\n this.setFromLocationOrObject(href);\n }\n }\n\n /**\n * Set parameters from Href model input\n */\n setFromHref(href: Href) {\n this.path = href.path;\n this.parameters = href.parameters;\n this.hash = href.hash;\n this.state = href.state;\n }\n\n /**\n */\n setFromLocationOrObject(href: LocationShape | HrefObject) {\n if (typeof href[\"pathname\"] === \"string\") {\n this.path = href.pathname;\n } else if (typeof href._path === \"string\") {\n this.path = href._path;\n }\n\n if (href.search) {\n this.addParametersFromString(href.search);\n } else if (Array.isArray(href._parameters)) {\n // $FlowExpectedError[incompatible-call]\n href._parameters.map((param: Parameter) =>\n this.addParameter(param._name, param._value, param._prefix)\n );\n }\n\n if (href.hash) {\n this.hash = Href.getHashFromString(href.hash);\n } else if (typeof href._hash === \"string\") {\n this.hash = href._hash;\n }\n\n if (href.state) {\n this.state = href.state || null;\n } else if (typeof href._state === \"object\") {\n this.state = href._state;\n }\n }\n\n /**\n * Set parameters from string input\n */\n setFromString(href: string) {\n this.path = Href.getPathFromString(href);\n this.addParametersFromString(href);\n this.hash = Href.getHashFromString(href);\n }\n\n /**\n */\n get isChangePassword(): boolean {\n return this._path.includes(\"/change-password\");\n }\n\n /**\n * check if the path is referencing a camel route\n */\n static isCamelRoute(path: string): boolean {\n return (\n path.startsWith(\"/restServices\") && !path.startsWith(\"/restServices/ui\")\n );\n }\n\n /**\n */\n static checkAbsoluteUrl(href: string): boolean {\n const checkAbsolute = new RegExp(\"^(?:[a-z]+:)?//\", \"i\");\n return checkAbsolute.test(href);\n }\n\n // Check if url is relative (not checking for absolute urls with same domain)\n /**\n */\n get isExternal(): boolean {\n return Href.checkAbsoluteUrl(this.path);\n }\n\n /**\n * Retrieve the relative path part of a href string, e.g. https://www.beinformed.com/BeInformed/tab/view?q=url => /tab/view\n */\n static getPathFromString(href: string): string {\n const decodedHref = decodeURI(href);\n\n const hrefNoHash = decodedHref.includes(\"#\")\n ? decodedHref.substr(0, decodedHref.indexOf(\"#\"))\n : decodedHref;\n\n return hrefNoHash.includes(\"?\") ? hrefNoHash.split(\"?\")[0] : hrefNoHash;\n }\n\n /**\n * Retrieve hash of href string\n */\n static getHashFromString(href: string = \"\"): string {\n return href.includes(\"#\") ? href.substr(href.indexOf(\"#\") + 1) : \"\";\n }\n\n /**\n * Add a parameter for each parameter found in the querystring of an URL string, e.g. https://www.beinformed.com?q=url => q=url\n */\n addParametersFromString(href: string): Href {\n if (href.includes(\"?\")) {\n href\n .split(\"?\")[1]\n .split(\"&\")\n .forEach((param) => {\n const paramFromString = Parameter.fromString(param);\n if (paramFromString) {\n this.setParameter(\n paramFromString.name,\n paramFromString.value,\n paramFromString.prefix\n );\n }\n });\n }\n\n return this;\n }\n\n /**\n * Add a querystring parameter to the parameter collection of this Href, skips parameters that have a value of null\n */\n addParameter(name: string, value: ?string, prefix: ?string): Href {\n if (value !== null) {\n this.removeParameter(name, prefix);\n this._parameters.push(new Parameter(prefix, name, value));\n }\n\n return this;\n }\n\n /**\n * Adds or overwrites a parameter when it exists and value is not null.\n * Removes the parameter when the value is null\n */\n setParameter(name: string, value: ?string, prefix: ?string): Href {\n if (value === null) {\n this.removeParameter(name, prefix);\n } else {\n this.addParameter(name, value, prefix);\n }\n\n return this;\n }\n\n /**\n * Retrieve a parameter by it's name and (optionally) prefix\n */\n getParameter(name: string, prefix: ?string): ?Parameter {\n return this._parameters.find(\n (param) => param.prefix === prefix && param.name === name\n );\n }\n\n /**\n */\n hasParameter(name: string, prefix: ?string): boolean {\n return this.getParameter(name, prefix) !== undefined;\n }\n\n /**\n * Get request method\n */\n get method(): $Keys<typeof HTTP_METHODS> {\n return this._method;\n }\n\n /**\n * Set request method\n */\n set method(method: $Keys<typeof HTTP_METHODS>) {\n this._method = method || HTTP_METHODS.GET;\n }\n\n /**\n * Retrieve all paremters\n */\n get parameters(): Array<Parameter> {\n return this._parameters;\n }\n\n /**\n * Replace parameters of Href\n */\n set parameters(parameters: Array<Parameter>) {\n this._parameters = parameters;\n }\n\n /**\n * Remove a parameter from the parameter collection\n */\n removeParameter(name: string, prefix: ?string): Href {\n this._parameters = this._parameters.filter(\n (param) => param.prefix !== prefix || param.name !== name\n );\n\n return this;\n }\n\n /**\n * Get the parameters as a querystring, e.g. param1=value1¶m2=value2, optionally with prefix\n */\n getQuerystring(withPrefix: boolean = false): string {\n return this.parameters\n .filter((param) => param.value != null)\n .map((param) => param.toQuerystring(withPrefix))\n .join(\"&\");\n }\n\n /**\n * Retrieve a querystring that only contains parameter that can be send to the modular ui, parameters are filtered by prefix\n */\n getQuerystringForModularUI(prefix: string = \"\"): string {\n return this.parameters\n .filter(\n (param) =>\n param.isModUIParameter &&\n (!prefix || !param.prefix || param.prefix === prefix) &&\n param.value != null\n )\n .map((param) => param.toQuerystring(false))\n .join(\"&\");\n }\n\n /**\n * Retrieve all parameters from the parameter collection in a querystring style name1=value1&name2=value2, without the prefix\n */\n get querystring(): string {\n return this.getQuerystring(false);\n }\n\n /**\n * Set the path of the Href, the part before the querystring question mark\n */\n set path(path: string) {\n this._path = path;\n }\n\n /**\n * Retrieve the path\n */\n get path(): string {\n return this._path || \"\";\n }\n\n /**\n * Set hash\n */\n set hash(hash: string) {\n this._hash = hash;\n }\n\n /**\n * Retrieve hash\n */\n get hash(): string {\n return this._hash;\n }\n\n /**\n */\n set state(state: ?{ +[key: string]: any }) {\n this._state = state;\n }\n\n /**\n */\n get state(): ?{ +[key: string]: any } {\n return this._state;\n }\n\n /**\n */\n setState(state: { [key: string]: any }): Href {\n this.state = state;\n\n return this;\n }\n\n /**\n * Set resourctype\n */\n set resourcetype(resourcetype: string) {\n this._resourcetype = resourcetype;\n }\n\n /**\n * Retrieve resourceType\n */\n get resourcetype(): string {\n return this._resourcetype;\n }\n\n /**\n * Retrieve the path combined with the BASE of the application, e.g. /BeInformed\n */\n get absolutepath(): string {\n if (this.isExternal) {\n return this.path;\n }\n\n return BASE + this.path;\n }\n\n /**\n * Retrieves the combination of the path and the querystring\n */\n get href(): string {\n return this.querystring.length > 0\n ? [this.path, this.querystring].join(\"?\")\n : this.path;\n }\n\n /**\n * Getting the URL including the base path, querystring is prefixed\n */\n get absolutehref(): string {\n const querystring = this.getQuerystring(false);\n\n return querystring.length > 0\n ? [this.absolutepath, querystring].join(\"?\")\n : this.absolutepath;\n }\n\n /**\n * Getting the URL including the base path, the querystring is prefixed\n */\n get absolutehrefPrefixedQuerystring(): string {\n const querystring = this.getQuerystring(true);\n\n return querystring.length > 0\n ? [this.absolutepath, querystring].join(\"?\")\n : this.absolutepath;\n }\n\n /**\n * Checks if the URL starts within the given href\n */\n startsWith(href: Href | string): boolean {\n const thisPath = `${this.path}/`;\n const otherPath = href instanceof Href ? `${href.path}/` : href;\n\n return thisPath.startsWith(otherPath);\n }\n\n /**\n * Checks if the given Href equals this Href\n */\n equals(href: Href | string): boolean {\n if (href instanceof Href) {\n return this.path === href.path;\n }\n\n return this.path === href;\n }\n\n /**\n */\n equalsWithParameters(href: Href): boolean {\n if (!this.equals(href)) {\n return false;\n }\n\n if (href instanceof Href) {\n if (this.parameters.length !== href.parameters.length) {\n return false;\n }\n\n if (this.parameters.length === 0 && href.parameters.length === 0) {\n return true;\n }\n\n const thisParams = this.parameters.map((param) => param.toString());\n\n return href.parameters.every((param) =>\n thisParams.includes(param.toString())\n );\n }\n\n throw new IllegalArgumentException(`${href} is not an instance of Href`);\n }\n\n /**\n * Indicates if the link is a content link\n */\n get isContent(): boolean {\n return this.absolutepath.startsWith(CONTENT_PATH);\n }\n\n /**\n * Returns a complete url from the Href\n */\n toString(): string {\n return this.href;\n }\n\n /**\n */\n toLocation(): LocationShape {\n return {\n pathname: this.path,\n search: this.querystring.length > 0 ? `?${this.querystring}` : \"\",\n hash: this.hash.length > 0 ? `#${this.hash}` : \"\",\n state: this.state,\n };\n }\n}\n\nexport default Href;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"Href.js","names":["BASE","CONTENT_PATH","HTTP_METHODS","Parameter","IllegalArgumentException","Href","constructor","href","resourcetype","path","parameters","hash","state","method","GET","setFromHref","setFromString","setFromLocationOrObject","pathname","_path","search","addParametersFromString","Array","isArray","_parameters","param","addParameter","_name","_value","_prefix","getHashFromString","_hash","_state","getPathFromString","isChangePassword","isCamelRoute","checkAbsoluteUrl","checkAbsolute","RegExp","test","isExternal","decodedHref","decodeURI","hrefNoHash","substr","indexOf","split","forEach","paramFromString","fromString","setParameter","name","value","prefix","removeParameter","push","getParameter","hasParameter","undefined","_method","getQuerystring","withPrefix","toQuerystring","join","getQuerystringForModularUI","isModUIParameter","querystring","setState","_resourcetype","absolutepath","length","absolutehref","absolutehrefPrefixedQuerystring","startsWith","thisPath","otherPath","equals","equalsWithParameters","thisParams","toString","every","isContent","toLocation"],"sources":["../../../src/models/href/Href.js"],"sourcesContent":["// @flow\nimport { BASE, CONTENT_PATH, HTTP_METHODS } from \"../../constants/Constants\";\n\nimport Parameter from \"../parameter/Parameter\";\nimport { IllegalArgumentException } from \"../../exceptions\";\n\nimport type { LocationShape } from \"react-router\";\n\ntype HrefObject = {\n _path: string,\n _hash: string,\n _parameters: Array<Parameter>,\n _resourcetype: string,\n _method: $Keys<typeof HTTP_METHODS>,\n _state: ?{ [key: string]: any },\n pathname: ?string,\n};\n\nexport type HrefInput = Href | HrefObject | LocationShape | string;\n\n/**\n * Defines a Href with the parameters\n */\nclass Href {\n _path: string;\n _hash: string;\n _parameters: Array<Parameter>;\n _resourcetype: string;\n _method: $Keys<typeof HTTP_METHODS>;\n _state: ?{ +[key: string]: any };\n\n /**\n * Create a Href\n */\n constructor(href?: HrefInput, resourcetype?: string) {\n this.path = \"\";\n this.parameters = [];\n this.hash = \"\";\n this.state = null;\n this.method = HTTP_METHODS.GET;\n this.resourcetype = resourcetype || \"\";\n\n if (href instanceof Href) {\n this.setFromHref(href);\n } else if (typeof href === \"string\") {\n this.setFromString(href);\n } else if (typeof href === \"object\") {\n this.setFromLocationOrObject(href);\n }\n }\n\n /**\n * Set parameters from Href model input\n */\n setFromHref(href: Href) {\n this.path = href.path;\n this.parameters = href.parameters;\n this.hash = href.hash;\n this.state = href.state;\n }\n\n /**\n */\n setFromLocationOrObject(href: LocationShape | HrefObject) {\n if (typeof href[\"pathname\"] === \"string\") {\n this.path = href.pathname;\n } else if (typeof href._path === \"string\") {\n this.path = href._path;\n }\n\n if (href.search) {\n this.addParametersFromString(href.search);\n } else if (Array.isArray(href._parameters)) {\n // $FlowExpectedError[incompatible-call]\n href._parameters.map((param: Parameter) =>\n this.addParameter(param._name, param._value, param._prefix)\n );\n }\n\n if (href.hash) {\n this.hash = Href.getHashFromString(href.hash);\n } else if (typeof href._hash === \"string\") {\n this.hash = href._hash;\n }\n\n if (href.state) {\n this.state = href.state || null;\n } else if (typeof href._state === \"object\") {\n this.state = href._state;\n }\n }\n\n /**\n * Set parameters from string input\n */\n setFromString(href: string) {\n this.path = Href.getPathFromString(href);\n this.addParametersFromString(href);\n this.hash = Href.getHashFromString(href);\n }\n\n /**\n */\n get isChangePassword(): boolean {\n return this._path.includes(\"/change-password\");\n }\n\n /**\n * check if the path is referencing a camel route\n */\n static isCamelRoute(path: string): boolean {\n return (\n path.startsWith(\"/restServices\") && !path.startsWith(\"/restServices/ui\")\n );\n }\n\n /**\n */\n static checkAbsoluteUrl(href: string): boolean {\n const checkAbsolute = new RegExp(\"^(?:[a-z]+:)?//\", \"i\");\n return checkAbsolute.test(href);\n }\n\n // Check if url is relative (not checking for absolute urls with same domain)\n /**\n */\n get isExternal(): boolean {\n return Href.checkAbsoluteUrl(this.path);\n }\n\n /**\n * Retrieve the relative path part of a href string, e.g. https://www.beinformed.com/BeInformed/tab/view?q=url => /tab/view\n */\n static getPathFromString(href: string): string {\n const decodedHref = decodeURI(href);\n\n const hrefNoHash = decodedHref.includes(\"#\")\n ? decodedHref.substr(0, decodedHref.indexOf(\"#\"))\n : decodedHref;\n\n return hrefNoHash.includes(\"?\") ? hrefNoHash.split(\"?\")[0] : hrefNoHash;\n }\n\n /**\n * Retrieve hash of href string\n */\n static getHashFromString(href: string = \"\"): string {\n return href.includes(\"#\") ? href.substr(href.indexOf(\"#\") + 1) : \"\";\n }\n\n /**\n * Add a parameter for each parameter found in the querystring of an URL string, e.g. https://www.beinformed.com?q=url => q=url\n */\n addParametersFromString(href: string): Href {\n if (href.includes(\"?\")) {\n href\n .split(\"?\")[1]\n .split(\"&\")\n .forEach((param) => {\n const paramFromString = Parameter.fromString(param);\n if (paramFromString) {\n this.setParameter(\n paramFromString.name,\n paramFromString.value,\n paramFromString.prefix\n );\n }\n });\n }\n\n return this;\n }\n\n /**\n * Add a querystring parameter to the parameter collection of this Href, skips parameters that have a value of null\n */\n addParameter(name: string, value: ?string, prefix: ?string): Href {\n if (value !== null) {\n this.removeParameter(name, prefix);\n this._parameters.push(new Parameter(prefix, name, value));\n }\n\n return this;\n }\n\n /**\n * Adds or overwrites a parameter when it exists and value is not null.\n * Removes the parameter when the value is null\n */\n setParameter(name: string, value: ?string, prefix: ?string): Href {\n if (value === null) {\n this.removeParameter(name, prefix);\n } else {\n this.addParameter(name, value, prefix);\n }\n\n return this;\n }\n\n /**\n * Retrieve a parameter by it's name and (optionally) prefix\n */\n getParameter(name: string, prefix: ?string): ?Parameter {\n return this._parameters.find(\n (param) => param.prefix === prefix && param.name === name\n );\n }\n\n /**\n */\n hasParameter(name: string, prefix: ?string): boolean {\n return this.getParameter(name, prefix) !== undefined;\n }\n\n /**\n * Get request method\n */\n get method(): $Keys<typeof HTTP_METHODS> {\n return this._method;\n }\n\n /**\n * Set request method\n */\n set method(method: $Keys<typeof HTTP_METHODS>) {\n this._method = method || HTTP_METHODS.GET;\n }\n\n /**\n * Retrieve all paremters\n */\n get parameters(): Array<Parameter> {\n return this._parameters;\n }\n\n /**\n * Replace parameters of Href\n */\n set parameters(parameters: Array<Parameter>) {\n this._parameters = parameters;\n }\n\n /**\n * Remove a parameter from the parameter collection\n */\n removeParameter(name: string, prefix: ?string): Href {\n this._parameters = this._parameters.filter(\n (param) => param.prefix !== prefix || param.name !== name\n );\n\n return this;\n }\n\n /**\n * Get the parameters as a querystring, e.g. param1=value1¶m2=value2, optionally with prefix\n */\n getQuerystring(withPrefix: boolean = false): string {\n return this.parameters\n .filter((param) => param.value != null)\n .map((param) => param.toQuerystring(withPrefix))\n .join(\"&\");\n }\n\n /**\n * Retrieve a querystring that only contains parameter that can be send to the modular ui, parameters are filtered by prefix\n */\n getQuerystringForModularUI(prefix: string = \"\"): string {\n return this.parameters\n .filter(\n (param) =>\n param.isModUIParameter &&\n (!prefix || !param.prefix || param.prefix === prefix) &&\n param.value != null\n )\n .map((param) => param.toQuerystring(false))\n .join(\"&\");\n }\n\n /**\n * Retrieve all parameters from the parameter collection in a querystring style name1=value1&name2=value2, without the prefix\n */\n get querystring(): string {\n return this.getQuerystring(false);\n }\n\n /**\n * Set the path of the Href, the part before the querystring question mark\n */\n set path(path: string) {\n this._path = path;\n }\n\n /**\n * Retrieve the path\n */\n get path(): string {\n return this._path || \"\";\n }\n\n /**\n * Set hash\n */\n set hash(hash: string) {\n this._hash = hash;\n }\n\n /**\n * Retrieve hash\n */\n get hash(): string {\n return this._hash;\n }\n\n /**\n */\n set state(state: ?{ +[key: string]: any }) {\n this._state = state;\n }\n\n /**\n */\n get state(): ?{ +[key: string]: any } {\n return this._state;\n }\n\n /**\n */\n setState(state: { [key: string]: any }): Href {\n this.state = state;\n\n return this;\n }\n\n /**\n * Set resourctype\n */\n set resourcetype(resourcetype: string) {\n this._resourcetype = resourcetype;\n }\n\n /**\n * Retrieve resourceType\n */\n get resourcetype(): string {\n return this._resourcetype;\n }\n\n /**\n * Retrieve the path combined with the BASE of the application, e.g. /BeInformed\n */\n get absolutepath(): string {\n if (this.isExternal) {\n return this.path;\n }\n\n return BASE + this.path;\n }\n\n /**\n * Retrieves the combination of the path and the querystring\n */\n get href(): string {\n return this.querystring.length > 0\n ? [this.path, this.querystring].join(\"?\")\n : this.path;\n }\n\n /**\n * Getting the URL including the base path, querystring is prefixed\n */\n get absolutehref(): string {\n const querystring = this.getQuerystring(false);\n\n return querystring.length > 0\n ? [this.absolutepath, querystring].join(\"?\")\n : this.absolutepath;\n }\n\n /**\n * Getting the URL including the base path, the querystring is prefixed\n */\n get absolutehrefPrefixedQuerystring(): string {\n const querystring = this.getQuerystring(true);\n\n return querystring.length > 0\n ? [this.absolutepath, querystring].join(\"?\")\n : this.absolutepath;\n }\n\n /**\n * Checks if the URL starts within the given href\n */\n startsWith(href: Href | string): boolean {\n const thisPath = `${this.path}/`;\n const otherPath = href instanceof Href ? `${href.path}/` : href;\n\n return thisPath.startsWith(otherPath);\n }\n\n /**\n * Checks if the given Href equals this Href\n */\n equals(href: Href | string): boolean {\n if (href instanceof Href) {\n return this.path === href.path;\n }\n\n return this.path === href;\n }\n\n /**\n */\n equalsWithParameters(href: Href): boolean {\n if (!this.equals(href)) {\n return false;\n }\n\n if (href instanceof Href) {\n if (this.parameters.length !== href.parameters.length) {\n return false;\n }\n\n if (this.parameters.length === 0 && href.parameters.length === 0) {\n return true;\n }\n\n const thisParams = this.parameters.map((param) => param.toString());\n\n return href.parameters.every((param) =>\n thisParams.includes(param.toString())\n );\n }\n\n throw new IllegalArgumentException(`${href} is not an instance of Href`);\n }\n\n /**\n * Indicates if the link is a content link\n */\n get isContent(): boolean {\n return this.absolutepath.startsWith(CONTENT_PATH);\n }\n\n /**\n * Returns a complete url from the Href\n */\n toString(): string {\n return this.href;\n }\n\n /**\n */\n toLocation(): LocationShape {\n return {\n pathname: this.path,\n search: this.querystring.length > 0 ? `?${this.querystring}` : \"\",\n hash: this.hash.length > 0 ? `#${this.hash}` : \"\",\n state: this.state,\n };\n }\n}\n\nexport default Href;\n"],"mappings":"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"}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import _Reflect$construct from "@babel/runtime-corejs3/core-js-stable/reflect/construct";
|
|
2
|
-
import _classCallCheck from "@babel/runtime-corejs3/helpers/esm/classCallCheck";
|
|
3
|
-
import _createClass from "@babel/runtime-corejs3/helpers/esm/createClass";
|
|
4
|
-
import _assertThisInitialized from "@babel/runtime-corejs3/helpers/esm/assertThisInitialized";
|
|
5
|
-
import _inherits from "@babel/runtime-corejs3/helpers/esm/inherits";
|
|
6
|
-
import _possibleConstructorReturn from "@babel/runtime-corejs3/helpers/esm/possibleConstructorReturn";
|
|
7
|
-
import _getPrototypeOf from "@babel/runtime-corejs3/helpers/esm/getPrototypeOf";
|
|
8
1
|
import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
|
|
9
|
-
|
|
10
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11
|
-
|
|
12
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
13
|
-
|
|
14
2
|
import Href from "./Href";
|
|
15
3
|
|
|
16
4
|
/**
|
|
@@ -18,170 +6,143 @@ import Href from "./Href";
|
|
|
18
6
|
*
|
|
19
7
|
* @augments Href
|
|
20
8
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
9
|
+
export default class ListHref extends Href {
|
|
10
|
+
/**
|
|
11
|
+
* Create a ListHref
|
|
12
|
+
*/
|
|
13
|
+
constructor(href, list) {
|
|
14
|
+
let isPrefixed = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
|
|
15
|
+
super(href);
|
|
16
|
+
|
|
17
|
+
_defineProperty(this, "_isPrefixed", void 0);
|
|
18
|
+
|
|
19
|
+
_defineProperty(this, "_prefix", void 0);
|
|
20
|
+
|
|
21
|
+
_defineProperty(this, "_pagingName", void 0);
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
_defineProperty(this, "_pagesizeName", void 0);
|
|
25
24
|
|
|
25
|
+
_defineProperty(this, "_sortingName", void 0);
|
|
26
|
+
|
|
27
|
+
this._isPrefixed = isPrefixed;
|
|
28
|
+
|
|
29
|
+
if (list != null) {
|
|
30
|
+
this.setParameterNamesFromListModel(list);
|
|
31
|
+
} else if (href != null && href instanceof ListHref) {
|
|
32
|
+
this.setParameterNamesFromHref(href);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
26
35
|
/**
|
|
27
|
-
*
|
|
36
|
+
* Retrieve parameter names from Href
|
|
28
37
|
*/
|
|
29
|
-
function ListHref(href, list) {
|
|
30
|
-
var _this;
|
|
31
38
|
|
|
32
|
-
var isPrefixed = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
|
|
33
39
|
|
|
34
|
-
|
|
40
|
+
setParameterNamesFromHref(href) {
|
|
41
|
+
this._prefix = this._isPrefixed ? href.prefix : null;
|
|
42
|
+
this._pagingName = href.pagingName;
|
|
43
|
+
this._pagesizeName = href.pagesizeName;
|
|
44
|
+
this._sortingName = href.sortingName;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Retrieve parameter names and settings from List model
|
|
48
|
+
*/
|
|
35
49
|
|
|
36
|
-
_this = _super.call(this, href);
|
|
37
50
|
|
|
38
|
-
|
|
51
|
+
setParameterNamesFromListModel(list) {
|
|
52
|
+
this._prefix = this._isPrefixed ? list.key : null;
|
|
53
|
+
this._pagingName = list.paging ? list.paging.name : "";
|
|
54
|
+
this._pagesizeName = list.paging && list.paging.pagesize ? list.paging.pagesize.name : "";
|
|
55
|
+
this._sortingName = list.sorting ? list.sorting.name : "";
|
|
56
|
+
this.page = list.paging ? list.paging.page : null;
|
|
57
|
+
this.pagesize = list.paging && list.paging.pagesize.options.length > 0 ? list.paging.pagesize.value : null;
|
|
58
|
+
this.sort = list.sorting && list.sorting.param ? list.sorting.param : null;
|
|
59
|
+
this.filterCollection = list.filterCollection;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Getting prefix
|
|
63
|
+
*/
|
|
39
64
|
|
|
40
|
-
_defineProperty(_assertThisInitialized(_this), "_prefix", void 0);
|
|
41
65
|
|
|
42
|
-
|
|
66
|
+
get prefix() {
|
|
67
|
+
return this._prefix;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Getting paging name
|
|
71
|
+
*/
|
|
43
72
|
|
|
44
|
-
_defineProperty(_assertThisInitialized(_this), "_pagesizeName", void 0);
|
|
45
73
|
|
|
46
|
-
|
|
74
|
+
get pagingName() {
|
|
75
|
+
return this._pagingName;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Getting pagesize name
|
|
79
|
+
*/
|
|
47
80
|
|
|
48
|
-
_this._isPrefixed = isPrefixed;
|
|
49
81
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
82
|
+
get pagesizeName() {
|
|
83
|
+
return this._pagesizeName;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Getting sorting name
|
|
87
|
+
*/
|
|
55
88
|
|
|
56
|
-
|
|
89
|
+
|
|
90
|
+
get sortingName() {
|
|
91
|
+
return this._sortingName;
|
|
57
92
|
}
|
|
58
93
|
/**
|
|
59
|
-
*
|
|
94
|
+
* Setting the current page
|
|
60
95
|
*/
|
|
61
96
|
|
|
62
97
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}, {
|
|
101
|
-
key: "pagingName",
|
|
102
|
-
get: function get() {
|
|
103
|
-
return this._pagingName;
|
|
104
|
-
}
|
|
105
|
-
/**
|
|
106
|
-
* Getting pagesize name
|
|
107
|
-
*/
|
|
108
|
-
|
|
109
|
-
}, {
|
|
110
|
-
key: "pagesizeName",
|
|
111
|
-
get: function get() {
|
|
112
|
-
return this._pagesizeName;
|
|
113
|
-
}
|
|
114
|
-
/**
|
|
115
|
-
* Getting sorting name
|
|
116
|
-
*/
|
|
117
|
-
|
|
118
|
-
}, {
|
|
119
|
-
key: "sortingName",
|
|
120
|
-
get: function get() {
|
|
121
|
-
return this._sortingName;
|
|
122
|
-
}
|
|
123
|
-
/**
|
|
124
|
-
* Setting the current page
|
|
125
|
-
*/
|
|
126
|
-
|
|
127
|
-
}, {
|
|
128
|
-
key: "page",
|
|
129
|
-
get:
|
|
130
|
-
/**
|
|
131
|
-
*/
|
|
132
|
-
function get() {
|
|
133
|
-
return this.getParameter(this.pagingName, this.prefix);
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* Setting the sort value
|
|
137
|
-
*/
|
|
138
|
-
,
|
|
139
|
-
set: function set(page) {
|
|
140
|
-
var pageValue = page == null ? null : page.toString();
|
|
141
|
-
this.setParameter(this.pagingName, pageValue, this.prefix);
|
|
142
|
-
}
|
|
143
|
-
}, {
|
|
144
|
-
key: "sort",
|
|
145
|
-
set: function set(sort) {
|
|
146
|
-
this.setParameter(this.sortingName, sort, this.prefix);
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* Setting the page size
|
|
150
|
-
*/
|
|
151
|
-
|
|
152
|
-
}, {
|
|
153
|
-
key: "pagesize",
|
|
154
|
-
set: function set(pagesize) {
|
|
155
|
-
var pageSizeValue = pagesize == null ? null : pagesize.toString();
|
|
156
|
-
this.setParameter(this.pagesizeName, pageSizeValue, this.prefix);
|
|
157
|
-
}
|
|
158
|
-
/**
|
|
159
|
-
* Add filter parameters to the parameter collection
|
|
160
|
-
*/
|
|
161
|
-
|
|
162
|
-
}, {
|
|
163
|
-
key: "filterCollection",
|
|
164
|
-
set: function set(filters) {
|
|
165
|
-
var _this2 = this;
|
|
166
|
-
|
|
167
|
-
if (!filters) {
|
|
168
|
-
return;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
filters.forEach(function (filter) {
|
|
172
|
-
filter.params.forEach(function (param) {
|
|
173
|
-
if (param.value != null) {
|
|
174
|
-
_this2.setParameter(param.name, param.value, _this2.prefix);
|
|
175
|
-
} else {
|
|
176
|
-
_this2.removeParameter(param.name, _this2.prefix);
|
|
177
|
-
}
|
|
178
|
-
});
|
|
179
|
-
});
|
|
98
|
+
set page(page) {
|
|
99
|
+
const pageValue = page == null ? null : page.toString();
|
|
100
|
+
this.setParameter(this.pagingName, pageValue, this.prefix);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
get page() {
|
|
107
|
+
return this.getParameter(this.pagingName, this.prefix);
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* Setting the sort value
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
set sort(sort) {
|
|
115
|
+
this.setParameter(this.sortingName, sort, this.prefix);
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Setting the page size
|
|
119
|
+
*/
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
set pagesize(pagesize) {
|
|
123
|
+
const pageSizeValue = pagesize == null ? null : pagesize.toString();
|
|
124
|
+
this.setParameter(this.pagesizeName, pageSizeValue, this.prefix);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Add filter parameters to the parameter collection
|
|
128
|
+
*/
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
set filterCollection(filters) {
|
|
132
|
+
if (!filters) {
|
|
133
|
+
return;
|
|
180
134
|
}
|
|
181
|
-
}]);
|
|
182
135
|
|
|
183
|
-
|
|
184
|
-
|
|
136
|
+
filters.forEach(filter => {
|
|
137
|
+
filter.params.forEach(param => {
|
|
138
|
+
if (param.value != null) {
|
|
139
|
+
this.setParameter(param.name, param.value, this.prefix);
|
|
140
|
+
} else {
|
|
141
|
+
this.removeParameter(param.name, this.prefix);
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
});
|
|
145
|
+
}
|
|
185
146
|
|
|
186
|
-
|
|
147
|
+
}
|
|
187
148
|
//# sourceMappingURL=ListHref.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListHref.js","names":["Href","ListHref","href","list","isPrefixed","_isPrefixed","setParameterNamesFromListModel","setParameterNamesFromHref","_prefix","prefix","_pagingName","pagingName","_pagesizeName","pagesizeName","_sortingName","sortingName","key","paging","name","pagesize","sorting","page","options","length","value","sort","param","filterCollection","
|
|
1
|
+
{"version":3,"file":"ListHref.js","names":["Href","ListHref","constructor","href","list","isPrefixed","_isPrefixed","setParameterNamesFromListModel","setParameterNamesFromHref","_prefix","prefix","_pagingName","pagingName","_pagesizeName","pagesizeName","_sortingName","sortingName","key","paging","name","pagesize","sorting","page","options","length","value","sort","param","filterCollection","pageValue","toString","setParameter","getParameter","pageSizeValue","filters","forEach","filter","params","removeParameter"],"sources":["../../../src/models/href/ListHref.js"],"sourcesContent":["// @flow\nimport Href from \"./Href\";\n\nimport type FilterCollection from \"../filters/FilterCollection\";\nimport type ListModel from \"../list/ListModel\";\nimport type { HrefInput } from \"./Href\";\nimport type Parameter from \"../parameter/Parameter\";\n\n/**\n * Class representing the href of a list. It adds paging, sorting and filter parameters where necessary\n *\n * @augments Href\n */\nexport default class ListHref extends Href {\n _isPrefixed: boolean;\n _prefix: ?string;\n _pagingName: string;\n _pagesizeName: string;\n _sortingName: string;\n\n /**\n * Create a ListHref\n */\n constructor(href?: HrefInput, list?: ListModel, isPrefixed: boolean = true) {\n super(href);\n\n this._isPrefixed = isPrefixed;\n\n if (list != null) {\n this.setParameterNamesFromListModel(list);\n } else if (href != null && href instanceof ListHref) {\n this.setParameterNamesFromHref(href);\n }\n }\n\n /**\n * Retrieve parameter names from Href\n */\n setParameterNamesFromHref(href: ListHref) {\n this._prefix = this._isPrefixed ? href.prefix : null;\n this._pagingName = href.pagingName;\n this._pagesizeName = href.pagesizeName;\n this._sortingName = href.sortingName;\n }\n\n /**\n * Retrieve parameter names and settings from List model\n */\n setParameterNamesFromListModel(list: ListModel) {\n this._prefix = this._isPrefixed ? list.key : null;\n\n this._pagingName = list.paging ? list.paging.name : \"\";\n this._pagesizeName =\n list.paging && list.paging.pagesize ? list.paging.pagesize.name : \"\";\n\n this._sortingName = list.sorting ? list.sorting.name : \"\";\n\n this.page = list.paging ? list.paging.page : null;\n this.pagesize =\n list.paging && list.paging.pagesize.options.length > 0\n ? list.paging.pagesize.value\n : null;\n\n this.sort = list.sorting && list.sorting.param ? list.sorting.param : null;\n\n this.filterCollection = list.filterCollection;\n }\n\n /**\n * Getting prefix\n */\n get prefix(): ?string {\n return this._prefix;\n }\n\n /**\n * Getting paging name\n */\n get pagingName(): string {\n return this._pagingName;\n }\n\n /**\n * Getting pagesize name\n */\n get pagesizeName(): string {\n return this._pagesizeName;\n }\n\n /**\n * Getting sorting name\n */\n get sortingName(): string {\n return this._sortingName;\n }\n\n /**\n * Setting the current page\n */\n set page(page: ?number) {\n const pageValue = page == null ? null : page.toString();\n\n this.setParameter(this.pagingName, pageValue, this.prefix);\n }\n\n /**\n */\n get page(): ?Parameter {\n return this.getParameter(this.pagingName, this.prefix);\n }\n\n /**\n * Setting the sort value\n */\n set sort(sort: ?string) {\n this.setParameter(this.sortingName, sort, this.prefix);\n }\n\n /**\n * Setting the page size\n */\n set pagesize(pagesize: ?number) {\n const pageSizeValue = pagesize == null ? null : pagesize.toString();\n\n this.setParameter(this.pagesizeName, pageSizeValue, this.prefix);\n }\n\n /**\n * Add filter parameters to the parameter collection\n */\n set filterCollection(filters: FilterCollection) {\n if (!filters) {\n return;\n }\n\n filters.forEach((filter) => {\n filter.params.forEach((param) => {\n if (param.value != null) {\n this.setParameter(param.name, param.value, this.prefix);\n } else {\n this.removeParameter(param.name, this.prefix);\n }\n });\n });\n }\n}\n"],"mappings":"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"}
|