@mtna/web-form-angular 1.0.6-SNAPSHOT.22 → 1.0.6-SNAPSHOT.24

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 (147) hide show
  1. package/_index.scss +2 -0
  2. package/bundles/mtna-web-form-angular.umd.js +1466 -644
  3. package/bundles/mtna-web-form-angular.umd.js.map +1 -1
  4. package/esm2015/lib/components/form-item-impl/date/date.component.js +6 -29
  5. package/esm2015/lib/components/form-item-impl/date/date.module.js +2 -5
  6. package/esm2015/lib/components/form-item-impl/year-quarter/year-quarter.component.js +1 -1
  7. package/esm2015/lib/components/form-item-injector/form-item-injector.component.js +43 -2
  8. package/esm2015/lib/components/template-item-impl/date/year-quarter-item/year-quarter-item.component.js +105 -12
  9. package/esm2015/lib/components/template-item-impl/date/year-quarter-range-item/year-quarter-range-item.component.js +11 -2
  10. package/esm2015/lib/components/template-item-impl/date-item/date-item.component.js +3 -27
  11. package/esm2015/lib/components/template-item-impl/date-item/date-item.module.js +2 -5
  12. package/esm2015/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.component.js +4 -4
  13. package/esm2015/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.module.js +15 -8
  14. package/esm2015/lib/components/template-item-impl/template-display-viewer/template-display-viewer.component.js +25 -4
  15. package/esm2015/lib/components/template-item-impl/template-item/template-item.component.js +7 -3
  16. package/esm2015/lib/components/template-item-impl/template-item-injector/template-item-injector.component.js +49 -4
  17. package/esm2015/lib/components/template-item-impl/template-section/template-section.component.js +1 -1
  18. package/esm2015/lib/models/design/design-constants/index.js +2 -0
  19. package/esm2015/lib/models/design/design-constants/template-design-constants.model.js +54 -0
  20. package/esm2015/lib/models/design/design-mapper/bulleted-list-item-template-mapper.js +2 -2
  21. package/esm2015/lib/models/design/design-mapper/date-item-template-mapper.js +10 -18
  22. package/esm2015/lib/models/design/design-mapper/dropdown-item-template-mapper.js +1 -12
  23. package/esm2015/lib/models/design/design-mapper/file-upload-item-template-mapper.js +4 -8
  24. package/esm2015/lib/models/design/design-mapper/i18n-text-response-item-template-mapper.js +2 -2
  25. package/esm2015/lib/models/design/design-mapper/mapper-classes.model.js +35 -26
  26. package/esm2015/lib/models/design/design-mapper/mapping-logic-core.js +23 -5
  27. package/esm2015/lib/models/design/design-mapper/multiple-choice-item-template-mapper.js +1 -11
  28. package/esm2015/lib/models/design/design-mapper/numbered-list-item-template-mapper.js +2 -2
  29. package/esm2015/lib/models/design/design-mapper/numeric-response-item-template-mapper.js +2 -2
  30. package/esm2015/lib/models/design/design-mapper/offset-date-range-template-mapper.js +11 -9
  31. package/esm2015/lib/models/design/design-mapper/option-group-item-mapper.js +27 -10
  32. package/esm2015/lib/models/design/design-mapper/option-item-mapper.js +4 -3
  33. package/esm2015/lib/models/design/design-mapper/option-selector-mapper.js +17 -5
  34. package/esm2015/lib/models/design/design-mapper/repeatable-item-template-mapper.js +2 -2
  35. package/esm2015/lib/models/design/design-mapper/template-item-group-mapper.js +48 -13
  36. package/esm2015/lib/models/design/design-mapper/template-item-mapper.js +47 -33
  37. package/esm2015/lib/models/design/design-mapper/template-mapper.js +7 -5
  38. package/esm2015/lib/models/design/design-mapper/template-section-mapper.js +14 -12
  39. package/esm2015/lib/models/design/design-mapper/text-item-template-mapper.js +2 -2
  40. package/esm2015/lib/models/design/design-mapper/text-response-item-template-mapper.js +2 -2
  41. package/esm2015/lib/models/design/design-mapper/time-item-template-mapper.js +2 -2
  42. package/esm2015/lib/models/design/design-mapper/title-item-template-mapper.js +18 -9
  43. package/esm2015/lib/models/design/design-mapper/year-quarter-range-template-mapper.js +27 -7
  44. package/esm2015/lib/models/design/design-properties/engagement-property-type.model.js +2 -0
  45. package/esm2015/lib/models/design/design-properties/enumeration-value-functions/date-format.js +29 -0
  46. package/esm2015/lib/models/design/design-properties/enumeration-value-functions/index.js +4 -0
  47. package/esm2015/lib/models/design/design-properties/enumeration-value-functions/layout.js +14 -0
  48. package/esm2015/lib/models/design/design-properties/enumeration-value-functions/quarter-range.js +20 -0
  49. package/esm2015/lib/models/design/design-properties/enumerations/date-display-format-enumeration.model.js +38 -0
  50. package/esm2015/lib/models/design/design-properties/enumerations/index.js +4 -0
  51. package/esm2015/lib/models/design/design-properties/enumerations/layout-enumeration.model.js +11 -0
  52. package/esm2015/lib/models/design/design-properties/enumerations/quarter-range-enumeration.model.js +24 -0
  53. package/esm2015/lib/models/design/design-properties/properties/date-format.model.js +14 -0
  54. package/esm2015/lib/models/design/design-properties/properties/index.js +4 -0
  55. package/esm2015/lib/models/design/design-properties/properties/layout.model.js +14 -0
  56. package/esm2015/lib/models/design/design-properties/properties/quarter-range.model.js +23 -0
  57. package/esm2015/lib/models/design/index.js +4 -3
  58. package/esm2015/lib/models/design/potential-designs.model.js +24 -2
  59. package/esm2015/lib/models/design/unavailable-template-item-name-map.model.js +27 -0
  60. package/esm2015/lib/models/i18n-constants.model.js +58 -12
  61. package/esm2015/lib/pipes/get-form-control-error.pipe.js +1 -1
  62. package/esm2015/lib/pipes/get-i18n-string-value-from-locale.pipe.js +2 -2
  63. package/esm2015/lib/pipes/instance-of-template-item.pipe.js +3 -3
  64. package/esm2015/lib/services/api.service.js +58 -28
  65. package/esm2015/lib/services/ui.service.js +2 -2
  66. package/esm2015/lib/state/design/template-design.facade.js +124 -45
  67. package/esm2015/lib/state/form/template-form.effects.js +30 -18
  68. package/esm2015/lib/utilities/enum-property-handlers-util.js +14 -0
  69. package/esm2015/lib/utilities/form-option-design-util.js +5 -5
  70. package/esm2015/lib/utilities/get-design-properties.util.js +8 -0
  71. package/esm2015/lib/utilities/index.js +7 -1
  72. package/esm2015/lib/utilities/is-template-util.js +68 -0
  73. package/esm2015/lib/utilities/item-to-design-base.util.js +25 -0
  74. package/esm2015/lib/utilities/merge-template-util.js +1 -2
  75. package/esm2015/lib/utilities/model-map-util.js +27 -0
  76. package/esm2015/lib/utilities/new-base-designs.util.js +5 -4
  77. package/esm2015/lib/utilities/serializer-util.js +2 -50
  78. package/esm2015/lib/utilities/template-design-core-util.js +8 -7
  79. package/esm2015/lib/utilities/template-design-util.js +7 -74
  80. package/esm2015/lib/utilities/to-design-util.js +24 -0
  81. package/esm2015/lib/utilities/validator-functions-util.js +59 -0
  82. package/fesm2015/mtna-web-form-angular.js +1169 -476
  83. package/fesm2015/mtna-web-form-angular.js.map +1 -1
  84. package/lib/_index.scss +2 -0
  85. package/lib/components/form-item-impl/checkbox/_checkbox-theme.scss +4 -4
  86. package/lib/components/form-item-impl/date/date.component.d.ts +2 -8
  87. package/lib/components/form-item-impl/multiple-choice/_multiple-choice-theme.scss +4 -4
  88. package/lib/components/form-item-injector/form-item-injector.component.d.ts +1 -0
  89. package/lib/components/template-item-impl/checkbox-item/_checkbox-item-template-theme.scss +4 -4
  90. package/lib/components/template-item-impl/date/year-quarter-item/year-quarter-item.component.d.ts +20 -2
  91. package/lib/components/template-item-impl/date/year-quarter-range-item/year-quarter-range-item.component.d.ts +4 -0
  92. package/lib/components/template-item-impl/date-item/date-item.component.d.ts +1 -8
  93. package/lib/components/template-item-impl/decimal-answer-item/decimal-answer-item.module.d.ts +7 -5
  94. package/lib/components/template-item-impl/multiple-choice-item/_multiple-choice-item-theme.scss +65 -0
  95. package/lib/components/template-item-impl/template-display-viewer/template-display-viewer.component.d.ts +4 -2
  96. package/lib/components/template-item-impl/template-item/template-item.component.d.ts +1 -0
  97. package/lib/components/template-item-impl/template-item-injector/template-item-injector.component.d.ts +1 -0
  98. package/lib/components/template-item-impl/template-section/template-section.component.d.ts +1 -1
  99. package/lib/core/_all-color.scss +2 -0
  100. package/lib/core/_all-theme.scss +2 -0
  101. package/lib/core/_all-typography.scss +2 -0
  102. package/lib/models/design/design-constants/index.d.ts +1 -0
  103. package/lib/models/design/{template-design-constants.model.d.ts → design-constants/template-design-constants.model.d.ts} +8 -2
  104. package/lib/models/design/design-mapper/dropdown-item-template-mapper.d.ts +0 -1
  105. package/lib/models/design/design-mapper/mapping-logic-core.d.ts +23 -4
  106. package/lib/models/design/design-mapper/option-selector-mapper.d.ts +1 -0
  107. package/lib/models/design/design-mapper/template-item-group-mapper.d.ts +1 -0
  108. package/lib/models/design/design-mapper/template-item-mapper.d.ts +2 -2
  109. package/lib/models/design/design-mapper/title-item-template-mapper.d.ts +1 -0
  110. package/lib/models/design/design-properties/engagement-property-type.model.d.ts +14 -0
  111. package/lib/models/design/design-properties/enumeration-value-functions/date-format.d.ts +2 -0
  112. package/lib/models/design/design-properties/enumeration-value-functions/index.d.ts +3 -0
  113. package/lib/models/design/design-properties/enumeration-value-functions/layout.d.ts +3 -0
  114. package/lib/models/design/design-properties/enumeration-value-functions/quarter-range.d.ts +2 -0
  115. package/lib/models/design/{enumerations/date-enumeration.model.d.ts → design-properties/enumerations/date-display-format-enumeration.model.d.ts} +2 -1
  116. package/lib/models/design/design-properties/enumerations/index.d.ts +3 -0
  117. package/lib/models/design/design-properties/enumerations/layout-enumeration.model.d.ts +4 -0
  118. package/lib/models/design/design-properties/enumerations/quarter-range-enumeration.model.d.ts +6 -0
  119. package/lib/models/design/design-properties/properties/date-format.model.d.ts +2 -0
  120. package/lib/models/design/design-properties/properties/index.d.ts +3 -0
  121. package/lib/models/design/design-properties/properties/layout.model.d.ts +2 -0
  122. package/lib/models/design/design-properties/properties/quarter-range.model.d.ts +3 -0
  123. package/lib/models/design/index.d.ts +3 -2
  124. package/lib/models/design/unavailable-template-item-name-map.model.d.ts +1 -0
  125. package/lib/models/i18n-constants.model.d.ts +56 -10
  126. package/lib/pipes/get-form-control-error.pipe.d.ts +2 -2
  127. package/lib/pipes/get-i18n-string-value-from-locale.pipe.d.ts +1 -1
  128. package/lib/services/api.service.d.ts +52 -18
  129. package/lib/services/ui.service.d.ts +2 -2
  130. package/lib/state/design/template-design.facade.d.ts +26 -0
  131. package/lib/state/form/template-form.effects.d.ts +0 -6
  132. package/lib/utilities/enum-property-handlers-util.d.ts +4 -0
  133. package/lib/utilities/form-option-design-util.d.ts +2 -2
  134. package/lib/utilities/get-design-properties.util.d.ts +3 -0
  135. package/lib/utilities/index.d.ts +6 -0
  136. package/lib/utilities/is-template-util.d.ts +5 -0
  137. package/lib/utilities/item-to-design-base.util.d.ts +5 -0
  138. package/lib/utilities/model-map-util.d.ts +2 -0
  139. package/lib/utilities/template-design-core-util.d.ts +4 -4
  140. package/lib/utilities/template-design-util.d.ts +4 -7
  141. package/lib/utilities/to-design-util.d.ts +4 -0
  142. package/lib/utilities/validator-functions-util.d.ts +12 -0
  143. package/package.json +2 -2
  144. package/esm2015/lib/models/design/enumerations/date-enumeration.model.js +0 -33
  145. package/esm2015/lib/models/design/enumerations/index.js +0 -2
  146. package/esm2015/lib/models/design/template-design-constants.model.js +0 -48
  147. package/lib/models/design/enumerations/index.d.ts +0 -1
