@umbraco-cms/backoffice 1.0.0-next.de0ffca0 → 1.0.0-next.f2af51c4
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 +594 -272
- package/context-api.d.ts +62 -2
- package/controller.d.ts +2 -1
- package/custom-elements.json +525 -57
- package/element.d.ts +1 -1
- package/entity-action.d.ts +19 -2
- package/extensions-api.d.ts +2 -1
- package/extensions-registry.d.ts +6 -3
- package/modal.d.ts +27 -318
- package/models.d.ts +8 -8
- package/observable-api.d.ts +62 -48
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/repository.d.ts +65 -28
- package/router.d.ts +272 -22
- package/store.d.ts +48 -53
- package/utils.d.ts +3 -1
- package/vscode-html-custom-data.json +219 -53
- package/workspace.d.ts +4 -4
|
@@ -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",
|
|
@@ -454,6 +517,48 @@
|
|
|
454
517
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_telemetryFormData` - \n\n * `_telemetryLevels` {`any[]`} - \n\n * `_errorMessage` {`string`} - \n\n * `_buttonState` {`UUIButtonState`} - \n\n * `_handleSubmit` - \n\n * `_selectedTelemetryIndex` {`number`} - \n\n * `_selectedTelemetry` - \n\n * `_selectedTelemetryDescription` {`\"We will only send an anonymized site ID to let us know that the site exists.\" | \"We will send an anonymized site ID, Umbraco version, and packages installed.\" | \"We will send:<ul>\\n\\t\\t\\t\\t<li>Anonymized site ID, Umbraco version, and packages installed.</li>\\n\\t\\t\\t\\t<li>Number of: Root nodes, Content nodes, Macros...`} - ",
|
|
455
518
|
"attributes": []
|
|
456
519
|
},
|
|
520
|
+
{
|
|
521
|
+
"name": "umb-data-type-input",
|
|
522
|
+
"description": "Attributes:\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 * `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 * `_items` {`any[] | undefined`} - \n\n * `styles` {`CSSResult[]`} - \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`} - ",
|
|
523
|
+
"attributes": [
|
|
524
|
+
{
|
|
525
|
+
"name": "min",
|
|
526
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: 0"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "max",
|
|
530
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: Infinity"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "min-message",
|
|
534
|
+
"description": "`min-message` {boolean} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "maxMessage",
|
|
538
|
+
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"name": "value",
|
|
542
|
+
"description": "`value` {`string`} - \n\nProperty: value"
|
|
543
|
+
}
|
|
544
|
+
]
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"name": "umb-data-type-create-options-modal",
|
|
548
|
+
"description": "Attributes:\n\n * `data` {`UmbDataTypeCreateOptionsModalData | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` {`UmbDataTypeCreateOptionsModalData | undefined`} - ",
|
|
549
|
+
"attributes": [
|
|
550
|
+
{
|
|
551
|
+
"name": "data",
|
|
552
|
+
"description": "`data` {`UmbDataTypeCreateOptionsModalData | undefined`} - \n\nProperty: data",
|
|
553
|
+
"values": []
|
|
554
|
+
}
|
|
555
|
+
]
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"name": "umb-data-type-picker-modal",
|
|
559
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` - \n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - ",
|
|
560
|
+
"attributes": []
|
|
561
|
+
},
|
|
457
562
|
{
|
|
458
563
|
"name": "umb-data-type-workspace-edit-element",
|
|
459
564
|
"description": "Attributes:\n\n * `manifest` - \n\n * `location` - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` - \n\n * `location` - \n\n * `_dataTypeName` {`string`} - ",
|
|
@@ -510,22 +615,22 @@
|
|
|
510
615
|
},
|
|
511
616
|
{
|
|
512
617
|
"name": "umb-language-root-workspace",
|
|
513
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - ",
|
|
618
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - \n\n * `_cultureNames` - ",
|
|
514
619
|
"attributes": []
|
|
515
620
|
},
|
|
516
621
|
{
|
|
517
|
-
"name": "umb-language-workspace-
|
|
518
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - ",
|
|
622
|
+
"name": "umb-language-workspace-edit",
|
|
623
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isNew` {`boolean | undefined`} - ",
|
|
519
624
|
"attributes": []
|
|
520
625
|
},
|
|
521
626
|
{
|
|
522
627
|
"name": "umb-language-workspace",
|
|
523
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`
|
|
628
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`any[]`} - ",
|
|
524
629
|
"attributes": []
|
|
525
630
|
},
|
|
526
631
|
{
|
|
527
632
|
"name": "umb-language-details-workspace-view",
|
|
528
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isDefaultLanguage` {`boolean`} - \n\n * `_isNew` {`boolean`} - \n\n * `_validationErrors` - ",
|
|
633
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isDefaultLanguage` {`boolean`} - \n\n * `_isNew` {`boolean | undefined`} - \n\n * `_validationErrors` - ",
|
|
529
634
|
"attributes": []
|
|
530
635
|
},
|
|
531
636
|
{
|
|
@@ -635,9 +740,14 @@
|
|
|
635
740
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_pollingPopover` - \n\n * `_polingExpandSymbol` - \n\n * `_poolingConfig` {`PoolingCOnfig`} - ",
|
|
636
741
|
"attributes": []
|
|
637
742
|
},
|
|
743
|
+
{
|
|
744
|
+
"name": "umb-log-viewer-save-search-modal",
|
|
745
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_input` - \n\n * `_hasValue` {`boolean`} - ",
|
|
746
|
+
"attributes": []
|
|
747
|
+
},
|
|
638
748
|
{
|
|
639
749
|
"name": "umb-log-viewer-search-input",
|
|
640
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_savedSearchesPopover` - \n\n * `_savedSearchesExpandSymbol` - \n\n * `_savedSearches` {`any[]`} - \n\n * `_inputQuery` {`string`} - ",
|
|
750
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_savedSearchesPopover` - \n\n * `_savedSearchesExpandSymbol` - \n\n * `_savedSearches` {`any[]`} - \n\n * `_inputQuery` {`string`} - \n\n * `_showLoader` {`boolean`} - \n\n * `inputQuery$` - \n\n * `_modalContext` - ",
|
|
641
751
|
"attributes": []
|
|
642
752
|
},
|
|
643
753
|
{
|
|
@@ -657,7 +767,7 @@
|
|
|
657
767
|
},
|
|
658
768
|
{
|
|
659
769
|
"name": "umb-relation-type-workspace-view-relation-type",
|
|
660
|
-
"description": "Properties:\n\n * `
|
|
770
|
+
"description": "Properties:\n\n * `_relationType` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
661
771
|
"attributes": []
|
|
662
772
|
},
|
|
663
773
|
{
|
|
@@ -856,7 +966,7 @@
|
|
|
856
966
|
]
|
|
857
967
|
},
|
|
858
968
|
{
|
|
859
|
-
"name": "
|
|
969
|
+
"name": "umb-code-block",
|
|
860
970
|
"description": "A simple styled box for showing code-based error messages.\n\nSlots:\n\n * ` ` {} - the full message\n\nProperties:\n\n * `styles` {`CSSResult[]`} - ",
|
|
861
971
|
"attributes": []
|
|
862
972
|
},
|
|
@@ -934,21 +1044,17 @@
|
|
|
934
1044
|
},
|
|
935
1045
|
{
|
|
936
1046
|
"name": "umb-debug",
|
|
937
|
-
"description": "Attributes:\n\n * `
|
|
1047
|
+
"description": "Attributes:\n\n * `visible` {`boolean`} - \n\n * `dialog` {`boolean`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `visible` {`boolean`} - \n\n * `dialog` {`boolean`} - \n\n * `contextData` {`any[]`} - \n\n * `_debugPaneOpen` {`boolean`} - \n\n * `_modalContext` - ",
|
|
938
1048
|
"attributes": [
|
|
939
1049
|
{
|
|
940
|
-
"name": "
|
|
941
|
-
"description": "`
|
|
1050
|
+
"name": "visible",
|
|
1051
|
+
"description": "`visible` {`boolean`} - \n\nProperty: visible\n\nDefault: false",
|
|
942
1052
|
"valueSet": "v"
|
|
943
1053
|
},
|
|
944
1054
|
{
|
|
945
1055
|
"name": "dialog",
|
|
946
1056
|
"description": "`dialog` {`boolean`} - \n\nProperty: dialog\n\nDefault: false",
|
|
947
1057
|
"valueSet": "v"
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
"name": "contexts",
|
|
951
|
-
"description": "`contexts` {`Map<any, any>`} - \n\nProperty: contexts\n\nDefault: new Map()"
|
|
952
1058
|
}
|
|
953
1059
|
]
|
|
954
1060
|
},
|
|
@@ -1189,7 +1295,7 @@
|
|
|
1189
1295
|
},
|
|
1190
1296
|
{
|
|
1191
1297
|
"name": "umb-input-document-picker",
|
|
1192
|
-
"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 * `
|
|
1298
|
+
"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`} - ",
|
|
1193
1299
|
"attributes": [
|
|
1194
1300
|
{
|
|
1195
1301
|
"name": "min",
|
|
@@ -1221,7 +1327,7 @@
|
|
|
1221
1327
|
},
|
|
1222
1328
|
{
|
|
1223
1329
|
"name": "umb-input-document-type-picker",
|
|
1224
|
-
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `value` {`string`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `
|
|
1330
|
+
"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`} - ",
|
|
1225
1331
|
"attributes": [
|
|
1226
1332
|
{
|
|
1227
1333
|
"name": "value",
|
|
@@ -1254,17 +1360,15 @@
|
|
|
1254
1360
|
},
|
|
1255
1361
|
{
|
|
1256
1362
|
"name": "umb-input-language-picker",
|
|
1257
|
-
"description": "Attributes:\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 * `
|
|
1363
|
+
"description": "Attributes:\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 * `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 * `filter` - \n\n * `selectedIsoCodes` {`string[]`} - \n\n * `_items` {`any[]`} - \n\n * `styles` {`CSSResult[]`} - \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`} - ",
|
|
1258
1364
|
"attributes": [
|
|
1259
1365
|
{
|
|
1260
1366
|
"name": "min",
|
|
1261
|
-
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault:
|
|
1262
|
-
"values": []
|
|
1367
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: 0"
|
|
1263
1368
|
},
|
|
1264
1369
|
{
|
|
1265
1370
|
"name": "max",
|
|
1266
|
-
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault:
|
|
1267
|
-
"values": []
|
|
1371
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: Infinity"
|
|
1268
1372
|
},
|
|
1269
1373
|
{
|
|
1270
1374
|
"name": "min-message",
|
|
@@ -1282,7 +1386,7 @@
|
|
|
1282
1386
|
},
|
|
1283
1387
|
{
|
|
1284
1388
|
"name": "umb-input-media-picker",
|
|
1285
|
-
"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 * `
|
|
1389
|
+
"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`} - ",
|
|
1286
1390
|
"attributes": [
|
|
1287
1391
|
{
|
|
1288
1392
|
"name": "min",
|
|
@@ -1582,6 +1686,30 @@
|
|
|
1582
1686
|
}
|
|
1583
1687
|
]
|
|
1584
1688
|
},
|
|
1689
|
+
{
|
|
1690
|
+
"name": "umb-input-upload-field",
|
|
1691
|
+
"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`} - ",
|
|
1692
|
+
"attributes": [
|
|
1693
|
+
{
|
|
1694
|
+
"name": "keys",
|
|
1695
|
+
"description": "`keys` {Array<String>} - \n\nProperty: keys\n\nDefault: []"
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"name": "fileExtensions",
|
|
1699
|
+
"description": "`fileExtensions` {Array<String>} - \n\nProperty: fileExtensions\n\nDefault: undefined",
|
|
1700
|
+
"values": []
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
"name": "multiple",
|
|
1704
|
+
"description": "`multiple` {Boolean} - \n\nProperty: multiple\n\nDefault: false",
|
|
1705
|
+
"valueSet": "v"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"name": "onchange",
|
|
1709
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1710
|
+
}
|
|
1711
|
+
]
|
|
1712
|
+
},
|
|
1585
1713
|
{
|
|
1586
1714
|
"name": "umb-input-user-group",
|
|
1587
1715
|
"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` - ",
|
|
@@ -1664,9 +1792,33 @@
|
|
|
1664
1792
|
}
|
|
1665
1793
|
]
|
|
1666
1794
|
},
|
|
1795
|
+
{
|
|
1796
|
+
"name": "umb-menu-item-base",
|
|
1797
|
+
"description": "Attributes:\n\n * `entity-type` {`string | undefined`} - \n\n * `icon-name` {`string`} - \n\n * `label` {`string`} - \n\n * `has-children` {`boolean`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_entityType` {`string | undefined`} - \n\n * `entityType` {`string | undefined`} - \n\n * `iconName` {`string`} - \n\n * `label` {`string`} - \n\n * `hasChildren` {`boolean`} - \n\n * `_href` {`string | undefined`} - \n\n * `_hasActions` {`boolean`} - ",
|
|
1798
|
+
"attributes": [
|
|
1799
|
+
{
|
|
1800
|
+
"name": "entity-type",
|
|
1801
|
+
"description": "`entity-type` {`string | undefined`} - \n\nProperty: entityType",
|
|
1802
|
+
"values": []
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"name": "icon-name",
|
|
1806
|
+
"description": "`icon-name` {`string`} - \n\nProperty: iconName\n\nDefault: "
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"name": "label",
|
|
1810
|
+
"description": "`label` {`string`} - \n\nProperty: label\n\nDefault: "
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"name": "has-children",
|
|
1814
|
+
"description": "`has-children` {`boolean`} - \n\nProperty: hasChildren\n\nDefault: false",
|
|
1815
|
+
"valueSet": "v"
|
|
1816
|
+
}
|
|
1817
|
+
]
|
|
1818
|
+
},
|
|
1667
1819
|
{
|
|
1668
1820
|
"name": "umb-menu-item",
|
|
1669
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` -
|
|
1821
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` - ",
|
|
1670
1822
|
"attributes": []
|
|
1671
1823
|
},
|
|
1672
1824
|
{
|
|
@@ -1800,7 +1952,7 @@
|
|
|
1800
1952
|
},
|
|
1801
1953
|
{
|
|
1802
1954
|
"name": "umb-template-card",
|
|
1803
|
-
"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 * `
|
|
1955
|
+
"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`} - ",
|
|
1804
1956
|
"attributes": [
|
|
1805
1957
|
{
|
|
1806
1958
|
"name": "default",
|
|
@@ -1808,8 +1960,8 @@
|
|
|
1808
1960
|
"valueSet": "v"
|
|
1809
1961
|
},
|
|
1810
1962
|
{
|
|
1811
|
-
"name": "
|
|
1812
|
-
"description": "`
|
|
1963
|
+
"name": "id",
|
|
1964
|
+
"description": "`id` {`string`} - \n\nProperty: id"
|
|
1813
1965
|
},
|
|
1814
1966
|
{
|
|
1815
1967
|
"name": "name",
|
|
@@ -1871,7 +2023,7 @@
|
|
|
1871
2023
|
},
|
|
1872
2024
|
{
|
|
1873
2025
|
"name": "umb-tree",
|
|
1874
|
-
"description": "Events:\n\n * `selected` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `alias` {`string`} - \n\n * `selectable` {`boolean`} - \n\n * `selection` {`string[]`} - \n\nProperties:\n\n * `_alias` {`string`} - \n\n * `alias` {`string`} - \n\n * `_selectable` {`boolean`} - \n\n * `selectable` {`boolean`} - \n\n * `_selection` {`string[]`} - \n\n * `selection` {`string[]`} - \n\n * `_tree` - \n\n * `_items` {`any[]`} - \n\n * `_treeContext` - ",
|
|
2026
|
+
"description": "Events:\n\n * `selected` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `alias` {`string`} - \n\n * `selectable` {`boolean`} - \n\n * `selection` {`string[]`} - \n\n * `multiple` {`boolean`} - \n\nProperties:\n\n * `_alias` {`string`} - \n\n * `alias` {`string`} - \n\n * `_selectable` {`boolean`} - \n\n * `selectable` {`boolean`} - \n\n * `_selection` {`string[]`} - \n\n * `selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - \n\n * `multiple` {`boolean`} - \n\n * `_tree` - \n\n * `_items` {`any[]`} - \n\n * `_treeContext` - ",
|
|
1875
2027
|
"attributes": [
|
|
1876
2028
|
{
|
|
1877
2029
|
"name": "alias",
|
|
@@ -1886,6 +2038,11 @@
|
|
|
1886
2038
|
"name": "selection",
|
|
1887
2039
|
"description": "`selection` {`string[]`} - \n\nProperty: selection"
|
|
1888
2040
|
},
|
|
2041
|
+
{
|
|
2042
|
+
"name": "multiple",
|
|
2043
|
+
"description": "`multiple` {`boolean`} - \n\nProperty: multiple",
|
|
2044
|
+
"valueSet": "v"
|
|
2045
|
+
},
|
|
1889
2046
|
{
|
|
1890
2047
|
"name": "onselected",
|
|
1891
2048
|
"description": "`selected` {`CustomEvent<unknown>`} - "
|
|
@@ -1952,7 +2109,7 @@
|
|
|
1952
2109
|
},
|
|
1953
2110
|
{
|
|
1954
2111
|
"name": "umb-workspace-action-menu",
|
|
1955
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `
|
|
2112
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `_entityId` {`string | undefined`} - \n\n * `_entityType` {`string | undefined`} - ",
|
|
1956
2113
|
"attributes": []
|
|
1957
2114
|
},
|
|
1958
2115
|
{
|
|
@@ -1977,7 +2134,7 @@
|
|
|
1977
2134
|
},
|
|
1978
2135
|
{
|
|
1979
2136
|
"name": "umb-workspace-layout",
|
|
1980
|
-
"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`} - ",
|
|
2137
|
+
"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`} - ",
|
|
1981
2138
|
"attributes": [
|
|
1982
2139
|
{
|
|
1983
2140
|
"name": "headline",
|
|
@@ -2001,7 +2158,7 @@
|
|
|
2001
2158
|
},
|
|
2002
2159
|
{
|
|
2003
2160
|
"name": "umb-workspace-property-layout",
|
|
2004
|
-
"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 * `
|
|
2161
|
+
"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[]`} - ",
|
|
2005
2162
|
"attributes": [
|
|
2006
2163
|
{
|
|
2007
2164
|
"name": "alias",
|
|
@@ -2078,6 +2235,11 @@
|
|
|
2078
2235
|
}
|
|
2079
2236
|
]
|
|
2080
2237
|
},
|
|
2238
|
+
{
|
|
2239
|
+
"name": "umb-folder-modal",
|
|
2240
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `_data` - \n\n * `data` - \n\n * `_folder` - \n\n * `_headline` {`string | undefined`} - \n\n * `_isNew` {`boolean`} - \n\n * `_formElement` {`HTMLFormElement | undefined`} - ",
|
|
2241
|
+
"attributes": []
|
|
2242
|
+
},
|
|
2081
2243
|
{
|
|
2082
2244
|
"name": "umb-icon-picker-modal",
|
|
2083
2245
|
"description": "Attributes:\n\n * `iconlist` - \n\n * `iconlistFiltered` {`string[]`} - \n\n * `colorlist` {`string[]`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `iconlist` - \n\n * `iconlistFiltered` {`string[]`} - \n\n * `colorlist` {`string[]`} - \n\n * `_currentColor` {`string | undefined`} - \n\n * `_currentIcon` {`string | undefined`} - ",
|
|
@@ -2118,7 +2280,7 @@
|
|
|
2118
2280
|
},
|
|
2119
2281
|
{
|
|
2120
2282
|
"name": "umb-template-modal",
|
|
2121
|
-
"description": "Properties:\n\n * `
|
|
2283
|
+
"description": "Properties:\n\n * `_id` {`string`} - \n\n * `_template` - \n\n * `_codeEditor` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
2122
2284
|
"attributes": []
|
|
2123
2285
|
},
|
|
2124
2286
|
{
|
|
@@ -2244,7 +2406,7 @@
|
|
|
2244
2406
|
},
|
|
2245
2407
|
{
|
|
2246
2408
|
"name": "umb-property-editor-ui-block-grid-inner-test",
|
|
2247
|
-
"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` {`
|
|
2409
|
+
"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[]`} - ",
|
|
2248
2410
|
"attributes": [
|
|
2249
2411
|
{
|
|
2250
2412
|
"name": "name",
|
|
@@ -2254,7 +2416,7 @@
|
|
|
2254
2416
|
},
|
|
2255
2417
|
{
|
|
2256
2418
|
"name": "umb-property-editor-ui-block-grid",
|
|
2257
|
-
"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` {`
|
|
2419
|
+
"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` - ",
|
|
2258
2420
|
"attributes": [
|
|
2259
2421
|
{
|
|
2260
2422
|
"name": "value",
|
|
@@ -2767,11 +2929,15 @@
|
|
|
2767
2929
|
},
|
|
2768
2930
|
{
|
|
2769
2931
|
"name": "umb-property-editor-ui-upload-field",
|
|
2770
|
-
"description": "
|
|
2932
|
+
"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`} - ",
|
|
2771
2933
|
"attributes": [
|
|
2772
2934
|
{
|
|
2773
2935
|
"name": "value",
|
|
2774
2936
|
"description": "`value` {`string`} - \n\nProperty: value\n\nDefault: "
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
"name": "onproperty-value-change",
|
|
2940
|
+
"description": "`property-value-change` {`CustomEvent<unknown>`} - "
|
|
2775
2941
|
}
|
|
2776
2942
|
]
|
|
2777
2943
|
},
|
|
@@ -2832,7 +2998,7 @@
|
|
|
2832
2998
|
},
|
|
2833
2999
|
{
|
|
2834
3000
|
"name": "umb-import-dictionary-modal",
|
|
2835
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - \n\n * `
|
|
3001
|
+
"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[]`} - ",
|
|
2836
3002
|
"attributes": []
|
|
2837
3003
|
},
|
|
2838
3004
|
{
|
|
@@ -3033,7 +3199,7 @@
|
|
|
3033
3199
|
"attributes": []
|
|
3034
3200
|
},
|
|
3035
3201
|
{
|
|
3036
|
-
"name": "story-modal-context-example",
|
|
3202
|
+
"name": "umb-story-modal-context-example",
|
|
3037
3203
|
"description": "Attributes:\n\n * `modalLayout` {`string`} - \n\nProperties:\n\n * `modalLayout` {`string`} - \n\n * `value` {`string`} - \n\n * `_modalContext` - ",
|
|
3038
3204
|
"attributes": [
|
|
3039
3205
|
{
|
|
@@ -3053,7 +3219,7 @@
|
|
|
3053
3219
|
]
|
|
3054
3220
|
},
|
|
3055
3221
|
{
|
|
3056
|
-
"name": "story-notification-default-example",
|
|
3222
|
+
"name": "umb-story-notification-default-example",
|
|
3057
3223
|
"description": "Properties:\n\n * `_notificationContext` - \n\n * `_handleNotification` - ",
|
|
3058
3224
|
"attributes": []
|
|
3059
3225
|
},
|
package/workspace.d.ts
CHANGED
|
@@ -16,23 +16,23 @@ declare class UmbWorkspaceActionBase<WorkspaceType> {
|
|
|
16
16
|
interface UmbWorkspaceContextInterface<DataType = unknown> {
|
|
17
17
|
host: UmbControllerHostElement;
|
|
18
18
|
repository: any;
|
|
19
|
-
isNew: Observable<boolean>;
|
|
20
|
-
getIsNew(): boolean;
|
|
19
|
+
isNew: Observable<boolean | undefined>;
|
|
20
|
+
getIsNew(): boolean | undefined;
|
|
21
21
|
setIsNew(value: boolean): void;
|
|
22
22
|
getEntityType(): string;
|
|
23
23
|
getData(): DataType | undefined;
|
|
24
|
+
save(): Promise<void>;
|
|
24
25
|
destroy(): void;
|
|
25
26
|
setValidationErrors?(errorMap: any): void;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
declare class UmbSaveWorkspaceAction extends UmbWorkspaceActionBase<UmbWorkspaceContextInterface> {
|
|
29
|
-
#private;
|
|
30
30
|
constructor(host: UmbControllerHostElement);
|
|
31
31
|
execute(): Promise<void>;
|
|
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
|
}
|