@umbraco-cms/backoffice 1.0.0-next.99fe12c7 → 1.0.0-next.b7d4efa4
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/context-api.d.ts +76 -6
- package/controller.d.ts +5 -5
- package/custom-elements.json +915 -135
- package/element.d.ts +3 -3
- package/entity-action.d.ts +30 -13
- package/extensions-api.d.ts +2 -2
- package/extensions-registry.d.ts +20 -13
- package/modal.d.ts +594 -12
- package/models.d.ts +6 -1
- package/observable-api.d.ts +34 -5
- package/package.json +1 -1
- package/repository.d.ts +61 -27
- package/resources.d.ts +3 -3
- package/router.d.ts +130 -0
- package/store.d.ts +80 -34
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +372 -89
- package/workspace.d.ts +16 -9
package/custom-elements.json
CHANGED
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
"name": "umb-document-type-workspace-
|
|
111
|
-
"path": "./src/backoffice/documents/document-types/workspace/document-type-workspace-
|
|
110
|
+
"name": "umb-document-type-workspace-editor",
|
|
111
|
+
"path": "./src/backoffice/documents/document-types/workspace/document-type-workspace-editor.element.ts",
|
|
112
112
|
"properties": [
|
|
113
113
|
{
|
|
114
114
|
"name": "styles",
|
|
@@ -129,8 +129,164 @@
|
|
|
129
129
|
]
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
|
-
"name": "umb-workspace-view-
|
|
133
|
-
"path": "./src/backoffice/documents/document-types/workspace/views/design/workspace-view-
|
|
132
|
+
"name": "umb-document-type-workspace-view-design",
|
|
133
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-design.element.ts",
|
|
134
|
+
"properties": [
|
|
135
|
+
{
|
|
136
|
+
"name": "styles",
|
|
137
|
+
"type": "CSSResult[]",
|
|
138
|
+
"default": "[\"UUITextStyles\",null]"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "umb-document-type-workspace-view-edit-properties",
|
|
144
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit-properties.element.ts",
|
|
145
|
+
"attributes": [
|
|
146
|
+
{
|
|
147
|
+
"name": "container-name",
|
|
148
|
+
"type": "string | undefined"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "container-type",
|
|
152
|
+
"type": "PropertyContainerTypes | undefined"
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"properties": [
|
|
156
|
+
{
|
|
157
|
+
"name": "containerKey",
|
|
158
|
+
"type": "string | undefined"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "containerName",
|
|
162
|
+
"attribute": "container-name",
|
|
163
|
+
"type": "string | undefined"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "containerType",
|
|
167
|
+
"attribute": "container-type",
|
|
168
|
+
"type": "PropertyContainerTypes | undefined"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "styles",
|
|
172
|
+
"type": "CSSResult[]",
|
|
173
|
+
"default": "[\"UUITextStyles\",null]"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "document-type-workspace-view-edit-property",
|
|
179
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.ts",
|
|
180
|
+
"attributes": [
|
|
181
|
+
{
|
|
182
|
+
"name": "property",
|
|
183
|
+
"description": "Property, the data object for the property.",
|
|
184
|
+
"type": "string",
|
|
185
|
+
"default": "\"''\""
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"properties": [
|
|
189
|
+
{
|
|
190
|
+
"name": "property",
|
|
191
|
+
"attribute": "property",
|
|
192
|
+
"description": "Property, the data object for the property.",
|
|
193
|
+
"type": "string",
|
|
194
|
+
"default": "\"''\""
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "styles",
|
|
198
|
+
"type": "CSSResult[]",
|
|
199
|
+
"default": "[\"UUITextStyles\",null]"
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"events": [
|
|
203
|
+
{
|
|
204
|
+
"name": "partial-property-update"
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
"slots": [
|
|
208
|
+
{
|
|
209
|
+
"name": "editor",
|
|
210
|
+
"description": "Slot for rendering the Property Editor"
|
|
211
|
+
}
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "umb-document-type-workspace-view-edit-tab",
|
|
216
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit-tab.element.ts",
|
|
217
|
+
"attributes": [
|
|
218
|
+
{
|
|
219
|
+
"name": "ownerTabKey",
|
|
220
|
+
"type": "string | undefined"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "tabName",
|
|
224
|
+
"type": "string | undefined"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "noTabName",
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"properties": [
|
|
232
|
+
{
|
|
233
|
+
"name": "styles",
|
|
234
|
+
"type": "CSSResult[]",
|
|
235
|
+
"default": "[\"UUITextStyles\",null]"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "ownerTabKey",
|
|
239
|
+
"attribute": "ownerTabKey",
|
|
240
|
+
"type": "string | undefined"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "tabName",
|
|
244
|
+
"attribute": "tabName",
|
|
245
|
+
"type": "string | undefined"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "noTabName",
|
|
249
|
+
"attribute": "noTabName",
|
|
250
|
+
"type": "boolean"
|
|
251
|
+
}
|
|
252
|
+
]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "umb-document-type-workspace-view-edit",
|
|
256
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.ts",
|
|
257
|
+
"properties": [
|
|
258
|
+
{
|
|
259
|
+
"name": "styles",
|
|
260
|
+
"type": "CSSResult[]",
|
|
261
|
+
"default": "[\"UUITextStyles\",null]"
|
|
262
|
+
}
|
|
263
|
+
]
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"name": "umb-document-type-workspace-view-details",
|
|
267
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/details/document-type-workspace-view-details.element.ts",
|
|
268
|
+
"properties": [
|
|
269
|
+
{
|
|
270
|
+
"name": "styles",
|
|
271
|
+
"type": "CSSResult[]",
|
|
272
|
+
"default": "[\"UUITextStyles\",null]"
|
|
273
|
+
}
|
|
274
|
+
]
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "umb-document-type-workspace-view-structure",
|
|
278
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.ts",
|
|
279
|
+
"properties": [
|
|
280
|
+
{
|
|
281
|
+
"name": "styles",
|
|
282
|
+
"type": "CSSResult[]",
|
|
283
|
+
"default": "[\"UUITextStyles\",null]"
|
|
284
|
+
}
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "umb-document-type-workspace-view-templates",
|
|
289
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts",
|
|
134
290
|
"properties": [
|
|
135
291
|
{
|
|
136
292
|
"name": "styles",
|
|
@@ -183,6 +339,10 @@
|
|
|
183
339
|
}
|
|
184
340
|
]
|
|
185
341
|
},
|
|
342
|
+
{
|
|
343
|
+
"name": "umb-document-menu-item",
|
|
344
|
+
"path": "./src/backoffice/documents/documents/menu-item/document-menu-item.element.ts"
|
|
345
|
+
},
|
|
186
346
|
{
|
|
187
347
|
"name": "umb-document-picker-modal",
|
|
188
348
|
"path": "./src/backoffice/documents/documents/modals/document-picker/document-picker-modal.element.ts",
|
|
@@ -195,12 +355,33 @@
|
|
|
195
355
|
]
|
|
196
356
|
},
|
|
197
357
|
{
|
|
198
|
-
"name": "umb-document-
|
|
199
|
-
"path": "./src/backoffice/documents/documents/
|
|
358
|
+
"name": "umb-document-type-picker-modal",
|
|
359
|
+
"path": "./src/backoffice/documents/documents/modals/document-type-picker/document-type-picker-modal.element.ts",
|
|
360
|
+
"properties": [
|
|
361
|
+
{
|
|
362
|
+
"name": "styles",
|
|
363
|
+
"type": "CSSResult[]",
|
|
364
|
+
"default": "[\"UUITextStyles\",null]"
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "umb-document-tree-item",
|
|
370
|
+
"path": "./src/backoffice/documents/documents/tree/tree-item/document-tree-item.element.ts",
|
|
371
|
+
"properties": [
|
|
372
|
+
{
|
|
373
|
+
"name": "styles",
|
|
374
|
+
"type": "CSSResult[]",
|
|
375
|
+
"default": "[\"UUITextStyles\",null]"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"name": "item"
|
|
379
|
+
}
|
|
380
|
+
]
|
|
200
381
|
},
|
|
201
382
|
{
|
|
202
|
-
"name": "umb-document-workspace-
|
|
203
|
-
"path": "./src/backoffice/documents/documents/workspace/document-workspace-
|
|
383
|
+
"name": "umb-document-workspace-editor",
|
|
384
|
+
"path": "./src/backoffice/documents/documents/workspace/document-workspace-editor.element.ts",
|
|
204
385
|
"properties": [
|
|
205
386
|
{
|
|
206
387
|
"name": "styles",
|
|
@@ -241,7 +422,7 @@
|
|
|
241
422
|
},
|
|
242
423
|
{
|
|
243
424
|
"name": "container-type",
|
|
244
|
-
"type": "
|
|
425
|
+
"type": "PropertyContainerTypes | undefined"
|
|
245
426
|
}
|
|
246
427
|
],
|
|
247
428
|
"properties": [
|
|
@@ -258,7 +439,7 @@
|
|
|
258
439
|
{
|
|
259
440
|
"name": "containerType",
|
|
260
441
|
"attribute": "container-type",
|
|
261
|
-
"type": "
|
|
442
|
+
"type": "PropertyContainerTypes | undefined"
|
|
262
443
|
}
|
|
263
444
|
]
|
|
264
445
|
},
|
|
@@ -885,6 +1066,17 @@
|
|
|
885
1066
|
}
|
|
886
1067
|
]
|
|
887
1068
|
},
|
|
1069
|
+
{
|
|
1070
|
+
"name": "umb-create-data-type-modal",
|
|
1071
|
+
"path": "./src/backoffice/settings/data-types/entity-actions/create/modal/create-data-type-modal.element.ts",
|
|
1072
|
+
"properties": [
|
|
1073
|
+
{
|
|
1074
|
+
"name": "styles",
|
|
1075
|
+
"type": "CSSResult[]",
|
|
1076
|
+
"default": "[\"UUITextStyles\"]"
|
|
1077
|
+
}
|
|
1078
|
+
]
|
|
1079
|
+
},
|
|
888
1080
|
{
|
|
889
1081
|
"name": "umb-data-type-workspace-edit-element",
|
|
890
1082
|
"path": "./src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
@@ -1019,7 +1211,7 @@
|
|
|
1019
1211
|
]
|
|
1020
1212
|
},
|
|
1021
1213
|
{
|
|
1022
|
-
"name": "umb-language-workspace-
|
|
1214
|
+
"name": "umb-language-workspace-edit",
|
|
1023
1215
|
"path": "./src/backoffice/settings/languages/workspace/language/language-workspace-edit.element.ts",
|
|
1024
1216
|
"properties": [
|
|
1025
1217
|
{
|
|
@@ -1337,10 +1529,6 @@
|
|
|
1337
1529
|
}
|
|
1338
1530
|
]
|
|
1339
1531
|
},
|
|
1340
|
-
{
|
|
1341
|
-
"name": "umb-relation-types-menu-item",
|
|
1342
|
-
"path": "./src/backoffice/settings/relation-types/menu-item/relation-types-menu-item.element.ts"
|
|
1343
|
-
},
|
|
1344
1532
|
{
|
|
1345
1533
|
"name": "umb-relation-type-workspace-edit-element",
|
|
1346
1534
|
"path": "./src/backoffice/settings/relation-types/workspace/relation-type-workspace-edit.element.ts",
|
|
@@ -1791,7 +1979,7 @@
|
|
|
1791
1979
|
"path": "./src/backoffice/shared/components/debug/debug.element.ts",
|
|
1792
1980
|
"attributes": [
|
|
1793
1981
|
{
|
|
1794
|
-
"name": "
|
|
1982
|
+
"name": "visible",
|
|
1795
1983
|
"type": "boolean",
|
|
1796
1984
|
"default": "false"
|
|
1797
1985
|
},
|
|
@@ -1799,11 +1987,6 @@
|
|
|
1799
1987
|
"name": "dialog",
|
|
1800
1988
|
"type": "boolean",
|
|
1801
1989
|
"default": "false"
|
|
1802
|
-
},
|
|
1803
|
-
{
|
|
1804
|
-
"name": "contexts",
|
|
1805
|
-
"type": "Map<any, any>",
|
|
1806
|
-
"default": "\"new Map()\""
|
|
1807
1990
|
}
|
|
1808
1991
|
],
|
|
1809
1992
|
"properties": [
|
|
@@ -1813,8 +1996,8 @@
|
|
|
1813
1996
|
"default": "[\"UUITextStyles\",null]"
|
|
1814
1997
|
},
|
|
1815
1998
|
{
|
|
1816
|
-
"name": "
|
|
1817
|
-
"attribute": "
|
|
1999
|
+
"name": "visible",
|
|
2000
|
+
"attribute": "visible",
|
|
1818
2001
|
"type": "boolean",
|
|
1819
2002
|
"default": "false"
|
|
1820
2003
|
},
|
|
@@ -1825,10 +2008,9 @@
|
|
|
1825
2008
|
"default": "false"
|
|
1826
2009
|
},
|
|
1827
2010
|
{
|
|
1828
|
-
"name": "
|
|
1829
|
-
"
|
|
1830
|
-
"
|
|
1831
|
-
"default": "\"new Map()\""
|
|
2011
|
+
"name": "contextData",
|
|
2012
|
+
"type": "array",
|
|
2013
|
+
"default": "\"Array<DebugContextData>()\""
|
|
1832
2014
|
}
|
|
1833
2015
|
]
|
|
1834
2016
|
},
|
|
@@ -2125,7 +2307,7 @@
|
|
|
2125
2307
|
},
|
|
2126
2308
|
{
|
|
2127
2309
|
"name": "renderMethod",
|
|
2128
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2310
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2129
2311
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2130
2312
|
}
|
|
2131
2313
|
],
|
|
@@ -2146,6 +2328,10 @@
|
|
|
2146
2328
|
"type": "(manifest: any) => boolean",
|
|
2147
2329
|
"default": "\"() => true\""
|
|
2148
2330
|
},
|
|
2331
|
+
{
|
|
2332
|
+
"name": "props",
|
|
2333
|
+
"type": "Record<string, any> | undefined"
|
|
2334
|
+
},
|
|
2149
2335
|
{
|
|
2150
2336
|
"name": "defaultElement",
|
|
2151
2337
|
"attribute": "default-element",
|
|
@@ -2155,7 +2341,7 @@
|
|
|
2155
2341
|
{
|
|
2156
2342
|
"name": "renderMethod",
|
|
2157
2343
|
"attribute": "renderMethod",
|
|
2158
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2344
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2159
2345
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2160
2346
|
}
|
|
2161
2347
|
],
|
|
@@ -2613,6 +2799,73 @@
|
|
|
2613
2799
|
}
|
|
2614
2800
|
]
|
|
2615
2801
|
},
|
|
2802
|
+
{
|
|
2803
|
+
"name": "umb-input-document-type-picker",
|
|
2804
|
+
"path": "./src/backoffice/shared/components/input-document-type-picker/input-document-type-picker.element.ts",
|
|
2805
|
+
"attributes": [
|
|
2806
|
+
{
|
|
2807
|
+
"name": "value",
|
|
2808
|
+
"type": "string"
|
|
2809
|
+
}
|
|
2810
|
+
],
|
|
2811
|
+
"properties": [
|
|
2812
|
+
{
|
|
2813
|
+
"name": "styles",
|
|
2814
|
+
"type": "CSSResult[]",
|
|
2815
|
+
"default": "[\"UUITextStyles\",null]"
|
|
2816
|
+
},
|
|
2817
|
+
{
|
|
2818
|
+
"name": "selectedKeys",
|
|
2819
|
+
"type": "string[]"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
"name": "formAssociated",
|
|
2823
|
+
"type": "boolean"
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
"name": "value",
|
|
2827
|
+
"attribute": "value",
|
|
2828
|
+
"type": "string"
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
"name": "name",
|
|
2832
|
+
"type": "string"
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"name": "validationMessage",
|
|
2836
|
+
"type": "string"
|
|
2837
|
+
},
|
|
2838
|
+
{
|
|
2839
|
+
"name": "validity",
|
|
2840
|
+
"type": "ValidityState"
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"name": "pristine",
|
|
2844
|
+
"type": "boolean"
|
|
2845
|
+
},
|
|
2846
|
+
{
|
|
2847
|
+
"name": "required",
|
|
2848
|
+
"type": "boolean"
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"name": "requiredMessage",
|
|
2852
|
+
"type": "string"
|
|
2853
|
+
},
|
|
2854
|
+
{
|
|
2855
|
+
"name": "error",
|
|
2856
|
+
"type": "boolean"
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"name": "errorMessage",
|
|
2860
|
+
"type": "string"
|
|
2861
|
+
}
|
|
2862
|
+
],
|
|
2863
|
+
"events": [
|
|
2864
|
+
{
|
|
2865
|
+
"name": "change"
|
|
2866
|
+
}
|
|
2867
|
+
]
|
|
2868
|
+
},
|
|
2616
2869
|
{
|
|
2617
2870
|
"name": "umb-input-eye-dropper",
|
|
2618
2871
|
"path": "./src/backoffice/shared/components/input-eye-dropper/input-eye-dropper.element.ts",
|
|
@@ -2935,6 +3188,14 @@
|
|
|
2935
3188
|
"name": "umb-input-multi-url-picker",
|
|
2936
3189
|
"path": "./src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.element.ts",
|
|
2937
3190
|
"attributes": [
|
|
3191
|
+
{
|
|
3192
|
+
"name": "alias",
|
|
3193
|
+
"type": "string | undefined"
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"name": "variantId",
|
|
3197
|
+
"type": "string | UmbVariantId | undefined"
|
|
3198
|
+
},
|
|
2938
3199
|
{
|
|
2939
3200
|
"name": "min",
|
|
2940
3201
|
"description": "This is a minimum amount of selected items in this input.",
|
|
@@ -2979,6 +3240,16 @@
|
|
|
2979
3240
|
"type": "CSSResult[]",
|
|
2980
3241
|
"default": "[\"UUITextStyles\",null]"
|
|
2981
3242
|
},
|
|
3243
|
+
{
|
|
3244
|
+
"name": "alias",
|
|
3245
|
+
"attribute": "alias",
|
|
3246
|
+
"type": "string | undefined"
|
|
3247
|
+
},
|
|
3248
|
+
{
|
|
3249
|
+
"name": "variantId",
|
|
3250
|
+
"attribute": "variantId",
|
|
3251
|
+
"type": "string | UmbVariantId | undefined"
|
|
3252
|
+
},
|
|
2982
3253
|
{
|
|
2983
3254
|
"name": "min",
|
|
2984
3255
|
"attribute": "min",
|
|
@@ -3452,18 +3723,149 @@
|
|
|
3452
3723
|
]
|
|
3453
3724
|
},
|
|
3454
3725
|
{
|
|
3455
|
-
"name": "umb-input-
|
|
3456
|
-
"path": "./src/backoffice/shared/components/input-
|
|
3726
|
+
"name": "umb-input-template-picker",
|
|
3727
|
+
"path": "./src/backoffice/shared/components/input-template-picker/input-template-picker.element.ts",
|
|
3457
3728
|
"attributes": [
|
|
3458
3729
|
{
|
|
3459
|
-
"name": "
|
|
3460
|
-
"
|
|
3730
|
+
"name": "min",
|
|
3731
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
3732
|
+
"type": "number",
|
|
3733
|
+
"default": "\"undefined\""
|
|
3461
3734
|
},
|
|
3462
3735
|
{
|
|
3463
|
-
"name": "
|
|
3464
|
-
"
|
|
3465
|
-
"
|
|
3466
|
-
|
|
3736
|
+
"name": "max",
|
|
3737
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
3738
|
+
"type": "number",
|
|
3739
|
+
"default": "\"undefined\""
|
|
3740
|
+
},
|
|
3741
|
+
{
|
|
3742
|
+
"name": "min-message",
|
|
3743
|
+
"description": "Min validation message.",
|
|
3744
|
+
"type": "boolean",
|
|
3745
|
+
"default": "\"\""
|
|
3746
|
+
},
|
|
3747
|
+
{
|
|
3748
|
+
"name": "maxMessage",
|
|
3749
|
+
"description": "Max validation message.",
|
|
3750
|
+
"type": "boolean",
|
|
3751
|
+
"default": "\"\""
|
|
3752
|
+
},
|
|
3753
|
+
{
|
|
3754
|
+
"name": "allowedKeys",
|
|
3755
|
+
"type": "string[]"
|
|
3756
|
+
},
|
|
3757
|
+
{
|
|
3758
|
+
"name": "defaultKey",
|
|
3759
|
+
"type": "string"
|
|
3760
|
+
}
|
|
3761
|
+
],
|
|
3762
|
+
"properties": [
|
|
3763
|
+
{
|
|
3764
|
+
"name": "min",
|
|
3765
|
+
"attribute": "min",
|
|
3766
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
3767
|
+
"type": "number",
|
|
3768
|
+
"default": "\"undefined\""
|
|
3769
|
+
},
|
|
3770
|
+
{
|
|
3771
|
+
"name": "max",
|
|
3772
|
+
"attribute": "max",
|
|
3773
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
3774
|
+
"type": "number",
|
|
3775
|
+
"default": "\"undefined\""
|
|
3776
|
+
},
|
|
3777
|
+
{
|
|
3778
|
+
"name": "minMessage",
|
|
3779
|
+
"attribute": "min-message",
|
|
3780
|
+
"description": "Min validation message.",
|
|
3781
|
+
"type": "boolean",
|
|
3782
|
+
"default": "\"\""
|
|
3783
|
+
},
|
|
3784
|
+
{
|
|
3785
|
+
"name": "maxMessage",
|
|
3786
|
+
"attribute": "maxMessage",
|
|
3787
|
+
"description": "Max validation message.",
|
|
3788
|
+
"type": "boolean",
|
|
3789
|
+
"default": "\"\""
|
|
3790
|
+
},
|
|
3791
|
+
{
|
|
3792
|
+
"name": "allowedKeys",
|
|
3793
|
+
"attribute": "allowedKeys",
|
|
3794
|
+
"type": "string[]"
|
|
3795
|
+
},
|
|
3796
|
+
{
|
|
3797
|
+
"name": "defaultKey",
|
|
3798
|
+
"attribute": "defaultKey",
|
|
3799
|
+
"type": "string"
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
"name": "styles",
|
|
3803
|
+
"type": "CSSResult[]",
|
|
3804
|
+
"default": "[\"UUITextStyles\",null]"
|
|
3805
|
+
},
|
|
3806
|
+
{
|
|
3807
|
+
"name": "formAssociated",
|
|
3808
|
+
"type": "boolean"
|
|
3809
|
+
},
|
|
3810
|
+
{
|
|
3811
|
+
"name": "value",
|
|
3812
|
+
"type": "FormDataEntryValue | FormData"
|
|
3813
|
+
},
|
|
3814
|
+
{
|
|
3815
|
+
"name": "name",
|
|
3816
|
+
"type": "string"
|
|
3817
|
+
},
|
|
3818
|
+
{
|
|
3819
|
+
"name": "validationMessage",
|
|
3820
|
+
"type": "string"
|
|
3821
|
+
},
|
|
3822
|
+
{
|
|
3823
|
+
"name": "validity",
|
|
3824
|
+
"type": "ValidityState"
|
|
3825
|
+
},
|
|
3826
|
+
{
|
|
3827
|
+
"name": "pristine",
|
|
3828
|
+
"type": "boolean"
|
|
3829
|
+
},
|
|
3830
|
+
{
|
|
3831
|
+
"name": "required",
|
|
3832
|
+
"type": "boolean"
|
|
3833
|
+
},
|
|
3834
|
+
{
|
|
3835
|
+
"name": "requiredMessage",
|
|
3836
|
+
"type": "string"
|
|
3837
|
+
},
|
|
3838
|
+
{
|
|
3839
|
+
"name": "error",
|
|
3840
|
+
"type": "boolean"
|
|
3841
|
+
},
|
|
3842
|
+
{
|
|
3843
|
+
"name": "errorMessage",
|
|
3844
|
+
"type": "string"
|
|
3845
|
+
}
|
|
3846
|
+
],
|
|
3847
|
+
"events": [
|
|
3848
|
+
{
|
|
3849
|
+
"name": "change-default"
|
|
3850
|
+
},
|
|
3851
|
+
{
|
|
3852
|
+
"name": "change-allowed"
|
|
3853
|
+
}
|
|
3854
|
+
]
|
|
3855
|
+
},
|
|
3856
|
+
{
|
|
3857
|
+
"name": "umb-input-toggle",
|
|
3858
|
+
"path": "./src/backoffice/shared/components/input-toggle/input-toggle.element.ts",
|
|
3859
|
+
"attributes": [
|
|
3860
|
+
{
|
|
3861
|
+
"name": "checked",
|
|
3862
|
+
"type": "boolean"
|
|
3863
|
+
},
|
|
3864
|
+
{
|
|
3865
|
+
"name": "showLabels",
|
|
3866
|
+
"type": "boolean",
|
|
3867
|
+
"default": "false"
|
|
3868
|
+
},
|
|
3467
3869
|
{
|
|
3468
3870
|
"name": "labelOn",
|
|
3469
3871
|
"type": "string | undefined"
|
|
@@ -3547,6 +3949,101 @@
|
|
|
3547
3949
|
}
|
|
3548
3950
|
]
|
|
3549
3951
|
},
|
|
3952
|
+
{
|
|
3953
|
+
"name": "umb-input-upload-field",
|
|
3954
|
+
"path": "./src/backoffice/shared/components/input-upload-field/input-upload-field.element.ts",
|
|
3955
|
+
"attributes": [
|
|
3956
|
+
{
|
|
3957
|
+
"name": "keys",
|
|
3958
|
+
"type": "Array<String>",
|
|
3959
|
+
"default": "\"[]\""
|
|
3960
|
+
},
|
|
3961
|
+
{
|
|
3962
|
+
"name": "fileExtensions",
|
|
3963
|
+
"type": "Array<String>",
|
|
3964
|
+
"default": "\"undefined\""
|
|
3965
|
+
},
|
|
3966
|
+
{
|
|
3967
|
+
"name": "multiple",
|
|
3968
|
+
"type": "Boolean",
|
|
3969
|
+
"default": "\"false\""
|
|
3970
|
+
}
|
|
3971
|
+
],
|
|
3972
|
+
"properties": [
|
|
3973
|
+
{
|
|
3974
|
+
"name": "styles",
|
|
3975
|
+
"type": "CSSResult[]",
|
|
3976
|
+
"default": "[\"UUITextStyles\",null]"
|
|
3977
|
+
},
|
|
3978
|
+
{
|
|
3979
|
+
"name": "keys",
|
|
3980
|
+
"attribute": "keys",
|
|
3981
|
+
"type": "Array<String>",
|
|
3982
|
+
"default": "\"[]\""
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
"name": "fileExtensions",
|
|
3986
|
+
"attribute": "fileExtensions",
|
|
3987
|
+
"type": "Array<String>",
|
|
3988
|
+
"default": "\"undefined\""
|
|
3989
|
+
},
|
|
3990
|
+
{
|
|
3991
|
+
"name": "multiple",
|
|
3992
|
+
"attribute": "multiple",
|
|
3993
|
+
"type": "Boolean",
|
|
3994
|
+
"default": "\"false\""
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"name": "extensions",
|
|
3998
|
+
"type": "string[] | undefined"
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
"name": "formAssociated",
|
|
4002
|
+
"type": "boolean"
|
|
4003
|
+
},
|
|
4004
|
+
{
|
|
4005
|
+
"name": "value",
|
|
4006
|
+
"type": "FormDataEntryValue | FormData"
|
|
4007
|
+
},
|
|
4008
|
+
{
|
|
4009
|
+
"name": "name",
|
|
4010
|
+
"type": "string"
|
|
4011
|
+
},
|
|
4012
|
+
{
|
|
4013
|
+
"name": "validationMessage",
|
|
4014
|
+
"type": "string"
|
|
4015
|
+
},
|
|
4016
|
+
{
|
|
4017
|
+
"name": "validity",
|
|
4018
|
+
"type": "ValidityState"
|
|
4019
|
+
},
|
|
4020
|
+
{
|
|
4021
|
+
"name": "pristine",
|
|
4022
|
+
"type": "boolean"
|
|
4023
|
+
},
|
|
4024
|
+
{
|
|
4025
|
+
"name": "required",
|
|
4026
|
+
"type": "boolean"
|
|
4027
|
+
},
|
|
4028
|
+
{
|
|
4029
|
+
"name": "requiredMessage",
|
|
4030
|
+
"type": "string"
|
|
4031
|
+
},
|
|
4032
|
+
{
|
|
4033
|
+
"name": "error",
|
|
4034
|
+
"type": "boolean"
|
|
4035
|
+
},
|
|
4036
|
+
{
|
|
4037
|
+
"name": "errorMessage",
|
|
4038
|
+
"type": "string"
|
|
4039
|
+
}
|
|
4040
|
+
],
|
|
4041
|
+
"events": [
|
|
4042
|
+
{
|
|
4043
|
+
"name": "change"
|
|
4044
|
+
}
|
|
4045
|
+
]
|
|
4046
|
+
},
|
|
3550
4047
|
{
|
|
3551
4048
|
"name": "umb-input-user-group",
|
|
3552
4049
|
"path": "./src/backoffice/shared/components/input-user-group/input-user-group.element.ts",
|
|
@@ -3668,14 +4165,69 @@
|
|
|
3668
4165
|
]
|
|
3669
4166
|
},
|
|
3670
4167
|
{
|
|
3671
|
-
"name": "umb-menu-item",
|
|
3672
|
-
"path": "./src/backoffice/shared/components/menu-item/menu-item.element.ts",
|
|
4168
|
+
"name": "umb-menu-item-base",
|
|
4169
|
+
"path": "./src/backoffice/shared/components/menu/menu-item-base/menu-item-base.element.ts",
|
|
4170
|
+
"attributes": [
|
|
4171
|
+
{
|
|
4172
|
+
"name": "entity-type",
|
|
4173
|
+
"type": "string | undefined"
|
|
4174
|
+
},
|
|
4175
|
+
{
|
|
4176
|
+
"name": "icon-name",
|
|
4177
|
+
"type": "string",
|
|
4178
|
+
"default": "\"\""
|
|
4179
|
+
},
|
|
4180
|
+
{
|
|
4181
|
+
"name": "label",
|
|
4182
|
+
"type": "string",
|
|
4183
|
+
"default": "\"\""
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
"name": "has-children",
|
|
4187
|
+
"type": "boolean",
|
|
4188
|
+
"default": "false"
|
|
4189
|
+
}
|
|
4190
|
+
],
|
|
3673
4191
|
"properties": [
|
|
3674
4192
|
{
|
|
3675
4193
|
"name": "styles",
|
|
3676
4194
|
"type": "CSSResult[]",
|
|
3677
4195
|
"default": "[\"UUITextStyles\",null]"
|
|
3678
4196
|
},
|
|
4197
|
+
{
|
|
4198
|
+
"name": "entityType",
|
|
4199
|
+
"attribute": "entity-type",
|
|
4200
|
+
"type": "string | undefined"
|
|
4201
|
+
},
|
|
4202
|
+
{
|
|
4203
|
+
"name": "iconName",
|
|
4204
|
+
"attribute": "icon-name",
|
|
4205
|
+
"type": "string",
|
|
4206
|
+
"default": "\"\""
|
|
4207
|
+
},
|
|
4208
|
+
{
|
|
4209
|
+
"name": "label",
|
|
4210
|
+
"attribute": "label",
|
|
4211
|
+
"type": "string",
|
|
4212
|
+
"default": "\"\""
|
|
4213
|
+
},
|
|
4214
|
+
{
|
|
4215
|
+
"name": "hasChildren",
|
|
4216
|
+
"attribute": "has-children",
|
|
4217
|
+
"type": "boolean",
|
|
4218
|
+
"default": "false"
|
|
4219
|
+
}
|
|
4220
|
+
]
|
|
4221
|
+
},
|
|
4222
|
+
{
|
|
4223
|
+
"name": "umb-menu-item",
|
|
4224
|
+
"path": "./src/backoffice/shared/components/menu/menu-item/menu-item.element.ts",
|
|
4225
|
+
"properties": [
|
|
4226
|
+
{
|
|
4227
|
+
"name": "styles",
|
|
4228
|
+
"type": "CSSResult[]",
|
|
4229
|
+
"default": "[\"UUITextStyles\"]"
|
|
4230
|
+
},
|
|
3679
4231
|
{
|
|
3680
4232
|
"name": "manifest"
|
|
3681
4233
|
}
|
|
@@ -3999,8 +4551,104 @@
|
|
|
3999
4551
|
"description": "fires when a row is deselected"
|
|
4000
4552
|
},
|
|
4001
4553
|
{
|
|
4002
|
-
"name": "sort",
|
|
4003
|
-
"description": "fires when a column order is changed"
|
|
4554
|
+
"name": "sort",
|
|
4555
|
+
"description": "fires when a column order is changed"
|
|
4556
|
+
}
|
|
4557
|
+
]
|
|
4558
|
+
},
|
|
4559
|
+
{
|
|
4560
|
+
"name": "umb-template-card",
|
|
4561
|
+
"path": "./src/backoffice/shared/components/template-card/template-card.element.ts",
|
|
4562
|
+
"attributes": [
|
|
4563
|
+
{
|
|
4564
|
+
"name": "default",
|
|
4565
|
+
"type": "boolean",
|
|
4566
|
+
"default": "false"
|
|
4567
|
+
},
|
|
4568
|
+
{
|
|
4569
|
+
"name": "key",
|
|
4570
|
+
"type": "string"
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"name": "name",
|
|
4574
|
+
"type": "string",
|
|
4575
|
+
"default": "\"\""
|
|
4576
|
+
}
|
|
4577
|
+
],
|
|
4578
|
+
"properties": [
|
|
4579
|
+
{
|
|
4580
|
+
"name": "styles",
|
|
4581
|
+
"type": "CSSResult[]",
|
|
4582
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4583
|
+
},
|
|
4584
|
+
{
|
|
4585
|
+
"name": "default",
|
|
4586
|
+
"attribute": "default",
|
|
4587
|
+
"type": "boolean",
|
|
4588
|
+
"default": "false"
|
|
4589
|
+
},
|
|
4590
|
+
{
|
|
4591
|
+
"name": "key",
|
|
4592
|
+
"attribute": "key",
|
|
4593
|
+
"type": "string"
|
|
4594
|
+
},
|
|
4595
|
+
{
|
|
4596
|
+
"name": "formAssociated",
|
|
4597
|
+
"type": "boolean"
|
|
4598
|
+
},
|
|
4599
|
+
{
|
|
4600
|
+
"name": "value",
|
|
4601
|
+
"type": "FormDataEntryValue | FormData"
|
|
4602
|
+
},
|
|
4603
|
+
{
|
|
4604
|
+
"name": "name",
|
|
4605
|
+
"attribute": "name",
|
|
4606
|
+
"type": "string",
|
|
4607
|
+
"default": "\"\""
|
|
4608
|
+
},
|
|
4609
|
+
{
|
|
4610
|
+
"name": "validationMessage",
|
|
4611
|
+
"type": "string"
|
|
4612
|
+
},
|
|
4613
|
+
{
|
|
4614
|
+
"name": "validity",
|
|
4615
|
+
"type": "ValidityState"
|
|
4616
|
+
},
|
|
4617
|
+
{
|
|
4618
|
+
"name": "pristine",
|
|
4619
|
+
"type": "boolean"
|
|
4620
|
+
},
|
|
4621
|
+
{
|
|
4622
|
+
"name": "required",
|
|
4623
|
+
"type": "boolean"
|
|
4624
|
+
},
|
|
4625
|
+
{
|
|
4626
|
+
"name": "requiredMessage",
|
|
4627
|
+
"type": "string"
|
|
4628
|
+
},
|
|
4629
|
+
{
|
|
4630
|
+
"name": "error",
|
|
4631
|
+
"type": "boolean"
|
|
4632
|
+
},
|
|
4633
|
+
{
|
|
4634
|
+
"name": "errorMessage",
|
|
4635
|
+
"type": "string"
|
|
4636
|
+
}
|
|
4637
|
+
],
|
|
4638
|
+
"events": [
|
|
4639
|
+
{
|
|
4640
|
+
"name": "open"
|
|
4641
|
+
},
|
|
4642
|
+
{
|
|
4643
|
+
"name": "selected"
|
|
4644
|
+
},
|
|
4645
|
+
{
|
|
4646
|
+
"name": "change-default"
|
|
4647
|
+
}
|
|
4648
|
+
],
|
|
4649
|
+
"slots": [
|
|
4650
|
+
{
|
|
4651
|
+
"name": "actions"
|
|
4004
4652
|
}
|
|
4005
4653
|
]
|
|
4006
4654
|
},
|
|
@@ -4040,77 +4688,41 @@
|
|
|
4040
4688
|
]
|
|
4041
4689
|
},
|
|
4042
4690
|
{
|
|
4043
|
-
"name": "umb-tree-item",
|
|
4044
|
-
"path": "./src/backoffice/shared/components/tree/tree-item.element.ts",
|
|
4045
|
-
"
|
|
4046
|
-
{
|
|
4047
|
-
"name": "key",
|
|
4048
|
-
"type": "string",
|
|
4049
|
-
"default": "\"\""
|
|
4050
|
-
},
|
|
4051
|
-
{
|
|
4052
|
-
"name": "parentKey",
|
|
4053
|
-
"type": "string | null"
|
|
4054
|
-
},
|
|
4055
|
-
{
|
|
4056
|
-
"name": "label",
|
|
4057
|
-
"type": "string",
|
|
4058
|
-
"default": "\"\""
|
|
4059
|
-
},
|
|
4060
|
-
{
|
|
4061
|
-
"name": "icon",
|
|
4062
|
-
"type": "string",
|
|
4063
|
-
"default": "\"\""
|
|
4064
|
-
},
|
|
4691
|
+
"name": "umb-entity-tree-item",
|
|
4692
|
+
"path": "./src/backoffice/shared/components/tree/entity-tree-item/entity-tree-item.element.ts",
|
|
4693
|
+
"properties": [
|
|
4065
4694
|
{
|
|
4066
|
-
"name": "
|
|
4067
|
-
"type": "
|
|
4695
|
+
"name": "styles",
|
|
4696
|
+
"type": "CSSResult[]",
|
|
4697
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4068
4698
|
},
|
|
4069
4699
|
{
|
|
4070
|
-
"name": "
|
|
4071
|
-
"type": "boolean",
|
|
4072
|
-
"default": "false"
|
|
4700
|
+
"name": "item"
|
|
4073
4701
|
}
|
|
4074
|
-
]
|
|
4702
|
+
]
|
|
4703
|
+
},
|
|
4704
|
+
{
|
|
4705
|
+
"name": "umb-tree-item-base",
|
|
4706
|
+
"path": "./src/backoffice/shared/components/tree/tree-item-base/tree-item-base.element.ts",
|
|
4075
4707
|
"properties": [
|
|
4076
4708
|
{
|
|
4077
4709
|
"name": "styles",
|
|
4078
4710
|
"type": "CSSResult[]",
|
|
4079
4711
|
"default": "[\"UUITextStyles\",null]"
|
|
4080
|
-
}
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
{
|
|
4088
|
-
"name": "parentKey",
|
|
4089
|
-
"attribute": "parentKey",
|
|
4090
|
-
"type": "string | null"
|
|
4091
|
-
},
|
|
4092
|
-
{
|
|
4093
|
-
"name": "label",
|
|
4094
|
-
"attribute": "label",
|
|
4095
|
-
"type": "string",
|
|
4096
|
-
"default": "\"\""
|
|
4097
|
-
},
|
|
4098
|
-
{
|
|
4099
|
-
"name": "icon",
|
|
4100
|
-
"attribute": "icon",
|
|
4101
|
-
"type": "string",
|
|
4102
|
-
"default": "\"\""
|
|
4103
|
-
},
|
|
4712
|
+
}
|
|
4713
|
+
]
|
|
4714
|
+
},
|
|
4715
|
+
{
|
|
4716
|
+
"name": "umb-tree-item",
|
|
4717
|
+
"path": "./src/backoffice/shared/components/tree/tree-item/tree-item.element.ts",
|
|
4718
|
+
"properties": [
|
|
4104
4719
|
{
|
|
4105
|
-
"name": "
|
|
4106
|
-
"
|
|
4107
|
-
"
|
|
4720
|
+
"name": "styles",
|
|
4721
|
+
"type": "CSSResult[]",
|
|
4722
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4108
4723
|
},
|
|
4109
4724
|
{
|
|
4110
|
-
"name": "
|
|
4111
|
-
"attribute": "has-children",
|
|
4112
|
-
"type": "boolean",
|
|
4113
|
-
"default": "false"
|
|
4725
|
+
"name": "item"
|
|
4114
4726
|
}
|
|
4115
4727
|
]
|
|
4116
4728
|
},
|
|
@@ -4456,6 +5068,10 @@
|
|
|
4456
5068
|
"name": "icon",
|
|
4457
5069
|
"description": "Slot for icon"
|
|
4458
5070
|
},
|
|
5071
|
+
{
|
|
5072
|
+
"name": "header",
|
|
5073
|
+
"description": "Slot for workspace header"
|
|
5074
|
+
},
|
|
4459
5075
|
{
|
|
4460
5076
|
"name": "name",
|
|
4461
5077
|
"description": "Slot for name"
|
|
@@ -4504,11 +5120,6 @@
|
|
|
4504
5120
|
}
|
|
4505
5121
|
],
|
|
4506
5122
|
"properties": [
|
|
4507
|
-
{
|
|
4508
|
-
"name": "styles",
|
|
4509
|
-
"type": "CSSResult[]",
|
|
4510
|
-
"default": "[\"UUITextStyles\",null]"
|
|
4511
|
-
},
|
|
4512
5123
|
{
|
|
4513
5124
|
"name": "alias",
|
|
4514
5125
|
"attribute": "alias",
|
|
@@ -4536,6 +5147,11 @@
|
|
|
4536
5147
|
"description": "Description: render a description underneath the label.",
|
|
4537
5148
|
"type": "string",
|
|
4538
5149
|
"default": "\"''\""
|
|
5150
|
+
},
|
|
5151
|
+
{
|
|
5152
|
+
"name": "styles",
|
|
5153
|
+
"type": "CSSResult[]",
|
|
5154
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4539
5155
|
}
|
|
4540
5156
|
],
|
|
4541
5157
|
"slots": [
|
|
@@ -4630,8 +5246,7 @@
|
|
|
4630
5246
|
"path": "./src/backoffice/shared/modals/confirm/confirm-modal.element.ts",
|
|
4631
5247
|
"attributes": [
|
|
4632
5248
|
{
|
|
4633
|
-
"name": "data"
|
|
4634
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5249
|
+
"name": "data"
|
|
4635
5250
|
}
|
|
4636
5251
|
],
|
|
4637
5252
|
"properties": [
|
|
@@ -4645,8 +5260,7 @@
|
|
|
4645
5260
|
},
|
|
4646
5261
|
{
|
|
4647
5262
|
"name": "data",
|
|
4648
|
-
"attribute": "data"
|
|
4649
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5263
|
+
"attribute": "data"
|
|
4650
5264
|
}
|
|
4651
5265
|
]
|
|
4652
5266
|
},
|
|
@@ -4655,8 +5269,7 @@
|
|
|
4655
5269
|
"path": "./src/backoffice/shared/modals/embedded-media/embedded-media-modal.element.ts",
|
|
4656
5270
|
"attributes": [
|
|
4657
5271
|
{
|
|
4658
|
-
"name": "data"
|
|
4659
|
-
"type": "UmbEmbeddedMediaModalData | undefined"
|
|
5272
|
+
"name": "data"
|
|
4660
5273
|
}
|
|
4661
5274
|
],
|
|
4662
5275
|
"properties": [
|
|
@@ -4670,8 +5283,24 @@
|
|
|
4670
5283
|
},
|
|
4671
5284
|
{
|
|
4672
5285
|
"name": "data",
|
|
4673
|
-
"attribute": "data"
|
|
4674
|
-
|
|
5286
|
+
"attribute": "data"
|
|
5287
|
+
}
|
|
5288
|
+
]
|
|
5289
|
+
},
|
|
5290
|
+
{
|
|
5291
|
+
"name": "umb-folder-modal",
|
|
5292
|
+
"path": "./src/backoffice/shared/modals/folder/folder-modal.element.ts",
|
|
5293
|
+
"properties": [
|
|
5294
|
+
{
|
|
5295
|
+
"name": "styles",
|
|
5296
|
+
"type": "CSSResult[]",
|
|
5297
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5298
|
+
},
|
|
5299
|
+
{
|
|
5300
|
+
"name": "modalHandler"
|
|
5301
|
+
},
|
|
5302
|
+
{
|
|
5303
|
+
"name": "data"
|
|
4675
5304
|
}
|
|
4676
5305
|
]
|
|
4677
5306
|
},
|
|
@@ -4752,6 +5381,28 @@
|
|
|
4752
5381
|
}
|
|
4753
5382
|
]
|
|
4754
5383
|
},
|
|
5384
|
+
{
|
|
5385
|
+
"name": "umb-template-picker-modal",
|
|
5386
|
+
"path": "./src/backoffice/shared/modals/template-picker/template-picker-modal.element.ts",
|
|
5387
|
+
"properties": [
|
|
5388
|
+
{
|
|
5389
|
+
"name": "styles",
|
|
5390
|
+
"type": "CSSResult[]",
|
|
5391
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5392
|
+
}
|
|
5393
|
+
]
|
|
5394
|
+
},
|
|
5395
|
+
{
|
|
5396
|
+
"name": "umb-template-modal",
|
|
5397
|
+
"path": "./src/backoffice/shared/modals/template/template-modal.element.ts",
|
|
5398
|
+
"properties": [
|
|
5399
|
+
{
|
|
5400
|
+
"name": "styles",
|
|
5401
|
+
"type": "CSSResult[]",
|
|
5402
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5403
|
+
}
|
|
5404
|
+
]
|
|
5405
|
+
},
|
|
4755
5406
|
{
|
|
4756
5407
|
"name": "umb-property-action-clear",
|
|
4757
5408
|
"path": "./src/backoffice/shared/property-actions/clear/property-action-clear.element.ts",
|
|
@@ -4876,8 +5527,7 @@
|
|
|
4876
5527
|
"path": "./src/backoffice/shared/property-editors/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
4877
5528
|
"attributes": [
|
|
4878
5529
|
{
|
|
4879
|
-
"name": "data"
|
|
4880
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5530
|
+
"name": "data"
|
|
4881
5531
|
}
|
|
4882
5532
|
],
|
|
4883
5533
|
"properties": [
|
|
@@ -4888,8 +5538,7 @@
|
|
|
4888
5538
|
},
|
|
4889
5539
|
{
|
|
4890
5540
|
"name": "data",
|
|
4891
|
-
"attribute": "data"
|
|
4892
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5541
|
+
"attribute": "data"
|
|
4893
5542
|
},
|
|
4894
5543
|
{
|
|
4895
5544
|
"name": "modalHandler"
|
|
@@ -5687,7 +6336,7 @@
|
|
|
5687
6336
|
"attributes": [
|
|
5688
6337
|
{
|
|
5689
6338
|
"name": "value",
|
|
5690
|
-
"type": "
|
|
6339
|
+
"type": "array",
|
|
5691
6340
|
"default": "[]"
|
|
5692
6341
|
}
|
|
5693
6342
|
],
|
|
@@ -5700,7 +6349,7 @@
|
|
|
5700
6349
|
{
|
|
5701
6350
|
"name": "value",
|
|
5702
6351
|
"attribute": "value",
|
|
5703
|
-
"type": "
|
|
6352
|
+
"type": "array",
|
|
5704
6353
|
"default": "[]"
|
|
5705
6354
|
},
|
|
5706
6355
|
{
|
|
@@ -6475,8 +7124,12 @@
|
|
|
6475
7124
|
},
|
|
6476
7125
|
{
|
|
6477
7126
|
"name": "config",
|
|
6478
|
-
"type": "
|
|
6479
|
-
|
|
7127
|
+
"type": "array"
|
|
7128
|
+
}
|
|
7129
|
+
],
|
|
7130
|
+
"events": [
|
|
7131
|
+
{
|
|
7132
|
+
"name": "property-value-change"
|
|
6480
7133
|
}
|
|
6481
7134
|
]
|
|
6482
7135
|
},
|
|
@@ -6538,6 +7191,42 @@
|
|
|
6538
7191
|
}
|
|
6539
7192
|
]
|
|
6540
7193
|
},
|
|
7194
|
+
{
|
|
7195
|
+
"name": "umb-file-system-tree-item",
|
|
7196
|
+
"path": "./src/backoffice/templating/components/file-system-tree-item/file-system-tree-item.element.ts",
|
|
7197
|
+
"properties": [
|
|
7198
|
+
{
|
|
7199
|
+
"name": "styles",
|
|
7200
|
+
"type": "CSSResult[]",
|
|
7201
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7202
|
+
},
|
|
7203
|
+
{
|
|
7204
|
+
"name": "item"
|
|
7205
|
+
}
|
|
7206
|
+
]
|
|
7207
|
+
},
|
|
7208
|
+
{
|
|
7209
|
+
"name": "umb-stylesheet-workspace-edit",
|
|
7210
|
+
"path": "./src/backoffice/templating/stylesheets/workspace/stylesheet-workspace-edit.element.ts",
|
|
7211
|
+
"properties": [
|
|
7212
|
+
{
|
|
7213
|
+
"name": "styles",
|
|
7214
|
+
"type": "CSSResult[]",
|
|
7215
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7216
|
+
}
|
|
7217
|
+
]
|
|
7218
|
+
},
|
|
7219
|
+
{
|
|
7220
|
+
"name": "umb-stylesheet-workspace",
|
|
7221
|
+
"path": "./src/backoffice/templating/stylesheets/workspace/stylesheet-workspace.element.ts",
|
|
7222
|
+
"properties": [
|
|
7223
|
+
{
|
|
7224
|
+
"name": "styles",
|
|
7225
|
+
"type": "CSSResult[]",
|
|
7226
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7227
|
+
}
|
|
7228
|
+
]
|
|
7229
|
+
},
|
|
6541
7230
|
{
|
|
6542
7231
|
"name": "umb-template-workspace",
|
|
6543
7232
|
"path": "./src/backoffice/templating/templates/workspace/template-workspace.element.ts",
|
|
@@ -6572,8 +7261,8 @@
|
|
|
6572
7261
|
]
|
|
6573
7262
|
},
|
|
6574
7263
|
{
|
|
6575
|
-
"name": "umb-export-dictionary-modal
|
|
6576
|
-
"path": "./src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal
|
|
7264
|
+
"name": "umb-export-dictionary-modal",
|
|
7265
|
+
"path": "./src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal.element.ts",
|
|
6577
7266
|
"properties": [
|
|
6578
7267
|
{
|
|
6579
7268
|
"name": "styles",
|
|
@@ -6583,8 +7272,8 @@
|
|
|
6583
7272
|
]
|
|
6584
7273
|
},
|
|
6585
7274
|
{
|
|
6586
|
-
"name": "umb-import-dictionary-modal
|
|
6587
|
-
"path": "./src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal
|
|
7275
|
+
"name": "umb-import-dictionary-modal",
|
|
7276
|
+
"path": "./src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal.element.ts",
|
|
6588
7277
|
"properties": [
|
|
6589
7278
|
{
|
|
6590
7279
|
"name": "styles",
|
|
@@ -6646,8 +7335,7 @@
|
|
|
6646
7335
|
"path": "./src/backoffice/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
6647
7336
|
"attributes": [
|
|
6648
7337
|
{
|
|
6649
|
-
"name": "data"
|
|
6650
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7338
|
+
"name": "data"
|
|
6651
7339
|
}
|
|
6652
7340
|
],
|
|
6653
7341
|
"properties": [
|
|
@@ -6661,8 +7349,7 @@
|
|
|
6661
7349
|
},
|
|
6662
7350
|
{
|
|
6663
7351
|
"name": "data",
|
|
6664
|
-
"attribute": "data"
|
|
6665
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7352
|
+
"attribute": "data"
|
|
6666
7353
|
}
|
|
6667
7354
|
]
|
|
6668
7355
|
},
|
|
@@ -6680,18 +7367,58 @@
|
|
|
6680
7367
|
}
|
|
6681
7368
|
]
|
|
6682
7369
|
},
|
|
7370
|
+
{
|
|
7371
|
+
"name": "umb-user-profile-app-external-login-providers",
|
|
7372
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.ts",
|
|
7373
|
+
"properties": [
|
|
7374
|
+
{
|
|
7375
|
+
"name": "styles",
|
|
7376
|
+
"type": "CSSResult[]",
|
|
7377
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7378
|
+
}
|
|
7379
|
+
]
|
|
7380
|
+
},
|
|
7381
|
+
{
|
|
7382
|
+
"name": "umb-user-profile-app-history",
|
|
7383
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7384
|
+
"properties": [
|
|
7385
|
+
{
|
|
7386
|
+
"name": "styles",
|
|
7387
|
+
"type": "CSSResult[]",
|
|
7388
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7389
|
+
}
|
|
7390
|
+
]
|
|
7391
|
+
},
|
|
6683
7392
|
{
|
|
6684
7393
|
"name": "umb-user-dashboard-test",
|
|
6685
|
-
"path": "./src/backoffice/users/current-user/user-
|
|
7394
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
6686
7395
|
"properties": [
|
|
6687
7396
|
{
|
|
6688
7397
|
"name": "styles",
|
|
6689
7398
|
"type": "CSSResult[]",
|
|
6690
7399
|
"default": "[\"UUITextStyles\",null]"
|
|
6691
|
-
}
|
|
7400
|
+
}
|
|
7401
|
+
]
|
|
7402
|
+
},
|
|
7403
|
+
{
|
|
7404
|
+
"name": "umb-user-profile-app-profile",
|
|
7405
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-profile.element.ts",
|
|
7406
|
+
"properties": [
|
|
7407
|
+
{
|
|
7408
|
+
"name": "styles",
|
|
7409
|
+
"type": "CSSResult[]",
|
|
7410
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7411
|
+
}
|
|
7412
|
+
]
|
|
7413
|
+
},
|
|
7414
|
+
{
|
|
7415
|
+
"name": "umb-user-profile-app-themes",
|
|
7416
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-themes.element.ts",
|
|
7417
|
+
"properties": [
|
|
6692
7418
|
{
|
|
6693
|
-
"name": "
|
|
6694
|
-
"type": "
|
|
7419
|
+
"name": "styles",
|
|
7420
|
+
"type": "CSSResult[]",
|
|
7421
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6695
7422
|
}
|
|
6696
7423
|
]
|
|
6697
7424
|
},
|
|
@@ -7071,10 +7798,63 @@
|
|
|
7071
7798
|
"attributes": [
|
|
7072
7799
|
{
|
|
7073
7800
|
"name": "routes",
|
|
7074
|
-
"type": "
|
|
7801
|
+
"type": "any[] | undefined"
|
|
7802
|
+
}
|
|
7803
|
+
],
|
|
7804
|
+
"properties": [
|
|
7805
|
+
{
|
|
7806
|
+
"name": "styles",
|
|
7807
|
+
"type": "CSSResult[]",
|
|
7808
|
+
"default": "[null]"
|
|
7809
|
+
},
|
|
7810
|
+
{
|
|
7811
|
+
"name": "routes",
|
|
7812
|
+
"attribute": "routes",
|
|
7813
|
+
"type": "any[] | undefined"
|
|
7814
|
+
},
|
|
7815
|
+
{
|
|
7816
|
+
"name": "absoluteRouterPath",
|
|
7817
|
+
"type": "string | undefined"
|
|
7818
|
+
},
|
|
7819
|
+
{
|
|
7820
|
+
"name": "localActiveViewPath",
|
|
7821
|
+
"type": "string | undefined"
|
|
7822
|
+
},
|
|
7823
|
+
{
|
|
7824
|
+
"name": "absoluteActiveViewPath",
|
|
7825
|
+
"type": "string"
|
|
7826
|
+
}
|
|
7827
|
+
],
|
|
7828
|
+
"events": [
|
|
7829
|
+
{
|
|
7830
|
+
"name": "init",
|
|
7831
|
+
"description": "fires when the router is connected"
|
|
7832
|
+
},
|
|
7833
|
+
{
|
|
7834
|
+
"name": "change",
|
|
7835
|
+
"description": "fires when a path of this router is changed"
|
|
7836
|
+
}
|
|
7837
|
+
]
|
|
7838
|
+
},
|
|
7839
|
+
{
|
|
7840
|
+
"name": "umb-variant-router-slot",
|
|
7841
|
+
"path": "./src/core/router/variant-router-slot.element.ts",
|
|
7842
|
+
"attributes": [
|
|
7843
|
+
{
|
|
7844
|
+
"name": "variantId",
|
|
7845
|
+
"type": "UmbVariantId[]"
|
|
7846
|
+
},
|
|
7847
|
+
{
|
|
7848
|
+
"name": "routes",
|
|
7849
|
+
"type": "any[] | undefined"
|
|
7075
7850
|
}
|
|
7076
7851
|
],
|
|
7077
7852
|
"properties": [
|
|
7853
|
+
{
|
|
7854
|
+
"name": "variantId",
|
|
7855
|
+
"attribute": "variantId",
|
|
7856
|
+
"type": "UmbVariantId[]"
|
|
7857
|
+
},
|
|
7078
7858
|
{
|
|
7079
7859
|
"name": "styles",
|
|
7080
7860
|
"type": "CSSResult[]",
|
|
@@ -7083,7 +7863,7 @@
|
|
|
7083
7863
|
{
|
|
7084
7864
|
"name": "routes",
|
|
7085
7865
|
"attribute": "routes",
|
|
7086
|
-
"type": "
|
|
7866
|
+
"type": "any[] | undefined"
|
|
7087
7867
|
},
|
|
7088
7868
|
{
|
|
7089
7869
|
"name": "absoluteRouterPath",
|