@@ -22,9 +22,17 @@ export declare const i18n_bulletedListItemInstructions: string;
22
22
  export declare const i18n_checkboxConfiguration: string;
23
23
  export declare const i18n_codeOption: string;
24
24
  export declare const i18n_codeOptionInstructions: string;
25
+ export declare const i18n_column: string;
26
+ export declare const i18n_conditions: string;
27
+ export declare const i18n_conditionAllRequired: string;
28
+ export declare const i18n_conditionAllRequiredInstructions: string;
29
+ export declare const i18n_conditionItemIds: string;
30
+ export declare const i18n_conditionItemIdsInstructions: string;
25
31
  export declare const i18n_core: string;
26
32
  export declare const i18n_childItems: string;
27
33
  export declare const i18n_dateConfiguration: string;
34
+ export declare const i18n_dateFormat: string;
35
+ export declare const i18n_dateFormatInstructions: string;
28
36
  export declare const i18n_description: string;
29
37
  export declare const i18n_descriptionInstructions: string;
30
38
  export declare const i18n_descriptive: string;
@@ -111,6 +119,7 @@ export declare const i18n_repeatableItemTemplateId: string;
111
119
  export declare const i18n_repeatableItemTemplateIdInstructions: string;
112
120
  export declare const i18n_required: string;
113
121
  export declare const i18n_requiredInstructions: string;
122
+ export declare const i18n_row: string;
114
123
  export declare const i18n_selectAReference: string;
115
124
  export declare const i18n_selectAReferenceDialogTitle: string;
116
125
  export declare const i18n_settings: string;
@@ -138,52 +147,89 @@ export declare const i18n_yearQuarterRangeConfiguration: string;
138
147
  export declare const i18n_listValue: string;
139
148
  export declare const i18n_newListValue: string;
140
149
  export declare const i18n_newItem: string;
141
- export declare const i18n_exampleText: string;
150
+ export declare const i18n_startYear: string;
151
+ export declare const i18n_startYearInstructions: string;
152
+ export declare const i18n_startQuarter: string;
153
+ export declare const i18n_startQuarterInstructions: string;
154
+ export declare const i18n_endYear: string;
155
+ export declare const i18n_endYearInstructions: string;
156
+ export declare const i18n_endQuarter: string;
157
+ export declare const i18n_endQuarterInstructions: string;
158
+ export declare const i18n_quarterOne: string;
159
+ export declare const i18n_quarterTwo: string;
160
+ export declare const i18n_quarterThree: string;
161
+ export declare const i18n_quarterFour: string;
142
162
  export declare const i18n_boolean: string;
143
163
  export declare const i18n_booleanItem: string;
164
+ export declare const i18n_booleanItemDescription: string;
144
165
  export declare const i18n_bulletedListItem: string;
166
+ export declare const i18n_bulletedListItemDescription: string;
145
167
  export declare const i18n_checkbox: string;
146
168
  export declare const i18n_checkboxItem: string;
147
- export declare const i18n_offsetDateRange: string;
148
- export declare const i18n_offsetDateRangeItem: string;
149
- export declare const i18n_yearQuarterRange: string;
150
- export declare const i18n_yearQuarterRangeItem: string;
169
+ export declare const i18n_checkboxItemDescription: string;
151
170
  export declare const i18n_date: string;
152
171
  export declare const i18n_dateItem: string;
