@umbraco-cms/backoffice 1.0.0-next.23b74307 → 1.0.0-next.249bf505
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 +592 -270
- package/context-api.d.ts +1 -1
- package/controller.d.ts +1 -1
- package/custom-elements.json +253 -27
- package/element.d.ts +1 -1
- package/extensions-api.d.ts +2 -1
- package/modal.d.ts +7 -316
- package/models.d.ts +8 -8
- package/observable-api.d.ts +25 -11
- package/package.json +1 -1
- package/repository.d.ts +7 -7
- package/router.d.ts +268 -22
- package/store.d.ts +11 -11
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +125 -34
- package/workspace.d.ts +1 -1
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"name": "umb-document-type-workspace",
|
|
60
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`
|
|
60
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`any[]`} - ",
|
|
61
61
|
"attributes": []
|
|
62
62
|
},
|
|
63
63
|
{
|
|
@@ -65,6 +65,69 @@
|
|
|
65
65
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_workspaceContext` - \n\n * `_tabs` {`any[]`} - ",
|
|
66
66
|
"attributes": []
|
|
67
67
|
},
|
|
68
|
+
{
|
|
69
|
+
"name": "umb-document-type-workspace-view-edit-properties",
|
|
70
|
+
"description": "Attributes:\n\n * `container-name` {`string | undefined`} - \n\n * `container-type` {`PropertyContainerTypes | undefined`} - \n\nProperties:\n\n * `_containerId` {`string | undefined`} - \n\n * `containerId` {`string | undefined`} - \n\n * `containerName` {`string | undefined`} - \n\n * `containerType` {`PropertyContainerTypes | undefined`} - \n\n * `_propertyStructureHelper` - \n\n * `_propertyStructure` {`any[]`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
71
|
+
"attributes": [
|
|
72
|
+
{
|
|
73
|
+
"name": "container-name",
|
|
74
|
+
"description": "`container-name` {`string | undefined`} - \n\nProperty: containerName",
|
|
75
|
+
"values": []
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "container-type",
|
|
79
|
+
"description": "`container-type` {`PropertyContainerTypes | undefined`} - \n\nProperty: containerType",
|
|
80
|
+
"values": [
|
|
81
|
+
{
|
|
82
|
+
"name": "Group"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "Tab"
|
|
86
|
+
}
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "document-type-workspace-view-edit-property",
|
|
93
|
+
"description": "Events:\n\n * `partial-property-update` {`CustomEvent<any>`} - \n\nSlots:\n\n * `editor` {} - Slot for rendering the Property Editor\n\nAttributes:\n\n * `property` {string} - Property, the data object for the property.\n\nProperties:\n\n * `property` {string} - Property, the data object for the property.\n\n * `styles` {`CSSResult[]`} - ",
|
|
94
|
+
"attributes": [
|
|
95
|
+
{
|
|
96
|
+
"name": "property",
|
|
97
|
+
"description": "`property` {string} - Property, the data object for the property.\n\nProperty: property\n\nDefault: ''"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "onpartial-property-update",
|
|
101
|
+
"description": "`partial-property-update` {`CustomEvent<any>`} - "
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "umb-document-type-workspace-view-edit-tab",
|
|
107
|
+
"description": "Attributes:\n\n * `ownerTabId` {`string | undefined`} - \n\n * `tabName` {`string | undefined`} - \n\n * `noTabName` {`boolean`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_ownerTabId` {`string | undefined`} - \n\n * `ownerTabId` {`string | undefined`} - \n\n * `_tabName` {`string | undefined`} - \n\n * `tabName` {`string | undefined`} - \n\n * `noTabName` {`boolean`} - \n\n * `_groupStructureHelper` - \n\n * `_groups` {`any[]`} - \n\n * `_hasProperties` {`boolean`} - ",
|
|
108
|
+
"attributes": [
|
|
109
|
+
{
|
|
110
|
+
"name": "ownerTabId",
|
|
111
|
+
"description": "`ownerTabId` {`string | undefined`} - \n\nProperty: ownerTabId",
|
|
112
|
+
"values": []
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "tabName",
|
|
116
|
+
"description": "`tabName` {`string | undefined`} - \n\nProperty: tabName",
|
|
117
|
+
"values": []
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "noTabName",
|
|
121
|
+
"description": "`noTabName` {`boolean`} - \n\nProperty: noTabName",
|
|
122
|
+
"valueSet": "v"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "umb-document-type-workspace-view-edit",
|
|
128
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_hasRootGroups` {`boolean`} - \n\n * `_routes` {`any[]`} - \n\n * `_tabs` {`any[]`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string`} - \n\n * `_workspaceContext` - \n\n * `_tabsStructureHelper` - ",
|
|
129
|
+
"attributes": []
|
|
130
|
+
},
|
|
68
131
|
{
|
|
69
132
|
"name": "umb-document-type-workspace-view-details",
|
|
70
133
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_workspaceContext` - ",
|
|
@@ -116,7 +179,7 @@
|
|
|
116
179
|
},
|
|
117
180
|
{
|
|
118
181
|
"name": "umb-document-workspace-editor",
|
|
119
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `splitViewElement` - \n\n * `_unique` {`string | undefined`} - \n\n * `_routes` {`
|
|
182
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `splitViewElement` - \n\n * `_unique` {`string | undefined`} - \n\n * `_routes` {`any[] | undefined`} - \n\n * `_availableVariants` {`any[]`} - \n\n * `_workspaceSplitViews` {`ActiveVariant[]`} - \n\n * `_gotWorkspaceRoute` - ",
|
|
120
183
|
"attributes": []
|
|
121
184
|
},
|
|
122
185
|
{
|
|
@@ -126,12 +189,12 @@
|
|
|
126
189
|
},
|
|
127
190
|
{
|
|
128
191
|
"name": "umb-document-workspace",
|
|
129
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`
|
|
192
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`any[]`} - ",
|
|
130
193
|
"attributes": []
|
|
131
194
|
},
|
|
132
195
|
{
|
|
133
196
|
"name": "umb-document-workspace-view-edit-properties",
|
|
134
|
-
"description": "Attributes:\n\n * `container-name` {`string | undefined`} - \n\n * `container-type` {
|
|
197
|
+
"description": "Attributes:\n\n * `container-name` {`string | undefined`} - \n\n * `container-type` {`PropertyContainerTypes | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `containerName` {`string | undefined`} - \n\n * `containerType` {`PropertyContainerTypes | undefined`} - \n\n * `_propertyStructureHelper` - \n\n * `_propertyStructure` {`any[]`} - ",
|
|
135
198
|
"attributes": [
|
|
136
199
|
{
|
|
137
200
|
"name": "container-name",
|
|
@@ -140,7 +203,7 @@
|
|
|
140
203
|
},
|
|
141
204
|
{
|
|
142
205
|
"name": "container-type",
|
|
143
|
-
"description": "`container-type` {
|
|
206
|
+
"description": "`container-type` {`PropertyContainerTypes | undefined`} - \n\nProperty: containerType",
|
|
144
207
|
"values": [
|
|
145
208
|
{
|
|
146
209
|
"name": "Group"
|
|
@@ -154,7 +217,7 @@
|
|
|
154
217
|
},
|
|
155
218
|
{
|
|
156
219
|
"name": "umb-document-workspace-view-edit-tab",
|
|
157
|
-
"description": "Attributes:\n\n * `tabName` {`string | undefined`} - \n\n * `noTabName` {`boolean`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tabName` {`string | undefined`} - \n\n * `tabName` {`string | undefined`} - \n\n * `
|
|
220
|
+
"description": "Attributes:\n\n * `tabName` {`string | undefined`} - \n\n * `noTabName` {`boolean`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tabName` {`string | undefined`} - \n\n * `tabName` {`string | undefined`} - \n\n * `noTabName` {`boolean`} - \n\n * `_groupStructureHelper` - \n\n * `_groups` {`any[]`} - \n\n * `_hasProperties` {`boolean`} - ",
|
|
158
221
|
"attributes": [
|
|
159
222
|
{
|
|
160
223
|
"name": "tabName",
|
|
@@ -170,7 +233,7 @@
|
|
|
170
233
|
},
|
|
171
234
|
{
|
|
172
235
|
"name": "umb-document-workspace-view-edit",
|
|
173
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_hasRootGroups` {`boolean`} - \n\n * `_routes` {`any[]`} - \n\n * `_tabs` {`any[]`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string`} - \n\n * `_workspaceContext` - ",
|
|
236
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_hasRootGroups` {`boolean`} - \n\n * `_routes` {`any[]`} - \n\n * `_tabs` {`any[]`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string`} - \n\n * `_workspaceContext` - \n\n * `_tabsStructureHelper` - ",
|
|
174
237
|
"attributes": []
|
|
175
238
|
},
|
|
176
239
|
{
|
|
@@ -219,7 +282,7 @@
|
|
|
219
282
|
},
|
|
220
283
|
{
|
|
221
284
|
"name": "umb-media-workspace-edit",
|
|
222
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `
|
|
285
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_id` {`string | undefined`} - ",
|
|
223
286
|
"attributes": []
|
|
224
287
|
},
|
|
225
288
|
{
|
|
@@ -279,22 +342,22 @@
|
|
|
279
342
|
},
|
|
280
343
|
{
|
|
281
344
|
"name": "umb-workspace-package-builder",
|
|
282
|
-
"description": "Attributes:\n\n * `
|
|
345
|
+
"description": "Attributes:\n\n * `entityId` {`string | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `entityId` {`string | undefined`} - \n\n * `_package` - \n\n * `_packageNameInput` - \n\n * `_notificationContext` - ",
|
|
283
346
|
"attributes": [
|
|
284
347
|
{
|
|
285
|
-
"name": "
|
|
286
|
-
"description": "`
|
|
348
|
+
"name": "entityId",
|
|
349
|
+
"description": "`entityId` {`string | undefined`} - \n\nProperty: entityId",
|
|
287
350
|
"values": []
|
|
288
351
|
}
|
|
289
352
|
]
|
|
290
353
|
},
|
|
291
354
|
{
|
|
292
355
|
"name": "umb-workspace-package",
|
|
293
|
-
"description": "Attributes:\n\n * `
|
|
356
|
+
"description": "Attributes:\n\n * `entityId` {`string | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `entityId` {`string | undefined`} - \n\n * `_package` - ",
|
|
294
357
|
"attributes": [
|
|
295
358
|
{
|
|
296
|
-
"name": "
|
|
297
|
-
"description": "`
|
|
359
|
+
"name": "entityId",
|
|
360
|
+
"description": "`entityId` {`string | undefined`} - \n\nProperty: entityId",
|
|
298
361
|
"values": []
|
|
299
362
|
}
|
|
300
363
|
]
|
|
@@ -416,7 +479,7 @@
|
|
|
416
479
|
},
|
|
417
480
|
{
|
|
418
481
|
"name": "umb-dashboard-health-check-group",
|
|
419
|
-
"description": "Attributes:\n\n * `groupName` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `groupName` {`string`} - \n\n * `_buttonState` {`UUIButtonState`} - \n\n * `_group` - \n\n * `_healthCheckContext` - \n\n * `_checks` {`any[] | undefined`} - \n\n * `
|
|
482
|
+
"description": "Attributes:\n\n * `groupName` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `groupName` {`string`} - \n\n * `_buttonState` {`UUIButtonState`} - \n\n * `_group` - \n\n * `_healthCheckContext` - \n\n * `_checks` {`any[] | undefined`} - \n\n * `_idResults` {`any[] | undefined`} - \n\n * `_api` - ",
|
|
420
483
|
"attributes": [
|
|
421
484
|
{
|
|
422
485
|
"name": "groupName",
|
|
@@ -515,17 +578,17 @@
|
|
|
515
578
|
},
|
|
516
579
|
{
|
|
517
580
|
"name": "umb-language-root-workspace",
|
|
518
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - ",
|
|
581
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - \n\n * `_cultureNames` - ",
|
|
519
582
|
"attributes": []
|
|
520
583
|
},
|
|
521
584
|
{
|
|
522
|
-
"name": "umb-language-workspace-
|
|
523
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - ",
|
|
585
|
+
"name": "umb-language-workspace-edit",
|
|
586
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isNew` {`boolean`} - ",
|
|
524
587
|
"attributes": []
|
|
525
588
|
},
|
|
526
589
|
{
|
|
527
590
|
"name": "umb-language-workspace",
|
|
528
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`
|
|
591
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`any[]`} - ",
|
|
529
592
|
"attributes": []
|
|
530
593
|
},
|
|
531
594
|
{
|
|
@@ -662,7 +725,7 @@
|
|
|
662
725
|
},
|
|
663
726
|
{
|
|
664
727
|
"name": "umb-relation-type-workspace-view-relation-type",
|
|
665
|
-
"description": "Properties:\n\n * `
|
|
728
|
+
"description": "Properties:\n\n * `_relationType` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
666
729
|
"attributes": []
|
|
667
730
|
},
|
|
668
731
|
{
|
|
@@ -1190,7 +1253,7 @@
|
|
|
1190
1253
|
},
|
|
1191
1254
|
{
|
|
1192
1255
|
"name": "umb-input-document-picker",
|
|
1193
|
-
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `
|
|
1256
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `_selectedIds` {`string[]`} - \n\n * `selectedIds` {`string[]`} - \n\n * `_items` {`any[] | undefined`} - \n\n * `_modalContext` - \n\n * `_documentStore` - \n\n * `_pickedItemsObserver` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`string`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1194
1257
|
"attributes": [
|
|
1195
1258
|
{
|
|
1196
1259
|
"name": "min",
|
|
@@ -1222,7 +1285,7 @@
|
|
|
1222
1285
|
},
|
|
1223
1286
|
{
|
|
1224
1287
|
"name": "umb-input-document-type-picker",
|
|
1225
|
-
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `
|
|
1288
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_selectedIds` {`string[]`} - \n\n * `selectedIds` {`string[]`} - \n\n * `_items` {`any[] | undefined`} - \n\n * `_modalContext` - \n\n * `_documentTypeStore` - \n\n * `_pickedItemsObserver` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`string`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1226
1289
|
"attributes": [
|
|
1227
1290
|
{
|
|
1228
1291
|
"name": "value",
|
|
@@ -1283,7 +1346,7 @@
|
|
|
1283
1346
|
},
|
|
1284
1347
|
{
|
|
1285
1348
|
"name": "umb-input-media-picker",
|
|
1286
|
-
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `
|
|
1349
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `min-message` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `min` {number} - This is a minimum amount of selected items in this input.\n\n * `max` {number} - This is a maximum amount of selected items in this input.\n\n * `minMessage` {boolean} - Min validation message.\n\n * `maxMessage` {boolean} - Max validation message.\n\n * `_selectedIds` {`string[]`} - \n\n * `selectedIds` {`string[]`} - \n\n * `_items` {`any[] | undefined`} - \n\n * `_modalContext` - \n\n * `_pickedItemsObserver` - \n\n * `_repository` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`string`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1287
1350
|
"attributes": [
|
|
1288
1351
|
{
|
|
1289
1352
|
"name": "min",
|
|
@@ -1583,6 +1646,30 @@
|
|
|
1583
1646
|
}
|
|
1584
1647
|
]
|
|
1585
1648
|
},
|
|
1649
|
+
{
|
|
1650
|
+
"name": "umb-input-upload-field",
|
|
1651
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `keys` {Array<String>} - \n\n * `fileExtensions` {Array<String>} - \n\n * `multiple` {Boolean} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_keys` {`string[]`} - \n\n * `keys` {Array<String>} - \n\n * `fileExtensions` {Array<String>} - \n\n * `multiple` {Boolean} - \n\n * `_currentFiles` {`Blob[]`} - \n\n * `_currentFilesTemp` {`Blob[] | undefined`} - \n\n * `extensions` {`string[] | undefined`} - \n\n * `_dropzone` - \n\n * `_notificationContext` - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1652
|
+
"attributes": [
|
|
1653
|
+
{
|
|
1654
|
+
"name": "keys",
|
|
1655
|
+
"description": "`keys` {Array<String>} - \n\nProperty: keys\n\nDefault: []"
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"name": "fileExtensions",
|
|
1659
|
+
"description": "`fileExtensions` {Array<String>} - \n\nProperty: fileExtensions\n\nDefault: undefined",
|
|
1660
|
+
"values": []
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
"name": "multiple",
|
|
1664
|
+
"description": "`multiple` {Boolean} - \n\nProperty: multiple\n\nDefault: false",
|
|
1665
|
+
"valueSet": "v"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"name": "onchange",
|
|
1669
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1670
|
+
}
|
|
1671
|
+
]
|
|
1672
|
+
},
|
|
1586
1673
|
{
|
|
1587
1674
|
"name": "umb-input-user-group",
|
|
1588
1675
|
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string[]`} - \n\n * `multiple` {`boolean`} - \n\n * `modalType` - \n\n * `modalSize` {`UUIModalSidebarSize`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_userGroups` {`any[]`} - \n\n * `_userGroupStore` - \n\n * `value` {`string[]`} - \n\n * `multiple` {`boolean`} - \n\n * `modalType` - \n\n * `modalSize` {`UUIModalSidebarSize`} - \n\n * `pickerToken` - \n\n * `_modalContext` - ",
|
|
@@ -1825,7 +1912,7 @@
|
|
|
1825
1912
|
},
|
|
1826
1913
|
{
|
|
1827
1914
|
"name": "umb-template-card",
|
|
1828
|
-
"description": "Events:\n\n * `open` {`CustomEvent<unknown>`} - \n\n * `selected` {} - \n\n * `change-default` {`CustomEvent<unknown>`} - \n\nSlots:\n\n * `actions` {} - \n\nAttributes:\n\n * `default` {`boolean`} - \n\n * `
|
|
1915
|
+
"description": "Events:\n\n * `open` {`CustomEvent<unknown>`} - \n\n * `selected` {} - \n\n * `change-default` {`CustomEvent<unknown>`} - \n\nSlots:\n\n * `actions` {} - \n\nAttributes:\n\n * `default` {`boolean`} - \n\n * `id` {`string`} - \n\n * `name` {`string`} - \n\nProperties:\n\n * `default` {`boolean`} - \n\n * `_id` {`string`} - \n\n * `id` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `formAssociated` {`boolean`} - \n\n * `value` {`FormDataEntryValue | FormData`} - \n\n * `name` {`string`} - \n\n * `validationMessage` {`string`} - \n\n * `validity` {`ValidityState`} - \n\n * `_value` {`FormDataEntryValue | FormData`} - \n\n * `_internals` - \n\n * `addValidator` - \n\n * `pristine` {`boolean`} - \n\n * `required` {`boolean`} - \n\n * `requiredMessage` {`string`} - \n\n * `error` {`boolean`} - \n\n * `errorMessage` {`string`} - ",
|
|
1829
1916
|
"attributes": [
|
|
1830
1917
|
{
|
|
1831
1918
|
"name": "default",
|
|
@@ -1833,8 +1920,8 @@
|
|
|
1833
1920
|
"valueSet": "v"
|
|
1834
1921
|
},
|
|
1835
1922
|
{
|
|
1836
|
-
"name": "
|
|
1837
|
-
"description": "`
|
|
1923
|
+
"name": "id",
|
|
1924
|
+
"description": "`id` {`string`} - \n\nProperty: id"
|
|
1838
1925
|
},
|
|
1839
1926
|
{
|
|
1840
1927
|
"name": "name",
|
|
@@ -1977,7 +2064,7 @@
|
|
|
1977
2064
|
},
|
|
1978
2065
|
{
|
|
1979
2066
|
"name": "umb-workspace-action-menu",
|
|
1980
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `
|
|
2067
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `_entityId` {`string | undefined`} - \n\n * `_entityType` {`string | undefined`} - ",
|
|
1981
2068
|
"attributes": []
|
|
1982
2069
|
},
|
|
1983
2070
|
{
|
|
@@ -2002,7 +2089,7 @@
|
|
|
2002
2089
|
},
|
|
2003
2090
|
{
|
|
2004
2091
|
"name": "umb-workspace-layout",
|
|
2005
|
-
"description": "Slots:\n\n * `icon` {} - Slot for icon\n\n * `name` {} - Slot for name\n\n * `footer` {} - Slot for workspace footer\n\n * `actions` {} - Slot for workspace footer actions\n\n * `default` {} - slot for main content\n\nAttributes:\n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `alias` {string} - Alias of the workspace. The Layout will render the workspace views that are registered for this workspace alias.\n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `_alias` {`string`} - \n\n * `alias` {string} - Alias of the workspace. The Layout will render the workspace views that are registered for this workspace alias.\n\n * `_workspaceViews` {`any[]`} - \n\n * `_routes` {`any[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string | undefined`} - ",
|
|
2092
|
+
"description": "Slots:\n\n * `icon` {} - Slot for icon\n\n * `header` {} - Slot for workspace header\n\n * `name` {} - Slot for name\n\n * `footer` {} - Slot for workspace footer\n\n * `actions` {} - Slot for workspace footer actions\n\n * `default` {} - slot for main content\n\nAttributes:\n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `alias` {string} - Alias of the workspace. The Layout will render the workspace views that are registered for this workspace alias.\n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `headline` {`string`} - \n\n * `hideNavigation` {`boolean`} - \n\n * `enforceNoFooter` {`boolean`} - \n\n * `_alias` {`string`} - \n\n * `alias` {string} - Alias of the workspace. The Layout will render the workspace views that are registered for this workspace alias.\n\n * `_workspaceViews` {`any[]`} - \n\n * `_routes` {`any[] | undefined`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string | undefined`} - ",
|
|
2006
2093
|
"attributes": [
|
|
2007
2094
|
{
|
|
2008
2095
|
"name": "headline",
|
|
@@ -2026,7 +2113,7 @@
|
|
|
2026
2113
|
},
|
|
2027
2114
|
{
|
|
2028
2115
|
"name": "umb-workspace-property-layout",
|
|
2029
|
-
"description": "Slots:\n\n * `editor` {} - Slot for rendering the Property Editor\n\n * `description` {} - Slot for rendering things below the label.\n\n * `property-action-menu` {} - Slot for rendering the Property Action Menu\n\nAttributes:\n\n * `alias` {string} - Alias. The technical name of the property.\n\n * `label` {string} - Label. Name of the property.\n\n * `orientation` {string} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string} - Description: render a description underneath the label.\n\nProperties:\n\n * `
|
|
2116
|
+
"description": "Slots:\n\n * `editor` {} - Slot for rendering the Property Editor\n\n * `description` {} - Slot for rendering things below the label.\n\n * `property-action-menu` {} - Slot for rendering the Property Action Menu\n\nAttributes:\n\n * `alias` {string} - Alias. The technical name of the property.\n\n * `label` {string} - Label. Name of the property.\n\n * `orientation` {string} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string} - Description: render a description underneath the label.\n\nProperties:\n\n * `alias` {string} - Alias. The technical name of the property.\n\n * `label` {string} - Label. Name of the property.\n\n * `orientation` {string} - Orientation: Horizontal is the default where label goes left and editor right.\nVertical is where label goes above the editor.\n\n * `description` {string} - Description: render a description underneath the label.\n\n * `styles` {`CSSResult[]`} - ",
|
|
2030
2117
|
"attributes": [
|
|
2031
2118
|
{
|
|
2032
2119
|
"name": "alias",
|
|
@@ -2148,7 +2235,7 @@
|
|
|
2148
2235
|
},
|
|
2149
2236
|
{
|
|
2150
2237
|
"name": "umb-template-modal",
|
|
2151
|
-
"description": "Properties:\n\n * `
|
|
2238
|
+
"description": "Properties:\n\n * `_id` {`string`} - \n\n * `_template` - \n\n * `_codeEditor` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
2152
2239
|
"attributes": []
|
|
2153
2240
|
},
|
|
2154
2241
|
{
|
|
@@ -2274,7 +2361,7 @@
|
|
|
2274
2361
|
},
|
|
2275
2362
|
{
|
|
2276
2363
|
"name": "umb-property-editor-ui-block-grid-inner-test",
|
|
2277
|
-
"description": "Attributes:\n\n * `name` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `name` {`string`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string | undefined`} - \n\n * `_routes` {`
|
|
2364
|
+
"description": "Attributes:\n\n * `name` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `name` {`string`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string | undefined`} - \n\n * `_routes` {`any[]`} - ",
|
|
2278
2365
|
"attributes": [
|
|
2279
2366
|
{
|
|
2280
2367
|
"name": "name",
|
|
@@ -2284,7 +2371,7 @@
|
|
|
2284
2371
|
},
|
|
2285
2372
|
{
|
|
2286
2373
|
"name": "umb-property-editor-ui-block-grid",
|
|
2287
|
-
"description": "Attributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_variantContext` - \n\n * `value` {`string`} - \n\n * `config` {`never[]`} - \n\n * `_routes` {`
|
|
2374
|
+
"description": "Attributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_variantContext` - \n\n * `value` {`string`} - \n\n * `config` {`never[]`} - \n\n * `_routes` {`any[]`} - \n\n * `_routerPath` {`string | undefined`} - \n\n * `_activePath` {`string | undefined`} - \n\n * `_variantId` - ",
|
|
2288
2375
|
"attributes": [
|
|
2289
2376
|
{
|
|
2290
2377
|
"name": "value",
|
|
@@ -2797,11 +2884,15 @@
|
|
|
2797
2884
|
},
|
|
2798
2885
|
{
|
|
2799
2886
|
"name": "umb-property-editor-ui-upload-field",
|
|
2800
|
-
"description": "
|
|
2887
|
+
"description": "Events:\n\n * `property-value-change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `value` {`string`} - \n\n * `config` {`any[]`} - \n\n * `_fileExtensions` {`string[] | undefined`} - \n\n * `_multiple` {`boolean | undefined`} - ",
|
|
2801
2888
|
"attributes": [
|
|
2802
2889
|
{
|
|
2803
2890
|
"name": "value",
|
|
2804
2891
|
"description": "`value` {`string`} - \n\nProperty: value\n\nDefault: "
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
"name": "onproperty-value-change",
|
|
2895
|
+
"description": "`property-value-change` {`CustomEvent<unknown>`} - "
|
|
2805
2896
|
}
|
|
2806
2897
|
]
|
|
2807
2898
|
},
|
|
@@ -2862,7 +2953,7 @@
|
|
|
2862
2953
|
},
|
|
2863
2954
|
{
|
|
2864
2955
|
"name": "umb-import-dictionary-modal",
|
|
2865
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - \n\n * `
|
|
2956
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - \n\n * `_uploadedDictionaryTempId` {`string | undefined`} - \n\n * `_showUploadView` {`boolean`} - \n\n * `_showImportView` {`boolean`} - \n\n * `_showErrorView` {`boolean`} - \n\n * `_selection` {`string[]`} - ",
|
|
2866
2957
|
"attributes": []
|
|
2867
2958
|
},
|
|
2868
2959
|
{
|
package/workspace.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ declare class UmbSaveWorkspaceAction extends UmbWorkspaceActionBase<UmbWorkspace
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
interface UmbEntityWorkspaceContextInterface<EntityType = unknown> extends UmbWorkspaceContextInterface$1<EntityType> {
|
|
35
|
-
|
|
35
|
+
getEntityId(): string | undefined;
|
|
36
36
|
getEntityType(): string;
|
|
37
37
|
save(): Promise<void>;
|
|
38
38
|
}
|