@truedat/dq 4.49.5 → 4.49.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +4 -4
- package/src/components/NewRuleImplementation.js +9 -4
- package/src/components/RuleRoutes.js +4 -4
- package/src/components/__tests__/NewRuleImplementation.spec.js +52 -5
- package/src/components/__tests__/__fixtures__/NewRuleImplementationProps.js +7 -0
- package/src/components/__tests__/__fixtures__/newRuleImplementationHelper.js +0 -1
- package/src/components/__tests__/__snapshots__/NewRuleImplementation.spec.js.snap +83 -115
- package/src/components/ruleImplementationForm/InformationForm.js +38 -15
- package/src/components/ruleImplementationForm/RuleImplementationForm.js +297 -206
- package/src/components/ruleImplementationForm/RuleImplementationRawForm.js +64 -22
- package/src/components/ruleImplementationForm/__tests__/InformationForm.spec.js +59 -0
- package/src/components/ruleImplementationForm/__tests__/RuleImplementationForm.spec.js +19 -2
- package/src/components/ruleImplementationForm/__tests__/RuleImplementationRawForm.spec.js +17 -2
- package/src/components/ruleImplementationForm/__tests__/__snapshots__/InformationForm.spec.js.snap +260 -0
- package/src/components/ruleImplementationForm/__tests__/__snapshots__/RuleImplementationForm.spec.js.snap +46 -39
- package/src/components/ruleImplementationForm/__tests__/__snapshots__/RuleImplementationRawForm.spec.js.snap +8 -75
|
@@ -4,7 +4,7 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
4
4
|
<div>
|
|
5
5
|
<div
|
|
6
6
|
class="column"
|
|
7
|
-
style=""
|
|
7
|
+
style="visibility: visible;"
|
|
8
8
|
>
|
|
9
9
|
<div
|
|
10
10
|
class="stretched center aligned row"
|
|
@@ -17,7 +17,7 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
17
17
|
>
|
|
18
18
|
<i
|
|
19
19
|
aria-hidden="true"
|
|
20
|
-
class="info icon"
|
|
20
|
+
class="black info icon"
|
|
21
21
|
/>
|
|
22
22
|
<div
|
|
23
23
|
class="content"
|
|
@@ -34,7 +34,7 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
34
34
|
>
|
|
35
35
|
<i
|
|
36
36
|
aria-hidden="true"
|
|
37
|
-
class="database icon"
|
|
37
|
+
class="black database icon"
|
|
38
38
|
/>
|
|
39
39
|
<div
|
|
40
40
|
class="content"
|
|
@@ -51,7 +51,7 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
51
51
|
>
|
|
52
52
|
<i
|
|
53
53
|
aria-hidden="true"
|
|
54
|
-
class="user icon"
|
|
54
|
+
class="black user icon"
|
|
55
55
|
/>
|
|
56
56
|
<div
|
|
57
57
|
class="content"
|
|
@@ -68,7 +68,7 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
68
68
|
>
|
|
69
69
|
<i
|
|
70
70
|
aria-hidden="true"
|
|
71
|
-
class="setting icon"
|
|
71
|
+
class="black setting icon"
|
|
72
72
|
/>
|
|
73
73
|
<div
|
|
74
74
|
class="content"
|
|
@@ -81,11 +81,11 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
81
81
|
</div>
|
|
82
82
|
</div>
|
|
83
83
|
<div
|
|
84
|
-
class="step"
|
|
84
|
+
class="disabled step"
|
|
85
85
|
>
|
|
86
86
|
<i
|
|
87
87
|
aria-hidden="true"
|
|
88
|
-
class="grid layout icon"
|
|
88
|
+
class="grey grid layout icon"
|
|
89
89
|
/>
|
|
90
90
|
<div
|
|
91
91
|
class="content"
|
|
@@ -155,52 +155,59 @@ exports[`<RuleImplementationForm /> matches the latest snapshot 1`] = `
|
|
|
155
155
|
</div>
|
|
156
156
|
</div>
|
|
157
157
|
<div
|
|
158
|
-
class="field"
|
|
158
|
+
class="required field"
|
|
159
159
|
>
|
|
160
|
+
<label>
|
|
161
|
+
Domain
|
|
162
|
+
</label>
|
|
160
163
|
<div
|
|
161
|
-
class="
|
|
164
|
+
class="field"
|
|
162
165
|
>
|
|
163
|
-
<label>
|
|
164
|
-
Domain
|
|
165
|
-
</label>
|
|
166
166
|
<div
|
|
167
|
-
|
|
167
|
+
aria-expanded="false"
|
|
168
|
+
aria-multiselectable="false"
|
|
169
|
+
class="ui floating dropdown"
|
|
170
|
+
role="listbox"
|
|
171
|
+
tabindex="0"
|
|
168
172
|
>
|
|
173
|
+
<label>
|
|
174
|
+
Select a domain...
|
|
175
|
+
</label>
|
|
176
|
+
<i
|
|
177
|
+
aria-hidden="true"
|
|
178
|
+
class="dropdown icon"
|
|
179
|
+
/>
|
|
169
180
|
<div
|
|
170
|
-
|
|
171
|
-
class="ui fluid search selection dropdown"
|
|
172
|
-
name="domain"
|
|
173
|
-
role="combobox"
|
|
181
|
+
class="menu transition"
|
|
174
182
|
>
|
|
175
|
-
<input
|
|
176
|
-
aria-autocomplete="list"
|
|
177
|
-
autocomplete="off"
|
|
178
|
-
class="search"
|
|
179
|
-
tabindex="0"
|
|
180
|
-
type="text"
|
|
181
|
-
value=""
|
|
182
|
-
/>
|
|
183
183
|
<div
|
|
184
|
-
|
|
185
|
-
aria-live="polite"
|
|
186
|
-
class="divider default text"
|
|
187
|
-
role="alert"
|
|
184
|
+
class="ui left icon input search"
|
|
188
185
|
>
|
|
189
|
-
|
|
186
|
+
<input
|
|
187
|
+
type="text"
|
|
188
|
+
/>
|
|
189
|
+
<i
|
|
190
|
+
aria-hidden="true"
|
|
191
|
+
class="search icon"
|
|
192
|
+
/>
|
|
190
193
|
</div>
|
|
191
|
-
<i
|
|
192
|
-
aria-hidden="true"
|
|
193
|
-
class="dropdown icon"
|
|
194
|
-
/>
|
|
195
194
|
<div
|
|
196
|
-
|
|
197
|
-
class="menu transition"
|
|
198
|
-
role="listbox"
|
|
195
|
+
class="scrolling menu transition"
|
|
199
196
|
>
|
|
200
197
|
<div
|
|
201
|
-
|
|
198
|
+
aria-selected="false"
|
|
199
|
+
class="item"
|
|
200
|
+
role="option"
|
|
202
201
|
>
|
|
203
|
-
|
|
202
|
+
<div
|
|
203
|
+
style="margin-left: 0px;"
|
|
204
|
+
>
|
|
205
|
+
<i
|
|
206
|
+
aria-hidden="true"
|
|
207
|
+
class="icon"
|
|
208
|
+
/>
|
|
209
|
+
foo
|
|
210
|
+
</div>
|
|
204
211
|
</div>
|
|
205
212
|
</div>
|
|
206
213
|
</div>
|
|
@@ -55,70 +55,7 @@ exports[`<RuleImplementationRawForm /> matches the latest snapshot 1`] = `
|
|
|
55
55
|
</div>
|
|
56
56
|
<div
|
|
57
57
|
class="field"
|
|
58
|
-
|
|
59
|
-
<div
|
|
60
|
-
class="required field"
|
|
61
|
-
>
|
|
62
|
-
<label>
|
|
63
|
-
Domain
|
|
64
|
-
</label>
|
|
65
|
-
<div
|
|
66
|
-
class="field"
|
|
67
|
-
>
|
|
68
|
-
<div
|
|
69
|
-
aria-expanded="false"
|
|
70
|
-
class="ui fluid search selection dropdown"
|
|
71
|
-
name="domain"
|
|
72
|
-
role="combobox"
|
|
73
|
-
>
|
|
74
|
-
<input
|
|
75
|
-
aria-autocomplete="list"
|
|
76
|
-
autocomplete="off"
|
|
77
|
-
class="search"
|
|
78
|
-
tabindex="0"
|
|
79
|
-
type="text"
|
|
80
|
-
value=""
|
|
81
|
-
/>
|
|
82
|
-
<div
|
|
83
|
-
aria-atomic="true"
|
|
84
|
-
aria-live="polite"
|
|
85
|
-
class="divider text"
|
|
86
|
-
role="alert"
|
|
87
|
-
>
|
|
88
|
-
domain1
|
|
89
|
-
</div>
|
|
90
|
-
<i
|
|
91
|
-
aria-hidden="true"
|
|
92
|
-
class="dropdown icon clear"
|
|
93
|
-
/>
|
|
94
|
-
<div
|
|
95
|
-
aria-multiselectable="false"
|
|
96
|
-
class="menu transition"
|
|
97
|
-
role="listbox"
|
|
98
|
-
>
|
|
99
|
-
<div
|
|
100
|
-
aria-checked="true"
|
|
101
|
-
aria-selected="true"
|
|
102
|
-
class="active selected item"
|
|
103
|
-
role="option"
|
|
104
|
-
style="pointer-events: all;"
|
|
105
|
-
>
|
|
106
|
-
<div
|
|
107
|
-
class="text"
|
|
108
|
-
style="margin-left: 0px;"
|
|
109
|
-
>
|
|
110
|
-
<i
|
|
111
|
-
aria-hidden="true"
|
|
112
|
-
class="icon"
|
|
113
|
-
/>
|
|
114
|
-
domain1
|
|
115
|
-
</div>
|
|
116
|
-
</div>
|
|
117
|
-
</div>
|
|
118
|
-
</div>
|
|
119
|
-
</div>
|
|
120
|
-
</div>
|
|
121
|
-
</div>
|
|
58
|
+
/>
|
|
122
59
|
<div
|
|
123
60
|
class="ui segment"
|
|
124
61
|
>
|
|
@@ -474,18 +411,14 @@ AND p.nombre <> "
|
|
|
474
411
|
rows="4"
|
|
475
412
|
/>
|
|
476
413
|
</div>
|
|
477
|
-
<
|
|
478
|
-
class="disabled
|
|
414
|
+
<button
|
|
415
|
+
class="ui primary disabled right floated button"
|
|
416
|
+
disabled=""
|
|
417
|
+
tabindex="-1"
|
|
418
|
+
type="submit"
|
|
479
419
|
>
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
disabled=""
|
|
483
|
-
tabindex="-1"
|
|
484
|
-
type="submit"
|
|
485
|
-
>
|
|
486
|
-
Save
|
|
487
|
-
</button>
|
|
488
|
-
</div>
|
|
420
|
+
Save
|
|
421
|
+
</button>
|
|
489
422
|
<button
|
|
490
423
|
class="ui secondary right floated button"
|
|
491
424
|
>
|