@beinformed/ui 1.39.0 → 1.41.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.
Files changed (109) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/esm/constants/LayoutHintConfig.js +18 -0
  3. package/esm/constants/LayoutHintConfig.js.map +1 -1
  4. package/esm/constants/LayoutHints.js +6 -0
  5. package/esm/constants/LayoutHints.js.map +1 -1
  6. package/esm/models/attributes/input-constraints/FileSizeConstraint.js +0 -1
  7. package/esm/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -1
  8. package/esm/models/content/ContentModel.js +1 -0
  9. package/esm/models/content/ContentModel.js.map +1 -1
  10. package/esm/models/content/SubSectionModel.js +5 -1
  11. package/esm/models/content/SubSectionModel.js.map +1 -1
  12. package/esm/models/detail/DetailModel.js +22 -3
  13. package/esm/models/detail/DetailModel.js.map +1 -1
  14. package/esm/models/href/Href.js +13 -0
  15. package/esm/models/href/Href.js.map +1 -1
  16. package/esm/react-client/contextPath.js +0 -2
  17. package/esm/react-client/contextPath.js.map +1 -1
  18. package/esm/react-client/rehydrate.js +0 -2
  19. package/esm/react-client/rehydrate.js.map +1 -1
  20. package/esm/react-server/contextPath.js +0 -1
  21. package/esm/react-server/contextPath.js.map +1 -1
  22. package/lib/constants/LayoutHintConfig.js +18 -0
  23. package/lib/constants/LayoutHintConfig.js.flow +56 -0
  24. package/lib/constants/LayoutHintConfig.js.map +1 -1
  25. package/lib/constants/LayoutHints.js +7 -1
  26. package/lib/constants/LayoutHints.js.flow +7 -0
  27. package/lib/constants/LayoutHints.js.map +1 -1
  28. package/lib/models/attributes/input-constraints/FileSizeConstraint.js +0 -1
  29. package/lib/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -1
  30. package/lib/models/content/ContentModel.js +1 -0
  31. package/lib/models/content/ContentModel.js.flow +1 -0
  32. package/lib/models/content/ContentModel.js.map +1 -1
  33. package/lib/models/content/SubSectionModel.js +5 -1
  34. package/lib/models/content/SubSectionModel.js.flow +3 -2
  35. package/lib/models/content/SubSectionModel.js.map +1 -1
  36. package/lib/models/content/__tests__/ContentModel.spec.js.flow +3 -0
  37. package/lib/models/detail/DetailModel.js +21 -2
  38. package/lib/models/detail/DetailModel.js.flow +35 -5
  39. package/lib/models/detail/DetailModel.js.map +1 -1
  40. package/lib/models/href/Href.js +13 -0
  41. package/lib/models/href/Href.js.flow +13 -0
  42. package/lib/models/href/Href.js.map +1 -1
  43. package/lib/react-client/contextPath.js +0 -1
  44. package/lib/react-client/contextPath.js.map +1 -1
  45. package/lib/react-client/rehydrate.js +0 -2
  46. package/lib/react-client/rehydrate.js.map +1 -1
  47. package/package.json +17 -17
  48. package/src/constants/LayoutHintConfig.js +56 -0
  49. package/src/constants/LayoutHints.js +7 -0
  50. package/src/models/content/ContentModel.js +1 -0
  51. package/src/models/content/SubSectionModel.js +3 -2
  52. package/src/models/content/__tests__/ContentModel.spec.js +3 -0
  53. package/src/models/detail/DetailModel.js +35 -5
  54. package/src/models/href/Href.js +13 -0
  55. package/types/constants/LayoutHintConfig.d.ts +15 -0
  56. package/types/constants/LayoutHints.d.ts +4 -0
  57. package/types/models/actions/ActionModel.d.ts +3 -3
  58. package/types/models/application/ApplicationModel.d.ts +1 -1
  59. package/types/models/attributes/AttributeCollection.d.ts +1 -1
  60. package/types/models/attributes/AttributeModel.d.ts +14 -14
  61. package/types/models/attributes/AttributeSetModel.d.ts +9 -2
  62. package/types/models/attributes/BooleanAttributeModel.d.ts +1 -1
  63. package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +2 -2
  64. package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +7 -7
  65. package/types/models/attributes/CompositeAttributeModel.d.ts +1 -1
  66. package/types/models/attributes/DatetimeAttributeModel.d.ts +1 -1
  67. package/types/models/attributes/PasswordAttributeModel.d.ts +3 -3
  68. package/types/models/attributes/StringAttributeModel.d.ts +1 -1
  69. package/types/models/attributes/UploadAttributeModel.d.ts +3 -3
  70. package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +1 -1
  71. package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +1 -1
  72. package/types/models/attributes/input-constraints/RangeConstraint.d.ts +1 -1
  73. package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +4 -4
  74. package/types/models/base/BaseCollection.d.ts +1 -1
  75. package/types/models/base/BaseModel.d.ts +2 -2
  76. package/types/models/base/ResourceModel.d.ts +2 -2
  77. package/types/models/caseview/CaseViewModel.d.ts +1 -1
  78. package/types/models/concepts/BusinessScenarioModel.d.ts +1 -1
  79. package/types/models/concepts/ConceptDetailModel.d.ts +1 -1
  80. package/types/models/concepts/ConceptIndexModel.d.ts +1 -1
  81. package/types/models/concepts/ConceptLinkModel.d.ts +1 -1
  82. package/types/models/concepts/ConceptRelationModel.d.ts +1 -1
  83. package/types/models/content/ContentLinkModel.d.ts +3 -3
  84. package/types/models/content/ContentModel.d.ts +2 -2
  85. package/types/models/content/ContentTOCModel.d.ts +1 -1
  86. package/types/models/content/SectionModel.d.ts +1 -1
  87. package/types/models/detail/DetailModel.d.ts +3 -3
  88. package/types/models/error/ErrorResponse.d.ts +1 -1
  89. package/types/models/filters/BaseFilterModel.d.ts +2 -2
  90. package/types/models/filters/StringFilterModel.d.ts +2 -2
  91. package/types/models/form/FormModel.d.ts +14 -14
  92. package/types/models/form/FormObjectModel.d.ts +3 -3
  93. package/types/models/href/Href.d.ts +13 -6
  94. package/types/models/href/ListHref.d.ts +4 -4
  95. package/types/models/links/LinkCollection.d.ts +1 -1
  96. package/types/models/links/LinkModel.d.ts +4 -4
  97. package/types/models/list/ListDetailModel.d.ts +2 -2
  98. package/types/models/list/ListModel.d.ts +3 -3
  99. package/types/models/paging/PagesizeModel.d.ts +1 -1
  100. package/types/models/paging/PagingModel.d.ts +1 -1
  101. package/types/models/panels/GroupingPanelModel.d.ts +1 -1
  102. package/types/models/sorting/SortOptionModel.d.ts +2 -2
  103. package/types/models/tab/TabModel.d.ts +1 -1
  104. package/types/models/taskgroup/TaskGroupModel.d.ts +5 -0
  105. package/types/models/user/UserServicesModel.d.ts +1 -1
  106. package/types/modularui/Authenticate.d.ts +1 -1
  107. package/types/modularui/ModularUIRequest.d.ts +8 -8
  108. package/types/modularui/ModularUIResponse.d.ts +5 -5
  109. package/types/utils/datetime/DateTimeUtil.d.ts +0 -1
