@umbraco-cms/backoffice 1.0.0-next.bf0e5e95 → 1.0.0-next.c727665d

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 CHANGED
@@ -1,4 +1,6 @@
1
1
  import { UmbControllerHostElement, UmbControllerInterface } from './controller';
2
+ import { UmbWorkspaceContextInterface } from './workspace';
3
+ import { BaseEntity } from './models';
2
4
 
3
5
  declare class UmbContextToken<T = unknown> {
4
6
  protected alias: string;
@@ -162,4 +164,72 @@ declare class UmbContextProvideEventImplementation extends Event implements UmbC
162
164
  }
163
165
  declare const isUmbContextProvideEventType: (event: Event) => event is UmbContextProvideEventImplementation;
164
166
 
165
- export { UmbContextCallback, UmbContextConsumer, UmbContextConsumerController, UmbContextDebugRequest, UmbContextProvideEvent, UmbContextProvideEventImplementation, UmbContextProvider, UmbContextProviderController, UmbContextRequestEvent, UmbContextRequestEventImplementation, UmbContextToken, isUmbContextProvideEventType, isUmbContextRequestEvent, umbContextProvideEventType, umbContextRequestEventType, umbDebugContextEventType };
167
+ interface UmbEntityWorkspaceContextInterface<EntityType = unknown> extends UmbWorkspaceContextInterface<EntityType> {
168
+ getEntityId(): string | undefined;
169
+ getEntityType(): string;
170
+ save(): Promise<void>;
171
+ }
172
+
173
+ declare const UMB_ENTITY_WORKSPACE_CONTEXT: UmbContextToken<UmbEntityWorkspaceContextInterface<BaseEntity>>;
174
+
175
+ /**
176
+ * Change the collection of Contexts into a simplified array of data
177
+ *
178
+ * @param contexts This is a map of the collected contexts from umb-debug
179
+ * @returns An array of simplified context data
180
+ */
181
+ declare function contextData(contexts: Map<any, any>): Array<DebugContextData>;
182
+ interface DebugContextData {
183
+ /**
184
+ * The alias of the context
185
+ *
186
+ * @type {string}
187
+ * @memberof DebugContextData
188
+ */
189
+ alias: string;
190
+ /**
191
+ * The type of the context such as object or string
192
+ *
193
+ * @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
194
+ * @memberof DebugContextData
195
+ */
196
+ type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
197
+ /**
198
+ * Data about the context that includes method and property names
199
+ *
200
+ * @type {DebugContextItemData}
201
+ * @memberof DebugContextData
202
+ */
203
+ data: DebugContextItemData;
204
+ }
205
+ interface DebugContextItemData {
206
+ type: string;
207
+ methods?: Array<unknown>;
208
+ properties?: Array<DebugContextItemPropertyData>;
209
+ value?: unknown;
210
+ }
211
+ interface DebugContextItemPropertyData {
212
+ /**
213
+ * The name of the property
214
+ *
215
+ * @type {string}
216
+ * @memberof DebugContextItemPropertyData
217
+ */
218
+ key: string;
219
+ /**
220
+ * The type of the property's value such as string or number
221
+ *
222
+ * @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
223
+ * @memberof DebugContextItemPropertyData
224
+ */
225
+ type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
226
+ /**
227
+ * Simple types such as string or number can have their value displayed stored inside the property
228
+ *
229
+ * @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
230
+ * @memberof DebugContextItemPropertyData
231
+ */
232
+ value?: unknown;
233
+ }
234
+
235
+ export { DebugContextData, DebugContextItemData, DebugContextItemPropertyData, UMB_ENTITY_WORKSPACE_CONTEXT, UmbContextCallback, UmbContextConsumer, UmbContextConsumerController, UmbContextDebugRequest, UmbContextProvideEvent, UmbContextProvideEventImplementation, UmbContextProvider, UmbContextProviderController, UmbContextRequestEvent, UmbContextRequestEventImplementation, UmbContextToken, contextData, isUmbContextProvideEventType, isUmbContextRequestEvent, umbContextProvideEventType, umbContextRequestEventType, umbDebugContextEventType };
package/controller.d.ts CHANGED
@@ -20,7 +20,7 @@ declare class UmbControllerHostElement extends HTMLElement {
20
20
  * @param {Object} superClass - superclass to be extended.
21
21
  * @mixin
22
22
  */
23
- declare const UmbControllerHostMixin: <T extends HTMLElementConstructor<HTMLElement>>(superClass: T) => HTMLElementConstructor<UmbControllerHostElement> & T;
23
+ declare const UmbControllerHostMixin: <T extends HTMLElementConstructor>(superClass: T) => HTMLElementConstructor<UmbControllerHostElement> & T;
24
24
  declare global {
25
25
  interface HTMLElement {
26
26
  connectedCallback(): void;
@@ -107,8 +107,8 @@
107
107
  ]
108
108
  },
109
109
  {
110
- "name": "umb-document-type-workspace-edit",
111
- "path": "./src/backoffice/documents/document-types/workspace/document-type-workspace-edit.element.ts",
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,8 @@
129
129
  ]
130
130
  },
