aril 0.1.2 → 0.1.4
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/esm2022/theme/layout/app/menu/app.menu.component.mjs +9 -7
- package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +1 -1
- package/esm2022/ui/dxEditor/aril-ui-dxEditor.mjs +5 -0
- package/esm2022/ui/dxEditor/index.mjs +2 -0
- package/esm2022/ui/dxEditor/src/dx-editor.component.mjs +26 -0
- package/esm2022/ui/operation-types-dialog/src/operation-types-dialog.component.mjs +14 -2
- package/esm2022/ui/rolePicker/aril-ui-rolePicker.mjs +5 -0
- package/esm2022/ui/rolePicker/index.mjs +2 -0
- package/esm2022/ui/rolePicker/src/interface.mjs +2 -0
- package/esm2022/ui/rolePicker/src/role-picker.component.mjs +54 -0
- package/esm2022/ui/userPicker/aril-ui-userPicker.mjs +5 -0
- package/esm2022/ui/userPicker/index.mjs +2 -0
- package/esm2022/ui/userPicker/src/interface.mjs +3 -0
- package/esm2022/ui/userPicker/src/user-picker.component.mjs +72 -0
- package/fesm2022/aril-theme-layout.mjs +9 -7
- package/fesm2022/aril-theme-layout.mjs.map +1 -1
- package/fesm2022/aril-ui-dxEditor.mjs +33 -0
- package/fesm2022/aril-ui-dxEditor.mjs.map +1 -0
- package/fesm2022/aril-ui-operation-types-dialog.mjs +13 -1
- package/fesm2022/aril-ui-operation-types-dialog.mjs.map +1 -1
- package/fesm2022/aril-ui-rolePicker.mjs +61 -0
- package/fesm2022/aril-ui-rolePicker.mjs.map +1 -0
- package/fesm2022/aril-ui-userPicker.mjs +79 -0
- package/fesm2022/aril-ui-userPicker.mjs.map +1 -0
- package/package.json +115 -97
- package/theme/layout/app/menu/app.menu.component.html +2 -2
- package/theme/layout/app/menu/app.menu.component.ts +3 -2
- package/theme/styles/layout/_sidebar_slim_plus.scss +4 -4
- package/theme/styles/layout/_sidebar_vertical.scss +2 -2
- package/theme/styles/theme/base/components/data/_datatable.scss +4 -4
- package/ui/dxEditor/index.d.ts +1 -0
- package/ui/dxEditor/src/dx-editor.component.d.ts +11 -0
- package/ui/operation-types-dialog/src/operation-types-dialog.component.d.ts +4 -0
- package/ui/rolePicker/index.d.ts +1 -0
- package/ui/rolePicker/src/interface.d.ts +40 -0
- package/ui/rolePicker/src/role-picker.component.d.ts +29 -0
- package/ui/userPicker/index.d.ts +1 -0
- package/ui/userPicker/src/interface.d.ts +69 -0
- package/ui/userPicker/src/user-picker.component.d.ts +27 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aril",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.1.0",
|
|
6
6
|
"@angular/core": "^17.1.0",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"esm": "./esm2022/aril.mjs",
|
|
33
33
|
"default": "./fesm2022/aril.mjs"
|
|
34
34
|
},
|
|
35
|
-
"./http": {
|
|
36
|
-
"types": "./http/index.d.ts",
|
|
37
|
-
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
38
|
-
"esm": "./esm2022/http/aril-http.mjs",
|
|
39
|
-
"default": "./fesm2022/aril-http.mjs"
|
|
40
|
-
},
|
|
41
35
|
"./boot": {
|
|
42
36
|
"types": "./boot/index.d.ts",
|
|
43
37
|
"esm2022": "./esm2022/boot/aril-boot.mjs",
|
|
44
38
|
"esm": "./esm2022/boot/aril-boot.mjs",
|
|
45
39
|
"default": "./fesm2022/aril-boot.mjs"
|
|
46
40
|
},
|
|
41
|
+
"./http": {
|
|
42
|
+
"types": "./http/index.d.ts",
|
|
43
|
+
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
44
|
+
"esm": "./esm2022/http/aril-http.mjs",
|
|
45
|
+
"default": "./fesm2022/aril-http.mjs"
|
|
46
|
+
},
|
|
47
47
|
"./i18n": {
|
|
48
48
|
"types": "./i18n/index.d.ts",
|
|
49
49
|
"esm2022": "./esm2022/i18n/aril-i18n.mjs",
|
|
@@ -74,18 +74,18 @@
|
|
|
74
74
|
"esm": "./esm2022/ui/aril-ui.mjs",
|
|
75
75
|
"default": "./fesm2022/aril-ui.mjs"
|
|
76
76
|
},
|
|
77
|
-
"./boot/host": {
|
|
78
|
-
"types": "./boot/host/index.d.ts",
|
|
79
|
-
"esm2022": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
80
|
-
"esm": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
81
|
-
"default": "./fesm2022/aril-boot-host.mjs"
|
|
82
|
-
},
|
|
83
77
|
"./boot/mfe": {
|
|
84
78
|
"types": "./boot/mfe/index.d.ts",
|
|
85
79
|
"esm2022": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
86
80
|
"esm": "./esm2022/boot/mfe/aril-boot-mfe.mjs",
|
|
87
81
|
"default": "./fesm2022/aril-boot-mfe.mjs"
|
|
88
82
|
},
|
|
83
|
+
"./boot/host": {
|
|
84
|
+
"types": "./boot/host/index.d.ts",
|
|
85
|
+
"esm2022": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
86
|
+
"esm": "./esm2022/boot/host/aril-boot-host.mjs",
|
|
87
|
+
"default": "./fesm2022/aril-boot-host.mjs"
|
|
88
|
+
},
|
|
89
89
|
"./theme/layout": {
|
|
90
90
|
"types": "./theme/layout/index.d.ts",
|
|
91
91
|
"esm2022": "./esm2022/theme/layout/aril-theme-layout.mjs",
|
|
@@ -104,23 +104,17 @@
|
|
|
104
104
|
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
105
105
|
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
106
106
|
},
|
|
107
|
-
"./util/lib": {
|
|
108
|
-
"types": "./util/lib/index.d.ts",
|
|
109
|
-
"esm2022": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
110
|
-
"esm": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
111
|
-
"default": "./fesm2022/aril-util-lib.mjs"
|
|
112
|
-
},
|
|
113
107
|
"./util/init-event": {
|
|
114
108
|
"types": "./util/init-event/index.d.ts",
|
|
115
109
|
"esm2022": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
116
110
|
"esm": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
117
111
|
"default": "./fesm2022/aril-util-init-event.mjs"
|
|
118
112
|
},
|
|
119
|
-
"./util/
|
|
120
|
-
"types": "./util/
|
|
121
|
-
"esm2022": "./esm2022/util/
|
|
122
|
-
"esm": "./esm2022/util/
|
|
123
|
-
"default": "./fesm2022/aril-util-
|
|
113
|
+
"./util/lib": {
|
|
114
|
+
"types": "./util/lib/index.d.ts",
|
|
115
|
+
"esm2022": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
116
|
+
"esm": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
117
|
+
"default": "./fesm2022/aril-util-lib.mjs"
|
|
124
118
|
},
|
|
125
119
|
"./util/loaders": {
|
|
126
120
|
"types": "./util/loaders/index.d.ts",
|
|
@@ -128,11 +122,11 @@
|
|
|
128
122
|
"esm": "./esm2022/util/loaders/aril-util-loaders.mjs",
|
|
129
123
|
"default": "./fesm2022/aril-util-loaders.mjs"
|
|
130
124
|
},
|
|
131
|
-
"./
|
|
132
|
-
"types": "./
|
|
133
|
-
"esm2022": "./esm2022/
|
|
134
|
-
"esm": "./esm2022/
|
|
135
|
-
"default": "./fesm2022/aril-
|
|
125
|
+
"./util/primitive-extensions": {
|
|
126
|
+
"types": "./util/primitive-extensions/index.d.ts",
|
|
127
|
+
"esm2022": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
128
|
+
"esm": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
129
|
+
"default": "./fesm2022/aril-util-primitive-extensions.mjs"
|
|
136
130
|
},
|
|
137
131
|
"./util/pub-sub": {
|
|
138
132
|
"types": "./util/pub-sub/index.d.ts",
|
|
@@ -140,11 +134,11 @@
|
|
|
140
134
|
"esm": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
141
135
|
"default": "./fesm2022/aril-util-pub-sub.mjs"
|
|
142
136
|
},
|
|
143
|
-
"./
|
|
144
|
-
"types": "./
|
|
145
|
-
"esm2022": "./esm2022/
|
|
146
|
-
"esm": "./esm2022/
|
|
147
|
-
"default": "./fesm2022/aril-
|
|
137
|
+
"./ui/autoComplete": {
|
|
138
|
+
"types": "./ui/autoComplete/index.d.ts",
|
|
139
|
+
"esm2022": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
140
|
+
"esm": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
141
|
+
"default": "./fesm2022/aril-ui-autoComplete.mjs"
|
|
148
142
|
},
|
|
149
143
|
"./ui/badge": {
|
|
150
144
|
"types": "./ui/badge/index.d.ts",
|
|
@@ -152,12 +146,24 @@
|
|
|
152
146
|
"esm": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
153
147
|
"default": "./fesm2022/aril-ui-badge.mjs"
|
|
154
148
|
},
|
|
149
|
+
"./util/unwrap": {
|
|
150
|
+
"types": "./util/unwrap/index.d.ts",
|
|
151
|
+
"esm2022": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
152
|
+
"esm": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
153
|
+
"default": "./fesm2022/aril-util-unwrap.mjs"
|
|
154
|
+
},
|
|
155
155
|
"./ui/button": {
|
|
156
156
|
"types": "./ui/button/index.d.ts",
|
|
157
157
|
"esm2022": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
158
158
|
"esm": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
159
159
|
"default": "./fesm2022/aril-ui-button.mjs"
|
|
160
160
|
},
|
|
161
|
+
"./ui/chip": {
|
|
162
|
+
"types": "./ui/chip/index.d.ts",
|
|
163
|
+
"esm2022": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
164
|
+
"esm": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
165
|
+
"default": "./fesm2022/aril-ui-chip.mjs"
|
|
166
|
+
},
|
|
161
167
|
"./ui/calendar": {
|
|
162
168
|
"types": "./ui/calendar/index.d.ts",
|
|
163
169
|
"esm2022": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
@@ -170,12 +176,6 @@
|
|
|
170
176
|
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
171
177
|
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
172
178
|
},
|
|
173
|
-
"./ui/chip": {
|
|
174
|
-
"types": "./ui/chip/index.d.ts",
|
|
175
|
-
"esm2022": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
176
|
-
"esm": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
177
|
-
"default": "./fesm2022/aril-ui-chip.mjs"
|
|
178
|
-
},
|
|
179
179
|
"./ui/dxField": {
|
|
180
180
|
"types": "./ui/dxField/index.d.ts",
|
|
181
181
|
"esm2022": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
@@ -188,17 +188,11 @@
|
|
|
188
188
|
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
189
189
|
"default": "./fesm2022/aril-ui-field.mjs"
|
|
190
190
|
},
|
|
191
|
-
"./ui/
|
|
192
|
-
"types": "./ui/
|
|
193
|
-
"esm2022": "./esm2022/ui/
|
|
194
|
-
"esm": "./esm2022/ui/
|
|
195
|
-
"default": "./fesm2022/aril-ui-
|
|
196
|
-
},
|
|
197
|
-
"./ui/form": {
|
|
198
|
-
"types": "./ui/form/index.d.ts",
|
|
199
|
-
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
200
|
-
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
201
|
-
"default": "./fesm2022/aril-ui-form.mjs"
|
|
191
|
+
"./ui/dxEditor": {
|
|
192
|
+
"types": "./ui/dxEditor/index.d.ts",
|
|
193
|
+
"esm2022": "./esm2022/ui/dxEditor/aril-ui-dxEditor.mjs",
|
|
194
|
+
"esm": "./esm2022/ui/dxEditor/aril-ui-dxEditor.mjs",
|
|
195
|
+
"default": "./fesm2022/aril-ui-dxEditor.mjs"
|
|
202
196
|
},
|
|
203
197
|
"./ui/lib": {
|
|
204
198
|
"types": "./ui/lib/index.d.ts",
|
|
@@ -206,11 +200,17 @@
|
|
|
206
200
|
"esm": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
207
201
|
"default": "./fesm2022/aril-ui-lib.mjs"
|
|
208
202
|
},
|
|
209
|
-
"./ui/
|
|
210
|
-
"types": "./ui/
|
|
211
|
-
"esm2022": "./esm2022/ui/
|
|
212
|
-
"esm": "./esm2022/ui/
|
|
213
|
-
"default": "./fesm2022/aril-ui-
|
|
203
|
+
"./ui/form": {
|
|
204
|
+
"types": "./ui/form/index.d.ts",
|
|
205
|
+
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
206
|
+
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
207
|
+
"default": "./fesm2022/aril-ui-form.mjs"
|
|
208
|
+
},
|
|
209
|
+
"./ui/fileUpload": {
|
|
210
|
+
"types": "./ui/fileUpload/index.d.ts",
|
|
211
|
+
"esm2022": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
212
|
+
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
213
|
+
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
214
214
|
},
|
|
215
215
|
"./ui/mask": {
|
|
216
216
|
"types": "./ui/mask/index.d.ts",
|
|
@@ -218,6 +218,18 @@
|
|
|
218
218
|
"esm": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
219
219
|
"default": "./fesm2022/aril-ui-mask.mjs"
|
|
220
220
|
},
|
|
221
|
+
"./ui/number": {
|
|
222
|
+
"types": "./ui/number/index.d.ts",
|
|
223
|
+
"esm2022": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
224
|
+
"esm": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
225
|
+
"default": "./fesm2022/aril-ui-number.mjs"
|
|
226
|
+
},
|
|
227
|
+
"./ui/loader": {
|
|
228
|
+
"types": "./ui/loader/index.d.ts",
|
|
229
|
+
"esm2022": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
230
|
+
"esm": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
231
|
+
"default": "./fesm2022/aril-ui-loader.mjs"
|
|
232
|
+
},
|
|
221
233
|
"./ui/operation-types-dialog": {
|
|
222
234
|
"types": "./ui/operation-types-dialog/index.d.ts",
|
|
223
235
|
"esm2022": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
@@ -236,54 +248,42 @@
|
|
|
236
248
|
"esm": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
237
249
|
"default": "./fesm2022/aril-ui-panel.mjs"
|
|
238
250
|
},
|
|
239
|
-
"./ui/number": {
|
|
240
|
-
"types": "./ui/number/index.d.ts",
|
|
241
|
-
"esm2022": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
242
|
-
"esm": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
243
|
-
"default": "./fesm2022/aril-ui-number.mjs"
|
|
244
|
-
},
|
|
245
251
|
"./ui/progressbar": {
|
|
246
252
|
"types": "./ui/progressbar/index.d.ts",
|
|
247
253
|
"esm2022": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
248
254
|
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
249
255
|
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
250
256
|
},
|
|
257
|
+
"./ui/password": {
|
|
258
|
+
"types": "./ui/password/index.d.ts",
|
|
259
|
+
"esm2022": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
260
|
+
"esm": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
261
|
+
"default": "./fesm2022/aril-ui-password.mjs"
|
|
262
|
+
},
|
|
263
|
+
"./ui/selectBox": {
|
|
264
|
+
"types": "./ui/selectBox/index.d.ts",
|
|
265
|
+
"esm2022": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
266
|
+
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
267
|
+
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
268
|
+
},
|
|
251
269
|
"./ui/radioButton": {
|
|
252
270
|
"types": "./ui/radioButton/index.d.ts",
|
|
253
271
|
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
254
272
|
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
255
273
|
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
256
274
|
},
|
|
275
|
+
"./ui/rolePicker": {
|
|
276
|
+
"types": "./ui/rolePicker/index.d.ts",
|
|
277
|
+
"esm2022": "./esm2022/ui/rolePicker/aril-ui-rolePicker.mjs",
|
|
278
|
+
"esm": "./esm2022/ui/rolePicker/aril-ui-rolePicker.mjs",
|
|
279
|
+
"default": "./fesm2022/aril-ui-rolePicker.mjs"
|
|
280
|
+
},
|
|
257
281
|
"./ui/switch": {
|
|
258
282
|
"types": "./ui/switch/index.d.ts",
|
|
259
283
|
"esm2022": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
260
284
|
"esm": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
261
285
|
"default": "./fesm2022/aril-ui-switch.mjs"
|
|
262
286
|
},
|
|
263
|
-
"./ui/selectBox": {
|
|
264
|
-
"types": "./ui/selectBox/index.d.ts",
|
|
265
|
-
"esm2022": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
266
|
-
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
267
|
-
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
268
|
-
},
|
|
269
|
-
"./ui/table": {
|
|
270
|
-
"types": "./ui/table/index.d.ts",
|
|
271
|
-
"esm2022": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
272
|
-
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
273
|
-
"default": "./fesm2022/aril-ui-table.mjs"
|
|
274
|
-
},
|
|
275
|
-
"./ui/password": {
|
|
276
|
-
"types": "./ui/password/index.d.ts",
|
|
277
|
-
"esm2022": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
278
|
-
"esm": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
279
|
-
"default": "./fesm2022/aril-ui-password.mjs"
|
|
280
|
-
},
|
|
281
|
-
"./ui/tagBox": {
|
|
282
|
-
"types": "./ui/tagBox/index.d.ts",
|
|
283
|
-
"esm2022": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
284
|
-
"esm": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
285
|
-
"default": "./fesm2022/aril-ui-tagBox.mjs"
|
|
286
|
-
},
|
|
287
287
|
"./ui/table-expand": {
|
|
288
288
|
"types": "./ui/table-expand/index.d.ts",
|
|
289
289
|
"esm2022": "./esm2022/ui/table-expand/aril-ui-table-expand.mjs",
|
|
@@ -296,11 +296,11 @@
|
|
|
296
296
|
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
297
297
|
"default": "./fesm2022/aril-ui-text.mjs"
|
|
298
298
|
},
|
|
299
|
-
"./ui/
|
|
300
|
-
"types": "./ui/
|
|
301
|
-
"esm2022": "./esm2022/ui/
|
|
302
|
-
"esm": "./esm2022/ui/
|
|
303
|
-
"default": "./fesm2022/aril-ui-
|
|
299
|
+
"./ui/tagBox": {
|
|
300
|
+
"types": "./ui/tagBox/index.d.ts",
|
|
301
|
+
"esm2022": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
302
|
+
"esm": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
303
|
+
"default": "./fesm2022/aril-ui-tagBox.mjs"
|
|
304
304
|
},
|
|
305
305
|
"./ui/toggle-button": {
|
|
306
306
|
"types": "./ui/toggle-button/index.d.ts",
|
|
@@ -308,12 +308,30 @@
|
|
|
308
308
|
"esm": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
309
309
|
"default": "./fesm2022/aril-ui-toggle-button.mjs"
|
|
310
310
|
},
|
|
311
|
+
"./ui/textArea": {
|
|
312
|
+
"types": "./ui/textArea/index.d.ts",
|
|
313
|
+
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
314
|
+
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
315
|
+
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
316
|
+
},
|
|
317
|
+
"./ui/table": {
|
|
318
|
+
"types": "./ui/table/index.d.ts",
|
|
319
|
+
"esm2022": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
320
|
+
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
321
|
+
"default": "./fesm2022/aril-ui-table.mjs"
|
|
322
|
+
},
|
|
311
323
|
"./ui/tree": {
|
|
312
324
|
"types": "./ui/tree/index.d.ts",
|
|
313
325
|
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
314
326
|
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
315
327
|
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
316
328
|
},
|
|
329
|
+
"./ui/userPicker": {
|
|
330
|
+
"types": "./ui/userPicker/index.d.ts",
|
|
331
|
+
"esm2022": "./esm2022/ui/userPicker/aril-ui-userPicker.mjs",
|
|
332
|
+
"esm": "./esm2022/ui/userPicker/aril-ui-userPicker.mjs",
|
|
333
|
+
"default": "./fesm2022/aril-ui-userPicker.mjs"
|
|
334
|
+
},
|
|
317
335
|
"./ui/tooltip": {
|
|
318
336
|
"types": "./ui/tooltip/index.d.ts",
|
|
319
337
|
"esm2022": "./esm2022/ui/tooltip/aril-ui-tooltip.mjs",
|
|
@@ -338,18 +356,18 @@
|
|
|
338
356
|
"esm": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
339
357
|
"default": "./fesm2022/aril-ui-value.mjs"
|
|
340
358
|
},
|
|
341
|
-
"./boot/config/api": {
|
|
342
|
-
"types": "./boot/config/api/index.d.ts",
|
|
343
|
-
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
344
|
-
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
345
|
-
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
346
|
-
},
|
|
347
359
|
"./boot/config/apps": {
|
|
348
360
|
"types": "./boot/config/apps/index.d.ts",
|
|
349
361
|
"esm2022": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
350
362
|
"esm": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
351
363
|
"default": "./fesm2022/aril-boot-config-apps.mjs"
|
|
352
364
|
},
|
|
365
|
+
"./boot/config/api": {
|
|
366
|
+
"types": "./boot/config/api/index.d.ts",
|
|
367
|
+
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
368
|
+
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
369
|
+
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
370
|
+
},
|
|
353
371
|
"./boot/config/plugins": {
|
|
354
372
|
"types": "./boot/config/plugins/index.d.ts",
|
|
355
373
|
"esm2022": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<ul class="layout-menu flex-
|
|
1
|
+
<ul class="layout-menu h-full flex-column">
|
|
2
2
|
@for (item of isHostMode ? hostMenuItems() : menuService.menuItems(); track $index) {
|
|
3
3
|
@if (item.separator) {
|
|
4
4
|
<li class="menu-separator"></li>
|
|
5
5
|
} @else {
|
|
6
|
-
<li app-menuitem [item]="item" [index]="$index" [root]="true"></li>
|
|
6
|
+
<li app-menuitem [item]="item" [index]="$index" [root]="true" [class.mt-auto]="item.remoteName === 'mng'"></li>
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
</ul>
|
|
@@ -70,8 +70,9 @@ import { AppMenuService } from '../../service/app.menu.service';
|
|
|
70
70
|
[tooltipDisabled]="!(isSlim && root)">
|
|
71
71
|
<i [ngClass]="item.icon" class="layout-menuitem-icon"></i>
|
|
72
72
|
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
@if(item.label) {
|
|
74
|
+
<span class="layout-menuitem-text">{{ item.label }}</span>
|
|
75
|
+
}
|
|
75
76
|
@if (item.items) {
|
|
76
77
|
<i class="pi pi-fw pi-angle-down layout-submenu-toggler"></i>
|
|
77
78
|
}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.layout-sidebar {
|
|
25
|
-
width:
|
|
25
|
+
width: 112px;
|
|
26
26
|
overflow: visible;
|
|
27
27
|
z-index: 999;
|
|
28
28
|
padding-left: 11px;
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
flex-direction: column;
|
|
66
66
|
align-items: center;
|
|
67
67
|
justify-content: center;
|
|
68
|
-
gap:
|
|
68
|
+
gap: 4px;
|
|
69
69
|
border-radius: 12px;
|
|
70
70
|
text-align: center;
|
|
71
71
|
cursor: pointer;
|
|
@@ -80,12 +80,12 @@
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.layout-menuitem-icon {
|
|
83
|
-
font-size:
|
|
83
|
+
font-size: 28px;
|
|
84
84
|
color: var(--menuitem-icon-color);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
.layout-menuitem-text {
|
|
88
|
-
font-size:
|
|
88
|
+
font-size: 13px;
|
|
89
89
|
font-weight: 600;
|
|
90
90
|
display: block;
|
|
91
91
|
margin-top: 0.25rem;
|
|
@@ -298,11 +298,11 @@
|
|
|
298
298
|
}
|
|
299
299
|
|
|
300
300
|
.p-datatable-thead > tr > th {
|
|
301
|
-
padding:
|
|
301
|
+
padding: 11px !important;//@include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
.p-datatable-tbody > tr > td {
|
|
305
|
-
padding:
|
|
305
|
+
padding: 11px !important;//@include scaledPadding($tableBodyCellPadding, $tableScaleSM);
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
.p-datatable-tfoot > tr > td {
|
|
@@ -320,11 +320,11 @@
|
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
.p-datatable-thead > tr > th {
|
|
323
|
-
padding:
|
|
323
|
+
padding: 11px !important;//@include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
.p-datatable-tbody > tr > td {
|
|
327
|
-
padding:
|
|
327
|
+
padding: 11px !important;//@include scaledPadding($tableBodyCellPadding, $tableScaleLG);
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
.p-datatable-tfoot > tr > td {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/dx-editor.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DxEditorComponent extends BaseInputComponent {
|
|
4
|
+
height: import("@angular/core").InputSignal<string, string>;
|
|
5
|
+
isMultiline: import("@angular/core").InputSignal<boolean, boolean>;
|
|
6
|
+
valueContent: import("@angular/core").InputSignal<string, string>;
|
|
7
|
+
disabled: import("@angular/core").InputSignal<boolean, boolean>;
|
|
8
|
+
isShowToolBar: import("@angular/core").InputSignal<boolean, boolean>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DxEditorComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DxEditorComponent, "aril-dx-editor[ngModel],aril-dx-editor[formControl], aril-dx-editor[formControlName]", never, { "height": { "alias": "height"; "required": false; "isSignal": true; }; "isMultiline": { "alias": "isMultiline"; "required": false; "isSignal": true; }; "valueContent": { "alias": "valueContent"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "isShowToolBar": { "alias": "isShowToolBar"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -6,6 +6,10 @@ export declare enum OperationType {
|
|
|
6
6
|
ApplyExceptSelected = "APPLY_EXCEPT_SELECTED",
|
|
7
7
|
ApplyAll = "APPLY_ALL"
|
|
8
8
|
}
|
|
9
|
+
export type OperationTypeResult = {
|
|
10
|
+
searchApplyType: OperationType;
|
|
11
|
+
totalElements: number;
|
|
12
|
+
};
|
|
9
13
|
export declare class OperationTypesComponent {
|
|
10
14
|
private ref;
|
|
11
15
|
private dialogConfig;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/role-picker.component';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Interfaces } from 'aril/util/lib';
|
|
2
|
+
export type SelectBoxItem = Interfaces.MapStringString | Interfaces.MapStringNumber | Interfaces.MapNumberString | Interfaces.MapNumberNumber;
|
|
3
|
+
export interface SelectionRequestDTO {
|
|
4
|
+
groupName: string;
|
|
5
|
+
parameters?: Parameters;
|
|
6
|
+
parentSelectionKey: string | null;
|
|
7
|
+
}
|
|
8
|
+
export interface Parameters {
|
|
9
|
+
additionalProp1: AdditionalProp;
|
|
10
|
+
additionalProp2: AdditionalProp;
|
|
11
|
+
additionalProp3: AdditionalProp;
|
|
12
|
+
}
|
|
13
|
+
export interface AdditionalProp {
|
|
14
|
+
}
|
|
15
|
+
export interface SelectionGroupDTO {
|
|
16
|
+
id: number;
|
|
17
|
+
groupName: string;
|
|
18
|
+
groupDescription: string;
|
|
19
|
+
groupComment: string;
|
|
20
|
+
loadStrategy: string;
|
|
21
|
+
dynamicQuery: string;
|
|
22
|
+
parentGroupId: number;
|
|
23
|
+
selectionItems: SelectionItem[];
|
|
24
|
+
}
|
|
25
|
+
export interface SelectionItem {
|
|
26
|
+
id: number;
|
|
27
|
+
groupId: number;
|
|
28
|
+
selectionKey: string;
|
|
29
|
+
selectionDisplay: string;
|
|
30
|
+
showOrder: number;
|
|
31
|
+
parentSelectionKey: string;
|
|
32
|
+
}
|
|
33
|
+
export interface RoleResponseDTO {
|
|
34
|
+
id: string;
|
|
35
|
+
name: string;
|
|
36
|
+
clientReferenceKey: string;
|
|
37
|
+
clientId: string;
|
|
38
|
+
description: string;
|
|
39
|
+
uris: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { BaseInputComponent } from 'aril/ui/lib';
|
|
4
|
+
import { SelectBoxItem } from './interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "aril/ui/lib";
|
|
7
|
+
export declare class RolePickerComponent extends BaseInputComponent {
|
|
8
|
+
private http;
|
|
9
|
+
itemKey: import("@angular/core").InputSignal<string, string>;
|
|
10
|
+
itemText: import("@angular/core").InputSignal<string, string>;
|
|
11
|
+
groupName: import("@angular/core").InputSignal<string, string>;
|
|
12
|
+
parentSelectionKey: import("@angular/core").InputSignal<null, null>;
|
|
13
|
+
tabindex: import("@angular/core").InputSignal<number, number>;
|
|
14
|
+
items: import("@angular/core").InputSignal<SelectBoxItem[], SelectBoxItem[]>;
|
|
15
|
+
selectionItems: import("@angular/core").WritableSignal<SelectBoxItem[] | null>;
|
|
16
|
+
/** * @description when grouped = true, option item structure { key:string, items:[] } */
|
|
17
|
+
grouped: import("@angular/core").InputSignal<boolean, boolean>;
|
|
18
|
+
showClearButton: import("@angular/core").InputSignal<boolean, boolean>;
|
|
19
|
+
placeholder: import("@angular/core").InputSignal<string, string>;
|
|
20
|
+
searchExpr: import("@angular/core").InputSignal<string | string[], string | string[]>;
|
|
21
|
+
baseUrl: import("@angular/core").InputSignal<string | null, string | null>;
|
|
22
|
+
roleEndPointUrl: import("@angular/core").InputSignal<string, string>;
|
|
23
|
+
client: import("@angular/core").InputSignal<string, string>;
|
|
24
|
+
onSelectionChanged: EventEmitter<SelectBoxItem>;
|
|
25
|
+
constructor(http: HttpClient);
|
|
26
|
+
getSelectionItems(): Promise<void>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RolePickerComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RolePickerComponent, "aril-role-picker[formControl], aril-role-picker[formControlName]", never, { "itemKey": { "alias": "itemKey"; "required": false; "isSignal": true; }; "itemText": { "alias": "itemText"; "required": false; "isSignal": true; }; "groupName": { "alias": "groupName"; "required": false; "isSignal": true; }; "parentSelectionKey": { "alias": "parentSelectionKey"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "grouped": { "alias": "grouped"; "required": false; "isSignal": true; }; "showClearButton": { "alias": "showClearButton"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchExpr": { "alias": "searchExpr"; "required": false; "isSignal": true; }; "baseUrl": { "alias": "baseUrl"; "required": false; "isSignal": true; }; "roleEndPointUrl": { "alias": "roleEndPointUrl"; "required": false; "isSignal": true; }; "client": { "alias": "client"; "required": false; "isSignal": true; }; }, { "onSelectionChanged": "onSelectionChanged"; }, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/user-picker.component';
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export interface SuggestionsGroupDTO {
|
|
2
|
+
key: number | string | null;
|
|
3
|
+
text: string;
|
|
4
|
+
items: SuggestionsDTO[];
|
|
5
|
+
}
|
|
6
|
+
export interface SuggestionsDTO {
|
|
7
|
+
key: number | string | null;
|
|
8
|
+
text: string;
|
|
9
|
+
}
|
|
10
|
+
export interface AssetPickerResponseDTO {
|
|
11
|
+
resultInfo: ResultInfo;
|
|
12
|
+
result: Result[];
|
|
13
|
+
}
|
|
14
|
+
export interface Result {
|
|
15
|
+
id: number;
|
|
16
|
+
assetDefinitionCode: string;
|
|
17
|
+
assetName: string;
|
|
18
|
+
authorityGroup: string;
|
|
19
|
+
assets: Asset[];
|
|
20
|
+
attributes: AttributeElement[];
|
|
21
|
+
}
|
|
22
|
+
export interface Asset {
|
|
23
|
+
alias: string;
|
|
24
|
+
assetName: string;
|
|
25
|
+
assetDefinitionCode: string;
|
|
26
|
+
assetID: number;
|
|
27
|
+
}
|
|
28
|
+
export interface AttributeElement {
|
|
29
|
+
id: number;
|
|
30
|
+
attribute: AttributeAttribute;
|
|
31
|
+
value: Value;
|
|
32
|
+
startDate: number;
|
|
33
|
+
endDate: number;
|
|
34
|
+
valueDesc: string;
|
|
35
|
+
}
|
|
36
|
+
export interface AttributeAttribute {
|
|
37
|
+
alias: string;
|
|
38
|
+
attributeCode: string;
|
|
39
|
+
}
|
|
40
|
+
export interface Value {
|
|
41
|
+
}
|
|
42
|
+
export interface ResultInfo {
|
|
43
|
+
totalPage: number;
|
|
44
|
+
totalItem: number;
|
|
45
|
+
}
|
|
46
|
+
export interface GetAllUserRequestDTO {
|
|
47
|
+
first: number;
|
|
48
|
+
max: number;
|
|
49
|
+
}
|
|
50
|
+
export interface UserRegionsResponseDTO {
|
|
51
|
+
startLevel: string;
|
|
52
|
+
endLevel: string;
|
|
53
|
+
}
|
|
54
|
+
export interface UserResponseDTO {
|
|
55
|
+
id: string;
|
|
56
|
+
userName: string;
|
|
57
|
+
firstName: string;
|
|
58
|
+
lastName: string;
|
|
59
|
+
email: string;
|
|
60
|
+
phone: [string];
|
|
61
|
+
tckn: [string];
|
|
62
|
+
regions: [UserRegionsResponseDTO];
|
|
63
|
+
photoUrl: [string];
|
|
64
|
+
notes: [string];
|
|
65
|
+
enabled: boolean;
|
|
66
|
+
createdTimestamp: string;
|
|
67
|
+
lastSession: string;
|
|
68
|
+
userTypes: [string];
|
|
69
|
+
}
|