@truedat/bg 7.2.1 → 7.2.3
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 +6 -6
- package/src/concepts/components/ConceptsUploadButton.js +1 -1
- package/src/concepts/components/__tests__/ConceptManageDomain.spec.js +28 -4
- package/src/concepts/components/__tests__/__snapshots__/ConceptForm.spec.js.snap +10 -12
- package/src/concepts/components/__tests__/__snapshots__/ConceptManageDomain.spec.js.snap +58 -1
- package/src/concepts/components/__tests__/__snapshots__/ConceptsBulkUpdate.spec.js.snap +10 -12
- package/src/concepts/components/__tests__/__snapshots__/SharedToForm.spec.js.snap +10 -12
- package/src/messages/en.js +2 -0
- package/src/messages/es.js +2 -0
- package/src/taxonomy/components/Domain.js +11 -71
- package/src/taxonomy/components/DomainCards.js +113 -0
- package/src/taxonomy/components/DomainContent.js +119 -0
- package/src/taxonomy/components/DomainTabs.js +92 -40
- package/src/taxonomy/components/Domains.js +144 -25
- package/src/taxonomy/components/DomainsActions.js +4 -4
- package/src/taxonomy/components/__tests__/Domain.spec.js +127 -2
- package/src/taxonomy/components/__tests__/DomainCards.spec.js +148 -0
- package/src/taxonomy/components/__tests__/DomainContent.spec.js +168 -0
- package/src/taxonomy/components/__tests__/DomainTabs.spec.js +108 -0
- package/src/taxonomy/components/__tests__/Domains.spec.js +149 -2
- package/src/taxonomy/components/__tests__/DomainsActions.spec.js +15 -8
- package/src/taxonomy/components/__tests__/__snapshots__/Domain.spec.js.snap +8 -0
- package/src/taxonomy/components/__tests__/__snapshots__/DomainCards.spec.js.snap +291 -0
- package/src/taxonomy/components/__tests__/__snapshots__/DomainContent.spec.js.snap +305 -0
- package/src/taxonomy/components/__tests__/__snapshots__/DomainTabs.spec.js.snap +40 -0
- package/src/taxonomy/components/__tests__/__snapshots__/Domains.spec.js.snap +74 -4
- package/src/taxonomy/components/__tests__/__snapshots__/DomainsActions.spec.js.snap +13 -22
- package/src/taxonomy/styles/domainCards.less +4 -0
- package/src/taxonomy/styles/domains.less +15 -0
|
@@ -33,8 +33,42 @@ exports[`<Domains /> matches the latest snapshot 1`] = `
|
|
|
33
33
|
class="row"
|
|
34
34
|
>
|
|
35
35
|
<div
|
|
36
|
-
class="sixteen wide column"
|
|
36
|
+
class="bottom aligned sixteen wide column taxonomy-domains-breadcrumb"
|
|
37
37
|
>
|
|
38
|
+
<div
|
|
39
|
+
class="ui icon buttons taxonomy-domains-breadcrumb-control"
|
|
40
|
+
>
|
|
41
|
+
<button
|
|
42
|
+
class="ui basic icon button"
|
|
43
|
+
data-position="top left"
|
|
44
|
+
data-tooltip="Hide Domains List"
|
|
45
|
+
>
|
|
46
|
+
<i
|
|
47
|
+
aria-hidden="true"
|
|
48
|
+
class="eye slash icon"
|
|
49
|
+
/>
|
|
50
|
+
</button>
|
|
51
|
+
<button
|
|
52
|
+
class="ui icon button"
|
|
53
|
+
data-position="top left"
|
|
54
|
+
data-tooltip="domains.list.minimize"
|
|
55
|
+
>
|
|
56
|
+
<i
|
|
57
|
+
aria-hidden="true"
|
|
58
|
+
class="compress icon"
|
|
59
|
+
/>
|
|
60
|
+
</button>
|
|
61
|
+
<button
|
|
62
|
+
class="ui basic icon button"
|
|
63
|
+
data-position="top left"
|
|
64
|
+
data-tooltip="domains.list.maximize"
|
|
65
|
+
>
|
|
66
|
+
<i
|
|
67
|
+
aria-hidden="true"
|
|
68
|
+
class="expand icon"
|
|
69
|
+
/>
|
|
70
|
+
</button>
|
|
71
|
+
</div>
|
|
38
72
|
<div
|
|
39
73
|
class="ui breadcrumb"
|
|
40
74
|
>
|
|
@@ -67,10 +101,10 @@ exports[`<Domains /> matches the latest snapshot 1`] = `
|
|
|
67
101
|
</div>
|
|
68
102
|
</div>
|
|
69
103
|
<div
|
|
70
|
-
class="stretched row"
|
|
104
|
+
class="stretched row taxonomy-domains-content"
|
|
71
105
|
>
|
|
72
106
|
<div
|
|
73
|
-
class="three wide column"
|
|
107
|
+
class="three wide column taxonomy-domains-grid-animation "
|
|
74
108
|
>
|
|
75
109
|
<div
|
|
76
110
|
class="ui segment"
|
|
@@ -94,13 +128,49 @@ exports[`<Domains /> matches the latest snapshot 1`] = `
|
|
|
94
128
|
class="plus icon"
|
|
95
129
|
/>
|
|
96
130
|
</button>
|
|
131
|
+
<div
|
|
132
|
+
class="menu transition hierarchyNodeFinderTreeSelector"
|
|
133
|
+
>
|
|
134
|
+
<div
|
|
135
|
+
class="ui fluid left icon input search notDropdownInput"
|
|
136
|
+
>
|
|
137
|
+
<input
|
|
138
|
+
type="text"
|
|
139
|
+
/>
|
|
140
|
+
<i
|
|
141
|
+
aria-hidden="true"
|
|
142
|
+
class="search icon"
|
|
143
|
+
/>
|
|
144
|
+
</div>
|
|
145
|
+
<div
|
|
146
|
+
class="scrolling menu transition notDropdownSelector"
|
|
147
|
+
>
|
|
148
|
+
<div
|
|
149
|
+
aria-selected="false"
|
|
150
|
+
class="item"
|
|
151
|
+
role="option"
|
|
152
|
+
>
|
|
153
|
+
<div
|
|
154
|
+
class="item-content"
|
|
155
|
+
style="margin-left: 0px; padding-left: 25px;"
|
|
156
|
+
>
|
|
157
|
+
<span
|
|
158
|
+
style="opacity: 1;"
|
|
159
|
+
title="other_domain"
|
|
160
|
+
>
|
|
161
|
+
other_domain
|
|
162
|
+
</span>
|
|
163
|
+
</div>
|
|
164
|
+
</div>
|
|
165
|
+
</div>
|
|
166
|
+
</div>
|
|
97
167
|
</div>
|
|
98
168
|
</div>
|
|
99
169
|
</div>
|
|
100
170
|
</div>
|
|
101
171
|
</div>
|
|
102
172
|
<div
|
|
103
|
-
class="thirteen wide column"
|
|
173
|
+
class="thirteen wide column taxonomy-domains-grid-animation "
|
|
104
174
|
/>
|
|
105
175
|
</div>
|
|
106
176
|
</div>
|
|
@@ -1,26 +1,17 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<DomainsActions /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"render": [Function],
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
content="domains.actions.create"
|
|
21
|
-
icon="cube"
|
|
22
|
-
primary={true}
|
|
23
|
-
to={[Function]}
|
|
24
|
-
/>
|
|
25
|
-
</Fragment>
|
|
4
|
+
<div>
|
|
5
|
+
<a
|
|
6
|
+
class="ui primary button"
|
|
7
|
+
href="/domains/new"
|
|
8
|
+
role="button"
|
|
9
|
+
>
|
|
10
|
+
<i
|
|
11
|
+
aria-hidden="true"
|
|
12
|
+
class="cube icon"
|
|
13
|
+
/>
|
|
14
|
+
New Domain
|
|
15
|
+
</a>
|
|
16
|
+
</div>
|
|
26
17
|
`;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.taxonomy-domains-breadcrumb{
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: flex-start;
|
|
4
|
+
padding-bottom: 0;
|
|
5
|
+
}
|
|
6
|
+
.ui.buttons.taxonomy-domains-breadcrumb-control{
|
|
7
|
+
margin-right: 15px;
|
|
8
|
+
}
|
|
9
|
+
.ui.grid > .row.taxonomy-domains-content{
|
|
10
|
+
padding-top: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.taxonomy-domains-grid-animation{
|
|
14
|
+
transition: width .2s linear;
|
|
15
|
+
}
|