172
+ export declare const i18n_dateItemDescription: string;
153
173
  export declare const i18n_decimalAnswer: string;
154
- export declare const i18n_decimalValue: string;
155
174
  export declare const i18n_decimalAnswerItem: string;
175
+ export declare const i18n_decimalAnswerItemDescription: string;
176
+ export declare const i18n_decimalValue: string;
156
177
  export declare const i18n_dropdown: string;
157
178
  export declare const i18n_dropdownItem: string;
179
+ export declare const i18n_dropdownItemDescription: string;
180
+ export declare const i18n_exampleText: string;
158
181
  export declare const i18n_fileUpload: string;
159
182
  export declare const i18n_fileUploadItem: string;
183
+ export declare const i18n_fileUploadItemDescription: string;
184
+ export declare const i18n_group: string;
185
+ export declare const i18n_groupItem: string;
186
+ export declare const i18n_groupItemDescription: string;
160
187
  export declare const i18n_internationalizedParagraphAnswer: string;
161
188
  export declare const i18n_internationalizedParagraphAnswerItem: string;
189
+ export declare const i18n_internationalizedParagraphAnswerItemDescription: string;
162
190
  export declare const i18n_internationalizedShortAnswer: string;
163
191
  export declare const i18n_internationalizedShortAnswerItem: string;
192
+ export declare const i18n_internationalizedShortAnswerItemDescription: string;
164
193
  export declare const i18n_multipleChoice: string;
165
194
  export declare const i18n_multipleChoiceItem: string;
195
+ export declare const i18n_multipleChoiceItemDescription: string;
196
+ export declare const i18n_newOptionDescription: string;
166
197
  export declare const i18n_numberedListItem: string;
198
+ export declare const i18n_numberedListItemDescription: string;
199
+ export declare const i18n_offsetDateRange: string;
200
+ export declare const i18n_offsetDateRangeItem: string;
201
+ export declare const i18n_offsetDateRangeItemDescription: string;
167
202
  export declare const i18n_orderedList: string;
168
203
  export declare const i18n_orderedListItem: string;
169
204
  export declare const i18n_paragraphAnswer: string;
170
205
  export declare const i18n_paragraphAnswerItem: string;
206
+ export declare const i18n_paragraphAnswerItemDescription: string;
171
207
  export declare const i18n_repeatable: string;
172
208
  export declare const i18n_repeatableItem: string;
173
- export declare const i18n_shortAnswer: string;
174
- export declare const i18n_shortAnswerItem: string;
175
- export declare const i18n_group: string;
176
- export declare const i18n_groupItem: string;
209
+ export declare const i18n_repeatableItemDescription: string;
177
210
  export declare const i18n_section: string;
211
+ export declare const i18n_sectionDescription: string;
178
212
  export declare const i18n_sectionItem: string;
213
+ export declare const i18n_sectionStepName: string;
214
+ export declare const i18n_sectionStepNameInstructions: string;
215
+ export declare const i18n_sectionTitleItem: string;
216
+ export declare const i18n_shortAnswer: string;
217
+ export declare const i18n_shortAnswerItem: string;
218
+ export declare const i18n_shortAnswerItemDescription: string;
179
219
  export declare const i18n_text: string;
180
220
  export declare const i18n_textItem: string;
221
+ export declare const i18n_textItemDescription: string;
181
222
  export declare const i18n_time: string;
182
223
  export declare const i18n_timeItem: string;
183
224
  export declare const i18n_title: string;
184
225
  export declare const i18n_titleItem: string;
226
+ export declare const i18n_titleItemDescription: string;
185
227
  export declare const i18n_unorderedList: string;
186
228
  export declare const i18n_unorderedListItem: string;
187
229
  export declare const i18n_wholeNumberAnswer: string;
188
230
  export declare const i18n_wholeNumberAnswerItem: string;
231
+ export declare const i18n_wholeNumberAnswerItemDescription: string;
189
232
  export declare const i18n_wholeNumberValue: string;
233
+ export declare const i18n_yearQuarterRange: string;
234
+ export declare const i18n_yearQuarterRangeItem: string;
235
+ export declare const i18n_yearQuarterRangeItemDescription: string;
@@ -1,5 +1,5 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import { FormItemImpl } from '@mtna/web-form-ts';
2
+ import { FormItemImpl, TemplateItemImpl } from '@mtna/web-form-ts';
3
3
  import { MtnaWfUIService } from '../services/ui.service';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class MtnaWfGetFormControlErrorPipe implements PipeTransform {
@@ -8,7 +8,7 @@ export declare class MtnaWfGetFormControlErrorPipe implements PipeTransform {
8
8
  transform(error: {
9
9
  key: string;
10
10
  value: unknown;
11
- }, item?: FormItemImpl<unknown>): unknown;
11
+ }, item?: FormItemImpl<unknown> | TemplateItemImpl): unknown;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfGetFormControlErrorPipe, never>;
13
13
  static ɵpipe: i0.ɵɵPipeDeclaration<MtnaWfGetFormControlErrorPipe, "mtnaWfGetControlError">;
14
14
  }
@@ -3,7 +3,7 @@ import { MtnaLocaleIds } from '@mtna/core-i18n-angular';
3
3
  import { InternationalizedString } from '@mtna/core-i18n-ts';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class GetI18nStringValueFromLocalePipe implements PipeTransform {
6
- transform(displayLocale: typeof MtnaLocaleIds.type | undefined, i18nStrings: InternationalizedString[]): string;
6
+ transform(displayLocale: typeof MtnaLocaleIds.type | undefined, i18nStrings: InternationalizedString[] | null | undefined): string;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<GetI18nStringValueFromLocalePipe, never>;
8
8
  static ɵpipe: i0.ɵɵPipeDeclaration<GetI18nStringValueFromLocalePipe, "getI18nStringValueFromLocale">;
9
9
  }
@@ -1,5 +1,5 @@
1
1
  import { HttpClient, HttpResponse } from '@angular/common/http';
2
- import { Form, Form as WebForm, FormItem, FormItemImpl, Template, TemplateItem, TemplateSectionImpl } from '@mtna/web-form-ts';
2
+ import { Form, FormItemImpl, Template } from '@mtna/web-form-ts';
3
3
  import { Observable } from 'rxjs';
4
4
  import { BaseUrlService, MtnaApiConfig, MtnaLogger } from '@mtna/core-angular';
5
5
  import * as i0 from "@angular/core";
