@truedat/df 7.5.9 → 7.5.11
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/package.json +43 -67
- package/src/components/DynamicFieldValue.js +0 -1
- package/src/components/DynamicForm.js +5 -4
- package/src/components/DynamicFormViewer.js +0 -1
- package/src/components/DynamicFormWithTranslations.js +3 -3
- package/src/components/EditableDynamicFieldValue.js +1 -2
- package/src/components/FieldGroupDetail.js +0 -1
- package/src/components/FieldGroupSegment.js +17 -29
- package/src/components/FieldGroupWithTranslations.js +19 -38
- package/src/components/FieldViewerValue.js +4 -7
- package/src/components/OriginLabel.js +0 -1
- package/src/components/SelectDynamicFormWithTranslations.js +4 -6
- package/src/components/SelectableDynamicForm.js +5 -11
- package/src/components/__tests__/DynamicFieldValue.spec.js +0 -1
- package/src/components/__tests__/DynamicForm.spec.js +25 -23
- package/src/components/__tests__/EditableDynamicFieldValue.spec.js +0 -1
- package/src/components/__tests__/FieldGroupDetail.spec.js +0 -1
- package/src/components/__tests__/FieldViewerValue.spec.js +1 -6
- package/src/components/__tests__/SelectableDynamicForm.spec.js +102 -46
- package/src/components/__tests__/__snapshots__/DynamicFieldValue.spec.js.snap +2 -2
- package/src/components/__tests__/__snapshots__/DynamicForm.spec.js.snap +94 -81
- package/src/components/__tests__/__snapshots__/FieldGroupDetail.spec.js.snap +2 -2
- package/src/components/__tests__/__snapshots__/FieldViewerValue.spec.js.snap +1 -7
- package/src/components/__tests__/__snapshots__/SelectableDynamicForm.spec.js.snap +39 -39
- package/src/components/hierarchies/Hierarchies.js +2 -4
- package/src/components/hierarchies/HierarchiesView.js +1 -2
- package/src/components/hierarchies/HierarchyCrumbs.js +1 -2
- package/src/components/hierarchies/HierarchyRoutes.js +44 -39
- package/src/components/hierarchies/HierarchyView.js +4 -7
- package/src/components/hierarchies/__tests__/Hierarchies.spec.js +2 -3
- package/src/components/hierarchies/__tests__/HierarchiesView.spec.js +3 -7
- package/src/components/hierarchies/__tests__/HierarchyCrumbs.spec.js +0 -1
- package/src/components/hierarchies/__tests__/HierarchyRoutes.spec.js +79 -0
- package/src/components/hierarchies/__tests__/HierarchyView.spec.js +2 -10
- package/src/components/hierarchies/__tests__/__snapshots__/Hierarchies.spec.js.snap +1 -0
- package/src/components/hierarchies/__tests__/__snapshots__/HierarchiesView.spec.js.snap +7 -5
- package/src/components/hierarchies/__tests__/__snapshots__/HierarchyCrumbs.spec.js.snap +4 -2
- package/src/components/hierarchies/__tests__/__snapshots__/HierarchyRoutes.spec.js.snap +60 -0
- package/src/components/hierarchies/__tests__/__snapshots__/HierarchyView.spec.js.snap +8 -6
- package/src/components/widgets/CheckboxField.js +0 -1
- package/src/components/widgets/ColorPickerField.js +2 -3
- package/src/components/widgets/DateField.js +0 -1
- package/src/components/widgets/DateTimeField.js +0 -1
- package/src/components/widgets/DomainDropdown.js +1 -1
- package/src/components/widgets/DomainPreview.js +1 -2
- package/src/components/widgets/DropdownDataLoader.js +3 -3
- package/src/components/widgets/DropdownField.js +5 -4
- package/src/components/widgets/DynamicField.js +0 -5
- package/src/components/widgets/EnrichedTextField.js +0 -1
- package/src/components/widgets/HierarchyDropdown.js +1 -1
- package/src/components/widgets/HierarchyPreview.js +0 -1
- package/src/components/widgets/IdentifierField.js +0 -1
- package/src/components/widgets/ImageField.js +1 -1
- package/src/components/widgets/ImagePreview.js +0 -1
- package/src/components/widgets/NumberField.js +6 -7
- package/src/components/widgets/PairListField.js +5 -6
- package/src/components/widgets/PasswordField.js +1 -2
- package/src/components/widgets/RadioField.js +0 -1
- package/src/components/widgets/StandardDropdown.js +0 -1
- package/src/components/widgets/StringField.js +0 -1
- package/src/components/widgets/SystemPreview.js +2 -3
- package/src/components/widgets/TableField.js +5 -5
- package/src/components/widgets/TextField.js +1 -2
- package/src/components/widgets/__tests__/CheckboxField.spec.js +33 -23
- package/src/components/widgets/__tests__/ColorPickerField.spec.js +5 -12
- package/src/components/widgets/__tests__/DateField.spec.js +5 -5
- package/src/components/widgets/__tests__/DateTimeField.spec.js +5 -5
- package/src/components/widgets/__tests__/DomainPreview.spec.js +12 -14
- package/src/components/widgets/__tests__/DropdownDataLoader.spec.js +5 -5
- package/src/components/widgets/__tests__/DropdownField.spec.js +18 -29
- package/src/components/widgets/__tests__/DynamicField.spec.js +0 -1
- package/src/components/widgets/__tests__/HierarchyDropdown.spec.js +4 -5
- package/src/components/widgets/__tests__/HierarchyPreview.spec.js +0 -1
- package/src/components/widgets/__tests__/ImageField.spec.js +5 -10
- package/src/components/widgets/__tests__/NumberField.spec.js +23 -5
- package/src/components/widgets/__tests__/PairListField.spec.js +69 -59
- package/src/components/widgets/__tests__/PasswordField.spec.js +3 -4
- package/src/components/widgets/__tests__/RadioField.spec.js +5 -5
- package/src/components/widgets/__tests__/StandardDropdown.spec.js +45 -46
- package/src/components/widgets/__tests__/StringField.spec.js +10 -13
- package/src/components/widgets/__tests__/SystemPreview.spec.js +13 -15
- package/src/components/widgets/__tests__/TableField.spec.js +32 -32
- package/src/components/widgets/__tests__/TextField.spec.js +5 -5
- package/src/components/widgets/__tests__/__snapshots__/CheckboxField.spec.js.snap +58 -29
- package/src/components/widgets/__tests__/__snapshots__/ColorPickerField.spec.js.snap +221 -36
- package/src/components/widgets/__tests__/__snapshots__/DateField.spec.js.snap +21 -16
- package/src/components/widgets/__tests__/__snapshots__/DateTimeField.spec.js.snap +21 -20
- package/src/components/widgets/__tests__/__snapshots__/DomainPreview.spec.js.snap +26 -21
- package/src/components/widgets/__tests__/__snapshots__/DropdownDataLoader.spec.js.snap +1 -1
- package/src/components/widgets/__tests__/__snapshots__/DropdownField.spec.js.snap +93 -43
- package/src/components/widgets/__tests__/__snapshots__/DynamicField.spec.js.snap +2 -14
- package/src/components/widgets/__tests__/__snapshots__/ImageField.spec.js.snap +16 -28
- package/src/components/widgets/__tests__/__snapshots__/NumberField.spec.js.snap +11 -9
- package/src/components/widgets/__tests__/__snapshots__/PairListField.spec.js.snap +53 -39
- package/src/components/widgets/__tests__/__snapshots__/PasswordField.spec.js.snap +15 -8
- package/src/components/widgets/__tests__/__snapshots__/RadioField.spec.js.snap +41 -22
- package/src/components/widgets/__tests__/__snapshots__/StandardDropdown.spec.js.snap +78 -31
- package/src/components/widgets/__tests__/__snapshots__/StringField.spec.js.snap +78 -38
- package/src/components/widgets/__tests__/__snapshots__/SystemPreview.spec.js.snap +24 -21
- package/src/components/widgets/__tests__/__snapshots__/TableField.spec.js.snap +138 -174
- package/src/components/widgets/__tests__/__snapshots__/TextField.spec.js.snap +12 -7
- package/src/reducers/__tests__/dfMessage.spec.js +14 -18
- package/src/reducers/dfMessage.js +8 -7
- package/src/selectors/index.js +0 -1
- package/src/templates/components/NewTemplate.js +0 -1
- package/src/templates/components/Template.js +10 -3
- package/src/templates/components/TemplateCard.js +3 -4
- package/src/templates/components/TemplateCrumbs.js +2 -3
- package/src/templates/components/TemplateFilters.js +0 -1
- package/src/templates/components/TemplateLoader.js +25 -101
- package/src/templates/components/TemplateRoutes.js +29 -45
- package/src/templates/components/Templates.js +1 -5
- package/src/templates/components/TemplatesContext.js +3 -7
- package/src/templates/components/TemplatesTable.js +1 -2
- package/src/templates/components/__tests__/NewTemplate.spec.js +5 -10
- package/src/templates/components/__tests__/Template.spec.js +0 -1
- package/src/templates/components/__tests__/TemplateLoader.spec.js +71 -109
- package/src/templates/components/__tests__/TemplateRoutes.spec.js +63 -0
- package/src/templates/components/__tests__/TemplatesTable.spec.js +15 -9
- package/src/templates/components/__tests__/__snapshots__/NewTemplate.spec.js.snap +335 -22
- package/src/templates/components/__tests__/__snapshots__/Template.spec.js.snap +49 -48
- package/src/templates/components/__tests__/__snapshots__/TemplateLoader.spec.js.snap +7 -1
- package/src/templates/components/__tests__/__snapshots__/TemplateRoutes.spec.js.snap +38 -0
- package/src/templates/components/__tests__/__snapshots__/TemplatesTable.spec.js.snap +94 -1
- package/src/templates/components/index.js +1 -2
- package/src/templates/components/templateForm/ActiveGroupForm.js +1 -4
- package/src/templates/components/templateForm/ConditionalFieldForm.js +0 -1
- package/src/templates/components/templateForm/DefaultValue.js +0 -1
- package/src/templates/components/templateForm/DependentDomain.js +0 -1
- package/src/templates/components/templateForm/DependentFormField.js +0 -1
- package/src/templates/components/templateForm/FieldForm.js +5 -5
- package/src/templates/components/templateForm/GroupsList.js +0 -1
- package/src/templates/components/templateForm/HierarchiesList.js +1 -2
- package/src/templates/components/templateForm/MandatoryConditional.js +0 -1
- package/src/templates/components/templateForm/SwitchListForm.js +2 -2
- package/src/templates/components/templateForm/SwitchSegment.js +0 -1
- package/src/templates/components/templateForm/TemplateForm.js +1 -1
- package/src/templates/components/templateForm/TemplateFormActions.js +3 -4
- package/src/templates/components/templateForm/ValuesField.js +1 -3
- package/src/templates/components/templateForm/ValuesListForm.js +3 -3
- package/src/templates/components/templateForm/ValuesSelector.js +0 -1
- package/src/templates/components/templateForm/__tests__/ActiveGroupForm.spec.js +8 -13
- package/src/templates/components/templateForm/__tests__/DefaultValue.spec.js +198 -113
- package/src/templates/components/templateForm/__tests__/DependentDomain.spec.js +0 -1
- package/src/templates/components/templateForm/__tests__/DependentFormField.spec.js +0 -1
- package/src/templates/components/templateForm/__tests__/FieldForm.spec.js +106 -72
- package/src/templates/components/templateForm/__tests__/GroupsList.spec.js +7 -12
- package/src/templates/components/templateForm/__tests__/MandatoryConditional.spec.js +0 -1
- package/src/templates/components/templateForm/__tests__/SwitchListForm.spec.js +71 -50
- package/src/templates/components/templateForm/__tests__/SwitchSegment.spec.js +37 -62
- package/src/templates/components/templateForm/__tests__/TemplateForm.spec.js +0 -1
- package/src/templates/components/templateForm/__tests__/TemplateFormActions.spec.js +19 -15
- package/src/templates/components/templateForm/__tests__/ValuesField.spec.js +84 -62
- package/src/templates/components/templateForm/__tests__/ValuesListForm.spec.js +108 -144
- package/src/templates/components/templateForm/__tests__/ValuesSelector.spec.js +36 -36
- package/src/templates/components/templateForm/__tests__/__snapshots__/ActiveGroupForm.spec.js.snap +654 -86
- package/src/templates/components/templateForm/__tests__/__snapshots__/DefaultValue.spec.js.snap +45 -23
- package/src/templates/components/templateForm/__tests__/__snapshots__/FieldForm.spec.js.snap +1700 -1025
- package/src/templates/components/templateForm/__tests__/__snapshots__/GroupsList.spec.js.snap +44 -39
- package/src/templates/components/templateForm/__tests__/__snapshots__/SwitchListForm.spec.js.snap +225 -60
- package/src/templates/components/templateForm/__tests__/__snapshots__/SwitchSegment.spec.js.snap +1 -1
- package/src/templates/components/templateForm/__tests__/__snapshots__/TemplateForm.spec.js.snap +89 -92
- package/src/templates/components/templateForm/__tests__/__snapshots__/TemplateFormActions.spec.js.snap +66 -100
- package/src/templates/components/templateForm/__tests__/__snapshots__/ValuesField.spec.js.snap +542 -231
- package/src/templates/components/templateForm/__tests__/__snapshots__/ValuesListForm.spec.js.snap +264 -268
- package/src/templates/components/templateForm/__tests__/__snapshots__/ValuesSelector.spec.js.snap +146 -11
- package/src/templates/reducers/__tests__/allTemplates.spec.js +1 -1
- package/src/templates/reducers/__tests__/template.spec.js +3 -2
- package/src/templates/reducers/__tests__/templateLoading.spec.js +2 -2
- package/src/templates/reducers/__tests__/templates.spec.js +1 -1
- package/src/templates/reducers/__tests__/templatesLoading.spec.js +1 -1
- package/src/templates/reducers/allTemplates.js +1 -2
- package/src/templates/reducers/template.js +2 -1
- package/src/templates/reducers/templateRedirect.js +1 -1
- package/src/templates/reducers/templates.js +1 -1
- package/src/templates/reducers/templatesLoading.js +1 -1
- package/src/templates/routines.js +0 -2
- package/src/templates/sagas/__tests__/deleteTemplate.spec.js +2 -2
- package/src/templates/sagas/__tests__/fetchTemplates.spec.js +3 -6
- package/src/templates/sagas/__tests__/updateTemplate.spec.js +4 -4
- package/src/templates/sagas/deleteTemplate.js +1 -1
- package/src/templates/sagas/fetchTemplate.js +1 -1
- package/src/templates/sagas/fetchTemplates.js +1 -1
- package/src/templates/sagas/updateTemplate.js +1 -1
- package/src/templates/utils/filterSwitches.js +2 -2
- package/src/templates/utils/filterValues.js +2 -2
- package/src/api/hierarchies.js +0 -4
- package/src/components/FieldGroupCopy.js +0 -108
- package/src/components/FieldGroupSubSegment/FieldGroupSubSegment.js +0 -181
- package/src/components/FieldGroupSubSegment/__tests__/FieldGroupSubSegment.spec.js +0 -221
- package/src/components/FieldGroupSubSegment/__tests__/__snapshots__/FieldGroupSubSegment.spec.js.snap +0 -230
- package/src/components/FieldGroupSubSegment/constants.js +0 -68
- package/src/components/FieldGroupSubSegment/copyValidations.js +0 -75
- package/src/components/FieldGroupSubSegment/handleCopyModule.js +0 -186
- package/src/components/__tests__/FieldGroupCopy.spec.js +0 -14
- package/src/components/__tests__/__snapshots__/FieldGroupCopy.spec.js.snap +0 -307
- package/src/components/widgets/CopyField/CopyField.js +0 -270
- package/src/components/widgets/CopyField/CopyFieldCell.js +0 -138
- package/src/components/widgets/CopyField/CopyFieldColumn.js +0 -53
- package/src/components/widgets/CopyField/CopyFieldSelectableCell.js +0 -71
- package/src/components/widgets/CopyField/CustomStyles.js +0 -91
- package/src/components/widgets/CopyField/__tests__/CopyField.spec.js +0 -82
- package/src/components/widgets/CopyField/__tests__/CopyFieldCell.spec.js +0 -67
- package/src/components/widgets/CopyField/__tests__/CopyFieldColumn.spec.js +0 -33
- package/src/components/widgets/CopyField/__tests__/CopyFieldSelectableCell.spec.js +0 -49
- package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyField.spec.js.snap +0 -279
- package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyFieldCell.spec.js.snap +0 -67
- package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyFieldColumn.spec.js.snap +0 -42
- package/src/components/widgets/CopyField/__tests__/__snapshots__/CopyFieldSelectableCell.spec.js.snap +0 -60
- package/src/hooks/useHierarchies.js +0 -112
- package/src/selectors/subscopedTemplates.js +0 -16
- package/src/templates/components/TemplatesLoader.js +0 -24
- package/src/templates/components/__tests__/TemplatesLoader.spec.js +0 -29
package/src/templates/components/templateForm/__tests__/__snapshots__/TemplateForm.spec.js.snap
CHANGED
|
@@ -11,7 +11,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
11
11
|
<h4
|
|
12
12
|
class="ui header"
|
|
13
13
|
>
|
|
14
|
-
|
|
14
|
+
template.form.header
|
|
15
15
|
</h4>
|
|
16
16
|
</div>
|
|
17
17
|
<div
|
|
@@ -21,7 +21,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
21
21
|
class="required six wide field"
|
|
22
22
|
>
|
|
23
23
|
<label>
|
|
24
|
-
|
|
24
|
+
template.form.name
|
|
25
25
|
</label>
|
|
26
26
|
<div
|
|
27
27
|
class="ui input"
|
|
@@ -39,7 +39,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
39
39
|
class="required six wide field"
|
|
40
40
|
>
|
|
41
41
|
<label>
|
|
42
|
-
|
|
42
|
+
template.form.label
|
|
43
43
|
</label>
|
|
44
44
|
<div
|
|
45
45
|
class="ui input"
|
|
@@ -56,7 +56,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
56
56
|
class="required four wide field"
|
|
57
57
|
>
|
|
58
58
|
<label>
|
|
59
|
-
|
|
59
|
+
template.form.scope
|
|
60
60
|
</label>
|
|
61
61
|
<div
|
|
62
62
|
aria-expanded="false"
|
|
@@ -72,7 +72,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
72
72
|
class="divider text"
|
|
73
73
|
role="alert"
|
|
74
74
|
>
|
|
75
|
-
|
|
75
|
+
template.scope.bg
|
|
76
76
|
</div>
|
|
77
77
|
<i
|
|
78
78
|
aria-hidden="true"
|
|
@@ -91,7 +91,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
91
91
|
<span
|
|
92
92
|
class="text"
|
|
93
93
|
>
|
|
94
|
-
|
|
94
|
+
template.scope.bg
|
|
95
95
|
</span>
|
|
96
96
|
</div>
|
|
97
97
|
<div
|
|
@@ -104,7 +104,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
104
104
|
<span
|
|
105
105
|
class="text"
|
|
106
106
|
>
|
|
107
|
-
|
|
107
|
+
template.scope.dd
|
|
108
108
|
</span>
|
|
109
109
|
</div>
|
|
110
110
|
<div
|
|
@@ -117,7 +117,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
117
117
|
<span
|
|
118
118
|
class="text"
|
|
119
119
|
>
|
|
120
|
-
|
|
120
|
+
template.scope.dq
|
|
121
121
|
</span>
|
|
122
122
|
</div>
|
|
123
123
|
<div
|
|
@@ -130,7 +130,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
130
130
|
<span
|
|
131
131
|
class="text"
|
|
132
132
|
>
|
|
133
|
-
|
|
133
|
+
template.scope.gr
|
|
134
134
|
</span>
|
|
135
135
|
</div>
|
|
136
136
|
<div
|
|
@@ -143,7 +143,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
143
143
|
<span
|
|
144
144
|
class="text"
|
|
145
145
|
>
|
|
146
|
-
|
|
146
|
+
template.scope.ie
|
|
147
147
|
</span>
|
|
148
148
|
</div>
|
|
149
149
|
<div
|
|
@@ -156,7 +156,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
156
156
|
<span
|
|
157
157
|
class="text"
|
|
158
158
|
>
|
|
159
|
-
|
|
159
|
+
template.scope.qe
|
|
160
160
|
</span>
|
|
161
161
|
</div>
|
|
162
162
|
<div
|
|
@@ -169,7 +169,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
169
169
|
<span
|
|
170
170
|
class="text"
|
|
171
171
|
>
|
|
172
|
-
|
|
172
|
+
template.scope.quality_control
|
|
173
173
|
</span>
|
|
174
174
|
</div>
|
|
175
175
|
<div
|
|
@@ -182,7 +182,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
182
182
|
<span
|
|
183
183
|
class="text"
|
|
184
184
|
>
|
|
185
|
-
|
|
185
|
+
template.scope.qxe
|
|
186
186
|
</span>
|
|
187
187
|
</div>
|
|
188
188
|
<div
|
|
@@ -195,7 +195,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
195
195
|
<span
|
|
196
196
|
class="text"
|
|
197
197
|
>
|
|
198
|
-
|
|
198
|
+
template.scope.remediation
|
|
199
199
|
</span>
|
|
200
200
|
</div>
|
|
201
201
|
<div
|
|
@@ -208,7 +208,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
208
208
|
<span
|
|
209
209
|
class="text"
|
|
210
210
|
>
|
|
211
|
-
template.scope.
|
|
211
|
+
template.scope.ri
|
|
212
212
|
</span>
|
|
213
213
|
</div>
|
|
214
214
|
</div>
|
|
@@ -218,14 +218,14 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
218
218
|
class="six wide field"
|
|
219
219
|
>
|
|
220
220
|
<label>
|
|
221
|
-
|
|
221
|
+
template.form.subscope
|
|
222
222
|
</label>
|
|
223
223
|
<div
|
|
224
224
|
class="ui input"
|
|
225
225
|
>
|
|
226
226
|
<input
|
|
227
227
|
name="subscope"
|
|
228
|
-
placeholder="
|
|
228
|
+
placeholder="template.form.subscope.placeholder"
|
|
229
229
|
type="text"
|
|
230
230
|
value=""
|
|
231
231
|
/>
|
|
@@ -238,7 +238,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
238
238
|
<h4
|
|
239
239
|
class="ui header"
|
|
240
240
|
>
|
|
241
|
-
|
|
241
|
+
template.form.fieldGroups
|
|
242
242
|
</h4>
|
|
243
243
|
</div>
|
|
244
244
|
<div
|
|
@@ -257,7 +257,7 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
257
257
|
aria-hidden="true"
|
|
258
258
|
class="square plus icon"
|
|
259
259
|
/>
|
|
260
|
-
|
|
260
|
+
template.form.newGroup
|
|
261
261
|
</a>
|
|
262
262
|
</div>
|
|
263
263
|
</div>
|
|
@@ -276,12 +276,12 @@ exports[`<TemplateForm /> matches the latest snapshot (loading) 1`] = `
|
|
|
276
276
|
disabled=""
|
|
277
277
|
tabindex="-1"
|
|
278
278
|
>
|
|
279
|
-
|
|
279
|
+
actions.save
|
|
280
280
|
</button>
|
|
281
281
|
<button
|
|
282
282
|
class="ui button"
|
|
283
283
|
>
|
|
284
|
-
|
|
284
|
+
actions.cancel
|
|
285
285
|
</button>
|
|
286
286
|
</div>
|
|
287
287
|
</form>
|
|
@@ -299,7 +299,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
299
299
|
<h4
|
|
300
300
|
class="ui header"
|
|
301
301
|
>
|
|
302
|
-
|
|
302
|
+
template.form.header
|
|
303
303
|
</h4>
|
|
304
304
|
</div>
|
|
305
305
|
<div
|
|
@@ -309,11 +309,11 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
309
309
|
class="required six wide field"
|
|
310
310
|
>
|
|
311
311
|
<label>
|
|
312
|
-
|
|
312
|
+
template.form.name
|
|
313
313
|
<div
|
|
314
314
|
class="ui left pointing label"
|
|
315
315
|
>
|
|
316
|
-
|
|
316
|
+
template.form.validation.empty_required
|
|
317
317
|
</div>
|
|
318
318
|
</label>
|
|
319
319
|
<div
|
|
@@ -331,11 +331,11 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
331
331
|
class="required six wide field"
|
|
332
332
|
>
|
|
333
333
|
<label>
|
|
334
|
-
|
|
334
|
+
template.form.label
|
|
335
335
|
<div
|
|
336
336
|
class="ui left pointing label"
|
|
337
337
|
>
|
|
338
|
-
|
|
338
|
+
template.form.validation.empty_required
|
|
339
339
|
</div>
|
|
340
340
|
</label>
|
|
341
341
|
<div
|
|
@@ -353,11 +353,11 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
353
353
|
class="required four wide field"
|
|
354
354
|
>
|
|
355
355
|
<label>
|
|
356
|
-
|
|
356
|
+
template.form.scope
|
|
357
357
|
<div
|
|
358
358
|
class="ui left pointing label"
|
|
359
359
|
>
|
|
360
|
-
|
|
360
|
+
template.form.validation.empty_required
|
|
361
361
|
</div>
|
|
362
362
|
</label>
|
|
363
363
|
<div
|
|
@@ -374,7 +374,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
374
374
|
class="divider default text"
|
|
375
375
|
role="alert"
|
|
376
376
|
>
|
|
377
|
-
|
|
377
|
+
template.form.scope.placeholder
|
|
378
378
|
</div>
|
|
379
379
|
<i
|
|
380
380
|
aria-hidden="true"
|
|
@@ -393,7 +393,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
393
393
|
<span
|
|
394
394
|
class="text"
|
|
395
395
|
>
|
|
396
|
-
|
|
396
|
+
template.scope.bg
|
|
397
397
|
</span>
|
|
398
398
|
</div>
|
|
399
399
|
<div
|
|
@@ -406,7 +406,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
406
406
|
<span
|
|
407
407
|
class="text"
|
|
408
408
|
>
|
|
409
|
-
|
|
409
|
+
template.scope.dd
|
|
410
410
|
</span>
|
|
411
411
|
</div>
|
|
412
412
|
<div
|
|
@@ -419,7 +419,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
419
419
|
<span
|
|
420
420
|
class="text"
|
|
421
421
|
>
|
|
422
|
-
|
|
422
|
+
template.scope.dq
|
|
423
423
|
</span>
|
|
424
424
|
</div>
|
|
425
425
|
<div
|
|
@@ -432,7 +432,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
432
432
|
<span
|
|
433
433
|
class="text"
|
|
434
434
|
>
|
|
435
|
-
|
|
435
|
+
template.scope.gr
|
|
436
436
|
</span>
|
|
437
437
|
</div>
|
|
438
438
|
<div
|
|
@@ -445,7 +445,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
445
445
|
<span
|
|
446
446
|
class="text"
|
|
447
447
|
>
|
|
448
|
-
|
|
448
|
+
template.scope.ie
|
|
449
449
|
</span>
|
|
450
450
|
</div>
|
|
451
451
|
<div
|
|
@@ -458,7 +458,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
458
458
|
<span
|
|
459
459
|
class="text"
|
|
460
460
|
>
|
|
461
|
-
|
|
461
|
+
template.scope.qe
|
|
462
462
|
</span>
|
|
463
463
|
</div>
|
|
464
464
|
<div
|
|
@@ -471,7 +471,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
471
471
|
<span
|
|
472
472
|
class="text"
|
|
473
473
|
>
|
|
474
|
-
|
|
474
|
+
template.scope.quality_control
|
|
475
475
|
</span>
|
|
476
476
|
</div>
|
|
477
477
|
<div
|
|
@@ -484,7 +484,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
484
484
|
<span
|
|
485
485
|
class="text"
|
|
486
486
|
>
|
|
487
|
-
|
|
487
|
+
template.scope.qxe
|
|
488
488
|
</span>
|
|
489
489
|
</div>
|
|
490
490
|
<div
|
|
@@ -497,7 +497,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
497
497
|
<span
|
|
498
498
|
class="text"
|
|
499
499
|
>
|
|
500
|
-
|
|
500
|
+
template.scope.remediation
|
|
501
501
|
</span>
|
|
502
502
|
</div>
|
|
503
503
|
<div
|
|
@@ -510,7 +510,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
510
510
|
<span
|
|
511
511
|
class="text"
|
|
512
512
|
>
|
|
513
|
-
template.scope.
|
|
513
|
+
template.scope.ri
|
|
514
514
|
</span>
|
|
515
515
|
</div>
|
|
516
516
|
</div>
|
|
@@ -520,7 +520,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
520
520
|
class="disabled six wide field"
|
|
521
521
|
>
|
|
522
522
|
<label>
|
|
523
|
-
|
|
523
|
+
template.form.subscope
|
|
524
524
|
</label>
|
|
525
525
|
<div
|
|
526
526
|
class="ui disabled input"
|
|
@@ -528,7 +528,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
528
528
|
<input
|
|
529
529
|
disabled=""
|
|
530
530
|
name="subscope"
|
|
531
|
-
placeholder="
|
|
531
|
+
placeholder="template.form.subscope.placeholder"
|
|
532
532
|
tabindex="-1"
|
|
533
533
|
type="text"
|
|
534
534
|
value=""
|
|
@@ -542,7 +542,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
542
542
|
<h4
|
|
543
543
|
class="ui header"
|
|
544
544
|
>
|
|
545
|
-
|
|
545
|
+
template.form.fieldGroups
|
|
546
546
|
</h4>
|
|
547
547
|
</div>
|
|
548
548
|
<div
|
|
@@ -561,7 +561,7 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
561
561
|
aria-hidden="true"
|
|
562
562
|
class="square plus icon"
|
|
563
563
|
/>
|
|
564
|
-
|
|
564
|
+
template.form.newGroup
|
|
565
565
|
</a>
|
|
566
566
|
</div>
|
|
567
567
|
</div>
|
|
@@ -580,12 +580,12 @@ exports[`<TemplateForm /> matches the latest snapshot for empty template 1`] = `
|
|
|
580
580
|
disabled=""
|
|
581
581
|
tabindex="-1"
|
|
582
582
|
>
|
|
583
|
-
|
|
583
|
+
actions.save
|
|
584
584
|
</button>
|
|
585
585
|
<button
|
|
586
586
|
class="ui button"
|
|
587
587
|
>
|
|
588
|
-
|
|
588
|
+
actions.cancel
|
|
589
589
|
</button>
|
|
590
590
|
</div>
|
|
591
591
|
</form>
|
|
@@ -603,7 +603,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
603
603
|
<h4
|
|
604
604
|
class="ui header"
|
|
605
605
|
>
|
|
606
|
-
|
|
606
|
+
template.form.header
|
|
607
607
|
</h4>
|
|
608
608
|
</div>
|
|
609
609
|
<div
|
|
@@ -613,7 +613,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
613
613
|
class="required six wide field"
|
|
614
614
|
>
|
|
615
615
|
<label>
|
|
616
|
-
|
|
616
|
+
template.form.name
|
|
617
617
|
</label>
|
|
618
618
|
<div
|
|
619
619
|
class="ui input"
|
|
@@ -631,7 +631,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
631
631
|
class="required six wide field"
|
|
632
632
|
>
|
|
633
633
|
<label>
|
|
634
|
-
|
|
634
|
+
template.form.label
|
|
635
635
|
</label>
|
|
636
636
|
<div
|
|
637
637
|
class="ui input"
|
|
@@ -648,7 +648,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
648
648
|
class="required four wide field"
|
|
649
649
|
>
|
|
650
650
|
<label>
|
|
651
|
-
|
|
651
|
+
template.form.scope
|
|
652
652
|
</label>
|
|
653
653
|
<div
|
|
654
654
|
aria-expanded="false"
|
|
@@ -664,7 +664,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
664
664
|
class="divider text"
|
|
665
665
|
role="alert"
|
|
666
666
|
>
|
|
667
|
-
|
|
667
|
+
template.scope.bg
|
|
668
668
|
</div>
|
|
669
669
|
<i
|
|
670
670
|
aria-hidden="true"
|
|
@@ -683,7 +683,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
683
683
|
<span
|
|
684
684
|
class="text"
|
|
685
685
|
>
|
|
686
|
-
|
|
686
|
+
template.scope.bg
|
|
687
687
|
</span>
|
|
688
688
|
</div>
|
|
689
689
|
<div
|
|
@@ -696,7 +696,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
696
696
|
<span
|
|
697
697
|
class="text"
|
|
698
698
|
>
|
|
699
|
-
|
|
699
|
+
template.scope.dd
|
|
700
700
|
</span>
|
|
701
701
|
</div>
|
|
702
702
|
<div
|
|
@@ -709,7 +709,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
709
709
|
<span
|
|
710
710
|
class="text"
|
|
711
711
|
>
|
|
712
|
-
|
|
712
|
+
template.scope.dq
|
|
713
713
|
</span>
|
|
714
714
|
</div>
|
|
715
715
|
<div
|
|
@@ -722,7 +722,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
722
722
|
<span
|
|
723
723
|
class="text"
|
|
724
724
|
>
|
|
725
|
-
|
|
725
|
+
template.scope.gr
|
|
726
726
|
</span>
|
|
727
727
|
</div>
|
|
728
728
|
<div
|
|
@@ -735,7 +735,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
735
735
|
<span
|
|
736
736
|
class="text"
|
|
737
737
|
>
|
|
738
|
-
|
|
738
|
+
template.scope.ie
|
|
739
739
|
</span>
|
|
740
740
|
</div>
|
|
741
741
|
<div
|
|
@@ -748,7 +748,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
748
748
|
<span
|
|
749
749
|
class="text"
|
|
750
750
|
>
|
|
751
|
-
|
|
751
|
+
template.scope.qe
|
|
752
752
|
</span>
|
|
753
753
|
</div>
|
|
754
754
|
<div
|
|
@@ -761,7 +761,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
761
761
|
<span
|
|
762
762
|
class="text"
|
|
763
763
|
>
|
|
764
|
-
|
|
764
|
+
template.scope.quality_control
|
|
765
765
|
</span>
|
|
766
766
|
</div>
|
|
767
767
|
<div
|
|
@@ -774,7 +774,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
774
774
|
<span
|
|
775
775
|
class="text"
|
|
776
776
|
>
|
|
777
|
-
|
|
777
|
+
template.scope.qxe
|
|
778
778
|
</span>
|
|
779
779
|
</div>
|
|
780
780
|
<div
|
|
@@ -787,7 +787,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
787
787
|
<span
|
|
788
788
|
class="text"
|
|
789
789
|
>
|
|
790
|
-
|
|
790
|
+
template.scope.remediation
|
|
791
791
|
</span>
|
|
792
792
|
</div>
|
|
793
793
|
<div
|
|
@@ -800,7 +800,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
800
800
|
<span
|
|
801
801
|
class="text"
|
|
802
802
|
>
|
|
803
|
-
template.scope.
|
|
803
|
+
template.scope.ri
|
|
804
804
|
</span>
|
|
805
805
|
</div>
|
|
806
806
|
</div>
|
|
@@ -810,14 +810,14 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
810
810
|
class="six wide field"
|
|
811
811
|
>
|
|
812
812
|
<label>
|
|
813
|
-
|
|
813
|
+
template.form.subscope
|
|
814
814
|
</label>
|
|
815
815
|
<div
|
|
816
816
|
class="ui input"
|
|
817
817
|
>
|
|
818
818
|
<input
|
|
819
819
|
name="subscope"
|
|
820
|
-
placeholder="
|
|
820
|
+
placeholder="template.form.subscope.placeholder"
|
|
821
821
|
type="text"
|
|
822
822
|
value=""
|
|
823
823
|
/>
|
|
@@ -830,7 +830,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
830
830
|
<h4
|
|
831
831
|
class="ui header"
|
|
832
832
|
>
|
|
833
|
-
|
|
833
|
+
template.form.fieldGroups
|
|
834
834
|
</h4>
|
|
835
835
|
</div>
|
|
836
836
|
<div
|
|
@@ -859,7 +859,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
859
859
|
aria-hidden="true"
|
|
860
860
|
class="square plus icon"
|
|
861
861
|
/>
|
|
862
|
-
|
|
862
|
+
template.form.newGroup
|
|
863
863
|
</a>
|
|
864
864
|
</div>
|
|
865
865
|
</div>
|
|
@@ -904,14 +904,14 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
904
904
|
class="ui button"
|
|
905
905
|
type="button"
|
|
906
906
|
>
|
|
907
|
-
|
|
907
|
+
template.form.group.newField
|
|
908
908
|
</button>
|
|
909
909
|
</div>
|
|
910
910
|
<div
|
|
911
911
|
class="field"
|
|
912
912
|
>
|
|
913
913
|
<label>
|
|
914
|
-
|
|
914
|
+
template.form.group.name
|
|
915
915
|
</label>
|
|
916
916
|
<div
|
|
917
917
|
class="ui input"
|
|
@@ -987,7 +987,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
987
987
|
class="required field"
|
|
988
988
|
>
|
|
989
989
|
<label>
|
|
990
|
-
|
|
990
|
+
template.field.label
|
|
991
991
|
</label>
|
|
992
992
|
<div
|
|
993
993
|
class="ui small input"
|
|
@@ -1004,7 +1004,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1004
1004
|
class="disabled required field"
|
|
1005
1005
|
>
|
|
1006
1006
|
<label>
|
|
1007
|
-
|
|
1007
|
+
template.field.name
|
|
1008
1008
|
</label>
|
|
1009
1009
|
<div
|
|
1010
1010
|
class="ui small disabled fluid input"
|
|
@@ -1024,7 +1024,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1024
1024
|
class="field"
|
|
1025
1025
|
>
|
|
1026
1026
|
<label>
|
|
1027
|
-
|
|
1027
|
+
template.field.description
|
|
1028
1028
|
</label>
|
|
1029
1029
|
<textarea
|
|
1030
1030
|
name="content[0].fields[0].description"
|
|
@@ -1038,7 +1038,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1038
1038
|
class="required field"
|
|
1039
1039
|
>
|
|
1040
1040
|
<label>
|
|
1041
|
-
|
|
1041
|
+
template.field.widget
|
|
1042
1042
|
</label>
|
|
1043
1043
|
<div
|
|
1044
1044
|
aria-expanded="false"
|
|
@@ -1325,7 +1325,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1325
1325
|
class="required field"
|
|
1326
1326
|
>
|
|
1327
1327
|
<label>
|
|
1328
|
-
|
|
1328
|
+
template.field.type
|
|
1329
1329
|
</label>
|
|
1330
1330
|
<div
|
|
1331
1331
|
aria-expanded="false"
|
|
@@ -1341,7 +1341,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1341
1341
|
class="divider text"
|
|
1342
1342
|
role="alert"
|
|
1343
1343
|
>
|
|
1344
|
-
|
|
1344
|
+
template.field.type.string
|
|
1345
1345
|
</div>
|
|
1346
1346
|
<i
|
|
1347
1347
|
aria-hidden="true"
|
|
@@ -1360,7 +1360,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1360
1360
|
<span
|
|
1361
1361
|
class="text"
|
|
1362
1362
|
>
|
|
1363
|
-
|
|
1363
|
+
template.field.type.string
|
|
1364
1364
|
</span>
|
|
1365
1365
|
</div>
|
|
1366
1366
|
</div>
|
|
@@ -1370,7 +1370,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1370
1370
|
class="required field"
|
|
1371
1371
|
>
|
|
1372
1372
|
<label>
|
|
1373
|
-
|
|
1373
|
+
template.field.cardinality
|
|
1374
1374
|
</label>
|
|
1375
1375
|
<div
|
|
1376
1376
|
aria-expanded="false"
|
|
@@ -1386,7 +1386,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1386
1386
|
class="divider text"
|
|
1387
1387
|
role="alert"
|
|
1388
1388
|
>
|
|
1389
|
-
|
|
1389
|
+
template.field.cardinality.*
|
|
1390
1390
|
</div>
|
|
1391
1391
|
<i
|
|
1392
1392
|
aria-hidden="true"
|
|
@@ -1405,7 +1405,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1405
1405
|
<span
|
|
1406
1406
|
class="text"
|
|
1407
1407
|
>
|
|
1408
|
-
|
|
1408
|
+
template.field.cardinality.?
|
|
1409
1409
|
</span>
|
|
1410
1410
|
</div>
|
|
1411
1411
|
<div
|
|
@@ -1418,7 +1418,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1418
1418
|
<span
|
|
1419
1419
|
class="text"
|
|
1420
1420
|
>
|
|
1421
|
-
|
|
1421
|
+
template.field.cardinality.1
|
|
1422
1422
|
</span>
|
|
1423
1423
|
</div>
|
|
1424
1424
|
<div
|
|
@@ -1431,7 +1431,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1431
1431
|
<span
|
|
1432
1432
|
class="text"
|
|
1433
1433
|
>
|
|
1434
|
-
|
|
1434
|
+
template.field.cardinality.*
|
|
1435
1435
|
</span>
|
|
1436
1436
|
</div>
|
|
1437
1437
|
<div
|
|
@@ -1444,7 +1444,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1444
1444
|
<span
|
|
1445
1445
|
class="text"
|
|
1446
1446
|
>
|
|
1447
|
-
|
|
1447
|
+
template.field.cardinality.+
|
|
1448
1448
|
</span>
|
|
1449
1449
|
</div>
|
|
1450
1450
|
</div>
|
|
@@ -1473,7 +1473,6 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1473
1473
|
readonly=""
|
|
1474
1474
|
tabindex="0"
|
|
1475
1475
|
type="checkbox"
|
|
1476
|
-
value=""
|
|
1477
1476
|
/>
|
|
1478
1477
|
<label>
|
|
1479
1478
|
Editable
|
|
@@ -1496,7 +1495,6 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1496
1495
|
readonly=""
|
|
1497
1496
|
tabindex="0"
|
|
1498
1497
|
type="checkbox"
|
|
1499
|
-
value=""
|
|
1500
1498
|
/>
|
|
1501
1499
|
<label>
|
|
1502
1500
|
AI Suggestions
|
|
@@ -1520,10 +1518,9 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1520
1518
|
readonly=""
|
|
1521
1519
|
tabindex="0"
|
|
1522
1520
|
type="checkbox"
|
|
1523
|
-
value=""
|
|
1524
1521
|
/>
|
|
1525
1522
|
<label>
|
|
1526
|
-
|
|
1523
|
+
Sercheable
|
|
1527
1524
|
</label>
|
|
1528
1525
|
</div>
|
|
1529
1526
|
</div>
|
|
@@ -1533,7 +1530,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1533
1530
|
class="field"
|
|
1534
1531
|
>
|
|
1535
1532
|
<label>
|
|
1536
|
-
|
|
1533
|
+
template.field.values.default_value
|
|
1537
1534
|
</label>
|
|
1538
1535
|
<div
|
|
1539
1536
|
aria-expanded="false"
|
|
@@ -1580,7 +1577,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1580
1577
|
>
|
|
1581
1578
|
<label>
|
|
1582
1579
|
<label>
|
|
1583
|
-
|
|
1580
|
+
template.field.depends
|
|
1584
1581
|
</label>
|
|
1585
1582
|
</label>
|
|
1586
1583
|
<div
|
|
@@ -1613,7 +1610,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1613
1610
|
class="divider default text"
|
|
1614
1611
|
role="alert"
|
|
1615
1612
|
>
|
|
1616
|
-
|
|
1613
|
+
template.field.depends.on
|
|
1617
1614
|
</div>
|
|
1618
1615
|
<i
|
|
1619
1616
|
aria-hidden="true"
|
|
@@ -1662,7 +1659,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1662
1659
|
class="divider default text"
|
|
1663
1660
|
role="alert"
|
|
1664
1661
|
>
|
|
1665
|
-
|
|
1662
|
+
template.field.depends.to_be
|
|
1666
1663
|
</div>
|
|
1667
1664
|
<i
|
|
1668
1665
|
aria-hidden="true"
|
|
@@ -1689,7 +1686,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1689
1686
|
>
|
|
1690
1687
|
<label>
|
|
1691
1688
|
<label>
|
|
1692
|
-
|
|
1689
|
+
template.field.mandatory.depends
|
|
1693
1690
|
</label>
|
|
1694
1691
|
</label>
|
|
1695
1692
|
<div
|
|
@@ -1722,7 +1719,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1722
1719
|
class="divider default text"
|
|
1723
1720
|
role="alert"
|
|
1724
1721
|
>
|
|
1725
|
-
|
|
1722
|
+
template.field.mandatory.depends.on
|
|
1726
1723
|
</div>
|
|
1727
1724
|
<i
|
|
1728
1725
|
aria-hidden="true"
|
|
@@ -1771,7 +1768,7 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1771
1768
|
class="divider default text"
|
|
1772
1769
|
role="alert"
|
|
1773
1770
|
>
|
|
1774
|
-
|
|
1771
|
+
template.field.mandatory.depends.to_be
|
|
1775
1772
|
</div>
|
|
1776
1773
|
<i
|
|
1777
1774
|
aria-hidden="true"
|
|
@@ -1807,12 +1804,12 @@ exports[`<TemplateForm /> matches the latest snapshot for filled template 1`] =
|
|
|
1807
1804
|
<button
|
|
1808
1805
|
class="ui primary button"
|
|
1809
1806
|
>
|
|
1810
|
-
|
|
1807
|
+
actions.save
|
|
1811
1808
|
</button>
|
|
1812
1809
|
<button
|
|
1813
1810
|
class="ui button"
|
|
1814
1811
|
>
|
|
1815
|
-
|
|
1812
|
+
actions.cancel
|
|
1816
1813
|
</button>
|
|
1817
1814
|
</div>
|
|
1818
1815
|
</form>
|