@umbraco-cms/backoffice 1.0.0-next.8afd0d0c → 1.0.0-next.8b7043b9
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/collection.d.ts +1 -1
- package/content-type.d.ts +1 -1
- package/context-api.d.ts +42 -2
- package/{controller.d.ts → controller-api.d.ts} +2 -3
- package/custom-elements.json +1464 -803
- package/data-type.d.ts +13 -0
- package/{element.d.ts → element-api.d.ts} +2 -2
- package/entity-action.d.ts +1 -1
- package/extension-api.d.ts +200 -0
- package/{extensions-registry.d.ts → extension-registry.d.ts} +12 -138
- package/modal.d.ts +60 -59
- package/models.d.ts +7 -3
- package/observable-api.d.ts +1 -1
- package/package.json +2 -2
- package/picker-input.d.ts +4 -3
- package/resources.d.ts +2 -15
- package/router.d.ts +1 -1
- package/section.d.ts +2 -2
- package/sorter.d.ts +1 -1
- package/store.d.ts +1 -1
- package/tree.d.ts +5 -1
- package/umbraco-package-schema.json +22 -22
- package/utils.d.ts +29 -1
- package/vscode-html-custom-data.json +521 -272
- package/workspace.d.ts +1 -1
- package/extensions-api.d.ts +0 -67
package/custom-elements.json
CHANGED
|
@@ -45,9 +45,158 @@
|
|
|
45
45
|
}
|
|
46
46
|
]
|
|
47
47
|
},
|
|
48
|
+
{
|
|
49
|
+
"name": "umb-context-provider",
|
|
50
|
+
"path": "./../../libs/context-api/provide/context-provider.element.ts",
|
|
51
|
+
"description": "Provides a value to the context down the DOM tree.",
|
|
52
|
+
"attributes": [
|
|
53
|
+
{
|
|
54
|
+
"name": "value",
|
|
55
|
+
"description": "The value to provide to the context.",
|
|
56
|
+
"type": "unknown"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "key",
|
|
60
|
+
"description": "The key to provide to the context."
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"properties": [
|
|
64
|
+
{
|
|
65
|
+
"name": "create",
|
|
66
|
+
"description": "The value to provide to the context.",
|
|
67
|
+
"type": "((host: any) => unknown) | undefined"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "value",
|
|
71
|
+
"attribute": "value",
|
|
72
|
+
"description": "The value to provide to the context.",
|
|
73
|
+
"type": "unknown"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "key",
|
|
77
|
+
"attribute": "key",
|
|
78
|
+
"description": "The key to provide to the context."
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"slots": [
|
|
82
|
+
{
|
|
83
|
+
"name": "",
|
|
84
|
+
"description": "The context will be available to all descendants given in the default slot."
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "umb-controller-host-initializer",
|
|
90
|
+
"path": "./../../libs/controller-api/controller-host-initializer.element.ts",
|
|
91
|
+
"properties": [
|
|
92
|
+
{
|
|
93
|
+
"name": "create",
|
|
94
|
+
"description": "A way to initialize controllers.",
|
|
95
|
+
"type": "((host: UmbControllerHostElement) => void) | undefined"
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "umb-app-error",
|
|
101
|
+
"path": "./../../src/apps/app/app-error.element.ts",
|
|
102
|
+
"description": "A full page error element that can be used either solo or for instance as the error 500 page and BootFailed",
|
|
103
|
+
"attributes": [
|
|
104
|
+
{
|
|
105
|
+
"name": "errorMessage",
|
|
106
|
+
"description": "The error message to display",
|
|
107
|
+
"type": "string | undefined"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "error",
|
|
111
|
+
"description": "The error to display",
|
|
112
|
+
"type": "unknown"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"properties": [
|
|
116
|
+
{
|
|
117
|
+
"name": "errorMessage",
|
|
118
|
+
"attribute": "errorMessage",
|
|
119
|
+
"description": "The error message to display",
|
|
120
|
+
"type": "string | undefined"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "error",
|
|
124
|
+
"attribute": "error",
|
|
125
|
+
"description": "The error to display",
|
|
126
|
+
"type": "unknown"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "render",
|
|
130
|
+
"type": "() => TemplateResult<1>",
|
|
131
|
+
"default": "\"() => html`\\n\\t\\t<div id=\\\"background\\\"></div>\\n\\n\\t\\t<div id=\\\"logo\\\">\\n\\t\\t\\t<img src=\\\"${logoImg}\\\" alt=\\\"Umbraco\\\" />\\n\\t\\t</div>\\n\\n\\t\\t<div id=\\\"container\\\">\\n\\t\\t\\t<uui-box id=\\\"box\\\">\\n\\t\\t\\t\\t<h1>Something went wrong</h1>\\n\\t\\t\\t\\t<p>${this.errorMessage}</p>\\n\\t\\t\\t\\t${this.error\\n\\t\\t\\t\\t\\t? html`\\n\\t\\t\\t\\t\\t\\t\\t<details>\\n\\t\\t\\t\\t\\t\\t\\t\\t<summary>Details</summary>\\n\\t\\t\\t\\t\\t\\t\\t\\t${this.renderError(this.error)}\\n\\t\\t\\t\\t\\t\\t\\t</details>\\n\\t\\t\\t\\t\\t `\\n\\t\\t\\t\\t\\t: nothing}\\n\\t\\t\\t</uui-box>\\n\\t\\t</div>\\n\\t`\""
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "styles",
|
|
135
|
+
"type": "CSSResult",
|
|
136
|
+
"default": "\"css`\\n\\t\\t#background {\\n\\t\\t\\tposition: fixed;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground-position: 50%;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t\\tbackground-size: cover;\\n\\t\\t\\tbackground-image: url('${unsafeCSS(backgroundImg)}');\\n\\t\\t\\twidth: 100vw;\\n\\t\\t\\theight: 100vh;\\n\\t\\t}\\n\\n\\t\\t#logo {\\n\\t\\t\\tposition: fixed;\\n\\t\\t\\ttop: var(--uui-size-space-5);\\n\\t\\t\\tleft: var(--uui-size-space-5);\\n\\t\\t\\theight: 30px;\\n\\t\\t}\\n\\n\\t\\t#logo img {\\n\\t\\t\\theight: 100%;\\n\\t\\t}\\n\\n\\t\\t#container {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: 100vw;\\n\\t\\t\\theight: 100vh;\\n\\t\\t}\\n\\n\\t\\t#box {\\n\\t\\t\\twidth: 50vw;\\n\\t\\t\\tpadding: var(--uui-size-space-6) var(--uui-size-space-5) var(--uui-size-space-5) var(--uui-size-space-5);\\n\\t\\t}\\n\\n\\t\\tdetails {\\n\\t\\t\\tpadding: var(--uui-size-space-2) var(--uui-size-space-3);\\n\\t\\t\\tbackground: var(--uui-color-surface-alt);\\n\\t\\t}\\n\\n\\t\\tpre {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\toverflow: auto;\\n\\t\\t}\\n\\t`\""
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "umb-app",
|
|
142
|
+
"path": "./../../src/apps/app/app.element.ts",
|
|
143
|
+
"attributes": [
|
|
144
|
+
{
|
|
145
|
+
"name": "serverUrl",
|
|
146
|
+
"description": "The base URL of the configured Umbraco server.",
|
|
147
|
+
"type": "string",
|
|
148
|
+
"default": "\"origin\""
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "backofficePath",
|
|
152
|
+
"description": "The base path of the backoffice.",
|
|
153
|
+
"type": "string",
|
|
154
|
+
"default": "\"/umbraco\""
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "bypassAuth",
|
|
158
|
+
"description": "Bypass authentication.",
|
|
159
|
+
"type": "boolean",
|
|
160
|
+
"default": "false"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"properties": [
|
|
164
|
+
{
|
|
165
|
+
"name": "serverUrl",
|
|
166
|
+
"attribute": "serverUrl",
|
|
167
|
+
"description": "The base URL of the configured Umbraco server.",
|
|
168
|
+
"type": "string",
|
|
169
|
+
"default": "\"origin\""
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "backofficePath",
|
|
173
|
+
"attribute": "backofficePath",
|
|
174
|
+
"description": "The base path of the backoffice.",
|
|
175
|
+
"type": "string",
|
|
176
|
+
"default": "\"/umbraco\""
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "bypassAuth",
|
|
180
|
+
"attribute": "bypassAuth",
|
|
181
|
+
"description": "Bypass authentication.",
|
|
182
|
+
"type": "boolean",
|
|
183
|
+
"default": "false"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "styles",
|
|
187
|
+
"type": "CSSResult",
|
|
188
|
+
"default": "\"css`\\n\\t\\t:host {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t}\\n\\n\\t\\t:host,\\n\\t\\t#router-slot {\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 100vh;\\n\\t\\t}\\n\\t`\""
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"events": [
|
|
192
|
+
{
|
|
193
|
+
"name": "umb:debug-contexts:data"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
48
197
|
{
|
|
49
198
|
"name": "umb-backoffice",
|
|
50
|
-
"path": "./../../src/backoffice/backoffice.element.ts",
|
|
199
|
+
"path": "./../../src/apps/backoffice/backoffice.element.ts",
|
|
51
200
|
"properties": [
|
|
52
201
|
{
|
|
53
202
|
"name": "styles",
|
|
@@ -58,7 +207,7 @@
|
|
|
58
207
|
},
|
|
59
208
|
{
|
|
60
209
|
"name": "umb-backoffice-header-apps",
|
|
61
|
-
"path": "./../../src/backoffice/
|
|
210
|
+
"path": "./../../src/apps/backoffice/components/backoffice-header-apps.element.ts",
|
|
62
211
|
"properties": [
|
|
63
212
|
{
|
|
64
213
|
"name": "styles",
|
|
@@ -69,7 +218,7 @@
|
|
|
69
218
|
},
|
|
70
219
|
{
|
|
71
220
|
"name": "umb-backoffice-header-sections",
|
|
72
|
-
"path": "./../../src/backoffice/
|
|
221
|
+
"path": "./../../src/apps/backoffice/components/backoffice-header-sections.element.ts",
|
|
73
222
|
"properties": [
|
|
74
223
|
{
|
|
75
224
|
"name": "styles",
|
|
@@ -80,7 +229,7 @@
|
|
|
80
229
|
},
|
|
81
230
|
{
|
|
82
231
|
"name": "umb-backoffice-header",
|
|
83
|
-
"path": "./../../src/backoffice/
|
|
232
|
+
"path": "./../../src/apps/backoffice/components/backoffice-header.element.ts",
|
|
84
233
|
"properties": [
|
|
85
234
|
{
|
|
86
235
|
"name": "styles",
|
|
@@ -91,7 +240,7 @@
|
|
|
91
240
|
},
|
|
92
241
|
{
|
|
93
242
|
"name": "umb-backoffice-main",
|
|
94
|
-
"path": "./../../src/backoffice/
|
|
243
|
+
"path": "./../../src/apps/backoffice/components/backoffice-main.element.ts",
|
|
95
244
|
"properties": [
|
|
96
245
|
{
|
|
97
246
|
"name": "styles",
|
|
@@ -100,9 +249,157 @@
|
|
|
100
249
|
}
|
|
101
250
|
]
|
|
102
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
|
+
},
|
|
103
400
|
{
|
|
104
401
|
"name": "umb-backoffice-modal-container",
|
|
105
|
-
"path": "./../../src/
|
|
402
|
+
"path": "./../../src/packages/core/components/backoffice-modal-container/backoffice-modal-container.element.ts",
|
|
106
403
|
"properties": [
|
|
107
404
|
{
|
|
108
405
|
"name": "styles",
|
|
@@ -113,7 +410,7 @@
|
|
|
113
410
|
},
|
|
114
411
|
{
|
|
115
412
|
"name": "umb-backoffice-notification-container",
|
|
116
|
-
"path": "./../../src/
|
|
413
|
+
"path": "./../../src/packages/core/components/backoffice-notification-container/backoffice-notification-container.element.ts",
|
|
117
414
|
"properties": [
|
|
118
415
|
{
|
|
119
416
|
"name": "styles",
|
|
@@ -124,7 +421,7 @@
|
|
|
124
421
|
},
|
|
125
422
|
{
|
|
126
423
|
"name": "umb-body-layout",
|
|
127
|
-
"path": "./../../src/
|
|
424
|
+
"path": "./../../src/packages/core/components/body-layout/body-layout.element.ts",
|
|
128
425
|
"attributes": [
|
|
129
426
|
{
|
|
130
427
|
"name": "headline",
|
|
@@ -172,7 +469,7 @@
|
|
|
172
469
|
},
|
|
173
470
|
{
|
|
174
471
|
"name": "umb-button-with-dropdown",
|
|
175
|
-
"path": "./../../src/
|
|
472
|
+
"path": "./../../src/packages/core/components/button-with-dropdown/button-with-dropdown.element.ts",
|
|
176
473
|
"attributes": [
|
|
177
474
|
{
|
|
178
475
|
"name": "label",
|
|
@@ -198,7 +495,12 @@
|
|
|
198
495
|
"name": "placement",
|
|
199
496
|
"type": "PopoverPlacement",
|
|
200
497
|
"default": "\"bottom-start\""
|
|
201
|
-
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"name": "compact",
|
|
501
|
+
"type": "boolean",
|
|
502
|
+
"default": "false"
|
|
503
|
+
}
|
|
202
504
|
],
|
|
203
505
|
"properties": [
|
|
204
506
|
{
|
|
@@ -231,6 +533,12 @@
|
|
|
231
533
|
"type": "PopoverPlacement",
|
|
232
534
|
"default": "\"bottom-start\""
|
|
233
535
|
},
|
|
536
|
+
{
|
|
537
|
+
"name": "compact",
|
|
538
|
+
"attribute": "compact",
|
|
539
|
+
"type": "boolean",
|
|
540
|
+
"default": "false"
|
|
541
|
+
},
|
|
234
542
|
{
|
|
235
543
|
"name": "symbolExpand",
|
|
236
544
|
"type": "UUISymbolExpandElement"
|
|
@@ -248,7 +556,7 @@
|
|
|
248
556
|
},
|
|
249
557
|
{
|
|
250
558
|
"name": "umb-code-block",
|
|
251
|
-
"path": "./../../src/
|
|
559
|
+
"path": "./../../src/packages/core/components/code-block/code-block.element.ts",
|
|
252
560
|
"description": "A simple styled box for showing code-based error messages.",
|
|
253
561
|
"properties": [
|
|
254
562
|
{
|
|
@@ -266,7 +574,7 @@
|
|
|
266
574
|
},
|
|
267
575
|
{
|
|
268
576
|
"name": "umb-code-editor",
|
|
269
|
-
"path": "./../../src/
|
|
577
|
+
"path": "./../../src/packages/core/components/code-editor/code-editor.element.ts",
|
|
270
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`.",
|
|
271
579
|
"attributes": [
|
|
272
580
|
{
|
|
@@ -361,7 +669,7 @@
|
|
|
361
669
|
},
|
|
362
670
|
{
|
|
363
671
|
"name": "umb-collection-selection-actions",
|
|
364
|
-
"path": "./../../src/
|
|
672
|
+
"path": "./../../src/packages/core/components/collection/collection-selection-actions.element.ts",
|
|
365
673
|
"properties": [
|
|
366
674
|
{
|
|
367
675
|
"name": "styles",
|
|
@@ -372,7 +680,7 @@
|
|
|
372
680
|
},
|
|
373
681
|
{
|
|
374
682
|
"name": "umb-collection-toolbar",
|
|
375
|
-
"path": "./../../src/
|
|
683
|
+
"path": "./../../src/packages/core/components/collection/collection-toolbar.element.ts",
|
|
376
684
|
"attributes": [
|
|
377
685
|
{
|
|
378
686
|
"name": "actions",
|
|
@@ -412,7 +720,7 @@
|
|
|
412
720
|
},
|
|
413
721
|
{
|
|
414
722
|
"name": "umb-collection",
|
|
415
|
-
"path": "./../../src/
|
|
723
|
+
"path": "./../../src/packages/core/components/collection/collection.element.ts",
|
|
416
724
|
"attributes": [
|
|
417
725
|
{
|
|
418
726
|
"name": "entity-type",
|
|
@@ -434,7 +742,7 @@
|
|
|
434
742
|
},
|
|
435
743
|
{
|
|
436
744
|
"name": "umb-dashboard-collection",
|
|
437
|
-
"path": "./../../src/
|
|
745
|
+
"path": "./../../src/packages/core/components/collection/dashboards/dashboard-collection.element.ts",
|
|
438
746
|
"properties": [
|
|
439
747
|
{
|
|
440
748
|
"name": "manifest"
|
|
@@ -446,9 +754,127 @@
|
|
|
446
754
|
}
|
|
447
755
|
]
|
|
448
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
|
+
},
|
|
449
875
|
{
|
|
450
876
|
"name": "umb-debug",
|
|
451
|
-
"path": "./../../src/
|
|
877
|
+
"path": "./../../src/packages/core/components/debug/debug.element.ts",
|
|
452
878
|
"attributes": [
|
|
453
879
|
{
|
|
454
880
|
"name": "visible",
|
|
@@ -488,7 +914,7 @@
|
|
|
488
914
|
},
|
|
489
915
|
{
|
|
490
916
|
"name": "umb-context-debugger-modal",
|
|
491
|
-
"path": "./../../src/
|
|
917
|
+
"path": "./../../src/packages/core/components/debug/modals/debug/debug-modal.element.ts",
|
|
492
918
|
"properties": [
|
|
493
919
|
{
|
|
494
920
|
"name": "styles",
|
|
@@ -499,7 +925,7 @@
|
|
|
499
925
|
},
|
|
500
926
|
{
|
|
501
927
|
"name": "umb-dropdown",
|
|
502
|
-
"path": "./../../src/
|
|
928
|
+
"path": "./../../src/packages/core/components/dropdown/dropdown.element.ts",
|
|
503
929
|
"attributes": [
|
|
504
930
|
{
|
|
505
931
|
"name": "open",
|
|
@@ -523,7 +949,7 @@
|
|
|
523
949
|
},
|
|
524
950
|
{
|
|
525
951
|
"name": "umb-empty-state",
|
|
526
|
-
"path": "./../../src/
|
|
952
|
+
"path": "./../../src/packages/core/components/empty-state/empty-state.element.ts",
|
|
527
953
|
"attributes": [
|
|
528
954
|
{
|
|
529
955
|
"name": "size",
|
|
@@ -560,7 +986,7 @@
|
|
|
560
986
|
},
|
|
561
987
|
{
|
|
562
988
|
"name": "umb-entity-action-list",
|
|
563
|
-
"path": "./../../src/
|
|
989
|
+
"path": "./../../src/packages/core/components/entity-action/entity-action-list.element.ts",
|
|
564
990
|
"attributes": [
|
|
565
991
|
{
|
|
566
992
|
"name": "entity-type",
|
|
@@ -586,7 +1012,7 @@
|
|
|
586
1012
|
},
|
|
587
1013
|
{
|
|
588
1014
|
"name": "umb-entity-action",
|
|
589
|
-
"path": "./../../src/
|
|
1015
|
+
"path": "./../../src/packages/core/components/entity-action/entity-action.element.ts",
|
|
590
1016
|
"attributes": [
|
|
591
1017
|
{
|
|
592
1018
|
"name": "unique",
|
|
@@ -606,7 +1032,7 @@
|
|
|
606
1032
|
},
|
|
607
1033
|
{
|
|
608
1034
|
"name": "umb-entity-bulk-action",
|
|
609
|
-
"path": "./../../src/
|
|
1035
|
+
"path": "./../../src/packages/core/components/entity-bulk-action/entity-bulk-action.element.ts",
|
|
610
1036
|
"properties": [
|
|
611
1037
|
{
|
|
612
1038
|
"name": "selection",
|
|
@@ -619,7 +1045,7 @@
|
|
|
619
1045
|
},
|
|
620
1046
|
{
|
|
621
1047
|
"name": "umb-extension-slot",
|
|
622
|
-
"path": "./../../src/
|
|
1048
|
+
"path": "./../../src/packages/core/components/extension-slot/extension-slot.element.ts",
|
|
623
1049
|
"attributes": [
|
|
624
1050
|
{
|
|
625
1051
|
"name": "type",
|
|
@@ -680,7 +1106,7 @@
|
|
|
680
1106
|
},
|
|
681
1107
|
{
|
|
682
1108
|
"name": "umb-footer-layout",
|
|
683
|
-
"path": "./../../src/
|
|
1109
|
+
"path": "./../../src/packages/core/components/footer-layout/footer-layout.element.ts",
|
|
684
1110
|
"properties": [
|
|
685
1111
|
{
|
|
686
1112
|
"name": "styles",
|
|
@@ -701,7 +1127,7 @@
|
|
|
701
1127
|
},
|
|
702
1128
|
{
|
|
703
1129
|
"name": "umb-header-app-button",
|
|
704
|
-
"path": "./../../src/
|
|
1130
|
+
"path": "./../../src/packages/core/components/header-app/header-app-button.element.ts",
|
|
705
1131
|
"properties": [
|
|
706
1132
|
{
|
|
707
1133
|
"name": "manifest"
|
|
@@ -715,7 +1141,7 @@
|
|
|
715
1141
|
},
|
|
716
1142
|
{
|
|
717
1143
|
"name": "umb-history-item",
|
|
718
|
-
"path": "./../../src/
|
|
1144
|
+
"path": "./../../src/packages/core/components/history/history-item.element.ts",
|
|
719
1145
|
"attributes": [
|
|
720
1146
|
{
|
|
721
1147
|
"name": "src",
|
|
@@ -755,7 +1181,7 @@
|
|
|
755
1181
|
},
|
|
756
1182
|
{
|
|
757
1183
|
"name": "umb-history-list",
|
|
758
|
-
"path": "./../../src/
|
|
1184
|
+
"path": "./../../src/packages/core/components/history/history-list.element.ts",
|
|
759
1185
|
"properties": [
|
|
760
1186
|
{
|
|
761
1187
|
"name": "styles",
|
|
@@ -766,7 +1192,7 @@
|
|
|
766
1192
|
},
|
|
767
1193
|
{
|
|
768
1194
|
"name": "umb-input-checkbox-list",
|
|
769
|
-
"path": "./../../src/
|
|
1195
|
+
"path": "./../../src/packages/core/components/input-checkbox-list/input-checkbox-list.element.ts",
|
|
770
1196
|
"attributes": [
|
|
771
1197
|
{
|
|
772
1198
|
"name": "list",
|
|
@@ -846,7 +1272,7 @@
|
|
|
846
1272
|
},
|
|
847
1273
|
{
|
|
848
1274
|
"name": "umb-input-color-picker",
|
|
849
|
-
"path": "./../../src/
|
|
1275
|
+
"path": "./../../src/packages/core/components/input-color-picker/input-color-picker.element.ts",
|
|
850
1276
|
"description": "This wraps the UUI library uui-color-swatches component",
|
|
851
1277
|
"attributes": [
|
|
852
1278
|
{
|
|
@@ -925,7 +1351,7 @@
|
|
|
925
1351
|
},
|
|
926
1352
|
{
|
|
927
1353
|
"name": "umb-input-eye-dropper",
|
|
928
|
-
"path": "./../../src/
|
|
1354
|
+
"path": "./../../src/packages/core/components/input-eye-dropper/input-eye-dropper.element.ts",
|
|
929
1355
|
"attributes": [
|
|
930
1356
|
{
|
|
931
1357
|
"name": "opacity",
|
|
@@ -1005,7 +1431,7 @@
|
|
|
1005
1431
|
},
|
|
1006
1432
|
{
|
|
1007
1433
|
"name": "umb-input-multi-url-picker",
|
|
1008
|
-
"path": "./../../src/
|
|
1434
|
+
"path": "./../../src/packages/core/components/input-multi-url-picker/input-multi-url-picker.element.ts",
|
|
1009
1435
|
"attributes": [
|
|
1010
1436
|
{
|
|
1011
1437
|
"name": "alias",
|
|
@@ -1174,7 +1600,7 @@
|
|
|
1174
1600
|
},
|
|
1175
1601
|
{
|
|
1176
1602
|
"name": "umb-input-number-range",
|
|
1177
|
-
"path": "./../../src/
|
|
1603
|
+
"path": "./../../src/packages/core/components/input-number-range/input-number-range.element.ts",
|
|
1178
1604
|
"attributes": [
|
|
1179
1605
|
{
|
|
1180
1606
|
"name": "min-label",
|
|
@@ -1277,7 +1703,7 @@
|
|
|
1277
1703
|
},
|
|
1278
1704
|
{
|
|
1279
1705
|
"name": "umb-input-radio-button-list",
|
|
1280
|
-
"path": "./../../src/
|
|
1706
|
+
"path": "./../../src/packages/core/components/input-radio-button-list/input-radio-button-list.element.ts",
|
|
1281
1707
|
"attributes": [
|
|
1282
1708
|
{
|
|
1283
1709
|
"name": "list",
|
|
@@ -1357,7 +1783,7 @@
|
|
|
1357
1783
|
},
|
|
1358
1784
|
{
|
|
1359
1785
|
"name": "umb-input-section",
|
|
1360
|
-
"path": "./../../src/
|
|
1786
|
+
"path": "./../../src/packages/core/components/input-section/input-section.element.ts",
|
|
1361
1787
|
"attributes": [
|
|
1362
1788
|
{
|
|
1363
1789
|
"name": "value",
|
|
@@ -1417,7 +1843,7 @@
|
|
|
1417
1843
|
},
|
|
1418
1844
|
{
|
|
1419
1845
|
"name": "umb-input-slider",
|
|
1420
|
-
"path": "./../../src/
|
|
1846
|
+
"path": "./../../src/packages/core/components/input-slider/input-slider.element.ts",
|
|
1421
1847
|
"attributes": [
|
|
1422
1848
|
{
|
|
1423
1849
|
"name": "min",
|
|
@@ -1541,7 +1967,7 @@
|
|
|
1541
1967
|
},
|
|
1542
1968
|
{
|
|
1543
1969
|
"name": "umb-input-toggle",
|
|
1544
|
-
"path": "./../../src/
|
|
1970
|
+
"path": "./../../src/packages/core/components/input-toggle/input-toggle.element.ts",
|
|
1545
1971
|
"attributes": [
|
|
1546
1972
|
{
|
|
1547
1973
|
"name": "checked",
|
|
@@ -1635,9 +2061,24 @@
|
|
|
1635
2061
|
}
|
|
1636
2062
|
]
|
|
1637
2063
|
},
|
|
2064
|
+
{
|
|
2065
|
+
"name": "umb-input-upload-field-file",
|
|
2066
|
+
"path": "./../../src/packages/core/components/input-upload-field/input-upload-field-file.element.ts",
|
|
2067
|
+
"properties": [
|
|
2068
|
+
{
|
|
2069
|
+
"name": "file",
|
|
2070
|
+
"type": "File"
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
"name": "render",
|
|
2074
|
+
"type": "() => DirectiveResult<typeof UntilDirective>",
|
|
2075
|
+
"default": "\"() => until(this.#renderFileItem(), html`<uui-loader></uui-loader>`)\""
|
|
2076
|
+
}
|
|
2077
|
+
]
|
|
2078
|
+
},
|
|
1638
2079
|
{
|
|
1639
2080
|
"name": "umb-input-upload-field",
|
|
1640
|
-
"path": "./../../src/
|
|
2081
|
+
"path": "./../../src/packages/core/components/input-upload-field/input-upload-field.element.ts",
|
|
1641
2082
|
"attributes": [
|
|
1642
2083
|
{
|
|
1643
2084
|
"name": "keys",
|
|
@@ -1732,7 +2173,7 @@
|
|
|
1732
2173
|
},
|
|
1733
2174
|
{
|
|
1734
2175
|
"name": "umb-menu-item-base",
|
|
1735
|
-
"path": "./../../src/
|
|
2176
|
+
"path": "./../../src/packages/core/components/menu/menu-item-base/menu-item-base.element.ts",
|
|
1736
2177
|
"attributes": [
|
|
1737
2178
|
{
|
|
1738
2179
|
"name": "entity-type",
|
|
@@ -1787,7 +2228,7 @@
|
|
|
1787
2228
|
},
|
|
1788
2229
|
{
|
|
1789
2230
|
"name": "umb-menu-item",
|
|
1790
|
-
"path": "./../../src/
|
|
2231
|
+
"path": "./../../src/packages/core/components/menu/menu-item/menu-item.element.ts",
|
|
1791
2232
|
"properties": [
|
|
1792
2233
|
{
|
|
1793
2234
|
"name": "styles",
|
|
@@ -1801,7 +2242,7 @@
|
|
|
1801
2242
|
},
|
|
1802
2243
|
{
|
|
1803
2244
|
"name": "umb-menu",
|
|
1804
|
-
"path": "./../../src/
|
|
2245
|
+
"path": "./../../src/packages/core/components/menu/menu.element.ts",
|
|
1805
2246
|
"attributes": [
|
|
1806
2247
|
{
|
|
1807
2248
|
"name": "manifest"
|
|
@@ -1821,7 +2262,7 @@
|
|
|
1821
2262
|
},
|
|
1822
2263
|
{
|
|
1823
2264
|
"name": "umb-property-creator",
|
|
1824
|
-
"path": "./../../src/
|
|
2265
|
+
"path": "./../../src/packages/core/components/property-creator/property-creator.element.ts",
|
|
1825
2266
|
"properties": [
|
|
1826
2267
|
{
|
|
1827
2268
|
"name": "styles",
|
|
@@ -1832,7 +2273,7 @@
|
|
|
1832
2273
|
},
|
|
1833
2274
|
{
|
|
1834
2275
|
"name": "umb-property-editor-config",
|
|
1835
|
-
"path": "./../../src/
|
|
2276
|
+
"path": "./../../src/packages/core/components/property-editor-config/property-editor-config.element.ts",
|
|
1836
2277
|
"attributes": [
|
|
1837
2278
|
{
|
|
1838
2279
|
"name": "property-editor-ui-alias",
|
|
@@ -1867,7 +2308,7 @@
|
|
|
1867
2308
|
},
|
|
1868
2309
|
{
|
|
1869
2310
|
"name": "umb-property-type-based-property",
|
|
1870
|
-
"path": "./../../src/
|
|
2311
|
+
"path": "./../../src/packages/core/components/property-type-based-property/property-type-based-property.element.ts",
|
|
1871
2312
|
"attributes": [
|
|
1872
2313
|
{
|
|
1873
2314
|
"name": "propertyVariantId",
|
|
@@ -1896,7 +2337,7 @@
|
|
|
1896
2337
|
},
|
|
1897
2338
|
{
|
|
1898
2339
|
"name": "umb-ref-property-editor-ui",
|
|
1899
|
-
"path": "./../../src/
|
|
2340
|
+
"path": "./../../src/packages/core/components/ref-property-editor-ui/ref-property-editor-ui.element.ts",
|
|
1900
2341
|
"attributes": [
|
|
1901
2342
|
{
|
|
1902
2343
|
"name": "alias",
|
|
@@ -2019,7 +2460,7 @@
|
|
|
2019
2460
|
},
|
|
2020
2461
|
{
|
|
2021
2462
|
"name": "umb-section-main",
|
|
2022
|
-
"path": "./../../src/
|
|
2463
|
+
"path": "./../../src/packages/core/components/section/section-main/section-main.element.ts",
|
|
2023
2464
|
"properties": [
|
|
2024
2465
|
{
|
|
2025
2466
|
"name": "styles",
|
|
@@ -2030,7 +2471,7 @@
|
|
|
2030
2471
|
},
|
|
2031
2472
|
{
|
|
2032
2473
|
"name": "umb-section-sidebar-context-menu",
|
|
2033
|
-
"path": "./../../src/
|
|
2474
|
+
"path": "./../../src/packages/core/components/section/section-sidebar-context-menu/section-sidebar-context-menu.element.ts",
|
|
2034
2475
|
"properties": [
|
|
2035
2476
|
{
|
|
2036
2477
|
"name": "styles",
|
|
@@ -2041,7 +2482,7 @@
|
|
|
2041
2482
|
},
|
|
2042
2483
|
{
|
|
2043
2484
|
"name": "umb-section-sidebar-menu",
|
|
2044
|
-
"path": "./../../src/
|
|
2485
|
+
"path": "./../../src/packages/core/components/section/section-sidebar-menu/section-sidebar-menu.element.ts",
|
|
2045
2486
|
"attributes": [
|
|
2046
2487
|
{
|
|
2047
2488
|
"name": "manifest"
|
|
@@ -2061,7 +2502,7 @@
|
|
|
2061
2502
|
},
|
|
2062
2503
|
{
|
|
2063
2504
|
"name": "umb-section-sidebar",
|
|
2064
|
-
"path": "./../../src/
|
|
2505
|
+
"path": "./../../src/packages/core/components/section/section-sidebar/section-sidebar.element.ts",
|
|
2065
2506
|
"properties": [
|
|
2066
2507
|
{
|
|
2067
2508
|
"name": "styles",
|
|
@@ -2072,7 +2513,7 @@
|
|
|
2072
2513
|
},
|
|
2073
2514
|
{
|
|
2074
2515
|
"name": "umb-section-views",
|
|
2075
|
-
"path": "./../../src/
|
|
2516
|
+
"path": "./../../src/packages/core/components/section/section-views/section-views.element.ts",
|
|
2076
2517
|
"attributes": [
|
|
2077
2518
|
{
|
|
2078
2519
|
"name": "section-alias",
|
|
@@ -2094,7 +2535,7 @@
|
|
|
2094
2535
|
},
|
|
2095
2536
|
{
|
|
2096
2537
|
"name": "umb-section-default",
|
|
2097
|
-
"path": "./../../src/
|
|
2538
|
+
"path": "./../../src/packages/core/components/section/section.element.ts",
|
|
2098
2539
|
"attributes": [
|
|
2099
2540
|
{
|
|
2100
2541
|
"name": "manifest"
|
|
@@ -2114,7 +2555,7 @@
|
|
|
2114
2555
|
},
|
|
2115
2556
|
{
|
|
2116
2557
|
"name": "umb-table",
|
|
2117
|
-
"path": "./../../src/
|
|
2558
|
+
"path": "./../../src/packages/core/components/table/table.element.ts",
|
|
2118
2559
|
"properties": [
|
|
2119
2560
|
{
|
|
2120
2561
|
"name": "items",
|
|
@@ -2170,7 +2611,7 @@
|
|
|
2170
2611
|
},
|
|
2171
2612
|
{
|
|
2172
2613
|
"name": "umb-tooltip-menu",
|
|
2173
|
-
"path": "./../../src/
|
|
2614
|
+
"path": "./../../src/packages/core/components/tooltip-menu/tooltip-menu.element.ts",
|
|
2174
2615
|
"attributes": [
|
|
2175
2616
|
{
|
|
2176
2617
|
"name": "icon-only",
|
|
@@ -2205,7 +2646,7 @@
|
|
|
2205
2646
|
},
|
|
2206
2647
|
{
|
|
2207
2648
|
"name": "umb-entity-tree-item",
|
|
2208
|
-
"path": "./../../src/
|
|
2649
|
+
"path": "./../../src/packages/core/components/tree/entity-tree-item/entity-tree-item.element.ts",
|
|
2209
2650
|
"properties": [
|
|
2210
2651
|
{
|
|
2211
2652
|
"name": "item"
|
|
@@ -2219,7 +2660,7 @@
|
|
|
2219
2660
|
},
|
|
2220
2661
|
{
|
|
2221
2662
|
"name": "umb-tree-item-base",
|
|
2222
|
-
"path": "./../../src/
|
|
2663
|
+
"path": "./../../src/packages/core/components/tree/tree-item-base/tree-item-base.element.ts",
|
|
2223
2664
|
"properties": [
|
|
2224
2665
|
{
|
|
2225
2666
|
"name": "styles",
|
|
@@ -2230,7 +2671,7 @@
|
|
|
2230
2671
|
},
|
|
2231
2672
|
{
|
|
2232
2673
|
"name": "umb-tree-item",
|
|
2233
|
-
"path": "./../../src/
|
|
2674
|
+
"path": "./../../src/packages/core/components/tree/tree-item/tree-item.element.ts",
|
|
2234
2675
|
"properties": [
|
|
2235
2676
|
{
|
|
2236
2677
|
"name": "item"
|
|
@@ -2244,7 +2685,7 @@
|
|
|
2244
2685
|
},
|
|
2245
2686
|
{
|
|
2246
2687
|
"name": "umb-menu-item-tree",
|
|
2247
|
-
"path": "./../../src/
|
|
2688
|
+
"path": "./../../src/packages/core/components/tree/tree-menu-item/tree-menu-item.element.ts",
|
|
2248
2689
|
"attributes": [
|
|
2249
2690
|
{
|
|
2250
2691
|
"name": "manifest"
|
|
@@ -2259,7 +2700,7 @@
|
|
|
2259
2700
|
},
|
|
2260
2701
|
{
|
|
2261
2702
|
"name": "umb-tree",
|
|
2262
|
-
"path": "./../../src/
|
|
2703
|
+
"path": "./../../src/packages/core/components/tree/tree.element.ts",
|
|
2263
2704
|
"attributes": [
|
|
2264
2705
|
{
|
|
2265
2706
|
"name": "alias"
|
|
@@ -2276,6 +2717,9 @@
|
|
|
2276
2717
|
{
|
|
2277
2718
|
"name": "hide-tree-root",
|
|
2278
2719
|
"type": "boolean"
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
"name": "selectableFilter"
|
|
2279
2723
|
}
|
|
2280
2724
|
],
|
|
2281
2725
|
"properties": [
|
|
@@ -2299,12 +2743,16 @@
|
|
|
2299
2743
|
"name": "hideTreeRoot",
|
|
2300
2744
|
"attribute": "hide-tree-root",
|
|
2301
2745
|
"type": "boolean"
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
"name": "selectableFilter",
|
|
2749
|
+
"attribute": "selectableFilter"
|
|
2302
2750
|
}
|
|
2303
2751
|
]
|
|
2304
2752
|
},
|
|
2305
2753
|
{
|
|
2306
2754
|
"name": "umb-variant-selector",
|
|
2307
|
-
"path": "./../../src/
|
|
2755
|
+
"path": "./../../src/packages/core/components/variant-selector/variant-selector.element.ts",
|
|
2308
2756
|
"attributes": [
|
|
2309
2757
|
{
|
|
2310
2758
|
"name": "alias",
|
|
@@ -2326,7 +2774,7 @@
|
|
|
2326
2774
|
},
|
|
2327
2775
|
{
|
|
2328
2776
|
"name": "umb-variantable-property",
|
|
2329
|
-
"path": "./../../src/
|
|
2777
|
+
"path": "./../../src/packages/core/components/variantable-property/variantable-property.element.ts",
|
|
2330
2778
|
"properties": [
|
|
2331
2779
|
{
|
|
2332
2780
|
"name": "property"
|
|
@@ -2340,7 +2788,7 @@
|
|
|
2340
2788
|
},
|
|
2341
2789
|
{
|
|
2342
2790
|
"name": "umb-workspace-property",
|
|
2343
|
-
"path": "./../../src/
|
|
2791
|
+
"path": "./../../src/packages/core/components/workspace-property/workspace-property.element.ts",
|
|
2344
2792
|
"attributes": [
|
|
2345
2793
|
{
|
|
2346
2794
|
"name": "label",
|
|
@@ -2453,7 +2901,7 @@
|
|
|
2453
2901
|
},
|
|
2454
2902
|
{
|
|
2455
2903
|
"name": "umb-workspace-action-menu",
|
|
2456
|
-
"path": "./../../src/
|
|
2904
|
+
"path": "./../../src/packages/core/components/workspace/workspace-action-menu/workspace-action-menu.element.ts",
|
|
2457
2905
|
"properties": [
|
|
2458
2906
|
{
|
|
2459
2907
|
"name": "styles",
|
|
@@ -2464,7 +2912,7 @@
|
|
|
2464
2912
|
},
|
|
2465
2913
|
{
|
|
2466
2914
|
"name": "umb-workspace-action",
|
|
2467
|
-
"path": "./../../src/
|
|
2915
|
+
"path": "./../../src/packages/core/components/workspace/workspace-action/workspace-action.element.ts",
|
|
2468
2916
|
"properties": [
|
|
2469
2917
|
{
|
|
2470
2918
|
"name": "manifest"
|
|
@@ -2478,7 +2926,7 @@
|
|
|
2478
2926
|
},
|
|
2479
2927
|
{
|
|
2480
2928
|
"name": "umb-workspace-view-collection",
|
|
2481
|
-
"path": "./../../src/
|
|
2929
|
+
"path": "./../../src/packages/core/components/workspace/workspace-content/views/collection/workspace-view-collection.element.ts",
|
|
2482
2930
|
"properties": [
|
|
2483
2931
|
{
|
|
2484
2932
|
"name": "manifest"
|
|
@@ -2492,7 +2940,7 @@
|
|
|
2492
2940
|
},
|
|
2493
2941
|
{
|
|
2494
2942
|
"name": "umb-workspace-editor",
|
|
2495
|
-
"path": "./../../src/
|
|
2943
|
+
"path": "./../../src/packages/core/components/workspace/workspace-editor/workspace-editor.element.ts",
|
|
2496
2944
|
"attributes": [
|
|
2497
2945
|
{
|
|
2498
2946
|
"name": "headline",
|
|
@@ -2577,7 +3025,7 @@
|
|
|
2577
3025
|
},
|
|
2578
3026
|
{
|
|
2579
3027
|
"name": "umb-workspace-footer",
|
|
2580
|
-
"path": "./../../src/
|
|
3028
|
+
"path": "./../../src/packages/core/components/workspace/workspace-footer/workspace-footer.element.ts",
|
|
2581
3029
|
"attributes": [
|
|
2582
3030
|
{
|
|
2583
3031
|
"name": "alias",
|
|
@@ -2613,7 +3061,7 @@
|
|
|
2613
3061
|
},
|
|
2614
3062
|
{
|
|
2615
3063
|
"name": "umb-workspace-property-layout",
|
|
2616
|
-
"path": "./../../src/
|
|
3064
|
+
"path": "./../../src/packages/core/components/workspace/workspace-property-layout/workspace-property-layout.element.ts",
|
|
2617
3065
|
"attributes": [
|
|
2618
3066
|
{
|
|
2619
3067
|
"name": "alias",
|
|
@@ -2692,7 +3140,7 @@
|
|
|
2692
3140
|
},
|
|
2693
3141
|
{
|
|
2694
3142
|
"name": "umb-workspace-variant",
|
|
2695
|
-
"path": "./../../src/
|
|
3143
|
+
"path": "./../../src/packages/core/components/workspace/workspace-variant/workspace-variant.element.ts",
|
|
2696
3144
|
"description": "\nExample. Document Workspace would use a Variant-component(variant component would talk directly to the workspace-context)\nAs well breadcrumbs etc.",
|
|
2697
3145
|
"attributes": [
|
|
2698
3146
|
{
|
|
@@ -2740,7 +3188,7 @@
|
|
|
2740
3188
|
},
|
|
2741
3189
|
{
|
|
2742
3190
|
"name": "umb-workspace",
|
|
2743
|
-
"path": "./../../src/
|
|
3191
|
+
"path": "./../../src/packages/core/components/workspace/workspace.element.ts",
|
|
2744
3192
|
"attributes": [
|
|
2745
3193
|
{
|
|
2746
3194
|
"name": "entity-type",
|
|
@@ -2764,7 +3212,7 @@
|
|
|
2764
3212
|
},
|
|
2765
3213
|
{
|
|
2766
3214
|
"name": "umb-confirm-modal",
|
|
2767
|
-
"path": "./../../src/
|
|
3215
|
+
"path": "./../../src/packages/core/modals/confirm/confirm-modal.element.ts",
|
|
2768
3216
|
"attributes": [
|
|
2769
3217
|
{
|
|
2770
3218
|
"name": "data"
|
|
@@ -2787,7 +3235,7 @@
|
|
|
2787
3235
|
},
|
|
2788
3236
|
{
|
|
2789
3237
|
"name": "umb-embedded-media-modal",
|
|
2790
|
-
"path": "./../../src/
|
|
3238
|
+
"path": "./../../src/packages/core/modals/embedded-media/embedded-media-modal.element.ts",
|
|
2791
3239
|
"attributes": [
|
|
2792
3240
|
{
|
|
2793
3241
|
"name": "data"
|
|
@@ -2810,7 +3258,7 @@
|
|
|
2810
3258
|
},
|
|
2811
3259
|
{
|
|
2812
3260
|
"name": "umb-folder-modal",
|
|
2813
|
-
"path": "./../../src/
|
|
3261
|
+
"path": "./../../src/packages/core/modals/folder/folder-modal.element.ts",
|
|
2814
3262
|
"properties": [
|
|
2815
3263
|
{
|
|
2816
3264
|
"name": "modalHandler"
|
|
@@ -2827,7 +3275,7 @@
|
|
|
2827
3275
|
},
|
|
2828
3276
|
{
|
|
2829
3277
|
"name": "umb-icon-picker-modal",
|
|
2830
|
-
"path": "./../../src/
|
|
3278
|
+
"path": "./../../src/packages/core/modals/icon-picker/icon-picker-modal.element.ts",
|
|
2831
3279
|
"properties": [
|
|
2832
3280
|
{
|
|
2833
3281
|
"name": "styles",
|
|
@@ -2838,7 +3286,7 @@
|
|
|
2838
3286
|
},
|
|
2839
3287
|
{
|
|
2840
3288
|
"name": "umb-link-picker-modal",
|
|
2841
|
-
"path": "./../../src/
|
|
3289
|
+
"path": "./../../src/packages/core/modals/link-picker/link-picker-modal.element.ts",
|
|
2842
3290
|
"properties": [
|
|
2843
3291
|
{
|
|
2844
3292
|
"name": "styles",
|
|
@@ -2849,7 +3297,7 @@
|
|
|
2849
3297
|
},
|
|
2850
3298
|
{
|
|
2851
3299
|
"name": "umb-property-settings-modal",
|
|
2852
|
-
"path": "./../../src/
|
|
3300
|
+
"path": "./../../src/packages/core/modals/property-settings/property-settings-modal.element.ts",
|
|
2853
3301
|
"properties": [
|
|
2854
3302
|
{
|
|
2855
3303
|
"name": "styles",
|
|
@@ -2860,7 +3308,7 @@
|
|
|
2860
3308
|
},
|
|
2861
3309
|
{
|
|
2862
3310
|
"name": "umb-section-picker-modal",
|
|
2863
|
-
"path": "./../../src/
|
|
3311
|
+
"path": "./../../src/packages/core/modals/section-picker/section-picker-modal.element.ts",
|
|
2864
3312
|
"properties": [
|
|
2865
3313
|
{
|
|
2866
3314
|
"name": "styles",
|
|
@@ -2870,8 +3318,8 @@
|
|
|
2870
3318
|
]
|
|
2871
3319
|
},
|
|
2872
3320
|
{
|
|
2873
|
-
"name": "umb-template-
|
|
2874
|
-
"path": "./../../src/
|
|
3321
|
+
"name": "umb-template-modal",
|
|
3322
|
+
"path": "./../../src/packages/core/modals/template/template-modal.element.ts",
|
|
2875
3323
|
"properties": [
|
|
2876
3324
|
{
|
|
2877
3325
|
"name": "styles",
|
|
@@ -2881,8 +3329,8 @@
|
|
|
2881
3329
|
]
|
|
2882
3330
|
},
|
|
2883
3331
|
{
|
|
2884
|
-
"name": "umb-
|
|
2885
|
-
"path": "./../../src/
|
|
3332
|
+
"name": "umb-tree-picker-modal",
|
|
3333
|
+
"path": "./../../src/packages/core/modals/tree-picker/tree-picker-modal.element.ts",
|
|
2886
3334
|
"properties": [
|
|
2887
3335
|
{
|
|
2888
3336
|
"name": "styles",
|
|
@@ -2893,7 +3341,7 @@
|
|
|
2893
3341
|
},
|
|
2894
3342
|
{
|
|
2895
3343
|
"name": "umb-notification-layout-default",
|
|
2896
|
-
"path": "./../../src/
|
|
3344
|
+
"path": "./../../src/packages/core/notification/layouts/default/notification-layout-default.element.ts",
|
|
2897
3345
|
"attributes": [
|
|
2898
3346
|
{
|
|
2899
3347
|
"name": "data"
|
|
@@ -2916,11 +3364,11 @@
|
|
|
2916
3364
|
},
|
|
2917
3365
|
{
|
|
2918
3366
|
"name": "umb-story-notification-default-example",
|
|
2919
|
-
"path": "./../../src/
|
|
3367
|
+
"path": "./../../src/packages/core/notification/stories/story-notification-default-example.element.ts"
|
|
2920
3368
|
},
|
|
2921
3369
|
{
|
|
2922
3370
|
"name": "umb-property-action-clear",
|
|
2923
|
-
"path": "./../../src/
|
|
3371
|
+
"path": "./../../src/packages/core/property-actions/clear/property-action-clear.element.ts",
|
|
2924
3372
|
"attributes": [
|
|
2925
3373
|
{
|
|
2926
3374
|
"name": "value",
|
|
@@ -2944,7 +3392,7 @@
|
|
|
2944
3392
|
},
|
|
2945
3393
|
{
|
|
2946
3394
|
"name": "umb-property-action-copy",
|
|
2947
|
-
"path": "./../../src/
|
|
3395
|
+
"path": "./../../src/packages/core/property-actions/copy/property-action-copy.element.ts",
|
|
2948
3396
|
"attributes": [
|
|
2949
3397
|
{
|
|
2950
3398
|
"name": "value",
|
|
@@ -2968,7 +3416,7 @@
|
|
|
2968
3416
|
},
|
|
2969
3417
|
{
|
|
2970
3418
|
"name": "umb-property-action-menu",
|
|
2971
|
-
"path": "./../../src/
|
|
3419
|
+
"path": "./../../src/packages/core/property-actions/shared/property-action-menu/property-action-menu.element.ts",
|
|
2972
3420
|
"attributes": [
|
|
2973
3421
|
{
|
|
2974
3422
|
"name": "value",
|
|
@@ -2999,7 +3447,7 @@
|
|
|
2999
3447
|
},
|
|
3000
3448
|
{
|
|
3001
3449
|
"name": "umb-property-action",
|
|
3002
|
-
"path": "./../../src/
|
|
3450
|
+
"path": "./../../src/packages/core/property-actions/shared/property-action/property-action.element.ts",
|
|
3003
3451
|
"attributes": [
|
|
3004
3452
|
{
|
|
3005
3453
|
"name": "propertyAction"
|
|
@@ -3028,7 +3476,7 @@
|
|
|
3028
3476
|
},
|
|
3029
3477
|
{
|
|
3030
3478
|
"name": "umb-property-editor-ui-picker-modal",
|
|
3031
|
-
"path": "./../../src/
|
|
3479
|
+
"path": "./../../src/packages/core/property-editors/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
3032
3480
|
"attributes": [
|
|
3033
3481
|
{
|
|
3034
3482
|
"name": "data"
|
|
@@ -3051,7 +3499,7 @@
|
|
|
3051
3499
|
},
|
|
3052
3500
|
{
|
|
3053
3501
|
"name": "umb-property-editor-ui-block-grid-block-configuration",
|
|
3054
|
-
"path": "./../../src/
|
|
3502
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/config/block-configuration/property-editor-ui-block-grid-block-configuration.element.ts",
|
|
3055
3503
|
"attributes": [
|
|
3056
3504
|
{
|
|
3057
3505
|
"name": "value",
|
|
@@ -3080,7 +3528,7 @@
|
|
|
3080
3528
|
},
|
|
3081
3529
|
{
|
|
3082
3530
|
"name": "umb-property-editor-ui-block-grid-group-configuration",
|
|
3083
|
-
"path": "./../../src/
|
|
3531
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/config/group-configuration/property-editor-ui-block-grid-group-configuration.element.ts",
|
|
3084
3532
|
"attributes": [
|
|
3085
3533
|
{
|
|
3086
3534
|
"name": "value",
|
|
@@ -3109,7 +3557,7 @@
|
|
|
3109
3557
|
},
|
|
3110
3558
|
{
|
|
3111
3559
|
"name": "umb-property-editor-ui-block-grid-stylesheet-picker",
|
|
3112
|
-
"path": "./../../src/
|
|
3560
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/config/stylesheet-picker/property-editor-ui-block-grid-stylesheet-picker.element.ts",
|
|
3113
3561
|
"attributes": [
|
|
3114
3562
|
{
|
|
3115
3563
|
"name": "value",
|
|
@@ -3138,7 +3586,7 @@
|
|
|
3138
3586
|
},
|
|
3139
3587
|
{
|
|
3140
3588
|
"name": "umb-property-editor-ui-block-grid-inner-test",
|
|
3141
|
-
"path": "./../../src/
|
|
3589
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/property-editor-ui-block-grid-inner-test.element.ts",
|
|
3142
3590
|
"attributes": [
|
|
3143
3591
|
{
|
|
3144
3592
|
"name": "name",
|
|
@@ -3162,7 +3610,7 @@
|
|
|
3162
3610
|
},
|
|
3163
3611
|
{
|
|
3164
3612
|
"name": "umb-property-editor-ui-block-grid",
|
|
3165
|
-
"path": "./../../src/
|
|
3613
|
+
"path": "./../../src/packages/core/property-editors/uis/block-grid/property-editor-ui-block-grid.element.ts",
|
|
3166
3614
|
"attributes": [
|
|
3167
3615
|
{
|
|
3168
3616
|
"name": "value",
|
|
@@ -3178,9 +3626,7 @@
|
|
|
3178
3626
|
"default": "\"\""
|
|
3179
3627
|
},
|
|
3180
3628
|
{
|
|
3181
|
-
"name": "config"
|
|
3182
|
-
"type": "never[]",
|
|
3183
|
-
"default": "[]"
|
|
3629
|
+
"name": "config"
|
|
3184
3630
|
},
|
|
3185
3631
|
{
|
|
3186
3632
|
"name": "styles",
|
|
@@ -3191,7 +3637,7 @@
|
|
|
3191
3637
|
},
|
|
3192
3638
|
{
|
|
3193
3639
|
"name": "umb-property-editor-ui-block-list-block-configuration",
|
|
3194
|
-
"path": "./../../src/
|
|
3640
|
+
"path": "./../../src/packages/core/property-editors/uis/block-list/config/block-configuration/property-editor-ui-block-list-block-configuration.element.ts",
|
|
3195
3641
|
"attributes": [
|
|
3196
3642
|
{
|
|
3197
3643
|
"name": "value",
|
|
@@ -3220,7 +3666,7 @@
|
|
|
3220
3666
|
},
|
|
3221
3667
|
{
|
|
3222
3668
|
"name": "umb-property-editor-ui-block-list",
|
|
3223
|
-
"path": "./../../src/
|
|
3669
|
+
"path": "./../../src/packages/core/property-editors/uis/block-list/property-editor-ui-block-list.element.ts",
|
|
3224
3670
|
"attributes": [
|
|
3225
3671
|
{
|
|
3226
3672
|
"name": "value",
|
|
@@ -3236,9 +3682,7 @@
|
|
|
3236
3682
|
"default": "\"\""
|
|
3237
3683
|
},
|
|
3238
3684
|
{
|
|
3239
|
-
"name": "config"
|
|
3240
|
-
"type": "never[]",
|
|
3241
|
-
"default": "[]"
|
|
3685
|
+
"name": "config"
|
|
3242
3686
|
},
|
|
3243
3687
|
{
|
|
3244
3688
|
"name": "styles",
|
|
@@ -3249,7 +3693,7 @@
|
|
|
3249
3693
|
},
|
|
3250
3694
|
{
|
|
3251
3695
|
"name": "umb-property-editor-ui-checkbox-list",
|
|
3252
|
-
"path": "./../../src/
|
|
3696
|
+
"path": "./../../src/packages/core/property-editors/uis/checkbox-list/property-editor-ui-checkbox-list.element.ts",
|
|
3253
3697
|
"attributes": [
|
|
3254
3698
|
{
|
|
3255
3699
|
"name": "value",
|
|
@@ -3263,8 +3707,7 @@
|
|
|
3263
3707
|
"type": "string[]"
|
|
3264
3708
|
},
|
|
3265
3709
|
{
|
|
3266
|
-
"name": "config"
|
|
3267
|
-
"type": "array"
|
|
3710
|
+
"name": "config"
|
|
3268
3711
|
},
|
|
3269
3712
|
{
|
|
3270
3713
|
"name": "styles",
|
|
@@ -3280,7 +3723,7 @@
|
|
|
3280
3723
|
},
|
|
3281
3724
|
{
|
|
3282
3725
|
"name": "umb-property-editor-ui-collection-view-bulk-action-permissions",
|
|
3283
|
-
"path": "./../../src/
|
|
3726
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/bulk-action-permissions/property-editor-ui-collection-view-bulk-action-permissions.element.ts",
|
|
3284
3727
|
"attributes": [
|
|
3285
3728
|
{
|
|
3286
3729
|
"name": "value",
|
|
@@ -3309,7 +3752,7 @@
|
|
|
3309
3752
|
},
|
|
3310
3753
|
{
|
|
3311
3754
|
"name": "umb-property-editor-ui-collection-view-column-configuration",
|
|
3312
|
-
"path": "./../../src/
|
|
3755
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/column-configuration/property-editor-ui-collection-view-column-configuration.element.ts",
|
|
3313
3756
|
"attributes": [
|
|
3314
3757
|
{
|
|
3315
3758
|
"name": "value",
|
|
@@ -3338,7 +3781,7 @@
|
|
|
3338
3781
|
},
|
|
3339
3782
|
{
|
|
3340
3783
|
"name": "umb-property-editor-ui-collection-view-layout-configuration",
|
|
3341
|
-
"path": "./../../src/
|
|
3784
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/layout-configuration/property-editor-ui-collection-view-layout-configuration.element.ts",
|
|
3342
3785
|
"attributes": [
|
|
3343
3786
|
{
|
|
3344
3787
|
"name": "value",
|
|
@@ -3367,7 +3810,7 @@
|
|
|
3367
3810
|
},
|
|
3368
3811
|
{
|
|
3369
3812
|
"name": "umb-property-editor-ui-collection-view-order-by",
|
|
3370
|
-
"path": "./../../src/
|
|
3813
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/config/order-by/property-editor-ui-collection-view-order-by.element.ts",
|
|
3371
3814
|
"attributes": [
|
|
3372
3815
|
{
|
|
3373
3816
|
"name": "value",
|
|
@@ -3396,7 +3839,7 @@
|
|
|
3396
3839
|
},
|
|
3397
3840
|
{
|
|
3398
3841
|
"name": "umb-property-editor-ui-collection-view",
|
|
3399
|
-
"path": "./../../src/
|
|
3842
|
+
"path": "./../../src/packages/core/property-editors/uis/collection-view/property-editor-ui-collection-view.element.ts",
|
|
3400
3843
|
"attributes": [
|
|
3401
3844
|
{
|
|
3402
3845
|
"name": "value",
|
|
@@ -3425,7 +3868,7 @@
|
|
|
3425
3868
|
},
|
|
3426
3869
|
{
|
|
3427
3870
|
"name": "umb-property-editor-ui-color-picker",
|
|
3428
|
-
"path": "./../../src/
|
|
3871
|
+
"path": "./../../src/packages/core/property-editors/uis/color-picker/property-editor-ui-color-picker.element.ts",
|
|
3429
3872
|
"attributes": [
|
|
3430
3873
|
{
|
|
3431
3874
|
"name": "value",
|
|
@@ -3441,8 +3884,7 @@
|
|
|
3441
3884
|
"default": "\"\""
|
|
3442
3885
|
},
|
|
3443
3886
|
{
|
|
3444
|
-
"name": "config"
|
|
3445
|
-
"type": "array"
|
|
3887
|
+
"name": "config"
|
|
3446
3888
|
},
|
|
3447
3889
|
{
|
|
3448
3890
|
"name": "styles",
|
|
@@ -3458,7 +3900,7 @@
|
|
|
3458
3900
|
},
|
|
3459
3901
|
{
|
|
3460
3902
|
"name": "umb-property-editor-ui-date-picker",
|
|
3461
|
-
"path": "./../../src/
|
|
3903
|
+
"path": "./../../src/packages/core/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts",
|
|
3462
3904
|
"attributes": [
|
|
3463
3905
|
{
|
|
3464
3906
|
"name": "value",
|
|
@@ -3472,8 +3914,7 @@
|
|
|
3472
3914
|
"type": "string | undefined"
|
|
3473
3915
|
},
|
|
3474
3916
|
{
|
|
3475
|
-
"name": "config"
|
|
3476
|
-
"type": "array"
|
|
3917
|
+
"name": "config"
|
|
3477
3918
|
},
|
|
3478
3919
|
{
|
|
3479
3920
|
"name": "styles",
|
|
@@ -3484,7 +3925,7 @@
|
|
|
3484
3925
|
},
|
|
3485
3926
|
{
|
|
3486
3927
|
"name": "umb-property-editor-ui-dropdown",
|
|
3487
|
-
"path": "./../../src/
|
|
3928
|
+
"path": "./../../src/packages/core/property-editors/uis/dropdown/property-editor-ui-dropdown.element.ts",
|
|
3488
3929
|
"attributes": [
|
|
3489
3930
|
{
|
|
3490
3931
|
"name": "value",
|
|
@@ -3500,9 +3941,7 @@
|
|
|
3500
3941
|
"default": "\"\""
|
|
3501
3942
|
},
|
|
3502
3943
|
{
|
|
3503
|
-
"name": "config"
|
|
3504
|
-
"type": "never[]",
|
|
3505
|
-
"default": "[]"
|
|
3944
|
+
"name": "config"
|
|
3506
3945
|
},
|
|
3507
3946
|
{
|
|
3508
3947
|
"name": "styles",
|
|
@@ -3513,7 +3952,7 @@
|
|
|
3513
3952
|
},
|
|
3514
3953
|
{
|
|
3515
3954
|
"name": "umb-property-editor-ui-eye-dropper",
|
|
3516
|
-
"path": "./../../src/
|
|
3955
|
+
"path": "./../../src/packages/core/property-editors/uis/eye-dropper/property-editor-ui-eye-dropper.element.ts",
|
|
3517
3956
|
"attributes": [
|
|
3518
3957
|
{
|
|
3519
3958
|
"name": "value",
|
|
@@ -3529,8 +3968,7 @@
|
|
|
3529
3968
|
"default": "\"\""
|
|
3530
3969
|
},
|
|
3531
3970
|
{
|
|
3532
|
-
"name": "config"
|
|
3533
|
-
"type": "array"
|
|
3971
|
+
"name": "config"
|
|
3534
3972
|
},
|
|
3535
3973
|
{
|
|
3536
3974
|
"name": "styles",
|
|
@@ -3546,7 +3984,7 @@
|
|
|
3546
3984
|
},
|
|
3547
3985
|
{
|
|
3548
3986
|
"name": "umb-property-editor-ui-icon-picker",
|
|
3549
|
-
"path": "./../../src/
|
|
3987
|
+
"path": "./../../src/packages/core/property-editors/uis/icon-picker/property-editor-ui-icon-picker.element.ts",
|
|
3550
3988
|
"attributes": [
|
|
3551
3989
|
{
|
|
3552
3990
|
"name": "value",
|
|
@@ -3562,9 +4000,7 @@
|
|
|
3562
4000
|
"default": "\"\""
|
|
3563
4001
|
},
|
|
3564
4002
|
{
|
|
3565
|
-
"name": "config"
|
|
3566
|
-
"type": "never[]",
|
|
3567
|
-
"default": "[]"
|
|
4003
|
+
"name": "config"
|
|
3568
4004
|
},
|
|
3569
4005
|
{
|
|
3570
4006
|
"name": "styles",
|
|
@@ -3575,7 +4011,7 @@
|
|
|
3575
4011
|
},
|
|
3576
4012
|
{
|
|
3577
4013
|
"name": "umb-property-editor-ui-image-cropper",
|
|
3578
|
-
"path": "./../../src/
|
|
4014
|
+
"path": "./../../src/packages/core/property-editors/uis/image-cropper/property-editor-ui-image-cropper.element.ts",
|
|
3579
4015
|
"attributes": [
|
|
3580
4016
|
{
|
|
3581
4017
|
"name": "value",
|
|
@@ -3591,9 +4027,7 @@
|
|
|
3591
4027
|
"default": "\"\""
|
|
3592
4028
|
},
|
|
3593
4029
|
{
|
|
3594
|
-
"name": "config"
|
|
3595
|
-
"type": "never[]",
|
|
3596
|
-
"default": "[]"
|
|
4030
|
+
"name": "config"
|
|
3597
4031
|
},
|
|
3598
4032
|
{
|
|
3599
4033
|
"name": "styles",
|
|
@@ -3604,7 +4038,7 @@
|
|
|
3604
4038
|
},
|
|
3605
4039
|
{
|
|
3606
4040
|
"name": "umb-property-editor-ui-image-crops-configuration",
|
|
3607
|
-
"path": "./../../src/
|
|
4041
|
+
"path": "./../../src/packages/core/property-editors/uis/image-crops-configuration/property-editor-ui-image-crops-configuration.element.ts",
|
|
3608
4042
|
"attributes": [
|
|
3609
4043
|
{
|
|
3610
4044
|
"name": "value",
|
|
@@ -3621,8 +4055,7 @@
|
|
|
3621
4055
|
},
|
|
3622
4056
|
{
|
|
3623
4057
|
"name": "config",
|
|
3624
|
-
"
|
|
3625
|
-
"default": "[]"
|
|
4058
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3626
4059
|
},
|
|
3627
4060
|
{
|
|
3628
4061
|
"name": "styles",
|
|
@@ -3633,7 +4066,7 @@
|
|
|
3633
4066
|
},
|
|
3634
4067
|
{
|
|
3635
4068
|
"name": "umb-property-editor-ui-label",
|
|
3636
|
-
"path": "./../../src/
|
|
4069
|
+
"path": "./../../src/packages/core/property-editors/uis/label/property-editor-ui-label.element.ts",
|
|
3637
4070
|
"attributes": [
|
|
3638
4071
|
{
|
|
3639
4072
|
"name": "value",
|
|
@@ -3660,9 +4093,7 @@
|
|
|
3660
4093
|
"default": "\"\""
|
|
3661
4094
|
},
|
|
3662
4095
|
{
|
|
3663
|
-
"name": "config"
|
|
3664
|
-
"type": "never[]",
|
|
3665
|
-
"default": "[]"
|
|
4096
|
+
"name": "config"
|
|
3666
4097
|
},
|
|
3667
4098
|
{
|
|
3668
4099
|
"name": "styles",
|
|
@@ -3673,7 +4104,7 @@
|
|
|
3673
4104
|
},
|
|
3674
4105
|
{
|
|
3675
4106
|
"name": "umb-property-editor-ui-markdown-editor",
|
|
3676
|
-
"path": "./../../src/
|
|
4107
|
+
"path": "./../../src/packages/core/property-editors/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts",
|
|
3677
4108
|
"attributes": [
|
|
3678
4109
|
{
|
|
3679
4110
|
"name": "value",
|
|
@@ -3690,8 +4121,7 @@
|
|
|
3690
4121
|
},
|
|
3691
4122
|
{
|
|
3692
4123
|
"name": "config",
|
|
3693
|
-
"
|
|
3694
|
-
"default": "[]"
|
|
4124
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3695
4125
|
},
|
|
3696
4126
|
{
|
|
3697
4127
|
"name": "styles",
|
|
@@ -3702,7 +4132,7 @@
|
|
|
3702
4132
|
},
|
|
3703
4133
|
{
|
|
3704
4134
|
"name": "umb-property-editor-ui-media-picker",
|
|
3705
|
-
"path": "./../../src/
|
|
4135
|
+
"path": "./../../src/packages/core/property-editors/uis/media-picker/property-editor-ui-media-picker.element.ts",
|
|
3706
4136
|
"attributes": [
|
|
3707
4137
|
{
|
|
3708
4138
|
"name": "value",
|
|
@@ -3716,8 +4146,7 @@
|
|
|
3716
4146
|
"type": "string[]"
|
|
3717
4147
|
},
|
|
3718
4148
|
{
|
|
3719
|
-
"name": "config"
|
|
3720
|
-
"type": "array"
|
|
4149
|
+
"name": "config"
|
|
3721
4150
|
}
|
|
3722
4151
|
],
|
|
3723
4152
|
"events": [
|
|
@@ -3728,7 +4157,7 @@
|
|
|
3728
4157
|
},
|
|
3729
4158
|
{
|
|
3730
4159
|
"name": "umb-property-editor-ui-member-group-picker",
|
|
3731
|
-
"path": "./../../src/
|
|
4160
|
+
"path": "./../../src/packages/core/property-editors/uis/member-group-picker/property-editor-ui-member-group-picker.element.ts",
|
|
3732
4161
|
"attributes": [
|
|
3733
4162
|
{
|
|
3734
4163
|
"name": "value",
|
|
@@ -3745,8 +4174,7 @@
|
|
|
3745
4174
|
},
|
|
3746
4175
|
{
|
|
3747
4176
|
"name": "config",
|
|
3748
|
-
"
|
|
3749
|
-
"default": "[]"
|
|
4177
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3750
4178
|
},
|
|
3751
4179
|
{
|
|
3752
4180
|
"name": "styles",
|
|
@@ -3757,7 +4185,7 @@
|
|
|
3757
4185
|
},
|
|
3758
4186
|
{
|
|
3759
4187
|
"name": "umb-property-editor-ui-member-picker",
|
|
3760
|
-
"path": "./../../src/
|
|
4188
|
+
"path": "./../../src/packages/core/property-editors/uis/member-picker/property-editor-ui-member-picker.element.ts",
|
|
3761
4189
|
"attributes": [
|
|
3762
4190
|
{
|
|
3763
4191
|
"name": "value",
|
|
@@ -3774,8 +4202,7 @@
|
|
|
3774
4202
|
},
|
|
3775
4203
|
{
|
|
3776
4204
|
"name": "config",
|
|
3777
|
-
"
|
|
3778
|
-
"default": "[]"
|
|
4205
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
3779
4206
|
},
|
|
3780
4207
|
{
|
|
3781
4208
|
"name": "styles",
|
|
@@ -3786,7 +4213,7 @@
|
|
|
3786
4213
|
},
|
|
3787
4214
|
{
|
|
3788
4215
|
"name": "umb-property-editor-ui-multi-url-picker",
|
|
3789
|
-
"path": "./../../src/
|
|
4216
|
+
"path": "./../../src/packages/core/property-editors/uis/multi-url-picker/property-editor-ui-multi-url-picker.element.ts",
|
|
3790
4217
|
"attributes": [
|
|
3791
4218
|
{
|
|
3792
4219
|
"name": "value",
|
|
@@ -3802,8 +4229,7 @@
|
|
|
3802
4229
|
"default": "[]"
|
|
3803
4230
|
},
|
|
3804
4231
|
{
|
|
3805
|
-
"name": "config"
|
|
3806
|
-
"type": "array"
|
|
4232
|
+
"name": "config"
|
|
3807
4233
|
},
|
|
3808
4234
|
{
|
|
3809
4235
|
"name": "styles",
|
|
@@ -3819,7 +4245,7 @@
|
|
|
3819
4245
|
},
|
|
3820
4246
|
{
|
|
3821
4247
|
"name": "umb-input-multiple-text-string-item",
|
|
3822
|
-
"path": "./../../src/
|
|
4248
|
+
"path": "./../../src/packages/core/property-editors/uis/multiple-text-string/input-multiple-text-string-item/input-multiple-text-string-item.element.ts",
|
|
3823
4249
|
"attributes": [
|
|
3824
4250
|
{
|
|
3825
4251
|
"name": "disabled",
|
|
@@ -3898,7 +4324,7 @@
|
|
|
3898
4324
|
},
|
|
3899
4325
|
{
|
|
3900
4326
|
"name": "umb-input-multiple-text-string",
|
|
3901
|
-
"path": "./../../src/
|
|
4327
|
+
"path": "./../../src/packages/core/property-editors/uis/multiple-text-string/input-multiple-text-string/input-multiple-text-string.element.ts",
|
|
3902
4328
|
"attributes": [
|
|
3903
4329
|
{
|
|
3904
4330
|
"name": "min",
|
|
@@ -4038,7 +4464,7 @@
|
|
|
4038
4464
|
},
|
|
4039
4465
|
{
|
|
4040
4466
|
"name": "umb-property-editor-ui-multiple-text-string",
|
|
4041
|
-
"path": "./../../src/
|
|
4467
|
+
"path": "./../../src/packages/core/property-editors/uis/multiple-text-string/property-editor-ui-multiple-text-string.element.ts",
|
|
4042
4468
|
"attributes": [
|
|
4043
4469
|
{
|
|
4044
4470
|
"name": "value",
|
|
@@ -4072,8 +4498,7 @@
|
|
|
4072
4498
|
"default": "[]"
|
|
4073
4499
|
},
|
|
4074
4500
|
{
|
|
4075
|
-
"name": "config"
|
|
4076
|
-
"type": "MultipleTextStringConfigData"
|
|
4501
|
+
"name": "config"
|
|
4077
4502
|
},
|
|
4078
4503
|
{
|
|
4079
4504
|
"name": "disabled",
|
|
@@ -4100,7 +4525,7 @@
|
|
|
4100
4525
|
},
|
|
4101
4526
|
{
|
|
4102
4527
|
"name": "umb-property-editor-ui-number-range",
|
|
4103
|
-
"path": "./../../src/
|
|
4528
|
+
"path": "./../../src/packages/core/property-editors/uis/number-range/property-editor-ui-number-range.element.ts",
|
|
4104
4529
|
"properties": [
|
|
4105
4530
|
{
|
|
4106
4531
|
"name": "value",
|
|
@@ -4108,8 +4533,7 @@
|
|
|
4108
4533
|
},
|
|
4109
4534
|
{
|
|
4110
4535
|
"name": "config",
|
|
4111
|
-
"
|
|
4112
|
-
"default": "[]"
|
|
4536
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4113
4537
|
},
|
|
4114
4538
|
{
|
|
4115
4539
|
"name": "styles",
|
|
@@ -4125,7 +4549,7 @@
|
|
|
4125
4549
|
},
|
|
4126
4550
|
{
|
|
4127
4551
|
"name": "umb-property-editor-ui-number",
|
|
4128
|
-
"path": "./../../src/
|
|
4552
|
+
"path": "./../../src/packages/core/property-editors/uis/number/property-editor-ui-number.element.ts",
|
|
4129
4553
|
"attributes": [
|
|
4130
4554
|
{
|
|
4131
4555
|
"name": "value",
|
|
@@ -4141,8 +4565,7 @@
|
|
|
4141
4565
|
"default": "\"\""
|
|
4142
4566
|
},
|
|
4143
4567
|
{
|
|
4144
|
-
"name": "config"
|
|
4145
|
-
"type": "array"
|
|
4568
|
+
"name": "config"
|
|
4146
4569
|
},
|
|
4147
4570
|
{
|
|
4148
4571
|
"name": "styles",
|
|
@@ -4158,7 +4581,7 @@
|
|
|
4158
4581
|
},
|
|
4159
4582
|
{
|
|
4160
4583
|
"name": "umb-property-editor-ui-order-direction",
|
|
4161
|
-
"path": "./../../src/
|
|
4584
|
+
"path": "./../../src/packages/core/property-editors/uis/order-direction/property-editor-ui-order-direction.element.ts",
|
|
4162
4585
|
"attributes": [
|
|
4163
4586
|
{
|
|
4164
4587
|
"name": "value",
|
|
@@ -4175,8 +4598,7 @@
|
|
|
4175
4598
|
},
|
|
4176
4599
|
{
|
|
4177
4600
|
"name": "config",
|
|
4178
|
-
"
|
|
4179
|
-
"default": "[]"
|
|
4601
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4180
4602
|
},
|
|
4181
4603
|
{
|
|
4182
4604
|
"name": "styles",
|
|
@@ -4187,7 +4609,7 @@
|
|
|
4187
4609
|
},
|
|
4188
4610
|
{
|
|
4189
4611
|
"name": "umb-property-editor-ui-overlay-size",
|
|
4190
|
-
"path": "./../../src/
|
|
4612
|
+
"path": "./../../src/packages/core/property-editors/uis/overlay-size/property-editor-ui-overlay-size.element.ts",
|
|
4191
4613
|
"attributes": [
|
|
4192
4614
|
{
|
|
4193
4615
|
"name": "value",
|
|
@@ -4204,8 +4626,7 @@
|
|
|
4204
4626
|
},
|
|
4205
4627
|
{
|
|
4206
4628
|
"name": "config",
|
|
4207
|
-
"
|
|
4208
|
-
"default": "[]"
|
|
4629
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4209
4630
|
},
|
|
4210
4631
|
{
|
|
4211
4632
|
"name": "styles",
|
|
@@ -4216,7 +4637,7 @@
|
|
|
4216
4637
|
},
|
|
4217
4638
|
{
|
|
4218
4639
|
"name": "umb-property-editor-ui-radio-button-list",
|
|
4219
|
-
"path": "./../../src/
|
|
4640
|
+
"path": "./../../src/packages/core/property-editors/uis/radio-button-list/property-editor-ui-radio-button-list.element.ts",
|
|
4220
4641
|
"attributes": [
|
|
4221
4642
|
{
|
|
4222
4643
|
"name": "value",
|
|
@@ -4230,8 +4651,7 @@
|
|
|
4230
4651
|
"type": "string"
|
|
4231
4652
|
},
|
|
4232
4653
|
{
|
|
4233
|
-
"name": "config"
|
|
4234
|
-
"type": "array"
|
|
4654
|
+
"name": "config"
|
|
4235
4655
|
},
|
|
4236
4656
|
{
|
|
4237
4657
|
"name": "styles",
|
|
@@ -4247,7 +4667,7 @@
|
|
|
4247
4667
|
},
|
|
4248
4668
|
{
|
|
4249
4669
|
"name": "umb-property-editor-ui-slider",
|
|
4250
|
-
"path": "./../../src/
|
|
4670
|
+
"path": "./../../src/packages/core/property-editors/uis/slider/property-editor-ui-slider.element.ts",
|
|
4251
4671
|
"attributes": [
|
|
4252
4672
|
{
|
|
4253
4673
|
"name": "value",
|
|
@@ -4263,8 +4683,7 @@
|
|
|
4263
4683
|
"default": "{}"
|
|
4264
4684
|
},
|
|
4265
4685
|
{
|
|
4266
|
-
"name": "config"
|
|
4267
|
-
"type": "array"
|
|
4686
|
+
"name": "config"
|
|
4268
4687
|
},
|
|
4269
4688
|
{
|
|
4270
4689
|
"name": "styles",
|
|
@@ -4278,67 +4697,9 @@
|
|
|
4278
4697
|
}
|
|
4279
4698
|
]
|
|
4280
4699
|
},
|
|
4281
|
-
{
|
|
4282
|
-
"name": "umb-property-editor-ui-tags-storage-type",
|
|
4283
|
-
"path": "./../../src/backoffice/core/property-editors/uis/tags/config/storage-type/property-editor-ui-tags-storage-type.element.ts",
|
|
4284
|
-
"attributes": [
|
|
4285
|
-
{
|
|
4286
|
-
"name": "value",
|
|
4287
|
-
"type": "string",
|
|
4288
|
-
"default": "\"\""
|
|
4289
|
-
}
|
|
4290
|
-
],
|
|
4291
|
-
"properties": [
|
|
4292
|
-
{
|
|
4293
|
-
"name": "value",
|
|
4294
|
-
"attribute": "value",
|
|
4295
|
-
"type": "string",
|
|
4296
|
-
"default": "\"\""
|
|
4297
|
-
},
|
|
4298
|
-
{
|
|
4299
|
-
"name": "config",
|
|
4300
|
-
"type": "never[]",
|
|
4301
|
-
"default": "[]"
|
|
4302
|
-
},
|
|
4303
|
-
{
|
|
4304
|
-
"name": "styles",
|
|
4305
|
-
"type": "CSSResult[]",
|
|
4306
|
-
"default": "[\"UUITextStyles\"]"
|
|
4307
|
-
}
|
|
4308
|
-
]
|
|
4309
|
-
},
|
|
4310
|
-
{
|
|
4311
|
-
"name": "umb-property-editor-ui-tags",
|
|
4312
|
-
"path": "./../../src/backoffice/core/property-editors/uis/tags/property-editor-ui-tags.element.ts",
|
|
4313
|
-
"attributes": [
|
|
4314
|
-
{
|
|
4315
|
-
"name": "value",
|
|
4316
|
-
"type": "string",
|
|
4317
|
-
"default": "\"\""
|
|
4318
|
-
}
|
|
4319
|
-
],
|
|
4320
|
-
"properties": [
|
|
4321
|
-
{
|
|
4322
|
-
"name": "value",
|
|
4323
|
-
"attribute": "value",
|
|
4324
|
-
"type": "string",
|
|
4325
|
-
"default": "\"\""
|
|
4326
|
-
},
|
|
4327
|
-
{
|
|
4328
|
-
"name": "config",
|
|
4329
|
-
"type": "never[]",
|
|
4330
|
-
"default": "[]"
|
|
4331
|
-
},
|
|
4332
|
-
{
|
|
4333
|
-
"name": "styles",
|
|
4334
|
-
"type": "CSSResult[]",
|
|
4335
|
-
"default": "[\"UUITextStyles\"]"
|
|
4336
|
-
}
|
|
4337
|
-
]
|
|
4338
|
-
},
|
|
4339
4700
|
{
|
|
4340
4701
|
"name": "umb-property-editor-ui-text-box",
|
|
4341
|
-
"path": "./../../src/
|
|
4702
|
+
"path": "./../../src/packages/core/property-editors/uis/text-box/property-editor-ui-text-box.element.ts",
|
|
4342
4703
|
"attributes": [
|
|
4343
4704
|
{
|
|
4344
4705
|
"name": "value",
|
|
@@ -4354,8 +4715,7 @@
|
|
|
4354
4715
|
"default": "\"\""
|
|
4355
4716
|
},
|
|
4356
4717
|
{
|
|
4357
|
-
"name": "config"
|
|
4358
|
-
"type": "array"
|
|
4718
|
+
"name": "config"
|
|
4359
4719
|
},
|
|
4360
4720
|
{
|
|
4361
4721
|
"name": "styles",
|
|
@@ -4371,7 +4731,7 @@
|
|
|
4371
4731
|
},
|
|
4372
4732
|
{
|
|
4373
4733
|
"name": "umb-property-editor-ui-textarea",
|
|
4374
|
-
"path": "./../../src/
|
|
4734
|
+
"path": "./../../src/packages/core/property-editors/uis/textarea/property-editor-ui-textarea.element.ts",
|
|
4375
4735
|
"attributes": [
|
|
4376
4736
|
{
|
|
4377
4737
|
"name": "value",
|
|
@@ -4387,8 +4747,7 @@
|
|
|
4387
4747
|
"default": "\"\""
|
|
4388
4748
|
},
|
|
4389
4749
|
{
|
|
4390
|
-
"name": "config"
|
|
4391
|
-
"type": "array"
|
|
4750
|
+
"name": "config"
|
|
4392
4751
|
},
|
|
4393
4752
|
{
|
|
4394
4753
|
"name": "styles",
|
|
@@ -4404,7 +4763,7 @@
|
|
|
4404
4763
|
},
|
|
4405
4764
|
{
|
|
4406
4765
|
"name": "umb-property-editor-ui-tiny-mce-configuration",
|
|
4407
|
-
"path": "./../../src/
|
|
4766
|
+
"path": "./../../src/packages/core/property-editors/uis/tiny-mce/config/configuration/property-editor-ui-tiny-mce-configuration.element.ts",
|
|
4408
4767
|
"attributes": [
|
|
4409
4768
|
{
|
|
4410
4769
|
"name": "value",
|
|
@@ -4433,7 +4792,7 @@
|
|
|
4433
4792
|
},
|
|
4434
4793
|
{
|
|
4435
4794
|
"name": "umb-property-editor-ui-tiny-mce",
|
|
4436
|
-
"path": "./../../src/
|
|
4795
|
+
"path": "./../../src/packages/core/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.element.ts",
|
|
4437
4796
|
"attributes": [
|
|
4438
4797
|
{
|
|
4439
4798
|
"name": "value",
|
|
@@ -4450,8 +4809,7 @@
|
|
|
4450
4809
|
},
|
|
4451
4810
|
{
|
|
4452
4811
|
"name": "config",
|
|
4453
|
-
"
|
|
4454
|
-
"default": "[]"
|
|
4812
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4455
4813
|
},
|
|
4456
4814
|
{
|
|
4457
4815
|
"name": "styles",
|
|
@@ -4462,7 +4820,7 @@
|
|
|
4462
4820
|
},
|
|
4463
4821
|
{
|
|
4464
4822
|
"name": "umb-property-editor-ui-toggle",
|
|
4465
|
-
"path": "./../../src/
|
|
4823
|
+
"path": "./../../src/packages/core/property-editors/uis/toggle/property-editor-ui-toggle.element.ts",
|
|
4466
4824
|
"attributes": [
|
|
4467
4825
|
{
|
|
4468
4826
|
"name": "value",
|
|
@@ -4478,8 +4836,7 @@
|
|
|
4478
4836
|
"default": "false"
|
|
4479
4837
|
},
|
|
4480
4838
|
{
|
|
4481
|
-
"name": "config"
|
|
4482
|
-
"type": "array"
|
|
4839
|
+
"name": "config"
|
|
4483
4840
|
},
|
|
4484
4841
|
{
|
|
4485
4842
|
"name": "styles",
|
|
@@ -4495,7 +4852,7 @@
|
|
|
4495
4852
|
},
|
|
4496
4853
|
{
|
|
4497
4854
|
"name": "umb-property-editor-ui-tree-picker-start-node",
|
|
4498
|
-
"path": "./../../src/
|
|
4855
|
+
"path": "./../../src/packages/core/property-editors/uis/tree-picker/config/start-node/property-editor-ui-tree-picker-start-node.element.ts",
|
|
4499
4856
|
"attributes": [
|
|
4500
4857
|
{
|
|
4501
4858
|
"name": "value",
|
|
@@ -4524,7 +4881,7 @@
|
|
|
4524
4881
|
},
|
|
4525
4882
|
{
|
|
4526
4883
|
"name": "umb-property-editor-ui-tree-picker",
|
|
4527
|
-
"path": "./../../src/
|
|
4884
|
+
"path": "./../../src/packages/core/property-editors/uis/tree-picker/property-editor-ui-tree-picker.element.ts",
|
|
4528
4885
|
"attributes": [
|
|
4529
4886
|
{
|
|
4530
4887
|
"name": "value",
|
|
@@ -4541,8 +4898,7 @@
|
|
|
4541
4898
|
},
|
|
4542
4899
|
{
|
|
4543
4900
|
"name": "config",
|
|
4544
|
-
"
|
|
4545
|
-
"default": "[]"
|
|
4901
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4546
4902
|
},
|
|
4547
4903
|
{
|
|
4548
4904
|
"name": "styles",
|
|
@@ -4553,7 +4909,7 @@
|
|
|
4553
4909
|
},
|
|
4554
4910
|
{
|
|
4555
4911
|
"name": "umb-property-editor-ui-upload-field",
|
|
4556
|
-
"path": "./../../src/
|
|
4912
|
+
"path": "./../../src/packages/core/property-editors/uis/upload-field/property-editor-ui-upload-field.element.ts",
|
|
4557
4913
|
"attributes": [
|
|
4558
4914
|
{
|
|
4559
4915
|
"name": "value",
|
|
@@ -4569,8 +4925,7 @@
|
|
|
4569
4925
|
"default": "\"\""
|
|
4570
4926
|
},
|
|
4571
4927
|
{
|
|
4572
|
-
"name": "config"
|
|
4573
|
-
"type": "array"
|
|
4928
|
+
"name": "config"
|
|
4574
4929
|
},
|
|
4575
4930
|
{
|
|
4576
4931
|
"name": "styles",
|
|
@@ -4586,7 +4941,7 @@
|
|
|
4586
4941
|
},
|
|
4587
4942
|
{
|
|
4588
4943
|
"name": "umb-property-editor-ui-user-picker",
|
|
4589
|
-
"path": "./../../src/
|
|
4944
|
+
"path": "./../../src/packages/core/property-editors/uis/user-picker/property-editor-ui-user-picker.element.ts",
|
|
4590
4945
|
"attributes": [
|
|
4591
4946
|
{
|
|
4592
4947
|
"name": "value",
|
|
@@ -4603,8 +4958,7 @@
|
|
|
4603
4958
|
},
|
|
4604
4959
|
{
|
|
4605
4960
|
"name": "config",
|
|
4606
|
-
"
|
|
4607
|
-
"default": "[]"
|
|
4961
|
+
"default": "\"new UmbDataTypePropertyCollection()\""
|
|
4608
4962
|
},
|
|
4609
4963
|
{
|
|
4610
4964
|
"name": "styles",
|
|
@@ -4615,7 +4969,7 @@
|
|
|
4615
4969
|
},
|
|
4616
4970
|
{
|
|
4617
4971
|
"name": "umb-property-editor-ui-value-type",
|
|
4618
|
-
"path": "./../../src/
|
|
4972
|
+
"path": "./../../src/packages/core/property-editors/uis/value-type/property-editor-ui-value-type.element.ts",
|
|
4619
4973
|
"attributes": [
|
|
4620
4974
|
{
|
|
4621
4975
|
"name": "value",
|
|
@@ -4631,9 +4985,7 @@
|
|
|
4631
4985
|
"default": "\"\""
|
|
4632
4986
|
},
|
|
4633
4987
|
{
|
|
4634
|
-
"name": "config"
|
|
4635
|
-
"type": "never[]",
|
|
4636
|
-
"default": "[]"
|
|
4988
|
+
"name": "config"
|
|
4637
4989
|
},
|
|
4638
4990
|
{
|
|
4639
4991
|
"name": "styles",
|
|
@@ -4649,7 +5001,7 @@
|
|
|
4649
5001
|
},
|
|
4650
5002
|
{
|
|
4651
5003
|
"name": "umb-dashboard-redirect-management",
|
|
4652
|
-
"path": "./../../src/
|
|
5004
|
+
"path": "./../../src/packages/documents/dashboards/redirect-management/dashboard-redirect-management.element.ts",
|
|
4653
5005
|
"attributes": [
|
|
4654
5006
|
{
|
|
4655
5007
|
"name": "items-per-page",
|
|
@@ -4673,11 +5025,11 @@
|
|
|
4673
5025
|
},
|
|
4674
5026
|
{
|
|
4675
5027
|
"name": "umb-document-blueprint-root-workspace",
|
|
4676
|
-
"path": "./../../src/
|
|
5028
|
+
"path": "./../../src/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.ts"
|
|
4677
5029
|
},
|
|
4678
5030
|
{
|
|
4679
5031
|
"name": "umb-input-document-type-picker",
|
|
4680
|
-
"path": "./../../src/
|
|
5032
|
+
"path": "./../../src/packages/documents/document-types/components/input-document-type-picker/input-document-type-picker.element.ts",
|
|
4681
5033
|
"attributes": [
|
|
4682
5034
|
{
|
|
4683
5035
|
"name": "selectedIds",
|
|
@@ -4749,7 +5101,7 @@
|
|
|
4749
5101
|
},
|
|
4750
5102
|
{
|
|
4751
5103
|
"name": "umb-allowed-document-types-modal",
|
|
4752
|
-
"path": "./../../src/
|
|
5104
|
+
"path": "./../../src/packages/documents/document-types/modals/allowed-document-types/allowed-document-types-modal.element.ts",
|
|
4753
5105
|
"properties": [
|
|
4754
5106
|
{
|
|
4755
5107
|
"name": "styles",
|
|
@@ -4760,7 +5112,7 @@
|
|
|
4760
5112
|
},
|
|
4761
5113
|
{
|
|
4762
5114
|
"name": "umb-document-type-workspace-editor",
|
|
4763
|
-
"path": "./../../src/
|
|
5115
|
+
"path": "./../../src/packages/documents/document-types/workspace/document-type-workspace-editor.element.ts",
|
|
4764
5116
|
"properties": [
|
|
4765
5117
|
{
|
|
4766
5118
|
"name": "styles",
|
|
@@ -4771,7 +5123,7 @@
|
|
|
4771
5123
|
},
|
|
4772
5124
|
{
|
|
4773
5125
|
"name": "umb-document-type-workspace",
|
|
4774
|
-
"path": "./../../src/
|
|
5126
|
+
"path": "./../../src/packages/documents/document-types/workspace/document-type-workspace.element.ts",
|
|
4775
5127
|
"properties": [
|
|
4776
5128
|
{
|
|
4777
5129
|
"name": "styles",
|
|
@@ -4782,7 +5134,7 @@
|
|
|
4782
5134
|
},
|
|
4783
5135
|
{
|
|
4784
5136
|
"name": "umb-document-type-workspace-view-design",
|
|
4785
|
-
"path": "./../../src/
|
|
5137
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-design.element.ts",
|
|
4786
5138
|
"properties": [
|
|
4787
5139
|
{
|
|
4788
5140
|
"name": "styles",
|
|
@@ -4793,7 +5145,7 @@
|
|
|
4793
5145
|
},
|
|
4794
5146
|
{
|
|
4795
5147
|
"name": "umb-document-type-workspace-view-edit-properties",
|
|
4796
|
-
"path": "./../../src/
|
|
5148
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-properties.element.ts",
|
|
4797
5149
|
"attributes": [
|
|
4798
5150
|
{
|
|
4799
5151
|
"name": "container-id",
|
|
@@ -4831,7 +5183,7 @@
|
|
|
4831
5183
|
},
|
|
4832
5184
|
{
|
|
4833
5185
|
"name": "document-type-workspace-view-edit-property",
|
|
4834
|
-
"path": "./../../src/
|
|
5186
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.ts",
|
|
4835
5187
|
"attributes": [
|
|
4836
5188
|
{
|
|
4837
5189
|
"name": "property",
|
|
@@ -4881,7 +5233,7 @@
|
|
|
4881
5233
|
},
|
|
4882
5234
|
{
|
|
4883
5235
|
"name": "umb-document-type-workspace-view-edit-tab",
|
|
4884
|
-
"path": "./../../src/
|
|
5236
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-tab.element.ts",
|
|
4885
5237
|
"attributes": [
|
|
4886
5238
|
{
|
|
4887
5239
|
"name": "ownerTabId",
|
|
@@ -4921,7 +5273,7 @@
|
|
|
4921
5273
|
},
|
|
4922
5274
|
{
|
|
4923
5275
|
"name": "umb-document-type-workspace-view-edit",
|
|
4924
|
-
"path": "./../../src/
|
|
5276
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.ts",
|
|
4925
5277
|
"properties": [
|
|
4926
5278
|
{
|
|
4927
5279
|
"name": "styles",
|
|
@@ -4932,7 +5284,7 @@
|
|
|
4932
5284
|
},
|
|
4933
5285
|
{
|
|
4934
5286
|
"name": "umb-document-type-workspace-view-details",
|
|
4935
|
-
"path": "./../../src/
|
|
5287
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/details/document-type-workspace-view-details.element.ts",
|
|
4936
5288
|
"properties": [
|
|
4937
5289
|
{
|
|
4938
5290
|
"name": "styles",
|
|
@@ -4943,7 +5295,7 @@
|
|
|
4943
5295
|
},
|
|
4944
5296
|
{
|
|
4945
5297
|
"name": "umb-document-type-workspace-view-structure",
|
|
4946
|
-
"path": "./../../src/
|
|
5298
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.ts",
|
|
4947
5299
|
"properties": [
|
|
4948
5300
|
{
|
|
4949
5301
|
"name": "styles",
|
|
@@ -4954,7 +5306,7 @@
|
|
|
4954
5306
|
},
|
|
4955
5307
|
{
|
|
4956
5308
|
"name": "umb-document-type-workspace-view-templates",
|
|
4957
|
-
"path": "./../../src/
|
|
5309
|
+
"path": "./../../src/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts",
|
|
4958
5310
|
"properties": [
|
|
4959
5311
|
{
|
|
4960
5312
|
"name": "styles",
|
|
@@ -4965,7 +5317,7 @@
|
|
|
4965
5317
|
},
|
|
4966
5318
|
{
|
|
4967
5319
|
"name": "umb-document-table-actions-column-layout",
|
|
4968
|
-
"path": "./../../src/
|
|
5320
|
+
"path": "./../../src/packages/documents/documents/collection/views/table/column-layouts/document-table-actions-column-layout.element.ts",
|
|
4969
5321
|
"properties": [
|
|
4970
5322
|
{
|
|
4971
5323
|
"name": "column"
|
|
@@ -4985,7 +5337,7 @@
|
|
|
4985
5337
|
},
|
|
4986
5338
|
{
|
|
4987
5339
|
"name": "umb-document-table-collection-view",
|
|
4988
|
-
"path": "./../../src/
|
|
5340
|
+
"path": "./../../src/packages/documents/documents/collection/views/table/document-table-collection-view.element.ts",
|
|
4989
5341
|
"properties": [
|
|
4990
5342
|
{
|
|
4991
5343
|
"name": "styles",
|
|
@@ -4996,7 +5348,7 @@
|
|
|
4996
5348
|
},
|
|
4997
5349
|
{
|
|
4998
5350
|
"name": "umb-collection-view-document-table",
|
|
4999
|
-
"path": "./../../src/
|
|
5351
|
+
"path": "./../../src/packages/documents/documents/collection/views/table/document-table-collection-view.element.ts",
|
|
5000
5352
|
"properties": [
|
|
5001
5353
|
{
|
|
5002
5354
|
"name": "styles",
|
|
@@ -5007,7 +5359,7 @@
|
|
|
5007
5359
|
},
|
|
5008
5360
|
{
|
|
5009
5361
|
"name": "umb-input-document-picker",
|
|
5010
|
-
"path": "./../../src/
|
|
5362
|
+
"path": "./../../src/packages/documents/documents/components/input-document-picker/input-document-picker.element.ts",
|
|
5011
5363
|
"attributes": [
|
|
5012
5364
|
{
|
|
5013
5365
|
"name": "min",
|
|
@@ -5126,34 +5478,12 @@
|
|
|
5126
5478
|
},
|
|
5127
5479
|
{
|
|
5128
5480
|
"name": "umb-document-menu-item",
|
|
5129
|
-
"path": "./../../src/
|
|
5481
|
+
"path": "./../../src/packages/documents/documents/menu-item/document-menu-item.element.ts"
|
|
5130
5482
|
},
|
|
5131
5483
|
{
|
|
5132
|
-
"name": "umb-document-picker
|
|
5133
|
-
"path": "./../../src/
|
|
5134
|
-
"
|
|
5135
|
-
{
|
|
5136
|
-
"name": "styles",
|
|
5137
|
-
"type": "CSSResult[]",
|
|
5138
|
-
"default": "[\"UUITextStyles\",null]"
|
|
5139
|
-
}
|
|
5140
|
-
]
|
|
5141
|
-
},
|
|
5142
|
-
{
|
|
5143
|
-
"name": "umb-document-type-picker-modal",
|
|
5144
|
-
"path": "./../../src/backoffice/documents/documents/modals/document-type-picker/document-type-picker-modal.element.ts",
|
|
5145
|
-
"properties": [
|
|
5146
|
-
{
|
|
5147
|
-
"name": "styles",
|
|
5148
|
-
"type": "CSSResult[]",
|
|
5149
|
-
"default": "[\"UUITextStyles\",null]"
|
|
5150
|
-
}
|
|
5151
|
-
]
|
|
5152
|
-
},
|
|
5153
|
-
{
|
|
5154
|
-
"name": "umb-property-editor-ui-document-picker",
|
|
5155
|
-
"path": "./../../src/backoffice/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.ts",
|
|
5156
|
-
"attributes": [
|
|
5484
|
+
"name": "umb-property-editor-ui-document-picker",
|
|
5485
|
+
"path": "./../../src/packages/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.ts",
|
|
5486
|
+
"attributes": [
|
|
5157
5487
|
{
|
|
5158
5488
|
"name": "value",
|
|
5159
5489
|
"type": "string[]"
|
|
@@ -5166,8 +5496,7 @@
|
|
|
5166
5496
|
"type": "string[]"
|
|
5167
5497
|
},
|
|
5168
5498
|
{
|
|
5169
|
-
"name": "config"
|
|
5170
|
-
"type": "array"
|
|
5499
|
+
"name": "config"
|
|
5171
5500
|
}
|
|
5172
5501
|
],
|
|
5173
5502
|
"events": [
|
|
@@ -5178,7 +5507,7 @@
|
|
|
5178
5507
|
},
|
|
5179
5508
|
{
|
|
5180
5509
|
"name": "umb-document-tree-item",
|
|
5181
|
-
"path": "./../../src/
|
|
5510
|
+
"path": "./../../src/packages/documents/documents/tree/tree-item/document-tree-item.element.ts",
|
|
5182
5511
|
"properties": [
|
|
5183
5512
|
{
|
|
5184
5513
|
"name": "item"
|
|
@@ -5192,7 +5521,7 @@
|
|
|
5192
5521
|
},
|
|
5193
5522
|
{
|
|
5194
5523
|
"name": "umb-document-workspace-editor",
|
|
5195
|
-
"path": "./../../src/
|
|
5524
|
+
"path": "./../../src/packages/documents/documents/workspace/document-workspace-editor.element.ts",
|
|
5196
5525
|
"properties": [
|
|
5197
5526
|
{
|
|
5198
5527
|
"name": "styles",
|
|
@@ -5203,7 +5532,7 @@
|
|
|
5203
5532
|
},
|
|
5204
5533
|
{
|
|
5205
5534
|
"name": "umb-document-workspace-split-view",
|
|
5206
|
-
"path": "./../../src/
|
|
5535
|
+
"path": "./../../src/packages/documents/documents/workspace/document-workspace-split-view.element.ts",
|
|
5207
5536
|
"properties": [
|
|
5208
5537
|
{
|
|
5209
5538
|
"name": "styles",
|
|
@@ -5214,7 +5543,7 @@
|
|
|
5214
5543
|
},
|
|
5215
5544
|
{
|
|
5216
5545
|
"name": "umb-document-workspace",
|
|
5217
|
-
"path": "./../../src/
|
|
5546
|
+
"path": "./../../src/packages/documents/documents/workspace/document-workspace.element.ts",
|
|
5218
5547
|
"properties": [
|
|
5219
5548
|
{
|
|
5220
5549
|
"name": "styles",
|
|
@@ -5225,7 +5554,7 @@
|
|
|
5225
5554
|
},
|
|
5226
5555
|
{
|
|
5227
5556
|
"name": "umb-document-workspace-view-edit-properties",
|
|
5228
|
-
"path": "./../../src/
|
|
5557
|
+
"path": "./../../src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-properties.element.ts",
|
|
5229
5558
|
"attributes": [
|
|
5230
5559
|
{
|
|
5231
5560
|
"name": "container-name",
|
|
@@ -5254,7 +5583,7 @@
|
|
|
5254
5583
|
},
|
|
5255
5584
|
{
|
|
5256
5585
|
"name": "umb-document-workspace-view-edit-tab",
|
|
5257
|
-
"path": "./../../src/
|
|
5586
|
+
"path": "./../../src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-tab.element.ts",
|
|
5258
5587
|
"attributes": [
|
|
5259
5588
|
{
|
|
5260
5589
|
"name": "tabName",
|
|
@@ -5285,7 +5614,7 @@
|
|
|
5285
5614
|
},
|
|
5286
5615
|
{
|
|
5287
5616
|
"name": "umb-document-workspace-view-edit",
|
|
5288
|
-
"path": "./../../src/
|
|
5617
|
+
"path": "./../../src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit.element.ts",
|
|
5289
5618
|
"properties": [
|
|
5290
5619
|
{
|
|
5291
5620
|
"name": "styles",
|
|
@@ -5296,7 +5625,7 @@
|
|
|
5296
5625
|
},
|
|
5297
5626
|
{
|
|
5298
5627
|
"name": "umb-document-info-workspace-view",
|
|
5299
|
-
"path": "./../../src/
|
|
5628
|
+
"path": "./../../src/packages/documents/documents/workspace/views/info/document-info-workspace-view.element.ts",
|
|
5300
5629
|
"properties": [
|
|
5301
5630
|
{
|
|
5302
5631
|
"name": "styles",
|
|
@@ -5307,7 +5636,7 @@
|
|
|
5307
5636
|
},
|
|
5308
5637
|
{
|
|
5309
5638
|
"name": "umb-media-type-workspace-edit",
|
|
5310
|
-
"path": "./../../src/
|
|
5639
|
+
"path": "./../../src/packages/media/media-types/workspace/media-type-workspace-edit.element.ts",
|
|
5311
5640
|
"properties": [
|
|
5312
5641
|
{
|
|
5313
5642
|
"name": "styles",
|
|
@@ -5318,7 +5647,7 @@
|
|
|
5318
5647
|
},
|
|
5319
5648
|
{
|
|
5320
5649
|
"name": "umb-media-type-workspace",
|
|
5321
|
-
"path": "./../../src/
|
|
5650
|
+
"path": "./../../src/packages/media/media-types/workspace/media-type-workspace.element.ts",
|
|
5322
5651
|
"properties": [
|
|
5323
5652
|
{
|
|
5324
5653
|
"name": "styles",
|
|
@@ -5329,7 +5658,7 @@
|
|
|
5329
5658
|
},
|
|
5330
5659
|
{
|
|
5331
5660
|
"name": "umb-media-type-workspace-",
|
|
5332
|
-
"path": "./../../src/
|
|
5661
|
+
"path": "./../../src/packages/media/media-types/workspace/media-type-workspace.element.ts",
|
|
5333
5662
|
"properties": [
|
|
5334
5663
|
{
|
|
5335
5664
|
"name": "styles",
|
|
@@ -5340,7 +5669,7 @@
|
|
|
5340
5669
|
},
|
|
5341
5670
|
{
|
|
5342
5671
|
"name": "umb-collection-view-media-test",
|
|
5343
|
-
"path": "./../../src/
|
|
5672
|
+
"path": "./../../src/packages/media/media/collection-view/collection-view-media-test.element.ts",
|
|
5344
5673
|
"properties": [
|
|
5345
5674
|
{
|
|
5346
5675
|
"name": "styles",
|
|
@@ -5351,7 +5680,7 @@
|
|
|
5351
5680
|
},
|
|
5352
5681
|
{
|
|
5353
5682
|
"name": "umb-media-grid-collection-view",
|
|
5354
|
-
"path": "./../../src/
|
|
5683
|
+
"path": "./../../src/packages/media/media/collection-view/media-grid-collection-view.element.ts",
|
|
5355
5684
|
"properties": [
|
|
5356
5685
|
{
|
|
5357
5686
|
"name": "styles",
|
|
@@ -5362,7 +5691,7 @@
|
|
|
5362
5691
|
},
|
|
5363
5692
|
{
|
|
5364
5693
|
"name": "umb-media-table-collection-view",
|
|
5365
|
-
"path": "./../../src/
|
|
5694
|
+
"path": "./../../src/packages/media/media/collection-view/media-table-collection-view.element.ts",
|
|
5366
5695
|
"properties": [
|
|
5367
5696
|
{
|
|
5368
5697
|
"name": "styles",
|
|
@@ -5373,7 +5702,7 @@
|
|
|
5373
5702
|
},
|
|
5374
5703
|
{
|
|
5375
5704
|
"name": "umb-input-media-picker",
|
|
5376
|
-
"path": "./../../src/
|
|
5705
|
+
"path": "./../../src/packages/media/media/components/input-media-picker/input-media-picker.element.ts",
|
|
5377
5706
|
"attributes": [
|
|
5378
5707
|
{
|
|
5379
5708
|
"name": "min",
|
|
@@ -5492,22 +5821,11 @@
|
|
|
5492
5821
|
},
|
|
5493
5822
|
{
|
|
5494
5823
|
"name": "umb-media-menu-item",
|
|
5495
|
-
"path": "./../../src/
|
|
5496
|
-
},
|
|
5497
|
-
{
|
|
5498
|
-
"name": "umb-media-picker-modal",
|
|
5499
|
-
"path": "./../../src/backoffice/media/media/modals/media-picker/media-picker-modal.element.ts",
|
|
5500
|
-
"properties": [
|
|
5501
|
-
{
|
|
5502
|
-
"name": "styles",
|
|
5503
|
-
"type": "CSSResult[]",
|
|
5504
|
-
"default": "[\"UUITextStyles\",null]"
|
|
5505
|
-
}
|
|
5506
|
-
]
|
|
5824
|
+
"path": "./../../src/packages/media/media/menu-item/media-menu-item.element.ts"
|
|
5507
5825
|
},
|
|
5508
5826
|
{
|
|
5509
5827
|
"name": "umb-media-workspace-edit",
|
|
5510
|
-
"path": "./../../src/
|
|
5828
|
+
"path": "./../../src/packages/media/media/workspace/media-workspace-edit.element.ts",
|
|
5511
5829
|
"properties": [
|
|
5512
5830
|
{
|
|
5513
5831
|
"name": "styles",
|
|
@@ -5518,7 +5836,7 @@
|
|
|
5518
5836
|
},
|
|
5519
5837
|
{
|
|
5520
5838
|
"name": "umb-media-workspace",
|
|
5521
|
-
"path": "./../../src/
|
|
5839
|
+
"path": "./../../src/packages/media/media/workspace/media-workspace.element.ts",
|
|
5522
5840
|
"properties": [
|
|
5523
5841
|
{
|
|
5524
5842
|
"name": "styles",
|
|
@@ -5529,7 +5847,7 @@
|
|
|
5529
5847
|
},
|
|
5530
5848
|
{
|
|
5531
5849
|
"name": "umb-media-edit-workspace-view",
|
|
5532
|
-
"path": "./../../src/
|
|
5850
|
+
"path": "./../../src/packages/media/media/workspace/views/edit/media-edit-workspace-view.element.ts",
|
|
5533
5851
|
"properties": [
|
|
5534
5852
|
{
|
|
5535
5853
|
"name": "styles",
|
|
@@ -5540,7 +5858,7 @@
|
|
|
5540
5858
|
},
|
|
5541
5859
|
{
|
|
5542
5860
|
"name": "umb-media-info-workspace-view",
|
|
5543
|
-
"path": "./../../src/
|
|
5861
|
+
"path": "./../../src/packages/media/media/workspace/views/info/media-info-workspace-view.element.ts",
|
|
5544
5862
|
"properties": [
|
|
5545
5863
|
{
|
|
5546
5864
|
"name": "styles",
|
|
@@ -5551,7 +5869,7 @@
|
|
|
5551
5869
|
},
|
|
5552
5870
|
{
|
|
5553
5871
|
"name": "umb-dashboard-members-welcome",
|
|
5554
|
-
"path": "./../../src/
|
|
5872
|
+
"path": "./../../src/packages/members/dashboards/welcome/dashboard-members-welcome.element.ts",
|
|
5555
5873
|
"properties": [
|
|
5556
5874
|
{
|
|
5557
5875
|
"name": "styles",
|
|
@@ -5562,7 +5880,7 @@
|
|
|
5562
5880
|
},
|
|
5563
5881
|
{
|
|
5564
5882
|
"name": "umb-member-group-workspace-edit",
|
|
5565
|
-
"path": "./../../src/
|
|
5883
|
+
"path": "./../../src/packages/members/member-groups/workspace/member-group-workspace-edit.element.ts",
|
|
5566
5884
|
"properties": [
|
|
5567
5885
|
{
|
|
5568
5886
|
"name": "styles",
|
|
@@ -5573,7 +5891,7 @@
|
|
|
5573
5891
|
},
|
|
5574
5892
|
{
|
|
5575
5893
|
"name": "umb-member-group-workspace",
|
|
5576
|
-
"path": "./../../src/
|
|
5894
|
+
"path": "./../../src/packages/members/member-groups/workspace/member-group-workspace.element.ts",
|
|
5577
5895
|
"properties": [
|
|
5578
5896
|
{
|
|
5579
5897
|
"name": "styles",
|
|
@@ -5584,7 +5902,7 @@
|
|
|
5584
5902
|
},
|
|
5585
5903
|
{
|
|
5586
5904
|
"name": "umb-workspace-view-member-group-info",
|
|
5587
|
-
"path": "./../../src/
|
|
5905
|
+
"path": "./../../src/packages/members/member-groups/workspace/views/info/workspace-view-member-group-info.element.ts",
|
|
5588
5906
|
"properties": [
|
|
5589
5907
|
{
|
|
5590
5908
|
"name": "styles",
|
|
@@ -5595,7 +5913,7 @@
|
|
|
5595
5913
|
},
|
|
5596
5914
|
{
|
|
5597
5915
|
"name": "umb-member-type-workspace-edit",
|
|
5598
|
-
"path": "./../../src/
|
|
5916
|
+
"path": "./../../src/packages/members/member-types/workspace/member-type-workspace-edit.element.ts",
|
|
5599
5917
|
"properties": [
|
|
5600
5918
|
{
|
|
5601
5919
|
"name": "styles",
|
|
@@ -5606,7 +5924,7 @@
|
|
|
5606
5924
|
},
|
|
5607
5925
|
{
|
|
5608
5926
|
"name": "umb-member-type-workspace",
|
|
5609
|
-
"path": "./../../src/
|
|
5927
|
+
"path": "./../../src/packages/members/member-types/workspace/member-type-workspace.element.ts",
|
|
5610
5928
|
"properties": [
|
|
5611
5929
|
{
|
|
5612
5930
|
"name": "styles",
|
|
@@ -5617,7 +5935,7 @@
|
|
|
5617
5935
|
},
|
|
5618
5936
|
{
|
|
5619
5937
|
"name": "umb-member-workspace-edit",
|
|
5620
|
-
"path": "./../../src/
|
|
5938
|
+
"path": "./../../src/packages/members/members/workspace/member-workspace-edit.element.ts",
|
|
5621
5939
|
"properties": [
|
|
5622
5940
|
{
|
|
5623
5941
|
"name": "styles",
|
|
@@ -5628,7 +5946,7 @@
|
|
|
5628
5946
|
},
|
|
5629
5947
|
{
|
|
5630
5948
|
"name": "umb-member-workspace",
|
|
5631
|
-
"path": "./../../src/
|
|
5949
|
+
"path": "./../../src/packages/members/members/workspace/member-workspace.element.ts",
|
|
5632
5950
|
"properties": [
|
|
5633
5951
|
{
|
|
5634
5952
|
"name": "styles",
|
|
@@ -5639,7 +5957,7 @@
|
|
|
5639
5957
|
},
|
|
5640
5958
|
{
|
|
5641
5959
|
"name": "umb-workspace-package-builder",
|
|
5642
|
-
"path": "./../../src/
|
|
5960
|
+
"path": "./../../src/packages/packages/package-builder/workspace/workspace-package-builder.element.ts",
|
|
5643
5961
|
"attributes": [
|
|
5644
5962
|
{
|
|
5645
5963
|
"name": "entityId",
|
|
@@ -5661,7 +5979,7 @@
|
|
|
5661
5979
|
},
|
|
5662
5980
|
{
|
|
5663
5981
|
"name": "umb-workspace-package",
|
|
5664
|
-
"path": "./../../src/
|
|
5982
|
+
"path": "./../../src/packages/packages/package-repo/workspace/workspace-package.element.ts",
|
|
5665
5983
|
"attributes": [
|
|
5666
5984
|
{
|
|
5667
5985
|
"name": "entityId",
|
|
@@ -5683,11 +6001,11 @@
|
|
|
5683
6001
|
},
|
|
5684
6002
|
{
|
|
5685
6003
|
"name": "umb-created-packages-section-view",
|
|
5686
|
-
"path": "./../../src/
|
|
6004
|
+
"path": "./../../src/packages/packages/package-section/views/created/created-packages-section-view.element.ts"
|
|
5687
6005
|
},
|
|
5688
6006
|
{
|
|
5689
6007
|
"name": "umb-packages-created-overview",
|
|
5690
|
-
"path": "./../../src/
|
|
6008
|
+
"path": "./../../src/packages/packages/package-section/views/created/packages-created-overview.element.ts",
|
|
5691
6009
|
"properties": [
|
|
5692
6010
|
{
|
|
5693
6011
|
"name": "styles",
|
|
@@ -5698,7 +6016,7 @@
|
|
|
5698
6016
|
},
|
|
5699
6017
|
{
|
|
5700
6018
|
"name": "umb-installed-packages-section-view-item",
|
|
5701
|
-
"path": "./../../src/
|
|
6019
|
+
"path": "./../../src/packages/packages/package-section/views/installed/installed-packages-section-view-item.element.ts",
|
|
5702
6020
|
"attributes": [
|
|
5703
6021
|
{
|
|
5704
6022
|
"name": "name",
|
|
@@ -5749,7 +6067,7 @@
|
|
|
5749
6067
|
},
|
|
5750
6068
|
{
|
|
5751
6069
|
"name": "umb-installed-packages-section-view",
|
|
5752
|
-
"path": "./../../src/
|
|
6070
|
+
"path": "./../../src/packages/packages/package-section/views/installed/installed-packages-section-view.element.ts",
|
|
5753
6071
|
"properties": [
|
|
5754
6072
|
{
|
|
5755
6073
|
"name": "styles",
|
|
@@ -5760,7 +6078,7 @@
|
|
|
5760
6078
|
},
|
|
5761
6079
|
{
|
|
5762
6080
|
"name": "umb-packages-market-place-section-view",
|
|
5763
|
-
"path": "./../../src/
|
|
6081
|
+
"path": "./../../src/packages/packages/package-section/views/market-place/packages-market-place-section-view.element.ts",
|
|
5764
6082
|
"attributes": [
|
|
5765
6083
|
{
|
|
5766
6084
|
"name": "marketplaceUrl",
|
|
@@ -5784,7 +6102,7 @@
|
|
|
5784
6102
|
},
|
|
5785
6103
|
{
|
|
5786
6104
|
"name": "umb-dashboard-examine-management",
|
|
5787
|
-
"path": "./../../src/
|
|
6105
|
+
"path": "./../../src/packages/search/examine-management-dashboard/dashboard-examine-management.element.ts",
|
|
5788
6106
|
"properties": [
|
|
5789
6107
|
{
|
|
5790
6108
|
"name": "styles",
|
|
@@ -5795,7 +6113,7 @@
|
|
|
5795
6113
|
},
|
|
5796
6114
|
{
|
|
5797
6115
|
"name": "umb-examine-fields-settings-modal",
|
|
5798
|
-
"path": "./../../src/
|
|
6116
|
+
"path": "./../../src/packages/search/examine-management-dashboard/views/modal-views/fields-settings.element.ts",
|
|
5799
6117
|
"properties": [
|
|
5800
6118
|
{
|
|
5801
6119
|
"name": "styles",
|
|
@@ -5806,7 +6124,7 @@
|
|
|
5806
6124
|
},
|
|
5807
6125
|
{
|
|
5808
6126
|
"name": "umb-modal-element-fields-viewer",
|
|
5809
|
-
"path": "./../../src/
|
|
6127
|
+
"path": "./../../src/packages/search/examine-management-dashboard/views/modal-views/fields-viewer.element.ts",
|
|
5810
6128
|
"properties": [
|
|
5811
6129
|
{
|
|
5812
6130
|
"name": "styles",
|
|
@@ -5817,7 +6135,7 @@
|
|
|
5817
6135
|
},
|
|
5818
6136
|
{
|
|
5819
6137
|
"name": "umb-search-modal",
|
|
5820
|
-
"path": "./../../src/
|
|
6138
|
+
"path": "./../../src/packages/search/search-modal/search-modal.element.ts",
|
|
5821
6139
|
"properties": [
|
|
5822
6140
|
{
|
|
5823
6141
|
"name": "styles",
|
|
@@ -5828,7 +6146,7 @@
|
|
|
5828
6146
|
},
|
|
5829
6147
|
{
|
|
5830
6148
|
"name": "umb-search-header-app",
|
|
5831
|
-
"path": "./../../src/
|
|
6149
|
+
"path": "./../../src/packages/search/umb-search-header-app.element.ts",
|
|
5832
6150
|
"properties": [
|
|
5833
6151
|
{
|
|
5834
6152
|
"name": "styles",
|
|
@@ -5839,7 +6157,7 @@
|
|
|
5839
6157
|
},
|
|
5840
6158
|
{
|
|
5841
6159
|
"name": "umb-input-culture-select",
|
|
5842
|
-
"path": "./../../src/
|
|
6160
|
+
"path": "./../../src/packages/settings/cultures/components/input-culture-select/input-culture-select.element.ts",
|
|
5843
6161
|
"attributes": [
|
|
5844
6162
|
{
|
|
5845
6163
|
"name": "disabled",
|
|
@@ -5922,11 +6240,11 @@
|
|
|
5922
6240
|
},
|
|
5923
6241
|
{
|
|
5924
6242
|
"name": "umb-dashboard-health-check",
|
|
5925
|
-
"path": "./../../src/
|
|
6243
|
+
"path": "./../../src/packages/settings/dashboards/health-check/dashboard-health-check.element.ts"
|
|
5926
6244
|
},
|
|
5927
6245
|
{
|
|
5928
6246
|
"name": "umb-dashboard-health-check-action",
|
|
5929
|
-
"path": "./../../src/
|
|
6247
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-action.element.ts",
|
|
5930
6248
|
"attributes": [
|
|
5931
6249
|
{
|
|
5932
6250
|
"name": "action"
|
|
@@ -5951,7 +6269,7 @@
|
|
|
5951
6269
|
},
|
|
5952
6270
|
{
|
|
5953
6271
|
"name": "umb-health-check-group-box-overview",
|
|
5954
|
-
"path": "./../../src/
|
|
6272
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-group-box-overview.element.ts",
|
|
5955
6273
|
"attributes": [
|
|
5956
6274
|
{
|
|
5957
6275
|
"name": "manifest"
|
|
@@ -5971,7 +6289,7 @@
|
|
|
5971
6289
|
},
|
|
5972
6290
|
{
|
|
5973
6291
|
"name": "umb-health-check--group-box-overview",
|
|
5974
|
-
"path": "./../../src/
|
|
6292
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-group-box-overview.element.ts",
|
|
5975
6293
|
"attributes": [
|
|
5976
6294
|
{
|
|
5977
6295
|
"name": "manifest"
|
|
@@ -5991,7 +6309,7 @@
|
|
|
5991
6309
|
},
|
|
5992
6310
|
{
|
|
5993
6311
|
"name": "umb-dashboard-health-check-group",
|
|
5994
|
-
"path": "./../../src/
|
|
6312
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-group.element.ts",
|
|
5995
6313
|
"attributes": [
|
|
5996
6314
|
{
|
|
5997
6315
|
"name": "groupName",
|
|
@@ -6013,7 +6331,7 @@
|
|
|
6013
6331
|
},
|
|
6014
6332
|
{
|
|
6015
6333
|
"name": "umb-dashboard-health-check-overview",
|
|
6016
|
-
"path": "./../../src/
|
|
6334
|
+
"path": "./../../src/packages/settings/dashboards/health-check/views/health-check-overview.element.ts",
|
|
6017
6335
|
"properties": [
|
|
6018
6336
|
{
|
|
6019
6337
|
"name": "styles",
|
|
@@ -6024,7 +6342,7 @@
|
|
|
6024
6342
|
},
|
|
6025
6343
|
{
|
|
6026
6344
|
"name": "umb-dashboard-models-builder",
|
|
6027
|
-
"path": "./../../src/
|
|
6345
|
+
"path": "./../../src/packages/settings/dashboards/models-builder/dashboard-models-builder.element.ts",
|
|
6028
6346
|
"properties": [
|
|
6029
6347
|
{
|
|
6030
6348
|
"name": "styles",
|
|
@@ -6035,7 +6353,7 @@
|
|
|
6035
6353
|
},
|
|
6036
6354
|
{
|
|
6037
6355
|
"name": "umb-dashboard-performance-profiling",
|
|
6038
|
-
"path": "./../../src/
|
|
6356
|
+
"path": "./../../src/packages/settings/dashboards/performance-profiling/dashboard-performance-profiling.element.ts",
|
|
6039
6357
|
"properties": [
|
|
6040
6358
|
{
|
|
6041
6359
|
"name": "styles",
|
|
@@ -6046,7 +6364,7 @@
|
|
|
6046
6364
|
},
|
|
6047
6365
|
{
|
|
6048
6366
|
"name": "umb-dashboard-published-status",
|
|
6049
|
-
"path": "./../../src/
|
|
6367
|
+
"path": "./../../src/packages/settings/dashboards/published-status/dashboard-published-status.element.ts",
|
|
6050
6368
|
"properties": [
|
|
6051
6369
|
{
|
|
6052
6370
|
"name": "styles",
|
|
@@ -6057,7 +6375,7 @@
|
|
|
6057
6375
|
},
|
|
6058
6376
|
{
|
|
6059
6377
|
"name": "umb-dashboard-settings-welcome",
|
|
6060
|
-
"path": "./../../src/
|
|
6378
|
+
"path": "./../../src/packages/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.ts",
|
|
6061
6379
|
"properties": [
|
|
6062
6380
|
{
|
|
6063
6381
|
"name": "styles",
|
|
@@ -6068,7 +6386,7 @@
|
|
|
6068
6386
|
},
|
|
6069
6387
|
{
|
|
6070
6388
|
"name": "umb-dashboard-telemetry",
|
|
6071
|
-
"path": "./../../src/
|
|
6389
|
+
"path": "./../../src/packages/settings/dashboards/telemetry/dashboard-telemetry.element.ts",
|
|
6072
6390
|
"properties": [
|
|
6073
6391
|
{
|
|
6074
6392
|
"name": "styles",
|
|
@@ -6079,7 +6397,7 @@
|
|
|
6079
6397
|
},
|
|
6080
6398
|
{
|
|
6081
6399
|
"name": "umb-data-type-input",
|
|
6082
|
-
"path": "./../../src/
|
|
6400
|
+
"path": "./../../src/packages/settings/data-types/components/data-type-input/data-type-input.element.ts",
|
|
6083
6401
|
"attributes": [
|
|
6084
6402
|
{
|
|
6085
6403
|
"name": "min",
|
|
@@ -6105,6 +6423,9 @@
|
|
|
6105
6423
|
"type": "boolean",
|
|
6106
6424
|
"default": "\"\""
|
|
6107
6425
|
},
|
|
6426
|
+
{
|
|
6427
|
+
"name": "pickableFilter"
|
|
6428
|
+
},
|
|
6108
6429
|
{
|
|
6109
6430
|
"name": "value",
|
|
6110
6431
|
"type": "string"
|
|
@@ -6143,6 +6464,10 @@
|
|
|
6143
6464
|
"name": "selectedIds",
|
|
6144
6465
|
"type": "string[]"
|
|
6145
6466
|
},
|
|
6467
|
+
{
|
|
6468
|
+
"name": "pickableFilter",
|
|
6469
|
+
"attribute": "pickableFilter"
|
|
6470
|
+
},
|
|
6146
6471
|
{
|
|
6147
6472
|
"name": "styles",
|
|
6148
6473
|
"type": "CSSResult[]",
|
|
@@ -6193,7 +6518,7 @@
|
|
|
6193
6518
|
},
|
|
6194
6519
|
{
|
|
6195
6520
|
"name": "umb-data-type-create-options-modal",
|
|
6196
|
-
"path": "./../../src/
|
|
6521
|
+
"path": "./../../src/packages/settings/data-types/entity-actions/create/modal/data-type-create-options-modal.element.ts",
|
|
6197
6522
|
"attributes": [
|
|
6198
6523
|
{
|
|
6199
6524
|
"name": "data",
|
|
@@ -6216,26 +6541,9 @@
|
|
|
6216
6541
|
}
|
|
6217
6542
|
]
|
|
6218
6543
|
},
|
|
6219
|
-
{
|
|
6220
|
-
"name": "umb-data-type-picker-modal",
|
|
6221
|
-
"path": "./../../src/backoffice/settings/data-types/modal/data-type-picker/data-type-picker-modal.element.ts",
|
|
6222
|
-
"properties": [
|
|
6223
|
-
{
|
|
6224
|
-
"name": "modalHandler"
|
|
6225
|
-
},
|
|
6226
|
-
{
|
|
6227
|
-
"name": "data"
|
|
6228
|
-
},
|
|
6229
|
-
{
|
|
6230
|
-
"name": "styles",
|
|
6231
|
-
"type": "CSSResult[]",
|
|
6232
|
-
"default": "[\"UUITextStyles\",null]"
|
|
6233
|
-
}
|
|
6234
|
-
]
|
|
6235
|
-
},
|
|
6236
6544
|
{
|
|
6237
6545
|
"name": "umb-data-type-workspace-edit-element",
|
|
6238
|
-
"path": "./../../src/
|
|
6546
|
+
"path": "./../../src/packages/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
6239
6547
|
"attributes": [
|
|
6240
6548
|
{
|
|
6241
6549
|
"name": "manifest"
|
|
@@ -6255,7 +6563,7 @@
|
|
|
6255
6563
|
},
|
|
6256
6564
|
{
|
|
6257
6565
|
"name": "umb-data-type-workspace",
|
|
6258
|
-
"path": "./../../src/
|
|
6566
|
+
"path": "./../../src/packages/settings/data-types/workspace/data-type-workspace.element.ts",
|
|
6259
6567
|
"properties": [
|
|
6260
6568
|
{
|
|
6261
6569
|
"name": "styles",
|
|
@@ -6266,7 +6574,7 @@
|
|
|
6266
6574
|
},
|
|
6267
6575
|
{
|
|
6268
6576
|
"name": "umb-data-type-details-workspace-view",
|
|
6269
|
-
"path": "./../../src/
|
|
6577
|
+
"path": "./../../src/packages/settings/data-types/workspace/views/details/data-type-details-workspace-view.element.ts",
|
|
6270
6578
|
"properties": [
|
|
6271
6579
|
{
|
|
6272
6580
|
"name": "styles",
|
|
@@ -6277,7 +6585,7 @@
|
|
|
6277
6585
|
},
|
|
6278
6586
|
{
|
|
6279
6587
|
"name": "umb-workspace-view-data-type-info",
|
|
6280
|
-
"path": "./../../src/
|
|
6588
|
+
"path": "./../../src/packages/settings/data-types/workspace/views/info/workspace-view-data-type-info.element.ts",
|
|
6281
6589
|
"properties": [
|
|
6282
6590
|
{
|
|
6283
6591
|
"name": "styles",
|
|
@@ -6288,7 +6596,7 @@
|
|
|
6288
6596
|
},
|
|
6289
6597
|
{
|
|
6290
6598
|
"name": "umb-extension-root-workspace",
|
|
6291
|
-
"path": "./../../src/
|
|
6599
|
+
"path": "./../../src/packages/settings/extensions/workspace/extension-root-workspace.element.ts",
|
|
6292
6600
|
"properties": [
|
|
6293
6601
|
{
|
|
6294
6602
|
"name": "styles",
|
|
@@ -6299,7 +6607,7 @@
|
|
|
6299
6607
|
},
|
|
6300
6608
|
{
|
|
6301
6609
|
"name": "umb-app-language-select",
|
|
6302
|
-
"path": "./../../src/
|
|
6610
|
+
"path": "./../../src/packages/settings/languages/app-language-select/app-language-select.element.ts",
|
|
6303
6611
|
"properties": [
|
|
6304
6612
|
{
|
|
6305
6613
|
"name": "styles",
|
|
@@ -6310,7 +6618,7 @@
|
|
|
6310
6618
|
},
|
|
6311
6619
|
{
|
|
6312
6620
|
"name": "umb-input-language-picker",
|
|
6313
|
-
"path": "./../../src/
|
|
6621
|
+
"path": "./../../src/packages/settings/languages/components/input-language-picker/input-language-picker.element.ts",
|
|
6314
6622
|
"attributes": [
|
|
6315
6623
|
{
|
|
6316
6624
|
"name": "min",
|
|
@@ -6429,7 +6737,7 @@
|
|
|
6429
6737
|
},
|
|
6430
6738
|
{
|
|
6431
6739
|
"name": "umb-language-picker-modal",
|
|
6432
|
-
"path": "./../../src/
|
|
6740
|
+
"path": "./../../src/packages/settings/languages/modals/language-picker/language-picker-modal.element.ts",
|
|
6433
6741
|
"properties": [
|
|
6434
6742
|
{
|
|
6435
6743
|
"name": "styles",
|
|
@@ -6440,7 +6748,7 @@
|
|
|
6440
6748
|
},
|
|
6441
6749
|
{
|
|
6442
6750
|
"name": "umb-language-root-table-delete-column-layout",
|
|
6443
|
-
"path": "./../../src/
|
|
6751
|
+
"path": "./../../src/packages/settings/languages/workspace/language-root/components/language-root-table-delete-column-layout.element.ts",
|
|
6444
6752
|
"properties": [
|
|
6445
6753
|
{
|
|
6446
6754
|
"name": "value"
|
|
@@ -6454,7 +6762,7 @@
|
|
|
6454
6762
|
},
|
|
6455
6763
|
{
|
|
6456
6764
|
"name": "umb-language-root-table-name-column-layout",
|
|
6457
|
-
"path": "./../../src/
|
|
6765
|
+
"path": "./../../src/packages/settings/languages/workspace/language-root/components/language-root-table-name-column-layout.element.ts",
|
|
6458
6766
|
"properties": [
|
|
6459
6767
|
{
|
|
6460
6768
|
"name": "value",
|
|
@@ -6469,7 +6777,7 @@
|
|
|
6469
6777
|
},
|
|
6470
6778
|
{
|
|
6471
6779
|
"name": "umb-language-root-workspace",
|
|
6472
|
-
"path": "./../../src/
|
|
6780
|
+
"path": "./../../src/packages/settings/languages/workspace/language-root/language-root-workspace.element.ts",
|
|
6473
6781
|
"properties": [
|
|
6474
6782
|
{
|
|
6475
6783
|
"name": "styles",
|
|
@@ -6480,7 +6788,7 @@
|
|
|
6480
6788
|
},
|
|
6481
6789
|
{
|
|
6482
6790
|
"name": "umb-language-workspace-edit",
|
|
6483
|
-
"path": "./../../src/
|
|
6791
|
+
"path": "./../../src/packages/settings/languages/workspace/language/language-workspace-edit.element.ts",
|
|
6484
6792
|
"properties": [
|
|
6485
6793
|
{
|
|
6486
6794
|
"name": "styles",
|
|
@@ -6491,7 +6799,7 @@
|
|
|
6491
6799
|
},
|
|
6492
6800
|
{
|
|
6493
6801
|
"name": "umb-language-workspace",
|
|
6494
|
-
"path": "./../../src/
|
|
6802
|
+
"path": "./../../src/packages/settings/languages/workspace/language/language-workspace.element.ts",
|
|
6495
6803
|
"properties": [
|
|
6496
6804
|
{
|
|
6497
6805
|
"name": "styles",
|
|
@@ -6502,7 +6810,7 @@
|
|
|
6502
6810
|
},
|
|
6503
6811
|
{
|
|
6504
6812
|
"name": "umb-language-details-workspace-view",
|
|
6505
|
-
"path": "./../../src/
|
|
6813
|
+
"path": "./../../src/packages/settings/languages/workspace/language/views/details/language-details-workspace-view.element.ts",
|
|
6506
6814
|
"properties": [
|
|
6507
6815
|
{
|
|
6508
6816
|
"name": "styles",
|
|
@@ -6513,7 +6821,7 @@
|
|
|
6513
6821
|
},
|
|
6514
6822
|
{
|
|
6515
6823
|
"name": "umb-donut-chart",
|
|
6516
|
-
"path": "./../../src/
|
|
6824
|
+
"path": "./../../src/packages/settings/logviewer/components/donut-chart/donut-chart.element.ts",
|
|
6517
6825
|
"description": "This is a donut chart component that can be used to display data in a circular way.",
|
|
6518
6826
|
"attributes": [
|
|
6519
6827
|
{
|
|
@@ -6592,7 +6900,7 @@
|
|
|
6592
6900
|
},
|
|
6593
6901
|
{
|
|
6594
6902
|
"name": "umb-donut-slice",
|
|
6595
|
-
"path": "./../../src/
|
|
6903
|
+
"path": "./../../src/packages/settings/logviewer/components/donut-chart/donut-slice.element.ts",
|
|
6596
6904
|
"description": "This component is used to display a single slice of a donut chart. It only makes sense insice the donut chart",
|
|
6597
6905
|
"attributes": [
|
|
6598
6906
|
{
|
|
@@ -6659,7 +6967,7 @@
|
|
|
6659
6967
|
},
|
|
6660
6968
|
{
|
|
6661
6969
|
"name": "umb-log-viewer-date-range-selector",
|
|
6662
|
-
"path": "./../../src/
|
|
6970
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/components/log-viewer-date-range-selector.element.ts",
|
|
6663
6971
|
"attributes": [
|
|
6664
6972
|
{
|
|
6665
6973
|
"name": "horizontal",
|
|
@@ -6683,7 +6991,7 @@
|
|
|
6683
6991
|
},
|
|
6684
6992
|
{
|
|
6685
6993
|
"name": "umb-log-viewer-level-tag",
|
|
6686
|
-
"path": "./../../src/
|
|
6994
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/components/log-viewer-level-tag.element.ts",
|
|
6687
6995
|
"attributes": [
|
|
6688
6996
|
{
|
|
6689
6997
|
"name": "level"
|
|
@@ -6708,7 +7016,7 @@
|
|
|
6708
7016
|
},
|
|
6709
7017
|
{
|
|
6710
7018
|
"name": "umb-log-viewer-to-many-logs-warning",
|
|
6711
|
-
"path": "./../../src/
|
|
7019
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/components/log-viewer-to-many-logs-warning.element.ts",
|
|
6712
7020
|
"properties": [
|
|
6713
7021
|
{
|
|
6714
7022
|
"name": "styles",
|
|
@@ -6719,7 +7027,7 @@
|
|
|
6719
7027
|
},
|
|
6720
7028
|
{
|
|
6721
7029
|
"name": "umb-logviewer-workspace",
|
|
6722
|
-
"path": "./../../src/
|
|
7030
|
+
"path": "./../../src/packages/settings/logviewer/workspace/logviewer-root/logviewer-root-workspace.element.ts",
|
|
6723
7031
|
"properties": [
|
|
6724
7032
|
{
|
|
6725
7033
|
"name": "styles",
|
|
@@ -6730,7 +7038,7 @@
|
|
|
6730
7038
|
},
|
|
6731
7039
|
{
|
|
6732
7040
|
"name": "umb-log-viewer-log-level-overview",
|
|
6733
|
-
"path": "./../../src/
|
|
7041
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-level-overview.element.ts",
|
|
6734
7042
|
"attributes": [
|
|
6735
7043
|
{
|
|
6736
7044
|
"name": "loggerName",
|
|
@@ -6751,7 +7059,7 @@
|
|
|
6751
7059
|
},
|
|
6752
7060
|
{
|
|
6753
7061
|
"name": "umb-log-viewer-log-types-chart",
|
|
6754
|
-
"path": "./../../src/
|
|
7062
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-types-chart.element.ts",
|
|
6755
7063
|
"properties": [
|
|
6756
7064
|
{
|
|
6757
7065
|
"name": "styles",
|
|
@@ -6762,7 +7070,7 @@
|
|
|
6762
7070
|
},
|
|
6763
7071
|
{
|
|
6764
7072
|
"name": "umb-log-viewer-message-templates-overview",
|
|
6765
|
-
"path": "./../../src/
|
|
7073
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-message-templates-overview.element.ts",
|
|
6766
7074
|
"properties": [
|
|
6767
7075
|
{
|
|
6768
7076
|
"name": "styles",
|
|
@@ -6773,7 +7081,7 @@
|
|
|
6773
7081
|
},
|
|
6774
7082
|
{
|
|
6775
7083
|
"name": "umb-log-viewer-saved-searches-overview",
|
|
6776
|
-
"path": "./../../src/
|
|
7084
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/components/log-viewer-saved-searches-overview.element.ts",
|
|
6777
7085
|
"properties": [
|
|
6778
7086
|
{
|
|
6779
7087
|
"name": "styles",
|
|
@@ -6784,7 +7092,7 @@
|
|
|
6784
7092
|
},
|
|
6785
7093
|
{
|
|
6786
7094
|
"name": "umb-log-viewer-overview-view",
|
|
6787
|
-
"path": "./../../src/
|
|
7095
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/overview/log-overview-view.element.ts",
|
|
6788
7096
|
"properties": [
|
|
6789
7097
|
{
|
|
6790
7098
|
"name": "styles",
|
|
@@ -6795,7 +7103,7 @@
|
|
|
6795
7103
|
},
|
|
6796
7104
|
{
|
|
6797
7105
|
"name": "umb-log-viewer-log-level-filter-menu",
|
|
6798
|
-
"path": "./../../src/
|
|
7106
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-log-level-filter-menu.element.ts",
|
|
6799
7107
|
"properties": [
|
|
6800
7108
|
{
|
|
6801
7109
|
"name": "setLogLevelDebounce",
|
|
@@ -6811,7 +7119,7 @@
|
|
|
6811
7119
|
},
|
|
6812
7120
|
{
|
|
6813
7121
|
"name": "umb-log-viewer-message",
|
|
6814
|
-
"path": "./../../src/
|
|
7122
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-message.element.ts",
|
|
6815
7123
|
"attributes": [
|
|
6816
7124
|
{
|
|
6817
7125
|
"name": "timestamp",
|
|
@@ -6901,7 +7209,7 @@
|
|
|
6901
7209
|
},
|
|
6902
7210
|
{
|
|
6903
7211
|
"name": "umb-log-viewer-messages-list",
|
|
6904
|
-
"path": "./../../src/
|
|
7212
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-messages-list.element.ts",
|
|
6905
7213
|
"properties": [
|
|
6906
7214
|
{
|
|
6907
7215
|
"name": "styles",
|
|
@@ -6912,7 +7220,7 @@
|
|
|
6912
7220
|
},
|
|
6913
7221
|
{
|
|
6914
7222
|
"name": "umb-log-viewer-polling-button",
|
|
6915
|
-
"path": "./../../src/
|
|
7223
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-polling-button.element.ts",
|
|
6916
7224
|
"properties": [
|
|
6917
7225
|
{
|
|
6918
7226
|
"name": "styles",
|
|
@@ -6923,7 +7231,7 @@
|
|
|
6923
7231
|
},
|
|
6924
7232
|
{
|
|
6925
7233
|
"name": "umb-log-viewer-save-search-modal",
|
|
6926
|
-
"path": "./../../src/
|
|
7234
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input-modal.element.ts",
|
|
6927
7235
|
"properties": [
|
|
6928
7236
|
{
|
|
6929
7237
|
"name": "styles",
|
|
@@ -6934,30 +7242,511 @@
|
|
|
6934
7242
|
},
|
|
6935
7243
|
{
|
|
6936
7244
|
"name": "umb-log-viewer-search-input",
|
|
6937
|
-
"path": "./../../src/
|
|
7245
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input.element.ts",
|
|
7246
|
+
"properties": [
|
|
7247
|
+
{
|
|
7248
|
+
"name": "styles",
|
|
7249
|
+
"type": "CSSResult[]",
|
|
7250
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7251
|
+
}
|
|
7252
|
+
]
|
|
7253
|
+
},
|
|
7254
|
+
{
|
|
7255
|
+
"name": "umb-log-viewer-search-view",
|
|
7256
|
+
"path": "./../../src/packages/settings/logviewer/workspace/views/search/log-search-view.element.ts",
|
|
7257
|
+
"properties": [
|
|
7258
|
+
{
|
|
7259
|
+
"name": "styles",
|
|
7260
|
+
"type": "CSSResult[]",
|
|
7261
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7262
|
+
}
|
|
7263
|
+
]
|
|
7264
|
+
},
|
|
7265
|
+
{
|
|
7266
|
+
"name": "umb-relation-type-workspace-edit-element",
|
|
7267
|
+
"path": "./../../src/packages/settings/relation-types/workspace/relation-type-workspace-edit.element.ts",
|
|
7268
|
+
"properties": [
|
|
7269
|
+
{
|
|
7270
|
+
"name": "styles",
|
|
7271
|
+
"type": "CSSResult[]",
|
|
7272
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7273
|
+
}
|
|
7274
|
+
]
|
|
7275
|
+
},
|
|
7276
|
+
{
|
|
7277
|
+
"name": "umb-relation-type-workspace",
|
|
7278
|
+
"path": "./../../src/packages/settings/relation-types/workspace/relation-type-workspace.element.ts",
|
|
7279
|
+
"properties": [
|
|
7280
|
+
{
|
|
7281
|
+
"name": "styles",
|
|
7282
|
+
"type": "CSSResult[]",
|
|
7283
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7284
|
+
}
|
|
7285
|
+
]
|
|
7286
|
+
},
|
|
7287
|
+
{
|
|
7288
|
+
"name": "umb-relation-type-workspace-view-relation-type",
|
|
7289
|
+
"path": "./../../src/packages/settings/relation-types/workspace/views/relation-type/relation-type-workspace-view-relation-type.element.ts",
|
|
7290
|
+
"properties": [
|
|
7291
|
+
{
|
|
7292
|
+
"name": "styles",
|
|
7293
|
+
"type": "CSSResult[]",
|
|
7294
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7295
|
+
}
|
|
7296
|
+
]
|
|
7297
|
+
},
|
|
7298
|
+
{
|
|
7299
|
+
"name": "umb-workspace-view-relation-type-relation",
|
|
7300
|
+
"path": "./../../src/packages/settings/relation-types/workspace/views/relation/workspace-view-relation-type-relation.element.ts",
|
|
7301
|
+
"properties": [
|
|
7302
|
+
{
|
|
7303
|
+
"name": "styles",
|
|
7304
|
+
"type": "CSSResult[]",
|
|
7305
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7306
|
+
}
|
|
7307
|
+
]
|
|
7308
|
+
},
|
|
7309
|
+
{
|
|
7310
|
+
"name": "umb-tags-input",
|
|
7311
|
+
"path": "./../../src/packages/tags/components/tags-input/tags-input.element.ts",
|
|
7312
|
+
"attributes": [
|
|
7313
|
+
{
|
|
7314
|
+
"name": "group",
|
|
7315
|
+
"type": "string | undefined"
|
|
7316
|
+
},
|
|
7317
|
+
{
|
|
7318
|
+
"name": "culture",
|
|
7319
|
+
"type": "string | null | undefined"
|
|
7320
|
+
},
|
|
7321
|
+
{
|
|
7322
|
+
"name": "items",
|
|
7323
|
+
"type": "string[]"
|
|
7324
|
+
}
|
|
7325
|
+
],
|
|
7326
|
+
"properties": [
|
|
7327
|
+
{
|
|
7328
|
+
"name": "group",
|
|
7329
|
+
"attribute": "group",
|
|
7330
|
+
"type": "string | undefined"
|
|
7331
|
+
},
|
|
7332
|
+
{
|
|
7333
|
+
"name": "culture",
|
|
7334
|
+
"attribute": "culture",
|
|
7335
|
+
"type": "string | null | undefined"
|
|
7336
|
+
},
|
|
7337
|
+
{
|
|
7338
|
+
"name": "items",
|
|
7339
|
+
"attribute": "items",
|
|
7340
|
+
"type": "string[]"
|
|
7341
|
+
},
|
|
7342
|
+
{
|
|
7343
|
+
"name": "styles",
|
|
7344
|
+
"type": "CSSResult[]",
|
|
7345
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7346
|
+
},
|
|
7347
|
+
{
|
|
7348
|
+
"name": "formAssociated",
|
|
7349
|
+
"type": "boolean"
|
|
7350
|
+
},
|
|
7351
|
+
{
|
|
7352
|
+
"name": "value",
|
|
7353
|
+
"type": "FormDataEntryValue | FormData"
|
|
7354
|
+
},
|
|
7355
|
+
{
|
|
7356
|
+
"name": "name",
|
|
7357
|
+
"type": "string"
|
|
7358
|
+
},
|
|
7359
|
+
{
|
|
7360
|
+
"name": "validationMessage",
|
|
7361
|
+
"type": "string"
|
|
7362
|
+
},
|
|
7363
|
+
{
|
|
7364
|
+
"name": "validity",
|
|
7365
|
+
"type": "ValidityState"
|
|
7366
|
+
},
|
|
7367
|
+
{
|
|
7368
|
+
"name": "pristine",
|
|
7369
|
+
"type": "boolean"
|
|
7370
|
+
},
|
|
7371
|
+
{
|
|
7372
|
+
"name": "required",
|
|
7373
|
+
"type": "boolean"
|
|
7374
|
+
},
|
|
7375
|
+
{
|
|
7376
|
+
"name": "requiredMessage",
|
|
7377
|
+
"type": "string"
|
|
7378
|
+
},
|
|
7379
|
+
{
|
|
7380
|
+
"name": "error",
|
|
7381
|
+
"type": "boolean"
|
|
7382
|
+
},
|
|
7383
|
+
{
|
|
7384
|
+
"name": "errorMessage",
|
|
7385
|
+
"type": "string"
|
|
7386
|
+
}
|
|
7387
|
+
],
|
|
7388
|
+
"events": [
|
|
7389
|
+
{
|
|
7390
|
+
"name": "change"
|
|
7391
|
+
}
|
|
7392
|
+
]
|
|
7393
|
+
},
|
|
7394
|
+
{
|
|
7395
|
+
"name": "umb-property-editor-ui-tags-storage-type",
|
|
7396
|
+
"path": "./../../src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.element.ts",
|
|
7397
|
+
"attributes": [
|
|
7398
|
+
{
|
|
7399
|
+
"name": "value",
|
|
7400
|
+
"type": "string",
|
|
7401
|
+
"default": "\"\""
|
|
7402
|
+
}
|
|
7403
|
+
],
|
|
6938
7404
|
"properties": [
|
|
7405
|
+
{
|
|
7406
|
+
"name": "value",
|
|
7407
|
+
"attribute": "value",
|
|
7408
|
+
"type": "string",
|
|
7409
|
+
"default": "\"\""
|
|
7410
|
+
},
|
|
7411
|
+
{
|
|
7412
|
+
"name": "config",
|
|
7413
|
+
"type": "never[]",
|
|
7414
|
+
"default": "[]"
|
|
7415
|
+
},
|
|
7416
|
+
{
|
|
7417
|
+
"name": "styles",
|
|
7418
|
+
"type": "CSSResult[]",
|
|
7419
|
+
"default": "[\"UUITextStyles\"]"
|
|
7420
|
+
}
|
|
7421
|
+
]
|
|
7422
|
+
},
|
|
7423
|
+
{
|
|
7424
|
+
"name": "umb-property-editor-ui-tags",
|
|
7425
|
+
"path": "./../../src/packages/tags/property-editors/tags/property-editor-ui-tags.element.ts",
|
|
7426
|
+
"attributes": [
|
|
7427
|
+
{
|
|
7428
|
+
"name": "value",
|
|
7429
|
+
"type": "string[]",
|
|
7430
|
+
"default": "[]"
|
|
7431
|
+
}
|
|
7432
|
+
],
|
|
7433
|
+
"properties": [
|
|
7434
|
+
{
|
|
7435
|
+
"name": "value",
|
|
7436
|
+
"attribute": "value",
|
|
7437
|
+
"type": "string[]",
|
|
7438
|
+
"default": "[]"
|
|
7439
|
+
},
|
|
7440
|
+
{
|
|
7441
|
+
"name": "config"
|
|
7442
|
+
},
|
|
7443
|
+
{
|
|
7444
|
+
"name": "styles",
|
|
7445
|
+
"type": "CSSResult[]",
|
|
7446
|
+
"default": "[\"UUITextStyles\"]"
|
|
7447
|
+
}
|
|
7448
|
+
],
|
|
7449
|
+
"events": [
|
|
7450
|
+
{
|
|
7451
|
+
"name": "property-value-change"
|
|
7452
|
+
}
|
|
7453
|
+
]
|
|
7454
|
+
},
|
|
7455
|
+
{
|
|
7456
|
+
"name": "umb-file-system-tree-item",
|
|
7457
|
+
"path": "./../../src/packages/templating/components/file-system-tree-item/file-system-tree-item.element.ts",
|
|
7458
|
+
"properties": [
|
|
7459
|
+
{
|
|
7460
|
+
"name": "item"
|
|
7461
|
+
},
|
|
7462
|
+
{
|
|
7463
|
+
"name": "styles",
|
|
7464
|
+
"type": "CSSResult[]",
|
|
7465
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7466
|
+
}
|
|
7467
|
+
]
|
|
7468
|
+
},
|
|
7469
|
+
{
|
|
7470
|
+
"name": "umb-templating-insert-menu",
|
|
7471
|
+
"path": "./../../src/packages/templating/components/insert-menu/templating-insert-menu.element.ts",
|
|
7472
|
+
"attributes": [
|
|
7473
|
+
{
|
|
7474
|
+
"name": "value",
|
|
7475
|
+
"type": "string",
|
|
7476
|
+
"default": "\"\""
|
|
7477
|
+
},
|
|
7478
|
+
{
|
|
7479
|
+
"name": "hidePartialView",
|
|
7480
|
+
"type": "boolean",
|
|
7481
|
+
"default": "false"
|
|
7482
|
+
}
|
|
7483
|
+
],
|
|
7484
|
+
"properties": [
|
|
7485
|
+
{
|
|
7486
|
+
"name": "value",
|
|
7487
|
+
"attribute": "value",
|
|
7488
|
+
"type": "string",
|
|
7489
|
+
"default": "\"\""
|
|
7490
|
+
},
|
|
7491
|
+
{
|
|
7492
|
+
"name": "hidePartialView",
|
|
7493
|
+
"attribute": "hidePartialView",
|
|
7494
|
+
"type": "boolean",
|
|
7495
|
+
"default": "false"
|
|
7496
|
+
},
|
|
7497
|
+
{
|
|
7498
|
+
"name": "styles",
|
|
7499
|
+
"type": "CSSResult[]",
|
|
7500
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7501
|
+
}
|
|
7502
|
+
],
|
|
7503
|
+
"events": [
|
|
7504
|
+
{
|
|
7505
|
+
"name": "insert"
|
|
7506
|
+
}
|
|
7507
|
+
]
|
|
7508
|
+
},
|
|
7509
|
+
{
|
|
7510
|
+
"name": "umb-templating-choose-insert-type-modal",
|
|
7511
|
+
"path": "./../../src/packages/templating/modals/insert-choose-type-sidebar.element.ts",
|
|
7512
|
+
"properties": [
|
|
7513
|
+
{
|
|
7514
|
+
"name": "styles",
|
|
7515
|
+
"type": "CSSResult[]",
|
|
7516
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7517
|
+
}
|
|
7518
|
+
]
|
|
7519
|
+
},
|
|
7520
|
+
{
|
|
7521
|
+
"name": "umb-insert-section-checkbox",
|
|
7522
|
+
"path": "./../../src/packages/templating/modals/insert-section-modal/insert-section-input.element.ts",
|
|
7523
|
+
"attributes": [
|
|
7524
|
+
{
|
|
7525
|
+
"name": "show-mandatory",
|
|
7526
|
+
"type": "boolean",
|
|
7527
|
+
"default": "false"
|
|
7528
|
+
},
|
|
7529
|
+
{
|
|
7530
|
+
"name": "show-input",
|
|
7531
|
+
"type": "boolean",
|
|
7532
|
+
"default": "false"
|
|
7533
|
+
},
|
|
7534
|
+
{
|
|
7535
|
+
"name": "label-position",
|
|
7536
|
+
"description": "Specifies the label position of the checkbox or the toggle",
|
|
7537
|
+
"type": "'left' | 'right' | 'top' | 'bottom'",
|
|
7538
|
+
"default": "\"right\""
|
|
7539
|
+
},
|
|
7540
|
+
{
|
|
7541
|
+
"name": "checked",
|
|
7542
|
+
"description": "Reflects the state of the element.\nTrue if checkbox or toggle is checked. Change this to switch the state programmatically.",
|
|
7543
|
+
"type": "boolean",
|
|
7544
|
+
"default": "\"false\""
|
|
7545
|
+
},
|
|
7546
|
+
{
|
|
7547
|
+
"name": "disabled",
|
|
7548
|
+
"description": "Disables the input.",
|
|
7549
|
+
"type": "boolean",
|
|
7550
|
+
"default": "\"false\""
|
|
7551
|
+
}
|
|
7552
|
+
],
|
|
7553
|
+
"properties": [
|
|
7554
|
+
{
|
|
7555
|
+
"name": "showMandatory",
|
|
7556
|
+
"attribute": "show-mandatory",
|
|
7557
|
+
"type": "boolean",
|
|
7558
|
+
"default": "false"
|
|
7559
|
+
},
|
|
7560
|
+
{
|
|
7561
|
+
"name": "showInput",
|
|
7562
|
+
"attribute": "show-input",
|
|
7563
|
+
"type": "boolean",
|
|
7564
|
+
"default": "false"
|
|
7565
|
+
},
|
|
7566
|
+
{
|
|
7567
|
+
"name": "input",
|
|
7568
|
+
"type": "UUIInputElement | undefined"
|
|
7569
|
+
},
|
|
7570
|
+
{
|
|
7571
|
+
"name": "form",
|
|
7572
|
+
"type": "HTMLFormElement | undefined"
|
|
7573
|
+
},
|
|
7574
|
+
{
|
|
7575
|
+
"name": "checkbox",
|
|
7576
|
+
"type": "HTMLFormElement | undefined"
|
|
7577
|
+
},
|
|
7578
|
+
{
|
|
7579
|
+
"name": "inputValue",
|
|
7580
|
+
"type": "FormDataEntryValue | FormData | undefined"
|
|
7581
|
+
},
|
|
7582
|
+
{
|
|
7583
|
+
"name": "isMandatory"
|
|
7584
|
+
},
|
|
7585
|
+
{
|
|
7586
|
+
"name": "styles",
|
|
7587
|
+
"type": "CSSResult[]",
|
|
7588
|
+
"default": "[null,\"UUITextStyles\",null]"
|
|
7589
|
+
},
|
|
7590
|
+
{
|
|
7591
|
+
"name": "value",
|
|
7592
|
+
"description": "intentional overwrite of FormControlMixins value getter and setter method.",
|
|
7593
|
+
"type": "string"
|
|
7594
|
+
},
|
|
7595
|
+
{
|
|
7596
|
+
"name": "labelPosition",
|
|
7597
|
+
"attribute": "label-position",
|
|
7598
|
+
"description": "Specifies the label position of the checkbox or the toggle",
|
|
7599
|
+
"type": "'left' | 'right' | 'top' | 'bottom'",
|
|
7600
|
+
"default": "\"right\""
|
|
7601
|
+
},
|
|
7602
|
+
{
|
|
7603
|
+
"name": "checked",
|
|
7604
|
+
"attribute": "checked",
|
|
7605
|
+
"description": "Reflects the state of the element.\nTrue if checkbox or toggle is checked. Change this to switch the state programmatically.",
|
|
7606
|
+
"type": "boolean",
|
|
7607
|
+
"default": "\"false\""
|
|
7608
|
+
},
|
|
7609
|
+
{
|
|
7610
|
+
"name": "disabled",
|
|
7611
|
+
"attribute": "disabled",
|
|
7612
|
+
"description": "Disables the input.",
|
|
7613
|
+
"type": "boolean",
|
|
7614
|
+
"default": "\"false\""
|
|
7615
|
+
}
|
|
7616
|
+
],
|
|
7617
|
+
"events": [
|
|
7618
|
+
{
|
|
7619
|
+
"name": "change",
|
|
7620
|
+
"description": "on change"
|
|
7621
|
+
}
|
|
7622
|
+
]
|
|
7623
|
+
},
|
|
7624
|
+
{
|
|
7625
|
+
"name": "umb-insert-section-input",
|
|
7626
|
+
"path": "./../../src/packages/templating/modals/insert-section-modal/insert-section-input.element.ts",
|
|
7627
|
+
"attributes": [
|
|
7628
|
+
{
|
|
7629
|
+
"name": "show-mandatory",
|
|
7630
|
+
"type": "boolean",
|
|
7631
|
+
"default": "false"
|
|
7632
|
+
},
|
|
7633
|
+
{
|
|
7634
|
+
"name": "show-input",
|
|
7635
|
+
"type": "boolean",
|
|
7636
|
+
"default": "false"
|
|
7637
|
+
},
|
|
7638
|
+
{
|
|
7639
|
+
"name": "label-position",
|
|
7640
|
+
"description": "Specifies the label position of the checkbox or the toggle",
|
|
7641
|
+
"type": "'left' | 'right' | 'top' | 'bottom'",
|
|
7642
|
+
"default": "\"right\""
|
|
7643
|
+
},
|
|
7644
|
+
{
|
|
7645
|
+
"name": "checked",
|
|
7646
|
+
"description": "Reflects the state of the element.\nTrue if checkbox or toggle is checked. Change this to switch the state programmatically.",
|
|
7647
|
+
"type": "boolean",
|
|
7648
|
+
"default": "\"false\""
|
|
7649
|
+
},
|
|
7650
|
+
{
|
|
7651
|
+
"name": "disabled",
|
|
7652
|
+
"description": "Disables the input.",
|
|
7653
|
+
"type": "boolean",
|
|
7654
|
+
"default": "\"false\""
|
|
7655
|
+
}
|
|
7656
|
+
],
|
|
7657
|
+
"properties": [
|
|
7658
|
+
{
|
|
7659
|
+
"name": "showMandatory",
|
|
7660
|
+
"attribute": "show-mandatory",
|
|
7661
|
+
"type": "boolean",
|
|
7662
|
+
"default": "false"
|
|
7663
|
+
},
|
|
7664
|
+
{
|
|
7665
|
+
"name": "showInput",
|
|
7666
|
+
"attribute": "show-input",
|
|
7667
|
+
"type": "boolean",
|
|
7668
|
+
"default": "false"
|
|
7669
|
+
},
|
|
7670
|
+
{
|
|
7671
|
+
"name": "input",
|
|
7672
|
+
"type": "UUIInputElement | undefined"
|
|
7673
|
+
},
|
|
7674
|
+
{
|
|
7675
|
+
"name": "form",
|
|
7676
|
+
"type": "HTMLFormElement | undefined"
|
|
7677
|
+
},
|
|
7678
|
+
{
|
|
7679
|
+
"name": "checkbox",
|
|
7680
|
+
"type": "HTMLFormElement | undefined"
|
|
7681
|
+
},
|
|
7682
|
+
{
|
|
7683
|
+
"name": "inputValue",
|
|
7684
|
+
"type": "FormDataEntryValue | FormData | undefined"
|
|
7685
|
+
},
|
|
7686
|
+
{
|
|
7687
|
+
"name": "isMandatory"
|
|
7688
|
+
},
|
|
6939
7689
|
{
|
|
6940
7690
|
"name": "styles",
|
|
6941
7691
|
"type": "CSSResult[]",
|
|
6942
|
-
"default": "[
|
|
7692
|
+
"default": "[null,\"UUITextStyles\",null]"
|
|
7693
|
+
},
|
|
7694
|
+
{
|
|
7695
|
+
"name": "value",
|
|
7696
|
+
"description": "intentional overwrite of FormControlMixins value getter and setter method.",
|
|
7697
|
+
"type": "string"
|
|
7698
|
+
},
|
|
7699
|
+
{
|
|
7700
|
+
"name": "labelPosition",
|
|
7701
|
+
"attribute": "label-position",
|
|
7702
|
+
"description": "Specifies the label position of the checkbox or the toggle",
|
|
7703
|
+
"type": "'left' | 'right' | 'top' | 'bottom'",
|
|
7704
|
+
"default": "\"right\""
|
|
7705
|
+
},
|
|
7706
|
+
{
|
|
7707
|
+
"name": "checked",
|
|
7708
|
+
"attribute": "checked",
|
|
7709
|
+
"description": "Reflects the state of the element.\nTrue if checkbox or toggle is checked. Change this to switch the state programmatically.",
|
|
7710
|
+
"type": "boolean",
|
|
7711
|
+
"default": "\"false\""
|
|
7712
|
+
},
|
|
7713
|
+
{
|
|
7714
|
+
"name": "disabled",
|
|
7715
|
+
"attribute": "disabled",
|
|
7716
|
+
"description": "Disables the input.",
|
|
7717
|
+
"type": "boolean",
|
|
7718
|
+
"default": "\"false\""
|
|
6943
7719
|
}
|
|
6944
|
-
]
|
|
6945
|
-
|
|
6946
|
-
{
|
|
6947
|
-
"name": "umb-log-viewer-search-view",
|
|
6948
|
-
"path": "./../../src/backoffice/settings/logviewer/workspace/views/search/log-search-view.element.ts",
|
|
6949
|
-
"properties": [
|
|
7720
|
+
],
|
|
7721
|
+
"events": [
|
|
6950
7722
|
{
|
|
6951
|
-
"name": "
|
|
6952
|
-
"
|
|
6953
|
-
"default": "[\"UUITextStyles\",null]"
|
|
7723
|
+
"name": "change",
|
|
7724
|
+
"description": "on change"
|
|
6954
7725
|
}
|
|
6955
7726
|
]
|
|
6956
7727
|
},
|
|
6957
7728
|
{
|
|
6958
|
-
"name": "umb-
|
|
6959
|
-
"path": "./../../src/
|
|
7729
|
+
"name": "umb-templating-insert-section-modal",
|
|
7730
|
+
"path": "./../../src/packages/templating/modals/insert-section-modal/insert-section-modal.element.ts",
|
|
6960
7731
|
"properties": [
|
|
7732
|
+
{
|
|
7733
|
+
"name": "checkboxes",
|
|
7734
|
+
"type": "NodeListOf<UmbInsertSectionCheckboxElement>"
|
|
7735
|
+
},
|
|
7736
|
+
{
|
|
7737
|
+
"name": "selectedCheckbox",
|
|
7738
|
+
"type": "UmbInsertSectionCheckboxElement | null | undefined"
|
|
7739
|
+
},
|
|
7740
|
+
{
|
|
7741
|
+
"name": "snippet",
|
|
7742
|
+
"type": "string",
|
|
7743
|
+
"default": "\"\""
|
|
7744
|
+
},
|
|
7745
|
+
{
|
|
7746
|
+
"name": "snippetMethods",
|
|
7747
|
+
"type": "((sectionName: string, isMandatory: boolean) => string)[]",
|
|
7748
|
+
"default": "[\"getRenderBodySnippet\",\"getRenderSectionSnippet\",\"getAddSectionSnippet\"]"
|
|
7749
|
+
},
|
|
6961
7750
|
{
|
|
6962
7751
|
"name": "styles",
|
|
6963
7752
|
"type": "CSSResult[]",
|
|
@@ -6966,9 +7755,32 @@
|
|
|
6966
7755
|
]
|
|
6967
7756
|
},
|
|
6968
7757
|
{
|
|
6969
|
-
"name": "umb-
|
|
6970
|
-
"path": "./../../src/
|
|
7758
|
+
"name": "umb-insert-value-sidebar",
|
|
7759
|
+
"path": "./../../src/packages/templating/modals/insert-value-sidebar.element.ts",
|
|
6971
7760
|
"properties": [
|
|
7761
|
+
{
|
|
7762
|
+
"name": "showDefaultValueInput",
|
|
7763
|
+
"type": "boolean",
|
|
7764
|
+
"default": "false"
|
|
7765
|
+
},
|
|
7766
|
+
{
|
|
7767
|
+
"name": "recursive",
|
|
7768
|
+
"type": "boolean",
|
|
7769
|
+
"default": "false"
|
|
7770
|
+
},
|
|
7771
|
+
{
|
|
7772
|
+
"name": "defaultValue",
|
|
7773
|
+
"type": "string | null"
|
|
7774
|
+
},
|
|
7775
|
+
{
|
|
7776
|
+
"name": "field",
|
|
7777
|
+
"type": "string | null"
|
|
7778
|
+
},
|
|
7779
|
+
{
|
|
7780
|
+
"name": "output",
|
|
7781
|
+
"type": "string",
|
|
7782
|
+
"default": "\"\""
|
|
7783
|
+
},
|
|
6972
7784
|
{
|
|
6973
7785
|
"name": "styles",
|
|
6974
7786
|
"type": "CSSResult[]",
|
|
@@ -6977,8 +7789,8 @@
|
|
|
6977
7789
|
]
|
|
6978
7790
|
},
|
|
6979
7791
|
{
|
|
6980
|
-
"name": "umb-
|
|
6981
|
-
"path": "./../../src/
|
|
7792
|
+
"name": "umb-partial-view-picker-modal",
|
|
7793
|
+
"path": "./../../src/packages/templating/modals/partial-view-picker-modal.element.ts",
|
|
6982
7794
|
"properties": [
|
|
6983
7795
|
{
|
|
6984
7796
|
"name": "styles",
|
|
@@ -6988,8 +7800,8 @@
|
|
|
6988
7800
|
]
|
|
6989
7801
|
},
|
|
6990
7802
|
{
|
|
6991
|
-
"name": "umb-
|
|
6992
|
-
"path": "./../../src/
|
|
7803
|
+
"name": "umb-partial-views-workspace-edit",
|
|
7804
|
+
"path": "./../../src/packages/templating/partial-views/workspace/partial-views-workspace-edit.element.ts",
|
|
6993
7805
|
"properties": [
|
|
6994
7806
|
{
|
|
6995
7807
|
"name": "styles",
|
|
@@ -6999,12 +7811,9 @@
|
|
|
6999
7811
|
]
|
|
7000
7812
|
},
|
|
7001
7813
|
{
|
|
7002
|
-
"name": "umb-
|
|
7003
|
-
"path": "./../../src/
|
|
7814
|
+
"name": "umb-partial-views-workspace",
|
|
7815
|
+
"path": "./../../src/packages/templating/partial-views/workspace/partial-views-workspace.element.ts",
|
|
7004
7816
|
"properties": [
|
|
7005
|
-
{
|
|
7006
|
-
"name": "item"
|
|
7007
|
-
},
|
|
7008
7817
|
{
|
|
7009
7818
|
"name": "styles",
|
|
7010
7819
|
"type": "CSSResult[]",
|
|
@@ -7014,7 +7823,7 @@
|
|
|
7014
7823
|
},
|
|
7015
7824
|
{
|
|
7016
7825
|
"name": "umb-stylesheet-workspace-edit",
|
|
7017
|
-
"path": "./../../src/
|
|
7826
|
+
"path": "./../../src/packages/templating/stylesheets/workspace/stylesheet-workspace-edit.element.ts",
|
|
7018
7827
|
"properties": [
|
|
7019
7828
|
{
|
|
7020
7829
|
"name": "styles",
|
|
@@ -7025,7 +7834,7 @@
|
|
|
7025
7834
|
},
|
|
7026
7835
|
{
|
|
7027
7836
|
"name": "umb-stylesheet-workspace",
|
|
7028
|
-
"path": "./../../src/
|
|
7837
|
+
"path": "./../../src/packages/templating/stylesheets/workspace/stylesheet-workspace.element.ts",
|
|
7029
7838
|
"properties": [
|
|
7030
7839
|
{
|
|
7031
7840
|
"name": "styles",
|
|
@@ -7036,7 +7845,7 @@
|
|
|
7036
7845
|
},
|
|
7037
7846
|
{
|
|
7038
7847
|
"name": "umb-input-template",
|
|
7039
|
-
"path": "./../../src/
|
|
7848
|
+
"path": "./../../src/packages/templating/templates/components/input-template/input-template.element.ts",
|
|
7040
7849
|
"attributes": [
|
|
7041
7850
|
{
|
|
7042
7851
|
"name": "min",
|
|
@@ -7164,7 +7973,7 @@
|
|
|
7164
7973
|
},
|
|
7165
7974
|
{
|
|
7166
7975
|
"name": "umb-template-card",
|
|
7167
|
-
"path": "./../../src/
|
|
7976
|
+
"path": "./../../src/packages/templating/templates/components/template-card/template-card.element.ts",
|
|
7168
7977
|
"attributes": [
|
|
7169
7978
|
{
|
|
7170
7979
|
"name": "default",
|
|
@@ -7258,9 +8067,20 @@
|
|
|
7258
8067
|
}
|
|
7259
8068
|
]
|
|
7260
8069
|
},
|
|
8070
|
+
{
|
|
8071
|
+
"name": "umb-template-workspace-edit",
|
|
8072
|
+
"path": "./../../src/packages/templating/templates/workspace/template-workspace-edit.element.ts",
|
|
8073
|
+
"properties": [
|
|
8074
|
+
{
|
|
8075
|
+
"name": "styles",
|
|
8076
|
+
"type": "CSSResult[]",
|
|
8077
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8078
|
+
}
|
|
8079
|
+
]
|
|
8080
|
+
},
|
|
7261
8081
|
{
|
|
7262
8082
|
"name": "umb-template-workspace",
|
|
7263
|
-
"path": "./../../src/
|
|
8083
|
+
"path": "./../../src/packages/templating/templates/workspace/template-workspace.element.ts",
|
|
7264
8084
|
"properties": [
|
|
7265
8085
|
{
|
|
7266
8086
|
"name": "styles",
|
|
@@ -7271,7 +8091,7 @@
|
|
|
7271
8091
|
},
|
|
7272
8092
|
{
|
|
7273
8093
|
"name": "umb-dashboard-translation-dictionary",
|
|
7274
|
-
"path": "./../../src/
|
|
8094
|
+
"path": "./../../src/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts",
|
|
7275
8095
|
"properties": [
|
|
7276
8096
|
{
|
|
7277
8097
|
"name": "styles",
|
|
@@ -7282,7 +8102,7 @@
|
|
|
7282
8102
|
},
|
|
7283
8103
|
{
|
|
7284
8104
|
"name": "umb-create-dictionary-modal",
|
|
7285
|
-
"path": "./../../src/
|
|
8105
|
+
"path": "./../../src/packages/translation/dictionary/entity-actions/create/create-dictionary-modal-layout.element.ts",
|
|
7286
8106
|
"properties": [
|
|
7287
8107
|
{
|
|
7288
8108
|
"name": "styles",
|
|
@@ -7293,7 +8113,7 @@
|
|
|
7293
8113
|
},
|
|
7294
8114
|
{
|
|
7295
8115
|
"name": "umb-export-dictionary-modal",
|
|
7296
|
-
"path": "./../../src/
|
|
8116
|
+
"path": "./../../src/packages/translation/dictionary/entity-actions/export/export-dictionary-modal.element.ts",
|
|
7297
8117
|
"properties": [
|
|
7298
8118
|
{
|
|
7299
8119
|
"name": "styles",
|
|
@@ -7304,7 +8124,7 @@
|
|
|
7304
8124
|
},
|
|
7305
8125
|
{
|
|
7306
8126
|
"name": "umb-import-dictionary-modal",
|
|
7307
|
-
"path": "./../../src/
|
|
8127
|
+
"path": "./../../src/packages/translation/dictionary/entity-actions/import/import-dictionary-modal.element.ts",
|
|
7308
8128
|
"properties": [
|
|
7309
8129
|
{
|
|
7310
8130
|
"name": "styles",
|
|
@@ -7315,11 +8135,11 @@
|
|
|
7315
8135
|
},
|
|
7316
8136
|
{
|
|
7317
8137
|
"name": "umb-dictionary-menu-item",
|
|
7318
|
-
"path": "./../../src/
|
|
8138
|
+
"path": "./../../src/packages/translation/dictionary/menu-item/dictionary-menu-item.element.ts"
|
|
7319
8139
|
},
|
|
7320
8140
|
{
|
|
7321
8141
|
"name": "umb-dictionary-workspace-edit",
|
|
7322
|
-
"path": "./../../src/
|
|
8142
|
+
"path": "./../../src/packages/translation/dictionary/workspace/dictionary-workspace-edit.element.ts",
|
|
7323
8143
|
"properties": [
|
|
7324
8144
|
{
|
|
7325
8145
|
"name": "styles",
|
|
@@ -7330,7 +8150,7 @@
|
|
|
7330
8150
|
},
|
|
7331
8151
|
{
|
|
7332
8152
|
"name": "umb-dictionary-workspace",
|
|
7333
|
-
"path": "./../../src/
|
|
8153
|
+
"path": "./../../src/packages/translation/dictionary/workspace/dictionary-workspace.element.ts",
|
|
7334
8154
|
"properties": [
|
|
7335
8155
|
{
|
|
7336
8156
|
"name": "styles",
|
|
@@ -7341,7 +8161,18 @@
|
|
|
7341
8161
|
},
|
|
7342
8162
|
{
|
|
7343
8163
|
"name": "umb-workspace-view-dictionary-edit",
|
|
7344
|
-
"path": "./../../src/
|
|
8164
|
+
"path": "./../../src/packages/translation/dictionary/workspace/views/edit/workspace-view-dictionary-edit.element.ts",
|
|
8165
|
+
"properties": [
|
|
8166
|
+
{
|
|
8167
|
+
"name": "styles",
|
|
8168
|
+
"type": "CSSResult[]",
|
|
8169
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8170
|
+
}
|
|
8171
|
+
]
|
|
8172
|
+
},
|
|
8173
|
+
{
|
|
8174
|
+
"name": "umb-dictionary-item-picker-modal",
|
|
8175
|
+
"path": "./../../src/packages/translation/modals/dictionary-item-picker/dictionary-item-picker-modal.element.ts",
|
|
7345
8176
|
"properties": [
|
|
7346
8177
|
{
|
|
7347
8178
|
"name": "styles",
|
|
@@ -7352,7 +8183,7 @@
|
|
|
7352
8183
|
},
|
|
7353
8184
|
{
|
|
7354
8185
|
"name": "umb-umbraco-news-dashboard",
|
|
7355
|
-
"path": "./../../src/
|
|
8186
|
+
"path": "./../../src/packages/umbraco-news/umbraco-news-dashboard.element.ts",
|
|
7356
8187
|
"properties": [
|
|
7357
8188
|
{
|
|
7358
8189
|
"name": "styles",
|
|
@@ -7363,7 +8194,7 @@
|
|
|
7363
8194
|
},
|
|
7364
8195
|
{
|
|
7365
8196
|
"name": "umb-current-user-header-app",
|
|
7366
|
-
"path": "./../../src/
|
|
8197
|
+
"path": "./../../src/packages/users/current-user/current-user-header-app.element.ts",
|
|
7367
8198
|
"properties": [
|
|
7368
8199
|
{
|
|
7369
8200
|
"name": "styles",
|
|
@@ -7374,7 +8205,7 @@
|
|
|
7374
8205
|
},
|
|
7375
8206
|
{
|
|
7376
8207
|
"name": "umb-change-password-modal",
|
|
7377
|
-
"path": "./../../src/
|
|
8208
|
+
"path": "./../../src/packages/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
7378
8209
|
"attributes": [
|
|
7379
8210
|
{
|
|
7380
8211
|
"name": "data"
|
|
@@ -7397,7 +8228,7 @@
|
|
|
7397
8228
|
},
|
|
7398
8229
|
{
|
|
7399
8230
|
"name": "umb-current-user-modal",
|
|
7400
|
-
"path": "./../../src/
|
|
8231
|
+
"path": "./../../src/packages/users/current-user/modals/current-user/current-user-modal.element.ts",
|
|
7401
8232
|
"properties": [
|
|
7402
8233
|
{
|
|
7403
8234
|
"name": "modalHandler"
|
|
@@ -7411,7 +8242,7 @@
|
|
|
7411
8242
|
},
|
|
7412
8243
|
{
|
|
7413
8244
|
"name": "umb-user-profile-app-external-login-providers",
|
|
7414
|
-
"path": "./../../src/
|
|
8245
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.ts",
|
|
7415
8246
|
"properties": [
|
|
7416
8247
|
{
|
|
7417
8248
|
"name": "styles",
|
|
@@ -7422,7 +8253,7 @@
|
|
|
7422
8253
|
},
|
|
7423
8254
|
{
|
|
7424
8255
|
"name": "umb-user-profile-app-history",
|
|
7425
|
-
"path": "./../../src/
|
|
8256
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7426
8257
|
"properties": [
|
|
7427
8258
|
{
|
|
7428
8259
|
"name": "styles",
|
|
@@ -7433,7 +8264,7 @@
|
|
|
7433
8264
|
},
|
|
7434
8265
|
{
|
|
7435
8266
|
"name": "umb-user-dashboard-test",
|
|
7436
|
-
"path": "./../../src/
|
|
8267
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7437
8268
|
"properties": [
|
|
7438
8269
|
{
|
|
7439
8270
|
"name": "styles",
|
|
@@ -7444,7 +8275,7 @@
|
|
|
7444
8275
|
},
|
|
7445
8276
|
{
|
|
7446
8277
|
"name": "umb-user-profile-app-profile",
|
|
7447
|
-
"path": "./../../src/
|
|
8278
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-profile.element.ts",
|
|
7448
8279
|
"properties": [
|
|
7449
8280
|
{
|
|
7450
8281
|
"name": "styles",
|
|
@@ -7455,7 +8286,40 @@
|
|
|
7455
8286
|
},
|
|
7456
8287
|
{
|
|
7457
8288
|
"name": "umb-user-profile-app-themes",
|
|
7458
|
-
"path": "./../../src/
|
|
8289
|
+
"path": "./../../src/packages/users/current-user/user-profile-apps/user-profile-app-themes.element.ts",
|
|
8290
|
+
"properties": [
|
|
8291
|
+
{
|
|
8292
|
+
"name": "styles",
|
|
8293
|
+
"type": "CSSResult[]",
|
|
8294
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8295
|
+
}
|
|
8296
|
+
]
|
|
8297
|
+
},
|
|
8298
|
+
{
|
|
8299
|
+
"name": "umb-user-group-collection-header",
|
|
8300
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-collection-header.element.ts",
|
|
8301
|
+
"properties": [
|
|
8302
|
+
{
|
|
8303
|
+
"name": "styles",
|
|
8304
|
+
"type": "CSSResult[]",
|
|
8305
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8306
|
+
}
|
|
8307
|
+
]
|
|
8308
|
+
},
|
|
8309
|
+
{
|
|
8310
|
+
"name": "umb-user-group-collection-view",
|
|
8311
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-collection-view.element.ts",
|
|
8312
|
+
"properties": [
|
|
8313
|
+
{
|
|
8314
|
+
"name": "styles",
|
|
8315
|
+
"type": "CSSResult[]",
|
|
8316
|
+
"default": "[\"UUITextStyles\",null]"
|
|
8317
|
+
}
|
|
8318
|
+
]
|
|
8319
|
+
},
|
|
8320
|
+
{
|
|
8321
|
+
"name": "umb-user-group-collection",
|
|
8322
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-collection.element.ts",
|
|
7459
8323
|
"properties": [
|
|
7460
8324
|
{
|
|
7461
8325
|
"name": "styles",
|
|
@@ -7465,90 +8329,146 @@
|
|
|
7465
8329
|
]
|
|
7466
8330
|
},
|
|
7467
8331
|
{
|
|
7468
|
-
"name": "umb-
|
|
7469
|
-
"path": "./../../src/
|
|
8332
|
+
"name": "umb-user-group-table-name-column-layout",
|
|
8333
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-table-name-column-layout.element.ts",
|
|
8334
|
+
"properties": [
|
|
8335
|
+
{
|
|
8336
|
+
"name": "item"
|
|
8337
|
+
},
|
|
8338
|
+
{
|
|
8339
|
+
"name": "value"
|
|
8340
|
+
}
|
|
8341
|
+
]
|
|
8342
|
+
},
|
|
8343
|
+
{
|
|
8344
|
+
"name": "umb-user-group-table-sections-column-layout",
|
|
8345
|
+
"path": "./../../src/packages/users/user-groups/collection/user-group-table-sections-column-layout.element.ts",
|
|
8346
|
+
"properties": [
|
|
8347
|
+
{
|
|
8348
|
+
"name": "item"
|
|
8349
|
+
},
|
|
8350
|
+
{
|
|
8351
|
+
"name": "value"
|
|
8352
|
+
}
|
|
8353
|
+
]
|
|
8354
|
+
},
|
|
8355
|
+
{
|
|
8356
|
+
"name": "umb-user-group-input",
|
|
8357
|
+
"path": "./../../src/packages/users/user-groups/components/input-user-group/user-group-input.element.ts",
|
|
7470
8358
|
"attributes": [
|
|
7471
8359
|
{
|
|
7472
|
-
"name": "
|
|
7473
|
-
"
|
|
7474
|
-
"
|
|
8360
|
+
"name": "min",
|
|
8361
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
8362
|
+
"type": "number",
|
|
8363
|
+
"default": "\"0\""
|
|
7475
8364
|
},
|
|
7476
8365
|
{
|
|
7477
|
-
"name": "
|
|
8366
|
+
"name": "max",
|
|
8367
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
8368
|
+
"type": "number",
|
|
8369
|
+
"default": "\"Infinity\""
|
|
8370
|
+
},
|
|
8371
|
+
{
|
|
8372
|
+
"name": "min-message",
|
|
8373
|
+
"description": "Min validation message.",
|
|
7478
8374
|
"type": "boolean",
|
|
7479
|
-
"default": "
|
|
8375
|
+
"default": "\"\""
|
|
7480
8376
|
},
|
|
7481
8377
|
{
|
|
7482
|
-
"name": "
|
|
7483
|
-
"
|
|
8378
|
+
"name": "maxMessage",
|
|
8379
|
+
"description": "Max validation message.",
|
|
8380
|
+
"type": "boolean",
|
|
8381
|
+
"default": "\"\""
|
|
7484
8382
|
},
|
|
7485
8383
|
{
|
|
7486
|
-
"name": "
|
|
7487
|
-
"type": "
|
|
7488
|
-
"default": "\"small\""
|
|
8384
|
+
"name": "value",
|
|
8385
|
+
"type": "string"
|
|
7489
8386
|
}
|
|
7490
8387
|
],
|
|
7491
8388
|
"properties": [
|
|
8389
|
+
{
|
|
8390
|
+
"name": "min",
|
|
8391
|
+
"attribute": "min",
|
|
8392
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
8393
|
+
"type": "number",
|
|
8394
|
+
"default": "\"0\""
|
|
8395
|
+
},
|
|
8396
|
+
{
|
|
8397
|
+
"name": "max",
|
|
8398
|
+
"attribute": "max",
|
|
8399
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
8400
|
+
"type": "number",
|
|
8401
|
+
"default": "\"Infinity\""
|
|
8402
|
+
},
|
|
8403
|
+
{
|
|
8404
|
+
"name": "minMessage",
|
|
8405
|
+
"attribute": "min-message",
|
|
8406
|
+
"description": "Min validation message.",
|
|
8407
|
+
"type": "boolean",
|
|
8408
|
+
"default": "\"\""
|
|
8409
|
+
},
|
|
8410
|
+
{
|
|
8411
|
+
"name": "maxMessage",
|
|
8412
|
+
"attribute": "maxMessage",
|
|
8413
|
+
"description": "Max validation message.",
|
|
8414
|
+
"type": "boolean",
|
|
8415
|
+
"default": "\"\""
|
|
8416
|
+
},
|
|
8417
|
+
{
|
|
8418
|
+
"name": "selectedIds",
|
|
8419
|
+
"type": "string[]"
|
|
8420
|
+
},
|
|
7492
8421
|
{
|
|
7493
8422
|
"name": "styles",
|
|
7494
8423
|
"type": "CSSResult[]",
|
|
7495
8424
|
"default": "[\"UUITextStyles\",null]"
|
|
7496
8425
|
},
|
|
8426
|
+
{
|
|
8427
|
+
"name": "formAssociated",
|
|
8428
|
+
"type": "boolean"
|
|
8429
|
+
},
|
|
7497
8430
|
{
|
|
7498
8431
|
"name": "value",
|
|
7499
8432
|
"attribute": "value",
|
|
7500
|
-
"type": "string
|
|
7501
|
-
"default": "[]"
|
|
8433
|
+
"type": "string"
|
|
7502
8434
|
},
|
|
7503
8435
|
{
|
|
7504
|
-
"name": "
|
|
7505
|
-
"
|
|
7506
|
-
"type": "boolean",
|
|
7507
|
-
"default": "true"
|
|
8436
|
+
"name": "name",
|
|
8437
|
+
"type": "string"
|
|
7508
8438
|
},
|
|
7509
8439
|
{
|
|
7510
|
-
"name": "
|
|
7511
|
-
"
|
|
7512
|
-
"default": "\"sidebar\""
|
|
8440
|
+
"name": "validationMessage",
|
|
8441
|
+
"type": "string"
|
|
7513
8442
|
},
|
|
7514
8443
|
{
|
|
7515
|
-
"name": "
|
|
7516
|
-
"
|
|
7517
|
-
|
|
7518
|
-
"default": "\"small\""
|
|
7519
|
-
}
|
|
7520
|
-
],
|
|
7521
|
-
"events": [
|
|
8444
|
+
"name": "validity",
|
|
8445
|
+
"type": "ValidityState"
|
|
8446
|
+
},
|
|
7522
8447
|
{
|
|
7523
|
-
"name": "
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
},
|
|
7527
|
-
{
|
|
7528
|
-
"name": "umb-user-group-picker-modal",
|
|
7529
|
-
"path": "./../../src/backoffice/users/user-groups/modals/user-group-picker/user-group-picker-modal.element.ts",
|
|
7530
|
-
"properties": [
|
|
8448
|
+
"name": "pristine",
|
|
8449
|
+
"type": "boolean"
|
|
8450
|
+
},
|
|
7531
8451
|
{
|
|
7532
|
-
"name": "
|
|
7533
|
-
"type": "
|
|
7534
|
-
|
|
7535
|
-
}
|
|
7536
|
-
]
|
|
7537
|
-
},
|
|
7538
|
-
{
|
|
7539
|
-
"name": "umb-section-view-user-groups",
|
|
7540
|
-
"path": "./../../src/backoffice/users/user-groups/section-view/section-view-user-groups.element.ts",
|
|
7541
|
-
"properties": [
|
|
8452
|
+
"name": "required",
|
|
8453
|
+
"type": "boolean"
|
|
8454
|
+
},
|
|
7542
8455
|
{
|
|
7543
|
-
"name": "
|
|
7544
|
-
"type": "
|
|
7545
|
-
|
|
8456
|
+
"name": "requiredMessage",
|
|
8457
|
+
"type": "string"
|
|
8458
|
+
},
|
|
8459
|
+
{
|
|
8460
|
+
"name": "error",
|
|
8461
|
+
"type": "boolean"
|
|
8462
|
+
},
|
|
8463
|
+
{
|
|
8464
|
+
"name": "errorMessage",
|
|
8465
|
+
"type": "string"
|
|
7546
8466
|
}
|
|
7547
8467
|
]
|
|
7548
8468
|
},
|
|
7549
8469
|
{
|
|
7550
|
-
"name": "umb-
|
|
7551
|
-
"path": "./../../src/
|
|
8470
|
+
"name": "umb-user-group-picker-modal",
|
|
8471
|
+
"path": "./../../src/packages/users/user-groups/modals/user-group-picker/user-group-picker-modal.element.ts",
|
|
7552
8472
|
"properties": [
|
|
7553
8473
|
{
|
|
7554
8474
|
"name": "styles",
|
|
@@ -7558,38 +8478,31 @@
|
|
|
7558
8478
|
]
|
|
7559
8479
|
},
|
|
7560
8480
|
{
|
|
7561
|
-
"name": "umb-user-
|
|
7562
|
-
"path": "./../../src/
|
|
8481
|
+
"name": "umb-user-groups-section-view",
|
|
8482
|
+
"path": "./../../src/packages/users/user-groups/section-view/user-groups-section-view.element.ts",
|
|
7563
8483
|
"properties": [
|
|
7564
8484
|
{
|
|
7565
|
-
"name": "
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
"name": "value"
|
|
8485
|
+
"name": "styles",
|
|
8486
|
+
"type": "CSSResult[]",
|
|
8487
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7569
8488
|
}
|
|
7570
8489
|
]
|
|
7571
8490
|
},
|
|
7572
8491
|
{
|
|
7573
|
-
"name": "umb-user-group-
|
|
7574
|
-
"path": "./../../src/
|
|
8492
|
+
"name": "umb-workspace-action-user-group-save",
|
|
8493
|
+
"path": "./../../src/packages/users/user-groups/workspace/actions/workspace-action-user-group-save.element.ts",
|
|
7575
8494
|
"properties": [
|
|
7576
8495
|
{
|
|
7577
|
-
"name": "
|
|
7578
|
-
|
|
7579
|
-
|
|
7580
|
-
"name": "value"
|
|
8496
|
+
"name": "styles",
|
|
8497
|
+
"type": "CSSResult[]",
|
|
8498
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7581
8499
|
}
|
|
7582
8500
|
]
|
|
7583
8501
|
},
|
|
7584
8502
|
{
|
|
7585
8503
|
"name": "umb-user-group-workspace-edit",
|
|
7586
|
-
"path": "./../../src/
|
|
8504
|
+
"path": "./../../src/packages/users/user-groups/workspace/user-group-workspace-edit.element.ts",
|
|
7587
8505
|
"properties": [
|
|
7588
|
-
{
|
|
7589
|
-
"name": "defaultPermissions",
|
|
7590
|
-
"type": "{ name: string; permissions: { name: string; description: string; value: boolean; }[]; }[]",
|
|
7591
|
-
"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}]}]"
|
|
7592
|
-
},
|
|
7593
8506
|
{
|
|
7594
8507
|
"name": "styles",
|
|
7595
8508
|
"type": "CSSResult[]",
|
|
@@ -7599,7 +8512,7 @@
|
|
|
7599
8512
|
},
|
|
7600
8513
|
{
|
|
7601
8514
|
"name": "umb-user-group-workspace",
|
|
7602
|
-
"path": "./../../src/
|
|
8515
|
+
"path": "./../../src/packages/users/user-groups/workspace/user-group-workspace.element.ts",
|
|
7603
8516
|
"properties": [
|
|
7604
8517
|
{
|
|
7605
8518
|
"name": "styles",
|
|
@@ -7608,20 +8521,9 @@
|
|
|
7608
8521
|
}
|
|
7609
8522
|
]
|
|
7610
8523
|
},
|
|
7611
|
-
{
|
|
7612
|
-
"name": "umb-workspace-view-user-groups",
|
|
7613
|
-
"path": "./../../src/backoffice/users/user-groups/workspace/workspace-view-user-groups.element.ts",
|
|
7614
|
-
"properties": [
|
|
7615
|
-
{
|
|
7616
|
-
"name": "styles",
|
|
7617
|
-
"type": "CSSResult[]",
|
|
7618
|
-
"default": "[\"UUITextStyles\",null]"
|
|
7619
|
-
}
|
|
7620
|
-
]
|
|
7621
|
-
},
|
|
7622
8524
|
{
|
|
7623
8525
|
"name": "umb-user-collection-header",
|
|
7624
|
-
"path": "./../../src/
|
|
8526
|
+
"path": "./../../src/packages/users/users/collection/user-collection-header.element.ts",
|
|
7625
8527
|
"properties": [
|
|
7626
8528
|
{
|
|
7627
8529
|
"name": "styles",
|
|
@@ -7632,7 +8534,7 @@
|
|
|
7632
8534
|
},
|
|
7633
8535
|
{
|
|
7634
8536
|
"name": "umb-user-collection",
|
|
7635
|
-
"path": "./../../src/
|
|
8537
|
+
"path": "./../../src/packages/users/users/collection/user-collection.element.ts",
|
|
7636
8538
|
"properties": [
|
|
7637
8539
|
{
|
|
7638
8540
|
"name": "styles",
|
|
@@ -7643,7 +8545,7 @@
|
|
|
7643
8545
|
},
|
|
7644
8546
|
{
|
|
7645
8547
|
"name": "umb-user-collection-grid-view",
|
|
7646
|
-
"path": "./../../src/
|
|
8548
|
+
"path": "./../../src/packages/users/users/collection/views/grid/user-collection-grid-view.element.ts",
|
|
7647
8549
|
"properties": [
|
|
7648
8550
|
{
|
|
7649
8551
|
"name": "styles",
|
|
@@ -7654,7 +8556,7 @@
|
|
|
7654
8556
|
},
|
|
7655
8557
|
{
|
|
7656
8558
|
"name": "umb-user-table-name-column-layout",
|
|
7657
|
-
"path": "./../../src/
|
|
8559
|
+
"path": "./../../src/packages/users/users/collection/views/table/column-layouts/name/user-table-name-column-layout.element.ts",
|
|
7658
8560
|
"properties": [
|
|
7659
8561
|
{
|
|
7660
8562
|
"name": "column"
|
|
@@ -7669,7 +8571,7 @@
|
|
|
7669
8571
|
},
|
|
7670
8572
|
{
|
|
7671
8573
|
"name": "umb-user-table-status-column-layout",
|
|
7672
|
-
"path": "./../../src/
|
|
8574
|
+
"path": "./../../src/packages/users/users/collection/views/table/column-layouts/status/user-table-status-column-layout.element.ts",
|
|
7673
8575
|
"properties": [
|
|
7674
8576
|
{
|
|
7675
8577
|
"name": "value"
|
|
@@ -7678,7 +8580,7 @@
|
|
|
7678
8580
|
},
|
|
7679
8581
|
{
|
|
7680
8582
|
"name": "umb-user-collection-table-view",
|
|
7681
|
-
"path": "./../../src/
|
|
8583
|
+
"path": "./../../src/packages/users/users/collection/views/table/user-collection-table-view.element.ts",
|
|
7682
8584
|
"properties": [
|
|
7683
8585
|
{
|
|
7684
8586
|
"name": "styles",
|
|
@@ -7689,7 +8591,7 @@
|
|
|
7689
8591
|
},
|
|
7690
8592
|
{
|
|
7691
8593
|
"name": "umb-workspace-view-users-table",
|
|
7692
|
-
"path": "./../../src/
|
|
8594
|
+
"path": "./../../src/packages/users/users/collection/views/table/user-collection-table-view.element.ts",
|
|
7693
8595
|
"properties": [
|
|
7694
8596
|
{
|
|
7695
8597
|
"name": "styles",
|
|
@@ -7700,7 +8602,7 @@
|
|
|
7700
8602
|
},
|
|
7701
8603
|
{
|
|
7702
8604
|
"name": "umb-user-input",
|
|
7703
|
-
"path": "./../../src/
|
|
8605
|
+
"path": "./../../src/packages/users/users/components/user-input/user-input.element.ts",
|
|
7704
8606
|
"attributes": [
|
|
7705
8607
|
{
|
|
7706
8608
|
"name": "min",
|
|
@@ -7814,7 +8716,7 @@
|
|
|
7814
8716
|
},
|
|
7815
8717
|
{
|
|
7816
8718
|
"name": "umb-user-create-modal",
|
|
7817
|
-
"path": "./../../src/
|
|
8719
|
+
"path": "./../../src/packages/users/users/modals/create/user-create-modal.element.ts",
|
|
7818
8720
|
"properties": [
|
|
7819
8721
|
{
|
|
7820
8722
|
"name": "styles",
|
|
@@ -7825,7 +8727,7 @@
|
|
|
7825
8727
|
},
|
|
7826
8728
|
{
|
|
7827
8729
|
"name": "umb-user-invite-modal",
|
|
7828
|
-
"path": "./../../src/
|
|
8730
|
+
"path": "./../../src/packages/users/users/modals/invite/user-invite-modal.element.ts",
|
|
7829
8731
|
"properties": [
|
|
7830
8732
|
{
|
|
7831
8733
|
"name": "styles",
|
|
@@ -7836,14 +8738,8 @@
|
|
|
7836
8738
|
},
|
|
7837
8739
|
{
|
|
7838
8740
|
"name": "umb-user-picker-modal",
|
|
7839
|
-
"path": "./../../src/
|
|
8741
|
+
"path": "./../../src/packages/users/users/modals/user-picker/user-picker-modal.element.ts",
|
|
7840
8742
|
"properties": [
|
|
7841
|
-
{
|
|
7842
|
-
"name": "modalHandler"
|
|
7843
|
-
},
|
|
7844
|
-
{
|
|
7845
|
-
"name": "data"
|
|
7846
|
-
},
|
|
7847
8743
|
{
|
|
7848
8744
|
"name": "styles",
|
|
7849
8745
|
"type": "CSSResult[]",
|
|
@@ -7853,7 +8749,7 @@
|
|
|
7853
8749
|
},
|
|
7854
8750
|
{
|
|
7855
8751
|
"name": "umb-section-view-users",
|
|
7856
|
-
"path": "./../../src/
|
|
8752
|
+
"path": "./../../src/packages/users/users/section-view/users-section-view.element.ts",
|
|
7857
8753
|
"properties": [
|
|
7858
8754
|
{
|
|
7859
8755
|
"name": "styles",
|
|
@@ -7864,7 +8760,7 @@
|
|
|
7864
8760
|
},
|
|
7865
8761
|
{
|
|
7866
8762
|
"name": "umb-user-workspace-action-save",
|
|
7867
|
-
"path": "./../../src/
|
|
8763
|
+
"path": "./../../src/packages/users/users/workspace/actions/user-workspace-action-save.element.ts",
|
|
7868
8764
|
"properties": [
|
|
7869
8765
|
{
|
|
7870
8766
|
"name": "styles",
|
|
@@ -7875,7 +8771,7 @@
|
|
|
7875
8771
|
},
|
|
7876
8772
|
{
|
|
7877
8773
|
"name": "umb-user-workspace-edit",
|
|
7878
|
-
"path": "./../../src/
|
|
8774
|
+
"path": "./../../src/packages/users/users/workspace/user-workspace-edit.element.ts",
|
|
7879
8775
|
"properties": [
|
|
7880
8776
|
{
|
|
7881
8777
|
"name": "styles",
|
|
@@ -7886,7 +8782,7 @@
|
|
|
7886
8782
|
},
|
|
7887
8783
|
{
|
|
7888
8784
|
"name": "umb-user-workspace",
|
|
7889
|
-
"path": "./../../src/
|
|
8785
|
+
"path": "./../../src/packages/users/users/workspace/user-workspace.element.ts",
|
|
7890
8786
|
"properties": [
|
|
7891
8787
|
{
|
|
7892
8788
|
"name": "styles",
|
|
@@ -7895,20 +8791,9 @@
|
|
|
7895
8791
|
}
|
|
7896
8792
|
]
|
|
7897
8793
|
},
|
|
7898
|
-
{
|
|
7899
|
-
"name": "umb-controller-host-test",
|
|
7900
|
-
"path": "./../../src/core/controller-host/controller-host-test.element.ts",
|
|
7901
|
-
"properties": [
|
|
7902
|
-
{
|
|
7903
|
-
"name": "create",
|
|
7904
|
-
"description": "A way to initialize controllers.",
|
|
7905
|
-
"type": "((host: any) => void) | undefined"
|
|
7906
|
-
}
|
|
7907
|
-
]
|
|
7908
|
-
},
|
|
7909
8794
|
{
|
|
7910
8795
|
"name": "umb-story-modal-context-example",
|
|
7911
|
-
"path": "./../../src/
|
|
8796
|
+
"path": "./../../src/shared/modal/stories/story-modal-service-example.element.ts",
|
|
7912
8797
|
"attributes": [
|
|
7913
8798
|
{
|
|
7914
8799
|
"name": "modalLayout",
|
|
@@ -7932,7 +8817,7 @@
|
|
|
7932
8817
|
},
|
|
7933
8818
|
{
|
|
7934
8819
|
"name": "umb-router-slot",
|
|
7935
|
-
"path": "./../../src/
|
|
8820
|
+
"path": "./../../src/shared/router/router-slot.element.ts",
|
|
7936
8821
|
"attributes": [
|
|
7937
8822
|
{
|
|
7938
8823
|
"name": "routes",
|
|
@@ -7976,7 +8861,7 @@
|
|
|
7976
8861
|
},
|
|
7977
8862
|
{
|
|
7978
8863
|
"name": "umb-variant-router-slot",
|
|
7979
|
-
"path": "./../../src/
|
|
8864
|
+
"path": "./../../src/shared/router/variant-router-slot.element.ts",
|
|
7980
8865
|
"attributes": [
|
|
7981
8866
|
{
|
|
7982
8867
|
"name": "variantId",
|
|
@@ -8026,230 +8911,6 @@
|
|
|
8026
8911
|
"description": "fires when a path of this router is changed"
|
|
8027
8912
|
}
|
|
8028
8913
|
]
|
|
8029
|
-
},
|
|
8030
|
-
{
|
|
8031
|
-
"name": "umb-error",
|
|
8032
|
-
"path": "./../../src/error/error.element.ts",
|
|
8033
|
-
"description": "A full page error element that can be used either solo or for instance as the error 500 page and BootFailed",
|
|
8034
|
-
"attributes": [
|
|
8035
|
-
{
|
|
8036
|
-
"name": "errorMessage",
|
|
8037
|
-
"description": "The error message to display",
|
|
8038
|
-
"type": "string | undefined"
|
|
8039
|
-
},
|
|
8040
|
-
{
|
|
8041
|
-
"name": "error",
|
|
8042
|
-
"description": "The error to display",
|
|
8043
|
-
"type": "unknown"
|
|
8044
|
-
}
|
|
8045
|
-
],
|
|
8046
|
-
"properties": [
|
|
8047
|
-
{
|
|
8048
|
-
"name": "errorMessage",
|
|
8049
|
-
"attribute": "errorMessage",
|
|
8050
|
-
"description": "The error message to display",
|
|
8051
|
-
"type": "string | undefined"
|
|
8052
|
-
},
|
|
8053
|
-
{
|
|
8054
|
-
"name": "error",
|
|
8055
|
-
"attribute": "error",
|
|
8056
|
-
"description": "The error to display",
|
|
8057
|
-
"type": "unknown"
|
|
8058
|
-
},
|
|
8059
|
-
{
|
|
8060
|
-
"name": "render",
|
|
8061
|
-
"type": "() => TemplateResult<1>",
|
|
8062
|
-
"default": "\"() => html`\\n\\t\\t<div id=\\\"background\\\"></div>\\n\\n\\t\\t<div id=\\\"logo\\\">\\n\\t\\t\\t<img src=\\\"${logoImg}\\\" alt=\\\"Umbraco\\\" />\\n\\t\\t</div>\\n\\n\\t\\t<div id=\\\"container\\\">\\n\\t\\t\\t<uui-box id=\\\"box\\\">\\n\\t\\t\\t\\t<h1>Something went wrong</h1>\\n\\t\\t\\t\\t<p>${this.errorMessage}</p>\\n\\t\\t\\t\\t${this.error\\n\\t\\t\\t\\t\\t? html`\\n\\t\\t\\t\\t\\t\\t\\t<details>\\n\\t\\t\\t\\t\\t\\t\\t\\t<summary>Details</summary>\\n\\t\\t\\t\\t\\t\\t\\t\\t${this.renderError(this.error)}\\n\\t\\t\\t\\t\\t\\t\\t</details>\\n\\t\\t\\t\\t\\t `\\n\\t\\t\\t\\t\\t: nothing}\\n\\t\\t\\t</uui-box>\\n\\t\\t</div>\\n\\t`\""
|
|
8063
|
-
},
|
|
8064
|
-
{
|
|
8065
|
-
"name": "styles",
|
|
8066
|
-
"type": "CSSResult",
|
|
8067
|
-
"default": "\"css`\\n\\t\\t#background {\\n\\t\\t\\tposition: fixed;\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\tbackground-position: 50%;\\n\\t\\t\\tbackground-repeat: no-repeat;\\n\\t\\t\\tbackground-size: cover;\\n\\t\\t\\tbackground-image: url('${unsafeCSS(backgroundImg)}');\\n\\t\\t\\twidth: 100vw;\\n\\t\\t\\theight: 100vh;\\n\\t\\t}\\n\\n\\t\\t#logo {\\n\\t\\t\\tposition: fixed;\\n\\t\\t\\ttop: var(--uui-size-space-5);\\n\\t\\t\\tleft: var(--uui-size-space-5);\\n\\t\\t\\theight: 30px;\\n\\t\\t}\\n\\n\\t\\t#logo img {\\n\\t\\t\\theight: 100%;\\n\\t\\t}\\n\\n\\t\\t#container {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: 100vw;\\n\\t\\t\\theight: 100vh;\\n\\t\\t}\\n\\n\\t\\t#box {\\n\\t\\t\\twidth: 50vw;\\n\\t\\t\\tpadding: var(--uui-size-space-6) var(--uui-size-space-5) var(--uui-size-space-5) var(--uui-size-space-5);\\n\\t\\t}\\n\\n\\t\\tdetails {\\n\\t\\t\\tpadding: var(--uui-size-space-2) var(--uui-size-space-3);\\n\\t\\t\\tbackground: var(--uui-color-surface-alt);\\n\\t\\t}\\n\\n\\t\\tpre {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\toverflow: auto;\\n\\t\\t}\\n\\t`\""
|
|
8068
|
-
}
|
|
8069
|
-
]
|
|
8070
|
-
},
|
|
8071
|
-
{
|
|
8072
|
-
"name": "umb-installer-consent",
|
|
8073
|
-
"path": "./../../src/installer/consent/installer-consent.element.ts",
|
|
8074
|
-
"properties": [
|
|
8075
|
-
{
|
|
8076
|
-
"name": "styles",
|
|
8077
|
-
"type": "CSSResultGroup",
|
|
8078
|
-
"default": "[null]"
|
|
8079
|
-
}
|
|
8080
|
-
]
|
|
8081
|
-
},
|
|
8082
|
-
{
|
|
8083
|
-
"name": "umb-installer-database",
|
|
8084
|
-
"path": "./../../src/installer/database/installer-database.element.ts",
|
|
8085
|
-
"properties": [
|
|
8086
|
-
{
|
|
8087
|
-
"name": "databaseFormData"
|
|
8088
|
-
},
|
|
8089
|
-
{
|
|
8090
|
-
"name": "styles",
|
|
8091
|
-
"type": "CSSResultGroup",
|
|
8092
|
-
"default": "[null]"
|
|
8093
|
-
}
|
|
8094
|
-
]
|
|
8095
|
-
},
|
|
8096
|
-
{
|
|
8097
|
-
"name": "umb-installer-error",
|
|
8098
|
-
"path": "./../../src/installer/error/installer-error.element.ts",
|
|
8099
|
-
"properties": [
|
|
8100
|
-
{
|
|
8101
|
-
"name": "styles",
|
|
8102
|
-
"type": "CSSResultGroup",
|
|
8103
|
-
"default": "[null]"
|
|
8104
|
-
}
|
|
8105
|
-
]
|
|
8106
|
-
},
|
|
8107
|
-
{
|
|
8108
|
-
"name": "umb-installer",
|
|
8109
|
-
"path": "./../../src/installer/installer.element.ts",
|
|
8110
|
-
"properties": [
|
|
8111
|
-
{
|
|
8112
|
-
"name": "step",
|
|
8113
|
-
"type": "number",
|
|
8114
|
-
"default": "1"
|
|
8115
|
-
},
|
|
8116
|
-
{
|
|
8117
|
-
"name": "styles",
|
|
8118
|
-
"type": "CSSResultGroup",
|
|
8119
|
-
"default": "[null]"
|
|
8120
|
-
}
|
|
8121
|
-
]
|
|
8122
|
-
},
|
|
8123
|
-
{
|
|
8124
|
-
"name": "umb-installer-installing",
|
|
8125
|
-
"path": "./../../src/installer/installing/installer-installing.element.ts",
|
|
8126
|
-
"properties": [
|
|
8127
|
-
{
|
|
8128
|
-
"name": "styles",
|
|
8129
|
-
"type": "CSSResultGroup",
|
|
8130
|
-
"default": "[null]"
|
|
8131
|
-
}
|
|
8132
|
-
]
|
|
8133
|
-
},
|
|
8134
|
-
{
|
|
8135
|
-
"name": "umb-installer-layout",
|
|
8136
|
-
"path": "./../../src/installer/shared/layout/installer-layout.element.ts",
|
|
8137
|
-
"properties": [
|
|
8138
|
-
{
|
|
8139
|
-
"name": "styles",
|
|
8140
|
-
"type": "CSSResultGroup",
|
|
8141
|
-
"default": "[null]"
|
|
8142
|
-
}
|
|
8143
|
-
]
|
|
8144
|
-
},
|
|
8145
|
-
{
|
|
8146
|
-
"name": "umb-installer-user",
|
|
8147
|
-
"path": "./../../src/installer/user/installer-user.element.ts",
|
|
8148
|
-
"properties": [
|
|
8149
|
-
{
|
|
8150
|
-
"name": "styles",
|
|
8151
|
-
"type": "CSSResultGroup",
|
|
8152
|
-
"default": "[null]"
|
|
8153
|
-
}
|
|
8154
|
-
]
|
|
8155
|
-
},
|
|
8156
|
-
{
|
|
8157
|
-
"name": "umb-upgrader-view",
|
|
8158
|
-
"path": "./../../src/upgrader/upgrader-view.element.ts",
|
|
8159
|
-
"attributes": [
|
|
8160
|
-
{
|
|
8161
|
-
"name": "fetching",
|
|
8162
|
-
"type": "boolean",
|
|
8163
|
-
"default": "false"
|
|
8164
|
-
},
|
|
8165
|
-
{
|
|
8166
|
-
"name": "upgrading",
|
|
8167
|
-
"type": "boolean",
|
|
8168
|
-
"default": "false"
|
|
8169
|
-
},
|
|
8170
|
-
{
|
|
8171
|
-
"name": "errorMessage",
|
|
8172
|
-
"type": "string",
|
|
8173
|
-
"default": "\"\""
|
|
8174
|
-
},
|
|
8175
|
-
{
|
|
8176
|
-
"name": "settings"
|
|
8177
|
-
}
|
|
8178
|
-
],
|
|
8179
|
-
"properties": [
|
|
8180
|
-
{
|
|
8181
|
-
"name": "fetching",
|
|
8182
|
-
"attribute": "fetching",
|
|
8183
|
-
"type": "boolean",
|
|
8184
|
-
"default": "false"
|
|
8185
|
-
},
|
|
8186
|
-
{
|
|
8187
|
-
"name": "upgrading",
|
|
8188
|
-
"attribute": "upgrading",
|
|
8189
|
-
"type": "boolean",
|
|
8190
|
-
"default": "false"
|
|
8191
|
-
},
|
|
8192
|
-
{
|
|
8193
|
-
"name": "errorMessage",
|
|
8194
|
-
"attribute": "errorMessage",
|
|
8195
|
-
"type": "string",
|
|
8196
|
-
"default": "\"\""
|
|
8197
|
-
},
|
|
8198
|
-
{
|
|
8199
|
-
"name": "settings",
|
|
8200
|
-
"attribute": "settings"
|
|
8201
|
-
},
|
|
8202
|
-
{
|
|
8203
|
-
"name": "styles",
|
|
8204
|
-
"type": "CSSResultGroup",
|
|
8205
|
-
"default": "[null]"
|
|
8206
|
-
}
|
|
8207
|
-
],
|
|
8208
|
-
"events": [
|
|
8209
|
-
{
|
|
8210
|
-
"name": "onAuthorizeUpgrade",
|
|
8211
|
-
"description": "fires when the user clicks the continue button"
|
|
8212
|
-
}
|
|
8213
|
-
]
|
|
8214
|
-
},
|
|
8215
|
-
{
|
|
8216
|
-
"name": "umb-upgrader",
|
|
8217
|
-
"path": "./../../src/upgrader/upgrader.element.ts"
|
|
8218
|
-
},
|
|
8219
|
-
{
|
|
8220
|
-
"name": "umb-context-provider",
|
|
8221
|
-
"path": "./../../storybook/utils/context-provider/context-provider.element.ts",
|
|
8222
|
-
"attributes": [
|
|
8223
|
-
{
|
|
8224
|
-
"name": "value",
|
|
8225
|
-
"description": "The value to provide to the context.",
|
|
8226
|
-
"type": "unknown"
|
|
8227
|
-
},
|
|
8228
|
-
{
|
|
8229
|
-
"name": "key",
|
|
8230
|
-
"description": "The key to provide to the context.",
|
|
8231
|
-
"type": "string"
|
|
8232
|
-
}
|
|
8233
|
-
],
|
|
8234
|
-
"properties": [
|
|
8235
|
-
{
|
|
8236
|
-
"name": "create",
|
|
8237
|
-
"description": "The value to provide to the context.",
|
|
8238
|
-
"type": "((host: any) => unknown) | undefined"
|
|
8239
|
-
},
|
|
8240
|
-
{
|
|
8241
|
-
"name": "value",
|
|
8242
|
-
"attribute": "value",
|
|
8243
|
-
"description": "The value to provide to the context.",
|
|
8244
|
-
"type": "unknown"
|
|
8245
|
-
},
|
|
8246
|
-
{
|
|
8247
|
-
"name": "key",
|
|
8248
|
-
"attribute": "key",
|
|
8249
|
-
"description": "The key to provide to the context.",
|
|
8250
|
-
"type": "string"
|
|
8251
|
-
}
|
|
8252
|
-
]
|
|
8253
8914
|
}
|
|
8254
8915
|
]
|
|
8255
8916
|
}
|