@@ -13,7 +13,7 @@ export default class ActionModel extends BaseModel {
13
13
  get isDisabled(): boolean;
14
14
  /**
15
15
  */
16
- set selfhref(arg: Href);
16
+ set selfhref(href: Href);
17
17
  /**
18
18
  * retrieve href of action
19
19
  */
@@ -39,7 +39,7 @@ export default class ActionModel extends BaseModel {
39
39
  get fields(): AttributeType[];
40
40
  /**
41
41
  */
42
- set fieldCollection(arg: AttributeCollection);
42
+ set fieldCollection(fieldCollection: AttributeCollection);
43
43
  /**
44
44
  * Retrieve the field collection
45
45
  */
@@ -72,7 +72,7 @@ export default class ActionModel extends BaseModel {
72
72
  get processStatus(): ProcessStatusSettingsModel;
73
73
  /**
74
74
  */
75
- set icon(arg: string);
75
+ set icon(icon: string);
76
76
  /**
77
77
  */
78
78
  get icon(): string;
@@ -6,7 +6,7 @@ export default class ApplicationModel extends ResourceModel {
6
6
  /**
7
7
  * Set the userservices for this application
8
8
  */
9
- set userServices(arg: UserServicesModel);
9
+ set userServices(model: UserServicesModel);
10
10
  /**
11
11
  * returns the userservices configured for this application
12
12
  */
@@ -7,7 +7,7 @@ declare class AttributeCollection extends ResourceCollection<AttributeType, any>
7
7
  /**
8
8
  * Replace attributes with a new array of attributes
9
9
  */
10
- set attributes(arg: AttributeType[]);
10
+ set attributes(attributes: AttributeType[]);
11
11
  /**
12
12
  * Retrieve all attributes in this collection<br>
13
13
  * This getter processes layout hints, this is different from the standard {@link BaseCollection#all} property
@@ -40,7 +40,7 @@ export default class AttributeModel extends BaseModel {
40
40
  /**
41
41
  * Set the concept
42
42
  */
43
- set concept(arg: ConceptDetailModel);
43
+ set concept(concept: ConceptDetailModel);
44
44
  /**
45
45
  * Get concept information
46
46
  */
@@ -51,7 +51,7 @@ export default class AttributeModel extends BaseModel {
51
51
  get key(): string;
52
52
  /**
53
53
  */
54
- set parentKey(arg: string);
54
+ set parentKey(parentKey: string);
55
55
  /**
56
56
  */
57
57
  get parentKey(): string;
@@ -66,14 +66,14 @@ export default class AttributeModel extends BaseModel {
66
66
  /**
67
67
  * Set the label of this attribute
68
68
  */
69
- set label(arg: string);
69
+ set label(label: string);
70
70
  /**
71
71
  * Getting the label of the attribute
72
72
  */
73
73
  get label(): string;
74
74
  /**
75
75
  */
76
- set hasContentConfiguration(arg: boolean);
76
+ set hasContentConfiguration(hasContentConfiguration: boolean);
77
77
  /**
78
78
  */
79
79
  get hasContentConfiguration(): boolean;
@@ -107,7 +107,7 @@ export default class AttributeModel extends BaseModel {
107
107
  /**
108
108
  * Set reference date for concepts and content
109
109
  */
110
- set referenceDate(arg: ISO_DATE);
110
+ set referenceDate(date: ISO_DATE);
111
111
  /**
112
112
  * Retrieve reference date of attribute which can be used as entryDate for content
113
113
  * to get information in correct time version
@@ -124,7 +124,7 @@ export default class AttributeModel extends BaseModel {
124
124
  /**
125
125
  * Sets the input value to the value entered by the user
126
126
  */
127
- set inputvalue(arg: string);
127
+ set inputvalue(value: string);
128
128
  /**
129
129
  * Returns the value as entered by the user. This can differ from the internal iso value that is stored
130
130
  */
@@ -138,7 +138,7 @@ export default class AttributeModel extends BaseModel {
138
138
  /**
139
139
  * Setting a value in the element
140
140
  */
141
- set value(arg: any);
141
+ set value(value: any);
142
142
  /**
143
143
  * Getting the value of the attribute
144
144
  */
@@ -175,7 +175,7 @@ export default class AttributeModel extends BaseModel {
175
175
  /**
176
176
  * Set mandatory status of attribute
177
177
  */
178
- set mandatory(arg: boolean);
178
+ set mandatory(mandatory: boolean);
179
179
  /**
180
180
  * Getting mandatory status of attribute
181
181
  */
@@ -185,19 +185,19 @@ export default class AttributeModel extends BaseModel {
185
185
  get configuredMandatory(): boolean;
186
186
  /**
187
187
  */
188
- set readonly(arg: boolean);
188
+ set readonly(readonly: boolean);
189
189
  /**
190
190
  */
191
191
  get readonly(): boolean;
192
192
  /**
193
193
  */
194
- set disabled(arg: boolean);
194
+ set disabled(disabled: boolean);
195
195
  /**
196
196
  */
197
197
  get disabled(): boolean;
198
198
  /**
199
199
  */
200
- set isResult(arg: boolean);
200
+ set isResult(isResult: boolean);
201
201
  /**
202
202
  */
203
203
  get isResult(): boolean;
@@ -326,7 +326,7 @@ export default class AttributeModel extends BaseModel {
326
326
  /**
327
327
  * Indicate if attribute is editable
328
328
  */
329
- set isEditable(arg: boolean);
329
+ set isEditable(isEditable: boolean);
330
330
  /**
331
331
  * Retrieve if attribute is editable
332
332
  */
@@ -337,7 +337,7 @@ export default class AttributeModel extends BaseModel {
337
337
  get isVisible(): boolean;
338
338
  /**
339
339
  */
340
- set isHidden(arg: boolean);
340
+ set isHidden(isHidden: boolean);
341
341
  /**
342
342
  */
343
343
  get isHidden(): boolean;
@@ -363,7 +363,7 @@ export default class AttributeModel extends BaseModel {
363
363
  }>;
364
364
  /**
365
365
  */
366
- set layoutHintRules(arg: LayoutHintRuleCollection);
366
+ set layoutHintRules(rules: LayoutHintRuleCollection);
367
367
  /**
368
368
  */
369
369
  get layoutHintRules(): LayoutHintRuleCollection;
@@ -8,7 +8,7 @@ export default class AttributeSetModel extends BaseModel {
8
8
  _attributeCollection: AttributeCollection;
9
9
  /**
10
10
  */
11
- set key(arg: string);
11
+ set key(key: string);
12
12
  /**
13
13
  */
14
14
  get key(): string;
@@ -18,11 +18,18 @@ export default class AttributeSetModel extends BaseModel {
18
18
  /**
19
19
  * Set the attributes with a new AttributeCollection
20
20
  */
21
- set attributeCollection(arg: AttributeCollection);
21
+ set attributeCollection(collection: AttributeCollection);
22
22
  /**
23
23
  * Retrieve attribute collection
24
24
  */
25
25
  get attributeCollection(): AttributeCollection;
26
+ /**
27
+ */
28
+ createChildAttributeSetModel(key: string, dataObject: Object, index?: number): AttributeSetModel;
29
+ /**
30
+ * Retrieve child {@code AttributeSetModel}s
31
+ */
32
+ getChildAttributeSets(): Array<AttributeSetModel>;
26
33
  }
27
34
  import BaseModel from "../base/BaseModel";
28
35
  import AttributeCollection from "./AttributeCollection";
@@ -7,7 +7,7 @@ export default class BooleanAttributeModel extends AttributeModel {
7
7
  /**
8
8
  * Set reference date for concepts and content
9
9
  */
10
- set referenceDate(arg: string);
10
+ set referenceDate(date: string);
11
11
  /**
12
12
  * Retrieve reference date of attribute which can be used as entryDate for content
13
13
  */
@@ -10,7 +10,7 @@ declare class ChoiceAttributeOptionCollection extends ResourceCollection<ChoiceA
10
10
  _sortOptions: boolean;
11
11
  /**
12
12
  */
13
- set sortOptions(arg: boolean);
13
+ set sortOptions(sortOptions: boolean);
14
14
  /**
15
15
  */
16
16
  get sortOptions(): boolean;
@@ -63,7 +63,7 @@ declare class ChoiceAttributeOptionCollection extends ResourceCollection<ChoiceA
63
63
  setReferenceDate(date: ISO_DATE): Array<ChoiceAttributeOptionModel>;
64
64
  /**
65
65
  */
66
- set referenceDate(arg: ISO_DATE);
66
+ set referenceDate(date: ISO_DATE);
67
67
  /**
68
68
  */
69
69
  addHeaders(headers: Array<Object>): void;
@@ -19,7 +19,7 @@ declare class ChoiceAttributeOptionModel extends BaseModel {
19
19
  _content: AttributeContent;
20
20
  /**
21
21
  */
22
- set code(arg: string);
22
+ set code(code: string);
23
23
  /**
24
24
  * Get code of option
25
25
  */
@@ -38,7 +38,7 @@ declare class ChoiceAttributeOptionModel extends BaseModel {
38
38
  /**
39
39
  * Set the concept
40
40
  */
41
- set concept(arg: ConceptDetailModel);
41
+ set concept(concept: ConceptDetailModel);
42
42
  /**
43
43
  * Get concept information
44
44
  */
@@ -48,7 +48,7 @@ declare class ChoiceAttributeOptionModel extends BaseModel {
48
48
  equals(model: ChoiceAttributeOptionModel): boolean;
49
49
  /**
50
50
  */
51
- set attributeCollection(arg: AttributeCollection);
51
+ set attributeCollection(attributeCollection: AttributeCollection);
52
52
  /**
53
53
  * Retrieve attributes for Composite codemaps (e.g. table and case list codemaps)
54
54
  */
@@ -68,7 +68,7 @@ declare class ChoiceAttributeOptionModel extends BaseModel {
68
68
  /**
69
69
  * Set selected property of option
70
70
  */
71
- set selected(arg: boolean);
71
+ set selected(selected: boolean);
72
72
  /**
73
73
  * Indicates if option is selected
74
74
  */
@@ -86,14 +86,14 @@ declare class ChoiceAttributeOptionModel extends BaseModel {
86
86
  get children(): ChoiceAttributeOptionCollection;
87
87
  /**
88
88
  */
89
- set links(arg: LinkCollection);
89
+ set links(links: LinkCollection);
90
90
  /**
91
91
  * Retrieve links of attribute
92
92
  */
93
93
  get links(): LinkCollection;
94
94
  /**
95
95
  */
96
- set referenceDate(arg: ISO_DATE);
96
+ set referenceDate(date: ISO_DATE);
97
97
  /**
98
98
  * referenceDate received from attribute
99
99
  */
@@ -105,7 +105,7 @@ declare class ChoiceAttributeOptionModel extends BaseModel {
105
105
  /**
106
106
  * Set level of option
107
107
  */
108
- set level(arg: number);
108
+ set level(level: number);
109
109
  /**
110
110
  * Get level of option, used in tree view choice attributes (taxonomy)
111
111
  */
@@ -8,7 +8,7 @@ declare class CompositeAttributeModel extends AttributeModel {
8
8
  get isRange(): boolean;
9
9
  /**
10
10
  */
11
- set children(arg: CompositeAttributeChildCollection);
11
+ set children(children: CompositeAttributeChildCollection);
12
12
  /**
13
13
  */
14
14
  get children(): CompositeAttributeChildCollection;
@@ -7,7 +7,7 @@ declare class DatetimeAttributeModel extends StringAttributeModel {
7
7
  get formatUtil(): {
8
8
  _isoFormat: string; /**
9
9
  */
10
- getLocale(): Locale;
10
+ getLocale(): import("date-fns").Locale;
11
11
  getOptions(): {
12
12
  weekStartsOn: 0 | 2 | 1 | 3 | 4 | 5 | 6;
13
13
  firstWeekContainsDate: 2 | 1 | 3 | 4 | 5 | 6 | 7;
@@ -40,19 +40,19 @@ export default class PasswordAttributeModel extends StringAttributeModel {
40
40
  getStandardPasswordConstraints(): ConstraintCollection;
41
41
  /**
42
42
  */
43
- set isConfirmPassword(arg: boolean);
43
+ set isConfirmPassword(isConfirmPassword: boolean);
44
44
  /**
45
45
  */
46
46
  get isConfirmPassword(): boolean;
47
47
  /**
48
48
  */
49
- set confirmValue(arg: string);
49
+ set confirmValue(confirmValue: string);
50
50
  /**
51
51
  */
52
52
  get confirmValue(): string;
53
53
  /**
54
54
  */
55
- set otherLabel(arg: string);
55
+ set otherLabel(otherLabel: string);
56
56
  /**
57
57
  */
58
58
  get otherLabel(): string;
@@ -25,7 +25,7 @@ export default class StringAttributeModel extends AttributeModel {
25
25
  /**
26
26
  * Set placeholder text
27
27
  */
28
- set placeholder(arg: string);
28
+ set placeholder(placeholder: string);
29
29
  /**
30
30
  * Get placeholder text
31
31
  */
@@ -11,13 +11,13 @@ export default class UploadAttributeModel extends StringAttributeModel {
11
11
  get multiple(): boolean;
12
12
  /**
13
13
  */
14
- set initialTotalFileSize(arg: number);
14
+ set initialTotalFileSize(initialTotalFileSize: number);
15
15
  /**
16
16
  */
17
17
  get initialTotalFileSize(): number;
18
18
  /**
19
19
  */
20
- set maxTotalFileSize(arg: number);
20
+ set maxTotalFileSize(maxTotalFileSize: number);
21
21
  /**
22
22
  */
23
23
  get maxTotalFileSize(): number;
@@ -45,7 +45,7 @@ export default class UploadAttributeModel extends StringAttributeModel {
45
45
  get acceptedFiles(): string[];
46
46
  /**
47
47
  */
48
- set files(arg: FilesType);
48
+ set files(files: FilesType);
49
49
  /**
50
50
  */
51
51
  get files(): FilesType;
@@ -52,7 +52,7 @@ declare class DateBoundaryConstraint {
52
52
  */
53
53
  get formatUtil(): {
54
54
  _isoFormat: string;
55
- getLocale(): Locale;
55
+ getLocale(): import("date-fns").Locale;
56
56
  getOptions(): {
57
57
  weekStartsOn: 0 | 2 | 1 | 3 | 4 | 5 | 6;
58
58
  firstWeekContainsDate: 2 | 1 | 3 | 4 | 5 | 6 | 7;
@@ -35,7 +35,7 @@ declare class DatetimeFormatConstraint {
35
35
  */
36
36
  get formatUtil(): {
37
37
  _isoFormat: string;
38
- getLocale(): Locale;
38
+ getLocale(): import("date-fns").Locale;
39
39
  getOptions(): {
40
40
  weekStartsOn: 0 | 2 | 1 | 3 | 4 | 5 | 6;
41
41
  firstWeekContainsDate: 2 | 1 | 3 | 4 | 5 | 6 | 7;
@@ -35,7 +35,7 @@ declare class RangeConstraint {
35
35
  */
36
36
  get util(): {
37
37
  _isoFormat: string;
38
- getLocale(): Locale;
38
+ getLocale(): import("date-fns").Locale;
39
39
  getOptions(): {
40
40
  weekStartsOn: 0 | 2 | 1 | 3 | 4 | 5 | 6;
41
41
  firstWeekContainsDate: 2 | 1 | 3 | 4 | 5 | 6 | 7;
@@ -16,25 +16,25 @@ declare class DependentAttribute extends BaseLayoutHintRule {
16
16
  _options: Array<string>;
17
17
  /**
18
18
  */
19
- set action(arg: string);
19
+ set action(action: string);
20
20
  /**
21
21
  */
22
22
  get action(): string;
23
23
  /**
24
24
  */
25
- set control(arg: string);
25
+ set control(control: string);
26
26
  /**
27
27
  */
28
28
  get control(): string;
29
29
  /**
30
30
  */
31
- set operator(arg: string);
31
+ set operator(operator: string);
32
32
  /**
33
33
  */
34
34
  get operator(): string;
35
35
  /**
36
36
  */
37
- set options(arg: string[]);
37
+ set options(options: string[]);
38
38
  /**
39
39
  */
40
40
  get options(): string[];
@@ -11,7 +11,7 @@ declare class BaseCollection<T> {
11
11
  /**
12
12
  * Replace current collection with a new collection
13
13
  */
14
- set collection(arg: T[]);
14
+ set collection(collection: T[]);
15
15
  /**
16
16
  * Retrieve current collection
17
17
  */
@@ -34,7 +34,7 @@ declare class BaseModel {
34
34
  /**
35
35
  * Set the layouthint
36
36
  */
37
- set layouthint(arg: LayoutHintCollection);
37
+ set layouthint(layouthint: LayoutHintCollection);
38
38
  /**
39
39
  * Getting the layouthint
40
40
  */
@@ -46,7 +46,7 @@ declare class BaseModel {
46
46
  /**
47
47
  * Set the unique key for this model
48
48
  */
49
- set connectKey(arg: string);
49
+ set connectKey(key: string);
50
50
  /**
51
51
  * Get the unique key of this model
52
52
  */
@@ -24,7 +24,7 @@ declare class ResourceModel extends BaseModel {
24
24
  _lastServerUpdate: number;
25
25
  /**
26
26
  */
27
- set lastServerUpdate(arg: number);
27
+ set lastServerUpdate(lastServerUpdate: number);
28
28
  /**
29
29
  */
30
30
  get lastServerUpdate(): number;
@@ -50,7 +50,7 @@ declare class ResourceModel extends BaseModel {
50
50
  get label(): string;
51
51
  /**
52
52
  */
53
- set links(arg: LinkCollection);
53
+ set links(links: LinkCollection);
54
54
  /**
55
55
  * Getting the links of the resource
56
56
  */
@@ -29,7 +29,7 @@ export default class CaseViewModel extends DetailModel {
29
29
  /**
30
30
  * Setting the taskgroup panel collection
31
31
  */
32
- set taskGroupCollection(arg: TaskGroupCollection);
32
+ set taskGroupCollection(taskgroups: TaskGroupCollection);
33
33
  /**
34
34
  * Getting the taskgrouppanels on the tab
35
35
  */
@@ -8,7 +8,7 @@ declare class BusinessScenarioModel extends ConceptDetailModel {
8
8
  _scenarioSteps: Array<ConceptDetailModel>;
9
9
  /**
10
10
  */
11
- set scenarioSteps(arg: ConceptDetailModel[]);
11
+ set scenarioSteps(models: ConceptDetailModel[]);
12
12
  /**
13
13
  */
14
14
  get scenarioSteps(): ConceptDetailModel[];
@@ -7,7 +7,7 @@ export default class ConceptDetailModel extends ResourceModel {
7
7
  _sourceReferences: SourceReferenceCollection;
8
8
  /**
9
9
  */
10
- set conceptType(arg: ConceptTypeDetailModel);
10
+ set conceptType(conceptType: ConceptTypeDetailModel);
11
11
  /**
12
12
  * Get conceptType of concept
13
13
  */
@@ -23,7 +23,7 @@ export default class ConceptIndexModel extends ResourceModel {
23
23
  /**
24
24
  * Replace the items collection
25
25
  */
26
- set items(arg: ResourceCollection<ConceptLinkModel, any>);
26
+ set items(itemCollection: ResourceCollection<ConceptLinkModel, any>);
27
27
  /**
28
28
  * Get concept links found by index filter
29
29
  */
@@ -18,7 +18,7 @@ export default class ConceptLinkModel extends BaseModel {
18
18
  /**
19
19
  * Set concept type
20
20
  */
21
- set conceptType(arg: ConceptTypeDetailModel);
21
+ set conceptType(conceptType: ConceptTypeDetailModel);
22
22
  /**
23
23
  * Retrieve concept type
24
24
  */
@@ -32,7 +32,7 @@ export default class ConceptRelationModel {
32
32
  /**
33
33
  * Set concept information
34
34
  */
35
- set concept(arg: ConceptLinkModel);
35
+ set concept(concept: ConceptLinkModel);
36
36
  /**
37
37
  * Get other concept
38
38
  */
@@ -18,14 +18,14 @@ export default class ContentLinkModel extends BaseModel {
18
18
  /**
19
19
  * Set concept type
20
20
  */
21
- set contentType(arg: ContentTypeModel);
21
+ set contentType(contentType: ContentTypeModel);
22
22
  /**
23
23
  * Retrieve content type
24
24
  */
25
25
  get contentType(): ContentTypeModel;
26
26
  /**
27
27
  */
28
- set entryDate(arg: ISO_DATE);
28
+ set entryDate(entryDate: ISO_DATE);
29
29
  /**
30
30
  * Retrieve key
31
31
  */
@@ -68,7 +68,7 @@ export default class ContentLinkModel extends BaseModel {
68
68
  /**
69
69
  * Children of link model in TOC
70
70
  */
71
- set items(arg: ContentLinkModel[]);
71
+ set items(items: ContentLinkModel[]);
72
72
  /**
73
73
  */
74
74
  get items(): ContentLinkModel[];
@@ -8,7 +8,7 @@ export default class ContentModel extends ResourceModel {
8
8
  /**
9
9
  * Set concept type
10
10
  */
11
- set contentType(arg: ContentTypeModel);
11
+ set contentType(contentType: ContentTypeModel);
12
12
  /**
13
13
  * Get conceptType of concept
14
14
  */
@@ -45,7 +45,7 @@ export default class ContentModel extends ResourceModel {
45
45
  /**
46
46
  * set resolved child sections
47
47
  */
48
- set childSections(arg: SectionModel[]);
48
+ set childSections(sections: SectionModel[]);
49
49
  /**
50
50
  * Get tree of child sections
51
51
  */
@@ -6,7 +6,7 @@ export default class ContentTOCModel extends ResourceModel {
6
6
  _filterCollection: FilterCollection;
7
7
  /**
8
8
  */
9
- set contentType(arg: ContentTypeModel);
9
+ set contentType(contentType: ContentTypeModel);
10
10
  /**
11
11
  * Retrieve content type model
12
12
  */
@@ -52,7 +52,7 @@ declare class SectionModel extends BaseModel {
52
52
  /**
53
53
  * set resolved child sections
54
54
  */
55
- set childSections(arg: SectionModel[]);
55
+ set childSections(sections: SectionModel[]);
56
56
  /**
57
57
  * Get tree of child sections
58
58
  */
@@ -17,7 +17,7 @@ export default class DetailModel extends ResourceModel {
17
17
  createAttributeCollection(): void;
18
18
  /**
19
19
  */
20
- set attributeCollection(arg: AttributeCollection);
20
+ set attributeCollection(collection: AttributeCollection);
21
21
  /**
22
22
  */
23
23
  get attributeCollection(): AttributeCollection;
@@ -35,7 +35,7 @@ export default class DetailModel extends ResourceModel {
35
35
  createMetadataCollection(): void;
36
36
  /**
37
37
  */
38
- set metadataCollection(arg: AttributeCollection);
38
+ set metadataCollection(collection: AttributeCollection);
39
39
  /**
40
40
  */
41
41
  get metadataCollection(): AttributeCollection;
@@ -45,7 +45,7 @@ export default class DetailModel extends ResourceModel {
45
45
  createActionCollection(): void;
46
46
  /**
47
47
  */
48
- set actionCollection(arg: ActionCollection);
48
+ set actionCollection(actionCollection: ActionCollection);
49
49
  /**
50
50
  */
51
51
  get actionCollection(): ActionCollection;
@@ -13,7 +13,7 @@ export default class ErrorResponse {
13
13
  _connectKey: string | null;
14
14
  /**
15
15
  */
16
- set connectKey(arg: string);
16
+ set connectKey(key: string);
17
17
  /**
18
18
  */
19
19
  get connectKey(): string;
@@ -8,7 +8,7 @@ export default class BaseFilterModel extends BaseModel {
8
8
  /**
9
9
  * Set key of list this filter belongs to
10
10
  */
11
- set listkey(arg: string);
11
+ set listkey(key: string);
12
12
  /**
13
13
  * Getting key of the list these filters apply to
14
14
  */
@@ -28,7 +28,7 @@ export default class BaseFilterModel extends BaseModel {
28
28
  /**
29
29
  * Set context of filter
30
30
  */
31
- set context(arg: Object);
31
+ set context(context: Object);
32
32
  /**
33
33
  * Getting context data
34
34
  */