@@ -10,35 +10,69 @@ export declare class MtnaWfApiService extends BaseUrlService {
10
10
  API_URL: string;
11
11
  FORM_URL: string;
12
12
  TEMPLATE_URL: string;
13
- NEW_TEMPLATE_URL: string;
14
- NEW_SECTION_URL: string;
15
- ITEMS_URL: string;
16
- ITEM_INSTANCE_URL: string;
17
- TEMPLATE_SAVE_URL: string;
18
- TEMPLATE_DELETE_URL: string;
19
- ALL_TEMPLATES_URL: string;
20
13
  constructor(apiConfig: MtnaApiConfig, http: HttpClient, logger: MtnaLogger);
21
14
  /**
22
15
  * Download a web form
23
16
  * @param form the web form pojo to download
24
17
  * @returns Full HttlReponse with the Blob as the body
25
18
  */
26
- downloadForm(form: WebForm): Observable<HttpResponse<Blob>>;
19
+ downloadForm(form: Form): Observable<HttpResponse<Blob>>;
27
20
  /**
28
21
  * Returns a new repeatable FormItem
29
22
  * @param formInstanceId template ID of the mtna form
30
23
  * @param itemId repeatableTemplateId of the requesting RepeatableItem
31
24
  */
32
25
  getRepeatableItem(templateId: string, itemTemplateId: string): Observable<FormItemImpl<unknown>>;
33
- getNewTemplate(): Observable<Template>;
34
- getAllTemplates(): Observable<Template>;
35
- getNewSection(): Observable<TemplateSectionImpl>;
36
- getItems(): Observable<TemplateItem[]>;
37
- getTemplateItem(id: string): Observable<TemplateItem>;
38
- saveTemplate(): Observable<Template>;
39
- getDeleteTemplate(): Observable<Template>;
40
- getTemplateInstance(template: Template): Observable<Form>;
41
- getTemplateItemInstance(templateItem: TemplateItem): Observable<FormItem>;
26
+ /**
27
+ * Get all of the user's currently defined {@link Template}s.
28
+ *
29
+ * @return the {@link Template}s that the user has access to.
30
+ */
31
+ getTemplates(): Observable<Template[]>;
32
+ /**
33
+ * Creates a new Template
34
+ *
35
+ * @return the newly created template
36
+ */
37
+ createTemplate(): Observable<Template>;
38
+ /**
39
+ * Get the specified {@link Template}.
40
+ *
41
+ * @param id the ID of the {@link Template} to retrieve
42
+ * @return the specified template.
43
+ */
44
+ getTemplate(id: string): Observable<Template>;
45
+ /**
46
+ * Updates the specified {@link Template} with the values provided in the
47
+ * {@link Template} POJO. This will not update child items, only the properties
48
+ * at the template level.
49
+ *
50
+ * @param id the ID of the {@link Template} to update
51
+ * @param template the {@link Template} POJO to use to update the persisted
52
+ * resource
53
+ * @return the updated {@link Template}
54
+ */
55
+ updateTemplate(id: string, template: Template): Observable<Template>;
56
+ /**
57
+ * Deletes the specified {@link Template}
58
+ *
59
+ * @param id the ID of the {@link Template} to delete
60
+ */
61
+ deleteTemplate(id: string): Observable<void>;
62
+ /**
63
+ * Creates a new {@link Template} by copying an existing {@link Template}.
64
+ *
65
+ * @param id the ID of the {@link Template} to clone
66
+ * @return the newly cloned {@link Template}
67
+ */
68
+ copyTemplate(id: string): Observable<Template>;
69
+ /**
70
+ * Gets a {@link Form} instance of the specified {@link Template}.
71
+ *
72
+ * @param id the ID of the {@link Template} to preview
73
+ * @return a form created from the template
74
+ */
75
+ previewTemplate(id: string): Observable<Form>;
42
76
  static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfApiService, never>;
43
77
  static ɵprov: i0.ɵɵInjectableDeclaration<MtnaWfApiService>;
44
78
  }
@@ -2,7 +2,7 @@ import { InjectionToken } from '@angular/core';
2
2
  import { ValidationErrors } from '@angular/forms';
3
3
  import { MatDialog } from '@angular/material/dialog';
4
4
  import { AnnotatableNumberMap } from '@mtna/pojo-social-angular';
5
- import { FormItemImpl } from '@mtna/web-form-ts';
5
+ import { FormItemImpl, TemplateItemImpl } from '@mtna/web-form-ts';
6
6
  import { MtnaWfFormItemComponent } from '../components/form-item/form-item.component';
7
7
  import * as i0 from "@angular/core";
8
8
  /** Registry of custom error messages for a specific form item. A custom error can also
@@ -42,7 +42,7 @@ export declare class MtnaWfUIService {
42
42
  * @param item FormItem to pass to ValidationErrors that are functions. For instance,
43
43
  * this is useful for 'min' & 'max' value limits to display more helpful messages
44
44
  */
45
- getError(errorId: string, item?: FormItemImpl<unknown>): string;
45
+ getError(errorId: string, item?: FormItemImpl<unknown> | TemplateItemImpl): string;
46
46
  /**
47
47
  * Get a registered component by intance id.
48
48
  * @param id the instanceId
@@ -13,7 +13,31 @@ export declare class TemplateDesignFacade extends DesignFacade<Template | Templa
13
13
  modifiedModelSubscription: Subscription;
14
14
  systemLocalesSubscription: Subscription;
15
15
  languageIds$: BehaviorSubject<string[]>;
16
+ /**
17
+ * The property names in the design updates that should trigger a design update on transition to ensure that the references and design
18
+ * are updated to reflect any changes to these properties.
19
+ */
20
+ transitionUpdatePropNames: string[];
21
+ /**
22
+ * The section names in the design updates that should trigger a design update on transition to ensure that the references and design
23
+ * are updated to reflect any changes to properties.
24
+ */
25
+ transitionUpdateSectionNames: string[];
26
+ /**
27
+ * Need to remove the following modelDesignProperties from the designMap when indexing the designs for the references
28
+ * because they are used for the display and description of the template and template items, so they should not be
29
+ * included as potential reference designs for the conditionals section or the option item sections.
30
+ */
31
+ referencePropertyNameExclusions: string[];
32
+ /**
33
+ * Need to remove the following itemIds from the modelMap when indexing the models for the references because they are used
34
+ * for the title and should not be included as potential reference designs for the conditionals section. We don't need to include
35
+ * the acknowledgement template here because the getModelMap function does not index the TemplateSection attached to the
36
+ * acknowledgementTemplate property.
37
+ */
38
+ itemIdExclusionsForReferences: never[];
16
39
  constructor(localeId: string, templateFormFacade: TemplateFormFacade, i18nFacade: MtnaI18nFacade);
40
+ initialize(model: Template | TemplateItem | FormOptionSelector<Option<unknown>>): void;
17
41
  close(): void;
18
42
  canDesign(something: unknown): something is Template | TemplateItem | FormOptionSelector<Option<unknown>>;
19
43
  fromDesign(design: Design): Template | TemplateItem | FormOptionSelector<Option<unknown>>;
@@ -23,9 +47,11 @@ export declare class TemplateDesignFacade extends DesignFacade<Template | Templa
23
47
  setModifiedModel(designUpdate: DesignUpdate | undefined): void;
24
48
  getDesignDisplay(design: Design): string;
25
49
  indexModelDesignProperties(design: Design): void;
50
+ updateModelReferences(model: Template | TemplateItem | FormOptionSelector<Option<unknown>>): void;
26
51
  setDesignDisabled(disabled: boolean): void;
27
52
  setContextSelected(context: Context | undefined): void;
28
53
  setFocusedDesignId(focusedDesignId: string | undefined, focusType: 'SET_FOCUS' | 'CLEAR_FOCUS' | 'MAINTAIN_FOCUS'): void;
54
+ transitionDesign(): void;
29
55
  static ɵfac: i0.ɵɵFactoryDeclaration<TemplateDesignFacade, never>;
30
56
  static ɵprov: i0.ɵɵInjectableDeclaration<TemplateDesignFacade>;
31
57
  }
@@ -11,12 +11,6 @@ export declare class TemplateFormEffects {
11
11
  private errorService;
12
12
  private store;
13
13
  private router;
14
- getTemplateInstance$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Template Form / API] Get Template Instance Failure"> | ({
15
- form: import("@mtna/web-form-ts").Form;
16
- } & import("@ngrx/store/src/models").TypedAction<"[Template Form / API] Get Template Instance Success">)> & import("@ngrx/effects").CreateEffectMetadata;
17
- getTemplateItemInstance$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Template Form / API] Get Template Item Instance Failure"> | ({
18
- formItem: import("@mtna/web-form-ts").FormItem;
19
- } & import("@ngrx/store/src/models").TypedAction<"[Template Form / API] Get Template Item Instance Success">)> & import("@ngrx/effects").CreateEffectMetadata;
20
14
  constructor(actions$: Actions, mtnaWfApiService: MtnaWfApiService, errorService: MtnaErrorService, store: Store<TemplateFormState>, router: Router);
21
15
  static ɵfac: i0.ɵɵFactoryDeclaration<TemplateFormEffects, never>;
22
16
  static ɵprov: i0.ɵɵInjectableDeclaration<TemplateFormEffects>;
@@ -0,0 +1,4 @@
1
+ import { Design } from '@mtna/designer-ts';
2
+ export declare function setEnumValue(design: Design, sectionId: string, enumPropertyId: string): {
3
+ [x: string]: any;
4
+ };
@@ -1,12 +1,12 @@
1
1
  import { FormOptionSelector, Option, TemplateItem } from '@mtna/web-form-ts';
2
2
  import { MtnaLanguageId } from '@mtna/core-i18n-angular';
3
- import { Context, Design, DesignBase, DesignProperty, ReferenceDesignValue } from '@mtna/designer-ts';
3
+ import { Context, Design, DesignBase, DesignProperty, ReferenceDesignParams, ReferenceDesignValue } from '@mtna/designer-ts';
4
4
  export declare function getNewFormOptionSelector(designBase: DesignBase): FormOptionSelector<Option<unknown>>;
