@beinformed/ui 1.28.7 → 1.29.0
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 +7 -0
- package/esm/models/index.js +2 -1
- package/esm/models/index.js.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/index.js.flow +3 -0
- package/lib/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/models/index.js +3 -0
- package/types/constants/Constants.d.ts +145 -145
- package/types/constants/LayoutHintConfig.d.ts +226 -226
- package/types/constants/LayoutHints.d.ts +74 -74
- package/types/constants/Settings.d.ts +29 -29
- package/types/constants/index.d.ts +3 -3
- package/types/exceptions/ConfigurationException.d.ts +6 -6
- package/types/exceptions/FetchException.d.ts +31 -31
- package/types/exceptions/IllegalArgumentException.d.ts +6 -6
- package/types/exceptions/IllegalReturnException.d.ts +5 -5
- package/types/exceptions/IllegalStateException.d.ts +6 -6
- package/types/exceptions/JsonParseException.d.ts +6 -6
- package/types/exceptions/MissingPropertyException.d.ts +6 -6
- package/types/exceptions/NetworkException.d.ts +9 -9
- package/types/exceptions/NotAllowedUriException.d.ts +6 -6
- package/types/exceptions/NotFoundException.d.ts +10 -10
- package/types/exceptions/ServerRequestException.d.ts +6 -6
- package/types/exceptions/ThemePropertyException.d.ts +6 -6
- package/types/exceptions/TimeoutException.d.ts +7 -7
- package/types/exceptions/UnauthorizedException.d.ts +11 -11
- package/types/exceptions/UnsupportedOperationException.d.ts +6 -6
- package/types/exceptions/index.d.ts +15 -15
- package/types/hooks/useI18n.d.ts +9 -9
- package/types/i18n/Locale.d.ts +53 -53
- package/types/i18n/Locales.d.ts +55 -55
- package/types/i18n/Message.d.ts +6 -6
- package/types/i18n/index.d.ts +5 -5
- package/types/i18n/languages.d.ts +215 -215
- package/types/i18n/translations/beinformed_error_messages_en.nl.d.ts +97 -97
- package/types/i18n/translations/beinformed_error_messages_nl.nl.d.ts +97 -97
- package/types/i18n/types.d.ts +11 -11
- package/types/i18n/withMessage.d.ts +3 -3
- package/types/index.d.ts +6 -6
- package/types/models/actions/ActionCollection.d.ts +29 -29
- package/types/models/actions/ActionModel.d.ts +84 -84
- package/types/models/application/ApplicationModel.d.ts +41 -41
- package/types/models/attributes/AttributeCollection.d.ts +96 -96
- package/types/models/attributes/AttributeContent.d.ts +64 -64
- package/types/models/attributes/AttributeDataHelper.d.ts +67 -67
- package/types/models/attributes/AttributeModel.d.ts +395 -395
- package/types/models/attributes/AttributeSetModel.d.ts +28 -28
- package/types/models/attributes/BooleanAttributeModel.d.ts +65 -65
- package/types/models/attributes/CaptchaAttributeModel.d.ts +19 -19
- package/types/models/attributes/ChoiceAttributeModel.d.ts +76 -76
- package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +79 -79
- package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +133 -133
- package/types/models/attributes/CompositeAttributeChildCollection.d.ts +56 -56
- package/types/models/attributes/CompositeAttributeModel.d.ts +44 -44
- package/types/models/attributes/DatetimeAttributeModel.d.ts +117 -117
- package/types/models/attributes/HelptextAttributeModel.d.ts +16 -16
- package/types/models/attributes/LabelAttributeModel.d.ts +12 -12
- package/types/models/attributes/MemoAttributeModel.d.ts +14 -14
- package/types/models/attributes/MoneyAttributeModel.d.ts +14 -14
- package/types/models/attributes/NumberAttributeModel.d.ts +49 -49
- package/types/models/attributes/PasswordAttributeModel.d.ts +62 -62
- package/types/models/attributes/StringAttributeModel.d.ts +62 -62
- package/types/models/attributes/UploadAttributeModel.d.ts +60 -60
- package/types/models/attributes/XMLAttributeModel.d.ts +10 -10
- package/types/models/attributes/_createAttribute.d.ts +6 -6
- package/types/models/attributes/input-constraints/BSNConstraint.d.ts +26 -26
- package/types/models/attributes/input-constraints/ConstraintCollection.d.ts +24 -24
- package/types/models/attributes/input-constraints/ConstraintModel.d.ts +34 -34
- package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +109 -109
- package/types/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +36 -36
- package/types/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +36 -36
- package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +92 -92
- package/types/models/attributes/input-constraints/FileExtensionConstraint.d.ts +33 -33
- package/types/models/attributes/input-constraints/FileSizeConstraint.d.ts +42 -42
- package/types/models/attributes/input-constraints/IBANConstraint.d.ts +23 -23
- package/types/models/attributes/input-constraints/MandatoryConstraint.d.ts +23 -23
- package/types/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -36
- package/types/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -61
- package/types/models/attributes/input-constraints/NumberFormatConstraint.d.ts +52 -52
- package/types/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +46 -46
- package/types/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +36 -36
- package/types/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +23 -23
- package/types/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +32 -32
- package/types/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +32 -32
- package/types/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +35 -35
- package/types/models/attributes/input-constraints/RangeConstraint.d.ts +97 -97
- package/types/models/attributes/input-constraints/RegexConstraint.d.ts +37 -37
- package/types/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -46
- package/types/models/attributes/input-constraints/XMLConstraint.d.ts +26 -26
- package/types/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +46 -46
- package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -57
- package/types/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -27
- package/types/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +17 -17
- package/types/models/base/BaseCollection.d.ts +89 -89
- package/types/models/base/BaseModel.d.ts +67 -67
- package/types/models/base/ResourceCollection.d.ts +19 -19
- package/types/models/base/ResourceModel.d.ts +97 -97
- package/types/models/caseview/CaseViewModel.d.ts +45 -45
- package/types/models/concepts/BusinessScenarioModel.d.ts +20 -20
- package/types/models/concepts/ConceptDetailModel.d.ts +69 -69
- package/types/models/concepts/ConceptIndexModel.d.ts +36 -36
- package/types/models/concepts/ConceptLinkModel.d.ts +65 -65
- package/types/models/concepts/ConceptRelationCollection.d.ts +34 -34
- package/types/models/concepts/ConceptRelationModel.d.ts +44 -44
- package/types/models/concepts/ConceptTypeDetailModel.d.ts +39 -39
- package/types/models/concepts/SourceReferenceCollection.d.ts +13 -13
- package/types/models/concepts/SourceReferenceModel.d.ts +30 -30
- package/types/models/content/ContentIndexModel.d.ts +34 -34
- package/types/models/content/ContentLinkModel.d.ts +81 -81
- package/types/models/content/ContentModel.d.ts +74 -74
- package/types/models/content/ContentTOCModel.d.ts +37 -37
- package/types/models/content/ContentTypeModel.d.ts +26 -26
- package/types/models/content/SectionModel.d.ts +75 -75
- package/types/models/content/SubSectionModel.d.ts +64 -64
- package/types/models/contentconfiguration/ContentConfiguration.d.ts +28 -28
- package/types/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -47
- package/types/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -16
- package/types/models/contentconfiguration/ContentConfigurationQuestions.d.ts +22 -22
- package/types/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -39
- package/types/models/detail/DetailModel.d.ts +72 -72
- package/types/models/error/ErrorCollection.d.ts +51 -51
- package/types/models/error/ErrorModel.d.ts +41 -41
- package/types/models/error/ErrorResponse.d.ts +148 -148
- package/types/models/filters/AssignmentFilterModel.d.ts +35 -35
- package/types/models/filters/BaseFilterModel.d.ts +85 -85
- package/types/models/filters/ConceptIndexFilterModel.d.ts +6 -6
- package/types/models/filters/FilterCollection.d.ts +48 -48
- package/types/models/filters/FilterModel.d.ts +5 -5
- package/types/models/filters/RangeFilterModel.d.ts +6 -6
- package/types/models/form/FormModel.d.ts +312 -312
- package/types/models/form/FormObjectModel.d.ts +196 -196
- package/types/models/grouping/GroupingModel.d.ts +85 -85
- package/types/models/href/Href.d.ts +196 -196
- package/types/models/href/ListHref.d.ts +64 -64
- package/types/models/index.d.ts +94 -94
- package/types/models/layouthint/LayoutHintCollection.d.ts +43 -43
- package/types/models/links/LinkCollection.d.ts +62 -62
- package/types/models/links/LinkModel.d.ts +92 -92
- package/types/models/links/normalizeLinkJSON.d.ts +9 -9
- package/types/models/list/ListDetailModel.d.ts +69 -69
- package/types/models/list/ListHeaderModel.d.ts +64 -64
- package/types/models/list/ListItemCollection.d.ts +21 -21
- package/types/models/list/ListItemModel.d.ts +34 -34
- package/types/models/list/ListModel.d.ts +135 -135
- package/types/models/lookup/LookupOptionCollection.d.ts +11 -11
- package/types/models/lookup/LookupOptionsModel.d.ts +19 -19
- package/types/models/modelcatalog/ModelCatalogModel.d.ts +18 -18
- package/types/models/paging/PagesizeModel.d.ts +25 -25
- package/types/models/paging/PagingModel.d.ts +49 -49
- package/types/models/panels/GroupingPanelModel.d.ts +39 -39
- package/types/models/parameter/Parameter.d.ts +40 -40
- package/types/models/process/ProcessStatusSettingsModel.d.ts +38 -38
- package/types/models/resolveModel.d.ts +7 -7
- package/types/models/search/CaseSearchModel.d.ts +14 -14
- package/types/models/sorting/SortOptionModel.d.ts +48 -48
- package/types/models/sorting/SortingModel.d.ts +42 -42
- package/types/models/tab/TabModel.d.ts +44 -44
- package/types/models/taskgroup/TaskGroupCollection.d.ts +12 -12
- package/types/models/taskgroup/TaskGroupModel.d.ts +15 -15
- package/types/models/types.d.ts +161 -161
- package/types/models/user/UserModel.d.ts +14 -14
- package/types/models/user/UserProfileModel.d.ts +12 -12
- package/types/models/user/UserServicesModel.d.ts +28 -28
- package/types/modularui/Authenticate.d.ts +49 -49
- package/types/modularui/CaptchaRequest.d.ts +45 -45
- package/types/modularui/ModularUIError.d.ts +10 -10
- package/types/modularui/ModularUIRequest.d.ts +198 -198
- package/types/modularui/ModularUIResponse.d.ts +56 -56
- package/types/modularui/UploadRequest.d.ts +35 -35
- package/types/modularui/index.d.ts +5 -5
- package/types/modularui/types.d.ts +2 -2
- package/types/redux/_i18n/types.d.ts +13 -13
- package/types/redux/_modularui/types.d.ts +61 -61
- package/types/redux/_router/types.d.ts +35 -35
- package/types/redux/selectors/i18n.d.ts +4 -4
- package/types/redux/types.d.ts +105 -105
- package/types/utils/browser/Cache.d.ts +45 -45
- package/types/utils/browser/Cookies.d.ts +9 -9
- package/types/utils/datetime/DateTimeUtil.d.ts +164 -164
- package/types/utils/fetch/serverFetch.d.ts +5 -5
- package/types/utils/fetch/types.d.ts +40 -40
- package/types/utils/fetch/universalFetch.d.ts +7 -7
- package/types/utils/fetch/xhr.d.ts +5 -5
- package/types/utils/helpers/checkResource.d.ts +3 -3
- package/types/utils/helpers/createHash.d.ts +8 -8
- package/types/utils/helpers/createUUID.d.ts +4 -4
- package/types/utils/helpers/index.d.ts +7 -7
- package/types/utils/helpers/objects.d.ts +11 -11
- package/types/utils/helpers/repositoryResource.d.ts +1 -1
- package/types/utils/helpers/sanitizeHtml.d.ts +9 -9
- package/types/utils/helpers/text.d.ts +7 -7
- package/types/utils/index.d.ts +11 -11
- package/types/utils/number/DecimalFormat.d.ts +90 -90
- package/types/utils/number/formatValue.d.ts +4 -4
- package/types/utils/number/parseNumbers.d.ts +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.29.0](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.28.7...v1.29.0) (2023-03-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **LayoutHintCollection:** export LayoutHintCollection ([8f09649](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/commit/8f0964948388a0705b40dd950b792b0071bdb0de))
|
|
11
|
+
|
|
5
12
|
## [1.28.7](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.28.6...v1.28.7) (2023-03-09)
|
|
6
13
|
|
|
7
14
|
### Bug Fixes
|
package/esm/models/index.js
CHANGED
|
@@ -28,6 +28,7 @@ export { default as LayoutHintRuleCollection, addLayoutHintRule, updateLayoutHin
|
|
|
28
28
|
export { default as BaseLayoutHintRule } from "./attributes/layouthint-rules/BaseLayoutHintRule";
|
|
29
29
|
export { default as DependentAttribute } from "./attributes/layouthint-rules/DependentAttribute";
|
|
30
30
|
export { default as RemainingTotalUploadSize } from "./attributes/layouthint-rules/RemainingTotalUploadSize";
|
|
31
|
+
import { default as LayoutHintCollection } from "./layouthint/LayoutHintCollection";
|
|
31
32
|
import { default as CaseViewModel } from "./caseview/CaseViewModel";
|
|
32
33
|
import { default as BusinessScenarioModel } from "./concepts/BusinessScenarioModel";
|
|
33
34
|
import { default as ConceptDetailModel } from "./concepts/ConceptDetailModel";
|
|
@@ -90,5 +91,5 @@ import { default as TaskGroupModel } from "./taskgroup/TaskGroupModel";
|
|
|
90
91
|
import { default as UserModel } from "./user/UserModel";
|
|
91
92
|
import { default as UserProfileModel } from "./user/UserProfileModel";
|
|
92
93
|
import { default as UserServicesModel } from "./user/UserServicesModel";
|
|
93
|
-
export { ApplicationModel, CaseSearchModel, CaseViewModel, ListDetailModel, DetailModel, FormModel, GroupingPanelModel, ListModel, TabModel, TaskGroupModel, UserModel, UserProfileModel, UserServicesModel, ModelCatalogModel, ConceptIndexModel, ConceptDetailModel, BusinessScenarioModel, ConceptTypeDetailModel, ContentIndexModel, ContentTOCModel, ContentModel, ContentTypeModel, BooleanAttributeModel, CaptchaAttributeModel, ChoiceAttributeModel, DatetimeAttributeModel, HelptextAttributeModel, LabelAttributeModel, MemoAttributeModel, MoneyAttributeModel, NumberAttributeModel, PasswordAttributeModel, CompositeAttributeModel, StringAttributeModel, UploadAttributeModel, XMLAttributeModel, AssignmentFilterModel, FilterModel, RangeFilterModel, ConceptIndexFilterModel };
|
|
94
|
+
export { ApplicationModel, CaseSearchModel, CaseViewModel, ListDetailModel, DetailModel, FormModel, GroupingPanelModel, ListModel, TabModel, TaskGroupModel, UserModel, UserProfileModel, UserServicesModel, ModelCatalogModel, ConceptIndexModel, ConceptDetailModel, BusinessScenarioModel, ConceptTypeDetailModel, ContentIndexModel, ContentTOCModel, ContentModel, ContentTypeModel, BooleanAttributeModel, CaptchaAttributeModel, ChoiceAttributeModel, DatetimeAttributeModel, HelptextAttributeModel, LabelAttributeModel, MemoAttributeModel, MoneyAttributeModel, NumberAttributeModel, PasswordAttributeModel, CompositeAttributeModel, StringAttributeModel, UploadAttributeModel, XMLAttributeModel, AssignmentFilterModel, FilterModel, RangeFilterModel, ConceptIndexFilterModel, LayoutHintCollection };
|
|
94
95
|
//# sourceMappingURL=index.js.map
|
package/esm/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["default","resolveModel","BaseCollection","ActionCollection","ActionModel","ApplicationModel","AttributeCollection","AttributeSetModel","AttributeModel","BooleanAttributeModel","CaptchaAttributeModel","ChoiceAttributeModel","ChoiceAttributeOptionCollection","ChoiceAttributeOptionModel","CompositeAttributeModel","CompositeAttributeChildCollection","DatetimeAttributeModel","HelptextAttributeModel","LabelAttributeModel","MemoAttributeModel","MoneyAttributeModel","NumberAttributeModel","PasswordAttributeModel","StringAttributeModel","UploadAttributeModel","XMLAttributeModel","AttributeContent","LayoutHintRuleCollection","addLayoutHintRule","updateLayoutHintRules","BaseLayoutHintRule","DependentAttribute","RemainingTotalUploadSize","CaseViewModel","BusinessScenarioModel","ConceptDetailModel","ConceptIndexModel","ConceptLinkModel","ConceptRelationCollection","ConceptRelationModel","ConceptTypeDetailModel","SourceReferenceCollection","SourceReferenceModel","ConstraintCollection","ConstraintModel","ContentIndexModel","ContentLinkModel","ContentModel","ContentTOCModel","ContentTypeModel","SectionModel","SubSectionModel","ContentConfiguration","ContentConfigurationElements","ContentConfigurationEndResults","ContentConfigurationQuestions","ContentConfigurationResults","DetailModel","ErrorCollection","ErrorModel","ErrorResponse","AssignmentFilterModel","FilterModel","RangeFilterModel","ConceptIndexFilterModel","FilterCollection","FormModel","FormObjectModel","GroupingModel","GroupModel","Href","ListHref","LinkCollection","LinkModel","ListDetailModel","ListHeaderModel","ListItemCollection","ListItemModel","ListModel","LookupOptionsModel","LookupOptionCollection","ModelCatalogModel","ProcessStatusSettingsModel","PagesizeModel","PagingModel","Parameter","GroupingPanelModel","CaseSearchModel","SortingModel","SortOptionModel","TabModel","TaskGroupCollection","TaskGroupModel","UserModel","UserProfileModel","UserServicesModel"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":["default","resolveModel","BaseCollection","ActionCollection","ActionModel","ApplicationModel","AttributeCollection","AttributeSetModel","AttributeModel","BooleanAttributeModel","CaptchaAttributeModel","ChoiceAttributeModel","ChoiceAttributeOptionCollection","ChoiceAttributeOptionModel","CompositeAttributeModel","CompositeAttributeChildCollection","DatetimeAttributeModel","HelptextAttributeModel","LabelAttributeModel","MemoAttributeModel","MoneyAttributeModel","NumberAttributeModel","PasswordAttributeModel","StringAttributeModel","UploadAttributeModel","XMLAttributeModel","AttributeContent","LayoutHintRuleCollection","addLayoutHintRule","updateLayoutHintRules","BaseLayoutHintRule","DependentAttribute","RemainingTotalUploadSize","LayoutHintCollection","CaseViewModel","BusinessScenarioModel","ConceptDetailModel","ConceptIndexModel","ConceptLinkModel","ConceptRelationCollection","ConceptRelationModel","ConceptTypeDetailModel","SourceReferenceCollection","SourceReferenceModel","ConstraintCollection","ConstraintModel","ContentIndexModel","ContentLinkModel","ContentModel","ContentTOCModel","ContentTypeModel","SectionModel","SubSectionModel","ContentConfiguration","ContentConfigurationElements","ContentConfigurationEndResults","ContentConfigurationQuestions","ContentConfigurationResults","DetailModel","ErrorCollection","ErrorModel","ErrorResponse","AssignmentFilterModel","FilterModel","RangeFilterModel","ConceptIndexFilterModel","FilterCollection","FormModel","FormObjectModel","GroupingModel","GroupModel","Href","ListHref","LinkCollection","LinkModel","ListDetailModel","ListHeaderModel","ListItemCollection","ListItemModel","ListModel","LookupOptionsModel","LookupOptionCollection","ModelCatalogModel","ProcessStatusSettingsModel","PagesizeModel","PagingModel","Parameter","GroupingPanelModel","CaseSearchModel","SortingModel","SortOptionModel","TabModel","TaskGroupCollection","TaskGroupModel","UserModel","UserProfileModel","UserServicesModel"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as LayoutHintCollection } from \"./layouthint/LayoutHintCollection\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n LayoutHintCollection,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
|
package/lib/models/index.js
CHANGED
|
@@ -336,6 +336,12 @@ Object.defineProperty(exports, "LabelAttributeModel", {
|
|
|
336
336
|
return _LabelAttributeModel.default;
|
|
337
337
|
}
|
|
338
338
|
});
|
|
339
|
+
Object.defineProperty(exports, "LayoutHintCollection", {
|
|
340
|
+
enumerable: true,
|
|
341
|
+
get: function () {
|
|
342
|
+
return _LayoutHintCollection.default;
|
|
343
|
+
}
|
|
344
|
+
});
|
|
339
345
|
Object.defineProperty(exports, "LayoutHintRuleCollection", {
|
|
340
346
|
enumerable: true,
|
|
341
347
|
get: function () {
|
|
@@ -606,6 +612,7 @@ var _LayoutHintRuleCollection = _interopRequireWildcard(require("./attributes/la
|
|
|
606
612
|
var _BaseLayoutHintRule = _interopRequireDefault(require("./attributes/layouthint-rules/BaseLayoutHintRule"));
|
|
607
613
|
var _DependentAttribute = _interopRequireDefault(require("./attributes/layouthint-rules/DependentAttribute"));
|
|
608
614
|
var _RemainingTotalUploadSize = _interopRequireDefault(require("./attributes/layouthint-rules/RemainingTotalUploadSize"));
|
|
615
|
+
var _LayoutHintCollection = _interopRequireDefault(require("./layouthint/LayoutHintCollection"));
|
|
609
616
|
var _CaseViewModel = _interopRequireDefault(require("./caseview/CaseViewModel"));
|
|
610
617
|
var _BusinessScenarioModel = _interopRequireDefault(require("./concepts/BusinessScenarioModel"));
|
|
611
618
|
var _ConceptDetailModel = _interopRequireDefault(require("./concepts/ConceptDetailModel"));
|
package/lib/models/index.js.flow
CHANGED
|
@@ -41,6 +41,8 @@ export { default as BaseLayoutHintRule } from "./attributes/layouthint-rules/Bas
|
|
|
41
41
|
export { default as DependentAttribute } from "./attributes/layouthint-rules/DependentAttribute";
|
|
42
42
|
export { default as RemainingTotalUploadSize } from "./attributes/layouthint-rules/RemainingTotalUploadSize";
|
|
43
43
|
|
|
44
|
+
import { default as LayoutHintCollection } from "./layouthint/LayoutHintCollection";
|
|
45
|
+
|
|
44
46
|
import { default as CaseViewModel } from "./caseview/CaseViewModel";
|
|
45
47
|
|
|
46
48
|
import { default as BusinessScenarioModel } from "./concepts/BusinessScenarioModel";
|
|
@@ -168,6 +170,7 @@ export {
|
|
|
168
170
|
FilterModel,
|
|
169
171
|
RangeFilterModel,
|
|
170
172
|
ConceptIndexFilterModel,
|
|
173
|
+
LayoutHintCollection,
|
|
171
174
|
};
|
|
172
175
|
|
|
173
176
|
export type * from "./types";
|
package/lib/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_resolveModel","_interopRequireDefault","require","_BaseCollection","_ActionCollection","_ActionModel","_ApplicationModel","_AttributeCollection","_AttributeSetModel","_AttributeModel","_BooleanAttributeModel","_CaptchaAttributeModel","_ChoiceAttributeModel","_ChoiceAttributeOptionCollection","_ChoiceAttributeOptionModel","_CompositeAttributeModel","_CompositeAttributeChildCollection","_DatetimeAttributeModel","_HelptextAttributeModel","_LabelAttributeModel","_MemoAttributeModel","_MoneyAttributeModel","_NumberAttributeModel","_PasswordAttributeModel","_StringAttributeModel","_UploadAttributeModel","_XMLAttributeModel","_AttributeContent","_LayoutHintRuleCollection","_interopRequireWildcard","_BaseLayoutHintRule","_DependentAttribute","_RemainingTotalUploadSize","_CaseViewModel","_BusinessScenarioModel","_ConceptDetailModel","_ConceptIndexModel","_ConceptLinkModel","_ConceptRelationCollection","_ConceptRelationModel","_ConceptTypeDetailModel","_SourceReferenceCollection","_SourceReferenceModel","_ConstraintCollection","_ConstraintModel","_ContentIndexModel","_ContentLinkModel","_ContentModel","_ContentTOCModel","_ContentTypeModel","_SectionModel","_SubSectionModel","_ContentConfiguration","_ContentConfigurationElements","_ContentConfigurationEndResults","_ContentConfigurationQuestions","_ContentConfigurationResults","_DetailModel","_ErrorCollection","_ErrorModel","_ErrorResponse","_AssignmentFilterModel","_FilterModel","_RangeFilterModel","_ConceptIndexFilterModel","_FilterCollection","_FormModel","_FormObjectModel","_GroupingModel","_Href","_ListHref","_LinkCollection","_LinkModel","_ListDetailModel","_ListHeaderModel","_ListItemCollection","_ListItemModel","_ListModel","_LookupOptionsModel","_LookupOptionCollection","_ModelCatalogModel","_ProcessStatusSettingsModel","_PagesizeModel","_PagingModel","_Parameter","_GroupingPanelModel","_CaseSearchModel","_SortingModel","_SortOptionModel","_TabModel","_TaskGroupCollection","_TaskGroupModel","_UserModel","_UserProfileModel","_UserServicesModel","_getRequireWildcardCache","nodeInterop","_WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","_Object$getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":["_resolveModel","_interopRequireDefault","require","_BaseCollection","_ActionCollection","_ActionModel","_ApplicationModel","_AttributeCollection","_AttributeSetModel","_AttributeModel","_BooleanAttributeModel","_CaptchaAttributeModel","_ChoiceAttributeModel","_ChoiceAttributeOptionCollection","_ChoiceAttributeOptionModel","_CompositeAttributeModel","_CompositeAttributeChildCollection","_DatetimeAttributeModel","_HelptextAttributeModel","_LabelAttributeModel","_MemoAttributeModel","_MoneyAttributeModel","_NumberAttributeModel","_PasswordAttributeModel","_StringAttributeModel","_UploadAttributeModel","_XMLAttributeModel","_AttributeContent","_LayoutHintRuleCollection","_interopRequireWildcard","_BaseLayoutHintRule","_DependentAttribute","_RemainingTotalUploadSize","_LayoutHintCollection","_CaseViewModel","_BusinessScenarioModel","_ConceptDetailModel","_ConceptIndexModel","_ConceptLinkModel","_ConceptRelationCollection","_ConceptRelationModel","_ConceptTypeDetailModel","_SourceReferenceCollection","_SourceReferenceModel","_ConstraintCollection","_ConstraintModel","_ContentIndexModel","_ContentLinkModel","_ContentModel","_ContentTOCModel","_ContentTypeModel","_SectionModel","_SubSectionModel","_ContentConfiguration","_ContentConfigurationElements","_ContentConfigurationEndResults","_ContentConfigurationQuestions","_ContentConfigurationResults","_DetailModel","_ErrorCollection","_ErrorModel","_ErrorResponse","_AssignmentFilterModel","_FilterModel","_RangeFilterModel","_ConceptIndexFilterModel","_FilterCollection","_FormModel","_FormObjectModel","_GroupingModel","_Href","_ListHref","_LinkCollection","_LinkModel","_ListDetailModel","_ListHeaderModel","_ListItemCollection","_ListItemModel","_ListModel","_LookupOptionsModel","_LookupOptionCollection","_ModelCatalogModel","_ProcessStatusSettingsModel","_PagesizeModel","_PagingModel","_Parameter","_GroupingPanelModel","_CaseSearchModel","_SortingModel","_SortOptionModel","_TabModel","_TaskGroupCollection","_TaskGroupModel","_UserModel","_UserProfileModel","_UserServicesModel","_getRequireWildcardCache","nodeInterop","_WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","_Object$getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as LayoutHintCollection } from \"./layouthint/LayoutHintCollection\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n LayoutHintCollection,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
|
package/package.json
CHANGED
package/src/models/index.js
CHANGED
|
@@ -41,6 +41,8 @@ export { default as BaseLayoutHintRule } from "./attributes/layouthint-rules/Bas
|
|
|
41
41
|
export { default as DependentAttribute } from "./attributes/layouthint-rules/DependentAttribute";
|
|
42
42
|
export { default as RemainingTotalUploadSize } from "./attributes/layouthint-rules/RemainingTotalUploadSize";
|
|
43
43
|
|
|
44
|
+
import { default as LayoutHintCollection } from "./layouthint/LayoutHintCollection";
|
|
45
|
+
|
|
44
46
|
import { default as CaseViewModel } from "./caseview/CaseViewModel";
|
|
45
47
|
|
|
46
48
|
import { default as BusinessScenarioModel } from "./concepts/BusinessScenarioModel";
|
|
@@ -168,6 +170,7 @@ export {
|
|
|
168
170
|
FilterModel,
|
|
169
171
|
RangeFilterModel,
|
|
170
172
|
ConceptIndexFilterModel,
|
|
173
|
+
LayoutHintCollection,
|
|
171
174
|
};
|
|
172
175
|
|
|
173
176
|
export type * from "./types";
|
|
@@ -1,145 +1,145 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* path to content service
|
|
3
|
-
*/
|
|
4
|
-
export const CONTENT_PATH: "/content";
|
|
5
|
-
/**
|
|
6
|
-
* Upload Path
|
|
7
|
-
*/
|
|
8
|
-
export const UPLOAD_PATH: "/uploadFile";
|
|
9
|
-
/**
|
|
10
|
-
* Captcha Path
|
|
11
|
-
*/
|
|
12
|
-
export const CAPTCHA_PATH: "/captchaServices";
|
|
13
|
-
/**
|
|
14
|
-
* Path to change password page / component
|
|
15
|
-
*/
|
|
16
|
-
export const CHANGEPASSWORD_PATH: "/change-password";
|
|
17
|
-
/**
|
|
18
|
-
* Path to user profile page / component
|
|
19
|
-
*/
|
|
20
|
-
export const USERPROFILE_PATH: "/user";
|
|
21
|
-
/**
|
|
22
|
-
* Path to resources in the Be Informed repository
|
|
23
|
-
*/
|
|
24
|
-
export const RESOURCE_PATH: "/resource";
|
|
25
|
-
/**
|
|
26
|
-
* Separator for parameters of a list, makes it possible to render multiple lists on a page in a non-js environment
|
|
27
|
-
*/
|
|
28
|
-
export const PARAMETER_SEPARATOR: "~";
|
|
29
|
-
/**
|
|
30
|
-
* Timeversion filter name
|
|
31
|
-
*/
|
|
32
|
-
export const TIMEVERSION_FILTER_NAME: "entryDate";
|
|
33
|
-
/**
|
|
34
|
-
* Parameter name for the viewtype toggle
|
|
35
|
-
*/
|
|
36
|
-
export const DEFAULT_UI_PARAMETERS: Array<string>;
|
|
37
|
-
/**
|
|
38
|
-
*/
|
|
39
|
-
export const ISO_DATE_FORMAT: "yyyy-MM-dd";
|
|
40
|
-
/**
|
|
41
|
-
*/
|
|
42
|
-
export const ISO_DATETIME_FORMAT: "yyyy-MM-dd'T'HH:mm:ss";
|
|
43
|
-
/**
|
|
44
|
-
*/
|
|
45
|
-
export const ISO_TIME_FORMAT: "HH:mm:ss";
|
|
46
|
-
/**
|
|
47
|
-
*/
|
|
48
|
-
export const ISO_TIMESTAMP_FORMAT: "yyyy-MM-dd'T'HH:mm:ss.SSS";
|
|
49
|
-
/**
|
|
50
|
-
* week starts on monday by default
|
|
51
|
-
*/
|
|
52
|
-
export const DEFAULT_WEEK_STARTS_ON: 1;
|
|
53
|
-
/**
|
|
54
|
-
* first week indicated by the 1st of january
|
|
55
|
-
*/
|
|
56
|
-
export const DEFAULT_FIRST_WEEK_CONTAINS_DATE: 1;
|
|
57
|
-
/**
|
|
58
|
-
* Key codes
|
|
59
|
-
* @type {{SPACE: number, PAGE_DOWN: number, TAB: number, ARROW_RIGHT: number, ARROW_DOWN: number, ENTER: number, ARROW_UP: number, ARROW_LEFT: number, PAGE_UP: number, ESCAPE: number}}
|
|
60
|
-
*/
|
|
61
|
-
export const KEYCODES: {
|
|
62
|
-
SPACE: number;
|
|
63
|
-
PAGE_DOWN: number;
|
|
64
|
-
TAB: number;
|
|
65
|
-
ARROW_RIGHT: number;
|
|
66
|
-
ARROW_DOWN: number;
|
|
67
|
-
ENTER: number;
|
|
68
|
-
ARROW_UP: number;
|
|
69
|
-
ARROW_LEFT: number;
|
|
70
|
-
PAGE_UP: number;
|
|
71
|
-
ESCAPE: number;
|
|
72
|
-
};
|
|
73
|
-
/**
|
|
74
|
-
* @type {boolean}
|
|
75
|
-
*/
|
|
76
|
-
export const IS_SYNC: boolean;
|
|
77
|
-
/**
|
|
78
|
-
* @type {boolean}
|
|
79
|
-
*/
|
|
80
|
-
export const IS_SERVER: boolean;
|
|
81
|
-
/**
|
|
82
|
-
* @type {{SUCCESS: string, ERROR: string, INFO: string, WARNING: string}}
|
|
83
|
-
*/
|
|
84
|
-
export const NOTIFICATION_TYPES: {
|
|
85
|
-
SUCCESS: string;
|
|
86
|
-
ERROR: string;
|
|
87
|
-
INFO: string;
|
|
88
|
-
WARNING: string;
|
|
89
|
-
};
|
|
90
|
-
/**
|
|
91
|
-
* SUPPORTED HTTP METHODS
|
|
92
|
-
* @type {{POST: string, GET: string}}
|
|
93
|
-
*/
|
|
94
|
-
export const HTTP_METHODS: {
|
|
95
|
-
POST: string;
|
|
96
|
-
GET: string;
|
|
97
|
-
};
|
|
98
|
-
/**
|
|
99
|
-
* POSSIBLE MODULARUI STATUSSES
|
|
100
|
-
* @type {{LOADING: string, ERROR: string, FINISHED: string}}
|
|
101
|
-
*/
|
|
102
|
-
export const MODULARUI_STATUS: {
|
|
103
|
-
LOADING: string;
|
|
104
|
-
ERROR: string;
|
|
105
|
-
FINISHED: string;
|
|
106
|
-
};
|
|
107
|
-
/**
|
|
108
|
-
* POSSIBLE AUTOSAVE STATUSSES
|
|
109
|
-
* @type {{START: string, FINISHED: string}}
|
|
110
|
-
*/
|
|
111
|
-
export const AUTOSAVE_STATUS: {
|
|
112
|
-
START: string;
|
|
113
|
-
FINISHED: string;
|
|
114
|
-
};
|
|
115
|
-
/**
|
|
116
|
-
* DEBOUNCE INPUT TIMEOUT
|
|
117
|
-
*/
|
|
118
|
-
export const INPUT_DEBOUNCE_TIMEOUT: 100;
|
|
119
|
-
/**
|
|
120
|
-
* DEBOUNCE VALIDATION TIMEOUT
|
|
121
|
-
*/
|
|
122
|
-
export const VALIDATE_DEBOUNCE_TIMEOUT: 500;
|
|
123
|
-
export namespace ATTRIBUTE_WIDTH {
|
|
124
|
-
const EXTRA_SMALL: string;
|
|
125
|
-
const SMALL: string;
|
|
126
|
-
const MEDIUM: string;
|
|
127
|
-
const LARGE: string;
|
|
128
|
-
const EXTRA_LARGE: string;
|
|
129
|
-
}
|
|
130
|
-
export const ALL_CONTENT_IN_DATA_SETTING: "hasAllContentInData";
|
|
131
|
-
export namespace INTERNAL_LOGIN_TYPE {
|
|
132
|
-
const JAAS: string;
|
|
133
|
-
const PAC4J_FORM: string;
|
|
134
|
-
const PAC4J_BASIC: string;
|
|
135
|
-
}
|
|
136
|
-
export const LOGIN_TYPE: "security.clients";
|
|
137
|
-
export const LOGIN_PATH_SETTING: "FormClient.login_url";
|
|
138
|
-
export const LOGIN_USERNAME_SETTING: "FormClient.username_field_name";
|
|
139
|
-
export const LOGIN_PASSWORD_SETTING: "FormClient.password_field_name";
|
|
140
|
-
export const LOGOUT_PATH_SETTING: "FormClient.logout_url";
|
|
141
|
-
export namespace DEFAULT_AUTHENTICATION_TYPE {
|
|
142
|
-
const name: string;
|
|
143
|
-
const authentication: string;
|
|
144
|
-
const isPrimary: boolean;
|
|
145
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* path to content service
|
|
3
|
+
*/
|
|
4
|
+
export const CONTENT_PATH: "/content";
|
|
5
|
+
/**
|
|
6
|
+
* Upload Path
|
|
7
|
+
*/
|
|
8
|
+
export const UPLOAD_PATH: "/uploadFile";
|
|
9
|
+
/**
|
|
10
|
+
* Captcha Path
|
|
11
|
+
*/
|
|
12
|
+
export const CAPTCHA_PATH: "/captchaServices";
|
|
13
|
+
/**
|
|
14
|
+
* Path to change password page / component
|
|
15
|
+
*/
|
|
16
|
+
export const CHANGEPASSWORD_PATH: "/change-password";
|
|
17
|
+
/**
|
|
18
|
+
* Path to user profile page / component
|
|
19
|
+
*/
|
|
20
|
+
export const USERPROFILE_PATH: "/user";
|
|
21
|
+
/**
|
|
22
|
+
* Path to resources in the Be Informed repository
|
|
23
|
+
*/
|
|
24
|
+
export const RESOURCE_PATH: "/resource";
|
|
25
|
+
/**
|
|
26
|
+
* Separator for parameters of a list, makes it possible to render multiple lists on a page in a non-js environment
|
|
27
|
+
*/
|
|
28
|
+
export const PARAMETER_SEPARATOR: "~";
|
|
29
|
+
/**
|
|
30
|
+
* Timeversion filter name
|
|
31
|
+
*/
|
|
32
|
+
export const TIMEVERSION_FILTER_NAME: "entryDate";
|
|
33
|
+
/**
|
|
34
|
+
* Parameter name for the viewtype toggle
|
|
35
|
+
*/
|
|
36
|
+
export const DEFAULT_UI_PARAMETERS: Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
*/
|
|
39
|
+
export const ISO_DATE_FORMAT: "yyyy-MM-dd";
|
|
40
|
+
/**
|
|
41
|
+
*/
|
|
42
|
+
export const ISO_DATETIME_FORMAT: "yyyy-MM-dd'T'HH:mm:ss";
|
|
43
|
+
/**
|
|
44
|
+
*/
|
|
45
|
+
export const ISO_TIME_FORMAT: "HH:mm:ss";
|
|
46
|
+
/**
|
|
47
|
+
*/
|
|
48
|
+
export const ISO_TIMESTAMP_FORMAT: "yyyy-MM-dd'T'HH:mm:ss.SSS";
|
|
49
|
+
/**
|
|
50
|
+
* week starts on monday by default
|
|
51
|
+
*/
|
|
52
|
+
export const DEFAULT_WEEK_STARTS_ON: 1;
|
|
53
|
+
/**
|
|
54
|
+
* first week indicated by the 1st of january
|
|
55
|
+
*/
|
|
56
|
+
export const DEFAULT_FIRST_WEEK_CONTAINS_DATE: 1;
|
|
57
|
+
/**
|
|
58
|
+
* Key codes
|
|
59
|
+
* @type {{SPACE: number, PAGE_DOWN: number, TAB: number, ARROW_RIGHT: number, ARROW_DOWN: number, ENTER: number, ARROW_UP: number, ARROW_LEFT: number, PAGE_UP: number, ESCAPE: number}}
|
|
60
|
+
*/
|
|
61
|
+
export const KEYCODES: {
|
|
62
|
+
SPACE: number;
|
|
63
|
+
PAGE_DOWN: number;
|
|
64
|
+
TAB: number;
|
|
65
|
+
ARROW_RIGHT: number;
|
|
66
|
+
ARROW_DOWN: number;
|
|
67
|
+
ENTER: number;
|
|
68
|
+
ARROW_UP: number;
|
|
69
|
+
ARROW_LEFT: number;
|
|
70
|
+
PAGE_UP: number;
|
|
71
|
+
ESCAPE: number;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
*/
|
|
76
|
+
export const IS_SYNC: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* @type {boolean}
|
|
79
|
+
*/
|
|
80
|
+
export const IS_SERVER: boolean;
|
|
81
|
+
/**
|
|
82
|
+
* @type {{SUCCESS: string, ERROR: string, INFO: string, WARNING: string}}
|
|
83
|
+
*/
|
|
84
|
+
export const NOTIFICATION_TYPES: {
|
|
85
|
+
SUCCESS: string;
|
|
86
|
+
ERROR: string;
|
|
87
|
+
INFO: string;
|
|
88
|
+
WARNING: string;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* SUPPORTED HTTP METHODS
|
|
92
|
+
* @type {{POST: string, GET: string}}
|
|
93
|
+
*/
|
|
94
|
+
export const HTTP_METHODS: {
|
|
95
|
+
POST: string;
|
|
96
|
+
GET: string;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* POSSIBLE MODULARUI STATUSSES
|
|
100
|
+
* @type {{LOADING: string, ERROR: string, FINISHED: string}}
|
|
101
|
+
*/
|
|
102
|
+
export const MODULARUI_STATUS: {
|
|
103
|
+
LOADING: string;
|
|
104
|
+
ERROR: string;
|
|
105
|
+
FINISHED: string;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* POSSIBLE AUTOSAVE STATUSSES
|
|
109
|
+
* @type {{START: string, FINISHED: string}}
|
|
110
|
+
*/
|
|
111
|
+
export const AUTOSAVE_STATUS: {
|
|
112
|
+
START: string;
|
|
113
|
+
FINISHED: string;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* DEBOUNCE INPUT TIMEOUT
|
|
117
|
+
*/
|
|
118
|
+
export const INPUT_DEBOUNCE_TIMEOUT: 100;
|
|
119
|
+
/**
|
|
120
|
+
* DEBOUNCE VALIDATION TIMEOUT
|
|
121
|
+
*/
|
|
122
|
+
export const VALIDATE_DEBOUNCE_TIMEOUT: 500;
|
|
123
|
+
export namespace ATTRIBUTE_WIDTH {
|
|
124
|
+
const EXTRA_SMALL: string;
|
|
125
|
+
const SMALL: string;
|
|
126
|
+
const MEDIUM: string;
|
|
127
|
+
const LARGE: string;
|
|
128
|
+
const EXTRA_LARGE: string;
|
|
129
|
+
}
|
|
130
|
+
export const ALL_CONTENT_IN_DATA_SETTING: "hasAllContentInData";
|
|
131
|
+
export namespace INTERNAL_LOGIN_TYPE {
|
|
132
|
+
const JAAS: string;
|
|
133
|
+
const PAC4J_FORM: string;
|
|
134
|
+
const PAC4J_BASIC: string;
|
|
135
|
+
}
|
|
136
|
+
export const LOGIN_TYPE: "security.clients";
|
|
137
|
+
export const LOGIN_PATH_SETTING: "FormClient.login_url";
|
|
138
|
+
export const LOGIN_USERNAME_SETTING: "FormClient.username_field_name";
|
|
139
|
+
export const LOGIN_PASSWORD_SETTING: "FormClient.password_field_name";
|
|
140
|
+
export const LOGOUT_PATH_SETTING: "FormClient.logout_url";
|
|
141
|
+
export namespace DEFAULT_AUTHENTICATION_TYPE {
|
|
142
|
+
const name: string;
|
|
143
|
+
const authentication: string;
|
|
144
|
+
const isPrimary: boolean;
|
|
145
|
+
}
|