@truedat/dq 8.10.8 → 8.11.2
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 +3 -3
- package/src/components/ImplementationsRoutes.js +13 -3
- package/src/components/RuleEventRow.js +34 -19
- package/src/components/RuleImplementationEventRow.js +34 -11
- package/src/components/__tests__/ImplementationsRoutes.spec.js +128 -0
- package/src/components/__tests__/RuleEventRow.spec.js +8 -1
- package/src/components/__tests__/RuleEvents.spec.js +5 -4
- package/src/components/__tests__/RuleImplementationEventRow.spec.js +54 -0
- package/src/components/__tests__/__snapshots__/ImplementationsRoutes.spec.js.snap +30 -0
- package/src/components/__tests__/__snapshots__/RuleEventRow.spec.js.snap +11 -1
- package/src/components/__tests__/__snapshots__/RuleEvents.spec.js.snap +12 -2
- package/src/components/__tests__/__snapshots__/RuleImplementationEventRow.spec.js.snap +53 -0
- package/src/components/__tests__/__snapshots__/RuleImplementationEvents.spec.js.snap +20 -20
- package/src/selectors/__tests__/getParsedEvents.spec.js +1898 -69
- package/src/selectors/getParsedEvents.js +421 -116
- package/src/styles/auditEventVia.less +7 -0
|
@@ -21,6 +21,11 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
21
21
|
class="user"
|
|
22
22
|
/>
|
|
23
23
|
|
|
24
|
+
<span>
|
|
25
|
+
ruleImplementations.events.action_restored
|
|
26
|
+
</span>
|
|
27
|
+
|
|
28
|
+
|
|
24
29
|
<div
|
|
25
30
|
class="date"
|
|
26
31
|
>
|
|
@@ -31,11 +36,6 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
31
36
|
</time>
|
|
32
37
|
</div>
|
|
33
38
|
</div>
|
|
34
|
-
<div
|
|
35
|
-
class="text extra"
|
|
36
|
-
>
|
|
37
|
-
ruleImplementations.events.action_restored
|
|
38
|
-
</div>
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
41
|
<div
|
|
@@ -51,6 +51,11 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
51
51
|
class="user"
|
|
52
52
|
/>
|
|
53
53
|
|
|
54
|
+
<span>
|
|
55
|
+
ruleImplementations.events.action_deprecated
|
|
56
|
+
</span>
|
|
57
|
+
|
|
58
|
+
|
|
54
59
|
<div
|
|
55
60
|
class="date"
|
|
56
61
|
>
|
|
@@ -61,11 +66,6 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
61
66
|
</time>
|
|
62
67
|
</div>
|
|
63
68
|
</div>
|
|
64
|
-
<div
|
|
65
|
-
class="text extra"
|
|
66
|
-
>
|
|
67
|
-
ruleImplementations.events.action_deprecated
|
|
68
|
-
</div>
|
|
69
69
|
</div>
|
|
70
70
|
</div>
|
|
71
71
|
<div
|
|
@@ -81,6 +81,11 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
81
81
|
class="user"
|
|
82
82
|
/>
|
|
83
83
|
|
|
84
|
+
<span>
|
|
85
|
+
ruleImplementations.events.action_changed
|
|
86
|
+
</span>
|
|
87
|
+
|
|
88
|
+
|
|
84
89
|
<div
|
|
85
90
|
class="date"
|
|
86
91
|
>
|
|
@@ -91,11 +96,6 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
91
96
|
</time>
|
|
92
97
|
</div>
|
|
93
98
|
</div>
|
|
94
|
-
<div
|
|
95
|
-
class="text extra"
|
|
96
|
-
>
|
|
97
|
-
ruleImplementations.events.action_changed
|
|
98
|
-
</div>
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<div
|
|
@@ -111,6 +111,11 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
111
111
|
class="user"
|
|
112
112
|
/>
|
|
113
113
|
|
|
114
|
+
<span>
|
|
115
|
+
ruleImplementations.events.action_domain_updated_with_names
|
|
116
|
+
</span>
|
|
117
|
+
|
|
118
|
+
|
|
114
119
|
<div
|
|
115
120
|
class="date"
|
|
116
121
|
>
|
|
@@ -121,11 +126,6 @@ exports[`<RuleImplementationEvents /> matches the latest snapshot 1`] = `
|
|
|
121
126
|
</time>
|
|
122
127
|
</div>
|
|
123
128
|
</div>
|
|
124
|
-
<div
|
|
125
|
-
class="text extra"
|
|
126
|
-
>
|
|
127
|
-
ruleImplementations.events.action_domain_updated_with_names
|
|
128
|
-
</div>
|
|
129
129
|
</div>
|
|
130
130
|
</div>
|
|
131
131
|
</div>
|