@truedat/bg 7.0.4 → 7.0.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/package.json +6 -6
- package/src/concepts/components/DomainConcepts.js +1 -4
- package/src/concepts/components/__tests__/__snapshots__/ConceptForm.spec.js.snap +2 -2
- package/src/concepts/components/__tests__/__snapshots__/ConceptsBulkUpdate.spec.js.snap +2 -2
- package/src/concepts/components/__tests__/__snapshots__/SharedToForm.spec.js.snap +2 -2
- package/src/hooks/useDomains.js +77 -0
- package/src/messages/en.js +6 -0
- package/src/messages/es.js +5 -0
- package/src/reducers/index.js +0 -1
- package/src/taxonomy/components/AddDomainMember.js +1 -7
- package/src/taxonomy/components/Domain.js +80 -84
- package/src/taxonomy/components/DomainActions.js +57 -84
- package/src/taxonomy/components/DomainCrumbs.js +51 -43
- package/src/taxonomy/components/DomainDetail.js +88 -46
- package/src/taxonomy/components/DomainForm.js +34 -36
- package/src/taxonomy/components/DomainImplementations.js +1 -4
- package/src/taxonomy/components/DomainMembers.js +8 -1
- package/src/taxonomy/components/DomainRoutes.js +8 -55
- package/src/taxonomy/components/DomainStructures.js +1 -4
- package/src/taxonomy/components/DomainTabs.js +22 -29
- package/src/taxonomy/components/Domains.js +66 -27
- package/src/taxonomy/components/DomainsActions.js +5 -14
- package/src/taxonomy/components/EditDomain.js +35 -21
- package/src/taxonomy/components/NewDomain.js +47 -22
- package/src/taxonomy/components/__tests__/Domain.spec.js +17 -8
- package/src/taxonomy/components/__tests__/DomainActions.spec.js +62 -7
- package/src/taxonomy/components/__tests__/DomainCrumbs.spec.js +18 -5
- package/src/taxonomy/components/__tests__/DomainDetail.spec.js +87 -4
- package/src/taxonomy/components/__tests__/DomainForm.spec.js +189 -4
- package/src/taxonomy/components/__tests__/DomainMembers.spec.js +1 -3
- package/src/taxonomy/components/__tests__/DomainStructures.spec.js +3 -2
- package/src/taxonomy/components/__tests__/Domains.spec.js +103 -6
- package/src/taxonomy/components/__tests__/EditDomain.spec.js +56 -5
- package/src/taxonomy/components/__tests__/NewDomain.spec.js +65 -6
- package/src/taxonomy/components/__tests__/__snapshots__/AddDomainMember.spec.js.snap +0 -10
- package/src/taxonomy/components/__tests__/__snapshots__/Domain.spec.js.snap +35 -48
- package/src/taxonomy/components/__tests__/__snapshots__/DomainActions.spec.js.snap +56 -1
- package/src/taxonomy/components/__tests__/__snapshots__/DomainCrumbs.spec.js.snap +14 -2
- package/src/taxonomy/components/__tests__/__snapshots__/DomainDetail.spec.js.snap +93 -40
- package/src/taxonomy/components/__tests__/__snapshots__/DomainForm.spec.js.snap +7 -7
- package/src/taxonomy/components/__tests__/__snapshots__/Domains.spec.js.snap +75 -10
- package/src/taxonomy/components/__tests__/__snapshots__/DomainsActions.spec.js.snap +20 -1
- package/src/taxonomy/components/__tests__/__snapshots__/EditDomain.spec.js.snap +192 -30
- package/src/taxonomy/components/__tests__/__snapshots__/NewDomain.spec.js.snap +405 -28
- package/src/taxonomy/components/index.js +1 -2
- package/src/taxonomy/index.js +0 -1
- package/src/taxonomy/routines.js +0 -10
- package/src/taxonomy/sagas/index.js +2 -21
- package/src/taxonomy/selectors/getDomainsConcept.js +0 -13
- package/src/taxonomy/selectors/index.js +0 -16
- package/src/taxonomy/components/DomainCards.js +0 -97
- package/src/taxonomy/components/DomainLoader.js +0 -60
- package/src/taxonomy/components/DomainMembersLoader.js +0 -44
- package/src/taxonomy/components/DomainsLoader.js +0 -40
- package/src/taxonomy/components/__tests__/DomainCards.spec.js +0 -30
- package/src/taxonomy/components/__tests__/DomainsLoader.spec.js +0 -38
- package/src/taxonomy/components/__tests__/__snapshots__/DomainCards.spec.js.snap +0 -160
- package/src/taxonomy/reducers/__tests__/domain.spec.js +0 -58
- package/src/taxonomy/reducers/__tests__/domainConceptLoading.spec.js +0 -26
- package/src/taxonomy/reducers/__tests__/domainCreating.spec.js +0 -24
- package/src/taxonomy/reducers/__tests__/domainLoading.spec.js +0 -22
- package/src/taxonomy/reducers/__tests__/domainMembersActions.spec.js +0 -38
- package/src/taxonomy/reducers/__tests__/domainMembersLoading.spec.js +0 -26
- package/src/taxonomy/reducers/__tests__/domainRedirect.spec.js +0 -36
- package/src/taxonomy/reducers/__tests__/domainUpdating.spec.js +0 -24
- package/src/taxonomy/reducers/__tests__/domains.spec.js +0 -30
- package/src/taxonomy/reducers/__tests__/domainsActions.spec.js +0 -36
- package/src/taxonomy/reducers/__tests__/domainsConcept.spec.js +0 -30
- package/src/taxonomy/reducers/__tests__/domainsFilter.spec.js +0 -41
- package/src/taxonomy/reducers/__tests__/domainsLoading.spec.js +0 -22
- package/src/taxonomy/reducers/domain.js +0 -32
- package/src/taxonomy/reducers/domainActions.js +0 -19
- package/src/taxonomy/reducers/domainCreating.js +0 -14
- package/src/taxonomy/reducers/domainLoading.js +0 -14
- package/src/taxonomy/reducers/domainMembersActions.js +0 -22
- package/src/taxonomy/reducers/domainMembersLoading.js +0 -12
- package/src/taxonomy/reducers/domainRedirect.js +0 -25
- package/src/taxonomy/reducers/domainUpdating.js +0 -14
- package/src/taxonomy/reducers/domains.js +0 -19
- package/src/taxonomy/reducers/domainsActions.js +0 -20
- package/src/taxonomy/reducers/domainsConcept.js +0 -19
- package/src/taxonomy/reducers/domainsConceptLoading.js +0 -12
- package/src/taxonomy/reducers/domainsFilter.js +0 -24
- package/src/taxonomy/reducers/domainsLoading.js +0 -12
- package/src/taxonomy/reducers/index.js +0 -31
- package/src/taxonomy/sagas/__tests__/fetchDomain.spec.js +0 -69
- package/src/taxonomy/sagas/__tests__/fetchDomains.spec.js +0 -90
- package/src/taxonomy/sagas/createDomain.js +0 -27
- package/src/taxonomy/sagas/deleteDomain.js +0 -34
- package/src/taxonomy/sagas/fetchDomain.js +0 -30
- package/src/taxonomy/sagas/fetchDomains.js +0 -37
- package/src/taxonomy/sagas/updateDomain.js +0 -30
- package/src/taxonomy/selectors/__tests__/domainParentOptionsSelector.spec.js +0 -24
- package/src/taxonomy/selectors/__tests__/getDomainActions.spec.js +0 -46
- package/src/taxonomy/selectors/__tests__/getDomainGroups.spec.js +0 -17
- package/src/taxonomy/selectors/__tests__/getDomainTypes.spec.js +0 -14
- package/src/taxonomy/selectors/domainParentOptionsSelector.js +0 -12
- package/src/taxonomy/selectors/getDomainActions.js +0 -32
- package/src/taxonomy/selectors/getDomainGroups.js +0 -11
|
@@ -4,6 +4,61 @@ exports[`<DomainActions /> matches the latest snapshot 1`] = `
|
|
|
4
4
|
<div>
|
|
5
5
|
<div
|
|
6
6
|
class="actions"
|
|
7
|
-
|
|
7
|
+
>
|
|
8
|
+
<a
|
|
9
|
+
class="ui primary button"
|
|
10
|
+
href="/domains/3/edit"
|
|
11
|
+
method="POST"
|
|
12
|
+
order="1"
|
|
13
|
+
role="button"
|
|
14
|
+
>
|
|
15
|
+
<i
|
|
16
|
+
aria-hidden="true"
|
|
17
|
+
class="cube icon"
|
|
18
|
+
/>
|
|
19
|
+
CreateDomain
|
|
20
|
+
</a>
|
|
21
|
+
<div
|
|
22
|
+
aria-expanded="false"
|
|
23
|
+
class="ui floating dropdown button icon group-actions"
|
|
24
|
+
role="listbox"
|
|
25
|
+
tabindex="0"
|
|
26
|
+
>
|
|
27
|
+
<i
|
|
28
|
+
aria-hidden="true"
|
|
29
|
+
class="ellipsis vertical icon"
|
|
30
|
+
/>
|
|
31
|
+
<div
|
|
32
|
+
class="left menu transition"
|
|
33
|
+
>
|
|
34
|
+
<a
|
|
35
|
+
aria-checked="false"
|
|
36
|
+
aria-selected="true"
|
|
37
|
+
class="selected item"
|
|
38
|
+
href="/domains/3/new"
|
|
39
|
+
id="3"
|
|
40
|
+
method="PATCH"
|
|
41
|
+
order="2"
|
|
42
|
+
role="option"
|
|
43
|
+
style="pointer-events: all;"
|
|
44
|
+
>
|
|
45
|
+
<i
|
|
46
|
+
aria-hidden="true"
|
|
47
|
+
class="edit icon"
|
|
48
|
+
/>
|
|
49
|
+
EditDomain
|
|
50
|
+
</a>
|
|
51
|
+
<button
|
|
52
|
+
class="ui negative button"
|
|
53
|
+
>
|
|
54
|
+
<i
|
|
55
|
+
aria-hidden="true"
|
|
56
|
+
class="trash icon"
|
|
57
|
+
/>
|
|
58
|
+
ActionDelete
|
|
59
|
+
</button>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
8
63
|
</div>
|
|
9
64
|
`;
|
|
@@ -19,7 +19,7 @@ exports[`<DomainCrumbs /> matches the latest snapshot 1`] = `
|
|
|
19
19
|
class="section"
|
|
20
20
|
href="/domains/1"
|
|
21
21
|
>
|
|
22
|
-
|
|
22
|
+
foo
|
|
23
23
|
</a>
|
|
24
24
|
<i
|
|
25
25
|
aria-hidden="true"
|
|
@@ -28,7 +28,19 @@ exports[`<DomainCrumbs /> matches the latest snapshot 1`] = `
|
|
|
28
28
|
<a
|
|
29
29
|
class="section"
|
|
30
30
|
href="/domains/2"
|
|
31
|
+
>
|
|
32
|
+
bar
|
|
33
|
+
</a>
|
|
34
|
+
<i
|
|
35
|
+
aria-hidden="true"
|
|
36
|
+
class="right angle icon divider"
|
|
31
37
|
/>
|
|
38
|
+
<a
|
|
39
|
+
class="section"
|
|
40
|
+
href="/domains/3"
|
|
41
|
+
>
|
|
42
|
+
domain
|
|
43
|
+
</a>
|
|
32
44
|
<i
|
|
33
45
|
aria-hidden="true"
|
|
34
46
|
class="right angle icon divider"
|
|
@@ -36,7 +48,7 @@ exports[`<DomainCrumbs /> matches the latest snapshot 1`] = `
|
|
|
36
48
|
<div
|
|
37
49
|
class="active section"
|
|
38
50
|
>
|
|
39
|
-
|
|
51
|
+
Domain
|
|
40
52
|
</div>
|
|
41
53
|
</div>
|
|
42
54
|
</div>
|
|
@@ -1,47 +1,100 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<DomainDetail /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="ui grid"
|
|
7
|
+
>
|
|
8
|
+
<div
|
|
9
|
+
class="row"
|
|
8
10
|
>
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
+
<div
|
|
12
|
+
class="eight wide column"
|
|
11
13
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
14
|
+
<h2
|
|
15
|
+
class="ui header"
|
|
16
|
+
>
|
|
17
|
+
<i
|
|
18
|
+
aria-hidden="true"
|
|
19
|
+
class="cube icon"
|
|
20
|
+
/>
|
|
21
|
+
<div
|
|
22
|
+
class="content"
|
|
23
|
+
>
|
|
24
|
+
element_7
|
|
25
|
+
<div
|
|
26
|
+
class="sub header"
|
|
27
|
+
>
|
|
28
|
+
Domain
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</h2>
|
|
32
|
+
</div>
|
|
33
|
+
<div
|
|
34
|
+
class="right aligned eight wide column"
|
|
35
|
+
>
|
|
36
|
+
<div
|
|
37
|
+
class="actions"
|
|
38
|
+
>
|
|
39
|
+
<a
|
|
40
|
+
class="ui primary button"
|
|
41
|
+
href="/domains/7/new"
|
|
42
|
+
input="[object Object]"
|
|
43
|
+
method="POST"
|
|
44
|
+
order="1"
|
|
45
|
+
role="button"
|
|
46
|
+
>
|
|
47
|
+
<i
|
|
48
|
+
aria-hidden="true"
|
|
49
|
+
class="cube icon"
|
|
50
|
+
/>
|
|
51
|
+
New Subdomain
|
|
52
|
+
</a>
|
|
53
|
+
<div
|
|
54
|
+
aria-expanded="false"
|
|
55
|
+
class="ui floating dropdown button icon group-actions"
|
|
56
|
+
role="listbox"
|
|
57
|
+
tabindex="0"
|
|
58
|
+
>
|
|
59
|
+
<i
|
|
60
|
+
aria-hidden="true"
|
|
61
|
+
class="ellipsis vertical icon"
|
|
62
|
+
/>
|
|
63
|
+
<div
|
|
64
|
+
class="left menu transition"
|
|
65
|
+
>
|
|
66
|
+
<a
|
|
67
|
+
aria-checked="false"
|
|
68
|
+
aria-selected="true"
|
|
69
|
+
class="selected item"
|
|
70
|
+
href="/domains/7/edit"
|
|
71
|
+
id="7"
|
|
72
|
+
input="[object Object]"
|
|
73
|
+
method="PATCH"
|
|
74
|
+
order="2"
|
|
75
|
+
role="option"
|
|
76
|
+
style="pointer-events: all;"
|
|
77
|
+
>
|
|
78
|
+
<i
|
|
79
|
+
aria-hidden="true"
|
|
80
|
+
class="edit icon"
|
|
81
|
+
/>
|
|
82
|
+
Edit
|
|
83
|
+
</a>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
<div
|
|
90
|
+
class="row"
|
|
27
91
|
>
|
|
28
|
-
<
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"order": 2,
|
|
37
|
-
},
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
/>
|
|
41
|
-
</GridColumn>
|
|
42
|
-
</Grid>
|
|
43
|
-
<p>
|
|
44
|
-
desc
|
|
45
|
-
</p>
|
|
46
|
-
</Fragment>
|
|
92
|
+
<div
|
|
93
|
+
class="column"
|
|
94
|
+
>
|
|
95
|
+
el padre es element_6
|
|
96
|
+
</div>
|
|
97
|
+
</div>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
47
100
|
`;
|
|
@@ -20,7 +20,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
20
20
|
autocomplete="off"
|
|
21
21
|
id="name"
|
|
22
22
|
name="name"
|
|
23
|
-
placeholder="
|
|
23
|
+
placeholder="Name-placeholder"
|
|
24
24
|
required=""
|
|
25
25
|
type="text"
|
|
26
26
|
value="nn"
|
|
@@ -33,7 +33,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
33
33
|
<label
|
|
34
34
|
for="external_id"
|
|
35
35
|
>
|
|
36
|
-
|
|
36
|
+
External_id
|
|
37
37
|
</label>
|
|
38
38
|
<div
|
|
39
39
|
class="ui input"
|
|
@@ -42,7 +42,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
42
42
|
autocomplete="off"
|
|
43
43
|
id="external_id"
|
|
44
44
|
name="external_id"
|
|
45
|
-
placeholder="
|
|
45
|
+
placeholder="External_id-placeholder"
|
|
46
46
|
required=""
|
|
47
47
|
type="text"
|
|
48
48
|
value="foo"
|
|
@@ -53,7 +53,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
53
53
|
class="field"
|
|
54
54
|
>
|
|
55
55
|
<label>
|
|
56
|
-
|
|
56
|
+
Domain_group
|
|
57
57
|
</label>
|
|
58
58
|
<div
|
|
59
59
|
aria-expanded="false"
|
|
@@ -75,7 +75,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
75
75
|
class="divider default text"
|
|
76
76
|
role="alert"
|
|
77
77
|
>
|
|
78
|
-
|
|
78
|
+
Domain_group-placeholder
|
|
79
79
|
</div>
|
|
80
80
|
<i
|
|
81
81
|
aria-hidden="true"
|
|
@@ -119,7 +119,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
119
119
|
class="divider default text"
|
|
120
120
|
role="alert"
|
|
121
121
|
>
|
|
122
|
-
|
|
122
|
+
Type-placeholder
|
|
123
123
|
</div>
|
|
124
124
|
<i
|
|
125
125
|
aria-hidden="true"
|
|
@@ -152,7 +152,7 @@ exports[`<DomainForm /> matches the latest snapshot 1`] = `
|
|
|
152
152
|
<textarea
|
|
153
153
|
autocomplete="off"
|
|
154
154
|
name="description"
|
|
155
|
-
placeholder="
|
|
155
|
+
placeholder="Description-placeholder"
|
|
156
156
|
rows="3"
|
|
157
157
|
>
|
|
158
158
|
dd
|
|
@@ -27,17 +27,82 @@ exports[`<Domains /> matches the latest snapshot 1`] = `
|
|
|
27
27
|
class="ui bottom attached segment"
|
|
28
28
|
>
|
|
29
29
|
<div
|
|
30
|
-
class="ui
|
|
30
|
+
class="ui grid"
|
|
31
31
|
>
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
32
|
+
<div
|
|
33
|
+
class="row"
|
|
34
|
+
>
|
|
35
|
+
<div
|
|
36
|
+
class="sixteen wide column"
|
|
37
|
+
>
|
|
38
|
+
<div
|
|
39
|
+
class="ui breadcrumb"
|
|
40
|
+
>
|
|
41
|
+
<a
|
|
42
|
+
class="section"
|
|
43
|
+
href="/domains"
|
|
44
|
+
>
|
|
45
|
+
Taxonomy
|
|
46
|
+
</a>
|
|
47
|
+
<i
|
|
48
|
+
aria-hidden="true"
|
|
49
|
+
class="right angle icon divider"
|
|
50
|
+
/>
|
|
51
|
+
<a
|
|
52
|
+
class="section"
|
|
53
|
+
href="/domains/2"
|
|
54
|
+
>
|
|
55
|
+
element_2
|
|
56
|
+
</a>
|
|
57
|
+
<i
|
|
58
|
+
aria-hidden="true"
|
|
59
|
+
class="right angle icon divider"
|
|
60
|
+
/>
|
|
61
|
+
<div
|
|
62
|
+
class="active section"
|
|
63
|
+
>
|
|
64
|
+
element_3
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
</div>
|
|
69
|
+
<div
|
|
70
|
+
class="stretched row"
|
|
71
|
+
>
|
|
72
|
+
<div
|
|
73
|
+
class="three wide column"
|
|
74
|
+
>
|
|
75
|
+
<div
|
|
76
|
+
class="ui segment"
|
|
77
|
+
>
|
|
78
|
+
<div
|
|
79
|
+
class="ui grid"
|
|
80
|
+
>
|
|
81
|
+
<div
|
|
82
|
+
class="row"
|
|
83
|
+
>
|
|
84
|
+
<div
|
|
85
|
+
class="sixteen wide column"
|
|
86
|
+
>
|
|
87
|
+
<button
|
|
88
|
+
class="ui icon secondary right floated button nodeOpenActions"
|
|
89
|
+
data-position="bottom right"
|
|
90
|
+
data-tooltip="Open all"
|
|
91
|
+
>
|
|
92
|
+
<i
|
|
93
|
+
aria-hidden="true"
|
|
94
|
+
class="plus icon"
|
|
95
|
+
/>
|
|
96
|
+
</button>
|
|
97
|
+
</div>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
</div>
|
|
101
|
+
</div>
|
|
102
|
+
<div
|
|
103
|
+
class="thirteen wide column"
|
|
104
|
+
/>
|
|
105
|
+
</div>
|
|
41
106
|
</div>
|
|
42
107
|
</div>
|
|
43
108
|
</div>
|
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`<DomainsActions /> matches the latest snapshot 1`] = `
|
|
4
4
|
<Fragment>
|
|
5
|
-
<
|
|
5
|
+
<Button
|
|
6
|
+
as={
|
|
7
|
+
{
|
|
8
|
+
"$$typeof": Symbol(react.forward_ref),
|
|
9
|
+
"displayName": "Link",
|
|
10
|
+
"propTypes": {
|
|
11
|
+
"innerRef": [Function],
|
|
12
|
+
"onClick": [Function],
|
|
13
|
+
"replace": [Function],
|
|
14
|
+
"target": [Function],
|
|
15
|
+
"to": [Function],
|
|
16
|
+
},
|
|
17
|
+
"render": [Function],
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
content="domains.actions.create"
|
|
21
|
+
icon="cube"
|
|
22
|
+
primary={true}
|
|
23
|
+
to={[Function]}
|
|
24
|
+
/>
|
|
6
25
|
</Fragment>
|
|
7
26
|
`;
|
|
@@ -1,37 +1,199 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<EditDomain /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
/>
|
|
8
|
-
<Container
|
|
9
|
-
as={[Function]}
|
|
10
|
-
text={true}
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="ui segment ui text container"
|
|
11
7
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
8
|
+
<h2
|
|
9
|
+
class="ui header"
|
|
14
10
|
>
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
<i
|
|
12
|
+
aria-hidden="true"
|
|
13
|
+
class="cube icon"
|
|
18
14
|
/>
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
</
|
|
24
|
-
</
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
15
|
+
<div
|
|
16
|
+
class="content"
|
|
17
|
+
>
|
|
18
|
+
Edit domain
|
|
19
|
+
</div>
|
|
20
|
+
</h2>
|
|
21
|
+
<form
|
|
22
|
+
class="ui form"
|
|
23
|
+
>
|
|
24
|
+
<div
|
|
25
|
+
class="required field"
|
|
26
|
+
>
|
|
27
|
+
<label
|
|
28
|
+
for="name"
|
|
29
|
+
>
|
|
30
|
+
Name
|
|
31
|
+
</label>
|
|
32
|
+
<div
|
|
33
|
+
class="ui input"
|
|
34
|
+
>
|
|
35
|
+
<input
|
|
36
|
+
autocomplete="off"
|
|
37
|
+
id="name"
|
|
38
|
+
name="name"
|
|
39
|
+
placeholder="Name-placeholder"
|
|
40
|
+
required=""
|
|
41
|
+
type="text"
|
|
42
|
+
value="nn"
|
|
43
|
+
/>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div
|
|
47
|
+
class="required field"
|
|
48
|
+
>
|
|
49
|
+
<label
|
|
50
|
+
for="external_id"
|
|
51
|
+
>
|
|
52
|
+
External_id
|
|
53
|
+
</label>
|
|
54
|
+
<div
|
|
55
|
+
class="ui input"
|
|
56
|
+
>
|
|
57
|
+
<input
|
|
58
|
+
autocomplete="off"
|
|
59
|
+
id="external_id"
|
|
60
|
+
name="external_id"
|
|
61
|
+
placeholder="External_id-placeholder"
|
|
62
|
+
required=""
|
|
63
|
+
type="text"
|
|
64
|
+
value=""
|
|
65
|
+
/>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
<div
|
|
69
|
+
class="field"
|
|
70
|
+
>
|
|
71
|
+
<label>
|
|
72
|
+
Domain_group
|
|
73
|
+
</label>
|
|
74
|
+
<div
|
|
75
|
+
aria-expanded="false"
|
|
76
|
+
class="ui basic search selection dropdown"
|
|
77
|
+
name="domain_group"
|
|
78
|
+
role="combobox"
|
|
79
|
+
>
|
|
80
|
+
<input
|
|
81
|
+
aria-autocomplete="list"
|
|
82
|
+
autocomplete="off"
|
|
83
|
+
class="search"
|
|
84
|
+
tabindex="0"
|
|
85
|
+
type="text"
|
|
86
|
+
value=""
|
|
87
|
+
/>
|
|
88
|
+
<div
|
|
89
|
+
aria-atomic="true"
|
|
90
|
+
aria-live="polite"
|
|
91
|
+
class="divider default text"
|
|
92
|
+
role="alert"
|
|
93
|
+
>
|
|
94
|
+
Domain_group-placeholder
|
|
95
|
+
</div>
|
|
96
|
+
<i
|
|
97
|
+
aria-hidden="true"
|
|
98
|
+
class="dropdown icon"
|
|
99
|
+
/>
|
|
100
|
+
<div
|
|
101
|
+
class="menu transition"
|
|
102
|
+
role="listbox"
|
|
103
|
+
>
|
|
104
|
+
<div
|
|
105
|
+
class="message"
|
|
106
|
+
>
|
|
107
|
+
No results found.
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
<div
|
|
113
|
+
class="field"
|
|
114
|
+
>
|
|
115
|
+
<label>
|
|
116
|
+
Type
|
|
117
|
+
</label>
|
|
118
|
+
<div
|
|
119
|
+
aria-expanded="false"
|
|
120
|
+
class="ui basic search selection dropdown"
|
|
121
|
+
name="type"
|
|
122
|
+
role="combobox"
|
|
123
|
+
>
|
|
124
|
+
<input
|
|
125
|
+
aria-autocomplete="list"
|
|
126
|
+
autocomplete="off"
|
|
127
|
+
class="search"
|
|
128
|
+
tabindex="0"
|
|
129
|
+
type="text"
|
|
130
|
+
value=""
|
|
131
|
+
/>
|
|
132
|
+
<div
|
|
133
|
+
aria-atomic="true"
|
|
134
|
+
aria-live="polite"
|
|
135
|
+
class="divider default text"
|
|
136
|
+
role="alert"
|
|
137
|
+
>
|
|
138
|
+
Type-placeholder
|
|
139
|
+
</div>
|
|
140
|
+
<i
|
|
141
|
+
aria-hidden="true"
|
|
142
|
+
class="dropdown icon"
|
|
143
|
+
/>
|
|
144
|
+
<div
|
|
145
|
+
class="menu transition"
|
|
146
|
+
role="listbox"
|
|
147
|
+
>
|
|
148
|
+
<div
|
|
149
|
+
aria-checked="true"
|
|
150
|
+
aria-selected="true"
|
|
151
|
+
class="active selected item"
|
|
152
|
+
role="option"
|
|
153
|
+
style="pointer-events: all;"
|
|
154
|
+
>
|
|
155
|
+
<span
|
|
156
|
+
class="text"
|
|
157
|
+
/>
|
|
158
|
+
</div>
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
<div
|
|
163
|
+
class="field"
|
|
164
|
+
>
|
|
165
|
+
<label>
|
|
166
|
+
Description
|
|
167
|
+
</label>
|
|
168
|
+
<textarea
|
|
169
|
+
autocomplete="off"
|
|
170
|
+
name="description"
|
|
171
|
+
placeholder="Description-placeholder"
|
|
172
|
+
rows="3"
|
|
173
|
+
>
|
|
174
|
+
dd
|
|
175
|
+
</textarea>
|
|
176
|
+
</div>
|
|
177
|
+
<div
|
|
178
|
+
class="actions"
|
|
179
|
+
>
|
|
180
|
+
<button
|
|
181
|
+
class="ui primary disabled right floated button"
|
|
182
|
+
disabled=""
|
|
183
|
+
tabindex="-1"
|
|
184
|
+
type="submit"
|
|
185
|
+
>
|
|
186
|
+
Save
|
|
187
|
+
</button>
|
|
188
|
+
<a
|
|
189
|
+
class="ui secondary button"
|
|
190
|
+
href="/"
|
|
191
|
+
role="button"
|
|
192
|
+
>
|
|
193
|
+
Cancel
|
|
194
|
+
</a>
|
|
195
|
+
</div>
|
|
196
|
+
</form>
|
|
197
|
+
</div>
|
|
198
|
+
</div>
|
|
37
199
|
`;
|