@umbraco-cms/backoffice 1.0.0-next.c1172939 → 1.0.0-next.ce55cd35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend-api.d.ts +457 -212
- package/context-api.d.ts +76 -6
- package/controller.d.ts +5 -5
- package/custom-elements.json +835 -69
- 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 +8 -8
- package/modal.d.ts +594 -12
- package/models.d.ts +13 -8
- package/observable-api.d.ts +44 -15
- package/package.json +1 -1
- package/repository.d.ts +40 -10
- package/resources.d.ts +3 -3
- package/router.d.ts +130 -0
- package/store.d.ts +13 -13
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +345 -60
- 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": "containerId",
|
|
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",
|
|
@@ -198,6 +354,17 @@
|
|
|
198
354
|
}
|
|
199
355
|
]
|
|
200
356
|
},
|
|
357
|
+
{
|
|
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
|
+
},
|
|
201
368
|
{
|
|
202
369
|
"name": "umb-document-tree-item",
|
|
203
370
|
"path": "./src/backoffice/documents/documents/tree/tree-item/document-tree-item.element.ts",
|
|
@@ -213,8 +380,8 @@
|
|
|
213
380
|
]
|
|
214
381
|
},
|
|
215
382
|
{
|
|
216
|
-
"name": "umb-document-workspace-
|
|
217
|
-
"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",
|
|
218
385
|
"properties": [
|
|
219
386
|
{
|
|
220
387
|
"name": "styles",
|
|
@@ -255,7 +422,7 @@
|
|
|
255
422
|
},
|
|
256
423
|
{
|
|
257
424
|
"name": "container-type",
|
|
258
|
-
"type": "
|
|
425
|
+
"type": "PropertyContainerTypes | undefined"
|
|
259
426
|
}
|
|
260
427
|
],
|
|
261
428
|
"properties": [
|
|
@@ -272,7 +439,7 @@
|
|
|
272
439
|
{
|
|
273
440
|
"name": "containerType",
|
|
274
441
|
"attribute": "container-type",
|
|
275
|
-
"type": "
|
|
442
|
+
"type": "PropertyContainerTypes | undefined"
|
|
276
443
|
}
|
|
277
444
|
]
|
|
278
445
|
},
|
|
@@ -899,6 +1066,17 @@
|
|
|
899
1066
|
}
|
|
900
1067
|
]
|
|
901
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
|
+
},
|
|
902
1080
|
{
|
|
903
1081
|
"name": "umb-data-type-workspace-edit-element",
|
|
904
1082
|
"path": "./src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
@@ -1033,7 +1211,7 @@
|
|
|
1033
1211
|
]
|
|
1034
1212
|
},
|
|
1035
1213
|
{
|
|
1036
|
-
"name": "umb-language-workspace-
|
|
1214
|
+
"name": "umb-language-workspace-edit",
|
|
1037
1215
|
"path": "./src/backoffice/settings/languages/workspace/language/language-workspace-edit.element.ts",
|
|
1038
1216
|
"properties": [
|
|
1039
1217
|
{
|
|
@@ -1801,7 +1979,7 @@
|
|
|
1801
1979
|
"path": "./src/backoffice/shared/components/debug/debug.element.ts",
|
|
1802
1980
|
"attributes": [
|
|
1803
1981
|
{
|
|
1804
|
-
"name": "
|
|
1982
|
+
"name": "visible",
|
|
1805
1983
|
"type": "boolean",
|
|
1806
1984
|
"default": "false"
|
|
1807
1985
|
},
|
|
@@ -1809,11 +1987,6 @@
|
|
|
1809
1987
|
"name": "dialog",
|
|
1810
1988
|
"type": "boolean",
|
|
1811
1989
|
"default": "false"
|
|
1812
|
-
},
|
|
1813
|
-
{
|
|
1814
|
-
"name": "contexts",
|
|
1815
|
-
"type": "Map<any, any>",
|
|
1816
|
-
"default": "\"new Map()\""
|
|
1817
1990
|
}
|
|
1818
1991
|
],
|
|
1819
1992
|
"properties": [
|
|
@@ -1823,8 +1996,8 @@
|
|
|
1823
1996
|
"default": "[\"UUITextStyles\",null]"
|
|
1824
1997
|
},
|
|
1825
1998
|
{
|
|
1826
|
-
"name": "
|
|
1827
|
-
"attribute": "
|
|
1999
|
+
"name": "visible",
|
|
2000
|
+
"attribute": "visible",
|
|
1828
2001
|
"type": "boolean",
|
|
1829
2002
|
"default": "false"
|
|
1830
2003
|
},
|
|
@@ -1835,10 +2008,9 @@
|
|
|
1835
2008
|
"default": "false"
|
|
1836
2009
|
},
|
|
1837
2010
|
{
|
|
1838
|
-
"name": "
|
|
1839
|
-
"
|
|
1840
|
-
"
|
|
1841
|
-
"default": "\"new Map()\""
|
|
2011
|
+
"name": "contextData",
|
|
2012
|
+
"type": "array",
|
|
2013
|
+
"default": "\"Array<DebugContextData>()\""
|
|
1842
2014
|
}
|
|
1843
2015
|
]
|
|
1844
2016
|
},
|
|
@@ -2135,7 +2307,7 @@
|
|
|
2135
2307
|
},
|
|
2136
2308
|
{
|
|
2137
2309
|
"name": "renderMethod",
|
|
2138
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2310
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2139
2311
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2140
2312
|
}
|
|
2141
2313
|
],
|
|
@@ -2169,7 +2341,7 @@
|
|
|
2169
2341
|
{
|
|
2170
2342
|
"name": "renderMethod",
|
|
2171
2343
|
"attribute": "renderMethod",
|
|
2172
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2344
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2173
2345
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2174
2346
|
}
|
|
2175
2347
|
],
|
|
@@ -2627,6 +2799,73 @@
|
|
|
2627
2799
|
}
|
|
2628
2800
|
]
|
|
2629
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
|
+
},
|
|
2630
2869
|
{
|
|
2631
2870
|
"name": "umb-input-eye-dropper",
|
|
2632
2871
|
"path": "./src/backoffice/shared/components/input-eye-dropper/input-eye-dropper.element.ts",
|
|
@@ -2949,6 +3188,14 @@
|
|
|
2949
3188
|
"name": "umb-input-multi-url-picker",
|
|
2950
3189
|
"path": "./src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.element.ts",
|
|
2951
3190
|
"attributes": [
|
|
3191
|
+
{
|
|
3192
|
+
"name": "alias",
|
|
3193
|
+
"type": "string | undefined"
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"name": "variantId",
|
|
3197
|
+
"type": "string | UmbVariantId | undefined"
|
|
3198
|
+
},
|
|
2952
3199
|
{
|
|
2953
3200
|
"name": "min",
|
|
2954
3201
|
"description": "This is a minimum amount of selected items in this input.",
|
|
@@ -2993,6 +3240,16 @@
|
|
|
2993
3240
|
"type": "CSSResult[]",
|
|
2994
3241
|
"default": "[\"UUITextStyles\",null]"
|
|
2995
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
|
+
},
|
|
2996
3253
|
{
|
|
2997
3254
|
"name": "min",
|
|
2998
3255
|
"attribute": "min",
|
|
@@ -3465,6 +3722,137 @@
|
|
|
3465
3722
|
}
|
|
3466
3723
|
]
|
|
3467
3724
|
},
|
|
3725
|
+
{
|
|
3726
|
+
"name": "umb-input-template-picker",
|
|
3727
|
+
"path": "./src/backoffice/shared/components/input-template-picker/input-template-picker.element.ts",
|
|
3728
|
+
"attributes": [
|
|
3729
|
+
{
|
|
3730
|
+
"name": "min",
|
|
3731
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
3732
|
+
"type": "number",
|
|
3733
|
+
"default": "\"undefined\""
|
|
3734
|
+
},
|
|
3735
|
+
{
|
|
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
|
+
},
|
|
3468
3856
|
{
|
|
3469
3857
|
"name": "umb-input-toggle",
|
|
3470
3858
|
"path": "./src/backoffice/shared/components/input-toggle/input-toggle.element.ts",
|
|
@@ -3561,6 +3949,101 @@
|
|
|
3561
3949
|
}
|
|
3562
3950
|
]
|
|
3563
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
|
+
},
|
|
3564
4047
|
{
|
|
3565
4048
|
"name": "umb-input-user-group",
|
|
3566
4049
|
"path": "./src/backoffice/shared/components/input-user-group/input-user-group.element.ts",
|
|
@@ -3669,26 +4152,81 @@
|
|
|
3669
4152
|
"default": "\"sidebar\""
|
|
3670
4153
|
},
|
|
3671
4154
|
{
|
|
3672
|
-
"name": "modalSize",
|
|
3673
|
-
"attribute": "modalSize",
|
|
3674
|
-
"type": "UUIModalSidebarSize",
|
|
3675
|
-
"default": "\"small\""
|
|
3676
|
-
}
|
|
3677
|
-
],
|
|
3678
|
-
"events": [
|
|
3679
|
-
{
|
|
3680
|
-
"name": "change"
|
|
4155
|
+
"name": "modalSize",
|
|
4156
|
+
"attribute": "modalSize",
|
|
4157
|
+
"type": "UUIModalSidebarSize",
|
|
4158
|
+
"default": "\"small\""
|
|
4159
|
+
}
|
|
4160
|
+
],
|
|
4161
|
+
"events": [
|
|
4162
|
+
{
|
|
4163
|
+
"name": "change"
|
|
4164
|
+
}
|
|
4165
|
+
]
|
|
4166
|
+
},
|
|
4167
|
+
{
|
|
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
|
+
],
|
|
4191
|
+
"properties": [
|
|
4192
|
+
{
|
|
4193
|
+
"name": "styles",
|
|
4194
|
+
"type": "CSSResult[]",
|
|
4195
|
+
"default": "[\"UUITextStyles\",null]"
|
|
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"
|
|
3681
4219
|
}
|
|
3682
4220
|
]
|
|
3683
4221
|
},
|
|
3684
4222
|
{
|
|
3685
4223
|
"name": "umb-menu-item",
|
|
3686
|
-
"path": "./src/backoffice/shared/components/menu-item/menu-item.element.ts",
|
|
4224
|
+
"path": "./src/backoffice/shared/components/menu/menu-item/menu-item.element.ts",
|
|
3687
4225
|
"properties": [
|
|
3688
4226
|
{
|
|
3689
4227
|
"name": "styles",
|
|
3690
4228
|
"type": "CSSResult[]",
|
|
3691
|
-
"default": "[\"UUITextStyles\"
|
|
4229
|
+
"default": "[\"UUITextStyles\"]"
|
|
3692
4230
|
},
|
|
3693
4231
|
{
|
|
3694
4232
|
"name": "manifest"
|
|
@@ -4018,6 +4556,102 @@
|
|
|
4018
4556
|
}
|
|
4019
4557
|
]
|
|
4020
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": "id",
|
|
4570
|
+
"type": "string"
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"name": "name",
|
|
4574
|
+
"type": "string",
|
|
4575
|
+
"default": "\"\""
|
|
4576
|
+
}
|
|
4577
|
+
],
|
|
4578
|
+
"properties": [
|
|
4579
|
+
{
|
|
4580
|
+
"name": "default",
|
|
4581
|
+
"attribute": "default",
|
|
4582
|
+
"type": "boolean",
|
|
4583
|
+
"default": "false"
|
|
4584
|
+
},
|
|
4585
|
+
{
|
|
4586
|
+
"name": "id",
|
|
4587
|
+
"attribute": "id",
|
|
4588
|
+
"type": "string"
|
|
4589
|
+
},
|
|
4590
|
+
{
|
|
4591
|
+
"name": "styles",
|
|
4592
|
+
"type": "CSSResult[]",
|
|
4593
|
+
"default": "[\"UUITextStyles\",null]"
|
|
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"
|
|
4652
|
+
}
|
|
4653
|
+
]
|
|
4654
|
+
},
|
|
4021
4655
|
{
|
|
4022
4656
|
"name": "umb-tooltip-menu",
|
|
4023
4657
|
"path": "./src/backoffice/shared/components/tooltip-menu/tooltip-menu.element.ts",
|
|
@@ -4434,6 +5068,10 @@
|
|
|
4434
5068
|
"name": "icon",
|
|
4435
5069
|
"description": "Slot for icon"
|
|
4436
5070
|
},
|
|
5071
|
+
{
|
|
5072
|
+
"name": "header",
|
|
5073
|
+
"description": "Slot for workspace header"
|
|
5074
|
+
},
|
|
4437
5075
|
{
|
|
4438
5076
|
"name": "name",
|
|
4439
5077
|
"description": "Slot for name"
|
|
@@ -4482,11 +5120,6 @@
|
|
|
4482
5120
|
}
|
|
4483
5121
|
],
|
|
4484
5122
|
"properties": [
|
|
4485
|
-
{
|
|
4486
|
-
"name": "styles",
|
|
4487
|
-
"type": "CSSResult[]",
|
|
4488
|
-
"default": "[\"UUITextStyles\",null]"
|
|
4489
|
-
},
|
|
4490
5123
|
{
|
|
4491
5124
|
"name": "alias",
|
|
4492
5125
|
"attribute": "alias",
|
|
@@ -4514,6 +5147,11 @@
|
|
|
4514
5147
|
"description": "Description: render a description underneath the label.",
|
|
4515
5148
|
"type": "string",
|
|
4516
5149
|
"default": "\"''\""
|
|
5150
|
+
},
|
|
5151
|
+
{
|
|
5152
|
+
"name": "styles",
|
|
5153
|
+
"type": "CSSResult[]",
|
|
5154
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4517
5155
|
}
|
|
4518
5156
|
],
|
|
4519
5157
|
"slots": [
|
|
@@ -4608,8 +5246,7 @@
|
|
|
4608
5246
|
"path": "./src/backoffice/shared/modals/confirm/confirm-modal.element.ts",
|
|
4609
5247
|
"attributes": [
|
|
4610
5248
|
{
|
|
4611
|
-
"name": "data"
|
|
4612
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5249
|
+
"name": "data"
|
|
4613
5250
|
}
|
|
4614
5251
|
],
|
|
4615
5252
|
"properties": [
|
|
@@ -4623,8 +5260,7 @@
|
|
|
4623
5260
|
},
|
|
4624
5261
|
{
|
|
4625
5262
|
"name": "data",
|
|
4626
|
-
"attribute": "data"
|
|
4627
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5263
|
+
"attribute": "data"
|
|
4628
5264
|
}
|
|
4629
5265
|
]
|
|
4630
5266
|
},
|
|
@@ -4633,8 +5269,7 @@
|
|
|
4633
5269
|
"path": "./src/backoffice/shared/modals/embedded-media/embedded-media-modal.element.ts",
|
|
4634
5270
|
"attributes": [
|
|
4635
5271
|
{
|
|
4636
|
-
"name": "data"
|
|
4637
|
-
"type": "UmbEmbeddedMediaModalData | undefined"
|
|
5272
|
+
"name": "data"
|
|
4638
5273
|
}
|
|
4639
5274
|
],
|
|
4640
5275
|
"properties": [
|
|
@@ -4648,8 +5283,24 @@
|
|
|
4648
5283
|
},
|
|
4649
5284
|
{
|
|
4650
5285
|
"name": "data",
|
|
4651
|
-
"attribute": "data"
|
|
4652
|
-
|
|
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"
|
|
4653
5304
|
}
|
|
4654
5305
|
]
|
|
4655
5306
|
},
|
|
@@ -4730,6 +5381,28 @@
|
|
|
4730
5381
|
}
|
|
4731
5382
|
]
|
|
4732
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
|
+
},
|
|
4733
5406
|
{
|
|
4734
5407
|
"name": "umb-property-action-clear",
|
|
4735
5408
|
"path": "./src/backoffice/shared/property-actions/clear/property-action-clear.element.ts",
|
|
@@ -4854,8 +5527,7 @@
|
|
|
4854
5527
|
"path": "./src/backoffice/shared/property-editors/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
4855
5528
|
"attributes": [
|
|
4856
5529
|
{
|
|
4857
|
-
"name": "data"
|
|
4858
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5530
|
+
"name": "data"
|
|
4859
5531
|
}
|
|
4860
5532
|
],
|
|
4861
5533
|
"properties": [
|
|
@@ -4866,8 +5538,7 @@
|
|
|
4866
5538
|
},
|
|
4867
5539
|
{
|
|
4868
5540
|
"name": "data",
|
|
4869
|
-
"attribute": "data"
|
|
4870
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5541
|
+
"attribute": "data"
|
|
4871
5542
|
},
|
|
4872
5543
|
{
|
|
4873
5544
|
"name": "modalHandler"
|
|
@@ -5665,7 +6336,7 @@
|
|
|
5665
6336
|
"attributes": [
|
|
5666
6337
|
{
|
|
5667
6338
|
"name": "value",
|
|
5668
|
-
"type": "
|
|
6339
|
+
"type": "array",
|
|
5669
6340
|
"default": "[]"
|
|
5670
6341
|
}
|
|
5671
6342
|
],
|
|
@@ -5678,7 +6349,7 @@
|
|
|
5678
6349
|
{
|
|
5679
6350
|
"name": "value",
|
|
5680
6351
|
"attribute": "value",
|
|
5681
|
-
"type": "
|
|
6352
|
+
"type": "array",
|
|
5682
6353
|
"default": "[]"
|
|
5683
6354
|
},
|
|
5684
6355
|
{
|
|
@@ -6453,8 +7124,12 @@
|
|
|
6453
7124
|
},
|
|
6454
7125
|
{
|
|
6455
7126
|
"name": "config",
|
|
6456
|
-
"type": "
|
|
6457
|
-
|
|
7127
|
+
"type": "array"
|
|
7128
|
+
}
|
|
7129
|
+
],
|
|
7130
|
+
"events": [
|
|
7131
|
+
{
|
|
7132
|
+
"name": "property-value-change"
|
|
6458
7133
|
}
|
|
6459
7134
|
]
|
|
6460
7135
|
},
|
|
@@ -6586,8 +7261,8 @@
|
|
|
6586
7261
|
]
|
|
6587
7262
|
},
|
|
6588
7263
|
{
|
|
6589
|
-
"name": "umb-export-dictionary-modal
|
|
6590
|
-
"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",
|
|
6591
7266
|
"properties": [
|
|
6592
7267
|
{
|
|
6593
7268
|
"name": "styles",
|
|
@@ -6597,8 +7272,8 @@
|
|
|
6597
7272
|
]
|
|
6598
7273
|
},
|
|
6599
7274
|
{
|
|
6600
|
-
"name": "umb-import-dictionary-modal
|
|
6601
|
-
"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",
|
|
6602
7277
|
"properties": [
|
|
6603
7278
|
{
|
|
6604
7279
|
"name": "styles",
|
|
@@ -6660,8 +7335,7 @@
|
|
|
6660
7335
|
"path": "./src/backoffice/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
6661
7336
|
"attributes": [
|
|
6662
7337
|
{
|
|
6663
|
-
"name": "data"
|
|
6664
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7338
|
+
"name": "data"
|
|
6665
7339
|
}
|
|
6666
7340
|
],
|
|
6667
7341
|
"properties": [
|
|
@@ -6675,8 +7349,7 @@
|
|
|
6675
7349
|
},
|
|
6676
7350
|
{
|
|
6677
7351
|
"name": "data",
|
|
6678
|
-
"attribute": "data"
|
|
6679
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7352
|
+
"attribute": "data"
|
|
6680
7353
|
}
|
|
6681
7354
|
]
|
|
6682
7355
|
},
|
|
@@ -6694,18 +7367,58 @@
|
|
|
6694
7367
|
}
|
|
6695
7368
|
]
|
|
6696
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
|
+
},
|
|
6697
7392
|
{
|
|
6698
7393
|
"name": "umb-user-dashboard-test",
|
|
6699
|
-
"path": "./src/backoffice/users/current-user/user-
|
|
7394
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
6700
7395
|
"properties": [
|
|
6701
7396
|
{
|
|
6702
7397
|
"name": "styles",
|
|
6703
7398
|
"type": "CSSResult[]",
|
|
6704
7399
|
"default": "[\"UUITextStyles\",null]"
|
|
6705
|
-
}
|
|
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": [
|
|
6706
7418
|
{
|
|
6707
|
-
"name": "
|
|
6708
|
-
"type": "
|
|
7419
|
+
"name": "styles",
|
|
7420
|
+
"type": "CSSResult[]",
|
|
7421
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6709
7422
|
}
|
|
6710
7423
|
]
|
|
6711
7424
|
},
|
|
@@ -7085,10 +7798,63 @@
|
|
|
7085
7798
|
"attributes": [
|
|
7086
7799
|
{
|
|
7087
7800
|
"name": "routes",
|
|
7088
|
-
"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"
|
|
7089
7850
|
}
|
|
7090
7851
|
],
|
|
7091
7852
|
"properties": [
|
|
7853
|
+
{
|
|
7854
|
+
"name": "variantId",
|
|
7855
|
+
"attribute": "variantId",
|
|
7856
|
+
"type": "UmbVariantId[]"
|
|
7857
|
+
},
|
|
7092
7858
|
{
|
|
7093
7859
|
"name": "styles",
|
|
7094
7860
|
"type": "CSSResult[]",
|
|
@@ -7097,7 +7863,7 @@
|
|
|
7097
7863
|
{
|
|
7098
7864
|
"name": "routes",
|
|
7099
7865
|
"attribute": "routes",
|
|
7100
|
-
"type": "
|
|
7866
|
+
"type": "any[] | undefined"
|
|
7101
7867
|
},
|
|
7102
7868
|
{
|
|
7103
7869
|
"name": "absoluteRouterPath",
|