131
131
  {
132
- "name": "umb-workspace-view-document-type-design",
133
- "path": "./src/backoffice/documents/document-types/workspace/views/design/workspace-view-document-type-design.element.ts",
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
134
  "properties": [
135
135
  {
136
136
  "name": "styles",
@@ -140,8 +140,131 @@
140
140
  ]
141
141
  },
142
142
  {
143
- "name": "umb-workspace-view-document-type-listview",
144
- "path": "./src/backoffice/documents/document-types/workspace/views/listview/workspace-view-document-type-listview.element.ts",
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",
145
268
  "properties": [
146
269
  {
147
270
  "name": "styles",
@@ -151,8 +274,8 @@
151
274
  ]
152
275
  },
153
276
  {
154
- "name": "umb-workspace-view-document-type-permissions",
155
- "path": "./src/backoffice/documents/document-types/workspace/views/permissions/workspace-view-document-type-permissions.element.ts",
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",
156
279
  "properties": [
157
280
  {
158
281
  "name": "styles",
@@ -162,8 +285,8 @@
162
285
  ]
163
286
  },
164
287
  {
165
- "name": "umb-workspace-view-document-type-templates",
166
- "path": "./src/backoffice/documents/document-types/workspace/views/templates/workspace-view-document-type-templates.element.ts",
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",
167
290
  "properties": [
168
291
  {
169
292
  "name": "styles",
@@ -257,8 +380,8 @@
257
380
  ]
258
381
  },
259
382
  {
260
- "name": "umb-document-workspace-edit",
261
- "path": "./src/backoffice/documents/documents/workspace/document-workspace-edit.element.ts",
383
+ "name": "umb-document-workspace-editor",
384
+ "path": "./src/backoffice/documents/documents/workspace/document-workspace-editor.element.ts",
262
385
  "properties": [
263
386
  {
264
387
  "name": "styles",
@@ -299,7 +422,7 @@
299
422
  },
300
423
  {
301
424
  "name": "container-type",
302
- "type": "\"Group\" | \"Tab\" | undefined"
425
+ "type": "PropertyContainerTypes | undefined"
303
426
  }
304
427
  ],
305
428
  "properties": [
@@ -316,7 +439,7 @@
316
439
  {
317
440
  "name": "containerType",
318
441
  "attribute": "container-type",
319
- "type": "\"Group\" | \"Tab\" | undefined"
442
+ "type": "PropertyContainerTypes | undefined"
320
443
  }
321
444
  ]
322
445
  },
@@ -943,6 +1066,17 @@
943
1066
  }
944
1067
  ]
945
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
+ },
946
1080
  {
947
1081
  "name": "umb-data-type-workspace-edit-element",
948
1082
  "path": "./src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
@@ -1077,7 +1211,7 @@
1077
1211
  ]
1078
1212
  },
1079
1213
  {
1080
- "name": "umb-language-workspace-thingy",
1214
+ "name": "umb-language-workspace-edit",
1081
1215
  "path": "./src/backoffice/settings/languages/workspace/language/language-workspace-edit.element.ts",
1082
1216
  "properties": [
1083
1217
  {
@@ -1845,7 +1979,7 @@
1845
1979
  "path": "./src/backoffice/shared/components/debug/debug.element.ts",
1846
1980
  "attributes": [
1847
1981
  {
1848
- "name": "enabled",
1982
+ "name": "visible",
1849
1983
  "type": "boolean",
1850
1984
  "default": "false"
1851
1985
  },
@@ -1853,11 +1987,6 @@
1853
1987
  "name": "dialog",
1854
1988
  "type": "boolean",
1855
1989
  "default": "false"
1856
- },
1857
- {
1858
- "name": "contexts",
1859
- "type": "Map<any, any>",
1860
- "default": "\"new Map()\""
1861
1990
  }
1862
1991
  ],
1863
1992
  "properties": [
@@ -1867,8 +1996,8 @@
1867
1996
  "default": "[\"UUITextStyles\",null]"
1868
1997
  },
1869
1998
  {
1870
- "name": "enabled",
1871
- "attribute": "enabled",
1999
+ "name": "visible",
2000
+ "attribute": "visible",
1872
2001
  "type": "boolean",
1873
2002
  "default": "false"
1874
2003
  },
@@ -1879,10 +2008,9 @@
1879
2008
  "default": "false"
1880
2009
  },
1881
2010
  {
1882
- "name": "contexts",
1883
- "attribute": "contexts",
1884
- "type": "Map<any, any>",
1885
- "default": "\"new Map()\""
2011
+ "name": "contextData",
2012
+ "type": "array",
2013
+ "default": "\"Array<DebugContextData>()\""
1886
2014
  }
1887
2015
  ]
1888
2016
  },
@@ -2179,7 +2307,7 @@
2179
2307
  },
2180
2308
  {
2181
2309
  "name": "renderMethod",
2182
- "type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<2 | 1> | null",
2310
+ "type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
2183
2311
  "default": "\"(extension) =>\\n\\t\\textension.component\""
2184
2312
  }
2185
2313
  ],
