@umbraco-cms/backoffice 1.0.0-next.49f05cfb → 1.0.0-next.4ca219c0
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/README.md +2 -3
- package/backend-api.d.ts +2 -2
- package/collection.d.ts +1 -1
- package/content-type.d.ts +15 -12
- package/context-api.d.ts +2 -4
- package/{controller.d.ts → controller-api.d.ts} +2 -3
- package/custom-elements.json +1047 -668
- package/data-type.d.ts +13 -0
- package/{element.d.ts → element-api.d.ts} +5 -3
- package/entity-action.d.ts +1 -1
- package/extension-api.d.ts +657 -0
- package/{extensions-registry.d.ts → extension-registry.d.ts} +10 -137
- package/modal.d.ts +196 -30
- package/models.d.ts +7 -3
- package/observable-api.d.ts +2 -1
- package/package.json +1 -1
- package/picker-input.d.ts +1 -1
- package/repository.d.ts +19 -2
- package/resources.d.ts +1 -1
- package/router.d.ts +7 -5
- package/section.d.ts +2 -2
- package/sorter.d.ts +1 -1
- package/store.d.ts +1 -1
- package/tree.d.ts +1 -1
- package/umbraco-package-schema.json +15 -15
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +301 -175
- package/workspace.d.ts +1 -1
- package/extensions-api.d.ts +0 -67
package/custom-elements.json
CHANGED
|
@@ -87,18 +87,18 @@
|
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
"name": "umb-controller-host-initializer",
|
|
90
|
-
"path": "./../../libs/controller/controller-host-initializer.element.ts",
|
|
90
|
+
"path": "./../../libs/controller-api/controller-host-initializer.element.ts",
|
|
91
91
|
"properties": [
|
|
92
92
|
{
|
|
93
93
|
"name": "create",
|
|
94
94
|
"description": "A way to initialize controllers.",
|
|
95
|
-
"type": "((host:
|
|
95
|
+
"type": "((host: UmbControllerHostElement) => void) | undefined"
|
|
96
96
|
}
|
|
97
97
|
]
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"name": "umb-app-error",
|
|
101
|
-
"path": "./../../src/app/app-error.element.ts",
|
|
101
|
+
"path": "./../../src/apps/app/app-error.element.ts",
|
|
102
102
|
"description": "A full page error element that can be used either solo or for instance as the error 500 page and BootFailed",
|
|
103
103
|
"attributes": [
|
|
104
104
|
{
|
|
@@ -139,13 +139,13 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"name": "umb-app",
|
|
142
|
-
"path": "./../../src/app/app.element.ts",
|
|
142
|
+
"path": "./../../src/apps/app/app.element.ts",
|
|
143
143
|
"attributes": [
|
|
144
144
|
{
|
|
145
145
|
"name": "serverUrl",
|
|
146
146
|
"description": "The base URL of the configured Umbraco server.",
|
|
147
147
|
"type": "string",
|
|
148
|
-
"default": "\"\""
|
|
148
|
+
"default": "\"origin\""
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
"name": "backofficePath",
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"attribute": "serverUrl",
|
|
167
167
|
"description": "The base URL of the configured Umbraco server.",
|
|
168
168
|
"type": "string",
|
|
169
|
-
"default": "\"\""
|
|
169
|
+
"default": "\"origin\""
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"name": "backofficePath",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
},
|
|
197
197
|
{
|
|
198
198
|
"name": "umb-backoffice",
|
|
199
|
-
"path": "./../../src/backoffice/backoffice.element.ts",
|
|
199
|
+
"path": "./../../src/apps/backoffice/backoffice.element.ts",
|
|
200
200
|
"properties": [
|
|
201
201
|
{
|
|
202
202
|
"name": "styles",
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"name": "umb-backoffice-header-apps",
|
|
210
|
-
"path": "./../../src/backoffice/
|
|
210
|
+
"path": "./../../src/apps/backoffice/components/backoffice-header-apps.element.ts",
|
|
211
211
|
"properties": [
|
|
212
212
|
{
|
|
213
213
|
"name": "styles",
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"name": "umb-backoffice-header-sections",
|
|
221
|
-
"path": "./../../src/backoffice/
|
|
221
|
+
"path": "./../../src/apps/backoffice/components/backoffice-header-sections.element.ts",
|
|
222
222
|
"properties": [
|
|
223
223
|
{
|
|
224
224
|
"name": "styles",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
},
|
|
230
230
|
{
|
|
231
231
|
"name": "umb-backoffice-header",
|
|
232
|
-
"path": "./../../src/backoffice/
|
|
232
|
+
"path": "./../../src/apps/backoffice/components/backoffice-header.element.ts",
|
|
233
233
|
"properties": [
|
|
234
234
|
{
|
|
235
235
|
"name": "styles",
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"name": "umb-backoffice-main",
|
|
243
|
-
"path": "./../../src/backoffice/
|
|
243
|
+
"path": "./../../src/apps/backoffice/components/backoffice-main.element.ts",
|
|
244
244
|
"properties": [
|
|
245
245
|
{
|
|
246
246
|
"name": "styles",
|
|
@@ -249,9 +249,157 @@
|
|
|
249
249
|
}
|
|
250
250
|
]
|
|
251
251
|
},
|
|
252
|
+
{
|
|
253
|
+
"name": "umb-installer-consent",
|
|
254
|
+
"path": "./../../src/apps/installer/consent/installer-consent.element.ts",
|
|
255
|
+
"properties": [
|
|
256
|
+
{
|
|
257
|
+
"name": "styles",
|
|
258
|
+
"type": "CSSResultGroup",
|
|
259
|
+
"default": "[null]"
|
|
260
|
+
}
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "umb-installer-database",
|
|
265
|
+
"path": "./../../src/apps/installer/database/installer-database.element.ts",
|
|
266
|
+
"properties": [
|
|
267
|
+
{
|
|
268
|
+
"name": "databaseFormData"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "styles",
|
|
272
|
+
"type": "CSSResultGroup",
|
|
273
|
+
"default": "[null]"
|
|
274
|
+
}
|
|
275
|
+
]
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "umb-installer-error",
|
|
279
|
+
"path": "./../../src/apps/installer/error/installer-error.element.ts",
|
|
280
|
+
"properties": [
|
|
281
|
+
{
|
|
282
|
+
"name": "styles",
|
|
283
|
+
"type": "CSSResultGroup",
|
|
284
|
+
"default": "[null]"
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "umb-installer",
|
|
290
|
+
"path": "./../../src/apps/installer/installer.element.ts",
|
|
291
|
+
"properties": [
|
|
292
|
+
{
|
|
293
|
+
"name": "step",
|
|
294
|
+
"type": "number",
|
|
295
|
+
"default": "1"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "styles",
|
|
299
|
+
"type": "CSSResultGroup",
|
|
300
|
+
"default": "[null]"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "umb-installer-installing",
|
|
306
|
+
"path": "./../../src/apps/installer/installing/installer-installing.element.ts",
|
|
307
|
+
"properties": [
|
|
308
|
+
{
|
|
309
|
+
"name": "styles",
|
|
310
|
+
"type": "CSSResultGroup",
|
|
311
|
+
"default": "[null]"
|
|
312
|
+
}
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "umb-installer-layout",
|
|
317
|
+
"path": "./../../src/apps/installer/shared/layout/installer-layout.element.ts",
|
|
318
|
+
"properties": [
|
|
319
|
+
{
|
|
320
|
+
"name": "styles",
|
|
321
|
+
"type": "CSSResultGroup",
|
|
322
|
+
"default": "[null]"
|
|
323
|
+
}
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "umb-installer-user",
|
|
328
|
+
"path": "./../../src/apps/installer/user/installer-user.element.ts",
|
|
329
|
+
"properties": [
|
|
330
|
+
{
|
|
331
|
+
"name": "styles",
|
|
332
|
+
"type": "CSSResultGroup",
|
|
333
|
+
"default": "[null]"
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "umb-upgrader-view",
|
|
339
|
+
"path": "./../../src/apps/upgrader/upgrader-view.element.ts",
|
|
340
|
+
"attributes": [
|
|
341
|
+
{
|
|
342
|
+
"name": "fetching",
|
|
343
|
+
"type": "boolean",
|
|
344
|
+
"default": "false"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "upgrading",
|
|
348
|
+
"type": "boolean",
|
|
349
|
+
"default": "false"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "errorMessage",
|
|
353
|
+
"type": "string",
|
|
354
|
+
"default": "\"\""
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "settings"
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"properties": [
|
|
361
|
+
{
|
|
362
|
+
"name": "fetching",
|
|
363
|
+
"attribute": "fetching",
|
|
364
|
+
"type": "boolean",
|
|
365
|
+
"default": "false"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "upgrading",
|
|
369
|
+
"attribute": "upgrading",
|
|
370
|
+
"type": "boolean",
|
|
371
|
+
"default": "false"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"name": "errorMessage",
|
|
375
|
+
"attribute": "errorMessage",
|
|
376
|
+
"type": "string",
|
|
377
|
+
"default": "\"\""
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "settings",
|
|
381
|
+
"attribute": "settings"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "styles",
|
|
385
|
+
"type": "CSSResultGroup",
|
|
386
|
+
"default": "[null]"
|
|
387
|
+
}
|
|
388
|
+
],
|
|
389
|
+
"events": [
|
|
390
|
+
{
|
|
391
|
+
"name": "onAuthorizeUpgrade",
|
|
392
|
+
"description": "fires when the user clicks the continue button"
|
|
393
|
+
}
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "umb-upgrader",
|
|
398
|
+
"path": "./../../src/apps/upgrader/upgrader.element.ts"
|
|
399
|
+
},
|
|
252
400
|
{
|
|
253
401
|
"name": "umb-backoffice-modal-container",
|
|
254
|
-
"path": "./../../src/
|
|
402
|
+
"path": "./../../src/packages/core/components/backoffice-modal-container/backoffice-modal-container.element.ts",
|
|
255
403
|
"properties": [
|
|
256
404
|
{
|
|
257
405
|
"name": "styles",
|
|
@@ -262,7 +410,7 @@
|
|
|
262
410
|
},
|
|
263
411
|
{
|
|
264
412
|
"name": "umb-backoffice-notification-container",
|
|
265
|
-
"path": "./../../src/
|
|
413
|
+
"path": "./../../src/packages/core/components/backoffice-notification-container/backoffice-notification-container.element.ts",
|
|
266
414
|
"properties": [
|
|
267
415
|
{
|
|
268
416
|
"name": "styles",
|
|
@@ -273,7 +421,7 @@
|
|
|
273
421
|
},
|
|
274
422
|
{
|
|
275
423
|
"name": "umb-body-layout",
|
|
276
|
-
"path": "./../../src/
|
|
424
|
+
"path": "./../../src/packages/core/components/body-layout/body-layout.element.ts",
|
|
277
425
|
"attributes": [
|
|
278
426
|
{
|
|
279
427
|
"name": "headline",
|
|
@@ -321,7 +469,7 @@
|
|
|
321
469
|
},
|
|
322
470
|
{
|
|
323
471
|
"name": "umb-button-with-dropdown",
|
|
324
|
-
"path": "./../../src/
|
|
472
|
+
"path": "./../../src/packages/core/components/button-with-dropdown/button-with-dropdown.element.ts",
|
|
325
473
|
"attributes": [
|
|
326
474
|
{
|
|
327
475
|
"name": "label",
|
|
@@ -408,7 +556,7 @@
|
|
|
408
556
|
},
|
|
409
557
|
{
|
|
410
558
|
"name": "umb-code-block",
|
|
411
|
-
"path": "./../../src/
|
|
559
|
+
"path": "./../../src/packages/core/components/code-block/code-block.element.ts",
|
|
412
560
|
"description": "A simple styled box for showing code-based error messages.",
|
|
413
561
|
"properties": [
|
|
414
562
|
{
|
|
@@ -426,7 +574,7 @@
|
|
|
426
574
|
},
|
|
427
575
|
{
|
|
428
576
|
"name": "umb-code-editor",
|
|
429
|
-
"path": "./../../src/
|
|
577
|
+
"path": "./../../src/packages/core/components/code-editor/code-editor.element.ts",
|
|
430
578
|
"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`.",
|
|
431
579
|
"attributes": [
|
|
432
580
|
{
|
|
@@ -521,7 +669,7 @@
|
|
|
521
669
|
},
|
|
522
670
|
{
|
|
523
671
|
"name": "umb-collection-selection-actions",
|
|
524
|
-
"path": "./../../src/
|
|
672
|
+
"path": "./../../src/packages/core/components/collection/collection-selection-actions.element.ts",
|
|
525
673
|
"properties": [
|
|
526
674
|
{
|
|
527
675
|
"name": "styles",
|
|
@@ -532,7 +680,7 @@
|
|
|
532
680
|
},
|
|
533
681
|
{
|
|
534
682
|
"name": "umb-collection-toolbar",
|
|
535
|
-
"path": "./../../src/
|
|
683
|
+
"path": "./../../src/packages/core/components/collection/collection-toolbar.element.ts",
|
|
536
684
|
"attributes": [
|
|
537
685
|
{
|
|
538
686
|
"name": "actions",
|
|
@@ -572,7 +720,7 @@
|
|
|
572
720
|
},
|
|
573
721
|
{
|
|
574
722
|
"name": "umb-collection",
|
|
575
|
-
"path": "./../../src/
|
|
723
|
+
"path": "./../../src/packages/core/components/collection/collection.element.ts",
|
|
576
724
|
"attributes": [
|
|
577
725
|
{
|
|
578
726
|
"name": "entity-type",
|
|
@@ -594,7 +742,7 @@
|
|
|
594
742
|
},
|
|
595
743
|
{
|
|
596
744
|
"name": "umb-dashboard-collection",
|
|
597
|
-
"path": "./../../src/
|
|
745
|
+
"path": "./../../src/packages/core/components/collection/dashboards/dashboard-collection.element.ts",
|
|
598
746
|
"properties": [
|
|
599
747
|
{
|
|
600
748
|
"name": "manifest"
|
|
@@ -606,9 +754,127 @@
|
|
|
606
754
|
}
|
|
607
755
|
]
|
|
608
756
|
},
|
|
757
|
+
{
|
|
758
|
+
"name": "umb-date-input",
|
|
759
|
+
"path": "./../../src/packages/core/components/date-input/date-input.element.ts",
|
|
760
|
+
"attributes": [
|
|
761
|
+
{
|
|
762
|
+
"name": "type",
|
|
763
|
+
"description": "Specifies the type of input that will be rendered.",
|
|
764
|
+
"type": "'date'| 'time'| 'datetime-local'",
|
|
765
|
+
"default": "\"date\""
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "displayValue",
|
|
769
|
+
"type": "string | undefined"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"name": "offsetTime",
|
|
773
|
+
"type": "boolean",
|
|
774
|
+
"default": "false"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"name": "min",
|
|
778
|
+
"type": "string | undefined"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "max",
|
|
782
|
+
"type": "string | undefined"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"name": "step",
|
|
786
|
+
"type": "number | undefined"
|
|
787
|
+
}
|
|
788
|
+
],
|
|
789
|
+
"properties": [
|
|
790
|
+
{
|
|
791
|
+
"name": "type",
|
|
792
|
+
"attribute": "type",
|
|
793
|
+
"description": "Specifies the type of input that will be rendered.",
|
|
794
|
+
"type": "'date'| 'time'| 'datetime-local'",
|
|
795
|
+
"default": "\"date\""
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"name": "displayValue",
|
|
799
|
+
"attribute": "displayValue",
|
|
800
|
+
"type": "string | undefined"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"name": "offsetTime",
|
|
804
|
+
"attribute": "offsetTime",
|
|
805
|
+
"type": "boolean",
|
|
806
|
+
"default": "false"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"name": "min",
|
|
810
|
+
"attribute": "min",
|
|
811
|
+
"type": "string | undefined"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"name": "max",
|
|
815
|
+
"attribute": "max",
|
|
816
|
+
"type": "string | undefined"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "step",
|
|
820
|
+
"attribute": "step",
|
|
821
|
+
"type": "number | undefined"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"name": "styles",
|
|
825
|
+
"type": "CSSResult[]",
|
|
826
|
+
"default": "[\"UUITextStyles\",null]"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"name": "formAssociated",
|
|
830
|
+
"type": "boolean"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"name": "value",
|
|
834
|
+
"type": "FormDataEntryValue | FormData"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"name": "name",
|
|
838
|
+
"type": "string"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"name": "validationMessage",
|
|
842
|
+
"type": "string"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"name": "validity",
|
|
846
|
+
"type": "ValidityState"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "pristine",
|
|
850
|
+
"type": "boolean"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"name": "required",
|
|
854
|
+
"type": "boolean"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "requiredMessage",
|
|
858
|
+
"type": "string"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "error",
|
|
862
|
+
"type": "boolean"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "errorMessage",
|
|
866
|
+
"type": "string"
|
|
867
|
+
}
|
|
868
|
+
],
|
|
869
|
+
"events": [
|
|
870
|
+
{
|
|
871
|
+
"name": "change"
|
|
872
|
+
}
|
|
873
|
+
]
|
|
874
|
+
},
|
|
609
875
|
{
|
|
610
876
|
"name": "umb-debug",
|
|
611
|
-
"path": "./../../src/
|
|
877
|
+
"path": "./../../src/packages/core/components/debug/debug.element.ts",
|
|
612
878
|
"attributes": [
|
|
613
879
|
{
|
|
614
880
|
"name": "visible",
|
|
@@ -648,7 +914,7 @@
|
|
|
648
914
|
},
|
|
649
915
|
{
|
|
650
916
|
"name": "umb-context-debugger-modal",
|
|
651
|
-
"path": "./../../src/
|
|
917
|
+
"path": "./../../src/packages/core/components/debug/modals/debug/debug-modal.element.ts",
|
|
652
918
|
"properties": [
|
|
653
919
|
{
|
|
654
920
|
"name": "styles",
|
|
@@ -659,7 +925,7 @@
|
|
|
659
925
|
},
|
|
660
926
|
{
|
|
661
927
|
"name": "umb-dropdown",
|
|
662
|
-
"path": "./../../src/
|
|
928
|
+
"path": "./../../src/packages/core/components/dropdown/dropdown.element.ts",
|
|
663
929
|
"attributes": [
|
|
664
930
|
{
|
|
665
931
|
"name": "open",
|
|
@@ -683,7 +949,7 @@
|
|
|
683
949
|
},
|
|
684
950
|
{
|
|
685
951
|
"name": "umb-empty-state",
|
|
686
|
-
"path": "./../../src/
|
|
952
|
+
"path": "./../../src/packages/core/components/empty-state/empty-state.element.ts",
|
|
687
953
|
"attributes": [
|
|
688
954
|
{
|
|
689
955
|
"name": "size",
|
|
@@ -720,7 +986,7 @@
|
|
|
720
986
|
},
|
|
721
987
|
{
|
|
722
988
|
"name": "umb-entity-action-list",
|
|
723
|
-
"path": "./../../src/
|
|
989
|
+
"path": "./../../src/packages/core/components/entity-action/entity-action-list.element.ts",
|
|
724
990
|
"attributes": [
|
|
725
991
|
{
|
|
726
992
|
"name": "entity-type",
|
|
@@ -746,7 +1012,7 @@
|
|
|
746
1012
|
},
|
|
747
1013
|
{
|
|
748
1014
|
"name": "umb-entity-action",
|
|
749
|
-
"path": "./../../src/
|
|
1015
|
+
"path": "./../../src/packages/core/components/entity-action/entity-action.element.ts",
|
|
750
1016
|
"attributes": [
|
|
751
1017
|
{
|
|
752
1018
|
"name": "unique",
|
|
@@ -766,7 +1032,7 @@
|
|
|
766
1032
|
},
|
|
767
1033
|
{
|
|
768
1034
|
"name": "umb-entity-bulk-action",
|
|
769
|
-
"path": "./../../src/
|
|
1035
|
+
"path": "./../../src/packages/core/components/entity-bulk-action/entity-bulk-action.element.ts",
|
|
770
1036
|
"properties": [
|
|
771
1037
|
{
|
|
772
1038
|
"name": "selection",
|
|
@@ -779,7 +1045,7 @@
|
|
|
779
1045
|
},
|
|
780
1046
|
{
|
|
781
1047
|
"name": "umb-extension-slot",
|
|
782
|
-
"path": "./../../src/
|
|
1048
|
+
"path": "./../../src/packages/core/components/extension-slot/extension-slot.element.ts",
|
|
783
1049
|
"attributes": [
|
|
784
1050
|
{
|
|
785
1051
|
"name": "type",
|
|
@@ -840,7 +1106,7 @@
|
|
|
840
1106
|
},
|
|
841
1107
|
{
|
|
842
1108
|
"name": "umb-footer-layout",
|
|
843
|
-
"path": "./../../src/
|
|
1109
|
+
"path": "./../../src/packages/core/components/footer-layout/footer-layout.element.ts",
|
|
844
1110
|
"properties": [
|
|
845
1111
|
{
|
|
846
1112
|
"name": "styles",
|
|
@@ -861,7 +1127,7 @@
|
|
|
861
1127
|
},
|
|
862
1128
|
{
|
|
863
1129
|
"name": "umb-header-app-button",
|
|
864
|
-
"path": "./../../src/
|
|
1130
|
+
"path": "./../../src/packages/core/components/header-app/header-app-button.element.ts",
|
|
865
1131
|
"properties": [
|
|
866
1132
|
{
|
|
867
1133
|
"name": "manifest"
|
|
@@ -875,7 +1141,7 @@
|
|
|
875
1141
|
},
|
|
876
1142
|
{
|
|
877
1143
|
"name": "umb-history-item",
|
|
878
|
-
"path": "./../../src/
|
|
1144
|
+
"path": "./../../src/packages/core/components/history/history-item.element.ts",
|
|
879
1145
|
"attributes": [
|
|
880
1146
|
{
|
|
881
1147
|
"name": "src",
|
|
@@ -915,7 +1181,7 @@
|
|
|
915
1181
|
},
|
|
916
1182
|
{
|
|
917
1183
|
"name": "umb-history-list",
|
|
918
|
-
"path": "./../../src/
|
|
1184
|
+
"path": "./../../src/packages/core/components/history/history-list.element.ts",
|
|
919
1185
|
"properties": [
|
|
920
1186
|
{
|
|
921
1187
|
"name": "styles",
|
|
@@ -926,7 +1192,7 @@
|
|
|
926
1192
|
},
|
|
927
1193
|
{
|
|
928
1194
|
"name": "umb-input-checkbox-list",
|
|
929
|
-
"path": "./../../src/
|
|
1195
|
+
"path": "./../../src/packages/core/components/input-checkbox-list/input-checkbox-list.element.ts",
|
|
930
1196
|
"attributes": [
|
|
931
1197
|
{
|
|
932
1198
|
"name": "list",
|
|
@@ -1006,7 +1272,7 @@
|
|
|
1006
1272
|
},
|
|
1007
1273
|
{
|
|
1008
1274
|
"name": "umb-input-color-picker",
|
|
1009
|
-
"path": "./../../src/
|
|
1275
|
+
"path": "./../../src/packages/core/components/input-color-picker/input-color-picker.element.ts",
|
|
1010
1276
|
"description": "This wraps the UUI library uui-color-swatches component",
|
|
1011
1277
|
"attributes": [
|
|
1012
1278
|
{
|
|
@@ -1085,7 +1351,7 @@
|
|
|
1085
1351
|
},
|
|
1086
1352
|
{
|
|
1087
1353
|
"name": "umb-input-eye-dropper",
|
|
1088
|
-
"path": "./../../src/
|
|
1354
|
+
"path": "./../../src/packages/core/components/input-eye-dropper/input-eye-dropper.element.ts",
|
|
1089
1355
|
"attributes": [
|
|
1090
1356
|
{
|
|
1091
1357
|
"name": "opacity",
|
|
@@ -1164,8 +1430,8 @@
|
|
|
1164
1430
|
]
|
|
1165
1431
|
},
|
|
1166
1432
|
{
|
|
1167
|
-
"name": "umb-input-multi-url
|
|
1168
|
-
"path": "./../../src/
|
|
1433
|
+
"name": "umb-input-multi-url",
|
|
1434
|
+
"path": "./../../src/packages/core/components/input-multi-url/input-multi-url.element.ts",
|
|
1169
1435
|
"attributes": [
|
|
1170
1436
|
{
|
|
1171
1437
|
"name": "alias",
|
|
@@ -1334,7 +1600,7 @@
|
|
|
1334
1600
|
},
|
|
1335
1601
|
{
|
|
1336
1602
|
"name": "umb-input-number-range",
|
|
1337
|
-
"path": "./../../src/
|
|
1603
|
+
"path": "./../../src/packages/core/components/input-number-range/input-number-range.element.ts",
|
|
1338
1604
|
"attributes": [
|
|
1339
1605
|
{
|
|
1340
1606
|
"name": "min-label",
|
|
@@ -1437,7 +1703,7 @@
|
|
|
1437
1703
|
},
|
|
1438
1704
|
{
|
|
1439
1705
|
"name": "umb-input-radio-button-list",
|
|
1440
|
-
"path": "./../../src/
|
|
1706
|
+
"path": "./../../src/packages/core/components/input-radio-button-list/input-radio-button-list.element.ts",
|
|
1441
1707
|
"attributes": [
|
|
1442
1708
|
{
|
|
1443
1709
|
"name": "list",
|
|
@@ -1517,7 +1783,7 @@
|
|
|
1517
1783
|
},
|
|
1518
1784
|
{
|
|
1519
1785
|
"name": "umb-input-section",
|
|
1520
|
-
"path": "./../../src/
|
|
1786
|
+
"path": "./../../src/packages/core/components/input-section/input-section.element.ts",
|
|
1521
1787
|
"attributes": [
|
|
1522
1788
|
{
|
|
1523
1789
|
"name": "value",
|
|
@@ -1577,7 +1843,7 @@
|
|
|
1577
1843
|
},
|
|
1578
1844
|
{
|
|
1579
1845
|
"name": "umb-input-slider",
|
|
1580
|
-
"path": "./../../src/
|
|
1846
|
+
"path": "./../../src/packages/core/components/input-slider/input-slider.element.ts",
|
|
1581
1847
|
"attributes": [
|
|
1582
1848
|
{
|
|
1583
1849
|
"name": "min",
|
|
@@ -1701,7 +1967,7 @@
|
|
|
1701
1967
|
},
|
|
1702
1968
|
{
|
|
1703
1969
|
"name": "umb-input-toggle",
|
|
1704
|
-
"path": "./../../src/
|
|
1970
|
+
"path": "./../../src/packages/core/components/input-toggle/input-toggle.element.ts",
|
|
1705
1971
|
"attributes": [
|
|
1706
1972
|
{
|
|
1707
1973
|
"name": "checked",
|
|
@@ -1797,7 +2063,7 @@
|
|
|
1797
2063
|
},
|
|
1798
2064
|
{
|
|
1799
2065
|
"name": "umb-input-upload-field-file",
|
|
1800
|
-
"path": "./../../src/
|
|
2066
|
+
"path": "./../../src/packages/core/components/input-upload-field/input-upload-field-file.element.ts",
|
|
1801
2067
|
"properties": [
|
|
1802
2068
|
{
|
|
1803
2069
|
"name": "file",
|
|
@@ -1812,7 +2078,7 @@
|
|
|
1812
2078
|
},
|
|
1813
2079
|
{
|
|
1814
2080
|
"name": "umb-input-upload-field",
|
|
1815
|
-
"path": "./../../src/
|
|
2081
|
+
"path": "./../../src/packages/core/components/input-upload-field/input-upload-field.element.ts",
|
|
1816
2082
|
"attributes": [
|
|
1817
2083
|
{
|
|
1818
2084
|
"name": "keys",
|
|
@@ -1907,7 +2173,7 @@
|
|
|
1907
2173
|
},
|
|
1908
2174
|
{
|
|
1909
2175
|
"name": "umb-menu-item-base",
|
|
1910
|
-
"path": "./../../src/
|
|
2176
|
+
"path": "./../../src/packages/core/components/menu/menu-item-base/menu-item-base.element.ts",
|
|
1911
2177
|
"attributes": [
|
|
1912
2178
|
{
|
|
1913
2179
|
"name": "entity-type",
|
|
@@ -1962,7 +2228,7 @@
|
|
|
1962
2228
|
},
|
|
1963
2229
|
{
|
|
1964
2230
|
"name": "umb-menu-item",
|
|
1965
|
-
"path": "./../../src/
|
|
2231
|
+
"path": "./../../src/packages/core/components/menu/menu-item/menu-item.element.ts",
|
|
1966
2232
|
"properties": [
|
|
1967
2233
|
{
|
|
1968
2234
|
"name": "styles",
|
|
@@ -1976,7 +2242,7 @@
|
|
|
1976
2242
|
},
|
|
1977
2243
|
{
|
|
1978
2244
|
"name": "umb-menu",
|
|
1979
|
-
"path": "./../../src/
|
|
2245
|
+
"path": "./../../src/packages/core/components/menu/menu.element.ts",
|
|
1980
2246
|
"attributes": [
|
|
1981
2247
|
{
|
|
1982
2248
|
"name": "manifest"
|
|
@@ -1994,20 +2260,9 @@
|
|
|
1994
2260
|
}
|
|
1995
2261
|
]
|
|
1996
2262
|
},
|
|
1997
|
-
{
|
|
1998
|
-
"name": "umb-property-creator",
|
|
1999
|
-
"path": "./../../src/backoffice/core/components/property-creator/property-creator.element.ts",
|
|
2000
|
-
"properties": [
|
|
2001
|
-
{
|
|
2002
|
-
"name": "styles",
|
|
2003
|
-
"type": "CSSResult[]",
|
|
2004
|
-
"default": "[\"UUITextStyles\",null]"
|
|
2005
|
-
}
|
|
2006
|
-
]
|
|
2007
|
-
},
|
|
2008
2263
|
{
|
|
2009
2264
|
"name": "umb-property-editor-config",
|
|
2010
|
-
"path": "./../../src/
|
|
2265
|
+
"path": "./../../src/packages/core/components/property-editor-config/property-editor-config.element.ts",
|
|
2011
2266
|
"attributes": [
|
|
2012
2267
|
{
|
|
2013
2268
|
"name": "property-editor-ui-alias",
|
|
@@ -2042,7 +2297,7 @@
|
|
|
2042
2297
|
},
|
|
2043
2298
|
{
|
|
2044
2299
|
"name": "umb-property-type-based-property",
|
|
2045
|
-
"path": "./../../src/
|
|
2300
|
+
"path": "./../../src/packages/core/components/property-type-based-property/property-type-based-property.element.ts",
|
|
2046
2301
|
"attributes": [
|
|
2047
2302
|
{
|
|
2048
2303
|
"name": "propertyVariantId",
|
|
@@ -2071,7 +2326,7 @@
|
|
|
2071
2326
|
},
|
|
2072
2327
|
{
|
|
2073
2328
|
"name": "umb-ref-property-editor-ui",
|
|
2074
|
-
"path": "./../../src/
|
|
2329
|
+
"path": "./../../src/packages/core/components/ref-property-editor-ui/ref-property-editor-ui.element.ts",
|
|
2075
2330
|
"attributes": [
|
|
2076
2331
|
{
|
|
2077
2332
|
"name": "alias",
|
|
@@ -2119,7 +2374,7 @@
|
|
|
2119
2374
|
"default": "\"''\""
|
|
2120
2375
|
},
|
|
2121
2376
|
{
|
|
2122
|
-
"name": "
|
|
2377
|
+
"name": "propertyEditorModelAlias",
|
|
2123
2378
|
"attribute": "property-editor-model-alias",
|
|
2124
2379
|
"description": "Property Editor Alias",
|
|
2125
2380
|
"type": "string",
|
|
@@ -2194,7 +2449,7 @@
|
|
|
2194
2449
|
},
|
|
2195
2450
|
{
|
|
2196
2451
|
"name": "umb-section-main",
|
|
2197
|
-
"path": "./../../src/
|
|
2452
|
+
"path": "./../../src/packages/core/components/section/section-main/section-main.element.ts",
|
|
2198
2453
|
"properties": [
|
|
2199
2454
|
{
|
|
2200
2455
|
"name": "styles",
|
|
@@ -2205,7 +2460,7 @@
|
|
|
2205
2460
|
},
|
|
2206
2461
|
{
|
|
2207
2462
|
"name": "umb-section-sidebar-context-menu",
|
|
2208
|
-
"path": "./../../src/
|
|
2463
|
+
"path": "./../../src/packages/core/components/section/section-sidebar-context-menu/section-sidebar-context-menu.element.ts",
|
|
2209
2464
|
"properties": [
|
|
2210
2465
|
{
|
|
2211
2466
|
"name": "styles",
|
|
@@ -2216,7 +2471,7 @@
|
|
|
2216
2471
|
},
|
|
2217
2472
|
{
|
|
2218
2473
|
"name": "umb-section-sidebar-menu",
|
|
2219
|
-
"path": "./../../src/
|
|
2474
|
+
"path": "./../../src/packages/core/components/section/section-sidebar-menu/section-sidebar-menu.element.ts",
|
|
2220
2475
|
"attributes": [
|
|
2221
2476
|
{
|
|
2222
2477
|
"name": "manifest"
|
|
@@ -2236,7 +2491,7 @@
|
|
|
2236
2491
|
},
|
|
2237
2492
|
{
|
|
2238
2493
|
"name": "umb-section-sidebar",
|
|
2239
|
-
"path": "./../../src/
|
|
2494
|
+
"path": "./../../src/packages/core/components/section/section-sidebar/section-sidebar.element.ts",
|
|
2240
2495
|
"properties": [
|
|
2241
2496
|
{
|
|
2242
2497
|
"name": "styles",
|
|
@@ -2247,7 +2502,7 @@
|
|
|
2247
2502
|
},
|
|
2248
2503
|
{
|
|
2249
2504
|
"name": "umb-section-views",
|
|
2250
|
-
"path": "./../../src/
|
|
2505
|
+
"path": "./../../src/packages/core/components/section/section-views/section-views.element.ts",
|
|
2251
2506
|
"attributes": [
|
|
2252
2507
|
{
|
|
2253
2508
|
"name": "section-alias",
|
|
@@ -2269,7 +2524,7 @@
|
|
|
2269
2524
|
},
|
|
2270
2525
|
{
|
|
2271
2526
|
"name": "umb-section-default",
|
|
2272
|
-
"path": "./../../src/
|
|
2527
|
+
"path": "./../../src/packages/core/components/section/section.element.ts",
|
|
2273
2528
|
"attributes": [
|
|
2274
2529
|
{
|
|
2275
2530
|
"name": "manifest"
|
|
@@ -2289,7 +2544,7 @@
|
|
|
2289
2544
|
},
|
|
2290
2545
|
{
|
|
2291
2546
|
"name": "umb-table",
|
|
2292
|
-
"path": "./../../src/
|
|
2547
|
+
"path": "./../../src/packages/core/components/table/table.element.ts",
|
|
2293
2548
|
"properties": [
|
|
2294
2549
|
{
|
|
2295
2550
|
"name": "items",
|
|
@@ -2345,7 +2600,7 @@
|
|
|
2345
2600
|
},
|
|
2346
2601
|
{
|
|
2347
2602
|
"name": "umb-tooltip-menu",
|
|
2348
|
-
"path": "./../../src/
|
|
2603
|
+
"path": "./../../src/packages/core/components/tooltip-menu/tooltip-menu.element.ts",
|
|
2349
2604
|
"attributes": [
|
|
2350
2605
|
{
|
|
2351
2606
|
"name": "icon-only",
|
|
@@ -2380,7 +2635,7 @@
|
|
|
2380
2635
|
},
|
|
2381
2636
|
{
|
|
2382
2637
|
"name": "umb-entity-tree-item",
|
|
2383
|
-
"path": "./../../src/
|
|
2638
|
+
"path": "./../../src/packages/core/components/tree/entity-tree-item/entity-tree-item.element.ts",
|
|
2384
2639
|
"properties": [
|
|
2385
2640
|
{
|
|
2386
2641
|
"name": "item"
|
|
@@ -2394,7 +2649,7 @@
|
|
|
2394
2649
|
},
|
|
2395
2650
|
{
|
|
2396
2651
|
"name": "umb-tree-item-base",
|
|
2397
|
-
"path": "./../../src/
|
|
2652
|
+
"path": "./../../src/packages/core/components/tree/tree-item-base/tree-item-base.element.ts",
|
|
2398
2653
|
"properties": [
|
|
2399
2654
|
{
|
|
2400
2655
|
"name": "styles",
|
|
@@ -2405,7 +2660,7 @@
|
|
|
2405
2660
|
},
|
|
2406
2661
|
{
|
|
2407
2662
|
"name": "umb-tree-item",
|
|
2408
|
-
"path": "./../../src/
|
|
2663
|
+
"path": "./../../src/packages/core/components/tree/tree-item/tree-item.element.ts",
|
|
2409
2664
|
"properties": [
|
|
2410
2665
|
{
|
|
2411
2666
|
"name": "item"
|
|
@@ -2419,7 +2674,7 @@
|
|
|
2419
2674
|
},
|
|
2420
2675
|
{
|
|
2421
2676
|
"name": "umb-menu-item-tree",
|
|
2422
|
-
"path": "./../../src/
|
|
2677
|
+
"path": "./../../src/packages/core/components/tree/tree-menu-item/tree-menu-item.element.ts",
|
|
2423
2678
|
"attributes": [
|
|
2424
2679
|
{
|
|
2425
2680
|
"name": "manifest"
|
|
@@ -2434,7 +2689,7 @@
|
|
|
2434
2689
|
},
|
|
2435
2690
|
{
|
|
2436
2691
|
"name": "umb-tree",
|
|
2437
|
-
"path": "./../../src/
|
|
2692
|
+
"path": "./../../src/packages/core/components/tree/tree.element.ts",
|
|
2438
2693
|
"attributes": [
|
|
2439
2694
|
{
|
|
2440
2695
|
"name": "alias"
|
|
@@ -2486,7 +2741,7 @@
|
|
|
2486
2741
|
},
|
|
2487
2742
|
{
|
|
2488
2743
|
"name": "umb-variant-selector",
|
|
2489
|
-
"path": "./../../src/
|
|
2744
|
+
"path": "./../../src/packages/core/components/variant-selector/variant-selector.element.ts",
|
|
2490
2745
|
"attributes": [
|
|
2491
2746
|
{
|
|
2492
2747
|
"name": "alias",
|
|
@@ -2508,7 +2763,7 @@
|
|
|
2508
2763
|
},
|
|
2509
2764
|
{
|
|
2510
2765
|
"name": "umb-variantable-property",
|
|
2511
|
-
"path": "./../../src/
|
|
2766
|
+
"path": "./../../src/packages/core/components/variantable-property/variantable-property.element.ts",
|
|
2512
2767
|
"properties": [
|
|
2513
2768
|
{
|
|
2514
2769
|
"name": "property"
|
|
@@ -2522,7 +2777,7 @@
|
|
|
2522
2777
|
},
|
|
2523
2778
|
{
|
|
2524
2779
|
"name": "umb-workspace-property",
|
|
2525
|
-
"path": "./../../src/
|
|
2780
|
+
"path": "./../../src/packages/core/components/workspace-property/workspace-property.element.ts",
|
|
2526
2781
|
"attributes": [
|
|
2527
2782
|
{
|
|
2528
2783
|
"name": "label",
|
|
@@ -2635,7 +2890,7 @@
|
|
|
2635
2890
|
},
|
|
2636
2891
|
{
|
|
2637
2892
|
"name": "umb-workspace-action-menu",
|
|
2638
|
-
"path": "./../../src/
|
|
2893
|
+
"path": "./../../src/packages/core/components/workspace/workspace-action-menu/workspace-action-menu.element.ts",
|
|
2639
2894
|
"properties": [
|
|
2640
2895
|
{
|
|
2641
2896
|
"name": "styles",
|
|
@@ -2646,7 +2901,7 @@
|
|
|
2646
2901
|
},
|
|
2647
2902
|
{
|
|
2648
2903
|
"name": "umb-workspace-action",
|
|
2649
|
-
"path": "./../../src/
|
|
2904
|
+
"path": "./../../src/packages/core/components/workspace/workspace-action/workspace-action.element.ts",
|
|
2650
2905
|
"properties": [
|
|
2651
2906
|
{
|
|
2652
2907
|
"name": "manifest"
|
|
@@ -2660,7 +2915,7 @@
|
|
|
2660
2915
|
},
|
|
2661
2916
|
{
|
|
2662
2917
|
"name": "umb-workspace-view-collection",
|
|
2663
|
-
"path": "./../../src/
|
|
2918
|
+
"path": "./../../src/packages/core/components/workspace/workspace-content/views/collection/workspace-view-collection.element.ts",
|
|
2664
2919
|
"properties": [
|
|
2665
2920
|
{
|
|
2666
2921
|
"name": "manifest"
|
|
@@ -2674,7 +2929,7 @@
|
|
|
2674
2929
|
},
|
|
2675
2930
|
{
|
|
2676
2931
|
"name": "umb-workspace-editor",
|
|
2677
|
-
"path": "./../../src/
|
|
2932
|
+
"path": "./../../src/packages/core/components/workspace/workspace-editor/workspace-editor.element.ts",
|
|
2678
2933
|
"attributes": [
|
|
2679
2934
|
{
|
|
2680
2935
|
"name": "headline",
|
|
@@ -2759,7 +3014,7 @@
|
|
|
2759
3014
|
},
|
|
2760
3015
|
{
|
|
2761
3016
|
"name": "umb-workspace-footer",
|
|
2762
|
-
"path": "./../../src/
|
|
3017
|
+
"path": "./../../src/packages/core/components/workspace/workspace-footer/workspace-footer.element.ts",
|
|
2763
3018
|
"attributes": [
|
|
2764
3019
|
{
|
|
2765
3020
|
"name": "alias",
|
|
@@ -2795,7 +3050,7 @@
|
|
|
2795
3050
|
},
|
|
2796
3051
|
{
|
|
2797
3052
|
"name": "umb-workspace-property-layout",
|
|
2798
|
-
"path": "./../../src/
|
|
3053
|
+
"path": "./../../src/packages/core/components/workspace/workspace-property-layout/workspace-property-layout.element.ts",
|
|
2799
3054
|
"attributes": [
|
|
2800
3055
|
{
|
|
2801
3056
|
"name": "alias",
|
|
@@ -2874,7 +3129,7 @@
|
|
|
2874
3129
|
},
|
|
2875
3130
|
{
|
|
2876
3131
|
"name": "umb-workspace-variant",
|
|
2877
|
-
"path": "./../../src/
|
|
3132
|
+
"path": "./../../src/packages/core/components/workspace/workspace-variant/workspace-variant.element.ts",
|
|
2878
3133
|
"description": "\nExample. Document Workspace would use a Variant-component(variant component would talk directly to the workspace-context)\nAs well breadcrumbs etc.",
|
|
2879
3134
|
"attributes": [
|
|
2880
3135
|
{
|
|
@@ -2922,7 +3177,7 @@
|
|
|
2922
3177
|
},
|
|
2923
3178
|
{
|
|
2924
3179
|
"name": "umb-workspace",
|
|
2925
|
-
"path": "./../../src/
|
|
3180
|
+
"path": "./../../src/packages/core/components/workspace/workspace.element.ts",
|
|
2926
3181
|
"attributes": [
|
|
2927
3182
|
{
|
|
2928
3183
|
"name": "entity-type",
|
|
@@ -2946,7 +3201,7 @@
|
|
|
2946
3201
|
},
|
|
2947
3202
|
{
|
|
2948
3203
|
"name": "umb-confirm-modal",
|
|
2949
|
-
"path": "./../../src/
|
|
3204
|
+
"path": "./../../src/packages/core/modals/confirm/confirm-modal.element.ts",
|
|
2950
3205
|
"attributes": [
|
|
2951
3206
|
{
|
|
2952
3207
|
"name": "data"
|
|
@@ -2969,7 +3224,7 @@
|
|
|
2969
3224
|
},
|
|
2970
3225
|
{
|
|
2971
3226
|
"name": "umb-embedded-media-modal",
|
|
2972
|
-
"path": "./../../src/
|
|
3227
|
+
"path": "./../../src/packages/core/modals/embedded-media/embedded-media-modal.element.ts",
|
|
2973
3228
|
"attributes": [
|
|
2974
3229
|
{
|
|
2975
3230
|
"name": "data"
|
|
@@ -2992,7 +3247,7 @@
|
|
|
2992
3247
|
},
|
|
2993
3248
|
{
|
|
2994
3249
|
"name": "umb-folder-modal",
|
|
2995
|
-
"path": "./../../src/
|
|
3250
|
+
"path": "./../../src/packages/core/modals/folder/folder-modal.element.ts",
|
|
2996
3251
|
"properties": [
|
|
2997
3252
|
{
|
|
2998
3253
|
"name": "modalHandler"
|
|
@@ -3009,7 +3264,7 @@
|
|
|
3009
3264
|
},
|
|
3010
3265
|
{
|
|
3011
3266
|
"name": "umb-icon-picker-modal",
|
|
3012
|
-
"path": "./../../src/
|
|
3267
|
+
"path": "./../../src/packages/core/modals/icon-picker/icon-picker-modal.element.ts",
|
|
3013
3268
|
"properties": [
|
|
3014
3269
|
{
|
|
3015
3270
|
"name": "styles",
|
|
@@ -3020,7 +3275,7 @@
|
|
|
3020
3275
|
},
|
|
3021
3276
|
{
|
|
3022
3277
|
"name": "umb-link-picker-modal",
|
|
3023
|
-
"path": "./../../src/
|
|
3278
|
+
"path": "./../../src/packages/core/modals/link-picker/link-picker-modal.element.ts",
|
|
3024
3279
|
"properties": [
|
|
3025
3280
|
{
|
|
3026
3281
|
"name": "styles",
|
|
@@ -3031,7 +3286,7 @@
|
|
|
3031
3286
|
},
|
|
3032
3287
|
{
|
|
3033
3288
|
"name": "umb-property-settings-modal",
|
|
3034
|
-
"path": "./../../src/
|
|
3289
|
+
"path": "./../../src/packages/core/modals/property-settings/property-settings-modal.element.ts",
|
|
3035
3290
|
"properties": [
|
|
3036
3291
|
{
|
|
3037
3292
|
"name": "styles",
|
|
@@ -3042,7 +3297,7 @@
|
|
|
3042
3297
|
},
|
|
3043
3298
|
{
|
|
3044
3299
|
"name": "umb-section-picker-modal",
|
|
3045
|
-
"path": "./../../src/
|
|
3300
|
+
"path": "./../../src/packages/core/modals/section-picker/section-picker-modal.element.ts",
|
|
3046
3301
|
"properties": [
|
|
3047
3302
|
{
|
|
3048
3303
|
"name": "styles",
|
|
@@ -3053,7 +3308,7 @@
|
|
|
3053
3308
|
},
|
|
3054
3309
|
{
|
|
3055
3310
|
"name": "umb-template-modal",
|
|
3056
|
-
"path": "./../../src/
|
|
3311
|
+
"path": "./../../src/packages/core/modals/template/template-modal.element.ts",
|
|
3057
3312
|
"properties": [
|
|
3058
3313
|
{
|
|
3059
3314
|
"name": "styles",
|
|
@@ -3064,7 +3319,7 @@
|
|
|
3064
3319
|
},
|
|
3065
3320
|
{
|
|
3066
3321
|
"name": "umb-tree-picker-modal",
|
|
3067
|
-
"path": "./../../src/
|
|
3322
|
+
"path": "./../../src/packages/core/modals/tree-picker/tree-picker-modal.element.ts",
|
|
3068
3323
|
"properties": [
|
|
3069
3324
|
{
|
|
3070
3325
|
"name": "styles",
|
|
@@ -3075,7 +3330,7 @@
|
|
|
3075
3330
|
},
|
|
3076
3331
|
{
|
|
3077
3332
|
"name": "umb-notification-layout-default",
|
|
3078
|
-
"path": "./../../src/
|
|
3333
|
+
"path": "./../../src/packages/core/notification/layouts/default/notification-layout-default.element.ts",
|
|
3079
3334
|
"attributes": [
|
|
3080
3335
|
{
|
|
3081
3336
|
"name": "data"
|
|
@@ -3098,11 +3353,11 @@
|
|
|
3098
3353
|
},
|
|
3099
3354
|
{
|
|
3100
3355
|
"name": "umb-story-notification-default-example",
|
|
3101
|
-
"path": "./../../src/
|
|
3356
|
+
"path": "./../../src/packages/core/notification/stories/story-notification-default-example.element.ts"
|
|
3102
3357
|
},
|
|
3103
3358
|
{
|
|
3104
3359
|
"name": "umb-property-action-clear",
|
|
3105
|
-
"path": "./../../src/
|
|
3360
|
+
"path": "./../../src/packages/core/property-actions/clear/property-action-clear.element.ts",
|
|
3106
3361
|
"attributes": [
|
|
3107
3362
|
{
|
|
3108
3363
|
"name": "value",
|
|
@@ -3126,7 +3381,7 @@
|
|
|
3126
3381
|
},
|
|
3127
3382
|
{
|
|
3128
3383
|
"name": "umb-property-action-copy",
|
|
3129
|
-
"path": "./../../src/
|
|
3384
|
+
"path": "./../../src/packages/core/property-actions/copy/property-action-copy.element.ts",
|
|
3130
3385
|
"attributes": [
|
|
3131
3386
|
{
|
|
3132
3387
|
"name": "value",
|
|
@@ -3150,7 +3405,7 @@
|
|
|
3150
3405
|
},
|
|
3151
3406
|
{
|
|
3152
3407
|
"name": "umb-property-action-menu",
|
|
3153
|
-
"path": "./../../src/
|
|
3408
|
+
"path": "./../../src/packages/core/property-actions/shared/property-action-menu/property-action-menu.element.ts",
|
|
3154
3409
|
"attributes": [
|
|
3155
3410
|
{
|
|
3156
3411
|
"name": "value",
|
|
@@ -3181,7 +3436,7 @@
|
|
|
3181
3436
|
},
|
|
3182
3437
|
{
|
|
3183
3438
|
"name": "umb-property-action",
|
|
3184
|
-
"path": "./../../src/
|
|
3439
|
+
"path": "./../../src/packages/core/property-actions/shared/property-action/property-action.element.ts",
|
|
3185
3440
|
"attributes": [
|
|
3186
3441
|
{
|
|
3187
3442
|
"name": "propertyAction"
|
|
@@ -3209,31 +3464,8 @@
|
|
|
3209
3464
|
]
|
|
3210
3465
|
},
|
|
3211
3466
|
{
|
|
3212
|
-
"name": "umb-property-editor-ui-
|
|
3213
|
-
"path": "./../../src/
|
|
3214
|
-
"attributes": [
|
|
3215
|
-
{
|
|
3216
|
-
"name": "data"
|
|
3217
|
-
}
|
|
3218
|
-
],
|
|
3219
|
-
"properties": [
|
|
3220
|
-
{
|
|
3221
|
-
"name": "data",
|
|
3222
|
-
"attribute": "data"
|
|
3223
|
-
},
|
|
3224
|
-
{
|
|
3225
|
-
"name": "modalHandler"
|
|
3226
|
-
},
|
|
3227
|
-
{
|
|
3228
|
-
"name": "styles",
|
|
3229
|
-
"type": "CSSResult[]",
|
|
3230
|
-
"default": "[\"UUITextStyles\",null]"
|
|
3231
|
-
}
|
|
3232
|
-
]
|
|
3233
|
-
},
|
|
3234
|
-
{
|
|
3235
|
-
"name": "umb-property-editor-ui-block-grid-block-configuration",
|
|
3236
|
-
"path": "./../../src/backoffice/core/property-editors/uis/block-grid/config/block-configuration/property-editor-ui-block-grid-block-configuration.element.ts",
|
|
3467
|
+
"name": "umb-property-editor-ui-block-grid-block-configuration",
|
|
3468
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/config/block-configuration/property-editor-ui-block-grid-block-configuration.element.ts",
|
|
3237
3469
|
"attributes": [
|
|
3238
3470
|
{
|
|
3239
3471
|
"name": "value",
|
|
@@ -3262,7 +3494,7 @@
|
|
|
3262
3494
|
},
|
|
3263
3495
|
{
|
|
3264
3496
|
"name": "umb-property-editor-ui-block-grid-group-configuration",
|
|
3265
|
-
"path": "./../../src/
|
|
3497
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/config/group-configuration/property-editor-ui-block-grid-group-configuration.element.ts",
|
|
3266
3498
|
"attributes": [
|
|
3267
3499
|
{
|
|
3268
3500
|
"name": "value",
|
|
@@ -3291,7 +3523,7 @@
|
|
|
3291
3523
|
},
|
|
3292
3524
|
{
|
|
3293
3525
|
"name": "umb-property-editor-ui-block-grid-stylesheet-picker",
|
|
3294
|
-
"path": "./../../src/
|
|
3526
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/config/stylesheet-picker/property-editor-ui-block-grid-stylesheet-picker.element.ts",
|
|
3295
3527
|
"attributes": [
|
|
3296
3528
|
{
|
|
3297
3529
|
"name": "value",
|
|
@@ -3320,7 +3552,7 @@
|
|
|
3320
3552
|
},
|
|
3321
3553
|
{
|
|
3322
3554
|
"name": "umb-property-editor-ui-block-grid-inner-test",
|
|
3323
|
-
"path": "./../../src/
|
|
3555
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/property-editor-ui-block-grid-inner-test.element.ts",
|
|
3324
3556
|
"attributes": [
|
|
3325
3557
|
{
|
|
3326
3558
|
"name": "name",
|
|
@@ -3344,7 +3576,7 @@
|
|
|
3344
3576
|
},
|
|
3345
3577
|
{
|
|
3346
3578
|
"name": "umb-property-editor-ui-block-grid",
|
|
3347
|
-
"path": "./../../src/
|
|
3579
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/property-editor-ui-block-grid.element.ts",
|
|
3348
3580
|
"attributes": [
|
|
3349
3581
|
{
|
|
3350
3582
|
"name": "value",
|
|
@@ -3360,9 +3592,7 @@
|
|
|
3360
3592
|
"default": "\"\""
|
|
3361
3593
|
},
|
|
3362
3594
|
{
|
|
3363
|
-
"name": "config"
|
|
3364
|
-
"type": "never[]",
|
|
3365
|
-
"default": "[]"
|
|
3595
|
+
"name": "config"
|
|
3366
3596
|
},
|
|
3367
3597
|
{
|
|
3368
3598
|
"name": "styles",
|
|
@@ -3373,7 +3603,7 @@
|
|
|
3373
3603
|
},
|
|
3374
3604
|
{
|
|
3375
3605
|
"name": "umb-property-editor-ui-block-list-block-configuration",
|
|
3376
|
-
"path": "./../../src/
|
|
3606
|
+
"path": "./../../src/packages/core/property-editors/uis/block-list/config/block-configuration/property-editor-ui-block-list-block-configuration.element.ts",
|
|
3377
3607
|
"attributes": [
|
|
3378
3608
|
{
|
|
3379
3609
|
"name": "value",
|
|
@@ -3402,7 +3632,7 @@
|
|
|
3402
3632
|
},
|
|
3403
3633
|
{
|
|
3404
3634
|
"name": "umb-property-editor-ui-block-list",
|
|
3405
|
-
"path": "./../../src/
|
|
3635
|
+
"path": "./../../src/packages/core/property-editors/uis/block-list/property-editor-ui-block-list.element.ts",
|
|
3406
3636
|
"attributes": [
|
|
3407
3637
|
{
|
|
3408
3638
|
"name": "value",
|
|
@@ -3418,9 +3648,7 @@
|
|
|
3418
3648
|
"default": "\"\""
|
|
3419
3649
|
},
|
|
3420
3650
|
{
|
|
3421
|
-
"name": "config"
|
|
3422
|
-
"type": "never[]",
|
|
3423
|
-
"default": "[]"
|
|
3651
|
+
"name": "config"
|
|
3424
3652
|
},
|
|
3425
3653
|
{
|
|
3426
3654
|
"name": "styles",
|
|
@@ -3431,7 +3659,7 @@
|
|
|
3431
3659
|
},
|
|
3432
3660
|
{
|
|
3433
3661
|
"name": "umb-property-editor-ui-checkbox-list",
|
|
3434
|
-
"path": "./../../src/
|
|
3662
|
+
"path": "./../../src/packages/core/property-editors/uis/checkbox-list/property-editor-ui-checkbox-list.element.ts",
|
|
3435
3663
|
"attributes": [
|
|
3436
3664
|
{
|
|
3437
3665
|
"name": "value",
|
|
@@ -3445,8 +3673,7 @@
|
|
|
3445
3673
|
"type": "string[]"
|
|
3446
3674
|
},
|
|
3447
3675
|
{
|
|
3448
|
-
"name": "config"
|
|
3449
|
-
"type": "array"
|
|
3676
|
+
"name": "config"
|
|
3450
3677
|
},
|
|
3451
3678
|
{
|
|
3452
3679
|
"name": "styles",
|
|
@@ -3462,7 +3689,7 @@
|
|
|
3462
3689
|
},
|
|
3463
3690
|
{
|
|
3464
3691
|
"name": "umb-property-editor-ui-collection-view-bulk-action-permissions",
|
|
3465
|
-
"path": "./../../src/
|
|
3692
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/bulk-action-permissions/property-editor-ui-collection-view-bulk-action-permissions.element.ts",
|
|
3466
3693
|
"attributes": [
|
|
3467
3694
|
{
|
|
3468
3695
|
"name": "value",
|
|
@@ -3491,7 +3718,7 @@
|
|
|
3491
3718
|
},
|
|
3492
3719
|
{
|
|
3493
3720
|
"name": "umb-property-editor-ui-collection-view-column-configuration",
|
|
3494
|
-
"path": "./../../src/
|
|
3721
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/column-configuration/property-editor-ui-collection-view-column-configuration.element.ts",
|
|
3495
3722
|
"attributes": [
|
|
3496
3723
|
{
|
|
3497
3724
|
"name": "value",
|
|
@@ -3520,7 +3747,7 @@
|
|
|
3520
3747
|
},
|
|
3521
3748
|
{
|
|
3522
3749
|
"name": "umb-property-editor-ui-collection-view-layout-configuration",
|
|
3523
|
-
"path": "./../../src/
|
|
3750
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/layout-configuration/property-editor-ui-collection-view-layout-configuration.element.ts",
|
|
3524
3751
|
"attributes": [
|
|
3525
3752
|
{
|
|
3526
3753
|
"name": "value",
|
|
@@ -3549,7 +3776,7 @@
|
|
|
3549
3776
|
},
|
|
3550
3777
|
{
|
|
3551
3778
|
"name": "umb-property-editor-ui-collection-view-order-by",
|
|
3552
|
-
"path": "./../../src/
|
|
3779
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/order-by/property-editor-ui-collection-view-order-by.element.ts",
|
|
3553
3780
|
"attributes": [
|
|
3554
3781
|
{
|
|
3555
3782
|
"name": "value",
|
|
@@ -3578,7 +3805,7 @@
|
|
|
3578
3805
|
},
|
|
3579
3806
|
{
|
|
3580
3807
|
"name": "umb-property-editor-ui-collection-view",
|
|
3581
|
-
"path": "./../../src/
|
|
3808
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/property-editor-ui-collection-view.element.ts",
|
|
3582
3809
|
"attributes": [
|
|
3583
3810
|
{
|
|
3584
3811
|
"name": "value",
|
|
@@ -3607,7 +3834,7 @@
|
|
|
3607
3834
|
},
|
|
3608
3835
|
{
|
|
3609
3836
|
"name": "umb-property-editor-ui-color-picker",
|
|
3610
|
-
"path": "./../../src/
|
|
3837
|
+
"path": "./../../src/packages/core/property-editors/uis/color-picker/property-editor-ui-color-picker.element.ts",
|
|
3611
3838
|
"attributes": [
|
|
3612
3839
|
{
|
|
3613
3840
|
"name": "value",
|
|
@@ -3623,8 +3850,7 @@
|
|
|
3623
3850
|
"default": "\"\""
|
|
3624
3851
|
},
|
|
3625
3852
|
{
|
|
3626
|
-
"name": "config"
|
|
3627
|
-
"type": "array"
|
|
3853
|
+
"name": "config"
|
|
3628
3854
|
},
|
|
3629
3855
|
{
|
|
3630
3856
|
"name": "styles",
|
|
@@ -3640,7 +3866,7 @@
|
|
|
3640
3866
|
},
|
|
3641
3867
|
{
|
|
3642
3868
|
"name": "umb-property-editor-ui-date-picker",
|
|
3643
|
-
"path": "./../../src/
|
|
3869
|
+
"path": "./../../src/packages/core/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts",
|
|
3644
3870
|
"attributes": [
|
|
3645
3871
|
{
|
|
3646
3872
|
"name": "value",
|
|
@@ -3654,8 +3880,7 @@
|
|
|
3654
3880
|
"type": "string | undefined"
|
|
3655
3881
|
},
|
|
3656
3882
|
{
|
|
3657
|
-
"name": "config"
|
|
3658
|
-
"type": "array"
|
|
3883
|
+
"name": "config"
|
|
3659
3884
|
},
|
|
3660
3885
|
{
|
|
3661
3886
|
"name": "styles",
|
|
@@ -3666,7 +3891,7 @@
|
|
|
3666
3891
|
},
|
|
3667
3892
|
{
|
|
3668
3893
|
"name": "umb-property-editor-ui-dropdown",
|
|
3669
|
-
"path": "./../../src/
|
|
3894
|
+
"path": "./../../src/packages/core/property-editors/uis/dropdown/property-editor-ui-dropdown.element.ts",
|
|
3670
3895
|
"attributes": [
|
|
3671
3896
|
{
|
|
3672
3897
|
"name": "value",
|
|
@@ -3682,9 +3907,7 @@
|
|
|
3682
3907
|
"default": "\"\""
|
|
3683
3908
|
},
|
|
3684
3909
|
{
|
|
3685
|
-
"name": "config"
|
|
3686
|
-
"type": "never[]",
|
|
3687
|
-
"default": "[]"
|
|
3910
|
+
"name": "config"
|
|
3688
3911
|
},
|
|
3689
3912
|
{
|
|
3690
3913
|
"name": "styles",
|
|
@@ -3695,7 +3918,7 @@
|
|
|
3695
3918
|
},
|
|
3696
3919
|
{
|
|
3697
3920
|
"name": "umb-property-editor-ui-eye-dropper",
|
|
3698
|
-
"path": "./../../src/
|
|
3921
|
+
"path": "./../../src/packages/core/property-editors/uis/eye-dropper/property-editor-ui-eye-dropper.element.ts",
|
|
3699
3922
|
"attributes": [
|
|
3700
3923
|
{
|
|
3701
3924
|
"name": "value",
|
|
@@ -3711,8 +3934,7 @@
|
|
|
3711
3934
|
"default": "\"\""
|
|
3712
3935
|
},
|
|
3713
3936
|
{
|
|
3714
|
-
"name": "config"
|
|
3715
|
-
"type": "array"
|
|
3937
|
+
"name": "config"
|
|
3716
3938
|
},
|
|
3717
3939
|
{
|
|
3718
3940
|
"name": "styles",
|
|
@@ -3728,7 +3950,7 @@
|
|
|
3728
3950
|
},
|
|
3729
3951
|
{
|
|
3730
3952
|
"name": "umb-property-editor-ui-icon-picker",
|
|
3731
|
-
"path": "./../../src/
|
|
3953
|
+
"path": "./../../src/packages/core/property-editors/uis/icon-picker/property-editor-ui-icon-picker.element.ts",
|
|
3732
3954
|
"attributes": [
|
|
3733
3955
|
{
|
|
3734
3956
|
"name": "value",
|
|
@@ -3744,9 +3966,7 @@
|
|
|
3744
3966
|
"default": "\"\""
|
|
3745
3967
|
},
|
|
3746
3968
|
{
|
|
3747
|
-
"name": "config"
|
|
3748
|
-
"type": "never[]",
|
|
3749
|
-
"default": "[]"
|
|
3969
|
+
"name": "config"
|
|
3750
3970
|
},
|
|
3751
3971
|
{
|
|
3752
3972
|
"name": "styles",
|
|
@@ -3757,7 +3977,7 @@
|
|
|
3757
3977
|
},
|
|
3758
3978
|
{
|
|
3759
3979
|
"name": "umb-property-editor-ui-image-cropper",
|
|
3760
|
-
"path": "./../../src/
|
|
3980
|
+
"path": "./../../src/packages/core/property-editors/uis/image-cropper/property-editor-ui-image-cropper.element.ts",
|
|
3761
3981
|
"attributes": [
|
|
3762
3982
|
{
|
|
3763
3983
|
"name": "value",
|
|
@@ -3773,9 +3993,7 @@
|
|
|
3773
3993
|
"default": "\"\""
|
|
3774
3994
|
},
|
|
3775
3995
|
{
|
|
3776
|
-
"name": "config"
|
|
3777
|
-
"type": "never[]",
|
|
3778
|
-
"default": "[]"
|
|
3996
|
+
"name": "config"
|
|
3779
3997
|
},
|
|
3780
3998
|
{
|
|
3781
3999
|
"name": "styles",
|
|
@@ -3786,7 +4004,7 @@
|
|
|
3786
4004
|
},
|
|
3787
4005
|
{
|
|
3788
4006
|
"name": "umb-property-editor-ui-image-crops-configuration",
|
|
3789
|
-
"path": "./../../src/
|
|
4007
|
+
"path": "./../../src/packages/core/property-editors/uis/image-crops-configuration/property-editor-ui-image-crops-configuration.element.ts",
|
|
3790
4008
|
"attributes": [
|
|
3791
4009
|
{
|
|
3792
4010
|
"name": "value",
|
|
@@ -3803,8 +4021,7 @@
|
|
|
3803
4021
|
},
|
|
3804
4022
|
{
|
|
3805
4023
|
"name": "config",
|
|
3806
|
-
"
|
|
3807
|
-
"default": "[]"
|
|
4024
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3808
4025
|
},
|
|
3809
4026
|
{
|
|
3810
4027
|
"name": "styles",
|
|
@@ -3815,7 +4032,7 @@
|
|
|
3815
4032
|
},
|
|
3816
4033
|
{
|
|
3817
4034
|
"name": "umb-property-editor-ui-label",
|
|
3818
|
-
"path": "./../../src/
|
|
4035
|
+
"path": "./../../src/packages/core/property-editors/uis/label/property-editor-ui-label.element.ts",
|
|
3819
4036
|
"attributes": [
|
|
3820
4037
|
{
|
|
3821
4038
|
"name": "value",
|
|
@@ -3842,9 +4059,7 @@
|
|
|
3842
4059
|
"default": "\"\""
|
|
3843
4060
|
},
|
|
3844
4061
|
{
|
|
3845
|
-
"name": "config"
|
|
3846
|
-
"type": "never[]",
|
|
3847
|
-
"default": "[]"
|
|
4062
|
+
"name": "config"
|
|
3848
4063
|
},
|
|
3849
4064
|
{
|
|
3850
4065
|
"name": "styles",
|
|
@@ -3855,7 +4070,7 @@
|
|
|
3855
4070
|
},
|
|
3856
4071
|
{
|
|
3857
4072
|
"name": "umb-property-editor-ui-markdown-editor",
|
|
3858
|
-
"path": "./../../src/
|
|
4073
|
+
"path": "./../../src/packages/core/property-editors/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts",
|
|
3859
4074
|
"attributes": [
|
|
3860
4075
|
{
|
|
3861
4076
|
"name": "value",
|
|
@@ -3872,8 +4087,7 @@
|
|
|
3872
4087
|
},
|
|
3873
4088
|
{
|
|
3874
4089
|
"name": "config",
|
|
3875
|
-
"
|
|
3876
|
-
"default": "[]"
|
|
4090
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3877
4091
|
},
|
|
3878
4092
|
{
|
|
3879
4093
|
"name": "styles",
|
|
@@ -3884,7 +4098,7 @@
|
|
|
3884
4098
|
},
|
|
3885
4099
|
{
|
|
3886
4100
|
"name": "umb-property-editor-ui-media-picker",
|
|
3887
|
-
"path": "./../../src/
|
|
4101
|
+
"path": "./../../src/packages/core/property-editors/uis/media-picker/property-editor-ui-media-picker.element.ts",
|
|
3888
4102
|
"attributes": [
|
|
3889
4103
|
{
|
|
3890
4104
|
"name": "value",
|
|
@@ -3898,8 +4112,7 @@
|
|
|
3898
4112
|
"type": "string[]"
|
|
3899
4113
|
},
|
|
3900
4114
|
{
|
|
3901
|
-
"name": "config"
|
|
3902
|
-
"type": "array"
|
|
4115
|
+
"name": "config"
|
|
3903
4116
|
}
|
|
3904
4117
|
],
|
|
3905
4118
|
"events": [
|
|
@@ -3910,7 +4123,7 @@
|
|
|
3910
4123
|
},
|
|
3911
4124
|
{
|
|
3912
4125
|
"name": "umb-property-editor-ui-member-group-picker",
|
|
3913
|
-
"path": "./../../src/
|
|
4126
|
+
"path": "./../../src/packages/core/property-editors/uis/member-group-picker/property-editor-ui-member-group-picker.element.ts",
|
|
3914
4127
|
"attributes": [
|
|
3915
4128
|
{
|
|
3916
4129
|
"name": "value",
|
|
@@ -3927,8 +4140,7 @@
|
|
|
3927
4140
|
},
|
|
3928
4141
|
{
|
|
3929
4142
|
"name": "config",
|
|
3930
|
-
"
|
|
3931
|
-
"default": "[]"
|
|
4143
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3932
4144
|
},
|
|
3933
4145
|
{
|
|
3934
4146
|
"name": "styles",
|
|
@@ -3939,7 +4151,7 @@
|
|
|
3939
4151
|
},
|
|
3940
4152
|
{
|
|
3941
4153
|
"name": "umb-property-editor-ui-member-picker",
|
|
3942
|
-
"path": "./../../src/
|
|
4154
|
+
"path": "./../../src/packages/core/property-editors/uis/member-picker/property-editor-ui-member-picker.element.ts",
|
|
3943
4155
|
"attributes": [
|
|
3944
4156
|
{
|
|
3945
4157
|
"name": "value",
|
|
@@ -3956,8 +4168,7 @@
|
|
|
3956
4168
|
},
|
|
3957
4169
|
{
|
|
3958
4170
|
"name": "config",
|
|
3959
|
-
"
|
|
3960
|
-
"default": "[]"
|
|
4171
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3961
4172
|
},
|
|
3962
4173
|
{
|
|
3963
4174
|
"name": "styles",
|
|
@@ -3968,7 +4179,7 @@
|
|
|
3968
4179
|
},
|
|
3969
4180
|
{
|
|
3970
4181
|
"name": "umb-property-editor-ui-multi-url-picker",
|
|
3971
|
-
"path": "./../../src/
|
|
4182
|
+
"path": "./../../src/packages/core/property-editors/uis/multi-url-picker/property-editor-ui-multi-url-picker.element.ts",
|
|
3972
4183
|
"attributes": [
|
|
3973
4184
|
{
|
|
3974
4185
|
"name": "value",
|
|
@@ -3984,8 +4195,7 @@
|
|
|
3984
4195
|
"default": "[]"
|
|
3985
4196
|
},
|
|
3986
4197
|
{
|
|
3987
|
-
"name": "config"
|
|
3988
|
-
"type": "array"
|
|
4198
|
+
"name": "config"
|
|
3989
4199
|
},
|
|
3990
4200
|
{
|
|
3991
4201
|
"name": "styles",
|
|
@@ -4001,7 +4211,7 @@
|
|
|
4001
4211
|
},
|
|
4002
4212
|
{
|
|
4003
4213
|
"name": "umb-input-multiple-text-string-item",
|
|
4004
|
-
"path": "./../../src/
|
|
4214
|
+
"path": "./../../src/packages/core/property-editors/uis/multiple-text-string/input-multiple-text-string-item/input-multiple-text-string-item.element.ts",
|
|
4005
4215
|
"attributes": [
|
|
4006
4216
|
{
|
|
4007
4217
|
"name": "disabled",
|
|
@@ -4080,7 +4290,7 @@
|
|
|
4080
4290
|
},
|
|
4081
4291
|
{
|
|
4082
4292
|
"name": "umb-input-multiple-text-string",
|
|
4083
|
-
"path": "./../../src/
|
|
4293
|
+
"path": "./../../src/packages/core/property-editors/uis/multiple-text-string/input-multiple-text-string/input-multiple-text-string.element.ts",
|
|
4084
4294
|
"attributes": [
|
|
4085
4295
|
{
|
|
4086
4296
|
"name": "min",
|
|
@@ -4220,7 +4430,7 @@
|
|
|
4220
4430
|
},
|
|
4221
4431
|
{
|
|
4222
4432
|
"name": "umb-property-editor-ui-multiple-text-string",
|
|
4223
|
-
"path": "./../../src/
|
|
4433
|
+
"path": "./../../src/packages/core/property-editors/uis/multiple-text-string/property-editor-ui-multiple-text-string.element.ts",
|
|
4224
4434
|
"attributes": [
|
|
4225
4435
|
{
|
|
4226
4436
|
"name": "value",
|
|
@@ -4254,8 +4464,7 @@
|
|
|
4254
4464
|
"default": "[]"
|
|
4255
4465
|
},
|
|
4256
4466
|
{
|
|
4257
|
-
"name": "config"
|
|
4258
|
-
"type": "MultipleTextStringConfigData"
|
|
4467
|
+
"name": "config"
|
|
4259
4468
|
},
|
|
4260
4469
|
{
|
|
4261
4470
|
"name": "disabled",
|
|
@@ -4282,7 +4491,7 @@
|
|
|
4282
4491
|
},
|
|
4283
4492
|
{
|
|
4284
4493
|
"name": "umb-property-editor-ui-number-range",
|
|
4285
|
-
"path": "./../../src/
|
|
4494
|
+
"path": "./../../src/packages/core/property-editors/uis/number-range/property-editor-ui-number-range.element.ts",
|
|
4286
4495
|
"properties": [
|
|
4287
4496
|
{
|
|
4288
4497
|
"name": "value",
|
|
@@ -4290,8 +4499,7 @@
|
|
|
4290
4499
|
},
|
|
4291
4500
|
{
|
|
4292
4501
|
"name": "config",
|
|
4293
|
-
"
|
|
4294
|
-
"default": "[]"
|
|
4502
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4295
4503
|
},
|
|
4296
4504
|
{
|
|
4297
4505
|
"name": "styles",
|
|
@@ -4307,7 +4515,7 @@
|
|
|
4307
4515
|
},
|
|
4308
4516
|
{
|
|
4309
4517
|
"name": "umb-property-editor-ui-number",
|
|
4310
|
-
"path": "./../../src/
|
|
4518
|
+
"path": "./../../src/packages/core/property-editors/uis/number/property-editor-ui-number.element.ts",
|
|
4311
4519
|
"attributes": [
|
|
4312
4520
|
{
|
|
4313
4521
|
"name": "value",
|
|
@@ -4323,8 +4531,7 @@
|
|
|
4323
4531
|
"default": "\"\""
|
|
4324
4532
|
},
|
|
4325
4533
|
{
|
|
4326
|
-
"name": "config"
|
|
4327
|
-
"type": "array"
|
|
4534
|
+
"name": "config"
|
|
4328
4535
|
},
|
|
4329
4536
|
{
|
|
4330
4537
|
"name": "styles",
|
|
@@ -4340,7 +4547,7 @@
|
|
|
4340
4547
|
},
|
|
4341
4548
|
{
|
|
4342
4549
|
"name": "umb-property-editor-ui-order-direction",
|
|
4343
|
-
"path": "./../../src/
|
|
4550
|
+
"path": "./../../src/packages/core/property-editors/uis/order-direction/property-editor-ui-order-direction.element.ts",
|
|
4344
4551
|
"attributes": [
|
|
4345
4552
|
{
|
|
4346
4553
|
"name": "value",
|
|
@@ -4357,8 +4564,7 @@
|
|
|
4357
4564
|
},
|
|
4358
4565
|
{
|
|
4359
4566
|
"name": "config",
|
|
4360
|
-
"
|
|
4361
|
-
"default": "[]"
|
|
4567
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4362
4568
|
},
|
|
4363
4569
|
{
|
|
4364
4570
|
"name": "styles",
|
|
@@ -4369,7 +4575,7 @@
|
|
|
4369
4575
|
},
|
|
4370
4576
|
{
|
|
4371
4577
|
"name": "umb-property-editor-ui-overlay-size",
|
|
4372
|
-
"path": "./../../src/
|
|
4578
|
+
"path": "./../../src/packages/core/property-editors/uis/overlay-size/property-editor-ui-overlay-size.element.ts",
|
|
4373
4579
|
"attributes": [
|
|
4374
4580
|
{
|
|
4375
4581
|
"name": "value",
|
|
@@ -4386,8 +4592,7 @@
|
|
|
4386
4592
|
},
|
|
4387
4593
|
{
|
|
4388
4594
|
"name": "config",
|
|
4389
|
-
"
|
|
4390
|
-
"default": "[]"
|
|
4595
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4391
4596
|
},
|
|
4392
4597
|
{
|
|
4393
4598
|
"name": "styles",
|
|
@@ -4398,7 +4603,7 @@
|
|
|
4398
4603
|
},
|
|
4399
4604
|
{
|
|
4400
4605
|
"name": "umb-property-editor-ui-radio-button-list",
|
|
4401
|
-
"path": "./../../src/
|
|
4606
|
+
"path": "./../../src/packages/core/property-editors/uis/radio-button-list/property-editor-ui-radio-button-list.element.ts",
|
|
4402
4607
|
"attributes": [
|
|
4403
4608
|
{
|
|
4404
4609
|
"name": "value",
|
|
@@ -4412,8 +4617,7 @@
|
|
|
4412
4617
|
"type": "string"
|
|
4413
4618
|
},
|
|
4414
4619
|
{
|
|
4415
|
-
"name": "config"
|
|
4416
|
-
"type": "array"
|
|
4620
|
+
"name": "config"
|
|
4417
4621
|
},
|
|
4418
4622
|
{
|
|
4419
4623
|
"name": "styles",
|
|
@@ -4429,7 +4633,7 @@
|
|
|
4429
4633
|
},
|
|
4430
4634
|
{
|
|
4431
4635
|
"name": "umb-property-editor-ui-slider",
|
|
4432
|
-
"path": "./../../src/
|
|
4636
|
+
"path": "./../../src/packages/core/property-editors/uis/slider/property-editor-ui-slider.element.ts",
|
|
4433
4637
|
"attributes": [
|
|
4434
4638
|
{
|
|
4435
4639
|
"name": "value",
|
|
@@ -4445,8 +4649,7 @@
|
|
|
4445
4649
|
"default": "{}"
|
|
4446
4650
|
},
|
|
4447
4651
|
{
|
|
4448
|
-
"name": "config"
|
|
4449
|
-
"type": "array"
|
|
4652
|
+
"name": "config"
|
|
4450
4653
|
},
|
|
4451
4654
|
{
|
|
4452
4655
|
"name": "styles",
|
|
@@ -4462,7 +4665,7 @@
|
|
|
4462
4665
|
},
|
|
4463
4666
|
{
|
|
4464
4667
|
"name": "umb-property-editor-ui-text-box",
|
|
4465
|
-
"path": "./../../src/
|
|
4668
|
+
"path": "./../../src/packages/core/property-editors/uis/text-box/property-editor-ui-text-box.element.ts",
|
|
4466
4669
|
"attributes": [
|
|
4467
4670
|
{
|
|
4468
4671
|
"name": "value",
|
|
@@ -4478,8 +4681,7 @@
|
|
|
4478
4681
|
"default": "\"\""
|
|
4479
4682
|
},
|
|
4480
4683
|
{
|
|
4481
|
-
"name": "config"
|
|
4482
|
-
"type": "array"
|
|
4684
|
+
"name": "config"
|
|
4483
4685
|
},
|
|
4484
4686
|
{
|
|
4485
4687
|
"name": "styles",
|
|
@@ -4495,7 +4697,7 @@
|
|
|
4495
4697
|
},
|
|
4496
4698
|
{
|
|
4497
4699
|
"name": "umb-property-editor-ui-textarea",
|
|
4498
|
-
"path": "./../../src/
|
|
4700
|
+
"path": "./../../src/packages/core/property-editors/uis/textarea/property-editor-ui-textarea.element.ts",
|
|
4499
4701
|
"attributes": [
|
|
4500
4702
|
{
|
|
4501
4703
|
"name": "value",
|
|
@@ -4511,8 +4713,7 @@
|
|
|
4511
4713
|
"default": "\"\""
|
|
4512
4714
|
},
|
|
4513
4715
|
{
|
|
4514
|
-
"name": "config"
|
|
4515
|
-
"type": "array"
|
|
4716
|
+
"name": "config"
|
|
4516
4717
|
},
|
|
4517
4718
|
{
|
|
4518
4719
|
"name": "styles",
|
|
@@ -4528,7 +4729,7 @@
|
|
|
4528
4729
|
},
|
|
4529
4730
|
{
|
|
4530
4731
|
"name": "umb-property-editor-ui-tiny-mce-configuration",
|
|
4531
|
-
"path": "./../../src/
|
|
4732
|
+
"path": "./../../src/packages/core/property-editors/uis/tiny-mce/config/configuration/property-editor-ui-tiny-mce-configuration.element.ts",
|
|
4532
4733
|
"attributes": [
|
|
4533
4734
|
{
|
|
4534
4735
|
"name": "value",
|
|
@@ -4557,7 +4758,7 @@
|
|
|
4557
4758
|
},
|
|
4558
4759
|
{
|
|
4559
4760
|
"name": "umb-property-editor-ui-tiny-mce",
|
|
4560
|
-
"path": "./../../src/
|
|
4761
|
+
"path": "./../../src/packages/core/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.element.ts",
|
|
4561
4762
|
"attributes": [
|
|
4562
4763
|
{
|
|
4563
4764
|
"name": "value",
|
|
@@ -4574,8 +4775,7 @@
|
|
|
4574
4775
|
},
|
|
4575
4776
|
{
|
|
4576
4777
|
"name": "config",
|
|
4577
|
-
"
|
|
4578
|
-
"default": "[]"
|
|
4778
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4579
4779
|
},
|
|
4580
4780
|
{
|
|
4581
4781
|
"name": "styles",
|
|
@@ -4586,7 +4786,7 @@
|
|
|
4586
4786
|
},
|
|
4587
4787
|
{
|
|
4588
4788
|
"name": "umb-property-editor-ui-toggle",
|
|
4589
|
-
"path": "./../../src/
|
|
4789
|
+
"path": "./../../src/packages/core/property-editors/uis/toggle/property-editor-ui-toggle.element.ts",
|
|
4590
4790
|
"attributes": [
|
|
4591
4791
|
{
|
|
4592
4792
|
"name": "value",
|
|
@@ -4602,8 +4802,7 @@
|
|
|
4602
4802
|
"default": "false"
|
|
4603
4803
|
},
|
|
4604
4804
|
{
|
|
4605
|
-
"name": "config"
|
|
4606
|
-
"type": "array"
|
|
4805
|
+
"name": "config"
|
|
4607
4806
|
},
|
|
4608
4807
|
{
|
|
4609
4808
|
"name": "styles",
|
|
@@ -4619,7 +4818,7 @@
|
|
|
4619
4818
|
},
|
|
4620
4819
|
{
|
|
4621
4820
|
"name": "umb-property-editor-ui-tree-picker-start-node",
|
|
4622
|
-
"path": "./../../src/
|
|
4821
|
+
"path": "./../../src/packages/core/property-editors/uis/tree-picker/config/start-node/property-editor-ui-tree-picker-start-node.element.ts",
|
|
4623
4822
|
"attributes": [
|
|
4624
4823
|
{
|
|
4625
4824
|
"name": "value",
|
|
@@ -4648,7 +4847,7 @@
|
|
|
4648
4847
|
},
|
|
4649
4848
|
{
|
|
4650
4849
|
"name": "umb-property-editor-ui-tree-picker",
|
|
4651
|
-
"path": "./../../src/
|
|
4850
|
+
"path": "./../../src/packages/core/property-editors/uis/tree-picker/property-editor-ui-tree-picker.element.ts",
|
|
4652
4851
|
"attributes": [
|
|
4653
4852
|
{
|
|
4654
4853
|
"name": "value",
|
|
@@ -4665,8 +4864,7 @@
|
|
|
4665
4864
|
},
|
|
4666
4865
|
{
|
|
4667
4866
|
"name": "config",
|
|
4668
|
-
"
|
|
4669
|
-
"default": "[]"
|
|
4867
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4670
4868
|
},
|
|
4671
4869
|
{
|
|
4672
4870
|
"name": "styles",
|
|
@@ -4677,7 +4875,7 @@
|
|
|
4677
4875
|
},
|
|
4678
4876
|
{
|
|
4679
4877
|
"name": "umb-property-editor-ui-upload-field",
|
|
4680
|
-
"path": "./../../src/
|
|
4878
|
+
"path": "./../../src/packages/core/property-editors/uis/upload-field/property-editor-ui-upload-field.element.ts",
|
|
4681
4879
|
"attributes": [
|
|
4682
4880
|
{
|
|
4683
4881
|
"name": "value",
|
|
@@ -4693,8 +4891,7 @@
|
|
|
4693
4891
|
"default": "\"\""
|
|
4694
4892
|
},
|
|
4695
4893
|
{
|
|
4696
|
-
"name": "config"
|
|
4697
|
-
"type": "array"
|
|
4894
|
+
"name": "config"
|
|
4698
4895
|
},
|
|
4699
4896
|
{
|
|
4700
4897
|
"name": "styles",
|
|
@@ -4710,7 +4907,7 @@
|
|
|
4710
4907
|
},
|
|
4711
4908
|
{
|
|
4712
4909
|
"name": "umb-property-editor-ui-user-picker",
|
|
4713
|
-
"path": "./../../src/
|
|
4910
|
+
"path": "./../../src/packages/core/property-editors/uis/user-picker/property-editor-ui-user-picker.element.ts",
|
|
4714
4911
|
"attributes": [
|
|
4715
4912
|
{
|
|
4716
4913
|
"name": "value",
|
|
@@ -4727,8 +4924,7 @@
|
|
|
4727
4924
|
},
|
|
4728
4925
|
{
|
|
4729
4926
|
"name": "config",
|
|
4730
|
-
"
|
|
4731
|
-
"default": "[]"
|
|
4927
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4732
4928
|
},
|
|
4733
4929
|
{
|
|
4734
4930
|
"name": "styles",
|
|
@@ -4739,7 +4935,7 @@
|
|
|
4739
4935
|
},
|
|
4740
4936
|
{
|
|
4741
4937
|
"name": "umb-property-editor-ui-value-type",
|
|
4742
|
-
"path": "./../../src/
|
|
4938
|
+
"path": "./../../src/packages/core/property-editors/uis/value-type/property-editor-ui-value-type.element.ts",
|
|
4743
4939
|
"attributes": [
|
|
4744
4940
|
{
|
|
4745
4941
|
"name": "value",
|
|
@@ -4755,9 +4951,7 @@
|
|
|
4755
4951
|
"default": "\"\""
|
|
4756
4952
|
},
|
|
4757
4953
|
{
|
|
4758
|
-
"name": "config"
|
|
4759
|
-
"type": "never[]",
|
|
4760
|
-
"default": "[]"
|
|
4954
|
+
"name": "config"
|
|
4761
4955
|
},
|
|
4762
4956
|
{
|
|
4763
4957
|
"name": "styles",
|
|
@@ -4773,7 +4967,7 @@
|
|
|
4773
4967
|
},
|
|
4774
4968
|
{
|
|
4775
4969
|
"name": "umb-dashboard-redirect-management",
|
|
4776
|
-
"path": "./../../src/
|
|
4970
|
+
"path": "./../../src/packages/documents/dashboards/redirect-management/dashboard-redirect-management.element.ts",
|
|
4777
4971
|
"attributes": [
|
|
4778
4972
|
{
|
|
4779
4973
|
"name": "items-per-page",
|
|
@@ -4797,11 +4991,11 @@
|
|
|
4797
4991
|
},
|
|
4798
4992
|
{
|
|
4799
4993
|
"name": "umb-document-blueprint-root-workspace",
|
|
4800
|
-
"path": "./../../src/
|
|
4994
|
+
"path": "./../../src/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts"
|
|
4801
4995
|
},
|
|
4802
4996
|
{
|
|
4803
4997
|
"name": "umb-input-document-type-picker",
|
|
4804
|
-
"path": "./../../src/
|
|
4998
|
+
"path": "./../../src/packages/documents/document-types/components/input-document-type-picker/input-document-type-picker.element.ts",
|
|
4805
4999
|
"attributes": [
|
|
4806
5000
|
{
|
|
4807
5001
|
"name": "selectedIds",
|
|
@@ -4872,9 +5066,23 @@
|
|
|
4872
5066
|
]
|
|
4873
5067
|
},
|
|
4874
5068
|
{
|
|
4875
|
-
"name": "umb-
|
|
4876
|
-
"path": "./../../src/
|
|
5069
|
+
"name": "umb-document-type-create-options-modal",
|
|
5070
|
+
"path": "./../../src/packages/documents/document-types/entity-actions/create/modal/document-type-create-options-modal.element.ts",
|
|
5071
|
+
"attributes": [
|
|
5072
|
+
{
|
|
5073
|
+
"name": "data",
|
|
5074
|
+
"type": "UmbDocumentTypeCreateOptionsModalData | undefined"
|
|
5075
|
+
}
|
|
5076
|
+
],
|
|
4877
5077
|
"properties": [
|
|
5078
|
+
{
|
|
5079
|
+
"name": "modalHandler"
|
|
5080
|
+
},
|
|
5081
|
+
{
|
|
5082
|
+
"name": "data",
|
|
5083
|
+
"attribute": "data",
|
|
5084
|
+
"type": "UmbDocumentTypeCreateOptionsModalData | undefined"
|
|
5085
|
+
},
|
|
4878
5086
|
{
|
|
4879
5087
|
"name": "styles",
|
|
4880
5088
|
"type": "CSSResult[]",
|
|
@@ -4883,41 +5091,41 @@
|
|
|
4883
5091
|
]
|
|
4884
5092
|
},
|
|
4885
5093
|
{
|
|
4886
|
-
"name": "umb-document-
|
|
4887
|
-
"path": "./../../src/
|
|
5094
|
+
"name": "umb-allowed-document-types-modal",
|
|
5095
|
+
"path": "./../../src/packages/documents/document-types/modals/allowed-document-types/allowed-document-types-modal.element.ts",
|
|
4888
5096
|
"properties": [
|
|
4889
5097
|
{
|
|
4890
5098
|
"name": "styles",
|
|
4891
5099
|
"type": "CSSResult[]",
|
|
4892
|
-
"default": "[\"UUITextStyles\"
|
|
5100
|
+
"default": "[\"UUITextStyles\"]"
|
|
4893
5101
|
}
|
|
4894
5102
|
]
|
|
4895
5103
|
},
|
|
4896
5104
|
{
|
|
4897
|
-
"name": "umb-document-type-workspace",
|
|
4898
|
-
"path": "./../../src/
|
|
5105
|
+
"name": "umb-document-type-workspace-editor",
|
|
5106
|
+
"path": "./../../src/packages/documents/document-types/workspace/document-type-workspace-editor.element.ts",
|
|
4899
5107
|
"properties": [
|
|
4900
5108
|
{
|
|
4901
5109
|
"name": "styles",
|
|
4902
5110
|
"type": "CSSResult[]",
|
|
4903
|
-
"default": "[\"UUITextStyles\"]"
|
|
5111
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4904
5112
|
}
|
|
4905
5113
|
]
|
|
4906
5114
|
},
|
|
4907
5115
|
{
|
|
4908
|
-
"name": "umb-document-type-workspace
|
|
4909
|
-
"path": "./../../src/
|
|
5116
|
+
"name": "umb-document-type-workspace",
|
|
5117
|
+
"path": "./../../src/packages/documents/document-types/workspace/document-type-workspace.element.ts",
|
|
4910
5118
|
"properties": [
|
|
4911
5119
|
{
|
|
4912
5120
|
"name": "styles",
|
|
4913
5121
|
"type": "CSSResult[]",
|
|
4914
|
-
"default": "[\"UUITextStyles\"
|
|
5122
|
+
"default": "[\"UUITextStyles\"]"
|
|
4915
5123
|
}
|
|
4916
5124
|
]
|
|
4917
5125
|
},
|
|
4918
5126
|
{
|
|
4919
5127
|
"name": "umb-document-type-workspace-view-edit-properties",
|
|
4920
|
-
"path": "./../../src/
|
|
5128
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-properties.element.ts",
|
|
4921
5129
|
"attributes": [
|
|
4922
5130
|
{
|
|
4923
5131
|
"name": "container-id",
|
|
@@ -4955,7 +5163,7 @@
|
|
|
4955
5163
|
},
|
|
4956
5164
|
{
|
|
4957
5165
|
"name": "document-type-workspace-view-edit-property",
|
|
4958
|
-
"path": "./../../src/
|
|
5166
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.ts",
|
|
4959
5167
|
"attributes": [
|
|
4960
5168
|
{
|
|
4961
5169
|
"name": "property",
|
|
@@ -5005,7 +5213,7 @@
|
|
|
5005
5213
|
},
|
|
5006
5214
|
{
|
|
5007
5215
|
"name": "umb-document-type-workspace-view-edit-tab",
|
|
5008
|
-
"path": "./../../src/
|
|
5216
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-tab.element.ts",
|
|
5009
5217
|
"attributes": [
|
|
5010
5218
|
{
|
|
5011
5219
|
"name": "ownerTabId",
|
|
@@ -5045,7 +5253,7 @@
|
|
|
5045
5253
|
},
|
|
5046
5254
|
{
|
|
5047
5255
|
"name": "umb-document-type-workspace-view-edit",
|
|
5048
|
-
"path": "./../../src/
|
|
5256
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.ts",
|
|
5049
5257
|
"properties": [
|
|
5050
5258
|
{
|
|
5051
5259
|
"name": "styles",
|
|
@@ -5056,7 +5264,7 @@
|
|
|
5056
5264
|
},
|
|
5057
5265
|
{
|
|
5058
5266
|
"name": "umb-document-type-workspace-view-details",
|
|
5059
|
-
"path": "./../../src/
|
|
5267
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/details/document-type-workspace-view-details.element.ts",
|
|
5060
5268
|
"properties": [
|
|
5061
5269
|
{
|
|
5062
5270
|
"name": "styles",
|
|
@@ -5067,7 +5275,7 @@
|
|
|
5067
5275
|
},
|
|
5068
5276
|
{
|
|
5069
5277
|
"name": "umb-document-type-workspace-view-structure",
|
|
5070
|
-
"path": "./../../src/
|
|
5278
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.ts",
|
|
5071
5279
|
"properties": [
|
|
5072
5280
|
{
|
|
5073
5281
|
"name": "styles",
|
|
@@ -5078,7 +5286,7 @@
|
|
|
5078
5286
|
},
|
|
5079
5287
|
{
|
|
5080
5288
|
"name": "umb-document-type-workspace-view-templates",
|
|
5081
|
-
"path": "./../../src/
|
|
5289
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts",
|
|
5082
5290
|
"properties": [
|
|
5083
5291
|
{
|
|
5084
5292
|
"name": "styles",
|
|
@@ -5089,7 +5297,7 @@
|
|
|
5089
5297
|
},
|
|
5090
5298
|
{
|
|
5091
5299
|
"name": "umb-document-table-actions-column-layout",
|
|
5092
|
-
"path": "./../../src/
|
|
5300
|
+
"path": "./../../src/packages/documents/documents/collection/views/table/column-layouts/document-table-actions-column-layout.element.ts",
|
|
5093
5301
|
"properties": [
|
|
5094
5302
|
{
|
|
5095
5303
|
"name": "column"
|
|
@@ -5109,7 +5317,7 @@
|
|
|
5109
5317
|
},
|
|
5110
5318
|
{
|
|
5111
5319
|
"name": "umb-document-table-collection-view",
|
|
5112
|
-
"path": "./../../src/
|
|
5320
|
+
"path": "./../../src/packages/documents/documents/collection/views/table/document-table-collection-view.element.ts",
|
|
5113
5321
|
"properties": [
|
|
5114
5322
|
{
|
|
5115
5323
|
"name": "styles",
|
|
@@ -5120,7 +5328,7 @@
|
|
|
5120
5328
|
},
|
|
5121
5329
|
{
|
|
5122
5330
|
"name": "umb-collection-view-document-table",
|
|
5123
|
-
"path": "./../../src/
|
|
5331
|
+
"path": "./../../src/packages/documents/documents/collection/views/table/document-table-collection-view.element.ts",
|
|
5124
5332
|
"properties": [
|
|
5125
5333
|
{
|
|
5126
5334
|
"name": "styles",
|
|
@@ -5131,7 +5339,7 @@
|
|
|
5131
5339
|
},
|
|
5132
5340
|
{
|
|
5133
5341
|
"name": "umb-input-document-picker",
|
|
5134
|
-
"path": "./../../src/
|
|
5342
|
+
"path": "./../../src/packages/documents/documents/components/input-document-picker/input-document-picker.element.ts",
|
|
5135
5343
|
"attributes": [
|
|
5136
5344
|
{
|
|
5137
5345
|
"name": "min",
|
|
@@ -5250,11 +5458,11 @@
|
|
|
5250
5458
|
},
|
|
5251
5459
|
{
|
|
5252
5460
|
"name": "umb-document-menu-item",
|
|
5253
|
-
"path": "./../../src/
|
|
5461
|
+
"path": "./../../src/packages/documents/documents/menu-item/document-menu-item.element.ts"
|
|
5254
5462
|
},
|
|
5255
5463
|
{
|
|
5256
5464
|
"name": "umb-property-editor-ui-document-picker",
|
|
5257
|
-
"path": "./../../src/
|
|
5465
|
+
"path": "./../../src/packages/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.ts",
|
|
5258
5466
|
"attributes": [
|
|
5259
5467
|
{
|
|
5260
5468
|
"name": "value",
|
|
@@ -5268,8 +5476,7 @@
|
|
|
5268
5476
|
"type": "string[]"
|
|
5269
5477
|
},
|
|
5270
5478
|
{
|
|
5271
|
-
"name": "config"
|
|
5272
|
-
"type": "array"
|
|
5479
|
+
"name": "config"
|
|
5273
5480
|
}
|
|
5274
5481
|
],
|
|
5275
5482
|
"events": [
|
|
@@ -5280,7 +5487,7 @@
|
|
|
5280
5487
|
},
|
|
5281
5488
|
{
|
|
5282
5489
|
"name": "umb-document-tree-item",
|
|
5283
|
-
"path": "./../../src/
|
|
5490
|
+
"path": "./../../src/packages/documents/documents/tree/tree-item/document-tree-item.element.ts",
|
|
5284
5491
|
"properties": [
|
|
5285
5492
|
{
|
|
5286
5493
|
"name": "item"
|
|
@@ -5294,7 +5501,7 @@
|
|
|
5294
5501
|
},
|
|
5295
5502
|
{
|
|
5296
5503
|
"name": "umb-document-workspace-editor",
|
|
5297
|
-
"path": "./../../src/
|
|
5504
|
+
"path": "./../../src/packages/documents/documents/workspace/document-workspace-editor.element.ts",
|
|
5298
5505
|
"properties": [
|
|
5299
5506
|
{
|
|
5300
5507
|
"name": "styles",
|
|
@@ -5305,7 +5512,7 @@
|
|
|
5305
5512
|
},
|
|
5306
5513
|
{
|
|
5307
5514
|
"name": "umb-document-workspace-split-view",
|
|
5308
|
-
"path": "./../../src/
|
|
5515
|
+
"path": "./../../src/packages/documents/documents/workspace/document-workspace-split-view.element.ts",
|
|
5309
5516
|
"properties": [
|
|
5310
5517
|
{
|
|
5311
5518
|
"name": "styles",
|
|
@@ -5316,7 +5523,7 @@
|
|
|
5316
5523
|
},
|
|
5317
5524
|
{
|
|
5318
5525
|
"name": "umb-document-workspace",
|
|
5319
|
-
"path": "./../../src/
|
|
5526
|
+
"path": "./../../src/packages/documents/documents/workspace/document-workspace.element.ts",
|
|
5320
5527
|
"properties": [
|
|
5321
5528
|
{
|
|
5322
5529
|
"name": "styles",
|
|
@@ -5327,7 +5534,7 @@
|
|
|
5327
5534
|
},
|
|
5328
5535
|
{
|
|
5329
5536
|
"name": "umb-document-workspace-view-edit-properties",
|
|
5330
|
-
"path": "./../../src/
|
|
5537
|
+
"path": "./../../src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-properties.element.ts",
|
|
5331
5538
|
"attributes": [
|
|
5332
5539
|
{
|
|
5333
5540
|
"name": "container-name",
|
|
@@ -5356,7 +5563,7 @@
|
|
|
5356
5563
|
},
|
|
5357
5564
|
{
|
|
5358
5565
|
"name": "umb-document-workspace-view-edit-tab",
|
|
5359
|
-
"path": "./../../src/
|
|
5566
|
+
"path": "./../../src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-tab.element.ts",
|
|
5360
5567
|
"attributes": [
|
|
5361
5568
|
{
|
|
5362
5569
|
"name": "tabName",
|
|
@@ -5387,7 +5594,7 @@
|
|
|
5387
5594
|
},
|
|
5388
5595
|
{
|
|
5389
5596
|
"name": "umb-document-workspace-view-edit",
|
|
5390
|
-
"path": "./../../src/
|
|
5597
|
+
"path": "./../../src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit.element.ts",
|
|
5391
5598
|
"properties": [
|
|
5392
5599
|
{
|
|
5393
5600
|
"name": "styles",
|
|
@@ -5398,7 +5605,7 @@
|
|
|
5398
5605
|
},
|
|
5399
5606
|
{
|
|
5400
5607
|
"name": "umb-document-info-workspace-view",
|
|
5401
|
-
"path": "./../../src/
|
|
5608
|
+
"path": "./../../src/packages/documents/documents/workspace/views/info/document-info-workspace-view.element.ts",
|
|
5402
5609
|
"properties": [
|
|
5403
5610
|
{
|
|
5404
5611
|
"name": "styles",
|
|
@@ -5409,7 +5616,7 @@
|
|
|
5409
5616
|
},
|
|
5410
5617
|
{
|
|
5411
5618
|
"name": "umb-media-type-workspace-edit",
|
|
5412
|
-
"path": "./../../src/
|
|
5619
|
+
"path": "./../../src/packages/media/media-types/workspace/media-type-workspace-edit.element.ts",
|
|
5413
5620
|
"properties": [
|
|
5414
5621
|
{
|
|
5415
5622
|
"name": "styles",
|
|
@@ -5420,7 +5627,7 @@
|
|
|
5420
5627
|
},
|
|
5421
5628
|
{
|
|
5422
5629
|
"name": "umb-media-type-workspace",
|
|
5423
|
-
"path": "./../../src/
|
|
5630
|
+
"path": "./../../src/packages/media/media-types/workspace/media-type-workspace.element.ts",
|
|
5424
5631
|
"properties": [
|
|
5425
5632
|
{
|
|
5426
5633
|
"name": "styles",
|
|
@@ -5431,7 +5638,7 @@
|
|
|
5431
5638
|
},
|
|
5432
5639
|
{
|
|
5433
5640
|
"name": "umb-media-type-workspace-",
|
|
5434
|
-
"path": "./../../src/
|
|
5641
|
+
"path": "./../../src/packages/media/media-types/workspace/media-type-workspace.element.ts",
|
|
5435
5642
|
"properties": [
|
|
5436
5643
|
{
|
|
5437
5644
|
"name": "styles",
|
|
@@ -5442,7 +5649,7 @@
|
|
|
5442
5649
|
},
|
|
5443
5650
|
{
|
|
5444
5651
|
"name": "umb-collection-view-media-test",
|
|
5445
|
-
"path": "./../../src/
|
|
5652
|
+
"path": "./../../src/packages/media/media/collection-view/collection-view-media-test.element.ts",
|
|
5446
5653
|
"properties": [
|
|
5447
5654
|
{
|
|
5448
5655
|
"name": "styles",
|
|
@@ -5453,7 +5660,7 @@
|
|
|
5453
5660
|
},
|
|
5454
5661
|
{
|
|
5455
5662
|
"name": "umb-media-grid-collection-view",
|
|
5456
|
-
"path": "./../../src/
|
|
5663
|
+
"path": "./../../src/packages/media/media/collection-view/media-grid-collection-view.element.ts",
|
|
5457
5664
|
"properties": [
|
|
5458
5665
|
{
|
|
5459
5666
|
"name": "styles",
|
|
@@ -5464,7 +5671,7 @@
|
|
|
5464
5671
|
},
|
|
5465
5672
|
{
|
|
5466
5673
|
"name": "umb-media-table-collection-view",
|
|
5467
|
-
"path": "./../../src/
|
|
5674
|
+
"path": "./../../src/packages/media/media/collection-view/media-table-collection-view.element.ts",
|
|
5468
5675
|
"properties": [
|
|
5469
5676
|
{
|
|
5470
5677
|
"name": "styles",
|
|
@@ -5475,7 +5682,7 @@
|
|
|
5475
5682
|
},
|
|
5476
5683
|
{
|
|
5477
5684
|
"name": "umb-input-media-picker",
|
|
5478
|
-
"path": "./../../src/
|
|
5685
|
+
"path": "./../../src/packages/media/media/components/input-media-picker/input-media-picker.element.ts",
|
|
5479
5686
|
"attributes": [
|
|
5480
5687
|
{
|
|
5481
5688
|
"name": "min",
|
|
@@ -5594,11 +5801,11 @@
|
|
|
5594
5801
|
},
|
|
5595
5802
|
{
|
|
5596
5803
|
"name": "umb-media-menu-item",
|
|
5597
|
-
"path": "./../../src/
|
|
5804
|
+
"path": "./../../src/packages/media/media/menu-item/media-menu-item.element.ts"
|
|
5598
5805
|
},
|
|
5599
5806
|
{
|
|
5600
5807
|
"name": "umb-media-workspace-edit",
|
|
5601
|
-
"path": "./../../src/
|
|
5808
|
+
"path": "./../../src/packages/media/media/workspace/media-workspace-edit.element.ts",
|
|
5602
5809
|
"properties": [
|
|
5603
5810
|
{
|
|
5604
5811
|
"name": "styles",
|
|
@@ -5609,7 +5816,7 @@
|
|
|
5609
5816
|
},
|
|
5610
5817
|
{
|
|
5611
5818
|
"name": "umb-media-workspace",
|
|
5612
|
-
"path": "./../../src/
|
|
5819
|
+
"path": "./../../src/packages/media/media/workspace/media-workspace.element.ts",
|
|
5613
5820
|
"properties": [
|
|
5614
5821
|
{
|
|
5615
5822
|
"name": "styles",
|
|
@@ -5620,7 +5827,7 @@
|
|
|
5620
5827
|
},
|
|
5621
5828
|
{
|
|
5622
5829
|
"name": "umb-media-edit-workspace-view",
|
|
5623
|
-
"path": "./../../src/
|
|
5830
|
+
"path": "./../../src/packages/media/media/workspace/views/edit/media-edit-workspace-view.element.ts",
|
|
5624
5831
|
"properties": [
|
|
5625
5832
|
{
|
|
5626
5833
|
"name": "styles",
|
|
@@ -5631,7 +5838,7 @@
|
|
|
5631
5838
|
},
|
|
5632
5839
|
{
|
|
5633
5840
|
"name": "umb-media-info-workspace-view",
|
|
5634
|
-
"path": "./../../src/
|
|
5841
|
+
"path": "./../../src/packages/media/media/workspace/views/info/media-info-workspace-view.element.ts",
|
|
5635
5842
|
"properties": [
|
|
5636
5843
|
{
|
|
5637
5844
|
"name": "styles",
|
|
@@ -5642,7 +5849,7 @@
|
|
|
5642
5849
|
},
|
|
5643
5850
|
{
|
|
5644
5851
|
"name": "umb-dashboard-members-welcome",
|
|
5645
|
-
"path": "./../../src/
|
|
5852
|
+
"path": "./../../src/packages/members/dashboards/welcome/dashboard-members-welcome.element.ts",
|
|
5646
5853
|
"properties": [
|
|
5647
5854
|
{
|
|
5648
5855
|
"name": "styles",
|
|
@@ -5653,7 +5860,7 @@
|
|
|
5653
5860
|
},
|
|
5654
5861
|
{
|
|
5655
5862
|
"name": "umb-member-group-workspace-edit",
|
|
5656
|
-
"path": "./../../src/
|
|
5863
|
+
"path": "./../../src/packages/members/member-groups/workspace/member-group-workspace-edit.element.ts",
|
|
5657
5864
|
"properties": [
|
|
5658
5865
|
{
|
|
5659
5866
|
"name": "styles",
|
|
@@ -5664,7 +5871,7 @@
|
|
|
5664
5871
|
},
|
|
5665
5872
|
{
|
|
5666
5873
|
"name": "umb-member-group-workspace",
|
|
5667
|
-
"path": "./../../src/
|
|
5874
|
+
"path": "./../../src/packages/members/member-groups/workspace/member-group-workspace.element.ts",
|
|
5668
5875
|
"properties": [
|
|
5669
5876
|
{
|
|
5670
5877
|
"name": "styles",
|
|
@@ -5675,7 +5882,7 @@
|
|
|
5675
5882
|
},
|
|
5676
5883
|
{
|
|
5677
5884
|
"name": "umb-workspace-view-member-group-info",
|
|
5678
|
-
"path": "./../../src/
|
|
5885
|
+
"path": "./../../src/packages/members/member-groups/workspace/views/info/workspace-view-member-group-info.element.ts",
|
|
5679
5886
|
"properties": [
|
|
5680
5887
|
{
|
|
5681
5888
|
"name": "styles",
|
|
@@ -5686,7 +5893,7 @@
|
|
|
5686
5893
|
},
|
|
5687
5894
|
{
|
|
5688
5895
|
"name": "umb-member-type-workspace-edit",
|
|
5689
|
-
"path": "./../../src/
|
|
5896
|
+
"path": "./../../src/packages/members/member-types/workspace/member-type-workspace-edit.element.ts",
|
|
5690
5897
|
"properties": [
|
|
5691
5898
|
{
|
|
5692
5899
|
"name": "styles",
|
|
@@ -5697,7 +5904,7 @@
|
|
|
5697
5904
|
},
|
|
5698
5905
|
{
|
|
5699
5906
|
"name": "umb-member-type-workspace",
|
|
5700
|
-
"path": "./../../src/
|
|
5907
|
+
"path": "./../../src/packages/members/member-types/workspace/member-type-workspace.element.ts",
|
|
5701
5908
|
"properties": [
|
|
5702
5909
|
{
|
|
5703
5910
|
"name": "styles",
|
|
@@ -5708,7 +5915,7 @@
|
|
|
5708
5915
|
},
|
|
5709
5916
|
{
|
|
5710
5917
|
"name": "umb-member-workspace-edit",
|
|
5711
|
-
"path": "./../../src/
|
|
5918
|
+
"path": "./../../src/packages/members/members/workspace/member-workspace-edit.element.ts",
|
|
5712
5919
|
"properties": [
|
|
5713
5920
|
{
|
|
5714
5921
|
"name": "styles",
|
|
@@ -5719,7 +5926,7 @@
|
|
|
5719
5926
|
},
|
|
5720
5927
|
{
|
|
5721
5928
|
"name": "umb-member-workspace",
|
|
5722
|
-
"path": "./../../src/
|
|
5929
|
+
"path": "./../../src/packages/members/members/workspace/member-workspace.element.ts",
|
|
5723
5930
|
"properties": [
|
|
5724
5931
|
{
|
|
5725
5932
|
"name": "styles",
|
|
@@ -5730,7 +5937,7 @@
|
|
|
5730
5937
|
},
|
|
5731
5938
|
{
|
|
5732
5939
|
"name": "umb-workspace-package-builder",
|
|
5733
|
-
"path": "./../../src/
|
|
5940
|
+
"path": "./../../src/packages/packages/package-builder/workspace/workspace-package-builder.element.ts",
|
|
5734
5941
|
"attributes": [
|
|
5735
5942
|
{
|
|
5736
5943
|
"name": "entityId",
|
|
@@ -5752,7 +5959,7 @@
|
|
|
5752
5959
|
},
|
|
5753
5960
|
{
|
|
5754
5961
|
"name": "umb-workspace-package",
|
|
5755
|
-
"path": "./../../src/
|
|
5962
|
+
"path": "./../../src/packages/packages/package-repo/workspace/workspace-package.element.ts",
|
|
5756
5963
|
"attributes": [
|
|
5757
5964
|
{
|
|
5758
5965
|
"name": "entityId",
|
|
@@ -5774,11 +5981,11 @@
|
|
|
5774
5981
|
},
|
|
5775
5982
|
{
|
|
5776
5983
|
"name": "umb-created-packages-section-view",
|
|
5777
|
-
"path": "./../../src/
|
|
5984
|
+
"path": "./../../src/packages/packages/package-section/views/created/created-packages-section-view.element.ts"
|
|
5778
5985
|
},
|
|
5779
5986
|
{
|
|
5780
5987
|
"name": "umb-packages-created-overview",
|
|
5781
|
-
"path": "./../../src/
|
|
5988
|
+
"path": "./../../src/packages/packages/package-section/views/created/packages-created-overview.element.ts",
|
|
5782
5989
|
"properties": [
|
|
5783
5990
|
{
|
|
5784
5991
|
"name": "styles",
|
|
@@ -5789,7 +5996,7 @@
|
|
|
5789
5996
|
},
|
|
5790
5997
|
{
|
|
5791
5998
|
"name": "umb-installed-packages-section-view-item",
|
|
5792
|
-
"path": "./../../src/
|
|
5999
|
+
"path": "./../../src/packages/packages/package-section/views/installed/installed-packages-section-view-item.element.ts",
|
|
5793
6000
|
"attributes": [
|
|
5794
6001
|
{
|
|
5795
6002
|
"name": "name",
|
|
@@ -5840,7 +6047,7 @@
|
|
|
5840
6047
|
},
|
|
5841
6048
|
{
|
|
5842
6049
|
"name": "umb-installed-packages-section-view",
|
|
5843
|
-
"path": "./../../src/
|
|
6050
|
+
"path": "./../../src/packages/packages/package-section/views/installed/installed-packages-section-view.element.ts",
|
|
5844
6051
|
"properties": [
|
|
5845
6052
|
{
|
|
5846
6053
|
"name": "styles",
|
|
@@ -5851,7 +6058,7 @@
|
|
|
5851
6058
|
},
|
|
5852
6059
|
{
|
|
5853
6060
|
"name": "umb-packages-market-place-section-view",
|
|
5854
|
-
"path": "./../../src/
|
|
6061
|
+
"path": "./../../src/packages/packages/package-section/views/market-place/packages-market-place-section-view.element.ts",
|
|
5855
6062
|
"attributes": [
|
|
5856
6063
|
{
|
|
5857
6064
|
"name": "marketplaceUrl",
|
|
@@ -5875,7 +6082,7 @@
|
|
|
5875
6082
|
},
|
|
5876
6083
|
{
|
|
5877
6084
|
"name": "umb-dashboard-examine-management",
|
|
5878
|
-
"path": "./../../src/
|
|
6085
|
+
"path": "./../../src/packages/search/examine-management-dashboard/dashboard-examine-management.element.ts",
|
|
5879
6086
|
"properties": [
|
|
5880
6087
|
{
|
|
5881
6088
|
"name": "styles",
|
|
@@ -5886,7 +6093,7 @@
|
|
|
5886
6093
|
},
|
|
5887
6094
|
{
|
|
5888
6095
|
"name": "umb-examine-fields-settings-modal",
|
|
5889
|
-
"path": "./../../src/
|
|
6096
|
+
"path": "./../../src/packages/search/examine-management-dashboard/views/modal-views/fields-settings.element.ts",
|
|
5890
6097
|
"properties": [
|
|
5891
6098
|
{
|
|
5892
6099
|
"name": "styles",
|
|
@@ -5897,7 +6104,7 @@
|
|
|
5897
6104
|
},
|
|
5898
6105
|
{
|
|
5899
6106
|
"name": "umb-modal-element-fields-viewer",
|
|
5900
|
-
"path": "./../../src/
|
|
6107
|
+
"path": "./../../src/packages/search/examine-management-dashboard/views/modal-views/fields-viewer.element.ts",
|
|
5901
6108
|
"properties": [
|
|
5902
6109
|
{
|
|
5903
6110
|
"name": "styles",
|
|
@@ -5908,7 +6115,7 @@
|
|
|
5908
6115
|
},
|
|
5909
6116
|
{
|
|
5910
6117
|
"name": "umb-search-modal",
|
|
5911
|
-
"path": "./../../src/
|
|
6118
|
+
"path": "./../../src/packages/search/search-modal/search-modal.element.ts",
|
|
5912
6119
|
"properties": [
|
|
5913
6120
|
{
|
|
5914
6121
|
"name": "styles",
|
|
@@ -5919,7 +6126,7 @@
|
|
|
5919
6126
|
},
|
|
5920
6127
|
{
|
|
5921
6128
|
"name": "umb-search-header-app",
|
|
5922
|
-
"path": "./../../src/
|
|
6129
|
+
"path": "./../../src/packages/search/umb-search-header-app.element.ts",
|
|
5923
6130
|
"properties": [
|
|
5924
6131
|
{
|
|
5925
6132
|
"name": "styles",
|
|
@@ -5930,7 +6137,7 @@
|
|
|
5930
6137
|
},
|
|
5931
6138
|
{
|
|
5932
6139
|
"name": "umb-input-culture-select",
|
|
5933
|
-
"path": "./../../src/
|
|
6140
|
+
"path": "./../../src/packages/settings/cultures/components/input-culture-select/input-culture-select.element.ts",
|
|
5934
6141
|
"attributes": [
|
|
5935
6142
|
{
|
|
5936
6143
|
"name": "disabled",
|
|
@@ -6013,11 +6220,11 @@
|
|
|
6013
6220
|
},
|
|
6014
6221
|
{
|
|
6015
6222
|
"name": "umb-dashboard-health-check",
|
|
6016
|
-
"path": "./../../src/
|
|
6223
|
+
"path": "./../../src/packages/settings/dashboards/health-check/dashboard-health-check.element.ts"
|
|
6017
6224
|
},
|
|
6018
6225
|
{
|
|
6019
6226
|
"name": "umb-dashboard-health-check-action",
|
|
6020
|
-
"path": "./../../src/
|
|
6227
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-action.element.ts",
|
|
6021
6228
|
"attributes": [
|
|
6022
6229
|
{
|
|
6023
6230
|
"name": "action"
|
|
@@ -6042,7 +6249,7 @@
|
|
|
6042
6249
|
},
|
|
6043
6250
|
{
|
|
6044
6251
|
"name": "umb-health-check-group-box-overview",
|
|
6045
|
-
"path": "./../../src/
|
|
6252
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-group-box-overview.element.ts",
|
|
6046
6253
|
"attributes": [
|
|
6047
6254
|
{
|
|
6048
6255
|
"name": "manifest"
|
|
@@ -6062,7 +6269,7 @@
|
|
|
6062
6269
|
},
|
|
6063
6270
|
{
|
|
6064
6271
|
"name": "umb-health-check--group-box-overview",
|
|
6065
|
-
"path": "./../../src/
|
|
6272
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-group-box-overview.element.ts",
|
|
6066
6273
|
"attributes": [
|
|
6067
6274
|
{
|
|
6068
6275
|
"name": "manifest"
|
|
@@ -6082,7 +6289,7 @@
|
|
|
6082
6289
|
},
|
|
6083
6290
|
{
|
|
6084
6291
|
"name": "umb-dashboard-health-check-group",
|
|
6085
|
-
"path": "./../../src/
|
|
6292
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-group.element.ts",
|
|
6086
6293
|
"attributes": [
|
|
6087
6294
|
{
|
|
6088
6295
|
"name": "groupName",
|
|
@@ -6104,7 +6311,7 @@
|
|
|
6104
6311
|
},
|
|
6105
6312
|
{
|
|
6106
6313
|
"name": "umb-dashboard-health-check-overview",
|
|
6107
|
-
"path": "./../../src/
|
|
6314
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-overview.element.ts",
|
|
6108
6315
|
"properties": [
|
|
6109
6316
|
{
|
|
6110
6317
|
"name": "styles",
|
|
@@ -6115,7 +6322,7 @@
|
|
|
6115
6322
|
},
|
|
6116
6323
|
{
|
|
6117
6324
|
"name": "umb-dashboard-models-builder",
|
|
6118
|
-
"path": "./../../src/
|
|
6325
|
+
"path": "./../../src/packages/settings/dashboards/models-builder/dashboard-models-builder.element.ts",
|
|
6119
6326
|
"properties": [
|
|
6120
6327
|
{
|
|
6121
6328
|
"name": "styles",
|
|
@@ -6126,7 +6333,7 @@
|
|
|
6126
6333
|
},
|
|
6127
6334
|
{
|
|
6128
6335
|
"name": "umb-dashboard-performance-profiling",
|
|
6129
|
-
"path": "./../../src/
|
|
6336
|
+
"path": "./../../src/packages/settings/dashboards/performance-profiling/dashboard-performance-profiling.element.ts",
|
|
6130
6337
|
"properties": [
|
|
6131
6338
|
{
|
|
6132
6339
|
"name": "styles",
|
|
@@ -6137,7 +6344,7 @@
|
|
|
6137
6344
|
},
|
|
6138
6345
|
{
|
|
6139
6346
|
"name": "umb-dashboard-published-status",
|
|
6140
|
-
"path": "./../../src/
|
|
6347
|
+
"path": "./../../src/packages/settings/dashboards/published-status/dashboard-published-status.element.ts",
|
|
6141
6348
|
"properties": [
|
|
6142
6349
|
{
|
|
6143
6350
|
"name": "styles",
|
|
@@ -6148,7 +6355,7 @@
|
|
|
6148
6355
|
},
|
|
6149
6356
|
{
|
|
6150
6357
|
"name": "umb-dashboard-settings-welcome",
|
|
6151
|
-
"path": "./../../src/
|
|
6358
|
+
"path": "./../../src/packages/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts",
|
|
6152
6359
|
"properties": [
|
|
6153
6360
|
{
|
|
6154
6361
|
"name": "styles",
|
|
@@ -6159,18 +6366,85 @@
|
|
|
6159
6366
|
},
|
|
6160
6367
|
{
|
|
6161
6368
|
"name": "umb-dashboard-telemetry",
|
|
6162
|
-
"path": "./../../src/
|
|
6369
|
+
"path": "./../../src/packages/settings/dashboards/telemetry/dashboard-telemetry.element.ts",
|
|
6370
|
+
"properties": [
|
|
6371
|
+
{
|
|
6372
|
+
"name": "styles",
|
|
6373
|
+
"type": "CSSResult[]",
|
|
6374
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6375
|
+
}
|
|
6376
|
+
]
|
|
6377
|
+
},
|
|
6378
|
+
{
|
|
6379
|
+
"name": "umb-data-type-flow-input",
|
|
6380
|
+
"path": "./../../src/packages/settings/data-types/components/data-type-flow-input/data-type-flow-input.element.ts",
|
|
6381
|
+
"description": "Form control for picking or creating a data type.",
|
|
6163
6382
|
"properties": [
|
|
6164
6383
|
{
|
|
6165
6384
|
"name": "styles",
|
|
6166
6385
|
"type": "CSSResult[]",
|
|
6167
6386
|
"default": "[\"UUITextStyles\",null]"
|
|
6387
|
+
},
|
|
6388
|
+
{
|
|
6389
|
+
"name": "formAssociated",
|
|
6390
|
+
"type": "boolean"
|
|
6391
|
+
},
|
|
6392
|
+
{
|
|
6393
|
+
"name": "value",
|
|
6394
|
+
"type": "string",
|
|
6395
|
+
"default": "\"[]\""
|
|
6396
|
+
},
|
|
6397
|
+
{
|
|
6398
|
+
"name": "name",
|
|
6399
|
+
"type": "string"
|
|
6400
|
+
},
|
|
6401
|
+
{
|
|
6402
|
+
"name": "validationMessage",
|
|
6403
|
+
"type": "string"
|
|
6404
|
+
},
|
|
6405
|
+
{
|
|
6406
|
+
"name": "validity",
|
|
6407
|
+
"type": "ValidityState"
|
|
6408
|
+
},
|
|
6409
|
+
{
|
|
6410
|
+
"name": "pristine",
|
|
6411
|
+
"type": "boolean"
|
|
6412
|
+
},
|
|
6413
|
+
{
|
|
6414
|
+
"name": "required",
|
|
6415
|
+
"type": "boolean"
|
|
6416
|
+
},
|
|
6417
|
+
{
|
|
6418
|
+
"name": "requiredMessage",
|
|
6419
|
+
"type": "string"
|
|
6420
|
+
},
|
|
6421
|
+
{
|
|
6422
|
+
"name": "error",
|
|
6423
|
+
"type": "boolean"
|
|
6424
|
+
},
|
|
6425
|
+
{
|
|
6426
|
+
"name": "errorMessage",
|
|
6427
|
+
"type": "string"
|
|
6428
|
+
}
|
|
6429
|
+
],
|
|
6430
|
+
"events": [
|
|
6431
|
+
{
|
|
6432
|
+
"name": "change",
|
|
6433
|
+
"description": "when the value of the input changes"
|
|
6434
|
+
},
|
|
6435
|
+
{
|
|
6436
|
+
"name": "blur",
|
|
6437
|
+
"description": "when the input loses focus"
|
|
6438
|
+
},
|
|
6439
|
+
{
|
|
6440
|
+
"name": "focus",
|
|
6441
|
+
"description": "when the input gains focus"
|
|
6168
6442
|
}
|
|
6169
6443
|
]
|
|
6170
6444
|
},
|
|
6171
6445
|
{
|
|
6172
6446
|
"name": "umb-data-type-input",
|
|
6173
|
-
"path": "./../../src/
|
|
6447
|
+
"path": "./../../src/packages/settings/data-types/components/data-type-input/data-type-input.element.ts",
|
|
6174
6448
|
"attributes": [
|
|
6175
6449
|
{
|
|
6176
6450
|
"name": "min",
|
|
@@ -6290,54 +6564,223 @@
|
|
|
6290
6564
|
]
|
|
6291
6565
|
},
|
|
6292
6566
|
{
|
|
6293
|
-
"name": "umb-data-type
|
|
6294
|
-
"path": "./../../src/
|
|
6567
|
+
"name": "umb-ref-data-type",
|
|
6568
|
+
"path": "./../../src/packages/settings/data-types/components/ref-data-type/ref-data-type.element.ts",
|
|
6295
6569
|
"attributes": [
|
|
6296
6570
|
{
|
|
6297
|
-
"name": "
|
|
6298
|
-
"
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
6571
|
+
"name": "property-editor-ui-alias",
|
|
6572
|
+
"description": "Property Editor UI Alias",
|
|
6573
|
+
"type": "string",
|
|
6574
|
+
"default": "\"''\""
|
|
6575
|
+
},
|
|
6302
6576
|
{
|
|
6303
|
-
"name": "
|
|
6577
|
+
"name": "property-editor-model-alias",
|
|
6578
|
+
"description": "Property Editor Model Alias",
|
|
6579
|
+
"type": "string",
|
|
6580
|
+
"default": "\"''\""
|
|
6304
6581
|
},
|
|
6305
6582
|
{
|
|
6306
|
-
"name": "
|
|
6307
|
-
"
|
|
6308
|
-
"type": "
|
|
6583
|
+
"name": "name",
|
|
6584
|
+
"description": "Name",
|
|
6585
|
+
"type": "string",
|
|
6586
|
+
"default": "\"''\""
|
|
6309
6587
|
},
|
|
6310
6588
|
{
|
|
6311
|
-
"name": "
|
|
6312
|
-
"
|
|
6313
|
-
"
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
},
|
|
6317
|
-
{
|
|
6318
|
-
"name": "umb-data-type-workspace-edit-element",
|
|
6319
|
-
"path": "./../../src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
6320
|
-
"attributes": [
|
|
6589
|
+
"name": "detail",
|
|
6590
|
+
"description": "Node details",
|
|
6591
|
+
"type": "string",
|
|
6592
|
+
"default": "\"''\""
|
|
6593
|
+
},
|
|
6321
6594
|
{
|
|
6322
|
-
"name": "
|
|
6595
|
+
"name": "disabled",
|
|
6596
|
+
"description": "Set tot true to disable",
|
|
6597
|
+
"type": "boolean",
|
|
6598
|
+
"default": "\"false\""
|
|
6599
|
+
},
|
|
6600
|
+
{
|
|
6601
|
+
"name": "error",
|
|
6602
|
+
"description": "Set to true to display error state",
|
|
6603
|
+
"type": "boolean",
|
|
6604
|
+
"default": "\"false\""
|
|
6323
6605
|
}
|
|
6324
6606
|
],
|
|
6325
6607
|
"properties": [
|
|
6326
6608
|
{
|
|
6327
|
-
"name": "
|
|
6328
|
-
"attribute": "
|
|
6609
|
+
"name": "propertyEditorUiAlias",
|
|
6610
|
+
"attribute": "property-editor-ui-alias",
|
|
6611
|
+
"description": "Property Editor UI Alias",
|
|
6612
|
+
"type": "string",
|
|
6613
|
+
"default": "\"''\""
|
|
6614
|
+
},
|
|
6615
|
+
{
|
|
6616
|
+
"name": "propertyEditorModelAlias",
|
|
6617
|
+
"attribute": "property-editor-model-alias",
|
|
6618
|
+
"description": "Property Editor Model Alias",
|
|
6619
|
+
"type": "string",
|
|
6620
|
+
"default": "\"''\""
|
|
6621
|
+
},
|
|
6622
|
+
{
|
|
6623
|
+
"name": "name",
|
|
6624
|
+
"attribute": "name",
|
|
6625
|
+
"description": "Name",
|
|
6626
|
+
"type": "string",
|
|
6627
|
+
"default": "\"''\""
|
|
6628
|
+
},
|
|
6629
|
+
{
|
|
6630
|
+
"name": "detail",
|
|
6631
|
+
"attribute": "detail",
|
|
6632
|
+
"description": "Node details",
|
|
6633
|
+
"type": "string",
|
|
6634
|
+
"default": "\"''\""
|
|
6329
6635
|
},
|
|
6330
6636
|
{
|
|
6331
6637
|
"name": "styles",
|
|
6332
6638
|
"type": "CSSResult[]",
|
|
6333
|
-
"default": "[
|
|
6334
|
-
}
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6639
|
+
"default": "[null]"
|
|
6640
|
+
},
|
|
6641
|
+
{
|
|
6642
|
+
"name": "disabled",
|
|
6643
|
+
"attribute": "disabled",
|
|
6644
|
+
"description": "Set tot true to disable",
|
|
6645
|
+
"type": "boolean",
|
|
6646
|
+
"default": "\"false\""
|
|
6647
|
+
},
|
|
6648
|
+
{
|
|
6649
|
+
"name": "error",
|
|
6650
|
+
"attribute": "error",
|
|
6651
|
+
"description": "Set to true to display error state",
|
|
6652
|
+
"type": "boolean",
|
|
6653
|
+
"default": "\"false\""
|
|
6654
|
+
}
|
|
6655
|
+
],
|
|
6656
|
+
"events": [
|
|
6657
|
+
{
|
|
6658
|
+
"name": "open",
|
|
6659
|
+
"description": "fires when the ref title is clicked"
|
|
6660
|
+
},
|
|
6661
|
+
{
|
|
6662
|
+
"name": "selected",
|
|
6663
|
+
"description": "fires when the ref is selected"
|
|
6664
|
+
},
|
|
6665
|
+
{
|
|
6666
|
+
"name": "unselected",
|
|
6667
|
+
"description": "fires when the ref is unselected"
|
|
6668
|
+
}
|
|
6669
|
+
],
|
|
6670
|
+
"slots": [
|
|
6671
|
+
{
|
|
6672
|
+
"name": "",
|
|
6673
|
+
"description": "for content"
|
|
6674
|
+
},
|
|
6675
|
+
{
|
|
6676
|
+
"name": "icon",
|
|
6677
|
+
"description": "for an icon"
|
|
6678
|
+
},
|
|
6679
|
+
{
|
|
6680
|
+
"name": "tag",
|
|
6681
|
+
"description": "for a tag"
|
|
6682
|
+
},
|
|
6683
|
+
{
|
|
6684
|
+
"name": "actions",
|
|
6685
|
+
"description": "for actions"
|
|
6686
|
+
}
|
|
6687
|
+
]
|
|
6688
|
+
},
|
|
6689
|
+
{
|
|
6690
|
+
"name": "umb-data-type-create-options-modal",
|
|
6691
|
+
"path": "./../../src/packages/settings/data-types/entity-actions/create/modal/data-type-create-options-modal.element.ts",
|
|
6692
|
+
"attributes": [
|
|
6693
|
+
{
|
|
6694
|
+
"name": "data",
|
|
6695
|
+
"type": "UmbDataTypeCreateOptionsModalData | undefined"
|
|
6696
|
+
}
|
|
6697
|
+
],
|
|
6698
|
+
"properties": [
|
|
6699
|
+
{
|
|
6700
|
+
"name": "modalHandler"
|
|
6701
|
+
},
|
|
6702
|
+
{
|
|
6703
|
+
"name": "data",
|
|
6704
|
+
"attribute": "data",
|
|
6705
|
+
"type": "UmbDataTypeCreateOptionsModalData | undefined"
|
|
6706
|
+
},
|
|
6707
|
+
{
|
|
6708
|
+
"name": "styles",
|
|
6709
|
+
"type": "CSSResult[]",
|
|
6710
|
+
"default": "[\"UUITextStyles\"]"
|
|
6711
|
+
}
|
|
6712
|
+
]
|
|
6713
|
+
},
|
|
6714
|
+
{
|
|
6715
|
+
"name": "umb-data-type-picker-flow-modal",
|
|
6716
|
+
"path": "./../../src/packages/settings/data-types/modals/data-type-picker-flow/data-type-picker-flow-modal.element.ts",
|
|
6717
|
+
"attributes": [
|
|
6718
|
+
{
|
|
6719
|
+
"name": "data"
|
|
6720
|
+
}
|
|
6721
|
+
],
|
|
6722
|
+
"properties": [
|
|
6723
|
+
{
|
|
6724
|
+
"name": "modalHandler"
|
|
6725
|
+
},
|
|
6726
|
+
{
|
|
6727
|
+
"name": "data",
|
|
6728
|
+
"attribute": "data"
|
|
6729
|
+
},
|
|
6730
|
+
{
|
|
6731
|
+
"name": "styles",
|
|
6732
|
+
"type": "CSSResult[]",
|
|
6733
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6734
|
+
}
|
|
6735
|
+
]
|
|
6736
|
+
},
|
|
6737
|
+
{
|
|
6738
|
+
"name": "umb-property-editor-ui-picker-modal",
|
|
6739
|
+
"path": "./../../src/packages/settings/data-types/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
6740
|
+
"attributes": [
|
|
6741
|
+
{
|
|
6742
|
+
"name": "data"
|
|
6743
|
+
}
|
|
6744
|
+
],
|
|
6745
|
+
"properties": [
|
|
6746
|
+
{
|
|
6747
|
+
"name": "data",
|
|
6748
|
+
"attribute": "data"
|
|
6749
|
+
},
|
|
6750
|
+
{
|
|
6751
|
+
"name": "modalHandler"
|
|
6752
|
+
},
|
|
6753
|
+
{
|
|
6754
|
+
"name": "styles",
|
|
6755
|
+
"type": "CSSResult[]",
|
|
6756
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6757
|
+
}
|
|
6758
|
+
]
|
|
6759
|
+
},
|
|
6760
|
+
{
|
|
6761
|
+
"name": "umb-data-type-workspace-edit-element",
|
|
6762
|
+
"path": "./../../src/packages/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
6763
|
+
"attributes": [
|
|
6764
|
+
{
|
|
6765
|
+
"name": "manifest"
|
|
6766
|
+
}
|
|
6767
|
+
],
|
|
6768
|
+
"properties": [
|
|
6769
|
+
{
|
|
6770
|
+
"name": "manifest",
|
|
6771
|
+
"attribute": "manifest"
|
|
6772
|
+
},
|
|
6773
|
+
{
|
|
6774
|
+
"name": "styles",
|
|
6775
|
+
"type": "CSSResult[]",
|
|
6776
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6777
|
+
}
|
|
6778
|
+
]
|
|
6779
|
+
},
|
|
6780
|
+
{
|
|
6781
|
+
"name": "umb-data-type-workspace",
|
|
6782
|
+
"path": "./../../src/packages/settings/data-types/workspace/data-type-workspace.element.ts",
|
|
6783
|
+
"properties": [
|
|
6341
6784
|
{
|
|
6342
6785
|
"name": "styles",
|
|
6343
6786
|
"type": "CSSResult[]",
|
|
@@ -6347,7 +6790,7 @@
|
|
|
6347
6790
|
},
|
|
6348
6791
|
{
|
|
6349
6792
|
"name": "umb-data-type-details-workspace-view",
|
|
6350
|
-
"path": "./../../src/
|
|
6793
|
+
"path": "./../../src/packages/settings/data-types/workspace/views/details/data-type-details-workspace-view.element.ts",
|
|
6351
6794
|
"properties": [
|
|
6352
6795
|
{
|
|
6353
6796
|
"name": "styles",
|
|
@@ -6358,7 +6801,7 @@
|
|
|
6358
6801
|
},
|
|
6359
6802
|
{
|
|
6360
6803
|
"name": "umb-workspace-view-data-type-info",
|
|
6361
|
-
"path": "./../../src/
|
|
6804
|
+
"path": "./../../src/packages/settings/data-types/workspace/views/info/workspace-view-data-type-info.element.ts",
|
|
6362
6805
|
"properties": [
|
|
6363
6806
|
{
|
|
6364
6807
|
"name": "styles",
|
|
@@ -6369,7 +6812,7 @@
|
|
|
6369
6812
|
},
|
|
6370
6813
|
{
|
|
6371
6814
|
"name": "umb-extension-root-workspace",
|
|
6372
|
-
"path": "./../../src/
|
|
6815
|
+
"path": "./../../src/packages/settings/extensions/workspace/extension-root-workspace.element.ts",
|
|
6373
6816
|
"properties": [
|
|
6374
6817
|
{
|
|
6375
6818
|
"name": "styles",
|
|
@@ -6380,7 +6823,7 @@
|
|
|
6380
6823
|
},
|
|
6381
6824
|
{
|
|
6382
6825
|
"name": "umb-app-language-select",
|
|
6383
|
-
"path": "./../../src/
|
|
6826
|
+
"path": "./../../src/packages/settings/languages/app-language-select/app-language-select.element.ts",
|
|
6384
6827
|
"properties": [
|
|
6385
6828
|
{
|
|
6386
6829
|
"name": "styles",
|
|
@@ -6391,7 +6834,7 @@
|
|
|
6391
6834
|
},
|
|
6392
6835
|
{
|
|
6393
6836
|
"name": "umb-input-language-picker",
|
|
6394
|
-
"path": "./../../src/
|
|
6837
|
+
"path": "./../../src/packages/settings/languages/components/input-language-picker/input-language-picker.element.ts",
|
|
6395
6838
|
"attributes": [
|
|
6396
6839
|
{
|
|
6397
6840
|
"name": "min",
|
|
@@ -6510,7 +6953,7 @@
|
|
|
6510
6953
|
},
|
|
6511
6954
|
{
|
|
6512
6955
|
"name": "umb-language-picker-modal",
|
|
6513
|
-
"path": "./../../src/
|
|
6956
|
+
"path": "./../../src/packages/settings/languages/modals/language-picker/language-picker-modal.element.ts",
|
|
6514
6957
|
"properties": [
|
|
6515
6958
|
{
|
|
6516
6959
|
"name": "styles",
|
|
@@ -6521,7 +6964,7 @@
|
|
|
6521
6964
|
},
|
|
6522
6965
|
{
|
|
6523
6966
|
"name": "umb-language-root-table-delete-column-layout",
|
|
6524
|
-
"path": "./../../src/
|
|
6967
|
+
"path": "./../../src/packages/settings/languages/workspace/language-root/components/language-root-table-delete-column-layout.element.ts",
|
|
6525
6968
|
"properties": [
|
|
6526
6969
|
{
|
|
6527
6970
|
"name": "value"
|
|
@@ -6535,7 +6978,7 @@
|
|
|
6535
6978
|
},
|
|
6536
6979
|
{
|
|
6537
6980
|
"name": "umb-language-root-table-name-column-layout",
|
|
6538
|
-
"path": "./../../src/
|
|
6981
|
+
"path": "./../../src/packages/settings/languages/workspace/language-root/components/language-root-table-name-column-layout.element.ts",
|
|
6539
6982
|
"properties": [
|
|
6540
6983
|
{
|
|
6541
6984
|
"name": "value",
|
|
@@ -6550,7 +6993,7 @@
|
|
|
6550
6993
|
},
|
|
6551
6994
|
{
|
|
6552
6995
|
"name": "umb-language-root-workspace",
|
|
6553
|
-
"path": "./../../src/
|
|
6996
|
+
"path": "./../../src/packages/settings/languages/workspace/language-root/language-root-workspace.element.ts",
|
|
6554
6997
|
"properties": [
|
|
6555
6998
|
{
|
|
6556
6999
|
"name": "styles",
|
|
@@ -6561,7 +7004,7 @@
|
|
|
6561
7004
|
},
|
|
6562
7005
|
{
|
|
6563
7006
|
"name": "umb-language-workspace-edit",
|
|
6564
|
-
"path": "./../../src/
|
|
7007
|
+
"path": "./../../src/packages/settings/languages/workspace/language/language-workspace-edit.element.ts",
|
|
6565
7008
|
"properties": [
|
|
6566
7009
|
{
|
|
6567
7010
|
"name": "styles",
|
|
@@ -6572,7 +7015,7 @@
|
|
|
6572
7015
|
},
|
|
6573
7016
|
{
|
|
6574
7017
|
"name": "umb-language-workspace",
|
|
6575
|
-
"path": "./../../src/
|
|
7018
|
+
"path": "./../../src/packages/settings/languages/workspace/language/language-workspace.element.ts",
|
|
6576
7019
|
"properties": [
|
|
6577
7020
|
{
|
|
6578
7021
|
"name": "styles",
|
|
@@ -6583,7 +7026,7 @@
|
|
|
6583
7026
|
},
|
|
6584
7027
|
{
|
|
6585
7028
|
"name": "umb-language-details-workspace-view",
|
|
6586
|
-
"path": "./../../src/
|
|
7029
|
+
"path": "./../../src/packages/settings/languages/workspace/language/views/details/language-details-workspace-view.element.ts",
|
|
6587
7030
|
"properties": [
|
|
6588
7031
|
{
|
|
6589
7032
|
"name": "styles",
|
|
@@ -6594,7 +7037,7 @@
|
|
|
6594
7037
|
},
|
|
6595
7038
|
{
|
|
6596
7039
|
"name": "umb-donut-chart",
|
|
6597
|
-
"path": "./../../src/
|
|
7040
|
+
"path": "./../../src/packages/settings/logviewer/components/donut-chart/donut-chart.element.ts",
|
|
6598
7041
|
"description": "This is a donut chart component that can be used to display data in a circular way.",
|
|
6599
7042
|
"attributes": [
|
|
6600
7043
|
{
|
|
@@ -6673,7 +7116,7 @@
|
|
|
6673
7116
|
},
|
|
6674
7117
|
{
|
|
6675
7118
|
"name": "umb-donut-slice",
|
|
6676
|
-
"path": "./../../src/
|
|
7119
|
+
"path": "./../../src/packages/settings/logviewer/components/donut-chart/donut-slice.element.ts",
|
|
6677
7120
|
"description": "This component is used to display a single slice of a donut chart. It only makes sense insice the donut chart",
|
|
6678
7121
|
"attributes": [
|
|
6679
7122
|
{
|
|
@@ -6740,7 +7183,7 @@
|
|
|
6740
7183
|
},
|
|
6741
7184
|
{
|
|
6742
7185
|
"name": "umb-log-viewer-date-range-selector",
|
|
6743
|
-
"path": "./../../src/
|
|
7186
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/components/log-viewer-date-range-selector.element.ts",
|
|
6744
7187
|
"attributes": [
|
|
6745
7188
|
{
|
|
6746
7189
|
"name": "horizontal",
|
|
@@ -6764,7 +7207,7 @@
|
|
|
6764
7207
|
},
|
|
6765
7208
|
{
|
|
6766
7209
|
"name": "umb-log-viewer-level-tag",
|
|
6767
|
-
"path": "./../../src/
|
|
7210
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/components/log-viewer-level-tag.element.ts",
|
|
6768
7211
|
"attributes": [
|
|
6769
7212
|
{
|
|
6770
7213
|
"name": "level"
|
|
@@ -6789,7 +7232,7 @@
|
|
|
6789
7232
|
},
|
|
6790
7233
|
{
|
|
6791
7234
|
"name": "umb-log-viewer-to-many-logs-warning",
|
|
6792
|
-
"path": "./../../src/
|
|
7235
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/components/log-viewer-to-many-logs-warning.element.ts",
|
|
6793
7236
|
"properties": [
|
|
6794
7237
|
{
|
|
6795
7238
|
"name": "styles",
|
|
@@ -6800,7 +7243,7 @@
|
|
|
6800
7243
|
},
|
|
6801
7244
|
{
|
|
6802
7245
|
"name": "umb-logviewer-workspace",
|
|
6803
|
-
"path": "./../../src/
|
|
7246
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/logviewer-root-workspace.element.ts",
|
|
6804
7247
|
"properties": [
|
|
6805
7248
|
{
|
|
6806
7249
|
"name": "styles",
|
|
@@ -6811,7 +7254,7 @@
|
|
|
6811
7254
|
},
|
|
6812
7255
|
{
|
|
6813
7256
|
"name": "umb-log-viewer-log-level-overview",
|
|
6814
|
-
"path": "./../../src/
|
|
7257
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-level-overview.element.ts",
|
|
6815
7258
|
"attributes": [
|
|
6816
7259
|
{
|
|
6817
7260
|
"name": "loggerName",
|
|
@@ -6832,7 +7275,7 @@
|
|
|
6832
7275
|
},
|
|
6833
7276
|
{
|
|
6834
7277
|
"name": "umb-log-viewer-log-types-chart",
|
|
6835
|
-
"path": "./../../src/
|
|
7278
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-types-chart.element.ts",
|
|
6836
7279
|
"properties": [
|
|
6837
7280
|
{
|
|
6838
7281
|
"name": "styles",
|
|
@@ -6843,7 +7286,7 @@
|
|
|
6843
7286
|
},
|
|
6844
7287
|
{
|
|
6845
7288
|
"name": "umb-log-viewer-message-templates-overview",
|
|
6846
|
-
"path": "./../../src/
|
|
7289
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-message-templates-overview.element.ts",
|
|
6847
7290
|
"properties": [
|
|
6848
7291
|
{
|
|
6849
7292
|
"name": "styles",
|
|
@@ -6854,7 +7297,7 @@
|
|
|
6854
7297
|
},
|
|
6855
7298
|
{
|
|
6856
7299
|
"name": "umb-log-viewer-saved-searches-overview",
|
|
6857
|
-
"path": "./../../src/
|
|
7300
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-saved-searches-overview.element.ts",
|
|
6858
7301
|
"properties": [
|
|
6859
7302
|
{
|
|
6860
7303
|
"name": "styles",
|
|
@@ -6865,7 +7308,7 @@
|
|
|
6865
7308
|
},
|
|
6866
7309
|
{
|
|
6867
7310
|
"name": "umb-log-viewer-overview-view",
|
|
6868
|
-
"path": "./../../src/
|
|
7311
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/log-overview-view.element.ts",
|
|
6869
7312
|
"properties": [
|
|
6870
7313
|
{
|
|
6871
7314
|
"name": "styles",
|
|
@@ -6876,7 +7319,7 @@
|
|
|
6876
7319
|
},
|
|
6877
7320
|
{
|
|
6878
7321
|
"name": "umb-log-viewer-log-level-filter-menu",
|
|
6879
|
-
"path": "./../../src/
|
|
7322
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-log-level-filter-menu.element.ts",
|
|
6880
7323
|
"properties": [
|
|
6881
7324
|
{
|
|
6882
7325
|
"name": "setLogLevelDebounce",
|
|
@@ -6892,7 +7335,7 @@
|
|
|
6892
7335
|
},
|
|
6893
7336
|
{
|
|
6894
7337
|
"name": "umb-log-viewer-message",
|
|
6895
|
-
"path": "./../../src/
|
|
7338
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-message.element.ts",
|
|
6896
7339
|
"attributes": [
|
|
6897
7340
|
{
|
|
6898
7341
|
"name": "timestamp",
|
|
@@ -6982,7 +7425,7 @@
|
|
|
6982
7425
|
},
|
|
6983
7426
|
{
|
|
6984
7427
|
"name": "umb-log-viewer-messages-list",
|
|
6985
|
-
"path": "./../../src/
|
|
7428
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-messages-list.element.ts",
|
|
6986
7429
|
"properties": [
|
|
6987
7430
|
{
|
|
6988
7431
|
"name": "styles",
|
|
@@ -6993,7 +7436,7 @@
|
|
|
6993
7436
|
},
|
|
6994
7437
|
{
|
|
6995
7438
|
"name": "umb-log-viewer-polling-button",
|
|
6996
|
-
"path": "./../../src/
|
|
7439
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-polling-button.element.ts",
|
|
6997
7440
|
"properties": [
|
|
6998
7441
|
{
|
|
6999
7442
|
"name": "styles",
|
|
@@ -7004,7 +7447,7 @@
|
|
|
7004
7447
|
},
|
|
7005
7448
|
{
|
|
7006
7449
|
"name": "umb-log-viewer-save-search-modal",
|
|
7007
|
-
"path": "./../../src/
|
|
7450
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input-modal.element.ts",
|
|
7008
7451
|
"properties": [
|
|
7009
7452
|
{
|
|
7010
7453
|
"name": "styles",
|
|
@@ -7015,7 +7458,7 @@
|
|
|
7015
7458
|
},
|
|
7016
7459
|
{
|
|
7017
7460
|
"name": "umb-log-viewer-search-input",
|
|
7018
|
-
"path": "./../../src/
|
|
7461
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input.element.ts",
|
|
7019
7462
|
"properties": [
|
|
7020
7463
|
{
|
|
7021
7464
|
"name": "styles",
|
|
@@ -7026,7 +7469,7 @@
|
|
|
7026
7469
|
},
|
|
7027
7470
|
{
|
|
7028
7471
|
"name": "umb-log-viewer-search-view",
|
|
7029
|
-
"path": "./../../src/
|
|
7472
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/log-search-view.element.ts",
|
|
7030
7473
|
"properties": [
|
|
7031
7474
|
{
|
|
7032
7475
|
"name": "styles",
|
|
@@ -7037,7 +7480,7 @@
|
|
|
7037
7480
|
},
|
|
7038
7481
|
{
|
|
7039
7482
|
"name": "umb-relation-type-workspace-edit-element",
|
|
7040
|
-
"path": "./../../src/
|
|
7483
|
+
"path": "./../../src/packages/settings/relation-types/workspace/relation-type-workspace-edit.element.ts",
|
|
7041
7484
|
"properties": [
|
|
7042
7485
|
{
|
|
7043
7486
|
"name": "styles",
|
|
@@ -7048,7 +7491,7 @@
|
|
|
7048
7491
|
},
|
|
7049
7492
|
{
|
|
7050
7493
|
"name": "umb-relation-type-workspace",
|
|
7051
|
-
"path": "./../../src/
|
|
7494
|
+
"path": "./../../src/packages/settings/relation-types/workspace/relation-type-workspace.element.ts",
|
|
7052
7495
|
"properties": [
|
|
7053
7496
|
{
|
|
7054
7497
|
"name": "styles",
|
|
@@ -7059,7 +7502,7 @@
|
|
|
7059
7502
|
},
|
|
7060
7503
|
{
|
|
7061
7504
|
"name": "umb-relation-type-workspace-view-relation-type",
|
|
7062
|
-
"path": "./../../src/
|
|
7505
|
+
"path": "./../../src/packages/settings/relation-types/workspace/views/relation-type/relation-type-workspace-view-relation-type.element.ts",
|
|
7063
7506
|
"properties": [
|
|
7064
7507
|
{
|
|
7065
7508
|
"name": "styles",
|
|
@@ -7070,7 +7513,7 @@
|
|
|
7070
7513
|
},
|
|
7071
7514
|
{
|
|
7072
7515
|
"name": "umb-workspace-view-relation-type-relation",
|
|
7073
|
-
"path": "./../../src/
|
|
7516
|
+
"path": "./../../src/packages/settings/relation-types/workspace/views/relation/workspace-view-relation-type-relation.element.ts",
|
|
7074
7517
|
"properties": [
|
|
7075
7518
|
{
|
|
7076
7519
|
"name": "styles",
|
|
@@ -7081,7 +7524,7 @@
|
|
|
7081
7524
|
},
|
|
7082
7525
|
{
|
|
7083
7526
|
"name": "umb-tags-input",
|
|
7084
|
-
"path": "./../../src/
|
|
7527
|
+
"path": "./../../src/packages/tags/components/tags-input/tags-input.element.ts",
|
|
7085
7528
|
"attributes": [
|
|
7086
7529
|
{
|
|
7087
7530
|
"name": "group",
|
|
@@ -7166,7 +7609,7 @@
|
|
|
7166
7609
|
},
|
|
7167
7610
|
{
|
|
7168
7611
|
"name": "umb-property-editor-ui-tags-storage-type",
|
|
7169
|
-
"path": "./../../src/
|
|
7612
|
+
"path": "./../../src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.element.ts",
|
|
7170
7613
|
"attributes": [
|
|
7171
7614
|
{
|
|
7172
7615
|
"name": "value",
|
|
@@ -7195,7 +7638,7 @@
|
|
|
7195
7638
|
},
|
|
7196
7639
|
{
|
|
7197
7640
|
"name": "umb-property-editor-ui-tags",
|
|
7198
|
-
"path": "./../../src/
|
|
7641
|
+
"path": "./../../src/packages/tags/property-editors/tags/property-editor-ui-tags.element.ts",
|
|
7199
7642
|
"attributes": [
|
|
7200
7643
|
{
|
|
7201
7644
|
"name": "value",
|
|
@@ -7211,8 +7654,7 @@
|
|
|
7211
7654
|
"default": "[]"
|
|
7212
7655
|
},
|
|
7213
7656
|
{
|
|
7214
|
-
"name": "config"
|
|
7215
|
-
"type": "array"
|
|
7657
|
+
"name": "config"
|
|
7216
7658
|
},
|
|
7217
7659
|
{
|
|
7218
7660
|
"name": "styles",
|
|
@@ -7228,7 +7670,7 @@
|
|
|
7228
7670
|
},
|
|
7229
7671
|
{
|
|
7230
7672
|
"name": "umb-file-system-tree-item",
|
|
7231
|
-
"path": "./../../src/
|
|
7673
|
+
"path": "./../../src/packages/templating/components/file-system-tree-item/file-system-tree-item.element.ts",
|
|
7232
7674
|
"properties": [
|
|
7233
7675
|
{
|
|
7234
7676
|
"name": "item"
|
|
@@ -7242,7 +7684,7 @@
|
|
|
7242
7684
|
},
|
|
7243
7685
|
{
|
|
7244
7686
|
"name": "umb-templating-insert-menu",
|
|
7245
|
-
"path": "./../../src/
|
|
7687
|
+
"path": "./../../src/packages/templating/components/insert-menu/templating-insert-menu.element.ts",
|
|
7246
7688
|
"attributes": [
|
|
7247
7689
|
{
|
|
7248
7690
|
"name": "value",
|
|
@@ -7282,7 +7724,7 @@
|
|
|
7282
7724
|
},
|
|
7283
7725
|
{
|
|
7284
7726
|
"name": "umb-templating-choose-insert-type-modal",
|
|
7285
|
-
"path": "./../../src/
|
|
7727
|
+
"path": "./../../src/packages/templating/modals/insert-choose-type-sidebar.element.ts",
|
|
7286
7728
|
"properties": [
|
|
7287
7729
|
{
|
|
7288
7730
|
"name": "styles",
|
|
@@ -7293,7 +7735,7 @@
|
|
|
7293
7735
|
},
|
|
7294
7736
|
{
|
|
7295
7737
|
"name": "umb-insert-section-checkbox",
|
|
7296
|
-
"path": "./../../src/
|
|
7738
|
+
"path": "./../../src/packages/templating/modals/insert-section-modal/insert-section-input.element.ts",
|
|
7297
7739
|
"attributes": [
|
|
7298
7740
|
{
|
|
7299
7741
|
"name": "show-mandatory",
|
|
@@ -7397,7 +7839,7 @@
|
|
|
7397
7839
|
},
|
|
7398
7840
|
{
|
|
7399
7841
|
"name": "umb-insert-section-input",
|
|
7400
|
-
"path": "./../../src/
|
|
7842
|
+
"path": "./../../src/packages/templating/modals/insert-section-modal/insert-section-input.element.ts",
|
|
7401
7843
|
"attributes": [
|
|
7402
7844
|
{
|
|
7403
7845
|
"name": "show-mandatory",
|
|
@@ -7501,7 +7943,7 @@
|
|
|
7501
7943
|
},
|
|
7502
7944
|
{
|
|
7503
7945
|
"name": "umb-templating-insert-section-modal",
|
|
7504
|
-
"path": "./../../src/
|
|
7946
|
+
"path": "./../../src/packages/templating/modals/insert-section-modal/insert-section-modal.element.ts",
|
|
7505
7947
|
"properties": [
|
|
7506
7948
|
{
|
|
7507
7949
|
"name": "checkboxes",
|
|
@@ -7530,7 +7972,7 @@
|
|
|
7530
7972
|
},
|
|
7531
7973
|
{
|
|
7532
7974
|
"name": "umb-insert-value-sidebar",
|
|
7533
|
-
"path": "./../../src/
|
|
7975
|
+
"path": "./../../src/packages/templating/modals/insert-value-sidebar.element.ts",
|
|
7534
7976
|
"properties": [
|
|
7535
7977
|
{
|
|
7536
7978
|
"name": "showDefaultValueInput",
|
|
@@ -7564,7 +8006,7 @@
|
|
|
7564
8006
|
},
|
|
7565
8007
|
{
|
|
7566
8008
|
"name": "umb-partial-view-picker-modal",
|
|
7567
|
-
"path": "./../../src/
|
|
8009
|
+
"path": "./../../src/packages/templating/modals/partial-view-picker-modal.element.ts",
|
|
7568
8010
|
"properties": [
|
|
7569
8011
|
{
|
|
7570
8012
|
"name": "styles",
|
|
@@ -7575,7 +8017,7 @@
|
|
|
7575
8017
|
},
|
|
7576
8018
|
{
|
|
7577
8019
|
"name": "umb-partial-views-workspace-edit",
|
|
7578
|
-
"path": "./../../src/
|
|
8020
|
+
"path": "./../../src/packages/templating/partial-views/workspace/partial-views-workspace-edit.element.ts",
|
|
7579
8021
|
"properties": [
|
|
7580
8022
|
{
|
|
7581
8023
|
"name": "styles",
|
|
@@ -7586,7 +8028,7 @@
|
|
|
7586
8028
|
},
|
|
7587
8029
|
{
|
|
7588
8030
|
"name": "umb-partial-views-workspace",
|
|
7589
|
-
"path": "./../../src/
|
|
8031
|
+
"path": "./../../src/packages/templating/partial-views/workspace/partial-views-workspace.element.ts",
|
|
7590
8032
|
"properties": [
|
|
7591
8033
|
{
|
|
7592
8034
|
"name": "styles",
|
|
@@ -7597,7 +8039,7 @@
|
|
|
7597
8039
|
},
|
|
7598
8040
|
{
|
|
7599
8041
|
"name": "umb-stylesheet-workspace-edit",
|
|
7600
|
-
"path": "./../../src/
|
|
8042
|
+
"path": "./../../src/packages/templating/stylesheets/workspace/stylesheet-workspace-edit.element.ts",
|
|
7601
8043
|
"properties": [
|
|
7602
8044
|
{
|
|
7603
8045
|
"name": "styles",
|
|
@@ -7608,7 +8050,7 @@
|
|
|
7608
8050
|
},
|
|
7609
8051
|
{
|
|
7610
8052
|
"name": "umb-stylesheet-workspace",
|
|
7611
|
-
"path": "./../../src/
|
|
8053
|
+
"path": "./../../src/packages/templating/stylesheets/workspace/stylesheet-workspace.element.ts",
|
|
7612
8054
|
"properties": [
|
|
7613
8055
|
{
|
|
7614
8056
|
"name": "styles",
|
|
@@ -7619,7 +8061,7 @@
|
|
|
7619
8061
|
},
|
|
7620
8062
|
{
|
|
7621
8063
|
"name": "umb-input-template",
|
|
7622
|
-
"path": "./../../src/
|
|
8064
|
+
"path": "./../../src/packages/templating/templates/components/input-template/input-template.element.ts",
|
|
7623
8065
|
"attributes": [
|
|
7624
8066
|
{
|
|
7625
8067
|
"name": "min",
|
|
@@ -7747,7 +8189,7 @@
|
|
|
7747
8189
|
},
|
|
7748
8190
|
{
|
|
7749
8191
|
"name": "umb-template-card",
|
|
7750
|
-
"path": "./../../src/
|
|
8192
|
+
"path": "./../../src/packages/templating/templates/components/template-card/template-card.element.ts",
|
|
7751
8193
|
"attributes": [
|
|
7752
8194
|
{
|
|
7753
8195
|
"name": "default",
|
|
@@ -7843,7 +8285,7 @@
|
|
|
7843
8285
|
},
|
|
7844
8286
|
{
|
|
7845
8287
|
"name": "umb-template-workspace-edit",
|
|
7846
|
-
"path": "./../../src/
|
|
8288
|
+
"path": "./../../src/packages/templating/templates/workspace/template-workspace-edit.element.ts",
|
|
7847
8289
|
"properties": [
|
|
7848
8290
|
{
|
|
7849
8291
|
"name": "styles",
|
|
@@ -7854,7 +8296,7 @@
|
|
|
7854
8296
|
},
|
|
7855
8297
|
{
|
|
7856
8298
|
"name": "umb-template-workspace",
|
|
7857
|
-
"path": "./../../src/
|
|
8299
|
+
"path": "./../../src/packages/templating/templates/workspace/template-workspace.element.ts",
|
|
7858
8300
|
"properties": [
|
|
7859
8301
|
{
|
|
7860
8302
|
"name": "styles",
|
|
@@ -7865,7 +8307,7 @@
|
|
|
7865
8307
|
},
|
|
7866
8308
|
{
|
|
7867
8309
|
"name": "umb-dashboard-translation-dictionary",
|
|
7868
|
-
"path": "./../../src/
|
|
8310
|
+
"path": "./../../src/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts",
|
|
7869
8311
|
"properties": [
|
|
7870
8312
|
{
|
|
7871
8313
|
"name": "styles",
|
|
@@ -7876,7 +8318,7 @@
|
|
|
7876
8318
|
},
|
|
7877
8319
|
{
|
|
7878
8320
|
"name": "umb-create-dictionary-modal",
|
|
7879
|
-
"path": "./../../src/
|
|
8321
|
+
"path": "./../../src/packages/translation/dictionary/entity-actions/create/create-dictionary-modal-layout.element.ts",
|
|
7880
8322
|
"properties": [
|
|
7881
8323
|
{
|
|
7882
8324
|
"name": "styles",
|
|
@@ -7887,7 +8329,7 @@
|
|
|
7887
8329
|
},
|
|
7888
8330
|
{
|
|
7889
8331
|
"name": "umb-export-dictionary-modal",
|
|
7890
|
-
"path": "./../../src/
|
|
8332
|
+
"path": "./../../src/packages/translation/dictionary/entity-actions/export/export-dictionary-modal.element.ts",
|
|
7891
8333
|
"properties": [
|
|
7892
8334
|
{
|
|
7893
8335
|
"name": "styles",
|
|
@@ -7898,7 +8340,7 @@
|
|
|
7898
8340
|
},
|
|
7899
8341
|
{
|
|
7900
8342
|
"name": "umb-import-dictionary-modal",
|
|
7901
|
-
"path": "./../../src/
|
|
8343
|
+
"path": "./../../src/packages/translation/dictionary/entity-actions/import/import-dictionary-modal.element.ts",
|
|
7902
8344
|
"properties": [
|
|
7903
8345
|
{
|
|
7904
8346
|
"name": "styles",
|
|
@@ -7909,11 +8351,11 @@
|
|
|
7909
8351
|
},
|
|
7910
8352
|
{
|
|
7911
8353
|
"name": "umb-dictionary-menu-item",
|
|
7912
|
-
"path": "./../../src/
|
|
8354
|
+
"path": "./../../src/packages/translation/dictionary/menu-item/dictionary-menu-item.element.ts"
|
|
7913
8355
|
},
|
|
7914
8356
|
{
|
|
7915
8357
|
"name": "umb-dictionary-workspace-edit",
|
|
7916
|
-
"path": "./../../src/
|
|
8358
|
+
"path": "./../../src/packages/translation/dictionary/workspace/dictionary-workspace-edit.element.ts",
|
|
7917
8359
|
"properties": [
|
|
7918
8360
|
{
|
|
7919
8361
|
"name": "styles",
|
|
@@ -7924,7 +8366,7 @@
|
|
|
7924
8366
|
},
|
|
7925
8367
|
{
|
|
7926
8368
|
"name": "umb-dictionary-workspace",
|
|
7927
|
-
"path": "./../../src/
|
|
8369
|
+
"path": "./../../src/packages/translation/dictionary/workspace/dictionary-workspace.element.ts",
|
|
7928
8370
|
"properties": [
|
|
7929
8371
|
{
|
|
7930
8372
|
"name": "styles",
|
|
@@ -7935,7 +8377,7 @@
|
|
|
7935
8377
|
},
|
|
7936
8378
|
{
|
|
7937
8379
|
"name": "umb-workspace-view-dictionary-edit",
|
|
7938
|
-
"path": "./../../src/
|
|
8380
|
+
"path": "./../../src/packages/translation/dictionary/workspace/views/edit/workspace-view-dictionary-edit.element.ts",
|
|
7939
8381
|
"properties": [
|
|
7940
8382
|
{
|
|
7941
8383
|
"name": "styles",
|
|
@@ -7946,7 +8388,7 @@
|
|
|
7946
8388
|
},
|
|
7947
8389
|
{
|
|
7948
8390
|
"name": "umb-dictionary-item-picker-modal",
|
|
7949
|
-
"path": "./../../src/
|
|
8391
|
+
"path": "./../../src/packages/translation/modals/dictionary-item-picker/dictionary-item-picker-modal.element.ts",
|
|
7950
8392
|
"properties": [
|
|
7951
8393
|
{
|
|
7952
8394
|
"name": "styles",
|
|
@@ -7957,7 +8399,7 @@
|
|
|
7957
8399
|
},
|
|
7958
8400
|
{
|
|
7959
8401
|
"name": "umb-umbraco-news-dashboard",
|
|
7960
|
-
"path": "./../../src/
|
|
8402
|
+
"path": "./../../src/packages/umbraco-news/umbraco-news-dashboard.element.ts",
|
|
7961
8403
|
"properties": [
|
|
7962
8404
|
{
|
|
7963
8405
|
"name": "styles",
|
|
@@ -7968,7 +8410,7 @@
|
|
|
7968
8410
|
},
|
|
7969
8411
|
{
|
|
7970
8412
|
"name": "umb-current-user-header-app",
|
|
7971
|
-
"path": "./../../src/
|
|
8413
|
+
"path": "./../../src/packages/users/current-user/current-user-header-app.element.ts",
|
|
7972
8414
|
"properties": [
|
|
7973
8415
|
{
|
|
7974
8416
|
"name": "styles",
|
|
@@ -7979,7 +8421,7 @@
|
|
|
7979
8421
|
},
|
|
7980
8422
|
{
|
|
7981
8423
|
"name": "umb-change-password-modal",
|
|
7982
|
-
"path": "./../../src/
|
|
8424
|
+
"path": "./../../src/packages/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
7983
8425
|
"attributes": [
|
|
7984
8426
|
{
|
|
7985
8427
|
"name": "data"
|
|
@@ -8002,7 +8444,7 @@
|
|
|
8002
8444
|
},
|
|
8003
8445
|
{
|
|
8004
8446
|
"name": "umb-current-user-modal",
|
|
8005
|
-
"path": "./../../src/
|
|
8447
|
+
"path": "./../../src/packages/users/current-user/modals/current-user/current-user-modal.element.ts",
|
|
8006
8448
|
"properties": [
|
|
8007
8449
|
{
|
|
8008
8450
|
"name": "modalHandler"
|
|
@@ -8016,7 +8458,7 @@
|
|
|
8016
8458
|
},
|
|
8017
8459
|
{
|
|
8018
8460
|
"name": "umb-user-profile-app-external-login-providers",
|
|
8019
|
-
"path": "./../../src/
|
|
8461
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.ts",
|
|
8020
8462
|
"properties": [
|
|
8021
8463
|
{
|
|
8022
8464
|
"name": "styles",
|
|
@@ -8027,7 +8469,7 @@
|
|
|
8027
8469
|
},
|
|
8028
8470
|
{
|
|
8029
8471
|
"name": "umb-user-profile-app-history",
|
|
8030
|
-
"path": "./../../src/
|
|
8472
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
8031
8473
|
"properties": [
|
|
8032
8474
|
{
|
|
8033
8475
|
"name": "styles",
|
|
@@ -8038,7 +8480,7 @@
|
|
|
8038
8480
|
},
|
|
8039
8481
|
{
|
|
8040
8482
|
"name": "umb-user-dashboard-test",
|
|
8041
|
-
"path": "./../../src/
|
|
8483
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
8042
8484
|
"properties": [
|
|
8043
8485
|
{
|
|
8044
8486
|
"name": "styles",
|
|
@@ -8049,7 +8491,7 @@
|
|
|
8049
8491
|
},
|
|
8050
8492
|
{
|
|
8051
8493
|
"name": "umb-user-profile-app-profile",
|
|
8052
|
-
"path": "./../../src/
|
|
8494
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-profile.element.ts",
|
|
8053
8495
|
"properties": [
|
|
8054
8496
|
{
|
|
8055
8497
|
"name": "styles",
|
|
@@ -8060,7 +8502,18 @@
|
|
|
8060
8502
|
},
|
|
8061
8503
|
{
|
|
8062
8504
|
"name": "umb-user-profile-app-themes",
|
|
8063
|
-
"path": "./../../src/
|
|
8505
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-themes.element.ts",
|
|
8506
|
+
"properties": [
|
|
8507
|
+
{
|
|
8508
|
+
"name": "styles",
|
|
8509
|
+
"type": "CSSResult[]",
|
|
8510
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8511
|
+
}
|
|
8512
|
+
]
|
|
8513
|
+
},
|
|
8514
|
+
{
|
|
8515
|
+
"name": "umb-user-group-collection-header",
|
|
8516
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-collection-header.element.ts",
|
|
8064
8517
|
"properties": [
|
|
8065
8518
|
{
|
|
8066
8519
|
"name": "styles",
|
|
@@ -8070,68 +8523,168 @@
|
|
|
8070
8523
|
]
|
|
8071
8524
|
},
|
|
8072
8525
|
{
|
|
8073
|
-
"name": "umb-
|
|
8074
|
-
"path": "./../../src/
|
|
8526
|
+
"name": "umb-user-group-collection-view",
|
|
8527
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-collection-view.element.ts",
|
|
8528
|
+
"properties": [
|
|
8529
|
+
{
|
|
8530
|
+
"name": "styles",
|
|
8531
|
+
"type": "CSSResult[]",
|
|
8532
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8533
|
+
}
|
|
8534
|
+
]
|
|
8535
|
+
},
|
|
8536
|
+
{
|
|
8537
|
+
"name": "umb-user-group-collection",
|
|
8538
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-collection.element.ts",
|
|
8539
|
+
"properties": [
|
|
8540
|
+
{
|
|
8541
|
+
"name": "styles",
|
|
8542
|
+
"type": "CSSResult[]",
|
|
8543
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8544
|
+
}
|
|
8545
|
+
]
|
|
8546
|
+
},
|
|
8547
|
+
{
|
|
8548
|
+
"name": "umb-user-group-table-name-column-layout",
|
|
8549
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-table-name-column-layout.element.ts",
|
|
8550
|
+
"properties": [
|
|
8551
|
+
{
|
|
8552
|
+
"name": "item"
|
|
8553
|
+
},
|
|
8554
|
+
{
|
|
8555
|
+
"name": "value"
|
|
8556
|
+
}
|
|
8557
|
+
]
|
|
8558
|
+
},
|
|
8559
|
+
{
|
|
8560
|
+
"name": "umb-user-group-table-sections-column-layout",
|
|
8561
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-table-sections-column-layout.element.ts",
|
|
8562
|
+
"properties": [
|
|
8563
|
+
{
|
|
8564
|
+
"name": "item"
|
|
8565
|
+
},
|
|
8566
|
+
{
|
|
8567
|
+
"name": "value"
|
|
8568
|
+
}
|
|
8569
|
+
]
|
|
8570
|
+
},
|
|
8571
|
+
{
|
|
8572
|
+
"name": "umb-user-group-input",
|
|
8573
|
+
"path": "./../../src/packages/users/user-groups/components/input-user-group/user-group-input.element.ts",
|
|
8075
8574
|
"attributes": [
|
|
8076
8575
|
{
|
|
8077
|
-
"name": "
|
|
8078
|
-
"
|
|
8079
|
-
"
|
|
8576
|
+
"name": "min",
|
|
8577
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
8578
|
+
"type": "number",
|
|
8579
|
+
"default": "\"0\""
|
|
8080
8580
|
},
|
|
8081
8581
|
{
|
|
8082
|
-
"name": "
|
|
8582
|
+
"name": "max",
|
|
8583
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
8584
|
+
"type": "number",
|
|
8585
|
+
"default": "\"Infinity\""
|
|
8586
|
+
},
|
|
8587
|
+
{
|
|
8588
|
+
"name": "min-message",
|
|
8589
|
+
"description": "Min validation message.",
|
|
8083
8590
|
"type": "boolean",
|
|
8084
|
-
"default": "
|
|
8591
|
+
"default": "\"\""
|
|
8085
8592
|
},
|
|
8086
8593
|
{
|
|
8087
|
-
"name": "
|
|
8088
|
-
"
|
|
8594
|
+
"name": "maxMessage",
|
|
8595
|
+
"description": "Max validation message.",
|
|
8596
|
+
"type": "boolean",
|
|
8597
|
+
"default": "\"\""
|
|
8089
8598
|
},
|
|
8090
8599
|
{
|
|
8091
|
-
"name": "
|
|
8092
|
-
"type": "
|
|
8093
|
-
"default": "\"small\""
|
|
8600
|
+
"name": "value",
|
|
8601
|
+
"type": "string"
|
|
8094
8602
|
}
|
|
8095
8603
|
],
|
|
8096
8604
|
"properties": [
|
|
8605
|
+
{
|
|
8606
|
+
"name": "min",
|
|
8607
|
+
"attribute": "min",
|
|
8608
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
8609
|
+
"type": "number",
|
|
8610
|
+
"default": "\"0\""
|
|
8611
|
+
},
|
|
8612
|
+
{
|
|
8613
|
+
"name": "max",
|
|
8614
|
+
"attribute": "max",
|
|
8615
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
8616
|
+
"type": "number",
|
|
8617
|
+
"default": "\"Infinity\""
|
|
8618
|
+
},
|
|
8619
|
+
{
|
|
8620
|
+
"name": "minMessage",
|
|
8621
|
+
"attribute": "min-message",
|
|
8622
|
+
"description": "Min validation message.",
|
|
8623
|
+
"type": "boolean",
|
|
8624
|
+
"default": "\"\""
|
|
8625
|
+
},
|
|
8626
|
+
{
|
|
8627
|
+
"name": "maxMessage",
|
|
8628
|
+
"attribute": "maxMessage",
|
|
8629
|
+
"description": "Max validation message.",
|
|
8630
|
+
"type": "boolean",
|
|
8631
|
+
"default": "\"\""
|
|
8632
|
+
},
|
|
8633
|
+
{
|
|
8634
|
+
"name": "selectedIds",
|
|
8635
|
+
"type": "string[]"
|
|
8636
|
+
},
|
|
8097
8637
|
{
|
|
8098
8638
|
"name": "styles",
|
|
8099
8639
|
"type": "CSSResult[]",
|
|
8100
8640
|
"default": "[\"UUITextStyles\",null]"
|
|
8101
8641
|
},
|
|
8642
|
+
{
|
|
8643
|
+
"name": "formAssociated",
|
|
8644
|
+
"type": "boolean"
|
|
8645
|
+
},
|
|
8102
8646
|
{
|
|
8103
8647
|
"name": "value",
|
|
8104
8648
|
"attribute": "value",
|
|
8105
|
-
"type": "string
|
|
8106
|
-
"default": "[]"
|
|
8649
|
+
"type": "string"
|
|
8107
8650
|
},
|
|
8108
8651
|
{
|
|
8109
|
-
"name": "
|
|
8110
|
-
"
|
|
8111
|
-
"type": "boolean",
|
|
8112
|
-
"default": "true"
|
|
8652
|
+
"name": "name",
|
|
8653
|
+
"type": "string"
|
|
8113
8654
|
},
|
|
8114
8655
|
{
|
|
8115
|
-
"name": "
|
|
8116
|
-
"
|
|
8117
|
-
"default": "\"sidebar\""
|
|
8656
|
+
"name": "validationMessage",
|
|
8657
|
+
"type": "string"
|
|
8118
8658
|
},
|
|
8119
8659
|
{
|
|
8120
|
-
"name": "
|
|
8121
|
-
"
|
|
8122
|
-
|
|
8123
|
-
"default": "\"small\""
|
|
8124
|
-
}
|
|
8125
|
-
],
|
|
8126
|
-
"events": [
|
|
8660
|
+
"name": "validity",
|
|
8661
|
+
"type": "ValidityState"
|
|
8662
|
+
},
|
|
8127
8663
|
{
|
|
8128
|
-
"name": "
|
|
8664
|
+
"name": "pristine",
|
|
8665
|
+
"type": "boolean"
|
|
8666
|
+
},
|
|
8667
|
+
{
|
|
8668
|
+
"name": "required",
|
|
8669
|
+
"type": "boolean"
|
|
8670
|
+
},
|
|
8671
|
+
{
|
|
8672
|
+
"name": "requiredMessage",
|
|
8673
|
+
"type": "string"
|
|
8674
|
+
},
|
|
8675
|
+
{
|
|
8676
|
+
"name": "error",
|
|
8677
|
+
"type": "boolean"
|
|
8678
|
+
},
|
|
8679
|
+
{
|
|
8680
|
+
"name": "errorMessage",
|
|
8681
|
+
"type": "string"
|
|
8129
8682
|
}
|
|
8130
8683
|
]
|
|
8131
8684
|
},
|
|
8132
8685
|
{
|
|
8133
8686
|
"name": "umb-user-group-picker-modal",
|
|
8134
|
-
"path": "./../../src/
|
|
8687
|
+
"path": "./../../src/packages/users/user-groups/modals/user-group-picker/user-group-picker-modal.element.ts",
|
|
8135
8688
|
"properties": [
|
|
8136
8689
|
{
|
|
8137
8690
|
"name": "styles",
|
|
@@ -8141,8 +8694,8 @@
|
|
|
8141
8694
|
]
|
|
8142
8695
|
},
|
|
8143
8696
|
{
|
|
8144
|
-
"name": "umb-section-view
|
|
8145
|
-
"path": "./../../src/
|
|
8697
|
+
"name": "umb-user-groups-section-view",
|
|
8698
|
+
"path": "./../../src/packages/users/user-groups/section-view/user-groups-section-view.element.ts",
|
|
8146
8699
|
"properties": [
|
|
8147
8700
|
{
|
|
8148
8701
|
"name": "styles",
|
|
@@ -8153,7 +8706,7 @@
|
|
|
8153
8706
|
},
|
|
8154
8707
|
{
|
|
8155
8708
|
"name": "umb-workspace-action-user-group-save",
|
|
8156
|
-
"path": "./../../src/
|
|
8709
|
+
"path": "./../../src/packages/users/user-groups/workspace/actions/workspace-action-user-group-save.element.ts",
|
|
8157
8710
|
"properties": [
|
|
8158
8711
|
{
|
|
8159
8712
|
"name": "styles",
|
|
@@ -8162,39 +8715,10 @@
|
|
|
8162
8715
|
}
|
|
8163
8716
|
]
|
|
8164
8717
|
},
|
|
8165
|
-
{
|
|
8166
|
-
"name": "umb-user-group-table-name-column-layout",
|
|
8167
|
-
"path": "./../../src/backoffice/users/user-groups/workspace/user-group-table-name-column-layout.element.ts",
|
|
8168
|
-
"properties": [
|
|
8169
|
-
{
|
|
8170
|
-
"name": "item"
|
|
8171
|
-
},
|
|
8172
|
-
{
|
|
8173
|
-
"name": "value"
|
|
8174
|
-
}
|
|
8175
|
-
]
|
|
8176
|
-
},
|
|
8177
|
-
{
|
|
8178
|
-
"name": "umb-user-group-table-sections-column-layout",
|
|
8179
|
-
"path": "./../../src/backoffice/users/user-groups/workspace/user-group-table-sections-column-layout.element.ts",
|
|
8180
|
-
"properties": [
|
|
8181
|
-
{
|
|
8182
|
-
"name": "item"
|
|
8183
|
-
},
|
|
8184
|
-
{
|
|
8185
|
-
"name": "value"
|
|
8186
|
-
}
|
|
8187
|
-
]
|
|
8188
|
-
},
|
|
8189
8718
|
{
|
|
8190
8719
|
"name": "umb-user-group-workspace-edit",
|
|
8191
|
-
"path": "./../../src/
|
|
8720
|
+
"path": "./../../src/packages/users/user-groups/workspace/user-group-workspace-edit.element.ts",
|
|
8192
8721
|
"properties": [
|
|
8193
|
-
{
|
|
8194
|
-
"name": "defaultPermissions",
|
|
8195
|
-
"type": "{ name: string; permissions: { name: string; description: string; value: boolean; }[]; }[]",
|
|
8196
|
-
"default": "[{\"name\":\"Administration\",\"permissions\":[{\"name\":\"Culture and Hostnames\",\"description\":\"Allow access to assign culture and hostnames\",\"value\":false},{\"name\":\"Restrict Public Access\",\"description\":\"Allow access to set and change access restrictions for a node\",\"value\":false},{\"name\":\"Rollback\",\"description\":\"Allow access to roll back a node to a previous state\",\"value\":false}]},{\"name\":\"Content\",\"permissions\":[{\"name\":\"Browse Node\",\"description\":\"Allow access to view a node\",\"value\":false},{\"name\":\"Create Content Template\",\"description\":\"Allow access to create a Content Template\",\"value\":false},{\"name\":\"Delete\",\"description\":\"Allow access to delete nodes\",\"value\":false},{\"name\":\"Create\",\"description\":\"Allow access to create nodes\",\"value\":false},{\"name\":\"Publish\",\"description\":\"Allow access to publish nodes\",\"value\":false},{\"name\":\"Permissions\",\"description\":\"Allow access to change permissions for a node\",\"value\":false},{\"name\":\"Send To Publish\",\"description\":\"Allow access to send a node for approval before publishing\",\"value\":false},{\"name\":\"Unpublish\",\"description\":\"Allow access to unpublish a node\",\"value\":false},{\"name\":\"Update\",\"description\":\"Allow access to save a node\",\"value\":false},{\"name\":\"Full restore\",\"description\":\"Allow the user to restore items\",\"value\":false},{\"name\":\"Partial restore\",\"description\":\"Allow the user to partial restore items\",\"value\":false},{\"name\":\"Queue for transfer\",\"description\":\"Allow the user to queue item(s)\",\"value\":false}]},{\"name\":\"Structure\",\"permissions\":[{\"name\":\"Copy\",\"description\":\"Allow access to copy a node\",\"value\":false},{\"name\":\"Move\",\"description\":\"Allow access to move a node\",\"value\":false},{\"name\":\"Sort\",\"description\":\"Allow access to change the sort order for nodes\",\"value\":false}]}]"
|
|
8197
|
-
},
|
|
8198
8722
|
{
|
|
8199
8723
|
"name": "styles",
|
|
8200
8724
|
"type": "CSSResult[]",
|
|
@@ -8204,7 +8728,7 @@
|
|
|
8204
8728
|
},
|
|
8205
8729
|
{
|
|
8206
8730
|
"name": "umb-user-group-workspace",
|
|
8207
|
-
"path": "./../../src/
|
|
8731
|
+
"path": "./../../src/packages/users/user-groups/workspace/user-group-workspace.element.ts",
|
|
8208
8732
|
"properties": [
|
|
8209
8733
|
{
|
|
8210
8734
|
"name": "styles",
|
|
@@ -8213,20 +8737,9 @@
|
|
|
8213
8737
|
}
|
|
8214
8738
|
]
|
|
8215
8739
|
},
|
|
8216
|
-
{
|
|
8217
|
-
"name": "umb-workspace-view-user-groups",
|
|
8218
|
-
"path": "./../../src/backoffice/users/user-groups/workspace/workspace-view-user-groups.element.ts",
|
|
8219
|
-
"properties": [
|
|
8220
|
-
{
|
|
8221
|
-
"name": "styles",
|
|
8222
|
-
"type": "CSSResult[]",
|
|
8223
|
-
"default": "[\"UUITextStyles\",null]"
|
|
8224
|
-
}
|
|
8225
|
-
]
|
|
8226
|
-
},
|
|
8227
8740
|
{
|
|
8228
8741
|
"name": "umb-user-collection-header",
|
|
8229
|
-
"path": "./../../src/
|
|
8742
|
+
"path": "./../../src/packages/users/users/collection/user-collection-header.element.ts",
|
|
8230
8743
|
"properties": [
|
|
8231
8744
|
{
|
|
8232
8745
|
"name": "styles",
|
|
@@ -8237,7 +8750,7 @@
|
|
|
8237
8750
|
},
|
|
8238
8751
|
{
|
|
8239
8752
|
"name": "umb-user-collection",
|
|
8240
|
-
"path": "./../../src/
|
|
8753
|
+
"path": "./../../src/packages/users/users/collection/user-collection.element.ts",
|
|
8241
8754
|
"properties": [
|
|
8242
8755
|
{
|
|
8243
8756
|
"name": "styles",
|
|
@@ -8248,7 +8761,7 @@
|
|
|
8248
8761
|
},
|
|
8249
8762
|
{
|
|
8250
8763
|
"name": "umb-user-collection-grid-view",
|
|
8251
|
-
"path": "./../../src/
|
|
8764
|
+
"path": "./../../src/packages/users/users/collection/views/grid/user-collection-grid-view.element.ts",
|
|
8252
8765
|
"properties": [
|
|
8253
8766
|
{
|
|
8254
8767
|
"name": "styles",
|
|
@@ -8259,7 +8772,7 @@
|
|
|
8259
8772
|
},
|
|
8260
8773
|
{
|
|
8261
8774
|
"name": "umb-user-table-name-column-layout",
|
|
8262
|
-
"path": "./../../src/
|
|
8775
|
+
"path": "./../../src/packages/users/users/collection/views/table/column-layouts/name/user-table-name-column-layout.element.ts",
|
|
8263
8776
|
"properties": [
|
|
8264
8777
|
{
|
|
8265
8778
|
"name": "column"
|
|
@@ -8274,7 +8787,7 @@
|
|
|
8274
8787
|
},
|
|
8275
8788
|
{
|
|
8276
8789
|
"name": "umb-user-table-status-column-layout",
|
|
8277
|
-
"path": "./../../src/
|
|
8790
|
+
"path": "./../../src/packages/users/users/collection/views/table/column-layouts/status/user-table-status-column-layout.element.ts",
|
|
8278
8791
|
"properties": [
|
|
8279
8792
|
{
|
|
8280
8793
|
"name": "value"
|
|
@@ -8283,7 +8796,7 @@
|
|
|
8283
8796
|
},
|
|
8284
8797
|
{
|
|
8285
8798
|
"name": "umb-user-collection-table-view",
|
|
8286
|
-
"path": "./../../src/
|
|
8799
|
+
"path": "./../../src/packages/users/users/collection/views/table/user-collection-table-view.element.ts",
|
|
8287
8800
|
"properties": [
|
|
8288
8801
|
{
|
|
8289
8802
|
"name": "styles",
|
|
@@ -8294,7 +8807,7 @@
|
|
|
8294
8807
|
},
|
|
8295
8808
|
{
|
|
8296
8809
|
"name": "umb-workspace-view-users-table",
|
|
8297
|
-
"path": "./../../src/
|
|
8810
|
+
"path": "./../../src/packages/users/users/collection/views/table/user-collection-table-view.element.ts",
|
|
8298
8811
|
"properties": [
|
|
8299
8812
|
{
|
|
8300
8813
|
"name": "styles",
|
|
@@ -8305,7 +8818,7 @@
|
|
|
8305
8818
|
},
|
|
8306
8819
|
{
|
|
8307
8820
|
"name": "umb-user-input",
|
|
8308
|
-
"path": "./../../src/
|
|
8821
|
+
"path": "./../../src/packages/users/users/components/user-input/user-input.element.ts",
|
|
8309
8822
|
"attributes": [
|
|
8310
8823
|
{
|
|
8311
8824
|
"name": "min",
|
|
@@ -8419,7 +8932,7 @@
|
|
|
8419
8932
|
},
|
|
8420
8933
|
{
|
|
8421
8934
|
"name": "umb-user-create-modal",
|
|
8422
|
-
"path": "./../../src/
|
|
8935
|
+
"path": "./../../src/packages/users/users/modals/create/user-create-modal.element.ts",
|
|
8423
8936
|
"properties": [
|
|
8424
8937
|
{
|
|
8425
8938
|
"name": "styles",
|
|
@@ -8430,7 +8943,7 @@
|
|
|
8430
8943
|
},
|
|
8431
8944
|
{
|
|
8432
8945
|
"name": "umb-user-invite-modal",
|
|
8433
|
-
"path": "./../../src/
|
|
8946
|
+
"path": "./../../src/packages/users/users/modals/invite/user-invite-modal.element.ts",
|
|
8434
8947
|
"properties": [
|
|
8435
8948
|
{
|
|
8436
8949
|
"name": "styles",
|
|
@@ -8441,7 +8954,7 @@
|
|
|
8441
8954
|
},
|
|
8442
8955
|
{
|
|
8443
8956
|
"name": "umb-user-picker-modal",
|
|
8444
|
-
"path": "./../../src/
|
|
8957
|
+
"path": "./../../src/packages/users/users/modals/user-picker/user-picker-modal.element.ts",
|
|
8445
8958
|
"properties": [
|
|
8446
8959
|
{
|
|
8447
8960
|
"name": "styles",
|
|
@@ -8452,7 +8965,7 @@
|
|
|
8452
8965
|
},
|
|
8453
8966
|
{
|
|
8454
8967
|
"name": "umb-section-view-users",
|
|
8455
|
-
"path": "./../../src/
|
|
8968
|
+
"path": "./../../src/packages/users/users/section-view/users-section-view.element.ts",
|
|
8456
8969
|
"properties": [
|
|
8457
8970
|
{
|
|
8458
8971
|
"name": "styles",
|
|
@@ -8463,7 +8976,7 @@
|
|
|
8463
8976
|
},
|
|
8464
8977
|
{
|
|
8465
8978
|
"name": "umb-user-workspace-action-save",
|
|
8466
|
-
"path": "./../../src/
|
|
8979
|
+
"path": "./../../src/packages/users/users/workspace/actions/user-workspace-action-save.element.ts",
|
|
8467
8980
|
"properties": [
|
|
8468
8981
|
{
|
|
8469
8982
|
"name": "styles",
|
|
@@ -8474,7 +8987,7 @@
|
|
|
8474
8987
|
},
|
|
8475
8988
|
{
|
|
8476
8989
|
"name": "umb-user-workspace-edit",
|
|
8477
|
-
"path": "./../../src/
|
|
8990
|
+
"path": "./../../src/packages/users/users/workspace/user-workspace-edit.element.ts",
|
|
8478
8991
|
"properties": [
|
|
8479
8992
|
{
|
|
8480
8993
|
"name": "styles",
|
|
@@ -8485,7 +8998,7 @@
|
|
|
8485
8998
|
},
|
|
8486
8999
|
{
|
|
8487
9000
|
"name": "umb-user-workspace",
|
|
8488
|
-
"path": "./../../src/
|
|
9001
|
+
"path": "./../../src/packages/users/users/workspace/user-workspace.element.ts",
|
|
8489
9002
|
"properties": [
|
|
8490
9003
|
{
|
|
8491
9004
|
"name": "styles",
|
|
@@ -8496,7 +9009,7 @@
|
|
|
8496
9009
|
},
|
|
8497
9010
|
{
|
|
8498
9011
|
"name": "umb-story-modal-context-example",
|
|
8499
|
-
"path": "./../../src/
|
|
9012
|
+
"path": "./../../src/shared/modal/stories/story-modal-service-example.element.ts",
|
|
8500
9013
|
"attributes": [
|
|
8501
9014
|
{
|
|
8502
9015
|
"name": "modalLayout",
|
|
@@ -8520,11 +9033,14 @@
|
|
|
8520
9033
|
},
|
|
8521
9034
|
{
|
|
8522
9035
|
"name": "umb-router-slot",
|
|
8523
|
-
"path": "./../../src/
|
|
9036
|
+
"path": "./../../src/shared/router/router-slot.element.ts",
|
|
8524
9037
|
"attributes": [
|
|
8525
9038
|
{
|
|
8526
9039
|
"name": "routes",
|
|
8527
9040
|
"type": "any[] | undefined"
|
|
9041
|
+
},
|
|
9042
|
+
{
|
|
9043
|
+
"name": "parent"
|
|
8528
9044
|
}
|
|
8529
9045
|
],
|
|
8530
9046
|
"properties": [
|
|
@@ -8533,6 +9049,10 @@
|
|
|
8533
9049
|
"attribute": "routes",
|
|
8534
9050
|
"type": "any[] | undefined"
|
|
8535
9051
|
},
|
|
9052
|
+
{
|
|
9053
|
+
"name": "parent",
|
|
9054
|
+
"attribute": "parent"
|
|
9055
|
+
},
|
|
8536
9056
|
{
|
|
8537
9057
|
"name": "absoluteRouterPath",
|
|
8538
9058
|
"type": "string | undefined"
|
|
@@ -8564,7 +9084,7 @@
|
|
|
8564
9084
|
},
|
|
8565
9085
|
{
|
|
8566
9086
|
"name": "umb-variant-router-slot",
|
|
8567
|
-
"path": "./../../src/
|
|
9087
|
+
"path": "./../../src/shared/router/variant-router-slot.element.ts",
|
|
8568
9088
|
"attributes": [
|
|
8569
9089
|
{
|
|
8570
9090
|
"name": "variantId",
|
|
@@ -8573,6 +9093,9 @@
|
|
|
8573
9093
|
{
|
|
8574
9094
|
"name": "routes",
|
|
8575
9095
|
"type": "any[] | undefined"
|
|
9096
|
+
},
|
|
9097
|
+
{
|
|
9098
|
+
"name": "parent"
|
|
8576
9099
|
}
|
|
8577
9100
|
],
|
|
8578
9101
|
"properties": [
|
|
@@ -8586,6 +9109,10 @@
|
|
|
8586
9109
|
"attribute": "routes",
|
|
8587
9110
|
"type": "any[] | undefined"
|
|
8588
9111
|
},
|
|
9112
|
+
{
|
|
9113
|
+
"name": "parent",
|
|
9114
|
+
"attribute": "parent"
|
|
9115
|
+
},
|
|
8589
9116
|
{
|
|
8590
9117
|
"name": "absoluteRouterPath",
|
|
8591
9118
|
"type": "string | undefined"
|
|
@@ -8614,154 +9141,6 @@
|
|
|
8614
9141
|
"description": "fires when a path of this router is changed"
|
|
8615
9142
|
}
|
|
8616
9143
|
]
|
|
8617
|
-
},
|
|
8618
|
-
{
|
|
8619
|
-
"name": "umb-installer-consent",
|
|
8620
|
-
"path": "./../../src/installer/consent/installer-consent.element.ts",
|
|
8621
|
-
"properties": [
|
|
8622
|
-
{
|
|
8623
|
-
"name": "styles",
|
|
8624
|
-
"type": "CSSResultGroup",
|
|
8625
|
-
"default": "[null]"
|
|
8626
|
-
}
|
|
8627
|
-
]
|
|
8628
|
-
},
|
|
8629
|
-
{
|
|
8630
|
-
"name": "umb-installer-database",
|
|
8631
|
-
"path": "./../../src/installer/database/installer-database.element.ts",
|
|
8632
|
-
"properties": [
|
|
8633
|
-
{
|
|
8634
|
-
"name": "databaseFormData"
|
|
8635
|
-
},
|
|
8636
|
-
{
|
|
8637
|
-
"name": "styles",
|
|
8638
|
-
"type": "CSSResultGroup",
|
|
8639
|
-
"default": "[null]"
|
|
8640
|
-
}
|
|
8641
|
-
]
|
|
8642
|
-
},
|
|
8643
|
-
{
|
|
8644
|
-
"name": "umb-installer-error",
|
|
8645
|
-
"path": "./../../src/installer/error/installer-error.element.ts",
|
|
8646
|
-
"properties": [
|
|
8647
|
-
{
|
|
8648
|
-
"name": "styles",
|
|
8649
|
-
"type": "CSSResultGroup",
|
|
8650
|
-
"default": "[null]"
|
|
8651
|
-
}
|
|
8652
|
-
]
|
|
8653
|
-
},
|
|
8654
|
-
{
|
|
8655
|
-
"name": "umb-installer",
|
|
8656
|
-
"path": "./../../src/installer/installer.element.ts",
|
|
8657
|
-
"properties": [
|
|
8658
|
-
{
|
|
8659
|
-
"name": "step",
|
|
8660
|
-
"type": "number",
|
|
8661
|
-
"default": "1"
|
|
8662
|
-
},
|
|
8663
|
-
{
|
|
8664
|
-
"name": "styles",
|
|
8665
|
-
"type": "CSSResultGroup",
|
|
8666
|
-
"default": "[null]"
|
|
8667
|
-
}
|
|
8668
|
-
]
|
|
8669
|
-
},
|
|
8670
|
-
{
|
|
8671
|
-
"name": "umb-installer-installing",
|
|
8672
|
-
"path": "./../../src/installer/installing/installer-installing.element.ts",
|
|
8673
|
-
"properties": [
|
|
8674
|
-
{
|
|
8675
|
-
"name": "styles",
|
|
8676
|
-
"type": "CSSResultGroup",
|
|
8677
|
-
"default": "[null]"
|
|
8678
|
-
}
|
|
8679
|
-
]
|
|
8680
|
-
},
|
|
8681
|
-
{
|
|
8682
|
-
"name": "umb-installer-layout",
|
|
8683
|
-
"path": "./../../src/installer/shared/layout/installer-layout.element.ts",
|
|
8684
|
-
"properties": [
|
|
8685
|
-
{
|
|
8686
|
-
"name": "styles",
|
|
8687
|
-
"type": "CSSResultGroup",
|
|
8688
|
-
"default": "[null]"
|
|
8689
|
-
}
|
|
8690
|
-
]
|
|
8691
|
-
},
|
|
8692
|
-
{
|
|
8693
|
-
"name": "umb-installer-user",
|
|
8694
|
-
"path": "./../../src/installer/user/installer-user.element.ts",
|
|
8695
|
-
"properties": [
|
|
8696
|
-
{
|
|
8697
|
-
"name": "styles",
|
|
8698
|
-
"type": "CSSResultGroup",
|
|
8699
|
-
"default": "[null]"
|
|
8700
|
-
}
|
|
8701
|
-
]
|
|
8702
|
-
},
|
|
8703
|
-
{
|
|
8704
|
-
"name": "umb-upgrader-view",
|
|
8705
|
-
"path": "./../../src/upgrader/upgrader-view.element.ts",
|
|
8706
|
-
"attributes": [
|
|
8707
|
-
{
|
|
8708
|
-
"name": "fetching",
|
|
8709
|
-
"type": "boolean",
|
|
8710
|
-
"default": "false"
|
|
8711
|
-
},
|
|
8712
|
-
{
|
|
8713
|
-
"name": "upgrading",
|
|
8714
|
-
"type": "boolean",
|
|
8715
|
-
"default": "false"
|
|
8716
|
-
},
|
|
8717
|
-
{
|
|
8718
|
-
"name": "errorMessage",
|
|
8719
|
-
"type": "string",
|
|
8720
|
-
"default": "\"\""
|
|
8721
|
-
},
|
|
8722
|
-
{
|
|
8723
|
-
"name": "settings"
|
|
8724
|
-
}
|
|
8725
|
-
],
|
|
8726
|
-
"properties": [
|
|
8727
|
-
{
|
|
8728
|
-
"name": "fetching",
|
|
8729
|
-
"attribute": "fetching",
|
|
8730
|
-
"type": "boolean",
|
|
8731
|
-
"default": "false"
|
|
8732
|
-
},
|
|
8733
|
-
{
|
|
8734
|
-
"name": "upgrading",
|
|
8735
|
-
"attribute": "upgrading",
|
|
8736
|
-
"type": "boolean",
|
|
8737
|
-
"default": "false"
|
|
8738
|
-
},
|
|
8739
|
-
{
|
|
8740
|
-
"name": "errorMessage",
|
|
8741
|
-
"attribute": "errorMessage",
|
|
8742
|
-
"type": "string",
|
|
8743
|
-
"default": "\"\""
|
|
8744
|
-
},
|
|
8745
|
-
{
|
|
8746
|
-
"name": "settings",
|
|
8747
|
-
"attribute": "settings"
|
|
8748
|
-
},
|
|
8749
|
-
{
|
|
8750
|
-
"name": "styles",
|
|
8751
|
-
"type": "CSSResultGroup",
|
|
8752
|
-
"default": "[null]"
|
|
8753
|
-
}
|
|
8754
|
-
],
|
|
8755
|
-
"events": [
|
|
8756
|
-
{
|
|
8757
|
-
"name": "onAuthorizeUpgrade",
|
|
8758
|
-
"description": "fires when the user clicks the continue button"
|
|
8759
|
-
}
|
|
8760
|
-
]
|
|
8761
|
-
},
|
|
8762
|
-
{
|
|
8763
|
-
"name": "umb-upgrader",
|
|
8764
|
-
"path": "./../../src/upgrader/upgrader.element.ts"
|
|
8765
9144
|
}
|
|
8766
9145
|
]
|
|
8767
9146
|
}
|