@c8y/ng1-modules 1023.90.1 → 1023.96.0
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/core/locales/de.po +170 -10
- package/core/locales/es.po +170 -10
- package/core/locales/fr.po +170 -10
- package/core/locales/ja_JP.po +162 -9
- package/core/locales/ko.po +170 -10
- package/core/locales/nl.po +170 -10
- package/core/locales/pl.po +170 -10
- package/core/locales/pt_BR.po +170 -10
- package/core/locales/zh_CN.po +170 -10
- package/core/locales/zh_TW.po +170 -10
- package/htmlWidget/htmlWidget.controller.js +1 -1
- package/package.json +1 -1
- package/scada/index.js +1 -1
- package/users/userListView/userListView.component.js +1 -1
- package/users/userListView/userListView.html +85 -44
|
@@ -21,21 +21,40 @@
|
|
|
21
21
|
<div class="input-group input-group-search">
|
|
22
22
|
<input
|
|
23
23
|
class="form-control"
|
|
24
|
-
title="{{ '
|
|
24
|
+
title="{{ 'Search users' | translate }}"
|
|
25
25
|
id="Filter"
|
|
26
|
-
placeholder="{{ '
|
|
26
|
+
placeholder="{{ 'Search users' | translate }}"
|
|
27
27
|
type="search"
|
|
28
28
|
ng-model="vm.filters.text"
|
|
29
|
+
ng-keydown="vm.onSearchKeydown($event)"
|
|
29
30
|
/>
|
|
30
|
-
<span
|
|
31
|
+
<span
|
|
32
|
+
class="input-group-addon"
|
|
33
|
+
ng-if="!vm.filters.text"
|
|
34
|
+
>
|
|
31
35
|
<i c8y-icon="search"></i>
|
|
32
36
|
</span>
|
|
37
|
+
<span
|
|
38
|
+
class="input-group-addon clickable"
|
|
39
|
+
title="{{ 'Clear search' | translate }}"
|
|
40
|
+
ng-if="vm.filters.text && !vm.showSearchHint"
|
|
41
|
+
ng-click="vm.clearSearch()"
|
|
42
|
+
>
|
|
43
|
+
<i c8y-icon="times"></i>
|
|
44
|
+
</span>
|
|
45
|
+
<span
|
|
46
|
+
class="input-group-addon text-warning"
|
|
47
|
+
title="{{ 'Enter at least 3 characters to search.' | translate }}"
|
|
48
|
+
ng-if="vm.showSearchHint"
|
|
49
|
+
>
|
|
50
|
+
<i c8y-icon="exclamation-circle"></i>
|
|
51
|
+
</span>
|
|
33
52
|
<span
|
|
34
53
|
class="sr-only"
|
|
35
54
|
for="Filter"
|
|
36
55
|
translate
|
|
37
56
|
>
|
|
38
|
-
|
|
57
|
+
Search users
|
|
39
58
|
</span>
|
|
40
59
|
</div>
|
|
41
60
|
</div>
|
|
@@ -57,7 +76,6 @@
|
|
|
57
76
|
title="{{ 'Apply filters' | translate }}"
|
|
58
77
|
type="button"
|
|
59
78
|
ng-click="vm.applyFilters()"
|
|
60
|
-
c8y-key-shortcut="Enter"
|
|
61
79
|
>
|
|
62
80
|
<i c8y-icon="filter"></i>
|
|
63
81
|
<span
|
|
@@ -86,32 +104,6 @@
|
|
|
86
104
|
</form>
|
|
87
105
|
</li>
|
|
88
106
|
|
|
89
|
-
<li>
|
|
90
|
-
<button
|
|
91
|
-
class="btn btn-link hidden-sm"
|
|
92
|
-
title="{{ 'Expand all' | translate }}"
|
|
93
|
-
type="button"
|
|
94
|
-
ng-click="vm.expandAll()"
|
|
95
|
-
ng-show="vm.showExpandCollapse()"
|
|
96
|
-
>
|
|
97
|
-
<i c8y-icon="window-maximize"></i>
|
|
98
|
-
{{ 'Expand all' | translate }}
|
|
99
|
-
</button>
|
|
100
|
-
</li>
|
|
101
|
-
|
|
102
|
-
<li>
|
|
103
|
-
<button
|
|
104
|
-
class="btn btn-link hidden-sm"
|
|
105
|
-
title="{{ 'Collapse all' | translate }}"
|
|
106
|
-
type="button"
|
|
107
|
-
ng-click="vm.collapseAll()"
|
|
108
|
-
ng-show="vm.showExpandCollapse()"
|
|
109
|
-
>
|
|
110
|
-
<i c8y-icon="minus"></i>
|
|
111
|
-
{{ 'Collapse all' | translate }}
|
|
112
|
-
</button>
|
|
113
|
-
</li>
|
|
114
|
-
|
|
115
107
|
<li
|
|
116
108
|
title="{{ 'Add user' | translate }}"
|
|
117
109
|
ng-show="vm.canAddUser"
|
|
@@ -129,19 +121,6 @@
|
|
|
129
121
|
</a>
|
|
130
122
|
</li>
|
|
131
123
|
|
|
132
|
-
<li ng-show="vm.canRevokeTokens">
|
|
133
|
-
<button
|
|
134
|
-
class="btn btn-link"
|
|
135
|
-
title="{{ 'Log out all users' | translate }}"
|
|
136
|
-
type="button"
|
|
137
|
-
data-cy="c8y-users--log-out-all-users"
|
|
138
|
-
ng-click="vm.revokeTokens()"
|
|
139
|
-
>
|
|
140
|
-
<i c8y-icon="account-disable"></i>
|
|
141
|
-
{{ 'Log out all users' | translate }}
|
|
142
|
-
</button>
|
|
143
|
-
</li>
|
|
144
|
-
|
|
145
124
|
<li>
|
|
146
125
|
<button
|
|
147
126
|
class="btn btn-link"
|
|
@@ -153,6 +132,68 @@
|
|
|
153
132
|
{{ 'Reload' | translate }}
|
|
154
133
|
</button>
|
|
155
134
|
</li>
|
|
135
|
+
|
|
136
|
+
<li ng-show="vm.showExpandCollapse() || vm.canRevokeTokens">
|
|
137
|
+
<div
|
|
138
|
+
class="dropdown"
|
|
139
|
+
uib-dropdown
|
|
140
|
+
>
|
|
141
|
+
<button
|
|
142
|
+
class="dropdown-toggle c8y-dropdown d-flex a-i-center"
|
|
143
|
+
title="{{ 'More' | translate }}…"
|
|
144
|
+
aria-haspopup="true"
|
|
145
|
+
type="button"
|
|
146
|
+
uib-dropdown-toggle
|
|
147
|
+
>
|
|
148
|
+
<span
|
|
149
|
+
class="text-truncate"
|
|
150
|
+
translate
|
|
151
|
+
>More…</span
|
|
152
|
+
>
|
|
153
|
+
<i c8y-icon="caret-down"></i>
|
|
154
|
+
</button>
|
|
155
|
+
<ul
|
|
156
|
+
class="dropdown-menu dropdown-menu-right"
|
|
157
|
+
uib-dropdown-menu
|
|
158
|
+
>
|
|
159
|
+
<li>
|
|
160
|
+
<button
|
|
161
|
+
class="btn btn-link hidden-sm"
|
|
162
|
+
title="{{ 'Expand all' | translate }}"
|
|
163
|
+
type="button"
|
|
164
|
+
ng-click="vm.expandAll()"
|
|
165
|
+
ng-show="vm.showExpandCollapse()"
|
|
166
|
+
>
|
|
167
|
+
<i c8y-icon="window-maximize"></i>
|
|
168
|
+
{{ 'Expand all' | translate }}
|
|
169
|
+
</button>
|
|
170
|
+
</li>
|
|
171
|
+
<li>
|
|
172
|
+
<button
|
|
173
|
+
class="btn btn-link hidden-sm"
|
|
174
|
+
title="{{ 'Collapse all' | translate }}"
|
|
175
|
+
type="button"
|
|
176
|
+
ng-click="vm.collapseAll()"
|
|
177
|
+
ng-show="vm.showExpandCollapse()"
|
|
178
|
+
>
|
|
179
|
+
<i c8y-icon="minus"></i>
|
|
180
|
+
{{ 'Collapse all' | translate }}
|
|
181
|
+
</button>
|
|
182
|
+
</li>
|
|
183
|
+
<li ng-show="vm.canRevokeTokens">
|
|
184
|
+
<button
|
|
185
|
+
title="{{ 'Log out all users' | translate }}"
|
|
186
|
+
type="button"
|
|
187
|
+
data-cy="c8y-users--log-out-all-users"
|
|
188
|
+
ng-click="vm.revokeTokens()"
|
|
189
|
+
>
|
|
190
|
+
<i c8y-icon="account-disable"></i>
|
|
191
|
+
{{ 'Log out all users' | translate }}
|
|
192
|
+
</button>
|
|
193
|
+
</li>
|
|
194
|
+
</ul>
|
|
195
|
+
</div>
|
|
196
|
+
</li>
|
|
156
197
|
</c8y-ui-action-bar-set>
|
|
157
198
|
|
|
158
199
|
<c8y-help src="/docs/standard-tenant/managing-users/#managing-users"></c8y-help>
|