@@ -2213,7 +2341,7 @@
2213
2341
  {
2214
2342
  "name": "renderMethod",
2215
2343
  "attribute": "renderMethod",
2216
- "type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<2 | 1> | null",
2344
+ "type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
2217
2345
  "default": "\"(extension) =>\\n\\t\\textension.component\""
2218
2346
  }
2219
2347
  ],
@@ -2675,9 +2803,6 @@
2675
2803
  "name": "umb-input-document-type-picker",
2676
2804
  "path": "./src/backoffice/shared/components/input-document-type-picker/input-document-type-picker.element.ts",
2677
2805
  "attributes": [
2678
- {
2679
- "name": "currentDocumentType"
2680
- },
2681
2806
  {
2682
2807
  "name": "value",
2683
2808
  "type": "string"
@@ -2693,10 +2818,6 @@
2693
2818
  "name": "selectedKeys",
2694
2819
  "type": "string[]"
2695
2820
  },
2696
- {
2697
- "name": "currentDocumentType",
2698
- "attribute": "currentDocumentType"
2699
- },
2700
2821
  {
2701
2822
  "name": "formAssociated",
2702
2823
  "type": "boolean"
@@ -3828,6 +3949,101 @@
3828
3949
  }
3829
3950
  ]
3830
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
+ },
3831
4047
  {
3832
4048
  "name": "umb-input-user-group",
3833
4049
  "path": "./src/backoffice/shared/components/input-user-group/input-user-group.element.ts",
@@ -3949,14 +4165,69 @@
3949
4165
  ]
3950
4166
  },
3951
4167
  {
3952
- "name": "umb-menu-item",
3953
- "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
+ ],
3954
4191
  "properties": [
3955
4192
  {
3956
4193
  "name": "styles",
3957
4194
  "type": "CSSResult[]",
3958
4195
  "default": "[\"UUITextStyles\",null]"
3959
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
+ },
3960
4231
  {
3961
4232
  "name": "manifest"
3962
4233
  }
@@ -4295,7 +4566,7 @@
4295
4566
  "default": "false"
4296
4567
  },
4297
4568
  {
4298
- "name": "key",
4569
+ "name": "id",
4299
4570
  "type": "string"
4300
4571
  },
4301
4572
  {
@@ -4305,11 +4576,6 @@
4305
4576
  }
4306
4577
  ],
4307
4578
  "properties": [
4308
- {
4309
- "name": "styles",
4310
- "type": "CSSResult[]",
4311
- "default": "[\"UUITextStyles\",null]"
4312
- },
4313
4579
  {
4314
4580
  "name": "default",
4315
4581
  "attribute": "default",
@@ -4317,10 +4583,15 @@
4317
4583
  "default": "false"
4318
4584
  },
4319
4585
  {
4320
- "name": "key",
4321
- "attribute": "key",
4586
+ "name": "id",
4587
+ "attribute": "id",
4322
4588
  "type": "string"
4323
4589
  },
4590
+ {
4591
+ "name": "styles",
4592
+ "type": "CSSResult[]",
4593
+ "default": "[\"UUITextStyles\",null]"
4594
+ },
4324
4595
  {
4325
4596
  "name": "formAssociated",
4326
4597
  "type": "boolean"
@@ -4797,6 +5068,10 @@
4797
5068
  "name": "icon",
4798
5069
  "description": "Slot for icon"
4799
5070
  },
5071
+ {
5072
+ "name": "header",
5073
+ "description": "Slot for workspace header"
5074
+ },
4800
5075
  {
4801
5076
  "name": "name",
4802
5077
  "description": "Slot for name"
@@ -4845,11 +5120,6 @@
4845
5120
  }
4846
5121
  ],
4847
5122
  "properties": [
4848
- {
4849
- "name": "styles",
4850
- "type": "CSSResult[]",
4851
- "default": "[\"UUITextStyles\",null]"
4852
- },
4853
5123
  {
4854
5124
  "name": "alias",
4855
5125
  "attribute": "alias",
@@ -4877,6 +5147,11 @@
4877
5147
  "description": "Description: render a description underneath the label.",
4878
5148
  "type": "string",
4879
5149
  "default": "\"''\""
5150
+ },
5151
+ {
5152
+ "name": "styles",
5153
+ "type": "CSSResult[]",
5154
+ "default": "[\"UUITextStyles\",null]"
4880
5155
  }
4881
5156
  ],
4882
5157
  "slots": [
@@ -5012,6 +5287,23 @@
5012
5287
  }
5013
5288
  ]
5014
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"
5304
+ }
5305
+ ]
5306
+ },
5015
5307
  {
5016
5308
  "name": "umb-icon-picker-modal",
5017
5309
  "path": "./src/backoffice/shared/modals/icon-picker/icon-picker-modal.element.ts",
@@ -6832,8 +7124,12 @@
6832
7124
  },
6833
7125
  {
6834
7126
  "name": "config",
6835
- "type": "never[]",
6836
- "default": "[]"
7127
+ "type": "array"
7128
+ }
7129
+ ],
7130
+ "events": [
7131
+ {
7132
+ "name": "property-value-change"
6837
7133
  }
6838
7134
  ]
6839
7135
  },