5
5
  export declare function optionSelectorToDesign<O extends Option<unknown>>(formOptionSelector: FormOptionSelector<O>, languageId: MtnaLanguageId, optionTemplateMap: Record<string, TemplateItem>, references: Record<string, ReferenceDesignValue>, parent?: DesignBase, context?: Context): Design;
6
6
  export declare function designToOptionSelector<O extends Option<unknown>>(design: Design, context?: Context): FormOptionSelector<O>;
7
7
  export declare function getOptionSelectorPotentialDesigns(design: Design, property: DesignProperty): DesignBase[];
8
8
  export declare function instanceOfFormOptionSelector(something: unknown): something is FormOptionSelector<Option<unknown>>;
9
- export declare function getOptionsAndTemplateMap<O extends Option<unknown>>(design: Design, mapperType: 'optionGroupItem' | 'optionItem', toTemplateItemFn: (design: Design, context?: Context) => TemplateItem, context?: Context): {
9
+ export declare function getOptionsAndTemplateMap<O extends Option<unknown>>(design: Design, mapperType: 'optionGroupItem' | 'optionItem', toTemplateItemFn: (design: Design, context?: Context, customParams?: ReferenceDesignParams) => TemplateItem, context?: Context, customParams?: ReferenceDesignParams): {
10
10
  options: FormOptionSelector<O>[];
11
11
  optionTemplateMap: Record<string, TemplateItem>;
12
12
  };
@@ -0,0 +1,3 @@
1
+ import { DesignProperty } from '@mtna/designer-ts';
2
+ import { EnumEngagementPropertyType } from '../models/design/design-properties/engagement-property-type.model';
3
+ export declare function getEnumDesignProperty<T extends any>(propertyType: EnumEngagementPropertyType, model: T | undefined): DesignProperty;
@@ -9,8 +9,14 @@ export * from './find-form-item';
9
9
  export * from './flatten-steps';
10
10
  export * from './form-step.util';
11
11
  export * from './generate-form-steps';
12
+ export * from './get-design-properties.util';
12
13
  export * from './get-item-class-suffix';
13
14
  export * from './is-form-control';
14
15
  export * from './is-form-group';
16
+ export * from './is-template-util';
17
+ export * from './item-to-design-base.util';
15
18
  export * from './merge-template-util';
19
+ export * from './model-map-util';
20
+ export * from './to-design-util';
16
21
  export * from './update-step-status';
22
+ export * from './validator-functions-util';
@@ -0,0 +1,5 @@
1
+ import { DesignBase } from '@mtna/designer-ts';
2
+ import { TemplateItem } from '@mtna/web-form-ts';
3
+ export declare function isTemplateDesign(design: DesignBase): boolean;
4
+ export declare function isTemplateItemDesign(design: DesignBase): boolean;
5
+ export declare function isTemplateItem(something: unknown): something is TemplateItem;
@@ -0,0 +1,5 @@
1
+ import { TemplateItem } from '@mtna/web-form-ts';
2
+ import { MtnaLanguageId } from '@mtna/core-i18n-angular';
3
+ import { DesignBase } from '@mtna/designer-ts';
4
+ export declare function getTypeDisplay(itemId: string): string;
5
+ export declare function itemToDesignBase(model: TemplateItem, languageId: MtnaLanguageId): DesignBase;
@@ -0,0 +1,2 @@
1
+ import { TemplateItem } from '@mtna/web-form-ts';
2
+ export declare function getModelMap(items: TemplateItem[], itemIdExclusions?: string[]): Map<string, TemplateItem>;
@@ -1,10 +1,10 @@
1
- import { Context, Design, DesignBase, DesignProperty } from '@mtna/designer-ts';
1
+ import { Context, Design, DesignBase, DesignProperty, ReferenceDesignParams } from '@mtna/designer-ts';
2
2
  import { TemplateItem } from '@mtna/web-form-ts';
3
3
  import { MtnaLanguageId } from '@mtna/core-i18n-angular';
4
4
  export declare function getNewTemplateItem(designBase: DesignBase, languageId: MtnaLanguageId, languageIds: string[]): TemplateItem;
5
- export declare function toTemplateItem(design: Design, context?: Context): TemplateItem;
5
+ export declare function toTemplateItem(design: Design, context?: Context, customParams?: ReferenceDesignParams): TemplateItem;
6
6
  export declare function getTemplateItemPotentialDesigns(design: Design, property: DesignProperty): DesignBase[];
7
- export declare function itemToDesign(item: TemplateItem, languageId: MtnaLanguageId, parent?: DesignBase, context?: Context): Design;
8
- export declare function getTemplateItems(design: Design, sectionId: string, propertyIds: string[], context?: Context): {
7
+ export declare function itemToDesign(item: TemplateItem, languageId: MtnaLanguageId, parent?: DesignBase, context?: Context, customParams?: ReferenceDesignParams): Design;
8
+ export declare function getTemplateItems(design: Design, sectionId: string, propertyIds: string[], context?: Context, customParams?: ReferenceDesignParams): {
9
9
  [key: string]: TemplateItem[];
10
10
  };
@@ -1,14 +1,11 @@
1
- import { Template, TemplateItem } from '@mtna/web-form-ts';
2
- import { Context, Design, DesignBase, DesignProperty } from '@mtna/designer-ts';
1
+ import { Template } from '@mtna/web-form-ts';
2
+ import { Context, Design, DesignBase, DesignProperty, ReferenceDesignParams } from '@mtna/designer-ts';
3
3
  import { MtnaLanguageId } from '@mtna/core-i18n-angular';
4
4
  export declare function getNewTemplate(designBase: DesignBase): Template;
5
5
  export declare function initializeDesign(designBase: DesignBase): Design;
6
- export declare function isTemplateDesign(design: DesignBase): boolean;
7
- export declare function isTemplateItemDesign(design: DesignBase): boolean;
8
- export declare function isTemplateItem(something: unknown): something is TemplateItem;
9
6
  export declare function getTemplatePotentialDesigns(design: Design, property: DesignProperty): DesignBase[];
10
- export declare function templateToDesign(template: Template, languageId: MtnaLanguageId, context?: Context): Design;
11
- export declare function toTemplate(design: Design, context?: Context): Template;
7
+ export declare function templateToDesign(template: Template, languageId: MtnaLanguageId, context?: Context, customParams?: ReferenceDesignParams): Design;
8
+ export declare function toTemplate(design: Design, context?: Context, customParams?: ReferenceDesignParams): Template;
12
9
  export declare function getText(properties: {
13
10
  [p: string]: any;
14
11
  }, key: string, i18n: boolean, languageId: MtnaLanguageId, fallback?: string): string;
@@ -0,0 +1,4 @@
1
+ import { FormOptionSelector, Option, Template, TemplateItem } from '@mtna/web-form-ts';
2
+ import { Context, Design, ReferenceDesignValue } from '@mtna/designer-ts';
3
+ import { MtnaLanguageId } from '@mtna/core-i18n-angular';
4
+ export declare function getModelToDesign(model: Template | TemplateItem | FormOptionSelector<Option<unknown>>, languageId: MtnaLanguageId, contextSelected: Context | undefined, references: Record<string, ReferenceDesignValue>): Design;
@@ -0,0 +1,12 @@
1
+ import { ValidatorFn } from '@angular/forms';
2
+ export declare function wholeNumberPattern(): ValidatorFn;
3
+ export declare function numericalValueCheck(): ValidatorFn;
4
+ export declare function positiveNumberPattern(): ValidatorFn;
5
+ /**
6
+ * This works as a combination of the angular 'min'/'max' Validators. Using the built-in validators
7
+ * appears to take precedence over custom validators, regardless of order in the array. Using this function
8
+ * ensures validators set before this one maintain priority. For instance, the input value failing numerical validation
9
+ * is more important than the value being within min-max range.
10
+ */
11
+ export declare function numValueLimit(type: 'min' | 'max', limit: number): ValidatorFn;
12
+ export declare function isEmptyString(value: unknown): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtna/web-form-angular",
3
- "version": "1.0.6-SNAPSHOT.22",
3
+ "version": "1.0.6-SNAPSHOT.24",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://bitbucket.org/mtnaus/web-form-angular"
@@ -27,7 +27,7 @@
27
27
  "@mtna/pojo-social-angular": "^1.0.0",
28
28
  "@mtna/pojo-social-ts": "^1.0.0",
29
29
  "@mtna/search-manager-angular": "^1.0.0",
30
- "@mtna/web-form-ts": "1.0.4-SNAPSHOT.13",
30
+ "@mtna/web-form-ts": "1.0.4-SNAPSHOT.17",
31
31
  "@ngrx/effects": "~12.5.0",
32
32
  "@ngrx/store": "~12.5.0",
33
33
  "moment": "^2.29.3",
@@ -1,33 +0,0 @@
1
- export const SLASHED_DATE_DISPLAY_VALUE = {
2
- value: 'MM/DD/YYYY',
3
- display: 'MM/DD/YYYY',
4
- };
5
- export const DASHED_DATE_DISPLAY_VALUE = {
6
- value: 'MM-DD-YYYY',
7
- display: 'MM-DD-YYYY',
8
- };
9
- export const LONG_DATE_DISPLAY_VALUE = {
10
- value: 'MMMM D, YYYY',
11
- display: 'MMMM D, YYYY',
12
- };
13
- export const EURO_LONG_DATE_DISPLAY_VALUE = {
14
- value: 'D MMMM YYYY',
15
- display: 'D MMMM YYYY',
16
- };
17
- export const DOTTED_DATE_DISPLAY_VALUE = {
18
- value: 'DD.MM.YYYY',
19
- display: 'DD.MM.YYYY',
20
- };
21
- export const ISO_8601_DATE_DISPLAY_VALUE = {
22
- value: 'YYYY-MM-DD',
23
- display: 'YYYY-MM-DD',
24
- };
25
- export const DATE_ENUM_VALUES = [
26
- ISO_8601_DATE_DISPLAY_VALUE,
27
- LONG_DATE_DISPLAY_VALUE,
28
- EURO_LONG_DATE_DISPLAY_VALUE,
29
- SLASHED_DATE_DISPLAY_VALUE,
30
- DASHED_DATE_DISPLAY_VALUE,
31
- DOTTED_DATE_DISPLAY_VALUE,
32
- ];
33
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1lbnVtZXJhdGlvbi5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dlYi1mb3JtLWFuZ3VsYXIvc3JjL2xpYi9tb2RlbHMvZGVzaWduL2VudW1lcmF0aW9ucy9kYXRlLWVudW1lcmF0aW9uLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sQ0FBQyxNQUFNLDBCQUEwQixHQUFrQjtJQUN2RCxLQUFLLEVBQUUsWUFBWTtJQUNuQixPQUFPLEVBQUUsWUFBWTtDQUN0QixDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0seUJBQXlCLEdBQWtCO0lBQ3RELEtBQUssRUFBRSxZQUFZO0lBQ25CLE9BQU8sRUFBRSxZQUFZO0NBQ3RCLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSx1QkFBdUIsR0FBa0I7SUFDcEQsS0FBSyxFQUFFLGNBQWM7SUFDckIsT0FBTyxFQUFFLGNBQWM7Q0FDeEIsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLDRCQUE0QixHQUFrQjtJQUN6RCxLQUFLLEVBQUUsYUFBYTtJQUNwQixPQUFPLEVBQUUsYUFBYTtDQUN2QixDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0seUJBQXlCLEdBQWtCO0lBQ3RELEtBQUssRUFBRSxZQUFZO0lBQ25CLE9BQU8sRUFBRSxZQUFZO0NBQ3RCLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSwyQkFBMkIsR0FBa0I7SUFDeEQsS0FBSyxFQUFFLFlBQVk7SUFDbkIsT0FBTyxFQUFFLFlBQVk7Q0FDdEIsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFvQjtJQUMvQywyQkFBMkI7SUFDM0IsdUJBQXVCO0lBQ3ZCLDRCQUE0QjtJQUM1QiwwQkFBMEI7SUFDMUIseUJBQXlCO0lBQ3pCLHlCQUF5QjtDQUMxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTXRuYUVudW1WYWx1ZSB9IGZyb20gJ0BtdG5hL2NvcmUtdHMnO1xuXG5leHBvcnQgY29uc3QgU0xBU0hFRF9EQVRFX0RJU1BMQVlfVkFMVUU6IE10bmFFbnVtVmFsdWUgPSB7XG4gIHZhbHVlOiAnTU0vREQvWVlZWScsXG4gIGRpc3BsYXk6ICdNTS9ERC9ZWVlZJyxcbn07XG5cbmV4cG9ydCBjb25zdCBEQVNIRURfREFURV9ESVNQTEFZX1ZBTFVFOiBNdG5hRW51bVZhbHVlID0ge1xuICB2YWx1ZTogJ01NLURELVlZWVknLFxuICBkaXNwbGF5OiAnTU0tREQtWVlZWScsXG59O1xuXG5leHBvcnQgY29uc3QgTE9OR19EQVRFX0RJU1BMQVlfVkFMVUU6IE10bmFFbnVtVmFsdWUgPSB7XG4gIHZhbHVlOiAnTU1NTSBELCBZWVlZJyxcbiAgZGlzcGxheTogJ01NTU0gRCwgWVlZWScsXG59O1xuXG5leHBvcnQgY29uc3QgRVVST19MT05HX0RBVEVfRElTUExBWV9WQUxVRTogTXRuYUVudW1WYWx1ZSA9IHtcbiAgdmFsdWU6ICdEIE1NTU0gWVlZWScsXG4gIGRpc3BsYXk6ICdEIE1NTU0gWVlZWScsXG59O1xuXG5leHBvcnQgY29uc3QgRE9UVEVEX0RBVEVfRElTUExBWV9WQUxVRTogTXRuYUVudW1WYWx1ZSA9IHtcbiAgdmFsdWU6ICdERC5NTS5ZWVlZJyxcbiAgZGlzcGxheTogJ0RELk1NLllZWVknLFxufTtcblxuZXhwb3J0IGNvbnN0IElTT184NjAxX0RBVEVfRElTUExBWV9WQUxVRTogTXRuYUVudW1WYWx1ZSA9IHtcbiAgdmFsdWU6ICdZWVlZLU1NLUREJyxcbiAgZGlzcGxheTogJ1lZWVktTU0tREQnLFxufTtcblxuZXhwb3J0IGNvbnN0IERBVEVfRU5VTV9WQUxVRVM6IE10bmFFbnVtVmFsdWVbXSA9IFtcbiAgSVNPXzg2MDFfREFURV9ESVNQTEFZX1ZBTFVFLFxuICBMT05HX0RBVEVfRElTUExBWV9WQUxVRSxcbiAgRVVST19MT05HX0RBVEVfRElTUExBWV9WQUxVRSxcbiAgU0xBU0hFRF9EQVRFX0RJU1BMQVlfVkFMVUUsXG4gIERBU0hFRF9EQVRFX0RJU1BMQVlfVkFMVUUsXG4gIERPVFRFRF9EQVRFX0RJU1BMQVlfVkFMVUUsXG5dO1xuIl19
@@ -1,2 +0,0 @@
1
- export * from './date-enumeration.model';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93ZWItZm9ybS1hbmd1bGFyL3NyYy9saWIvbW9kZWxzL2Rlc2lnbi9lbnVtZXJhdGlvbnMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZGF0ZS1lbnVtZXJhdGlvbi5tb2RlbCc7XG4iXX0=
@@ -1,48 +0,0 @@
1
- export const prop_option_enabled_items = 'enabledItems';
2
- export const prop_option_disabled_items = 'disabledItems';
3
- export const prop_option_template = 'optionTemplate';
4
- export const prop_item_acknowledgement = 'acknowledgement'; // maps to FormOptionSelector.acknowledgement property
5
- export const prop_item_additional_text = 'additionalText'; // maps to RepeatableItemTemplate.additionalText property
6
- export const prop_item_annotation_enabled = 'annotationEnabled';
7
- export const prop_item_code_option = 'codeOption'; // maps to TemplateOptionItem.codeOption property
8
- export const prop_item_description = 'description';
9
- export const prop_item_descriptive_text = 'descriptiveText'; // maps to templateItem.descriptiveText property
10
- export const prop_item_download_allowed = 'downloadAllowed'; // maps to FileUploadItemTemplate.downloadAllowed property
11
- export const prop_item_exclude_print = 'excludePrint'; // maps to templateItem.excludeFromPrint
12
- export const prop_item_file_type_id = 'fileTypeId'; // maps to FileUploadItemTemplate.fileTypeId property
13
- export const prop_item_format = 'format'; // maps to DateItemTemplate.format property
14
- export const prop_item_format_time = 'format'; // maps to TimeItemTemplate.format property
15
- export const prop_item_full_width = 'fullWidth'; // maps to RepeatableItemTemplate.fullWidth
16
- export const prop_item_help = 'help';
17
- export const prop_item_item = 'item'; // maps to RepeatableItemTemplate.item
18
- export const prop_item_items = 'items'; // maps to templateItemGroup.items
19
- export const prop_item_layout = 'layout'; // maps to templateItemGroup.layout
20
- export const prop_item_min_occurrences = 'minOccurences'; // maps to RepeatableItemTemplate.minOccurances
21
- export const prop_item_max_occurrences = 'maxOccurences'; // maps to RepeatableItemTemplate.maxOccurances
22
- export const prop_item_label = 'label'; // maps to templateItem.label on a number of items
23
- export const prop_item_min_char = 'minChar'; // maps to short/paragraph AnswerItem.minCharCount
24
- export const prop_item_max_char = 'maxChar'; // maps to short/paragraph AnswerItem.maxCharCount
25
- export const prop_item_min_value = 'minValue'; // maps to wholeNumber/decimal AnswerItem.minValue
26
- export const prop_item_max_value = 'maxValue'; // maps to wholeNumber/decimal AnswerItem.maxValue
27
- export const prop_item_min_selections = 'minSelections'; // maps to CheckboxItemTemplate.minSelections
28
- export const prop_item_max_selections = 'maxSelections'; // maps to CheckboxItemTemplate.maxSelections
29
- export const prop_item_name = 'name'; // maps to templateItem.name
30
- export const prop_item_option = 'option'; // maps to TemplateOptionItem.option
31
- export const prop_item_options = 'options';
32
- export const prop_item_option_subsets = 'optionSubsets'; // maps to CheckboxItemTemplate.optionSubsets
33
- export const prop_item_option_template_map = 'optionTemplateMap'; // maps to CheckboxItemTemplate.optionTemplateMap
34
- export const prop_item_preset_value = 'presetValue'; // maps to DateItemTemplate.presetValue
35
- export const prop_item_positive_only = 'positiveOnly'; // maps to wholeNumber/decimal AnswerItem.positiveOnly
36
- export const prop_item_question_text = 'questionText'; // maps to templateItem.questionText
37
- export const prop_item_range_limits = 'rangeLimits'; // maps to OffsetDateRangeTemplate.rangeLimits
38
- export const prop_item_repeatable_item_template_id = 'repeatableItemTemplateId'; // maps to RepeatableItemTemplate.repeatableItemTemplateId
39
- export const prop_item_required = 'required'; // maps to templateItem.required
40
- export const prop_item_starting_instances = 'startingInstances'; // maps to RepeatableItemTemplate.startingInstances
41
- export const prop_item_text = 'text'; // maps to TextItemTemplate.value
42
- export const prop_item_title = 'title'; // maps to templateSection.title
43
- export const prop_item_value = 'value'; // maps to TitleItem.value
44
- export const prop_item_values = 'values'; // maps to BulletedListItemTemplate.values
45
- export const prop_template_descriptive_text = 'template-descriptive-text'; // maps to template.descriptiveText property
46
- export const prop_template_items = 'items'; // maps to template.items property
47
- export const prop_template_title = 'title'; // maps to template.title property
48
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcGxhdGUtZGVzaWduLWNvbnN0YW50cy5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dlYi1mb3JtLWFuZ3VsYXIvc3JjL2xpYi9tb2RlbHMvZGVzaWduL3RlbXBsYXRlLWRlc2lnbi1jb25zdGFudHMubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFDLE1BQU0seUJBQXlCLEdBQUcsY0FBYyxDQUFDO0FBQ3hELE1BQU0sQ0FBQyxNQUFNLDBCQUEwQixHQUFHLGVBQWUsQ0FBQztBQUUxRCxNQUFNLENBQUMsTUFBTSxvQkFBb0IsR0FBRyxnQkFBZ0IsQ0FBQztBQUVyRCxNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxpQkFBaUIsQ0FBQyxDQUFDLHNEQUFzRDtBQUNsSCxNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBRyxnQkFBZ0IsQ0FBQyxDQUFDLHlEQUF5RDtBQUNwSCxNQUFNLENBQUMsTUFBTSw0QkFBNEIsR0FBRyxtQkFBbUIsQ0FBQztBQUNoRSxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyxZQUFZLENBQUMsQ0FBQyxpREFBaUQ7QUFDcEcsTUFBTSxDQUFDLE1BQU0scUJBQXFCLEdBQUcsYUFBYSxDQUFDO0FBQ25ELE1BQU0sQ0FBQyxNQUFNLDBCQUEwQixHQUFHLGlCQUFpQixDQUFDLENBQUMsZ0RBQWdEO0FBQzdHLE1BQU0sQ0FBQyxNQUFNLDBCQUEwQixHQUFHLGlCQUFpQixDQUFDLENBQUMsMERBQTBEO0FBQ3ZILE1BQU0sQ0FBQyxNQUFNLHVCQUF1QixHQUFHLGNBQWMsQ0FBQyxDQUFDLHdDQUF3QztBQUMvRixNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBRyxZQUFZLENBQUMsQ0FBQyxxREFBcUQ7QUFDekcsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQUcsUUFBUSxDQUFDLENBQUMsMkNBQTJDO0FBQ3JGLE1BQU0sQ0FBQyxNQUFN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LENBQUMsQ0FBQyxrQ0FBa0MiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgcHJvcF9vcHRpb25fZW5hYmxlZF9pdGVtcyA9ICdlbmFibGVkSXRlbXMnO1xuZXhwb3J0IGNvbnN0IHByb3Bfb3B0aW9uX2Rpc2FibGVkX2l0ZW1zID0gJ2Rpc2FibGVkSXRlbXMnO1xuXG5leHBvcnQgY29uc3QgcHJvcF9vcHRpb25fdGVtcGxhdGUgPSAnb3B0aW9uVGVtcGxhdGUnO1xuXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2Fja25vd2xlZGdlbWVudCA9ICdhY2tub3dsZWRnZW1lbnQnOyAvLyBtYXBzIHRvIEZvcm1PcHRpb25TZWxlY3Rvci5hY2tub3dsZWRnZW1lbnQgcHJvcGVydHlcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fYWRkaXRpb25hbF90ZXh0ID0gJ2FkZGl0aW9uYWxUZXh0JzsgLy8gbWFwcyB0byBSZXBlYXRhYmxlSXRlbVRlbXBsYXRlLmFkZGl0aW9uYWxUZXh0IHByb3BlcnR5XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2Fubm90YXRpb25fZW5hYmxlZCA9ICdhbm5vdGF0aW9uRW5hYmxlZCc7XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2NvZGVfb3B0aW9uID0gJ2NvZGVPcHRpb24nOyAvLyBtYXBzIHRvIFRlbXBsYXRlT3B0aW9uSXRlbS5jb2RlT3B0aW9uIHByb3BlcnR5XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2Rlc2NyaXB0aW9uID0gJ2Rlc2NyaXB0aW9uJztcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fZGVzY3JpcHRpdmVfdGV4dCA9ICdkZXNjcmlwdGl2ZVRleHQnOyAvLyBtYXBzIHRvIHRlbXBsYXRlSXRlbS5kZXNjcmlwdGl2ZVRleHQgcHJvcGVydHlcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fZG93bmxvYWRfYWxsb3dlZCA9ICdkb3dubG9hZEFsbG93ZWQnOyAvLyBtYXBzIHRvIEZpbGVVcGxvYWRJdGVtVGVtcGxhdGUuZG93bmxvYWRBbGxvd2VkIHByb3BlcnR5XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2V4Y2x1ZGVfcHJpbnQgPSAnZXhjbHVkZVByaW50JzsgLy8gbWFwcyB0byB0ZW1wbGF0ZUl0ZW0uZXhjbHVkZUZyb21QcmludFxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9maWxlX3R5cGVfaWQgPSAnZmlsZVR5cGVJZCc7IC8vIG1hcHMgdG8gRmlsZVVwbG9hZEl0ZW1UZW1wbGF0ZS5maWxlVHlwZUlkIHByb3BlcnR5XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2Zvcm1hdCA9ICdmb3JtYXQnOyAvLyBtYXBzIHRvIERhdGVJdGVtVGVtcGxhdGUuZm9ybWF0IHByb3BlcnR5XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2Zvcm1hdF90aW1lID0gJ2Zvcm1hdCc7IC8vIG1hcHMgdG8gVGltZUl0ZW1UZW1wbGF0ZS5mb3JtYXQgcHJvcGVydHlcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fZnVsbF93aWR0aCA9ICdmdWxsV2lkdGgnOyAvLyBtYXBzIHRvIFJlcGVhdGFibGVJdGVtVGVtcGxhdGUuZnVsbFdpZHRoXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2hlbHAgPSAnaGVscCc7XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2l0ZW0gPSAnaXRlbSc7IC8vIG1hcHMgdG8gUmVwZWF0YWJsZUl0ZW1UZW1wbGF0ZS5pdGVtXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2l0ZW1zID0gJ2l0ZW1zJzsgLy8gbWFwcyB0byB0ZW1wbGF0ZUl0ZW1Hcm91cC5pdGVtc1xuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9sYXlvdXQgPSAnbGF5b3V0JzsgLy8gbWFwcyB0byB0ZW1wbGF0ZUl0ZW1Hcm91cC5sYXlvdXRcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fbWluX29jY3VycmVuY2VzID0gJ21pbk9jY3VyZW5jZXMnOyAvLyBtYXBzIHRvIFJlcGVhdGFibGVJdGVtVGVtcGxhdGUubWluT2NjdXJhbmNlc1xuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9tYXhfb2NjdXJyZW5jZXMgPSAnbWF4T2NjdXJlbmNlcyc7IC8vIG1hcHMgdG8gUmVwZWF0YWJsZUl0ZW1UZW1wbGF0ZS5tYXhPY2N1cmFuY2VzXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX2xhYmVsID0gJ2xhYmVsJzsgLy8gbWFwcyB0byB0ZW1wbGF0ZUl0ZW0ubGFiZWwgb24gYSBudW1iZXIgb2YgaXRlbXNcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fbWluX2NoYXIgPSAnbWluQ2hhcic7IC8vIG1hcHMgdG8gc2hvcnQvcGFyYWdyYXBoIEFuc3dlckl0ZW0ubWluQ2hhckNvdW50XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX21heF9jaGFyID0gJ21heENoYXInOyAvLyBtYXBzIHRvIHNob3J0L3BhcmFncmFwaCBBbnN3ZXJJdGVtLm1heENoYXJDb3VudFxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9taW5fdmFsdWUgPSAnbWluVmFsdWUnOyAvLyBtYXBzIHRvIHdob2xlTnVtYmVyL2RlY2ltYWwgQW5zd2VySXRlbS5taW5WYWx1ZVxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9tYXhfdmFsdWUgPSAnbWF4VmFsdWUnOyAvLyBtYXBzIHRvIHdob2xlTnVtYmVyL2RlY2ltYWwgQW5zd2VySXRlbS5tYXhWYWx1ZVxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9taW5fc2VsZWN0aW9ucyA9ICdtaW5TZWxlY3Rpb25zJzsgLy8gbWFwcyB0byBDaGVja2JveEl0ZW1UZW1wbGF0ZS5taW5TZWxlY3Rpb25zXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX21heF9zZWxlY3Rpb25zID0gJ21heFNlbGVjdGlvbnMnOyAvLyBtYXBzIHRvIENoZWNrYm94SXRlbVRlbXBsYXRlLm1heFNlbGVjdGlvbnNcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fbmFtZSA9ICduYW1lJzsgLy8gbWFwcyB0byB0ZW1wbGF0ZUl0ZW0ubmFtZVxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9vcHRpb24gPSAnb3B0aW9uJzsgLy8gbWFwcyB0byBUZW1wbGF0ZU9wdGlvbkl0ZW0ub3B0aW9uXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX29wdGlvbnMgPSAnb3B0aW9ucyc7XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX29wdGlvbl9zdWJzZXRzID0gJ29wdGlvblN1YnNldHMnOyAvLyBtYXBzIHRvIENoZWNrYm94SXRlbVRlbXBsYXRlLm9wdGlvblN1YnNldHNcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fb3B0aW9uX3RlbXBsYXRlX21hcCA9ICdvcHRpb25UZW1wbGF0ZU1hcCc7IC8vIG1hcHMgdG8gQ2hlY2tib3hJdGVtVGVtcGxhdGUub3B0aW9uVGVtcGxhdGVNYXBcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fcHJlc2V0X3ZhbHVlID0gJ3ByZXNldFZhbHVlJzsgLy8gbWFwcyB0byBEYXRlSXRlbVRlbXBsYXRlLnByZXNldFZhbHVlXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX3Bvc2l0aXZlX29ubHkgPSAncG9zaXRpdmVPbmx5JzsgLy8gbWFwcyB0byB3aG9sZU51bWJlci9kZWNpbWFsIEFuc3dlckl0ZW0ucG9zaXRpdmVPbmx5XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX3F1ZXN0aW9uX3RleHQgPSAncXVlc3Rpb25UZXh0JzsgLy8gbWFwcyB0byB0ZW1wbGF0ZUl0ZW0ucXVlc3Rpb25UZXh0XG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX3JhbmdlX2xpbWl0cyA9ICdyYW5nZUxpbWl0cyc7IC8vIG1hcHMgdG8gT2Zmc2V0RGF0ZVJhbmdlVGVtcGxhdGUucmFuZ2VMaW1pdHNcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fcmVwZWF0YWJsZV9pdGVtX3RlbXBsYXRlX2lkID0gJ3JlcGVhdGFibGVJdGVtVGVtcGxhdGVJZCc7IC8vIG1hcHMgdG8gUmVwZWF0YWJsZUl0ZW1UZW1wbGF0ZS5yZXBlYXRhYmxlSXRlbVRlbXBsYXRlSWRcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fcmVxdWlyZWQgPSAncmVxdWlyZWQnOyAvLyBtYXBzIHRvIHRlbXBsYXRlSXRlbS5yZXF1aXJlZFxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV9zdGFydGluZ19pbnN0YW5jZXMgPSAnc3RhcnRpbmdJbnN0YW5jZXMnOyAvLyBtYXBzIHRvIFJlcGVhdGFibGVJdGVtVGVtcGxhdGUuc3RhcnRpbmdJbnN0YW5jZXNcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fdGV4dCA9ICd0ZXh0JzsgLy8gbWFwcyB0byBUZXh0SXRlbVRlbXBsYXRlLnZhbHVlXG5leHBvcnQgY29uc3QgcHJvcF9pdGVtX3RpdGxlID0gJ3RpdGxlJzsgLy8gbWFwcyB0byB0ZW1wbGF0ZVNlY3Rpb24udGl0bGVcbmV4cG9ydCBjb25zdCBwcm9wX2l0ZW1fdmFsdWUgPSAndmFsdWUnOyAvLyBtYXBzIHRvIFRpdGxlSXRlbS52YWx1ZVxuZXhwb3J0IGNvbnN0IHByb3BfaXRlbV92YWx1ZXMgPSAndmFsdWVzJzsgLy8gbWFwcyB0byBCdWxsZXRlZExpc3RJdGVtVGVtcGxhdGUudmFsdWVzXG5leHBvcnQgY29uc3QgcHJvcF90ZW1wbGF0ZV9kZXNjcmlwdGl2ZV90ZXh0ID0gJ3RlbXBsYXRlLWRlc2NyaXB0aXZlLXRleHQnOyAvLyBtYXBzIHRvIHRlbXBsYXRlLmRlc2NyaXB0aXZlVGV4dCBwcm9wZXJ0eVxuZXhwb3J0IGNvbnN0IHByb3BfdGVtcGxhdGVfaXRlbXMgPSAnaXRlbXMnOyAvLyBtYXBzIHRvIHRlbXBsYXRlLml0ZW1zIHByb3BlcnR5XG5leHBvcnQgY29uc3QgcHJvcF90ZW1wbGF0ZV90aXRsZSA9ICd0aXRsZSc7IC8vIG1hcHMgdG8gdGVtcGxhdGUudGl0bGUgcHJvcGVydHlcbiJdfQ==
@@ -1 +0,0 @@
1
- export * from './date-enumeration.model';