@umbraco-cms/backoffice 1.0.0-next.ce55cd35 → 1.0.0-next.d2c0dcf1
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/backend-api.d.ts +161 -84
- package/context-api.d.ts +3 -3
- package/controller.d.ts +2 -1
- package/custom-elements.json +536 -384
- package/element.d.ts +4 -4
- package/entity-action.d.ts +6 -13
- package/extensions-api.d.ts +5 -4
- package/extensions-registry.d.ts +171 -10
- package/modal.d.ts +18 -318
- package/models.d.ts +1 -1
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +53 -41
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/property-editor.d.ts +1 -1
- package/repository.d.ts +51 -26
- package/resources.d.ts +7 -5
- package/router.d.ts +275 -25
- package/sorter.d.ts +103 -0
- package/store.d.ts +43 -48
- package/umbraco-package-schema.json +2439 -0
- package/utils.d.ts +1 -1
- package/vscode-html-custom-data.json +117 -75
- package/workspace.d.ts +5 -5
package/custom-elements.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "umb-auth-layout",
|
|
6
|
-
"path": "
|
|
6
|
+
"path": "./../../apps/auth/src/auth-layout.element.ts",
|
|
7
7
|
"properties": [
|
|
8
8
|
{
|
|
9
9
|
"name": "styles",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"name": "umb-external-login-provider-test",
|
|
17
|
-
"path": "
|
|
17
|
+
"path": "./../../apps/auth/src/external-login-providers/external-login-provider-test.element.ts",
|
|
18
18
|
"properties": [
|
|
19
19
|
{
|
|
20
20
|
"name": "styles",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "umb-external-login-provider-test2",
|
|
28
|
-
"path": "
|
|
28
|
+
"path": "./../../apps/auth/src/external-login-providers/external-login-provider-test2.element.ts",
|
|
29
29
|
"properties": [
|
|
30
30
|
{
|
|
31
31
|
"name": "styles",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
"name": "umb-login",
|
|
39
|
-
"path": "
|
|
39
|
+
"path": "./../../apps/auth/src/login.element.ts",
|
|
40
40
|
"properties": [
|
|
41
41
|
{
|
|
42
42
|
"name": "styles",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "umb-backoffice",
|
|
50
|
-
"path": "
|
|
50
|
+
"path": "./../../src/backoffice/backoffice.element.ts",
|
|
51
51
|
"properties": [
|
|
52
52
|
{
|
|
53
53
|
"name": "styles",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"name": "umb-dashboard-redirect-management",
|
|
61
|
-
"path": "
|
|
61
|
+
"path": "./../../src/backoffice/documents/dashboards/redirect-management/dashboard-redirect-management.element.ts",
|
|
62
62
|
"attributes": [
|
|
63
63
|
{
|
|
64
64
|
"name": "items-per-page",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"name": "umb-dashboard-welcome",
|
|
85
|
-
"path": "
|
|
85
|
+
"path": "./../../src/backoffice/documents/dashboards/welcome/dashboard-welcome.element.ts",
|
|
86
86
|
"properties": [
|
|
87
87
|
{
|
|
88
88
|
"name": "styles",
|
|
@@ -93,11 +93,11 @@
|
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
"name": "umb-document-blueprint-root-workspace",
|
|
96
|
-
"path": "
|
|
96
|
+
"path": "./../../src/backoffice/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts"
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
"name": "umb-allowed-document-types-modal",
|
|
100
|
-
"path": "
|
|
100
|
+
"path": "./../../src/backoffice/documents/document-types/modals/allowed-document-types/allowed-document-types-modal.element.ts",
|
|
101
101
|
"properties": [
|
|
102
102
|
{
|
|
103
103
|
"name": "styles",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
110
|
"name": "umb-document-type-workspace-editor",
|
|
111
|
-
"path": "
|
|
111
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/document-type-workspace-editor.element.ts",
|
|
112
112
|
"properties": [
|
|
113
113
|
{
|
|
114
114
|
"name": "styles",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"name": "umb-document-type-workspace",
|
|
122
|
-
"path": "
|
|
122
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/document-type-workspace.element.ts",
|
|
123
123
|
"properties": [
|
|
124
124
|
{
|
|
125
125
|
"name": "styles",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
"name": "umb-document-type-workspace-view-design",
|
|
133
|
-
"path": "
|
|
133
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-design.element.ts",
|
|
134
134
|
"properties": [
|
|
135
135
|
{
|
|
136
136
|
"name": "styles",
|
|
@@ -141,8 +141,12 @@
|
|
|
141
141
|
},
|
|
142
142
|
{
|
|
143
143
|
"name": "umb-document-type-workspace-view-edit-properties",
|
|
144
|
-
"path": "
|
|
144
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit-properties.element.ts",
|
|
145
145
|
"attributes": [
|
|
146
|
+
{
|
|
147
|
+
"name": "container-id",
|
|
148
|
+
"type": "string | undefined"
|
|
149
|
+
},
|
|
146
150
|
{
|
|
147
151
|
"name": "container-name",
|
|
148
152
|
"type": "string | undefined"
|
|
@@ -155,6 +159,7 @@
|
|
|
155
159
|
"properties": [
|
|
156
160
|
{
|
|
157
161
|
"name": "containerId",
|
|
162
|
+
"attribute": "container-id",
|
|
158
163
|
"type": "string | undefined"
|
|
159
164
|
},
|
|
160
165
|
{
|
|
@@ -176,13 +181,19 @@
|
|
|
176
181
|
},
|
|
177
182
|
{
|
|
178
183
|
"name": "document-type-workspace-view-edit-property",
|
|
179
|
-
"path": "
|
|
184
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.ts",
|
|
180
185
|
"attributes": [
|
|
181
186
|
{
|
|
182
187
|
"name": "property",
|
|
183
188
|
"description": "Property, the data object for the property.",
|
|
184
|
-
"type": "
|
|
185
|
-
"default": "\"
|
|
189
|
+
"type": "PropertyTypeResponseModelBaseModel",
|
|
190
|
+
"default": "\"undefined\""
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "inherited",
|
|
194
|
+
"description": "Inherited, Determines if the property is part of the main document type thats being edited.\nIf true, then the property is inherited from another document type, not a part of the main document type.",
|
|
195
|
+
"type": "boolean",
|
|
196
|
+
"default": "\"undefined\""
|
|
186
197
|
}
|
|
187
198
|
],
|
|
188
199
|
"properties": [
|
|
@@ -190,8 +201,15 @@
|
|
|
190
201
|
"name": "property",
|
|
191
202
|
"attribute": "property",
|
|
192
203
|
"description": "Property, the data object for the property.",
|
|
193
|
-
"type": "
|
|
194
|
-
"default": "\"
|
|
204
|
+
"type": "PropertyTypeResponseModelBaseModel",
|
|
205
|
+
"default": "\"undefined\""
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "inherited",
|
|
209
|
+
"attribute": "inherited",
|
|
210
|
+
"description": "Inherited, Determines if the property is part of the main document type thats being edited.\nIf true, then the property is inherited from another document type, not a part of the main document type.",
|
|
211
|
+
"type": "boolean",
|
|
212
|
+
"default": "\"undefined\""
|
|
195
213
|
},
|
|
196
214
|
{
|
|
197
215
|
"name": "styles",
|
|
@@ -213,10 +231,10 @@
|
|
|
213
231
|
},
|
|
214
232
|
{
|
|
215
233
|
"name": "umb-document-type-workspace-view-edit-tab",
|
|
216
|
-
"path": "
|
|
234
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit-tab.element.ts",
|
|
217
235
|
"attributes": [
|
|
218
236
|
{
|
|
219
|
-
"name": "
|
|
237
|
+
"name": "ownerTabId",
|
|
220
238
|
"type": "string | undefined"
|
|
221
239
|
},
|
|
222
240
|
{
|
|
@@ -235,8 +253,8 @@
|
|
|
235
253
|
"default": "[\"UUITextStyles\",null]"
|
|
236
254
|
},
|
|
237
255
|
{
|
|
238
|
-
"name": "
|
|
239
|
-
"attribute": "
|
|
256
|
+
"name": "ownerTabId",
|
|
257
|
+
"attribute": "ownerTabId",
|
|
240
258
|
"type": "string | undefined"
|
|
241
259
|
},
|
|
242
260
|
{
|
|
@@ -253,7 +271,7 @@
|
|
|
253
271
|
},
|
|
254
272
|
{
|
|
255
273
|
"name": "umb-document-type-workspace-view-edit",
|
|
256
|
-
"path": "
|
|
274
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.ts",
|
|
257
275
|
"properties": [
|
|
258
276
|
{
|
|
259
277
|
"name": "styles",
|
|
@@ -264,7 +282,7 @@
|
|
|
264
282
|
},
|
|
265
283
|
{
|
|
266
284
|
"name": "umb-document-type-workspace-view-details",
|
|
267
|
-
"path": "
|
|
285
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/details/document-type-workspace-view-details.element.ts",
|
|
268
286
|
"properties": [
|
|
269
287
|
{
|
|
270
288
|
"name": "styles",
|
|
@@ -275,7 +293,7 @@
|
|
|
275
293
|
},
|
|
276
294
|
{
|
|
277
295
|
"name": "umb-document-type-workspace-view-structure",
|
|
278
|
-
"path": "
|
|
296
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.ts",
|
|
279
297
|
"properties": [
|
|
280
298
|
{
|
|
281
299
|
"name": "styles",
|
|
@@ -286,7 +304,7 @@
|
|
|
286
304
|
},
|
|
287
305
|
{
|
|
288
306
|
"name": "umb-document-type-workspace-view-templates",
|
|
289
|
-
"path": "
|
|
307
|
+
"path": "./../../src/backoffice/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts",
|
|
290
308
|
"properties": [
|
|
291
309
|
{
|
|
292
310
|
"name": "styles",
|
|
@@ -297,7 +315,7 @@
|
|
|
297
315
|
},
|
|
298
316
|
{
|
|
299
317
|
"name": "umb-document-table-actions-column-layout",
|
|
300
|
-
"path": "
|
|
318
|
+
"path": "./../../src/backoffice/documents/documents/collection/views/table/column-layouts/document-table-actions-column-layout.element.ts",
|
|
301
319
|
"properties": [
|
|
302
320
|
{
|
|
303
321
|
"name": "styles",
|
|
@@ -319,7 +337,7 @@
|
|
|
319
337
|
},
|
|
320
338
|
{
|
|
321
339
|
"name": "umb-document-table-collection-view",
|
|
322
|
-
"path": "
|
|
340
|
+
"path": "./../../src/backoffice/documents/documents/collection/views/table/document-table-collection-view.element.ts",
|
|
323
341
|
"properties": [
|
|
324
342
|
{
|
|
325
343
|
"name": "styles",
|
|
@@ -330,7 +348,7 @@
|
|
|
330
348
|
},
|
|
331
349
|
{
|
|
332
350
|
"name": "umb-collection-view-document-table",
|
|
333
|
-
"path": "
|
|
351
|
+
"path": "./../../src/backoffice/documents/documents/collection/views/table/document-table-collection-view.element.ts",
|
|
334
352
|
"properties": [
|
|
335
353
|
{
|
|
336
354
|
"name": "styles",
|
|
@@ -341,11 +359,11 @@
|
|
|
341
359
|
},
|
|
342
360
|
{
|
|
343
361
|
"name": "umb-document-menu-item",
|
|
344
|
-
"path": "
|
|
362
|
+
"path": "./../../src/backoffice/documents/documents/menu-item/document-menu-item.element.ts"
|
|
345
363
|
},
|
|
346
364
|
{
|
|
347
365
|
"name": "umb-document-picker-modal",
|
|
348
|
-
"path": "
|
|
366
|
+
"path": "./../../src/backoffice/documents/documents/modals/document-picker/document-picker-modal.element.ts",
|
|
349
367
|
"properties": [
|
|
350
368
|
{
|
|
351
369
|
"name": "styles",
|
|
@@ -356,7 +374,7 @@
|
|
|
356
374
|
},
|
|
357
375
|
{
|
|
358
376
|
"name": "umb-document-type-picker-modal",
|
|
359
|
-
"path": "
|
|
377
|
+
"path": "./../../src/backoffice/documents/documents/modals/document-type-picker/document-type-picker-modal.element.ts",
|
|
360
378
|
"properties": [
|
|
361
379
|
{
|
|
362
380
|
"name": "styles",
|
|
@@ -367,7 +385,7 @@
|
|
|
367
385
|
},
|
|
368
386
|
{
|
|
369
387
|
"name": "umb-document-tree-item",
|
|
370
|
-
"path": "
|
|
388
|
+
"path": "./../../src/backoffice/documents/documents/tree/tree-item/document-tree-item.element.ts",
|
|
371
389
|
"properties": [
|
|
372
390
|
{
|
|
373
391
|
"name": "styles",
|
|
@@ -381,7 +399,7 @@
|
|
|
381
399
|
},
|
|
382
400
|
{
|
|
383
401
|
"name": "umb-document-workspace-editor",
|
|
384
|
-
"path": "
|
|
402
|
+
"path": "./../../src/backoffice/documents/documents/workspace/document-workspace-editor.element.ts",
|
|
385
403
|
"properties": [
|
|
386
404
|
{
|
|
387
405
|
"name": "styles",
|
|
@@ -392,7 +410,7 @@
|
|
|
392
410
|
},
|
|
393
411
|
{
|
|
394
412
|
"name": "umb-document-workspace-split-view",
|
|
395
|
-
"path": "
|
|
413
|
+
"path": "./../../src/backoffice/documents/documents/workspace/document-workspace-split-view.element.ts",
|
|
396
414
|
"properties": [
|
|
397
415
|
{
|
|
398
416
|
"name": "styles",
|
|
@@ -403,7 +421,7 @@
|
|
|
403
421
|
},
|
|
404
422
|
{
|
|
405
423
|
"name": "umb-document-workspace",
|
|
406
|
-
"path": "
|
|
424
|
+
"path": "./../../src/backoffice/documents/documents/workspace/document-workspace.element.ts",
|
|
407
425
|
"properties": [
|
|
408
426
|
{
|
|
409
427
|
"name": "styles",
|
|
@@ -414,7 +432,7 @@
|
|
|
414
432
|
},
|
|
415
433
|
{
|
|
416
434
|
"name": "umb-document-workspace-view-edit-properties",
|
|
417
|
-
"path": "
|
|
435
|
+
"path": "./../../src/backoffice/documents/documents/workspace/views/edit/document-workspace-view-edit-properties.element.ts",
|
|
418
436
|
"attributes": [
|
|
419
437
|
{
|
|
420
438
|
"name": "container-name",
|
|
@@ -445,7 +463,7 @@
|
|
|
445
463
|
},
|
|
446
464
|
{
|
|
447
465
|
"name": "umb-document-workspace-view-edit-tab",
|
|
448
|
-
"path": "
|
|
466
|
+
"path": "./../../src/backoffice/documents/documents/workspace/views/edit/document-workspace-view-edit-tab.element.ts",
|
|
449
467
|
"attributes": [
|
|
450
468
|
{
|
|
451
469
|
"name": "tabName",
|
|
@@ -476,7 +494,7 @@
|
|
|
476
494
|
},
|
|
477
495
|
{
|
|
478
496
|
"name": "umb-document-workspace-view-edit",
|
|
479
|
-
"path": "
|
|
497
|
+
"path": "./../../src/backoffice/documents/documents/workspace/views/edit/document-workspace-view-edit.element.ts",
|
|
480
498
|
"properties": [
|
|
481
499
|
{
|
|
482
500
|
"name": "styles",
|
|
@@ -487,7 +505,7 @@
|
|
|
487
505
|
},
|
|
488
506
|
{
|
|
489
507
|
"name": "umb-document-info-workspace-view",
|
|
490
|
-
"path": "
|
|
508
|
+
"path": "./../../src/backoffice/documents/documents/workspace/views/info/document-info-workspace-view.element.ts",
|
|
491
509
|
"properties": [
|
|
492
510
|
{
|
|
493
511
|
"name": "styles",
|
|
@@ -498,7 +516,7 @@
|
|
|
498
516
|
},
|
|
499
517
|
{
|
|
500
518
|
"name": "umb-media-type-workspace-edit",
|
|
501
|
-
"path": "
|
|
519
|
+
"path": "./../../src/backoffice/media/media-types/workspace/media-type-workspace-edit.element.ts",
|
|
502
520
|
"properties": [
|
|
503
521
|
{
|
|
504
522
|
"name": "styles",
|
|
@@ -509,7 +527,7 @@
|
|
|
509
527
|
},
|
|
510
528
|
{
|
|
511
529
|
"name": "umb-media-type-workspace",
|
|
512
|
-
"path": "
|
|
530
|
+
"path": "./../../src/backoffice/media/media-types/workspace/media-type-workspace.element.ts",
|
|
513
531
|
"properties": [
|
|
514
532
|
{
|
|
515
533
|
"name": "styles",
|
|
@@ -520,7 +538,7 @@
|
|
|
520
538
|
},
|
|
521
539
|
{
|
|
522
540
|
"name": "umb-media-type-workspace-",
|
|
523
|
-
"path": "
|
|
541
|
+
"path": "./../../src/backoffice/media/media-types/workspace/media-type-workspace.element.ts",
|
|
524
542
|
"properties": [
|
|
525
543
|
{
|
|
526
544
|
"name": "styles",
|
|
@@ -531,7 +549,7 @@
|
|
|
531
549
|
},
|
|
532
550
|
{
|
|
533
551
|
"name": "umb-collection-view-media-test",
|
|
534
|
-
"path": "
|
|
552
|
+
"path": "./../../src/backoffice/media/media/collection-view/collection-view-media-test.element.ts",
|
|
535
553
|
"properties": [
|
|
536
554
|
{
|
|
537
555
|
"name": "styles",
|
|
@@ -542,7 +560,7 @@
|
|
|
542
560
|
},
|
|
543
561
|
{
|
|
544
562
|
"name": "umb-media-grid-collection-view",
|
|
545
|
-
"path": "
|
|
563
|
+
"path": "./../../src/backoffice/media/media/collection-view/media-grid-collection-view.element.ts",
|
|
546
564
|
"properties": [
|
|
547
565
|
{
|
|
548
566
|
"name": "styles",
|
|
@@ -553,7 +571,7 @@
|
|
|
553
571
|
},
|
|
554
572
|
{
|
|
555
573
|
"name": "umb-media-table-collection-view",
|
|
556
|
-
"path": "
|
|
574
|
+
"path": "./../../src/backoffice/media/media/collection-view/media-table-collection-view.element.ts",
|
|
557
575
|
"properties": [
|
|
558
576
|
{
|
|
559
577
|
"name": "styles",
|
|
@@ -564,11 +582,11 @@
|
|
|
564
582
|
},
|
|
565
583
|
{
|
|
566
584
|
"name": "umb-media-menu-item",
|
|
567
|
-
"path": "
|
|
585
|
+
"path": "./../../src/backoffice/media/media/menu-item/media-menu-item.element.ts"
|
|
568
586
|
},
|
|
569
587
|
{
|
|
570
588
|
"name": "umb-media-picker-modal",
|
|
571
|
-
"path": "
|
|
589
|
+
"path": "./../../src/backoffice/media/media/modals/media-picker/media-picker-modal.element.ts",
|
|
572
590
|
"properties": [
|
|
573
591
|
{
|
|
574
592
|
"name": "styles",
|
|
@@ -579,7 +597,7 @@
|
|
|
579
597
|
},
|
|
580
598
|
{
|
|
581
599
|
"name": "umb-media-workspace-edit",
|
|
582
|
-
"path": "
|
|
600
|
+
"path": "./../../src/backoffice/media/media/workspace/media-workspace-edit.element.ts",
|
|
583
601
|
"properties": [
|
|
584
602
|
{
|
|
585
603
|
"name": "styles",
|
|
@@ -590,7 +608,7 @@
|
|
|
590
608
|
},
|
|
591
609
|
{
|
|
592
610
|
"name": "umb-media-workspace",
|
|
593
|
-
"path": "
|
|
611
|
+
"path": "./../../src/backoffice/media/media/workspace/media-workspace.element.ts",
|
|
594
612
|
"properties": [
|
|
595
613
|
{
|
|
596
614
|
"name": "styles",
|
|
@@ -601,7 +619,7 @@
|
|
|
601
619
|
},
|
|
602
620
|
{
|
|
603
621
|
"name": "umb-media-edit-workspace-view",
|
|
604
|
-
"path": "
|
|
622
|
+
"path": "./../../src/backoffice/media/media/workspace/views/edit/media-edit-workspace-view.element.ts",
|
|
605
623
|
"properties": [
|
|
606
624
|
{
|
|
607
625
|
"name": "styles",
|
|
@@ -612,7 +630,7 @@
|
|
|
612
630
|
},
|
|
613
631
|
{
|
|
614
632
|
"name": "umb-media-info-workspace-view",
|
|
615
|
-
"path": "
|
|
633
|
+
"path": "./../../src/backoffice/media/media/workspace/views/info/media-info-workspace-view.element.ts",
|
|
616
634
|
"properties": [
|
|
617
635
|
{
|
|
618
636
|
"name": "styles",
|
|
@@ -623,7 +641,7 @@
|
|
|
623
641
|
},
|
|
624
642
|
{
|
|
625
643
|
"name": "umb-dashboard-members-welcome",
|
|
626
|
-
"path": "
|
|
644
|
+
"path": "./../../src/backoffice/members/dashboards/welcome/dashboard-members-welcome.element.ts",
|
|
627
645
|
"properties": [
|
|
628
646
|
{
|
|
629
647
|
"name": "styles",
|
|
@@ -634,7 +652,7 @@
|
|
|
634
652
|
},
|
|
635
653
|
{
|
|
636
654
|
"name": "umb-member-group-workspace-edit",
|
|
637
|
-
"path": "
|
|
655
|
+
"path": "./../../src/backoffice/members/member-groups/workspace/member-group-workspace-edit.element.ts",
|
|
638
656
|
"properties": [
|
|
639
657
|
{
|
|
640
658
|
"name": "styles",
|
|
@@ -645,7 +663,7 @@
|
|
|
645
663
|
},
|
|
646
664
|
{
|
|
647
665
|
"name": "umb-member-group-workspace",
|
|
648
|
-
"path": "
|
|
666
|
+
"path": "./../../src/backoffice/members/member-groups/workspace/member-group-workspace.element.ts",
|
|
649
667
|
"properties": [
|
|
650
668
|
{
|
|
651
669
|
"name": "styles",
|
|
@@ -656,7 +674,7 @@
|
|
|
656
674
|
},
|
|
657
675
|
{
|
|
658
676
|
"name": "umb-workspace-view-member-group-info",
|
|
659
|
-
"path": "
|
|
677
|
+
"path": "./../../src/backoffice/members/member-groups/workspace/views/info/workspace-view-member-group-info.element.ts",
|
|
660
678
|
"properties": [
|
|
661
679
|
{
|
|
662
680
|
"name": "styles",
|
|
@@ -667,7 +685,7 @@
|
|
|
667
685
|
},
|
|
668
686
|
{
|
|
669
687
|
"name": "umb-member-type-workspace-edit",
|
|
670
|
-
"path": "
|
|
688
|
+
"path": "./../../src/backoffice/members/member-types/workspace/member-type-workspace-edit.element.ts",
|
|
671
689
|
"properties": [
|
|
672
690
|
{
|
|
673
691
|
"name": "styles",
|
|
@@ -678,7 +696,7 @@
|
|
|
678
696
|
},
|
|
679
697
|
{
|
|
680
698
|
"name": "umb-member-type-workspace",
|
|
681
|
-
"path": "
|
|
699
|
+
"path": "./../../src/backoffice/members/member-types/workspace/member-type-workspace.element.ts",
|
|
682
700
|
"properties": [
|
|
683
701
|
{
|
|
684
702
|
"name": "styles",
|
|
@@ -689,7 +707,7 @@
|
|
|
689
707
|
},
|
|
690
708
|
{
|
|
691
709
|
"name": "umb-member-workspace-edit",
|
|
692
|
-
"path": "
|
|
710
|
+
"path": "./../../src/backoffice/members/members/workspace/member-workspace-edit.element.ts",
|
|
693
711
|
"properties": [
|
|
694
712
|
{
|
|
695
713
|
"name": "styles",
|
|
@@ -700,7 +718,7 @@
|
|
|
700
718
|
},
|
|
701
719
|
{
|
|
702
720
|
"name": "umb-member-workspace",
|
|
703
|
-
"path": "
|
|
721
|
+
"path": "./../../src/backoffice/members/members/workspace/member-workspace.element.ts",
|
|
704
722
|
"properties": [
|
|
705
723
|
{
|
|
706
724
|
"name": "styles",
|
|
@@ -711,10 +729,10 @@
|
|
|
711
729
|
},
|
|
712
730
|
{
|
|
713
731
|
"name": "umb-workspace-package-builder",
|
|
714
|
-
"path": "
|
|
732
|
+
"path": "./../../src/backoffice/packages/package-builder/workspace/workspace-package-builder.element.ts",
|
|
715
733
|
"attributes": [
|
|
716
734
|
{
|
|
717
|
-
"name": "
|
|
735
|
+
"name": "entityId",
|
|
718
736
|
"type": "string | undefined"
|
|
719
737
|
}
|
|
720
738
|
],
|
|
@@ -725,18 +743,18 @@
|
|
|
725
743
|
"default": "[\"UUITextStyles\",null]"
|
|
726
744
|
},
|
|
727
745
|
{
|
|
728
|
-
"name": "
|
|
729
|
-
"attribute": "
|
|
746
|
+
"name": "entityId",
|
|
747
|
+
"attribute": "entityId",
|
|
730
748
|
"type": "string | undefined"
|
|
731
749
|
}
|
|
732
750
|
]
|
|
733
751
|
},
|
|
734
752
|
{
|
|
735
753
|
"name": "umb-workspace-package",
|
|
736
|
-
"path": "
|
|
754
|
+
"path": "./../../src/backoffice/packages/package-repo/workspace/workspace-package.element.ts",
|
|
737
755
|
"attributes": [
|
|
738
756
|
{
|
|
739
|
-
"name": "
|
|
757
|
+
"name": "entityId",
|
|
740
758
|
"type": "string | undefined"
|
|
741
759
|
}
|
|
742
760
|
],
|
|
@@ -747,19 +765,19 @@
|
|
|
747
765
|
"default": "[\"UUITextStyles\",null]"
|
|
748
766
|
},
|
|
749
767
|
{
|
|
750
|
-
"name": "
|
|
751
|
-
"attribute": "
|
|
768
|
+
"name": "entityId",
|
|
769
|
+
"attribute": "entityId",
|
|
752
770
|
"type": "string | undefined"
|
|
753
771
|
}
|
|
754
772
|
]
|
|
755
773
|
},
|
|
756
774
|
{
|
|
757
775
|
"name": "umb-created-packages-section-view",
|
|
758
|
-
"path": "
|
|
776
|
+
"path": "./../../src/backoffice/packages/package-section/views/created/created-packages-section-view.element.ts"
|
|
759
777
|
},
|
|
760
778
|
{
|
|
761
779
|
"name": "umb-packages-created-overview",
|
|
762
|
-
"path": "
|
|
780
|
+
"path": "./../../src/backoffice/packages/package-section/views/created/packages-created-overview.element.ts",
|
|
763
781
|
"properties": [
|
|
764
782
|
{
|
|
765
783
|
"name": "styles",
|
|
@@ -770,7 +788,7 @@
|
|
|
770
788
|
},
|
|
771
789
|
{
|
|
772
790
|
"name": "umb-installed-packages-section-view-item",
|
|
773
|
-
"path": "
|
|
791
|
+
"path": "./../../src/backoffice/packages/package-section/views/installed/installed-packages-section-view-item.element.ts",
|
|
774
792
|
"attributes": [
|
|
775
793
|
{
|
|
776
794
|
"name": "name",
|
|
@@ -821,7 +839,7 @@
|
|
|
821
839
|
},
|
|
822
840
|
{
|
|
823
841
|
"name": "umb-installed-packages-section-view",
|
|
824
|
-
"path": "
|
|
842
|
+
"path": "./../../src/backoffice/packages/package-section/views/installed/installed-packages-section-view.element.ts",
|
|
825
843
|
"properties": [
|
|
826
844
|
{
|
|
827
845
|
"name": "styles",
|
|
@@ -832,7 +850,7 @@
|
|
|
832
850
|
},
|
|
833
851
|
{
|
|
834
852
|
"name": "umb-packages-market-place-section-view",
|
|
835
|
-
"path": "
|
|
853
|
+
"path": "./../../src/backoffice/packages/package-section/views/market-place/packages-market-place-section-view.element.ts",
|
|
836
854
|
"attributes": [
|
|
837
855
|
{
|
|
838
856
|
"name": "marketplaceUrl",
|
|
@@ -856,7 +874,7 @@
|
|
|
856
874
|
},
|
|
857
875
|
{
|
|
858
876
|
"name": "umb-search-modal",
|
|
859
|
-
"path": "
|
|
877
|
+
"path": "./../../src/backoffice/search/modals/search/search-modal.element.ts",
|
|
860
878
|
"properties": [
|
|
861
879
|
{
|
|
862
880
|
"name": "styles",
|
|
@@ -867,7 +885,7 @@
|
|
|
867
885
|
},
|
|
868
886
|
{
|
|
869
887
|
"name": "umb-search-header-app",
|
|
870
|
-
"path": "
|
|
888
|
+
"path": "./../../src/backoffice/search/umb-search-header-app.element.ts",
|
|
871
889
|
"properties": [
|
|
872
890
|
{
|
|
873
891
|
"name": "styles",
|
|
@@ -878,7 +896,7 @@
|
|
|
878
896
|
},
|
|
879
897
|
{
|
|
880
898
|
"name": "umb-dashboard-examine-management",
|
|
881
|
-
"path": "
|
|
899
|
+
"path": "./../../src/backoffice/settings/dashboards/examine-management/dashboard-examine-management.element.ts",
|
|
882
900
|
"properties": [
|
|
883
901
|
{
|
|
884
902
|
"name": "styles",
|
|
@@ -889,7 +907,7 @@
|
|
|
889
907
|
},
|
|
890
908
|
{
|
|
891
909
|
"name": "umb-examine-fields-settings-modal",
|
|
892
|
-
"path": "
|
|
910
|
+
"path": "./../../src/backoffice/settings/dashboards/examine-management/views/modal-views/fields-settings.element.ts",
|
|
893
911
|
"properties": [
|
|
894
912
|
{
|
|
895
913
|
"name": "styles",
|
|
@@ -900,7 +918,7 @@
|
|
|
900
918
|
},
|
|
901
919
|
{
|
|
902
920
|
"name": "umb-modal-element-fields-viewer",
|
|
903
|
-
"path": "
|
|
921
|
+
"path": "./../../src/backoffice/settings/dashboards/examine-management/views/modal-views/fields-viewer.element.ts",
|
|
904
922
|
"properties": [
|
|
905
923
|
{
|
|
906
924
|
"name": "styles",
|
|
@@ -911,11 +929,11 @@
|
|
|
911
929
|
},
|
|
912
930
|
{
|
|
913
931
|
"name": "umb-dashboard-health-check",
|
|
914
|
-
"path": "
|
|
932
|
+
"path": "./../../src/backoffice/settings/dashboards/health-check/dashboard-health-check.element.ts"
|
|
915
933
|
},
|
|
916
934
|
{
|
|
917
935
|
"name": "umb-dashboard-health-check-action",
|
|
918
|
-
"path": "
|
|
936
|
+
"path": "./../../src/backoffice/settings/dashboards/health-check/views/health-check-action.element.ts",
|
|
919
937
|
"attributes": [
|
|
920
938
|
{
|
|
921
939
|
"name": "action"
|
|
@@ -940,7 +958,7 @@
|
|
|
940
958
|
},
|
|
941
959
|
{
|
|
942
960
|
"name": "umb-health-check-group-box-overview",
|
|
943
|
-
"path": "
|
|
961
|
+
"path": "./../../src/backoffice/settings/dashboards/health-check/views/health-check-group-box-overview.element.ts",
|
|
944
962
|
"attributes": [
|
|
945
963
|
{
|
|
946
964
|
"name": "manifest"
|
|
@@ -960,7 +978,7 @@
|
|
|
960
978
|
},
|
|
961
979
|
{
|
|
962
980
|
"name": "umb-health-check--group-box-overview",
|
|
963
|
-
"path": "
|
|
981
|
+
"path": "./../../src/backoffice/settings/dashboards/health-check/views/health-check-group-box-overview.element.ts",
|
|
964
982
|
"attributes": [
|
|
965
983
|
{
|
|
966
984
|
"name": "manifest"
|
|
@@ -980,7 +998,7 @@
|
|
|
980
998
|
},
|
|
981
999
|
{
|
|
982
1000
|
"name": "umb-dashboard-health-check-group",
|
|
983
|
-
"path": "
|
|
1001
|
+
"path": "./../../src/backoffice/settings/dashboards/health-check/views/health-check-group.element.ts",
|
|
984
1002
|
"attributes": [
|
|
985
1003
|
{
|
|
986
1004
|
"name": "groupName",
|
|
@@ -1002,7 +1020,7 @@
|
|
|
1002
1020
|
},
|
|
1003
1021
|
{
|
|
1004
1022
|
"name": "umb-dashboard-health-check-overview",
|
|
1005
|
-
"path": "
|
|
1023
|
+
"path": "./../../src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts",
|
|
1006
1024
|
"properties": [
|
|
1007
1025
|
{
|
|
1008
1026
|
"name": "styles",
|
|
@@ -1013,7 +1031,7 @@
|
|
|
1013
1031
|
},
|
|
1014
1032
|
{
|
|
1015
1033
|
"name": "umb-dashboard-models-builder",
|
|
1016
|
-
"path": "
|
|
1034
|
+
"path": "./../../src/backoffice/settings/dashboards/models-builder/dashboard-models-builder.element.ts",
|
|
1017
1035
|
"properties": [
|
|
1018
1036
|
{
|
|
1019
1037
|
"name": "styles",
|
|
@@ -1024,7 +1042,7 @@
|
|
|
1024
1042
|
},
|
|
1025
1043
|
{
|
|
1026
1044
|
"name": "umb-dashboard-performance-profiling",
|
|
1027
|
-
"path": "
|
|
1045
|
+
"path": "./../../src/backoffice/settings/dashboards/performance-profiling/dashboard-performance-profiling.element.ts",
|
|
1028
1046
|
"properties": [
|
|
1029
1047
|
{
|
|
1030
1048
|
"name": "styles",
|
|
@@ -1035,7 +1053,7 @@
|
|
|
1035
1053
|
},
|
|
1036
1054
|
{
|
|
1037
1055
|
"name": "umb-dashboard-published-status",
|
|
1038
|
-
"path": "
|
|
1056
|
+
"path": "./../../src/backoffice/settings/dashboards/published-status/dashboard-published-status.element.ts",
|
|
1039
1057
|
"properties": [
|
|
1040
1058
|
{
|
|
1041
1059
|
"name": "styles",
|
|
@@ -1046,7 +1064,7 @@
|
|
|
1046
1064
|
},
|
|
1047
1065
|
{
|
|
1048
1066
|
"name": "umb-dashboard-settings-welcome",
|
|
1049
|
-
"path": "
|
|
1067
|
+
"path": "./../../src/backoffice/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts",
|
|
1050
1068
|
"properties": [
|
|
1051
1069
|
{
|
|
1052
1070
|
"name": "styles",
|
|
@@ -1057,7 +1075,7 @@
|
|
|
1057
1075
|
},
|
|
1058
1076
|
{
|
|
1059
1077
|
"name": "umb-dashboard-telemetry",
|
|
1060
|
-
"path": "
|
|
1078
|
+
"path": "./../../src/backoffice/settings/dashboards/telemetry/dashboard-telemetry.element.ts",
|
|
1061
1079
|
"properties": [
|
|
1062
1080
|
{
|
|
1063
1081
|
"name": "styles",
|
|
@@ -1067,19 +1085,164 @@
|
|
|
1067
1085
|
]
|
|
1068
1086
|
},
|
|
1069
1087
|
{
|
|
1070
|
-
"name": "umb-
|
|
1071
|
-
"path": "
|
|
1088
|
+
"name": "umb-data-type-input",
|
|
1089
|
+
"path": "./../../src/backoffice/settings/data-types/components/data-type-input/data-type-input.element.ts",
|
|
1090
|
+
"attributes": [
|
|
1091
|
+
{
|
|
1092
|
+
"name": "min",
|
|
1093
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
1094
|
+
"type": "number",
|
|
1095
|
+
"default": "\"0\""
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"name": "max",
|
|
1099
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
1100
|
+
"type": "number",
|
|
1101
|
+
"default": "\"Infinity\""
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"name": "min-message",
|
|
1105
|
+
"description": "Min validation message.",
|
|
1106
|
+
"type": "boolean",
|
|
1107
|
+
"default": "\"\""
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"name": "maxMessage",
|
|
1111
|
+
"description": "Max validation message.",
|
|
1112
|
+
"type": "boolean",
|
|
1113
|
+
"default": "\"\""
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"name": "value",
|
|
1117
|
+
"type": "string"
|
|
1118
|
+
}
|
|
1119
|
+
],
|
|
1120
|
+
"properties": [
|
|
1121
|
+
{
|
|
1122
|
+
"name": "min",
|
|
1123
|
+
"attribute": "min",
|
|
1124
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
1125
|
+
"type": "number",
|
|
1126
|
+
"default": "\"0\""
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "max",
|
|
1130
|
+
"attribute": "max",
|
|
1131
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
1132
|
+
"type": "number",
|
|
1133
|
+
"default": "\"Infinity\""
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "minMessage",
|
|
1137
|
+
"attribute": "min-message",
|
|
1138
|
+
"description": "Min validation message.",
|
|
1139
|
+
"type": "boolean",
|
|
1140
|
+
"default": "\"\""
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"name": "maxMessage",
|
|
1144
|
+
"attribute": "maxMessage",
|
|
1145
|
+
"description": "Max validation message.",
|
|
1146
|
+
"type": "boolean",
|
|
1147
|
+
"default": "\"\""
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"name": "selectedIds",
|
|
1151
|
+
"type": "string[]"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"name": "styles",
|
|
1155
|
+
"type": "CSSResult[]",
|
|
1156
|
+
"default": "[\"UUITextStyles\",null]"
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"name": "formAssociated",
|
|
1160
|
+
"type": "boolean"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"name": "value",
|
|
1164
|
+
"attribute": "value",
|
|
1165
|
+
"type": "string"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"name": "name",
|
|
1169
|
+
"type": "string"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"name": "validationMessage",
|
|
1173
|
+
"type": "string"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"name": "validity",
|
|
1177
|
+
"type": "ValidityState"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"name": "pristine",
|
|
1181
|
+
"type": "boolean"
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"name": "required",
|
|
1185
|
+
"type": "boolean"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"name": "requiredMessage",
|
|
1189
|
+
"type": "string"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"name": "error",
|
|
1193
|
+
"type": "boolean"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"name": "errorMessage",
|
|
1197
|
+
"type": "string"
|
|
1198
|
+
}
|
|
1199
|
+
]
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"name": "umb-data-type-create-options-modal",
|
|
1203
|
+
"path": "./../../src/backoffice/settings/data-types/entity-actions/create/modal/data-type-create-options-modal.element.ts",
|
|
1204
|
+
"attributes": [
|
|
1205
|
+
{
|
|
1206
|
+
"name": "data",
|
|
1207
|
+
"type": "UmbDataTypeCreateOptionsModalData | undefined"
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1072
1210
|
"properties": [
|
|
1073
1211
|
{
|
|
1074
1212
|
"name": "styles",
|
|
1075
1213
|
"type": "CSSResult[]",
|
|
1076
1214
|
"default": "[\"UUITextStyles\"]"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "modalHandler"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "data",
|
|
1221
|
+
"attribute": "data",
|
|
1222
|
+
"type": "UmbDataTypeCreateOptionsModalData | undefined"
|
|
1223
|
+
}
|
|
1224
|
+
]
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"name": "umb-data-type-picker-modal",
|
|
1228
|
+
"path": "./../../src/backoffice/settings/data-types/modal/data-type-picker/data-type-picker-modal.element.ts",
|
|
1229
|
+
"properties": [
|
|
1230
|
+
{
|
|
1231
|
+
"name": "styles",
|
|
1232
|
+
"type": "CSSResult[]",
|
|
1233
|
+
"default": "[\"UUITextStyles\",null]"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"name": "modalHandler"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"name": "data"
|
|
1077
1240
|
}
|
|
1078
1241
|
]
|
|
1079
1242
|
},
|
|
1080
1243
|
{
|
|
1081
1244
|
"name": "umb-data-type-workspace-edit-element",
|
|
1082
|
-
"path": "
|
|
1245
|
+
"path": "./../../src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
1083
1246
|
"attributes": [
|
|
1084
1247
|
{
|
|
1085
1248
|
"name": "manifest"
|
|
@@ -1106,7 +1269,7 @@
|
|
|
1106
1269
|
},
|
|
1107
1270
|
{
|
|
1108
1271
|
"name": "umb-data-type-workspace",
|
|
1109
|
-
"path": "
|
|
1272
|
+
"path": "./../../src/backoffice/settings/data-types/workspace/data-type-workspace.element.ts",
|
|
1110
1273
|
"properties": [
|
|
1111
1274
|
{
|
|
1112
1275
|
"name": "styles",
|
|
@@ -1117,7 +1280,7 @@
|
|
|
1117
1280
|
},
|
|
1118
1281
|
{
|
|
1119
1282
|
"name": "umb-data-type-details-workspace-view",
|
|
1120
|
-
"path": "
|
|
1283
|
+
"path": "./../../src/backoffice/settings/data-types/workspace/views/details/data-type-details-workspace-view.element.ts",
|
|
1121
1284
|
"properties": [
|
|
1122
1285
|
{
|
|
1123
1286
|
"name": "styles",
|
|
@@ -1128,7 +1291,7 @@
|
|
|
1128
1291
|
},
|
|
1129
1292
|
{
|
|
1130
1293
|
"name": "umb-workspace-view-data-type-info",
|
|
1131
|
-
"path": "
|
|
1294
|
+
"path": "./../../src/backoffice/settings/data-types/workspace/views/info/workspace-view-data-type-info.element.ts",
|
|
1132
1295
|
"properties": [
|
|
1133
1296
|
{
|
|
1134
1297
|
"name": "styles",
|
|
@@ -1139,7 +1302,7 @@
|
|
|
1139
1302
|
},
|
|
1140
1303
|
{
|
|
1141
1304
|
"name": "umb-extension-root-workspace",
|
|
1142
|
-
"path": "
|
|
1305
|
+
"path": "./../../src/backoffice/settings/extensions/workspace/extension-root-workspace.element.ts",
|
|
1143
1306
|
"properties": [
|
|
1144
1307
|
{
|
|
1145
1308
|
"name": "styles",
|
|
@@ -1150,7 +1313,7 @@
|
|
|
1150
1313
|
},
|
|
1151
1314
|
{
|
|
1152
1315
|
"name": "umb-app-language-select",
|
|
1153
|
-
"path": "
|
|
1316
|
+
"path": "./../../src/backoffice/settings/languages/app-language-select/app-language-select.element.ts",
|
|
1154
1317
|
"properties": [
|
|
1155
1318
|
{
|
|
1156
1319
|
"name": "styles",
|
|
@@ -1161,7 +1324,7 @@
|
|
|
1161
1324
|
},
|
|
1162
1325
|
{
|
|
1163
1326
|
"name": "umb-language-picker-modal",
|
|
1164
|
-
"path": "
|
|
1327
|
+
"path": "./../../src/backoffice/settings/languages/modals/language-picker/language-picker-modal.element.ts",
|
|
1165
1328
|
"properties": [
|
|
1166
1329
|
{
|
|
1167
1330
|
"name": "styles",
|
|
@@ -1172,7 +1335,7 @@
|
|
|
1172
1335
|
},
|
|
1173
1336
|
{
|
|
1174
1337
|
"name": "umb-language-root-table-delete-column-layout",
|
|
1175
|
-
"path": "
|
|
1338
|
+
"path": "./../../src/backoffice/settings/languages/workspace/language-root/components/language-root-table-delete-column-layout.element.ts",
|
|
1176
1339
|
"properties": [
|
|
1177
1340
|
{
|
|
1178
1341
|
"name": "styles",
|
|
@@ -1186,7 +1349,7 @@
|
|
|
1186
1349
|
},
|
|
1187
1350
|
{
|
|
1188
1351
|
"name": "umb-language-root-table-name-column-layout",
|
|
1189
|
-
"path": "
|
|
1352
|
+
"path": "./../../src/backoffice/settings/languages/workspace/language-root/components/language-root-table-name-column-layout.element.ts",
|
|
1190
1353
|
"properties": [
|
|
1191
1354
|
{
|
|
1192
1355
|
"name": "styles",
|
|
@@ -1201,7 +1364,7 @@
|
|
|
1201
1364
|
},
|
|
1202
1365
|
{
|
|
1203
1366
|
"name": "umb-language-root-workspace",
|
|
1204
|
-
"path": "
|
|
1367
|
+
"path": "./../../src/backoffice/settings/languages/workspace/language-root/language-root-workspace.element.ts",
|
|
1205
1368
|
"properties": [
|
|
1206
1369
|
{
|
|
1207
1370
|
"name": "styles",
|
|
@@ -1212,7 +1375,7 @@
|
|
|
1212
1375
|
},
|
|
1213
1376
|
{
|
|
1214
1377
|
"name": "umb-language-workspace-edit",
|
|
1215
|
-
"path": "
|
|
1378
|
+
"path": "./../../src/backoffice/settings/languages/workspace/language/language-workspace-edit.element.ts",
|
|
1216
1379
|
"properties": [
|
|
1217
1380
|
{
|
|
1218
1381
|
"name": "styles",
|
|
@@ -1223,7 +1386,7 @@
|
|
|
1223
1386
|
},
|
|
1224
1387
|
{
|
|
1225
1388
|
"name": "umb-language-workspace",
|
|
1226
|
-
"path": "
|
|
1389
|
+
"path": "./../../src/backoffice/settings/languages/workspace/language/language-workspace.element.ts",
|
|
1227
1390
|
"properties": [
|
|
1228
1391
|
{
|
|
1229
1392
|
"name": "styles",
|
|
@@ -1234,7 +1397,7 @@
|
|
|
1234
1397
|
},
|
|
1235
1398
|
{
|
|
1236
1399
|
"name": "umb-language-details-workspace-view",
|
|
1237
|
-
"path": "
|
|
1400
|
+
"path": "./../../src/backoffice/settings/languages/workspace/language/views/details/language-details-workspace-view.element.ts",
|
|
1238
1401
|
"properties": [
|
|
1239
1402
|
{
|
|
1240
1403
|
"name": "styles",
|
|
@@ -1245,7 +1408,7 @@
|
|
|
1245
1408
|
},
|
|
1246
1409
|
{
|
|
1247
1410
|
"name": "umb-log-viewer-date-range-selector",
|
|
1248
|
-
"path": "
|
|
1411
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/logviewer-root/components/log-viewer-date-range-selector.element.ts",
|
|
1249
1412
|
"attributes": [
|
|
1250
1413
|
{
|
|
1251
1414
|
"name": "horizontal",
|
|
@@ -1269,7 +1432,7 @@
|
|
|
1269
1432
|
},
|
|
1270
1433
|
{
|
|
1271
1434
|
"name": "umb-log-viewer-level-tag",
|
|
1272
|
-
"path": "
|
|
1435
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/logviewer-root/components/log-viewer-level-tag.element.ts",
|
|
1273
1436
|
"attributes": [
|
|
1274
1437
|
{
|
|
1275
1438
|
"name": "level"
|
|
@@ -1288,13 +1451,13 @@
|
|
|
1288
1451
|
{
|
|
1289
1452
|
"name": "levelMap",
|
|
1290
1453
|
"type": "Record<any, LevelMapStyles>",
|
|
1291
|
-
"default": "{\"Verbose\":{\"look\":\"secondary\"},\"Debug\":{\"look\":\"default\",\"style\":\"background-color: var(--umb-log-viewer-debug-color); color: var(--uui-color-surface)\"},\"Information\":{\"look\":\"primary\",\"color\":\"positive\"},\"Warning\":{\"look\":\"primary\",\"color\":\"warning\"},\"Error\":{\"look\":\"primary\",\"color\":\"danger\"},\"Fatal\":{\"look\":\"primary\"}}"
|
|
1454
|
+
"default": "{\"Verbose\":{\"look\":\"secondary\"},\"Debug\":{\"look\":\"default\",\"style\":\"background-color: var(--umb-log-viewer-debug-color); color: var(--uui-color-surface)\"},\"Information\":{\"look\":\"primary\",\"color\":\"positive\"},\"Warning\":{\"look\":\"primary\",\"color\":\"warning\"},\"Error\":{\"look\":\"primary\",\"color\":\"danger\"},\"Fatal\":{\"look\":\"primary\",\"style\":\"background-color: var(--umb-log-viewer-fatal-color); color: var(--uui-color-surface)\"}}"
|
|
1292
1455
|
}
|
|
1293
1456
|
]
|
|
1294
1457
|
},
|
|
1295
1458
|
{
|
|
1296
1459
|
"name": "umb-log-viewer-to-many-logs-warning",
|
|
1297
|
-
"path": "
|
|
1460
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/logviewer-root/components/log-viewer-to-many-logs-warning.element.ts",
|
|
1298
1461
|
"properties": [
|
|
1299
1462
|
{
|
|
1300
1463
|
"name": "styles",
|
|
@@ -1305,7 +1468,7 @@
|
|
|
1305
1468
|
},
|
|
1306
1469
|
{
|
|
1307
1470
|
"name": "umb-logviewer-workspace",
|
|
1308
|
-
"path": "
|
|
1471
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/logviewer-root/logviewer-root-workspace.element.ts",
|
|
1309
1472
|
"properties": [
|
|
1310
1473
|
{
|
|
1311
1474
|
"name": "styles",
|
|
@@ -1316,7 +1479,7 @@
|
|
|
1316
1479
|
},
|
|
1317
1480
|
{
|
|
1318
1481
|
"name": "umb-log-viewer-log-level-overview",
|
|
1319
|
-
"path": "
|
|
1482
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/overview/components/log-viewer-log-level-overview.element.ts",
|
|
1320
1483
|
"attributes": [
|
|
1321
1484
|
{
|
|
1322
1485
|
"name": "loggerName",
|
|
@@ -1337,7 +1500,7 @@
|
|
|
1337
1500
|
},
|
|
1338
1501
|
{
|
|
1339
1502
|
"name": "umb-log-viewer-log-types-chart",
|
|
1340
|
-
"path": "
|
|
1503
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/overview/components/log-viewer-log-types-chart.element.ts",
|
|
1341
1504
|
"properties": [
|
|
1342
1505
|
{
|
|
1343
1506
|
"name": "styles",
|
|
@@ -1348,7 +1511,7 @@
|
|
|
1348
1511
|
},
|
|
1349
1512
|
{
|
|
1350
1513
|
"name": "umb-log-viewer-message-templates-overview",
|
|
1351
|
-
"path": "
|
|
1514
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/overview/components/log-viewer-message-templates-overview.element.ts",
|
|
1352
1515
|
"properties": [
|
|
1353
1516
|
{
|
|
1354
1517
|
"name": "styles",
|
|
@@ -1359,7 +1522,7 @@
|
|
|
1359
1522
|
},
|
|
1360
1523
|
{
|
|
1361
1524
|
"name": "umb-log-viewer-saved-searches-overview",
|
|
1362
|
-
"path": "
|
|
1525
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/overview/components/log-viewer-saved-searches-overview.element.ts",
|
|
1363
1526
|
"properties": [
|
|
1364
1527
|
{
|
|
1365
1528
|
"name": "styles",
|
|
@@ -1370,7 +1533,7 @@
|
|
|
1370
1533
|
},
|
|
1371
1534
|
{
|
|
1372
1535
|
"name": "umb-log-viewer-overview-view",
|
|
1373
|
-
"path": "
|
|
1536
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/overview/log-overview-view.element.ts",
|
|
1374
1537
|
"properties": [
|
|
1375
1538
|
{
|
|
1376
1539
|
"name": "styles",
|
|
@@ -1381,7 +1544,7 @@
|
|
|
1381
1544
|
},
|
|
1382
1545
|
{
|
|
1383
1546
|
"name": "umb-log-viewer-log-level-filter-menu",
|
|
1384
|
-
"path": "
|
|
1547
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/components/log-viewer-log-level-filter-menu.element.ts",
|
|
1385
1548
|
"properties": [
|
|
1386
1549
|
{
|
|
1387
1550
|
"name": "styles",
|
|
@@ -1391,13 +1554,13 @@
|
|
|
1391
1554
|
{
|
|
1392
1555
|
"name": "setLogLevelDebounce",
|
|
1393
1556
|
"type": "DebouncedFunc<() => void>",
|
|
1394
|
-
"default": "\"
|
|
1557
|
+
"default": "\"debounce(this.#setLogLevel, 300)\""
|
|
1395
1558
|
}
|
|
1396
1559
|
]
|
|
1397
1560
|
},
|
|
1398
1561
|
{
|
|
1399
1562
|
"name": "umb-log-viewer-message",
|
|
1400
|
-
"path": "
|
|
1563
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/components/log-viewer-message.element.ts",
|
|
1401
1564
|
"attributes": [
|
|
1402
1565
|
{
|
|
1403
1566
|
"name": "timestamp",
|
|
@@ -1487,7 +1650,7 @@
|
|
|
1487
1650
|
},
|
|
1488
1651
|
{
|
|
1489
1652
|
"name": "umb-log-viewer-messages-list",
|
|
1490
|
-
"path": "
|
|
1653
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/components/log-viewer-messages-list.element.ts",
|
|
1491
1654
|
"properties": [
|
|
1492
1655
|
{
|
|
1493
1656
|
"name": "styles",
|
|
@@ -1498,7 +1661,18 @@
|
|
|
1498
1661
|
},
|
|
1499
1662
|
{
|
|
1500
1663
|
"name": "umb-log-viewer-polling-button",
|
|
1501
|
-
"path": "
|
|
1664
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/components/log-viewer-polling-button.element.ts",
|
|
1665
|
+
"properties": [
|
|
1666
|
+
{
|
|
1667
|
+
"name": "styles",
|
|
1668
|
+
"type": "CSSResult[]",
|
|
1669
|
+
"default": "[\"UUITextStyles\",null]"
|
|
1670
|
+
}
|
|
1671
|
+
]
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"name": "umb-log-viewer-save-search-modal",
|
|
1675
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/components/log-viewer-search-input-modal.element.ts",
|
|
1502
1676
|
"properties": [
|
|
1503
1677
|
{
|
|
1504
1678
|
"name": "styles",
|
|
@@ -1509,7 +1683,7 @@
|
|
|
1509
1683
|
},
|
|
1510
1684
|
{
|
|
1511
1685
|
"name": "umb-log-viewer-search-input",
|
|
1512
|
-
"path": "
|
|
1686
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/components/log-viewer-search-input.element.ts",
|
|
1513
1687
|
"properties": [
|
|
1514
1688
|
{
|
|
1515
1689
|
"name": "styles",
|
|
@@ -1520,7 +1694,7 @@
|
|
|
1520
1694
|
},
|
|
1521
1695
|
{
|
|
1522
1696
|
"name": "umb-log-viewer-search-view",
|
|
1523
|
-
"path": "
|
|
1697
|
+
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/log-search-view.element.ts",
|
|
1524
1698
|
"properties": [
|
|
1525
1699
|
{
|
|
1526
1700
|
"name": "styles",
|
|
@@ -1531,7 +1705,7 @@
|
|
|
1531
1705
|
},
|
|
1532
1706
|
{
|
|
1533
1707
|
"name": "umb-relation-type-workspace-edit-element",
|
|
1534
|
-
"path": "
|
|
1708
|
+
"path": "./../../src/backoffice/settings/relation-types/workspace/relation-type-workspace-edit.element.ts",
|
|
1535
1709
|
"properties": [
|
|
1536
1710
|
{
|
|
1537
1711
|
"name": "styles",
|
|
@@ -1542,7 +1716,7 @@
|
|
|
1542
1716
|
},
|
|
1543
1717
|
{
|
|
1544
1718
|
"name": "umb-relation-type-workspace",
|
|
1545
|
-
"path": "
|
|
1719
|
+
"path": "./../../src/backoffice/settings/relation-types/workspace/relation-type-workspace.element.ts",
|
|
1546
1720
|
"properties": [
|
|
1547
1721
|
{
|
|
1548
1722
|
"name": "styles",
|
|
@@ -1553,7 +1727,7 @@
|
|
|
1553
1727
|
},
|
|
1554
1728
|
{
|
|
1555
1729
|
"name": "umb-relation-type-workspace-view-relation-type",
|
|
1556
|
-
"path": "
|
|
1730
|
+
"path": "./../../src/backoffice/settings/relation-types/workspace/views/relation-type/relation-type-workspace-view-relation-type.element.ts",
|
|
1557
1731
|
"properties": [
|
|
1558
1732
|
{
|
|
1559
1733
|
"name": "styles",
|
|
@@ -1564,7 +1738,7 @@
|
|
|
1564
1738
|
},
|
|
1565
1739
|
{
|
|
1566
1740
|
"name": "umb-workspace-view-relation-type-relation",
|
|
1567
|
-
"path": "
|
|
1741
|
+
"path": "./../../src/backoffice/settings/relation-types/workspace/views/relation/workspace-view-relation-type-relation.element.ts",
|
|
1568
1742
|
"properties": [
|
|
1569
1743
|
{
|
|
1570
1744
|
"name": "styles",
|
|
@@ -1575,7 +1749,7 @@
|
|
|
1575
1749
|
},
|
|
1576
1750
|
{
|
|
1577
1751
|
"name": "umb-collection-selection-actions",
|
|
1578
|
-
"path": "
|
|
1752
|
+
"path": "./../../src/backoffice/shared/collection/collection-selection-actions.element.ts",
|
|
1579
1753
|
"attributes": [
|
|
1580
1754
|
{
|
|
1581
1755
|
"name": "entityType",
|
|
@@ -1597,7 +1771,7 @@
|
|
|
1597
1771
|
},
|
|
1598
1772
|
{
|
|
1599
1773
|
"name": "umb-collection-toolbar",
|
|
1600
|
-
"path": "
|
|
1774
|
+
"path": "./../../src/backoffice/shared/collection/collection-toolbar.element.ts",
|
|
1601
1775
|
"attributes": [
|
|
1602
1776
|
{
|
|
1603
1777
|
"name": "actions",
|
|
@@ -1637,7 +1811,7 @@
|
|
|
1637
1811
|
},
|
|
1638
1812
|
{
|
|
1639
1813
|
"name": "umb-collection",
|
|
1640
|
-
"path": "
|
|
1814
|
+
"path": "./../../src/backoffice/shared/collection/collection.element.ts",
|
|
1641
1815
|
"attributes": [
|
|
1642
1816
|
{
|
|
1643
1817
|
"name": "entity-type",
|
|
@@ -1659,7 +1833,7 @@
|
|
|
1659
1833
|
},
|
|
1660
1834
|
{
|
|
1661
1835
|
"name": "umb-dashboard-collection",
|
|
1662
|
-
"path": "
|
|
1836
|
+
"path": "./../../src/backoffice/shared/collection/dashboards/dashboard-collection.element.ts",
|
|
1663
1837
|
"properties": [
|
|
1664
1838
|
{
|
|
1665
1839
|
"name": "styles",
|
|
@@ -1673,7 +1847,7 @@
|
|
|
1673
1847
|
},
|
|
1674
1848
|
{
|
|
1675
1849
|
"name": "umb-backoffice-header-apps",
|
|
1676
|
-
"path": "
|
|
1850
|
+
"path": "./../../src/backoffice/shared/components/backoffice-frame/backoffice-header-apps.element.ts",
|
|
1677
1851
|
"properties": [
|
|
1678
1852
|
{
|
|
1679
1853
|
"name": "styles",
|
|
@@ -1684,7 +1858,7 @@
|
|
|
1684
1858
|
},
|
|
1685
1859
|
{
|
|
1686
1860
|
"name": "umb-backoffice-header-sections",
|
|
1687
|
-
"path": "
|
|
1861
|
+
"path": "./../../src/backoffice/shared/components/backoffice-frame/backoffice-header-sections.element.ts",
|
|
1688
1862
|
"properties": [
|
|
1689
1863
|
{
|
|
1690
1864
|
"name": "styles",
|
|
@@ -1695,7 +1869,7 @@
|
|
|
1695
1869
|
},
|
|
1696
1870
|
{
|
|
1697
1871
|
"name": "umb-backoffice-header",
|
|
1698
|
-
"path": "
|
|
1872
|
+
"path": "./../../src/backoffice/shared/components/backoffice-frame/backoffice-header.element.ts",
|
|
1699
1873
|
"properties": [
|
|
1700
1874
|
{
|
|
1701
1875
|
"name": "styles",
|
|
@@ -1706,7 +1880,7 @@
|
|
|
1706
1880
|
},
|
|
1707
1881
|
{
|
|
1708
1882
|
"name": "umb-backoffice-main",
|
|
1709
|
-
"path": "
|
|
1883
|
+
"path": "./../../src/backoffice/shared/components/backoffice-frame/backoffice-main.element.ts",
|
|
1710
1884
|
"properties": [
|
|
1711
1885
|
{
|
|
1712
1886
|
"name": "styles",
|
|
@@ -1717,7 +1891,7 @@
|
|
|
1717
1891
|
},
|
|
1718
1892
|
{
|
|
1719
1893
|
"name": "umb-backoffice-modal-container",
|
|
1720
|
-
"path": "
|
|
1894
|
+
"path": "./../../src/backoffice/shared/components/backoffice-frame/backoffice-modal-container.element.ts",
|
|
1721
1895
|
"properties": [
|
|
1722
1896
|
{
|
|
1723
1897
|
"name": "styles",
|
|
@@ -1728,7 +1902,7 @@
|
|
|
1728
1902
|
},
|
|
1729
1903
|
{
|
|
1730
1904
|
"name": "umb-backoffice-notification-container",
|
|
1731
|
-
"path": "
|
|
1905
|
+
"path": "./../../src/backoffice/shared/components/backoffice-frame/backoffice-notification-container.element.ts",
|
|
1732
1906
|
"properties": [
|
|
1733
1907
|
{
|
|
1734
1908
|
"name": "styles",
|
|
@@ -1739,7 +1913,7 @@
|
|
|
1739
1913
|
},
|
|
1740
1914
|
{
|
|
1741
1915
|
"name": "umb-body-layout",
|
|
1742
|
-
"path": "
|
|
1916
|
+
"path": "./../../src/backoffice/shared/components/body-layout/body-layout.element.ts",
|
|
1743
1917
|
"attributes": [
|
|
1744
1918
|
{
|
|
1745
1919
|
"name": "headline",
|
|
@@ -1787,7 +1961,7 @@
|
|
|
1787
1961
|
},
|
|
1788
1962
|
{
|
|
1789
1963
|
"name": "umb-button-with-dropdown",
|
|
1790
|
-
"path": "
|
|
1964
|
+
"path": "./../../src/backoffice/shared/components/button-with-dropdown/button-with-dropdown.element.ts",
|
|
1791
1965
|
"attributes": [
|
|
1792
1966
|
{
|
|
1793
1967
|
"name": "label",
|
|
@@ -1862,8 +2036,8 @@
|
|
|
1862
2036
|
]
|
|
1863
2037
|
},
|
|
1864
2038
|
{
|
|
1865
|
-
"name": "
|
|
1866
|
-
"path": "
|
|
2039
|
+
"name": "umb-code-block",
|
|
2040
|
+
"path": "./../../src/backoffice/shared/components/code-block/code-block.element.ts",
|
|
1867
2041
|
"description": "A simple styled box for showing code-based error messages.",
|
|
1868
2042
|
"properties": [
|
|
1869
2043
|
{
|
|
@@ -1881,7 +2055,7 @@
|
|
|
1881
2055
|
},
|
|
1882
2056
|
{
|
|
1883
2057
|
"name": "umb-code-editor",
|
|
1884
|
-
"path": "
|
|
2058
|
+
"path": "./../../src/backoffice/shared/components/code-editor/code-editor.element.ts",
|
|
1885
2059
|
"description": "A custom element that renders a code editor. Code editor is based on the Monaco Editor library.\nThe element will listen to the theme context and update the theme accordingly.\nParts of the monaco Api is exposed through the `editor` property. You can access the monaco editor instance through `editor.monacoEditor`.",
|
|
1886
2060
|
"attributes": [
|
|
1887
2061
|
{
|
|
@@ -1976,7 +2150,7 @@
|
|
|
1976
2150
|
},
|
|
1977
2151
|
{
|
|
1978
2152
|
"name": "umb-debug",
|
|
1979
|
-
"path": "
|
|
2153
|
+
"path": "./../../src/backoffice/shared/components/debug/debug.element.ts",
|
|
1980
2154
|
"attributes": [
|
|
1981
2155
|
{
|
|
1982
2156
|
"name": "visible",
|
|
@@ -2016,7 +2190,7 @@
|
|
|
2016
2190
|
},
|
|
2017
2191
|
{
|
|
2018
2192
|
"name": "umb-context-debugger-modal",
|
|
2019
|
-
"path": "
|
|
2193
|
+
"path": "./../../src/backoffice/shared/components/debug/modals/debug/debug-modal.element.ts",
|
|
2020
2194
|
"properties": [
|
|
2021
2195
|
{
|
|
2022
2196
|
"name": "styles",
|
|
@@ -2027,7 +2201,7 @@
|
|
|
2027
2201
|
},
|
|
2028
2202
|
{
|
|
2029
2203
|
"name": "umb-donut-chart",
|
|
2030
|
-
"path": "
|
|
2204
|
+
"path": "./../../src/backoffice/shared/components/donut-chart/donut-chart.element.ts",
|
|
2031
2205
|
"description": "This is a donut chart component that can be used to display data in a circular way.",
|
|
2032
2206
|
"attributes": [
|
|
2033
2207
|
{
|
|
@@ -2106,7 +2280,7 @@
|
|
|
2106
2280
|
},
|
|
2107
2281
|
{
|
|
2108
2282
|
"name": "umb-donut-slice",
|
|
2109
|
-
"path": "
|
|
2283
|
+
"path": "./../../src/backoffice/shared/components/donut-chart/donut-slice.element.ts",
|
|
2110
2284
|
"description": "This component is used to display a single slice of a donut chart. It only makes sense insice the donut chart",
|
|
2111
2285
|
"attributes": [
|
|
2112
2286
|
{
|
|
@@ -2173,7 +2347,7 @@
|
|
|
2173
2347
|
},
|
|
2174
2348
|
{
|
|
2175
2349
|
"name": "umb-dropdown",
|
|
2176
|
-
"path": "
|
|
2350
|
+
"path": "./../../src/backoffice/shared/components/dropdown/dropdown.element.ts",
|
|
2177
2351
|
"attributes": [
|
|
2178
2352
|
{
|
|
2179
2353
|
"name": "open",
|
|
@@ -2197,7 +2371,7 @@
|
|
|
2197
2371
|
},
|
|
2198
2372
|
{
|
|
2199
2373
|
"name": "umb-empty-state",
|
|
2200
|
-
"path": "
|
|
2374
|
+
"path": "./../../src/backoffice/shared/components/empty-state/empty-state.element.ts",
|
|
2201
2375
|
"attributes": [
|
|
2202
2376
|
{
|
|
2203
2377
|
"name": "size",
|
|
@@ -2234,7 +2408,7 @@
|
|
|
2234
2408
|
},
|
|
2235
2409
|
{
|
|
2236
2410
|
"name": "umb-entity-action-list",
|
|
2237
|
-
"path": "
|
|
2411
|
+
"path": "./../../src/backoffice/shared/components/entity-action/entity-action-list.element.ts",
|
|
2238
2412
|
"attributes": [
|
|
2239
2413
|
{
|
|
2240
2414
|
"name": "entity-type",
|
|
@@ -2260,7 +2434,7 @@
|
|
|
2260
2434
|
},
|
|
2261
2435
|
{
|
|
2262
2436
|
"name": "umb-entity-action",
|
|
2263
|
-
"path": "
|
|
2437
|
+
"path": "./../../src/backoffice/shared/components/entity-action/entity-action.element.ts",
|
|
2264
2438
|
"attributes": [
|
|
2265
2439
|
{
|
|
2266
2440
|
"name": "unique",
|
|
@@ -2280,7 +2454,7 @@
|
|
|
2280
2454
|
},
|
|
2281
2455
|
{
|
|
2282
2456
|
"name": "umb-entity-bulk-action",
|
|
2283
|
-
"path": "
|
|
2457
|
+
"path": "./../../src/backoffice/shared/components/entity-bulk-action/entity-bulk-action.element.ts",
|
|
2284
2458
|
"properties": [
|
|
2285
2459
|
{
|
|
2286
2460
|
"name": "selection",
|
|
@@ -2293,7 +2467,7 @@
|
|
|
2293
2467
|
},
|
|
2294
2468
|
{
|
|
2295
2469
|
"name": "umb-extension-slot",
|
|
2296
|
-
"path": "
|
|
2470
|
+
"path": "./../../src/backoffice/shared/components/extension-slot/extension-slot.element.ts",
|
|
2297
2471
|
"attributes": [
|
|
2298
2472
|
{
|
|
2299
2473
|
"name": "type",
|
|
@@ -2354,7 +2528,7 @@
|
|
|
2354
2528
|
},
|
|
2355
2529
|
{
|
|
2356
2530
|
"name": "umb-footer-layout",
|
|
2357
|
-
"path": "
|
|
2531
|
+
"path": "./../../src/backoffice/shared/components/footer-layout/footer-layout.element.ts",
|
|
2358
2532
|
"properties": [
|
|
2359
2533
|
{
|
|
2360
2534
|
"name": "styles",
|
|
@@ -2375,7 +2549,7 @@
|
|
|
2375
2549
|
},
|
|
2376
2550
|
{
|
|
2377
2551
|
"name": "umb-header-app-button",
|
|
2378
|
-
"path": "
|
|
2552
|
+
"path": "./../../src/backoffice/shared/components/header-app/header-app-button.element.ts",
|
|
2379
2553
|
"properties": [
|
|
2380
2554
|
{
|
|
2381
2555
|
"name": "styles",
|
|
@@ -2389,7 +2563,7 @@
|
|
|
2389
2563
|
},
|
|
2390
2564
|
{
|
|
2391
2565
|
"name": "umb-history-item",
|
|
2392
|
-
"path": "
|
|
2566
|
+
"path": "./../../src/backoffice/shared/components/history/history-item.element.ts",
|
|
2393
2567
|
"attributes": [
|
|
2394
2568
|
{
|
|
2395
2569
|
"name": "src",
|
|
@@ -2429,7 +2603,7 @@
|
|
|
2429
2603
|
},
|
|
2430
2604
|
{
|
|
2431
2605
|
"name": "umb-history-list",
|
|
2432
|
-
"path": "
|
|
2606
|
+
"path": "./../../src/backoffice/shared/components/history/history-list.element.ts",
|
|
2433
2607
|
"properties": [
|
|
2434
2608
|
{
|
|
2435
2609
|
"name": "styles",
|
|
@@ -2440,7 +2614,7 @@
|
|
|
2440
2614
|
},
|
|
2441
2615
|
{
|
|
2442
2616
|
"name": "umb-input-checkbox-list",
|
|
2443
|
-
"path": "
|
|
2617
|
+
"path": "./../../src/backoffice/shared/components/input-checkbox-list/input-checkbox-list.element.ts",
|
|
2444
2618
|
"attributes": [
|
|
2445
2619
|
{
|
|
2446
2620
|
"name": "list",
|
|
@@ -2520,7 +2694,7 @@
|
|
|
2520
2694
|
},
|
|
2521
2695
|
{
|
|
2522
2696
|
"name": "umb-input-color-picker",
|
|
2523
|
-
"path": "
|
|
2697
|
+
"path": "./../../src/backoffice/shared/components/input-color-picker/input-color-picker.element.ts",
|
|
2524
2698
|
"description": "This wraps the UUI library uui-color-swatches component",
|
|
2525
2699
|
"attributes": [
|
|
2526
2700
|
{
|
|
@@ -2599,7 +2773,7 @@
|
|
|
2599
2773
|
},
|
|
2600
2774
|
{
|
|
2601
2775
|
"name": "umb-input-culture-select",
|
|
2602
|
-
"path": "
|
|
2776
|
+
"path": "./../../src/backoffice/shared/components/input-culture-select/input-culture-select.element.ts",
|
|
2603
2777
|
"attributes": [
|
|
2604
2778
|
{
|
|
2605
2779
|
"name": "disabled",
|
|
@@ -2682,7 +2856,7 @@
|
|
|
2682
2856
|
},
|
|
2683
2857
|
{
|
|
2684
2858
|
"name": "umb-input-document-picker",
|
|
2685
|
-
"path": "
|
|
2859
|
+
"path": "./../../src/backoffice/shared/components/input-document-picker/input-document-picker.element.ts",
|
|
2686
2860
|
"attributes": [
|
|
2687
2861
|
{
|
|
2688
2862
|
"name": "min",
|
|
@@ -2748,7 +2922,7 @@
|
|
|
2748
2922
|
"default": "\"\""
|
|
2749
2923
|
},
|
|
2750
2924
|
{
|
|
2751
|
-
"name": "
|
|
2925
|
+
"name": "selectedIds",
|
|
2752
2926
|
"type": "string[]"
|
|
2753
2927
|
},
|
|
2754
2928
|
{
|
|
@@ -2801,8 +2975,12 @@
|
|
|
2801
2975
|
},
|
|
2802
2976
|
{
|
|
2803
2977
|
"name": "umb-input-document-type-picker",
|
|
2804
|
-
"path": "
|
|
2978
|
+
"path": "./../../src/backoffice/shared/components/input-document-type-picker/input-document-type-picker.element.ts",
|
|
2805
2979
|
"attributes": [
|
|
2980
|
+
{
|
|
2981
|
+
"name": "selectedIds",
|
|
2982
|
+
"type": "string[]"
|
|
2983
|
+
},
|
|
2806
2984
|
{
|
|
2807
2985
|
"name": "value",
|
|
2808
2986
|
"type": "string"
|
|
@@ -2815,7 +2993,8 @@
|
|
|
2815
2993
|
"default": "[\"UUITextStyles\",null]"
|
|
2816
2994
|
},
|
|
2817
2995
|
{
|
|
2818
|
-
"name": "
|
|
2996
|
+
"name": "selectedIds",
|
|
2997
|
+
"attribute": "selectedIds",
|
|
2819
2998
|
"type": "string[]"
|
|
2820
2999
|
},
|
|
2821
3000
|
{
|
|
@@ -2868,7 +3047,7 @@
|
|
|
2868
3047
|
},
|
|
2869
3048
|
{
|
|
2870
3049
|
"name": "umb-input-eye-dropper",
|
|
2871
|
-
"path": "
|
|
3050
|
+
"path": "./../../src/backoffice/shared/components/input-eye-dropper/input-eye-dropper.element.ts",
|
|
2872
3051
|
"attributes": [
|
|
2873
3052
|
{
|
|
2874
3053
|
"name": "opacity",
|
|
@@ -2948,19 +3127,19 @@
|
|
|
2948
3127
|
},
|
|
2949
3128
|
{
|
|
2950
3129
|
"name": "umb-input-language-picker",
|
|
2951
|
-
"path": "
|
|
3130
|
+
"path": "./../../src/backoffice/shared/components/input-language-picker/input-language-picker.element.ts",
|
|
2952
3131
|
"attributes": [
|
|
2953
3132
|
{
|
|
2954
3133
|
"name": "min",
|
|
2955
3134
|
"description": "This is a minimum amount of selected items in this input.",
|
|
2956
3135
|
"type": "number",
|
|
2957
|
-
"default": "\"
|
|
3136
|
+
"default": "\"0\""
|
|
2958
3137
|
},
|
|
2959
3138
|
{
|
|
2960
3139
|
"name": "max",
|
|
2961
3140
|
"description": "This is a maximum amount of selected items in this input.",
|
|
2962
3141
|
"type": "number",
|
|
2963
|
-
"default": "\"
|
|
3142
|
+
"default": "\"Infinity\""
|
|
2964
3143
|
},
|
|
2965
3144
|
{
|
|
2966
3145
|
"name": "min-message",
|
|
@@ -2980,24 +3159,19 @@
|
|
|
2980
3159
|
}
|
|
2981
3160
|
],
|
|
2982
3161
|
"properties": [
|
|
2983
|
-
{
|
|
2984
|
-
"name": "styles",
|
|
2985
|
-
"type": "CSSResult[]",
|
|
2986
|
-
"default": "[\"UUITextStyles\",null]"
|
|
2987
|
-
},
|
|
2988
3162
|
{
|
|
2989
3163
|
"name": "min",
|
|
2990
3164
|
"attribute": "min",
|
|
2991
3165
|
"description": "This is a minimum amount of selected items in this input.",
|
|
2992
3166
|
"type": "number",
|
|
2993
|
-
"default": "\"
|
|
3167
|
+
"default": "\"0\""
|
|
2994
3168
|
},
|
|
2995
3169
|
{
|
|
2996
3170
|
"name": "max",
|
|
2997
3171
|
"attribute": "max",
|
|
2998
3172
|
"description": "This is a maximum amount of selected items in this input.",
|
|
2999
3173
|
"type": "number",
|
|
3000
|
-
"default": "\"
|
|
3174
|
+
"default": "\"Infinity\""
|
|
3001
3175
|
},
|
|
3002
3176
|
{
|
|
3003
3177
|
"name": "minMessage",
|
|
@@ -3022,6 +3196,11 @@
|
|
|
3022
3196
|
"name": "selectedIsoCodes",
|
|
3023
3197
|
"type": "string[]"
|
|
3024
3198
|
},
|
|
3199
|
+
{
|
|
3200
|
+
"name": "styles",
|
|
3201
|
+
"type": "CSSResult[]",
|
|
3202
|
+
"default": "[\"UUITextStyles\",null]"
|
|
3203
|
+
},
|
|
3025
3204
|
{
|
|
3026
3205
|
"name": "formAssociated",
|
|
3027
3206
|
"type": "boolean"
|
|
@@ -3067,7 +3246,7 @@
|
|
|
3067
3246
|
},
|
|
3068
3247
|
{
|
|
3069
3248
|
"name": "umb-input-media-picker",
|
|
3070
|
-
"path": "
|
|
3249
|
+
"path": "./../../src/backoffice/shared/components/input-media-picker/input-media-picker.element.ts",
|
|
3071
3250
|
"attributes": [
|
|
3072
3251
|
{
|
|
3073
3252
|
"name": "min",
|
|
@@ -3133,7 +3312,7 @@
|
|
|
3133
3312
|
"default": "\"\""
|
|
3134
3313
|
},
|
|
3135
3314
|
{
|
|
3136
|
-
"name": "
|
|
3315
|
+
"name": "selectedIds",
|
|
3137
3316
|
"type": "string[]"
|
|
3138
3317
|
},
|
|
3139
3318
|
{
|
|
@@ -3186,7 +3365,7 @@
|
|
|
3186
3365
|
},
|
|
3187
3366
|
{
|
|
3188
3367
|
"name": "umb-input-multi-url-picker",
|
|
3189
|
-
"path": "
|
|
3368
|
+
"path": "./../../src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.element.ts",
|
|
3190
3369
|
"attributes": [
|
|
3191
3370
|
{
|
|
3192
3371
|
"name": "alias",
|
|
@@ -3357,7 +3536,7 @@
|
|
|
3357
3536
|
},
|
|
3358
3537
|
{
|
|
3359
3538
|
"name": "umb-input-number-range",
|
|
3360
|
-
"path": "
|
|
3539
|
+
"path": "./../../src/backoffice/shared/components/input-number-range/input-number-range.element.ts",
|
|
3361
3540
|
"attributes": [
|
|
3362
3541
|
{
|
|
3363
3542
|
"name": "min-label",
|
|
@@ -3460,7 +3639,7 @@
|
|
|
3460
3639
|
},
|
|
3461
3640
|
{
|
|
3462
3641
|
"name": "umb-input-radio-button-list",
|
|
3463
|
-
"path": "
|
|
3642
|
+
"path": "./../../src/backoffice/shared/components/input-radio-button-list/input-radio-button-list.element.ts",
|
|
3464
3643
|
"attributes": [
|
|
3465
3644
|
{
|
|
3466
3645
|
"name": "list",
|
|
@@ -3540,7 +3719,7 @@
|
|
|
3540
3719
|
},
|
|
3541
3720
|
{
|
|
3542
3721
|
"name": "umb-input-section",
|
|
3543
|
-
"path": "
|
|
3722
|
+
"path": "./../../src/backoffice/shared/components/input-section/input-section.element.ts",
|
|
3544
3723
|
"attributes": [
|
|
3545
3724
|
{
|
|
3546
3725
|
"name": "value",
|
|
@@ -3600,7 +3779,7 @@
|
|
|
3600
3779
|
},
|
|
3601
3780
|
{
|
|
3602
3781
|
"name": "umb-input-slider",
|
|
3603
|
-
"path": "
|
|
3782
|
+
"path": "./../../src/backoffice/shared/components/input-slider/input-slider.element.ts",
|
|
3604
3783
|
"attributes": [
|
|
3605
3784
|
{
|
|
3606
3785
|
"name": "min",
|
|
@@ -3723,8 +3902,8 @@
|
|
|
3723
3902
|
]
|
|
3724
3903
|
},
|
|
3725
3904
|
{
|
|
3726
|
-
"name": "umb-input-template
|
|
3727
|
-
"path": "
|
|
3905
|
+
"name": "umb-input-template",
|
|
3906
|
+
"path": "./../../src/backoffice/shared/components/input-template/input-template.element.ts",
|
|
3728
3907
|
"attributes": [
|
|
3729
3908
|
{
|
|
3730
3909
|
"name": "min",
|
|
@@ -3751,11 +3930,11 @@
|
|
|
3751
3930
|
"default": "\"\""
|
|
3752
3931
|
},
|
|
3753
3932
|
{
|
|
3754
|
-
"name": "
|
|
3933
|
+
"name": "selectedIds",
|
|
3755
3934
|
"type": "string[]"
|
|
3756
3935
|
},
|
|
3757
3936
|
{
|
|
3758
|
-
"name": "
|
|
3937
|
+
"name": "defaultId",
|
|
3759
3938
|
"type": "string"
|
|
3760
3939
|
}
|
|
3761
3940
|
],
|
|
@@ -3789,13 +3968,13 @@
|
|
|
3789
3968
|
"default": "\"\""
|
|
3790
3969
|
},
|
|
3791
3970
|
{
|
|
3792
|
-
"name": "
|
|
3793
|
-
"attribute": "
|
|
3971
|
+
"name": "selectedIds",
|
|
3972
|
+
"attribute": "selectedIds",
|
|
3794
3973
|
"type": "string[]"
|
|
3795
3974
|
},
|
|
3796
3975
|
{
|
|
3797
|
-
"name": "
|
|
3798
|
-
"attribute": "
|
|
3976
|
+
"name": "defaultId",
|
|
3977
|
+
"attribute": "defaultId",
|
|
3799
3978
|
"type": "string"
|
|
3800
3979
|
},
|
|
3801
3980
|
{
|
|
@@ -3846,16 +4025,13 @@
|
|
|
3846
4025
|
],
|
|
3847
4026
|
"events": [
|
|
3848
4027
|
{
|
|
3849
|
-
"name": "change
|
|
3850
|
-
},
|
|
3851
|
-
{
|
|
3852
|
-
"name": "change-allowed"
|
|
4028
|
+
"name": "change"
|
|
3853
4029
|
}
|
|
3854
4030
|
]
|
|
3855
4031
|
},
|
|
3856
4032
|
{
|
|
3857
4033
|
"name": "umb-input-toggle",
|
|
3858
|
-
"path": "
|
|
4034
|
+
"path": "./../../src/backoffice/shared/components/input-toggle/input-toggle.element.ts",
|
|
3859
4035
|
"attributes": [
|
|
3860
4036
|
{
|
|
3861
4037
|
"name": "checked",
|
|
@@ -3951,7 +4127,7 @@
|
|
|
3951
4127
|
},
|
|
3952
4128
|
{
|
|
3953
4129
|
"name": "umb-input-upload-field",
|
|
3954
|
-
"path": "
|
|
4130
|
+
"path": "./../../src/backoffice/shared/components/input-upload-field/input-upload-field.element.ts",
|
|
3955
4131
|
"attributes": [
|
|
3956
4132
|
{
|
|
3957
4133
|
"name": "keys",
|
|
@@ -4046,7 +4222,7 @@
|
|
|
4046
4222
|
},
|
|
4047
4223
|
{
|
|
4048
4224
|
"name": "umb-input-user-group",
|
|
4049
|
-
"path": "
|
|
4225
|
+
"path": "./../../src/backoffice/shared/components/input-user-group/input-user-group.element.ts",
|
|
4050
4226
|
"attributes": [
|
|
4051
4227
|
{
|
|
4052
4228
|
"name": "value",
|
|
@@ -4106,7 +4282,7 @@
|
|
|
4106
4282
|
},
|
|
4107
4283
|
{
|
|
4108
4284
|
"name": "umb-input-user",
|
|
4109
|
-
"path": "
|
|
4285
|
+
"path": "./../../src/backoffice/shared/components/input-user/input-user.element.ts",
|
|
4110
4286
|
"attributes": [
|
|
4111
4287
|
{
|
|
4112
4288
|
"name": "value",
|
|
@@ -4166,7 +4342,7 @@
|
|
|
4166
4342
|
},
|
|
4167
4343
|
{
|
|
4168
4344
|
"name": "umb-menu-item-base",
|
|
4169
|
-
"path": "
|
|
4345
|
+
"path": "./../../src/backoffice/shared/components/menu/menu-item-base/menu-item-base.element.ts",
|
|
4170
4346
|
"attributes": [
|
|
4171
4347
|
{
|
|
4172
4348
|
"name": "entity-type",
|
|
@@ -4221,7 +4397,7 @@
|
|
|
4221
4397
|
},
|
|
4222
4398
|
{
|
|
4223
4399
|
"name": "umb-menu-item",
|
|
4224
|
-
"path": "
|
|
4400
|
+
"path": "./../../src/backoffice/shared/components/menu/menu-item/menu-item.element.ts",
|
|
4225
4401
|
"properties": [
|
|
4226
4402
|
{
|
|
4227
4403
|
"name": "styles",
|
|
@@ -4235,7 +4411,7 @@
|
|
|
4235
4411
|
},
|
|
4236
4412
|
{
|
|
4237
4413
|
"name": "umb-menu",
|
|
4238
|
-
"path": "
|
|
4414
|
+
"path": "./../../src/backoffice/shared/components/menu/menu.element.ts",
|
|
4239
4415
|
"attributes": [
|
|
4240
4416
|
{
|
|
4241
4417
|
"name": "manifest"
|
|
@@ -4255,7 +4431,7 @@
|
|
|
4255
4431
|
},
|
|
4256
4432
|
{
|
|
4257
4433
|
"name": "umb-property-type-based-property",
|
|
4258
|
-
"path": "
|
|
4434
|
+
"path": "./../../src/backoffice/shared/components/property-type-based-property/property-type-based-property.element.ts",
|
|
4259
4435
|
"attributes": [
|
|
4260
4436
|
{
|
|
4261
4437
|
"name": "propertyVariantId",
|
|
@@ -4284,7 +4460,7 @@
|
|
|
4284
4460
|
},
|
|
4285
4461
|
{
|
|
4286
4462
|
"name": "umb-ref-property-editor-ui",
|
|
4287
|
-
"path": "
|
|
4463
|
+
"path": "./../../src/backoffice/shared/components/ref-property-editor-ui/ref-property-editor-ui.element.ts",
|
|
4288
4464
|
"attributes": [
|
|
4289
4465
|
{
|
|
4290
4466
|
"name": "alias",
|
|
@@ -4407,7 +4583,7 @@
|
|
|
4407
4583
|
},
|
|
4408
4584
|
{
|
|
4409
4585
|
"name": "umb-section-main",
|
|
4410
|
-
"path": "
|
|
4586
|
+
"path": "./../../src/backoffice/shared/components/section/section-main/section-main.element.ts",
|
|
4411
4587
|
"properties": [
|
|
4412
4588
|
{
|
|
4413
4589
|
"name": "styles",
|
|
@@ -4418,7 +4594,7 @@
|
|
|
4418
4594
|
},
|
|
4419
4595
|
{
|
|
4420
4596
|
"name": "umb-section-sidebar-context-menu",
|
|
4421
|
-
"path": "
|
|
4597
|
+
"path": "./../../src/backoffice/shared/components/section/section-sidebar-context-menu/section-sidebar-context-menu.element.ts",
|
|
4422
4598
|
"properties": [
|
|
4423
4599
|
{
|
|
4424
4600
|
"name": "styles",
|
|
@@ -4429,7 +4605,7 @@
|
|
|
4429
4605
|
},
|
|
4430
4606
|
{
|
|
4431
4607
|
"name": "umb-section-sidebar-menu",
|
|
4432
|
-
"path": "
|
|
4608
|
+
"path": "./../../src/backoffice/shared/components/section/section-sidebar-menu/section-sidebar-menu.element.ts",
|
|
4433
4609
|
"attributes": [
|
|
4434
4610
|
{
|
|
4435
4611
|
"name": "manifest"
|
|
@@ -4449,7 +4625,7 @@
|
|
|
4449
4625
|
},
|
|
4450
4626
|
{
|
|
4451
4627
|
"name": "umb-section-sidebar",
|
|
4452
|
-
"path": "
|
|
4628
|
+
"path": "./../../src/backoffice/shared/components/section/section-sidebar/section-sidebar.element.ts",
|
|
4453
4629
|
"properties": [
|
|
4454
4630
|
{
|
|
4455
4631
|
"name": "styles",
|
|
@@ -4460,7 +4636,7 @@
|
|
|
4460
4636
|
},
|
|
4461
4637
|
{
|
|
4462
4638
|
"name": "umb-section-views",
|
|
4463
|
-
"path": "
|
|
4639
|
+
"path": "./../../src/backoffice/shared/components/section/section-views/section-views.element.ts",
|
|
4464
4640
|
"attributes": [
|
|
4465
4641
|
{
|
|
4466
4642
|
"name": "section-alias",
|
|
@@ -4482,7 +4658,7 @@
|
|
|
4482
4658
|
},
|
|
4483
4659
|
{
|
|
4484
4660
|
"name": "umb-section",
|
|
4485
|
-
"path": "
|
|
4661
|
+
"path": "./../../src/backoffice/shared/components/section/section.element.ts",
|
|
4486
4662
|
"attributes": [
|
|
4487
4663
|
{
|
|
4488
4664
|
"name": "manifest"
|
|
@@ -4502,7 +4678,7 @@
|
|
|
4502
4678
|
},
|
|
4503
4679
|
{
|
|
4504
4680
|
"name": "umb-table",
|
|
4505
|
-
"path": "
|
|
4681
|
+
"path": "./../../src/backoffice/shared/components/table/table.element.ts",
|
|
4506
4682
|
"properties": [
|
|
4507
4683
|
{
|
|
4508
4684
|
"name": "styles",
|
|
@@ -4558,7 +4734,7 @@
|
|
|
4558
4734
|
},
|
|
4559
4735
|
{
|
|
4560
4736
|
"name": "umb-template-card",
|
|
4561
|
-
"path": "
|
|
4737
|
+
"path": "./../../src/backoffice/shared/components/template-card/template-card.element.ts",
|
|
4562
4738
|
"attributes": [
|
|
4563
4739
|
{
|
|
4564
4740
|
"name": "default",
|
|
@@ -4643,7 +4819,7 @@
|
|
|
4643
4819
|
"name": "selected"
|
|
4644
4820
|
},
|
|
4645
4821
|
{
|
|
4646
|
-
"name": "change
|
|
4822
|
+
"name": "change"
|
|
4647
4823
|
}
|
|
4648
4824
|
],
|
|
4649
4825
|
"slots": [
|
|
@@ -4654,7 +4830,7 @@
|
|
|
4654
4830
|
},
|
|
4655
4831
|
{
|
|
4656
4832
|
"name": "umb-tooltip-menu",
|
|
4657
|
-
"path": "
|
|
4833
|
+
"path": "./../../src/backoffice/shared/components/tooltip-menu/tooltip-menu.element.ts",
|
|
4658
4834
|
"attributes": [
|
|
4659
4835
|
{
|
|
4660
4836
|
"name": "icon-only",
|
|
@@ -4689,7 +4865,7 @@
|
|
|
4689
4865
|
},
|
|
4690
4866
|
{
|
|
4691
4867
|
"name": "umb-entity-tree-item",
|
|
4692
|
-
"path": "
|
|
4868
|
+
"path": "./../../src/backoffice/shared/components/tree/entity-tree-item/entity-tree-item.element.ts",
|
|
4693
4869
|
"properties": [
|
|
4694
4870
|
{
|
|
4695
4871
|
"name": "styles",
|
|
@@ -4703,7 +4879,7 @@
|
|
|
4703
4879
|
},
|
|
4704
4880
|
{
|
|
4705
4881
|
"name": "umb-tree-item-base",
|
|
4706
|
-
"path": "
|
|
4882
|
+
"path": "./../../src/backoffice/shared/components/tree/tree-item-base/tree-item-base.element.ts",
|
|
4707
4883
|
"properties": [
|
|
4708
4884
|
{
|
|
4709
4885
|
"name": "styles",
|
|
@@ -4714,7 +4890,7 @@
|
|
|
4714
4890
|
},
|
|
4715
4891
|
{
|
|
4716
4892
|
"name": "umb-tree-item",
|
|
4717
|
-
"path": "
|
|
4893
|
+
"path": "./../../src/backoffice/shared/components/tree/tree-item/tree-item.element.ts",
|
|
4718
4894
|
"properties": [
|
|
4719
4895
|
{
|
|
4720
4896
|
"name": "styles",
|
|
@@ -4728,7 +4904,7 @@
|
|
|
4728
4904
|
},
|
|
4729
4905
|
{
|
|
4730
4906
|
"name": "umb-menu-item-tree",
|
|
4731
|
-
"path": "
|
|
4907
|
+
"path": "./../../src/backoffice/shared/components/tree/tree-menu-item/tree-menu-item.element.ts",
|
|
4732
4908
|
"attributes": [
|
|
4733
4909
|
{
|
|
4734
4910
|
"name": "manifest"
|
|
@@ -4743,7 +4919,7 @@
|
|
|
4743
4919
|
},
|
|
4744
4920
|
{
|
|
4745
4921
|
"name": "umb-tree",
|
|
4746
|
-
"path": "
|
|
4922
|
+
"path": "./../../src/backoffice/shared/components/tree/tree.element.ts",
|
|
4747
4923
|
"attributes": [
|
|
4748
4924
|
{
|
|
4749
4925
|
"name": "alias",
|
|
@@ -4756,6 +4932,10 @@
|
|
|
4756
4932
|
{
|
|
4757
4933
|
"name": "selection",
|
|
4758
4934
|
"type": "string[]"
|
|
4935
|
+
},
|
|
4936
|
+
{
|
|
4937
|
+
"name": "multiple",
|
|
4938
|
+
"type": "boolean"
|
|
4759
4939
|
}
|
|
4760
4940
|
],
|
|
4761
4941
|
"properties": [
|
|
@@ -4773,6 +4953,11 @@
|
|
|
4773
4953
|
"name": "selection",
|
|
4774
4954
|
"attribute": "selection",
|
|
4775
4955
|
"type": "string[]"
|
|
4956
|
+
},
|
|
4957
|
+
{
|
|
4958
|
+
"name": "multiple",
|
|
4959
|
+
"attribute": "multiple",
|
|
4960
|
+
"type": "boolean"
|
|
4776
4961
|
}
|
|
4777
4962
|
],
|
|
4778
4963
|
"events": [
|
|
@@ -4783,7 +4968,7 @@
|
|
|
4783
4968
|
},
|
|
4784
4969
|
{
|
|
4785
4970
|
"name": "umb-variant-selector",
|
|
4786
|
-
"path": "
|
|
4971
|
+
"path": "./../../src/backoffice/shared/components/variant-selector/variant-selector.element.ts",
|
|
4787
4972
|
"attributes": [
|
|
4788
4973
|
{
|
|
4789
4974
|
"name": "alias",
|
|
@@ -4805,7 +4990,7 @@
|
|
|
4805
4990
|
},
|
|
4806
4991
|
{
|
|
4807
4992
|
"name": "umb-variantable-property",
|
|
4808
|
-
"path": "
|
|
4993
|
+
"path": "./../../src/backoffice/shared/components/variantable-property/variantable-property.element.ts",
|
|
4809
4994
|
"properties": [
|
|
4810
4995
|
{
|
|
4811
4996
|
"name": "styles",
|
|
@@ -4819,7 +5004,7 @@
|
|
|
4819
5004
|
},
|
|
4820
5005
|
{
|
|
4821
5006
|
"name": "umb-workspace-property",
|
|
4822
|
-
"path": "
|
|
5007
|
+
"path": "./../../src/backoffice/shared/components/workspace-property/workspace-property.element.ts",
|
|
4823
5008
|
"attributes": [
|
|
4824
5009
|
{
|
|
4825
5010
|
"name": "label",
|
|
@@ -4932,7 +5117,7 @@
|
|
|
4932
5117
|
},
|
|
4933
5118
|
{
|
|
4934
5119
|
"name": "umb-workspace-action-menu",
|
|
4935
|
-
"path": "
|
|
5120
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-action-menu/workspace-action-menu.element.ts",
|
|
4936
5121
|
"properties": [
|
|
4937
5122
|
{
|
|
4938
5123
|
"name": "styles",
|
|
@@ -4943,7 +5128,7 @@
|
|
|
4943
5128
|
},
|
|
4944
5129
|
{
|
|
4945
5130
|
"name": "umb-workspace-action",
|
|
4946
|
-
"path": "
|
|
5131
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-action/workspace-action.element.ts",
|
|
4947
5132
|
"properties": [
|
|
4948
5133
|
{
|
|
4949
5134
|
"name": "styles",
|
|
@@ -4957,7 +5142,7 @@
|
|
|
4957
5142
|
},
|
|
4958
5143
|
{
|
|
4959
5144
|
"name": "umb-workspace-view-collection",
|
|
4960
|
-
"path": "
|
|
5145
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-content/views/collection/workspace-view-collection.element.ts",
|
|
4961
5146
|
"properties": [
|
|
4962
5147
|
{
|
|
4963
5148
|
"name": "styles",
|
|
@@ -4971,7 +5156,7 @@
|
|
|
4971
5156
|
},
|
|
4972
5157
|
{
|
|
4973
5158
|
"name": "umb-workspace-footer-layout",
|
|
4974
|
-
"path": "
|
|
5159
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-footer-layout/workspace-footer-layout.element.ts",
|
|
4975
5160
|
"attributes": [
|
|
4976
5161
|
{
|
|
4977
5162
|
"name": "alias",
|
|
@@ -5007,7 +5192,7 @@
|
|
|
5007
5192
|
},
|
|
5008
5193
|
{
|
|
5009
5194
|
"name": "umb-workspace-layout",
|
|
5010
|
-
"path": "
|
|
5195
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-layout/workspace-layout.element.ts",
|
|
5011
5196
|
"attributes": [
|
|
5012
5197
|
{
|
|
5013
5198
|
"name": "headline",
|
|
@@ -5092,7 +5277,7 @@
|
|
|
5092
5277
|
},
|
|
5093
5278
|
{
|
|
5094
5279
|
"name": "umb-workspace-property-layout",
|
|
5095
|
-
"path": "
|
|
5280
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-property-layout/workspace-property-layout.element.ts",
|
|
5096
5281
|
"attributes": [
|
|
5097
5282
|
{
|
|
5098
5283
|
"name": "alias",
|
|
@@ -5171,7 +5356,7 @@
|
|
|
5171
5356
|
},
|
|
5172
5357
|
{
|
|
5173
5358
|
"name": "umb-workspace-variant",
|
|
5174
|
-
"path": "
|
|
5359
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace-variant/workspace-variant.element.ts",
|
|
5175
5360
|
"description": "\nExample. Document Workspace would use a Variant-component(variant component would talk directly to the workspace-context)\nAs well breadcrumbs etc.",
|
|
5176
5361
|
"attributes": [
|
|
5177
5362
|
{
|
|
@@ -5219,7 +5404,7 @@
|
|
|
5219
5404
|
},
|
|
5220
5405
|
{
|
|
5221
5406
|
"name": "umb-workspace",
|
|
5222
|
-
"path": "
|
|
5407
|
+
"path": "./../../src/backoffice/shared/components/workspace/workspace.element.ts",
|
|
5223
5408
|
"attributes": [
|
|
5224
5409
|
{
|
|
5225
5410
|
"name": "entity-type",
|
|
@@ -5243,7 +5428,7 @@
|
|
|
5243
5428
|
},
|
|
5244
5429
|
{
|
|
5245
5430
|
"name": "umb-confirm-modal",
|
|
5246
|
-
"path": "
|
|
5431
|
+
"path": "./../../src/backoffice/shared/modals/confirm/confirm-modal.element.ts",
|
|
5247
5432
|
"attributes": [
|
|
5248
5433
|
{
|
|
5249
5434
|
"name": "data"
|
|
@@ -5266,7 +5451,7 @@
|
|
|
5266
5451
|
},
|
|
5267
5452
|
{
|
|
5268
5453
|
"name": "umb-embedded-media-modal",
|
|
5269
|
-
"path": "
|
|
5454
|
+
"path": "./../../src/backoffice/shared/modals/embedded-media/embedded-media-modal.element.ts",
|
|
5270
5455
|
"attributes": [
|
|
5271
5456
|
{
|
|
5272
5457
|
"name": "data"
|
|
@@ -5289,7 +5474,7 @@
|
|
|
5289
5474
|
},
|
|
5290
5475
|
{
|
|
5291
5476
|
"name": "umb-folder-modal",
|
|
5292
|
-
"path": "
|
|
5477
|
+
"path": "./../../src/backoffice/shared/modals/folder/folder-modal.element.ts",
|
|
5293
5478
|
"properties": [
|
|
5294
5479
|
{
|
|
5295
5480
|
"name": "styles",
|
|
@@ -5306,51 +5491,18 @@
|
|
|
5306
5491
|
},
|
|
5307
5492
|
{
|
|
5308
5493
|
"name": "umb-icon-picker-modal",
|
|
5309
|
-
"path": "
|
|
5310
|
-
"attributes": [
|
|
5311
|
-
{
|
|
5312
|
-
"name": "iconlist",
|
|
5313
|
-
"default": "\"icons.map((icon) => icon.name)\""
|
|
5314
|
-
},
|
|
5315
|
-
{
|
|
5316
|
-
"name": "iconlistFiltered",
|
|
5317
|
-
"type": "string[]",
|
|
5318
|
-
"default": "[]"
|
|
5319
|
-
},
|
|
5320
|
-
{
|
|
5321
|
-
"name": "colorlist",
|
|
5322
|
-
"type": "string[]",
|
|
5323
|
-
"default": "[\"#000000\",\"#373737\",\"#9e9e9e\",\"#607d8b\",\"#2196f3\",\"#03a9f4\",\"#3f51b5\",\"#9c27b0\",\"#673ab7\",\"#00bcd4\",\"#4caf50\",\"#8bc34a\",\"#cddc39\",\"#ffeb3b\",\"#ffc107\",\"#ff9800\",\"#ff5722\",\"#f44336\",\"#e91e63\",\"#795548\"]"
|
|
5324
|
-
}
|
|
5325
|
-
],
|
|
5494
|
+
"path": "./../../src/backoffice/shared/modals/icon-picker/icon-picker-modal.element.ts",
|
|
5326
5495
|
"properties": [
|
|
5327
5496
|
{
|
|
5328
5497
|
"name": "styles",
|
|
5329
5498
|
"type": "CSSResult[]",
|
|
5330
5499
|
"default": "[\"UUITextStyles\",null]"
|
|
5331
|
-
},
|
|
5332
|
-
{
|
|
5333
|
-
"name": "iconlist",
|
|
5334
|
-
"attribute": "iconlist",
|
|
5335
|
-
"default": "\"icons.map((icon) => icon.name)\""
|
|
5336
|
-
},
|
|
5337
|
-
{
|
|
5338
|
-
"name": "iconlistFiltered",
|
|
5339
|
-
"attribute": "iconlistFiltered",
|
|
5340
|
-
"type": "string[]",
|
|
5341
|
-
"default": "[]"
|
|
5342
|
-
},
|
|
5343
|
-
{
|
|
5344
|
-
"name": "colorlist",
|
|
5345
|
-
"attribute": "colorlist",
|
|
5346
|
-
"type": "string[]",
|
|
5347
|
-
"default": "[\"#000000\",\"#373737\",\"#9e9e9e\",\"#607d8b\",\"#2196f3\",\"#03a9f4\",\"#3f51b5\",\"#9c27b0\",\"#673ab7\",\"#00bcd4\",\"#4caf50\",\"#8bc34a\",\"#cddc39\",\"#ffeb3b\",\"#ffc107\",\"#ff9800\",\"#ff5722\",\"#f44336\",\"#e91e63\",\"#795548\"]"
|
|
5348
5500
|
}
|
|
5349
5501
|
]
|
|
5350
5502
|
},
|
|
5351
5503
|
{
|
|
5352
5504
|
"name": "umb-link-picker-modal",
|
|
5353
|
-
"path": "
|
|
5505
|
+
"path": "./../../src/backoffice/shared/modals/link-picker/link-picker-modal.element.ts",
|
|
5354
5506
|
"properties": [
|
|
5355
5507
|
{
|
|
5356
5508
|
"name": "styles",
|
|
@@ -5361,7 +5513,7 @@
|
|
|
5361
5513
|
},
|
|
5362
5514
|
{
|
|
5363
5515
|
"name": "umb-property-settings-modal",
|
|
5364
|
-
"path": "
|
|
5516
|
+
"path": "./../../src/backoffice/shared/modals/property-settings/property-settings-modal.element.ts",
|
|
5365
5517
|
"properties": [
|
|
5366
5518
|
{
|
|
5367
5519
|
"name": "styles",
|
|
@@ -5372,7 +5524,7 @@
|
|
|
5372
5524
|
},
|
|
5373
5525
|
{
|
|
5374
5526
|
"name": "umb-section-picker-modal",
|
|
5375
|
-
"path": "
|
|
5527
|
+
"path": "./../../src/backoffice/shared/modals/section-picker/section-picker-modal.element.ts",
|
|
5376
5528
|
"properties": [
|
|
5377
5529
|
{
|
|
5378
5530
|
"name": "styles",
|
|
@@ -5383,7 +5535,7 @@
|
|
|
5383
5535
|
},
|
|
5384
5536
|
{
|
|
5385
5537
|
"name": "umb-template-picker-modal",
|
|
5386
|
-
"path": "
|
|
5538
|
+
"path": "./../../src/backoffice/shared/modals/template-picker/template-picker-modal.element.ts",
|
|
5387
5539
|
"properties": [
|
|
5388
5540
|
{
|
|
5389
5541
|
"name": "styles",
|
|
@@ -5394,7 +5546,7 @@
|
|
|
5394
5546
|
},
|
|
5395
5547
|
{
|
|
5396
5548
|
"name": "umb-template-modal",
|
|
5397
|
-
"path": "
|
|
5549
|
+
"path": "./../../src/backoffice/shared/modals/template/template-modal.element.ts",
|
|
5398
5550
|
"properties": [
|
|
5399
5551
|
{
|
|
5400
5552
|
"name": "styles",
|
|
@@ -5405,7 +5557,7 @@
|
|
|
5405
5557
|
},
|
|
5406
5558
|
{
|
|
5407
5559
|
"name": "umb-property-action-clear",
|
|
5408
|
-
"path": "
|
|
5560
|
+
"path": "./../../src/backoffice/shared/property-actions/clear/property-action-clear.element.ts",
|
|
5409
5561
|
"attributes": [
|
|
5410
5562
|
{
|
|
5411
5563
|
"name": "value",
|
|
@@ -5429,7 +5581,7 @@
|
|
|
5429
5581
|
},
|
|
5430
5582
|
{
|
|
5431
5583
|
"name": "umb-property-action-copy",
|
|
5432
|
-
"path": "
|
|
5584
|
+
"path": "./../../src/backoffice/shared/property-actions/copy/property-action-copy.element.ts",
|
|
5433
5585
|
"attributes": [
|
|
5434
5586
|
{
|
|
5435
5587
|
"name": "value",
|
|
@@ -5453,7 +5605,7 @@
|
|
|
5453
5605
|
},
|
|
5454
5606
|
{
|
|
5455
5607
|
"name": "umb-property-action-menu",
|
|
5456
|
-
"path": "
|
|
5608
|
+
"path": "./../../src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts",
|
|
5457
5609
|
"attributes": [
|
|
5458
5610
|
{
|
|
5459
5611
|
"name": "value",
|
|
@@ -5484,7 +5636,7 @@
|
|
|
5484
5636
|
},
|
|
5485
5637
|
{
|
|
5486
5638
|
"name": "umb-property-action",
|
|
5487
|
-
"path": "
|
|
5639
|
+
"path": "./../../src/backoffice/shared/property-actions/shared/property-action/property-action.element.ts",
|
|
5488
5640
|
"attributes": [
|
|
5489
5641
|
{
|
|
5490
5642
|
"name": "propertyAction"
|
|
@@ -5513,7 +5665,7 @@
|
|
|
5513
5665
|
},
|
|
5514
5666
|
{
|
|
5515
5667
|
"name": "umb-property-creator",
|
|
5516
|
-
"path": "
|
|
5668
|
+
"path": "./../../src/backoffice/shared/property-creator/property-creator.element.ts",
|
|
5517
5669
|
"properties": [
|
|
5518
5670
|
{
|
|
5519
5671
|
"name": "styles",
|
|
@@ -5524,7 +5676,7 @@
|
|
|
5524
5676
|
},
|
|
5525
5677
|
{
|
|
5526
5678
|
"name": "umb-property-editor-ui-picker-modal",
|
|
5527
|
-
"path": "
|
|
5679
|
+
"path": "./../../src/backoffice/shared/property-editors/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
5528
5680
|
"attributes": [
|
|
5529
5681
|
{
|
|
5530
5682
|
"name": "data"
|
|
@@ -5547,7 +5699,7 @@
|
|
|
5547
5699
|
},
|
|
5548
5700
|
{
|
|
5549
5701
|
"name": "umb-property-editor-config",
|
|
5550
|
-
"path": "
|
|
5702
|
+
"path": "./../../src/backoffice/shared/property-editors/shared/property-editor-config/property-editor-config.element.ts",
|
|
5551
5703
|
"attributes": [
|
|
5552
5704
|
{
|
|
5553
5705
|
"name": "property-editor-ui-alias",
|
|
@@ -5582,7 +5734,7 @@
|
|
|
5582
5734
|
},
|
|
5583
5735
|
{
|
|
5584
5736
|
"name": "umb-property-editor-ui-block-grid-block-configuration",
|
|
5585
|
-
"path": "
|
|
5737
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-grid/config/block-configuration/property-editor-ui-block-grid-block-configuration.element.ts",
|
|
5586
5738
|
"attributes": [
|
|
5587
5739
|
{
|
|
5588
5740
|
"name": "value",
|
|
@@ -5611,7 +5763,7 @@
|
|
|
5611
5763
|
},
|
|
5612
5764
|
{
|
|
5613
5765
|
"name": "umb-property-editor-ui-block-grid-group-configuration",
|
|
5614
|
-
"path": "
|
|
5766
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-grid/config/group-configuration/property-editor-ui-block-grid-group-configuration.element.ts",
|
|
5615
5767
|
"attributes": [
|
|
5616
5768
|
{
|
|
5617
5769
|
"name": "value",
|
|
@@ -5640,7 +5792,7 @@
|
|
|
5640
5792
|
},
|
|
5641
5793
|
{
|
|
5642
5794
|
"name": "umb-property-editor-ui-block-grid-stylesheet-picker",
|
|
5643
|
-
"path": "
|
|
5795
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-grid/config/stylesheet-picker/property-editor-ui-block-grid-stylesheet-picker.element.ts",
|
|
5644
5796
|
"attributes": [
|
|
5645
5797
|
{
|
|
5646
5798
|
"name": "value",
|
|
@@ -5669,7 +5821,7 @@
|
|
|
5669
5821
|
},
|
|
5670
5822
|
{
|
|
5671
5823
|
"name": "umb-property-editor-ui-block-grid-inner-test",
|
|
5672
|
-
"path": "
|
|
5824
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-grid/property-editor-ui-block-grid-inner-test.element.ts",
|
|
5673
5825
|
"attributes": [
|
|
5674
5826
|
{
|
|
5675
5827
|
"name": "name",
|
|
@@ -5693,7 +5845,7 @@
|
|
|
5693
5845
|
},
|
|
5694
5846
|
{
|
|
5695
5847
|
"name": "umb-property-editor-ui-block-grid",
|
|
5696
|
-
"path": "
|
|
5848
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-grid/property-editor-ui-block-grid.element.ts",
|
|
5697
5849
|
"attributes": [
|
|
5698
5850
|
{
|
|
5699
5851
|
"name": "value",
|
|
@@ -5722,7 +5874,7 @@
|
|
|
5722
5874
|
},
|
|
5723
5875
|
{
|
|
5724
5876
|
"name": "umb-property-editor-ui-block-list-block-configuration",
|
|
5725
|
-
"path": "
|
|
5877
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-list/config/block-configuration/property-editor-ui-block-list-block-configuration.element.ts",
|
|
5726
5878
|
"attributes": [
|
|
5727
5879
|
{
|
|
5728
5880
|
"name": "value",
|
|
@@ -5751,7 +5903,7 @@
|
|
|
5751
5903
|
},
|
|
5752
5904
|
{
|
|
5753
5905
|
"name": "umb-property-editor-ui-block-list",
|
|
5754
|
-
"path": "
|
|
5906
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/block-list/property-editor-ui-block-list.element.ts",
|
|
5755
5907
|
"attributes": [
|
|
5756
5908
|
{
|
|
5757
5909
|
"name": "value",
|
|
@@ -5780,7 +5932,7 @@
|
|
|
5780
5932
|
},
|
|
5781
5933
|
{
|
|
5782
5934
|
"name": "umb-property-editor-ui-checkbox-list",
|
|
5783
|
-
"path": "
|
|
5935
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/checkbox-list/property-editor-ui-checkbox-list.element.ts",
|
|
5784
5936
|
"attributes": [
|
|
5785
5937
|
{
|
|
5786
5938
|
"name": "value",
|
|
@@ -5811,7 +5963,7 @@
|
|
|
5811
5963
|
},
|
|
5812
5964
|
{
|
|
5813
5965
|
"name": "umb-property-editor-ui-collection-view-bulk-action-permissions",
|
|
5814
|
-
"path": "
|
|
5966
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/collection-view/config/bulk-action-permissions/property-editor-ui-collection-view-bulk-action-permissions.element.ts",
|
|
5815
5967
|
"attributes": [
|
|
5816
5968
|
{
|
|
5817
5969
|
"name": "value",
|
|
@@ -5840,7 +5992,7 @@
|
|
|
5840
5992
|
},
|
|
5841
5993
|
{
|
|
5842
5994
|
"name": "umb-property-editor-ui-collection-view-column-configuration",
|
|
5843
|
-
"path": "
|
|
5995
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/collection-view/config/column-configuration/property-editor-ui-collection-view-column-configuration.element.ts",
|
|
5844
5996
|
"attributes": [
|
|
5845
5997
|
{
|
|
5846
5998
|
"name": "value",
|
|
@@ -5869,7 +6021,7 @@
|
|
|
5869
6021
|
},
|
|
5870
6022
|
{
|
|
5871
6023
|
"name": "umb-property-editor-ui-collection-view-layout-configuration",
|
|
5872
|
-
"path": "
|
|
6024
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/collection-view/config/layout-configuration/property-editor-ui-collection-view-layout-configuration.element.ts",
|
|
5873
6025
|
"attributes": [
|
|
5874
6026
|
{
|
|
5875
6027
|
"name": "value",
|
|
@@ -5898,7 +6050,7 @@
|
|
|
5898
6050
|
},
|
|
5899
6051
|
{
|
|
5900
6052
|
"name": "umb-property-editor-ui-collection-view-order-by",
|
|
5901
|
-
"path": "
|
|
6053
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/collection-view/config/order-by/property-editor-ui-collection-view-order-by.element.ts",
|
|
5902
6054
|
"attributes": [
|
|
5903
6055
|
{
|
|
5904
6056
|
"name": "value",
|
|
@@ -5927,7 +6079,7 @@
|
|
|
5927
6079
|
},
|
|
5928
6080
|
{
|
|
5929
6081
|
"name": "umb-property-editor-ui-collection-view",
|
|
5930
|
-
"path": "
|
|
6082
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/collection-view/property-editor-ui-collection-view.element.ts",
|
|
5931
6083
|
"attributes": [
|
|
5932
6084
|
{
|
|
5933
6085
|
"name": "value",
|
|
@@ -5956,7 +6108,7 @@
|
|
|
5956
6108
|
},
|
|
5957
6109
|
{
|
|
5958
6110
|
"name": "umb-property-editor-ui-color-picker",
|
|
5959
|
-
"path": "
|
|
6111
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/color-picker/property-editor-ui-color-picker.element.ts",
|
|
5960
6112
|
"attributes": [
|
|
5961
6113
|
{
|
|
5962
6114
|
"name": "value",
|
|
@@ -5989,7 +6141,7 @@
|
|
|
5989
6141
|
},
|
|
5990
6142
|
{
|
|
5991
6143
|
"name": "umb-property-editor-ui-date-picker",
|
|
5992
|
-
"path": "
|
|
6144
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts",
|
|
5993
6145
|
"attributes": [
|
|
5994
6146
|
{
|
|
5995
6147
|
"name": "value",
|
|
@@ -6015,7 +6167,7 @@
|
|
|
6015
6167
|
},
|
|
6016
6168
|
{
|
|
6017
6169
|
"name": "umb-property-editor-ui-document-picker",
|
|
6018
|
-
"path": "
|
|
6170
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/document-picker/property-editor-ui-document-picker.element.ts",
|
|
6019
6171
|
"attributes": [
|
|
6020
6172
|
{
|
|
6021
6173
|
"name": "value",
|
|
@@ -6041,7 +6193,7 @@
|
|
|
6041
6193
|
},
|
|
6042
6194
|
{
|
|
6043
6195
|
"name": "umb-property-editor-ui-dropdown",
|
|
6044
|
-
"path": "
|
|
6196
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/dropdown/property-editor-ui-dropdown.element.ts",
|
|
6045
6197
|
"attributes": [
|
|
6046
6198
|
{
|
|
6047
6199
|
"name": "value",
|
|
@@ -6070,7 +6222,7 @@
|
|
|
6070
6222
|
},
|
|
6071
6223
|
{
|
|
6072
6224
|
"name": "umb-property-editor-ui-eye-dropper",
|
|
6073
|
-
"path": "
|
|
6225
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/eye-dropper/property-editor-ui-eye-dropper.element.ts",
|
|
6074
6226
|
"attributes": [
|
|
6075
6227
|
{
|
|
6076
6228
|
"name": "value",
|
|
@@ -6103,7 +6255,7 @@
|
|
|
6103
6255
|
},
|
|
6104
6256
|
{
|
|
6105
6257
|
"name": "umb-property-editor-ui-icon-picker",
|
|
6106
|
-
"path": "
|
|
6258
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/icon-picker/property-editor-ui-icon-picker.element.ts",
|
|
6107
6259
|
"attributes": [
|
|
6108
6260
|
{
|
|
6109
6261
|
"name": "value",
|
|
@@ -6132,7 +6284,7 @@
|
|
|
6132
6284
|
},
|
|
6133
6285
|
{
|
|
6134
6286
|
"name": "umb-property-editor-ui-image-cropper",
|
|
6135
|
-
"path": "
|
|
6287
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/image-cropper/property-editor-ui-image-cropper.element.ts",
|
|
6136
6288
|
"attributes": [
|
|
6137
6289
|
{
|
|
6138
6290
|
"name": "value",
|
|
@@ -6161,7 +6313,7 @@
|
|
|
6161
6313
|
},
|
|
6162
6314
|
{
|
|
6163
6315
|
"name": "umb-property-editor-ui-image-crops-configuration",
|
|
6164
|
-
"path": "
|
|
6316
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/image-crops-configuration/property-editor-ui-image-crops-configuration.element.ts",
|
|
6165
6317
|
"attributes": [
|
|
6166
6318
|
{
|
|
6167
6319
|
"name": "value",
|
|
@@ -6190,7 +6342,7 @@
|
|
|
6190
6342
|
},
|
|
6191
6343
|
{
|
|
6192
6344
|
"name": "umb-property-editor-ui-label",
|
|
6193
|
-
"path": "
|
|
6345
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/label/property-editor-ui-label.element.ts",
|
|
6194
6346
|
"attributes": [
|
|
6195
6347
|
{
|
|
6196
6348
|
"name": "value",
|
|
@@ -6219,7 +6371,7 @@
|
|
|
6219
6371
|
},
|
|
6220
6372
|
{
|
|
6221
6373
|
"name": "umb-property-editor-ui-markdown-editor",
|
|
6222
|
-
"path": "
|
|
6374
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts",
|
|
6223
6375
|
"attributes": [
|
|
6224
6376
|
{
|
|
6225
6377
|
"name": "value",
|
|
@@ -6248,7 +6400,7 @@
|
|
|
6248
6400
|
},
|
|
6249
6401
|
{
|
|
6250
6402
|
"name": "umb-property-editor-ui-media-picker",
|
|
6251
|
-
"path": "
|
|
6403
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/media-picker/property-editor-ui-media-picker.element.ts",
|
|
6252
6404
|
"attributes": [
|
|
6253
6405
|
{
|
|
6254
6406
|
"name": "value",
|
|
@@ -6274,7 +6426,7 @@
|
|
|
6274
6426
|
},
|
|
6275
6427
|
{
|
|
6276
6428
|
"name": "umb-property-editor-ui-member-group-picker",
|
|
6277
|
-
"path": "
|
|
6429
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/member-group-picker/property-editor-ui-member-group-picker.element.ts",
|
|
6278
6430
|
"attributes": [
|
|
6279
6431
|
{
|
|
6280
6432
|
"name": "value",
|
|
@@ -6303,7 +6455,7 @@
|
|
|
6303
6455
|
},
|
|
6304
6456
|
{
|
|
6305
6457
|
"name": "umb-property-editor-ui-member-picker",
|
|
6306
|
-
"path": "
|
|
6458
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/member-picker/property-editor-ui-member-picker.element.ts",
|
|
6307
6459
|
"attributes": [
|
|
6308
6460
|
{
|
|
6309
6461
|
"name": "value",
|
|
@@ -6332,7 +6484,7 @@
|
|
|
6332
6484
|
},
|
|
6333
6485
|
{
|
|
6334
6486
|
"name": "umb-property-editor-ui-multi-url-picker",
|
|
6335
|
-
"path": "
|
|
6487
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/multi-url-picker/property-editor-ui-multi-url-picker.element.ts",
|
|
6336
6488
|
"attributes": [
|
|
6337
6489
|
{
|
|
6338
6490
|
"name": "value",
|
|
@@ -6365,7 +6517,7 @@
|
|
|
6365
6517
|
},
|
|
6366
6518
|
{
|
|
6367
6519
|
"name": "umb-input-multiple-text-string-item",
|
|
6368
|
-
"path": "
|
|
6520
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/multiple-text-string/input-multiple-text-string-item/input-multiple-text-string-item.element.ts",
|
|
6369
6521
|
"attributes": [
|
|
6370
6522
|
{
|
|
6371
6523
|
"name": "disabled",
|
|
@@ -6444,7 +6596,7 @@
|
|
|
6444
6596
|
},
|
|
6445
6597
|
{
|
|
6446
6598
|
"name": "umb-input-multiple-text-string",
|
|
6447
|
-
"path": "
|
|
6599
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/multiple-text-string/input-multiple-text-string/input-multiple-text-string.element.ts",
|
|
6448
6600
|
"attributes": [
|
|
6449
6601
|
{
|
|
6450
6602
|
"name": "min",
|
|
@@ -6584,7 +6736,7 @@
|
|
|
6584
6736
|
},
|
|
6585
6737
|
{
|
|
6586
6738
|
"name": "umb-property-editor-ui-multiple-text-string",
|
|
6587
|
-
"path": "
|
|
6739
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/multiple-text-string/property-editor-ui-multiple-text-string.element.ts",
|
|
6588
6740
|
"attributes": [
|
|
6589
6741
|
{
|
|
6590
6742
|
"name": "value",
|
|
@@ -6646,7 +6798,7 @@
|
|
|
6646
6798
|
},
|
|
6647
6799
|
{
|
|
6648
6800
|
"name": "umb-property-editor-ui-number-range",
|
|
6649
|
-
"path": "
|
|
6801
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/number-range/property-editor-ui-number-range.element.ts",
|
|
6650
6802
|
"properties": [
|
|
6651
6803
|
{
|
|
6652
6804
|
"name": "styles",
|
|
@@ -6671,7 +6823,7 @@
|
|
|
6671
6823
|
},
|
|
6672
6824
|
{
|
|
6673
6825
|
"name": "umb-property-editor-ui-number",
|
|
6674
|
-
"path": "
|
|
6826
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/number/property-editor-ui-number.element.ts",
|
|
6675
6827
|
"attributes": [
|
|
6676
6828
|
{
|
|
6677
6829
|
"name": "value",
|
|
@@ -6705,7 +6857,7 @@
|
|
|
6705
6857
|
},
|
|
6706
6858
|
{
|
|
6707
6859
|
"name": "umb-property-editor-ui-order-direction",
|
|
6708
|
-
"path": "
|
|
6860
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/order-direction/property-editor-ui-order-direction.element.ts",
|
|
6709
6861
|
"attributes": [
|
|
6710
6862
|
{
|
|
6711
6863
|
"name": "value",
|
|
@@ -6734,7 +6886,7 @@
|
|
|
6734
6886
|
},
|
|
6735
6887
|
{
|
|
6736
6888
|
"name": "umb-property-editor-ui-overlay-size",
|
|
6737
|
-
"path": "
|
|
6889
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/overlay-size/property-editor-ui-overlay-size.element.ts",
|
|
6738
6890
|
"attributes": [
|
|
6739
6891
|
{
|
|
6740
6892
|
"name": "value",
|
|
@@ -6763,7 +6915,7 @@
|
|
|
6763
6915
|
},
|
|
6764
6916
|
{
|
|
6765
6917
|
"name": "umb-property-editor-ui-radio-button-list",
|
|
6766
|
-
"path": "
|
|
6918
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/radio-button-list/property-editor-ui-radio-button-list.element.ts",
|
|
6767
6919
|
"attributes": [
|
|
6768
6920
|
{
|
|
6769
6921
|
"name": "value",
|
|
@@ -6794,7 +6946,7 @@
|
|
|
6794
6946
|
},
|
|
6795
6947
|
{
|
|
6796
6948
|
"name": "umb-property-editor-ui-slider",
|
|
6797
|
-
"path": "
|
|
6949
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/slider/property-editor-ui-slider.element.ts",
|
|
6798
6950
|
"attributes": [
|
|
6799
6951
|
{
|
|
6800
6952
|
"name": "value",
|
|
@@ -6827,7 +6979,7 @@
|
|
|
6827
6979
|
},
|
|
6828
6980
|
{
|
|
6829
6981
|
"name": "umb-property-editor-ui-tags-storage-type",
|
|
6830
|
-
"path": "
|
|
6982
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/tags/config/storage-type/property-editor-ui-tags-storage-type.element.ts",
|
|
6831
6983
|
"attributes": [
|
|
6832
6984
|
{
|
|
6833
6985
|
"name": "value",
|
|
@@ -6856,7 +7008,7 @@
|
|
|
6856
7008
|
},
|
|
6857
7009
|
{
|
|
6858
7010
|
"name": "umb-property-editor-ui-tags",
|
|
6859
|
-
"path": "
|
|
7011
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/tags/property-editor-ui-tags.element.ts",
|
|
6860
7012
|
"attributes": [
|
|
6861
7013
|
{
|
|
6862
7014
|
"name": "value",
|
|
@@ -6885,7 +7037,7 @@
|
|
|
6885
7037
|
},
|
|
6886
7038
|
{
|
|
6887
7039
|
"name": "umb-property-editor-ui-text-box",
|
|
6888
|
-
"path": "
|
|
7040
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/text-box/property-editor-ui-text-box.element.ts",
|
|
6889
7041
|
"attributes": [
|
|
6890
7042
|
{
|
|
6891
7043
|
"name": "value",
|
|
@@ -6919,7 +7071,7 @@
|
|
|
6919
7071
|
},
|
|
6920
7072
|
{
|
|
6921
7073
|
"name": "umb-property-editor-ui-textarea",
|
|
6922
|
-
"path": "
|
|
7074
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/textarea/property-editor-ui-textarea.element.ts",
|
|
6923
7075
|
"attributes": [
|
|
6924
7076
|
{
|
|
6925
7077
|
"name": "value",
|
|
@@ -6953,7 +7105,7 @@
|
|
|
6953
7105
|
},
|
|
6954
7106
|
{
|
|
6955
7107
|
"name": "umb-property-editor-ui-tiny-mce-configuration",
|
|
6956
|
-
"path": "
|
|
7108
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/tiny-mce/config/configuration/property-editor-ui-tiny-mce-configuration.element.ts",
|
|
6957
7109
|
"attributes": [
|
|
6958
7110
|
{
|
|
6959
7111
|
"name": "value",
|
|
@@ -6982,7 +7134,7 @@
|
|
|
6982
7134
|
},
|
|
6983
7135
|
{
|
|
6984
7136
|
"name": "umb-property-editor-ui-tiny-mce",
|
|
6985
|
-
"path": "
|
|
7137
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.element.ts",
|
|
6986
7138
|
"attributes": [
|
|
6987
7139
|
{
|
|
6988
7140
|
"name": "value",
|
|
@@ -7011,7 +7163,7 @@
|
|
|
7011
7163
|
},
|
|
7012
7164
|
{
|
|
7013
7165
|
"name": "umb-property-editor-ui-toggle",
|
|
7014
|
-
"path": "
|
|
7166
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/toggle/property-editor-ui-toggle.element.ts",
|
|
7015
7167
|
"attributes": [
|
|
7016
7168
|
{
|
|
7017
7169
|
"name": "value",
|
|
@@ -7044,7 +7196,7 @@
|
|
|
7044
7196
|
},
|
|
7045
7197
|
{
|
|
7046
7198
|
"name": "umb-property-editor-ui-tree-picker-start-node",
|
|
7047
|
-
"path": "
|
|
7199
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/tree-picker/config/start-node/property-editor-ui-tree-picker-start-node.element.ts",
|
|
7048
7200
|
"attributes": [
|
|
7049
7201
|
{
|
|
7050
7202
|
"name": "value",
|
|
@@ -7073,7 +7225,7 @@
|
|
|
7073
7225
|
},
|
|
7074
7226
|
{
|
|
7075
7227
|
"name": "umb-property-editor-ui-tree-picker",
|
|
7076
|
-
"path": "
|
|
7228
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/tree-picker/property-editor-ui-tree-picker.element.ts",
|
|
7077
7229
|
"attributes": [
|
|
7078
7230
|
{
|
|
7079
7231
|
"name": "value",
|
|
@@ -7102,7 +7254,7 @@
|
|
|
7102
7254
|
},
|
|
7103
7255
|
{
|
|
7104
7256
|
"name": "umb-property-editor-ui-upload-field",
|
|
7105
|
-
"path": "
|
|
7257
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/upload-field/property-editor-ui-upload-field.element.ts",
|
|
7106
7258
|
"attributes": [
|
|
7107
7259
|
{
|
|
7108
7260
|
"name": "value",
|
|
@@ -7135,7 +7287,7 @@
|
|
|
7135
7287
|
},
|
|
7136
7288
|
{
|
|
7137
7289
|
"name": "umb-property-editor-ui-user-picker",
|
|
7138
|
-
"path": "
|
|
7290
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/user-picker/property-editor-ui-user-picker.element.ts",
|
|
7139
7291
|
"attributes": [
|
|
7140
7292
|
{
|
|
7141
7293
|
"name": "value",
|
|
@@ -7164,7 +7316,7 @@
|
|
|
7164
7316
|
},
|
|
7165
7317
|
{
|
|
7166
7318
|
"name": "umb-property-editor-ui-value-type",
|
|
7167
|
-
"path": "
|
|
7319
|
+
"path": "./../../src/backoffice/shared/property-editors/uis/value-type/property-editor-ui-value-type.element.ts",
|
|
7168
7320
|
"attributes": [
|
|
7169
7321
|
{
|
|
7170
7322
|
"name": "value",
|
|
@@ -7193,7 +7345,7 @@
|
|
|
7193
7345
|
},
|
|
7194
7346
|
{
|
|
7195
7347
|
"name": "umb-file-system-tree-item",
|
|
7196
|
-
"path": "
|
|
7348
|
+
"path": "./../../src/backoffice/templating/components/file-system-tree-item/file-system-tree-item.element.ts",
|
|
7197
7349
|
"properties": [
|
|
7198
7350
|
{
|
|
7199
7351
|
"name": "styles",
|
|
@@ -7207,7 +7359,7 @@
|
|
|
7207
7359
|
},
|
|
7208
7360
|
{
|
|
7209
7361
|
"name": "umb-stylesheet-workspace-edit",
|
|
7210
|
-
"path": "
|
|
7362
|
+
"path": "./../../src/backoffice/templating/stylesheets/workspace/stylesheet-workspace-edit.element.ts",
|
|
7211
7363
|
"properties": [
|
|
7212
7364
|
{
|
|
7213
7365
|
"name": "styles",
|
|
@@ -7218,7 +7370,7 @@
|
|
|
7218
7370
|
},
|
|
7219
7371
|
{
|
|
7220
7372
|
"name": "umb-stylesheet-workspace",
|
|
7221
|
-
"path": "
|
|
7373
|
+
"path": "./../../src/backoffice/templating/stylesheets/workspace/stylesheet-workspace.element.ts",
|
|
7222
7374
|
"properties": [
|
|
7223
7375
|
{
|
|
7224
7376
|
"name": "styles",
|
|
@@ -7229,7 +7381,7 @@
|
|
|
7229
7381
|
},
|
|
7230
7382
|
{
|
|
7231
7383
|
"name": "umb-template-workspace",
|
|
7232
|
-
"path": "
|
|
7384
|
+
"path": "./../../src/backoffice/templating/templates/workspace/template-workspace.element.ts",
|
|
7233
7385
|
"properties": [
|
|
7234
7386
|
{
|
|
7235
7387
|
"name": "styles",
|
|
@@ -7240,7 +7392,7 @@
|
|
|
7240
7392
|
},
|
|
7241
7393
|
{
|
|
7242
7394
|
"name": "umb-dashboard-translation-dictionary",
|
|
7243
|
-
"path": "
|
|
7395
|
+
"path": "./../../src/backoffice/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts",
|
|
7244
7396
|
"properties": [
|
|
7245
7397
|
{
|
|
7246
7398
|
"name": "styles",
|
|
@@ -7251,7 +7403,7 @@
|
|
|
7251
7403
|
},
|
|
7252
7404
|
{
|
|
7253
7405
|
"name": "umb-create-dictionary-modal",
|
|
7254
|
-
"path": "
|
|
7406
|
+
"path": "./../../src/backoffice/translation/dictionary/entity-actions/create/create-dictionary-modal-layout.element.ts",
|
|
7255
7407
|
"properties": [
|
|
7256
7408
|
{
|
|
7257
7409
|
"name": "styles",
|
|
@@ -7262,7 +7414,7 @@
|
|
|
7262
7414
|
},
|
|
7263
7415
|
{
|
|
7264
7416
|
"name": "umb-export-dictionary-modal",
|
|
7265
|
-
"path": "
|
|
7417
|
+
"path": "./../../src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal.element.ts",
|
|
7266
7418
|
"properties": [
|
|
7267
7419
|
{
|
|
7268
7420
|
"name": "styles",
|
|
@@ -7273,7 +7425,7 @@
|
|
|
7273
7425
|
},
|
|
7274
7426
|
{
|
|
7275
7427
|
"name": "umb-import-dictionary-modal",
|
|
7276
|
-
"path": "
|
|
7428
|
+
"path": "./../../src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal.element.ts",
|
|
7277
7429
|
"properties": [
|
|
7278
7430
|
{
|
|
7279
7431
|
"name": "styles",
|
|
@@ -7284,11 +7436,11 @@
|
|
|
7284
7436
|
},
|
|
7285
7437
|
{
|
|
7286
7438
|
"name": "umb-dictionary-menu-item",
|
|
7287
|
-
"path": "
|
|
7439
|
+
"path": "./../../src/backoffice/translation/dictionary/menu-item/dictionary-menu-item.element.ts"
|
|
7288
7440
|
},
|
|
7289
7441
|
{
|
|
7290
7442
|
"name": "umb-dictionary-workspace-edit",
|
|
7291
|
-
"path": "
|
|
7443
|
+
"path": "./../../src/backoffice/translation/dictionary/workspace/dictionary-workspace-edit.element.ts",
|
|
7292
7444
|
"properties": [
|
|
7293
7445
|
{
|
|
7294
7446
|
"name": "styles",
|
|
@@ -7299,7 +7451,7 @@
|
|
|
7299
7451
|
},
|
|
7300
7452
|
{
|
|
7301
7453
|
"name": "umb-dictionary-workspace",
|
|
7302
|
-
"path": "
|
|
7454
|
+
"path": "./../../src/backoffice/translation/dictionary/workspace/dictionary-workspace.element.ts",
|
|
7303
7455
|
"properties": [
|
|
7304
7456
|
{
|
|
7305
7457
|
"name": "styles",
|
|
@@ -7310,7 +7462,7 @@
|
|
|
7310
7462
|
},
|
|
7311
7463
|
{
|
|
7312
7464
|
"name": "umb-workspace-view-dictionary-edit",
|
|
7313
|
-
"path": "
|
|
7465
|
+
"path": "./../../src/backoffice/translation/dictionary/workspace/views/edit/workspace-view-dictionary-edit.element.ts",
|
|
7314
7466
|
"properties": [
|
|
7315
7467
|
{
|
|
7316
7468
|
"name": "styles",
|
|
@@ -7321,7 +7473,7 @@
|
|
|
7321
7473
|
},
|
|
7322
7474
|
{
|
|
7323
7475
|
"name": "umb-current-user-header-app",
|
|
7324
|
-
"path": "
|
|
7476
|
+
"path": "./../../src/backoffice/users/current-user/current-user-header-app.element.ts",
|
|
7325
7477
|
"properties": [
|
|
7326
7478
|
{
|
|
7327
7479
|
"name": "styles",
|
|
@@ -7332,7 +7484,7 @@
|
|
|
7332
7484
|
},
|
|
7333
7485
|
{
|
|
7334
7486
|
"name": "umb-change-password-modal",
|
|
7335
|
-
"path": "
|
|
7487
|
+
"path": "./../../src/backoffice/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
7336
7488
|
"attributes": [
|
|
7337
7489
|
{
|
|
7338
7490
|
"name": "data"
|
|
@@ -7355,7 +7507,7 @@
|
|
|
7355
7507
|
},
|
|
7356
7508
|
{
|
|
7357
7509
|
"name": "umb-current-user-modal",
|
|
7358
|
-
"path": "
|
|
7510
|
+
"path": "./../../src/backoffice/users/current-user/modals/current-user/current-user-modal.element.ts",
|
|
7359
7511
|
"properties": [
|
|
7360
7512
|
{
|
|
7361
7513
|
"name": "styles",
|
|
@@ -7369,7 +7521,7 @@
|
|
|
7369
7521
|
},
|
|
7370
7522
|
{
|
|
7371
7523
|
"name": "umb-user-profile-app-external-login-providers",
|
|
7372
|
-
"path": "
|
|
7524
|
+
"path": "./../../src/backoffice/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.ts",
|
|
7373
7525
|
"properties": [
|
|
7374
7526
|
{
|
|
7375
7527
|
"name": "styles",
|
|
@@ -7380,7 +7532,7 @@
|
|
|
7380
7532
|
},
|
|
7381
7533
|
{
|
|
7382
7534
|
"name": "umb-user-profile-app-history",
|
|
7383
|
-
"path": "
|
|
7535
|
+
"path": "./../../src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7384
7536
|
"properties": [
|
|
7385
7537
|
{
|
|
7386
7538
|
"name": "styles",
|
|
@@ -7391,7 +7543,7 @@
|
|
|
7391
7543
|
},
|
|
7392
7544
|
{
|
|
7393
7545
|
"name": "umb-user-dashboard-test",
|
|
7394
|
-
"path": "
|
|
7546
|
+
"path": "./../../src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7395
7547
|
"properties": [
|
|
7396
7548
|
{
|
|
7397
7549
|
"name": "styles",
|
|
@@ -7402,7 +7554,7 @@
|
|
|
7402
7554
|
},
|
|
7403
7555
|
{
|
|
7404
7556
|
"name": "umb-user-profile-app-profile",
|
|
7405
|
-
"path": "
|
|
7557
|
+
"path": "./../../src/backoffice/users/current-user/user-profile-apps/user-profile-app-profile.element.ts",
|
|
7406
7558
|
"properties": [
|
|
7407
7559
|
{
|
|
7408
7560
|
"name": "styles",
|
|
@@ -7413,7 +7565,7 @@
|
|
|
7413
7565
|
},
|
|
7414
7566
|
{
|
|
7415
7567
|
"name": "umb-user-profile-app-themes",
|
|
7416
|
-
"path": "
|
|
7568
|
+
"path": "./../../src/backoffice/users/current-user/user-profile-apps/user-profile-app-themes.element.ts",
|
|
7417
7569
|
"properties": [
|
|
7418
7570
|
{
|
|
7419
7571
|
"name": "styles",
|
|
@@ -7424,7 +7576,7 @@
|
|
|
7424
7576
|
},
|
|
7425
7577
|
{
|
|
7426
7578
|
"name": "umb-user-group-picker-modal",
|
|
7427
|
-
"path": "
|
|
7579
|
+
"path": "./../../src/backoffice/users/user-groups/modals/user-group-picker/user-group-picker-modal.element.ts",
|
|
7428
7580
|
"properties": [
|
|
7429
7581
|
{
|
|
7430
7582
|
"name": "styles",
|
|
@@ -7435,7 +7587,7 @@
|
|
|
7435
7587
|
},
|
|
7436
7588
|
{
|
|
7437
7589
|
"name": "umb-workspace-action-user-group-save",
|
|
7438
|
-
"path": "
|
|
7590
|
+
"path": "./../../src/backoffice/users/user-groups/workspace/actions/workspace-action-user-group-save.element.ts",
|
|
7439
7591
|
"properties": [
|
|
7440
7592
|
{
|
|
7441
7593
|
"name": "styles",
|
|
@@ -7446,7 +7598,7 @@
|
|
|
7446
7598
|
},
|
|
7447
7599
|
{
|
|
7448
7600
|
"name": "umb-user-group-workspace-edit",
|
|
7449
|
-
"path": "
|
|
7601
|
+
"path": "./../../src/backoffice/users/user-groups/workspace/user-group-workspace-edit.element.ts",
|
|
7450
7602
|
"properties": [
|
|
7451
7603
|
{
|
|
7452
7604
|
"name": "styles",
|
|
@@ -7462,7 +7614,7 @@
|
|
|
7462
7614
|
},
|
|
7463
7615
|
{
|
|
7464
7616
|
"name": "umb-user-group-workspace",
|
|
7465
|
-
"path": "
|
|
7617
|
+
"path": "./../../src/backoffice/users/user-groups/workspace/user-group-workspace.element.ts",
|
|
7466
7618
|
"properties": [
|
|
7467
7619
|
{
|
|
7468
7620
|
"name": "styles",
|
|
@@ -7473,11 +7625,11 @@
|
|
|
7473
7625
|
},
|
|
7474
7626
|
{
|
|
7475
7627
|
"name": "umb-users-section",
|
|
7476
|
-
"path": "
|
|
7628
|
+
"path": "./../../src/backoffice/users/user-section/section-users.element.ts"
|
|
7477
7629
|
},
|
|
7478
7630
|
{
|
|
7479
7631
|
"name": "umb-section-view-user-groups",
|
|
7480
|
-
"path": "
|
|
7632
|
+
"path": "./../../src/backoffice/users/user-section/views/user-groups/section-view-user-groups.element.ts",
|
|
7481
7633
|
"properties": [
|
|
7482
7634
|
{
|
|
7483
7635
|
"name": "styles",
|
|
@@ -7488,7 +7640,7 @@
|
|
|
7488
7640
|
},
|
|
7489
7641
|
{
|
|
7490
7642
|
"name": "umb-user-group-table-name-column-layout",
|
|
7491
|
-
"path": "
|
|
7643
|
+
"path": "./../../src/backoffice/users/user-section/views/user-groups/user-group-table-name-column-layout.element.ts",
|
|
7492
7644
|
"properties": [
|
|
7493
7645
|
{
|
|
7494
7646
|
"name": "item",
|
|
@@ -7501,7 +7653,7 @@
|
|
|
7501
7653
|
},
|
|
7502
7654
|
{
|
|
7503
7655
|
"name": "umb-user-group-table-sections-column-layout",
|
|
7504
|
-
"path": "
|
|
7656
|
+
"path": "./../../src/backoffice/users/user-section/views/user-groups/user-group-table-sections-column-layout.element.ts",
|
|
7505
7657
|
"properties": [
|
|
7506
7658
|
{
|
|
7507
7659
|
"name": "item",
|
|
@@ -7514,7 +7666,7 @@
|
|
|
7514
7666
|
},
|
|
7515
7667
|
{
|
|
7516
7668
|
"name": "umb-workspace-view-user-groups",
|
|
7517
|
-
"path": "
|
|
7669
|
+
"path": "./../../src/backoffice/users/user-section/views/user-groups/workspace-view-user-groups.element.ts",
|
|
7518
7670
|
"properties": [
|
|
7519
7671
|
{
|
|
7520
7672
|
"name": "styles",
|
|
@@ -7525,7 +7677,7 @@
|
|
|
7525
7677
|
},
|
|
7526
7678
|
{
|
|
7527
7679
|
"name": "umb-workspace-view-users-grid",
|
|
7528
|
-
"path": "
|
|
7680
|
+
"path": "./../../src/backoffice/users/user-section/views/users/list-view-layouts/grid/workspace-view-users-grid.element.ts",
|
|
7529
7681
|
"properties": [
|
|
7530
7682
|
{
|
|
7531
7683
|
"name": "styles",
|
|
@@ -7536,7 +7688,7 @@
|
|
|
7536
7688
|
},
|
|
7537
7689
|
{
|
|
7538
7690
|
"name": "umb-user-table-name-column-layout",
|
|
7539
|
-
"path": "
|
|
7691
|
+
"path": "./../../src/backoffice/users/user-section/views/users/list-view-layouts/table/column-layouts/name/user-table-name-column-layout.element.ts",
|
|
7540
7692
|
"properties": [
|
|
7541
7693
|
{
|
|
7542
7694
|
"name": "column",
|
|
@@ -7553,7 +7705,7 @@
|
|
|
7553
7705
|
},
|
|
7554
7706
|
{
|
|
7555
7707
|
"name": "umb-user-table-status-column-layout",
|
|
7556
|
-
"path": "
|
|
7708
|
+
"path": "./../../src/backoffice/users/user-section/views/users/list-view-layouts/table/column-layouts/status/user-table-status-column-layout.element.ts",
|
|
7557
7709
|
"properties": [
|
|
7558
7710
|
{
|
|
7559
7711
|
"name": "value"
|
|
@@ -7562,7 +7714,7 @@
|
|
|
7562
7714
|
},
|
|
7563
7715
|
{
|
|
7564
7716
|
"name": "umb-workspace-view-users-table",
|
|
7565
|
-
"path": "
|
|
7717
|
+
"path": "./../../src/backoffice/users/user-section/views/users/list-view-layouts/table/workspace-view-users-table.element.ts",
|
|
7566
7718
|
"properties": [
|
|
7567
7719
|
{
|
|
7568
7720
|
"name": "styles",
|
|
@@ -7573,7 +7725,7 @@
|
|
|
7573
7725
|
},
|
|
7574
7726
|
{
|
|
7575
7727
|
"name": "umb-section-view-users",
|
|
7576
|
-
"path": "
|
|
7728
|
+
"path": "./../../src/backoffice/users/user-section/views/users/section-view-users.element.ts",
|
|
7577
7729
|
"properties": [
|
|
7578
7730
|
{
|
|
7579
7731
|
"name": "styles",
|
|
@@ -7596,7 +7748,7 @@
|
|
|
7596
7748
|
},
|
|
7597
7749
|
{
|
|
7598
7750
|
"name": "umb-workspace-view-users-overview",
|
|
7599
|
-
"path": "
|
|
7751
|
+
"path": "./../../src/backoffice/users/user-section/views/users/workspace-view-users-overview.element.ts",
|
|
7600
7752
|
"properties": [
|
|
7601
7753
|
{
|
|
7602
7754
|
"name": "styles",
|
|
@@ -7607,7 +7759,7 @@
|
|
|
7607
7759
|
},
|
|
7608
7760
|
{
|
|
7609
7761
|
"name": "umb-workspace-view-users-selection",
|
|
7610
|
-
"path": "
|
|
7762
|
+
"path": "./../../src/backoffice/users/user-section/views/users/workspace-view-users-selection.element.ts",
|
|
7611
7763
|
"properties": [
|
|
7612
7764
|
{
|
|
7613
7765
|
"name": "styles",
|
|
@@ -7618,7 +7770,7 @@
|
|
|
7618
7770
|
},
|
|
7619
7771
|
{
|
|
7620
7772
|
"name": "umb-create-user-modal",
|
|
7621
|
-
"path": "
|
|
7773
|
+
"path": "./../../src/backoffice/users/users/modals/create-user/create-user-modal.element.ts",
|
|
7622
7774
|
"properties": [
|
|
7623
7775
|
{
|
|
7624
7776
|
"name": "styles",
|
|
@@ -7629,7 +7781,7 @@
|
|
|
7629
7781
|
},
|
|
7630
7782
|
{
|
|
7631
7783
|
"name": "umb-invite-user-modal",
|
|
7632
|
-
"path": "
|
|
7784
|
+
"path": "./../../src/backoffice/users/users/modals/invite-user/invite-user-modal.element.ts",
|
|
7633
7785
|
"properties": [
|
|
7634
7786
|
{
|
|
7635
7787
|
"name": "styles",
|
|
@@ -7640,7 +7792,7 @@
|
|
|
7640
7792
|
},
|
|
7641
7793
|
{
|
|
7642
7794
|
"name": "umb-user-picker-modal",
|
|
7643
|
-
"path": "
|
|
7795
|
+
"path": "./../../src/backoffice/users/users/modals/user-picker/user-picker-modal.element.ts",
|
|
7644
7796
|
"properties": [
|
|
7645
7797
|
{
|
|
7646
7798
|
"name": "styles",
|
|
@@ -7651,7 +7803,7 @@
|
|
|
7651
7803
|
},
|
|
7652
7804
|
{
|
|
7653
7805
|
"name": "umb-workspace-action-user-save",
|
|
7654
|
-
"path": "
|
|
7806
|
+
"path": "./../../src/backoffice/users/users/workspace/actions/workspace-action-user-save.element.ts",
|
|
7655
7807
|
"properties": [
|
|
7656
7808
|
{
|
|
7657
7809
|
"name": "styles",
|
|
@@ -7662,7 +7814,7 @@
|
|
|
7662
7814
|
},
|
|
7663
7815
|
{
|
|
7664
7816
|
"name": "umb-user-workspace-edit",
|
|
7665
|
-
"path": "
|
|
7817
|
+
"path": "./../../src/backoffice/users/users/workspace/user-workspace-edit.element.ts",
|
|
7666
7818
|
"properties": [
|
|
7667
7819
|
{
|
|
7668
7820
|
"name": "styles",
|
|
@@ -7673,7 +7825,7 @@
|
|
|
7673
7825
|
},
|
|
7674
7826
|
{
|
|
7675
7827
|
"name": "umb-user-workspace",
|
|
7676
|
-
"path": "
|
|
7828
|
+
"path": "./../../src/backoffice/users/users/workspace/user-workspace.element.ts",
|
|
7677
7829
|
"properties": [
|
|
7678
7830
|
{
|
|
7679
7831
|
"name": "styles",
|
|
@@ -7684,7 +7836,7 @@
|
|
|
7684
7836
|
},
|
|
7685
7837
|
{
|
|
7686
7838
|
"name": "umb-context-provider",
|
|
7687
|
-
"path": "
|
|
7839
|
+
"path": "./../../src/core/context-provider/context-provider.element.ts",
|
|
7688
7840
|
"attributes": [
|
|
7689
7841
|
{
|
|
7690
7842
|
"name": "value",
|
|
@@ -7719,7 +7871,7 @@
|
|
|
7719
7871
|
},
|
|
7720
7872
|
{
|
|
7721
7873
|
"name": "umb-controller-host-test",
|
|
7722
|
-
"path": "
|
|
7874
|
+
"path": "./../../src/core/controller-host/controller-host-test.element.ts",
|
|
7723
7875
|
"properties": [
|
|
7724
7876
|
{
|
|
7725
7877
|
"name": "create",
|
|
@@ -7730,7 +7882,7 @@
|
|
|
7730
7882
|
},
|
|
7731
7883
|
{
|
|
7732
7884
|
"name": "umb-modal-element",
|
|
7733
|
-
"path": "
|
|
7885
|
+
"path": "./../../src/core/modal/modal-element.element.ts",
|
|
7734
7886
|
"properties": [
|
|
7735
7887
|
{
|
|
7736
7888
|
"name": "modalHandler"
|
|
@@ -7742,8 +7894,8 @@
|
|
|
7742
7894
|
]
|
|
7743
7895
|
},
|
|
7744
7896
|
{
|
|
7745
|
-
"name": "story-modal-context-example",
|
|
7746
|
-
"path": "
|
|
7897
|
+
"name": "umb-story-modal-context-example",
|
|
7898
|
+
"path": "./../../src/core/modal/stories/story-modal-service-example.element.ts",
|
|
7747
7899
|
"attributes": [
|
|
7748
7900
|
{
|
|
7749
7901
|
"name": "modalLayout",
|
|
@@ -7767,7 +7919,7 @@
|
|
|
7767
7919
|
},
|
|
7768
7920
|
{
|
|
7769
7921
|
"name": "umb-notification-layout-default",
|
|
7770
|
-
"path": "
|
|
7922
|
+
"path": "./../../src/core/notification/layouts/default/notification-layout-default.element.ts",
|
|
7771
7923
|
"attributes": [
|
|
7772
7924
|
{
|
|
7773
7925
|
"name": "data"
|
|
@@ -7789,12 +7941,12 @@
|
|
|
7789
7941
|
]
|
|
7790
7942
|
},
|
|
7791
7943
|
{
|
|
7792
|
-
"name": "story-notification-default-example",
|
|
7793
|
-
"path": "
|
|
7944
|
+
"name": "umb-story-notification-default-example",
|
|
7945
|
+
"path": "./../../src/core/notification/stories/story-notification-default-example.element.ts"
|
|
7794
7946
|
},
|
|
7795
7947
|
{
|
|
7796
7948
|
"name": "umb-router-slot",
|
|
7797
|
-
"path": "
|
|
7949
|
+
"path": "./../../src/core/router/router-slot.element.ts",
|
|
7798
7950
|
"attributes": [
|
|
7799
7951
|
{
|
|
7800
7952
|
"name": "routes",
|
|
@@ -7838,7 +7990,7 @@
|
|
|
7838
7990
|
},
|
|
7839
7991
|
{
|
|
7840
7992
|
"name": "umb-variant-router-slot",
|
|
7841
|
-
"path": "
|
|
7993
|
+
"path": "./../../src/core/router/variant-router-slot.element.ts",
|
|
7842
7994
|
"attributes": [
|
|
7843
7995
|
{
|
|
7844
7996
|
"name": "variantId",
|
|
@@ -7891,7 +8043,7 @@
|
|
|
7891
8043
|
},
|
|
7892
8044
|
{
|
|
7893
8045
|
"name": "umb-installer-consent",
|
|
7894
|
-
"path": "
|
|
8046
|
+
"path": "./../../src/installer/consent/installer-consent.element.ts",
|
|
7895
8047
|
"properties": [
|
|
7896
8048
|
{
|
|
7897
8049
|
"name": "styles",
|
|
@@ -7902,7 +8054,7 @@
|
|
|
7902
8054
|
},
|
|
7903
8055
|
{
|
|
7904
8056
|
"name": "umb-installer-database",
|
|
7905
|
-
"path": "
|
|
8057
|
+
"path": "./../../src/installer/database/installer-database.element.ts",
|
|
7906
8058
|
"properties": [
|
|
7907
8059
|
{
|
|
7908
8060
|
"name": "styles",
|
|
@@ -7916,7 +8068,7 @@
|
|
|
7916
8068
|
},
|
|
7917
8069
|
{
|
|
7918
8070
|
"name": "umb-installer-error",
|
|
7919
|
-
"path": "
|
|
8071
|
+
"path": "./../../src/installer/error/installer-error.element.ts",
|
|
7920
8072
|
"properties": [
|
|
7921
8073
|
{
|
|
7922
8074
|
"name": "styles",
|
|
@@ -7927,7 +8079,7 @@
|
|
|
7927
8079
|
},
|
|
7928
8080
|
{
|
|
7929
8081
|
"name": "umb-installer",
|
|
7930
|
-
"path": "
|
|
8082
|
+
"path": "./../../src/installer/installer.element.ts",
|
|
7931
8083
|
"properties": [
|
|
7932
8084
|
{
|
|
7933
8085
|
"name": "styles",
|
|
@@ -7943,7 +8095,7 @@
|
|
|
7943
8095
|
},
|
|
7944
8096
|
{
|
|
7945
8097
|
"name": "umb-installer-installing",
|
|
7946
|
-
"path": "
|
|
8098
|
+
"path": "./../../src/installer/installing/installer-installing.element.ts",
|
|
7947
8099
|
"properties": [
|
|
7948
8100
|
{
|
|
7949
8101
|
"name": "styles",
|
|
@@ -7954,7 +8106,7 @@
|
|
|
7954
8106
|
},
|
|
7955
8107
|
{
|
|
7956
8108
|
"name": "umb-installer-layout",
|
|
7957
|
-
"path": "
|
|
8109
|
+
"path": "./../../src/installer/shared/layout/installer-layout.element.ts",
|
|
7958
8110
|
"properties": [
|
|
7959
8111
|
{
|
|
7960
8112
|
"name": "styles",
|
|
@@ -7965,7 +8117,7 @@
|
|
|
7965
8117
|
},
|
|
7966
8118
|
{
|
|
7967
8119
|
"name": "umb-installer-user",
|
|
7968
|
-
"path": "
|
|
8120
|
+
"path": "./../../src/installer/user/installer-user.element.ts",
|
|
7969
8121
|
"properties": [
|
|
7970
8122
|
{
|
|
7971
8123
|
"name": "styles",
|
|
@@ -7976,7 +8128,7 @@
|
|
|
7976
8128
|
},
|
|
7977
8129
|
{
|
|
7978
8130
|
"name": "umb-upgrader-view",
|
|
7979
|
-
"path": "
|
|
8131
|
+
"path": "./../../src/upgrader/upgrader-view.element.ts",
|
|
7980
8132
|
"attributes": [
|
|
7981
8133
|
{
|
|
7982
8134
|
"name": "fetching",
|
|
@@ -8035,7 +8187,7 @@
|
|
|
8035
8187
|
},
|
|
8036
8188
|
{
|
|
8037
8189
|
"name": "umb-upgrader",
|
|
8038
|
-
"path": "
|
|
8190
|
+
"path": "./../../src/upgrader/upgrader.element.ts"
|
|
8039
8191
|
}
|
|
8040
8192
|
]
|
|
8041
8193
|
}
|