@umbraco-cms/backoffice 1.0.0-next.d01c4274 → 1.0.0-next.d2c0dcf1
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 +4 -4
- package/controller.d.ts +3 -2
- package/custom-elements.json +768 -390
- package/element.d.ts +5 -5
- package/entity-action.d.ts +6 -13
- package/extensions-api.d.ts +5 -4
- package/extensions-registry.d.ts +171 -10
- package/modal.d.ts +24 -324
- package/models.d.ts +9 -9
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +75 -49
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/property-editor.d.ts +1 -1
- package/repository.d.ts +53 -28
- package/resources.d.ts +7 -5
- package/router.d.ts +275 -25
- package/sorter.d.ts +103 -0
- package/store.d.ts +51 -56
- package/umbraco-package-schema.json +2439 -0
- package/utils.d.ts +4 -2
- package/vscode-html-custom-data.json +214 -81
- package/workspace.d.ts +6 -6
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"name": "umb-document-type-workspace-editor",
|
|
55
|
-
"description": "Properties:\n\n * `
|
|
55
|
+
"description": "Properties:\n\n * `_icon` {`string | undefined`} - \n\n * `_iconColorAlias` {`string | undefined`} - \n\n * `_name` {`string | undefined`} - \n\n * `_alias` {`string | undefined`} - \n\n * `_modalContext` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
56
56
|
"attributes": []
|
|
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,19 +65,92 @@
|
|
|
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-id` {`string | undefined`} - \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-id",
|
|
74
|
+
"description": "`container-id` {`string | undefined`} - \n\nProperty: containerId",
|
|
75
|
+
"values": []
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "container-name",
|
|
79
|
+
"description": "`container-name` {`string | undefined`} - \n\nProperty: containerName",
|
|
80
|
+
"values": []
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "container-type",
|
|
84
|
+
"description": "`container-type` {`PropertyContainerTypes | undefined`} - \n\nProperty: containerType",
|
|
85
|
+
"values": [
|
|
86
|
+
{
|
|
87
|
+
"name": "Group"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "Tab"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "document-type-workspace-view-edit-property",
|
|
98
|
+
"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` {PropertyTypeResponseModelBaseModel} - Property, the data object for the property.\n\n * `inherited` {boolean} - Inherited, Determines if the property is part of the main document type thats being edited.\nIf true, then the property is inherited from another document type, not a part of the main document type.\n\nProperties:\n\n * `property` {PropertyTypeResponseModelBaseModel} - Property, the data object for the property.\n\n * `inherited` {boolean} - Inherited, Determines if the property is part of the main document type thats being edited.\nIf true, then the property is inherited from another document type, not a part of the main document type.\n\n * `styles` {`CSSResult[]`} - ",
|
|
99
|
+
"attributes": [
|
|
100
|
+
{
|
|
101
|
+
"name": "property",
|
|
102
|
+
"description": "`property` {PropertyTypeResponseModelBaseModel} - Property, the data object for the property.\n\nProperty: property\n\nDefault: undefined"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "inherited",
|
|
106
|
+
"description": "`inherited` {boolean} - Inherited, Determines if the property is part of the main document type thats being edited.\nIf true, then the property is inherited from another document type, not a part of the main document type.\n\nProperty: inherited\n\nDefault: undefined",
|
|
107
|
+
"values": []
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "onpartial-property-update",
|
|
111
|
+
"description": "`partial-property-update` {`CustomEvent<any>`} - "
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "umb-document-type-workspace-view-edit-tab",
|
|
117
|
+
"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`} - ",
|
|
118
|
+
"attributes": [
|
|
119
|
+
{
|
|
120
|
+
"name": "ownerTabId",
|
|
121
|
+
"description": "`ownerTabId` {`string | undefined`} - \n\nProperty: ownerTabId",
|
|
122
|
+
"values": []
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "tabName",
|
|
126
|
+
"description": "`tabName` {`string | undefined`} - \n\nProperty: tabName",
|
|
127
|
+
"values": []
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "noTabName",
|
|
131
|
+
"description": "`noTabName` {`boolean`} - \n\nProperty: noTabName",
|
|
132
|
+
"valueSet": "v"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "umb-document-type-workspace-view-edit",
|
|
138
|
+
"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` - ",
|
|
139
|
+
"attributes": []
|
|
140
|
+
},
|
|
68
141
|
{
|
|
69
142
|
"name": "umb-document-type-workspace-view-details",
|
|
70
|
-
"description": "Properties:\n\n * `
|
|
143
|
+
"description": "Properties:\n\n * `_variesByCulture` {`boolean | undefined`} - \n\n * `_variesBySegment` {`boolean | undefined`} - \n\n * `_isElement` {`boolean | undefined`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
71
144
|
"attributes": []
|
|
72
145
|
},
|
|
73
146
|
{
|
|
74
147
|
"name": "umb-document-type-workspace-view-structure",
|
|
75
|
-
"description": "Properties:\n\n * `
|
|
148
|
+
"description": "Properties:\n\n * `_allowedAsRoot` {`boolean | undefined`} - \n\n * `_allowedContentTypeIDs` {`string[] | undefined`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
76
149
|
"attributes": []
|
|
77
150
|
},
|
|
78
151
|
{
|
|
79
152
|
"name": "umb-document-type-workspace-view-templates",
|
|
80
|
-
"description": "Properties:\n\n * `
|
|
153
|
+
"description": "Properties:\n\n * `_defaultTemplateId` {`string | null | undefined`} - \n\n * `_allowedTemplateIds` {`string[] | undefined`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
81
154
|
"attributes": []
|
|
82
155
|
},
|
|
83
156
|
{
|
|
@@ -116,22 +189,22 @@
|
|
|
116
189
|
},
|
|
117
190
|
{
|
|
118
191
|
"name": "umb-document-workspace-editor",
|
|
119
|
-
"description": "Properties:\n\n * `
|
|
192
|
+
"description": "Properties:\n\n * `splitViewElement` - \n\n * `_unique` {`string | undefined`} - \n\n * `_routes` {`any[] | undefined`} - \n\n * `_availableVariants` {`any[]`} - \n\n * `_workspaceSplitViews` {`ActiveVariant[]`} - \n\n * `_gotWorkspaceRoute` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
120
193
|
"attributes": []
|
|
121
194
|
},
|
|
122
195
|
{
|
|
123
196
|
"name": "umb-document-workspace-split-view",
|
|
124
|
-
"description": "Properties:\n\n * `
|
|
197
|
+
"description": "Properties:\n\n * `_workspaceContext` - \n\n * `_unique` {`string | undefined`} - \n\n * `_variants` {`ActiveVariant[] | undefined`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
125
198
|
"attributes": []
|
|
126
199
|
},
|
|
127
200
|
{
|
|
128
201
|
"name": "umb-document-workspace",
|
|
129
|
-
"description": "Properties:\n\n * `
|
|
202
|
+
"description": "Properties:\n\n * `_routes` {`any[]`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
130
203
|
"attributes": []
|
|
131
204
|
},
|
|
132
205
|
{
|
|
133
206
|
"name": "umb-document-workspace-view-edit-properties",
|
|
134
|
-
"description": "Attributes:\n\n * `container-name` {`string | undefined`} - \n\n * `container-type` {
|
|
207
|
+
"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
208
|
"attributes": [
|
|
136
209
|
{
|
|
137
210
|
"name": "container-name",
|
|
@@ -140,7 +213,7 @@
|
|
|
140
213
|
},
|
|
141
214
|
{
|
|
142
215
|
"name": "container-type",
|
|
143
|
-
"description": "`container-type` {
|
|
216
|
+
"description": "`container-type` {`PropertyContainerTypes | undefined`} - \n\nProperty: containerType",
|
|
144
217
|
"values": [
|
|
145
218
|
{
|
|
146
219
|
"name": "Group"
|
|
@@ -154,7 +227,7 @@
|
|
|
154
227
|
},
|
|
155
228
|
{
|
|
156
229
|
"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 * `
|
|
230
|
+
"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
231
|
"attributes": [
|
|
159
232
|
{
|
|
160
233
|
"name": "tabName",
|
|
@@ -170,7 +243,7 @@
|
|
|
170
243
|
},
|
|
171
244
|
{
|
|
172
245
|
"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` - ",
|
|
246
|
+
"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
247
|
"attributes": []
|
|
175
248
|
},
|
|
176
249
|
{
|
|
@@ -219,7 +292,7 @@
|
|
|
219
292
|
},
|
|
220
293
|
{
|
|
221
294
|
"name": "umb-media-workspace-edit",
|
|
222
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `
|
|
295
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_id` {`string | undefined`} - ",
|
|
223
296
|
"attributes": []
|
|
224
297
|
},
|
|
225
298
|
{
|
|
@@ -279,22 +352,22 @@
|
|
|
279
352
|
},
|
|
280
353
|
{
|
|
281
354
|
"name": "umb-workspace-package-builder",
|
|
282
|
-
"description": "Attributes:\n\n * `
|
|
355
|
+
"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
356
|
"attributes": [
|
|
284
357
|
{
|
|
285
|
-
"name": "
|
|
286
|
-
"description": "`
|
|
358
|
+
"name": "entityId",
|
|
359
|
+
"description": "`entityId` {`string | undefined`} - \n\nProperty: entityId",
|
|
287
360
|
"values": []
|
|
288
361
|
}
|
|
289
362
|
]
|
|
290
363
|
},
|
|
291
364
|
{
|
|
292
365
|
"name": "umb-workspace-package",
|
|
293
|
-
"description": "Attributes:\n\n * `
|
|
366
|
+
"description": "Attributes:\n\n * `entityId` {`string | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `entityId` {`string | undefined`} - \n\n * `_package` - ",
|
|
294
367
|
"attributes": [
|
|
295
368
|
{
|
|
296
|
-
"name": "
|
|
297
|
-
"description": "`
|
|
369
|
+
"name": "entityId",
|
|
370
|
+
"description": "`entityId` {`string | undefined`} - \n\nProperty: entityId",
|
|
298
371
|
"values": []
|
|
299
372
|
}
|
|
300
373
|
]
|
|
@@ -416,7 +489,7 @@
|
|
|
416
489
|
},
|
|
417
490
|
{
|
|
418
491
|
"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 * `
|
|
492
|
+
"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
493
|
"attributes": [
|
|
421
494
|
{
|
|
422
495
|
"name": "groupName",
|
|
@@ -455,8 +528,45 @@
|
|
|
455
528
|
"attributes": []
|
|
456
529
|
},
|
|
457
530
|
{
|
|
458
|
-
"name": "umb-
|
|
459
|
-
"description": "
|
|
531
|
+
"name": "umb-data-type-input",
|
|
532
|
+
"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`} - ",
|
|
533
|
+
"attributes": [
|
|
534
|
+
{
|
|
535
|
+
"name": "min",
|
|
536
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: 0"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"name": "max",
|
|
540
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: Infinity"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"name": "min-message",
|
|
544
|
+
"description": "`min-message` {boolean} - Min validation message.\n\nProperty: minMessage\n\nDefault: "
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"name": "maxMessage",
|
|
548
|
+
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"name": "value",
|
|
552
|
+
"description": "`value` {`string`} - \n\nProperty: value"
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "umb-data-type-create-options-modal",
|
|
558
|
+
"description": "Attributes:\n\n * `data` {`UmbDataTypeCreateOptionsModalData | undefined`} - \n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` {`UmbDataTypeCreateOptionsModalData | undefined`} - ",
|
|
559
|
+
"attributes": [
|
|
560
|
+
{
|
|
561
|
+
"name": "data",
|
|
562
|
+
"description": "`data` {`UmbDataTypeCreateOptionsModalData | undefined`} - \n\nProperty: data",
|
|
563
|
+
"values": []
|
|
564
|
+
}
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "umb-data-type-picker-modal",
|
|
569
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `modalHandler` - \n\n * `data` - \n\n * `_selection` {`string[]`} - \n\n * `_multiple` {`boolean`} - ",
|
|
460
570
|
"attributes": []
|
|
461
571
|
},
|
|
462
572
|
{
|
|
@@ -515,22 +625,22 @@
|
|
|
515
625
|
},
|
|
516
626
|
{
|
|
517
627
|
"name": "umb-language-root-workspace",
|
|
518
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - ",
|
|
628
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - \n\n * `_cultureNames` - ",
|
|
519
629
|
"attributes": []
|
|
520
630
|
},
|
|
521
631
|
{
|
|
522
|
-
"name": "umb-language-workspace-
|
|
523
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - ",
|
|
632
|
+
"name": "umb-language-workspace-edit",
|
|
633
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isNew` {`boolean | undefined`} - ",
|
|
524
634
|
"attributes": []
|
|
525
635
|
},
|
|
526
636
|
{
|
|
527
637
|
"name": "umb-language-workspace",
|
|
528
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`
|
|
638
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`any[]`} - ",
|
|
529
639
|
"attributes": []
|
|
530
640
|
},
|
|
531
641
|
{
|
|
532
642
|
"name": "umb-language-details-workspace-view",
|
|
533
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isDefaultLanguage` {`boolean`} - \n\n * `_isNew` {`boolean`} - \n\n * `_validationErrors` - ",
|
|
643
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isDefaultLanguage` {`boolean`} - \n\n * `_isNew` {`boolean | undefined`} - \n\n * `_validationErrors` - ",
|
|
534
644
|
"attributes": []
|
|
535
645
|
},
|
|
536
646
|
{
|
|
@@ -640,9 +750,14 @@
|
|
|
640
750
|
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_pollingPopover` - \n\n * `_polingExpandSymbol` - \n\n * `_poolingConfig` {`PoolingCOnfig`} - ",
|
|
641
751
|
"attributes": []
|
|
642
752
|
},
|
|
753
|
+
{
|
|
754
|
+
"name": "umb-log-viewer-save-search-modal",
|
|
755
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_input` - \n\n * `_hasValue` {`boolean`} - ",
|
|
756
|
+
"attributes": []
|
|
757
|
+
},
|
|
643
758
|
{
|
|
644
759
|
"name": "umb-log-viewer-search-input",
|
|
645
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_savedSearchesPopover` - \n\n * `_savedSearchesExpandSymbol` - \n\n * `_savedSearches` {`any[]`} - \n\n * `_inputQuery` {`string`} - ",
|
|
760
|
+
"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` - ",
|
|
646
761
|
"attributes": []
|
|
647
762
|
},
|
|
648
763
|
{
|
|
@@ -662,7 +777,7 @@
|
|
|
662
777
|
},
|
|
663
778
|
{
|
|
664
779
|
"name": "umb-relation-type-workspace-view-relation-type",
|
|
665
|
-
"description": "Properties:\n\n * `
|
|
780
|
+
"description": "Properties:\n\n * `_relationType` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
666
781
|
"attributes": []
|
|
667
782
|
},
|
|
668
783
|
{
|
|
@@ -861,7 +976,7 @@
|
|
|
861
976
|
]
|
|
862
977
|
},
|
|
863
978
|
{
|
|
864
|
-
"name": "
|
|
979
|
+
"name": "umb-code-block",
|
|
865
980
|
"description": "A simple styled box for showing code-based error messages.\n\nSlots:\n\n * ` ` {} - the full message\n\nProperties:\n\n * `styles` {`CSSResult[]`} - ",
|
|
866
981
|
"attributes": []
|
|
867
982
|
},
|
|
@@ -1190,7 +1305,7 @@
|
|
|
1190
1305
|
},
|
|
1191
1306
|
{
|
|
1192
1307
|
"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 * `
|
|
1308
|
+
"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
1309
|
"attributes": [
|
|
1195
1310
|
{
|
|
1196
1311
|
"name": "min",
|
|
@@ -1222,8 +1337,12 @@
|
|
|
1222
1337
|
},
|
|
1223
1338
|
{
|
|
1224
1339
|
"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 * `
|
|
1340
|
+
"description": "Events:\n\n * `change` {`CustomEvent<unknown>`} - \n\nAttributes:\n\n * `selectedIds` {`string[]`} - \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
1341
|
"attributes": [
|
|
1342
|
+
{
|
|
1343
|
+
"name": "selectedIds",
|
|
1344
|
+
"description": "`selectedIds` {`string[]`} - \n\nProperty: selectedIds"
|
|
1345
|
+
},
|
|
1227
1346
|
{
|
|
1228
1347
|
"name": "value",
|
|
1229
1348
|
"description": "`value` {`string`} - \n\nProperty: value"
|
|
@@ -1255,17 +1374,15 @@
|
|
|
1255
1374
|
},
|
|
1256
1375
|
{
|
|
1257
1376
|
"name": "umb-input-language-picker",
|
|
1258
|
-
"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 * `
|
|
1377
|
+
"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`} - ",
|
|
1259
1378
|
"attributes": [
|
|
1260
1379
|
{
|
|
1261
1380
|
"name": "min",
|
|
1262
|
-
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault:
|
|
1263
|
-
"values": []
|
|
1381
|
+
"description": "`min` {number} - This is a minimum amount of selected items in this input.\n\nProperty: min\n\nDefault: 0"
|
|
1264
1382
|
},
|
|
1265
1383
|
{
|
|
1266
1384
|
"name": "max",
|
|
1267
|
-
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault:
|
|
1268
|
-
"values": []
|
|
1385
|
+
"description": "`max` {number} - This is a maximum amount of selected items in this input.\n\nProperty: max\n\nDefault: Infinity"
|
|
1269
1386
|
},
|
|
1270
1387
|
{
|
|
1271
1388
|
"name": "min-message",
|
|
@@ -1283,7 +1400,7 @@
|
|
|
1283
1400
|
},
|
|
1284
1401
|
{
|
|
1285
1402
|
"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 * `
|
|
1403
|
+
"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
1404
|
"attributes": [
|
|
1288
1405
|
{
|
|
1289
1406
|
"name": "min",
|
|
@@ -1514,8 +1631,8 @@
|
|
|
1514
1631
|
]
|
|
1515
1632
|
},
|
|
1516
1633
|
{
|
|
1517
|
-
"name": "umb-input-template
|
|
1518
|
-
"description": "Events:\n\n * `change
|
|
1634
|
+
"name": "umb-input-template",
|
|
1635
|
+
"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 * `selectedIds` {`string[]`} - \n\n * `defaultId` {`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 * `selectedIds` {`string[]`} - \n\n * `_defaultId` {`string`} - \n\n * `defaultId` {`string`} - \n\n * `_modalContext` - \n\n * `_templateRepository` - \n\n * `_pickedTemplates` {`any[]`} - \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`} - ",
|
|
1519
1636
|
"attributes": [
|
|
1520
1637
|
{
|
|
1521
1638
|
"name": "min",
|
|
@@ -1536,20 +1653,16 @@
|
|
|
1536
1653
|
"description": "`maxMessage` {boolean} - Max validation message.\n\nProperty: maxMessage\n\nDefault: "
|
|
1537
1654
|
},
|
|
1538
1655
|
{
|
|
1539
|
-
"name": "
|
|
1540
|
-
"description": "`
|
|
1656
|
+
"name": "selectedIds",
|
|
1657
|
+
"description": "`selectedIds` {`string[]`} - \n\nProperty: selectedIds"
|
|
1541
1658
|
},
|
|
1542
1659
|
{
|
|
1543
|
-
"name": "
|
|
1544
|
-
"description": "`
|
|
1660
|
+
"name": "defaultId",
|
|
1661
|
+
"description": "`defaultId` {`string`} - \n\nProperty: defaultId"
|
|
1545
1662
|
},
|
|
1546
1663
|
{
|
|
1547
|
-
"name": "onchange
|
|
1548
|
-
"description": "`change
|
|
1549
|
-
},
|
|
1550
|
-
{
|
|
1551
|
-
"name": "onchange-allowed",
|
|
1552
|
-
"description": "`change-allowed` {`CustomEvent<unknown>`} - "
|
|
1664
|
+
"name": "onchange",
|
|
1665
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1553
1666
|
}
|
|
1554
1667
|
]
|
|
1555
1668
|
},
|
|
@@ -1583,6 +1696,30 @@
|
|
|
1583
1696
|
}
|
|
1584
1697
|
]
|
|
1585
1698
|
},
|
|
1699
|
+
{
|
|
1700
|
+
"name": "umb-input-upload-field",
|
|
1701
|
+
"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` {`File[]`} - \n\n * `_currentFilesTemp` {`File[] | 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`} - ",
|
|
1702
|
+
"attributes": [
|
|
1703
|
+
{
|
|
1704
|
+
"name": "keys",
|
|
1705
|
+
"description": "`keys` {Array<String>} - \n\nProperty: keys\n\nDefault: []"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"name": "fileExtensions",
|
|
1709
|
+
"description": "`fileExtensions` {Array<String>} - \n\nProperty: fileExtensions\n\nDefault: undefined",
|
|
1710
|
+
"values": []
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"name": "multiple",
|
|
1714
|
+
"description": "`multiple` {Boolean} - \n\nProperty: multiple\n\nDefault: false",
|
|
1715
|
+
"valueSet": "v"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"name": "onchange",
|
|
1719
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1720
|
+
}
|
|
1721
|
+
]
|
|
1722
|
+
},
|
|
1586
1723
|
{
|
|
1587
1724
|
"name": "umb-input-user-group",
|
|
1588
1725
|
"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 +1962,7 @@
|
|
|
1825
1962
|
},
|
|
1826
1963
|
{
|
|
1827
1964
|
"name": "umb-template-card",
|
|
1828
|
-
"description": "Events:\n\n * `open` {`CustomEvent<unknown>`} - \n\n * `selected` {} - \n\n * `change
|
|
1965
|
+
"description": "Events:\n\n * `open` {`CustomEvent<unknown>`} - \n\n * `selected` {} - \n\n * `change` {`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
1966
|
"attributes": [
|
|
1830
1967
|
{
|
|
1831
1968
|
"name": "default",
|
|
@@ -1833,8 +1970,8 @@
|
|
|
1833
1970
|
"valueSet": "v"
|
|
1834
1971
|
},
|
|
1835
1972
|
{
|
|
1836
|
-
"name": "
|
|
1837
|
-
"description": "`
|
|
1973
|
+
"name": "id",
|
|
1974
|
+
"description": "`id` {`string`} - \n\nProperty: id"
|
|
1838
1975
|
},
|
|
1839
1976
|
{
|
|
1840
1977
|
"name": "name",
|
|
@@ -1849,8 +1986,8 @@
|
|
|
1849
1986
|
"description": "`selected` {} - "
|
|
1850
1987
|
},
|
|
1851
1988
|
{
|
|
1852
|
-
"name": "onchange
|
|
1853
|
-
"description": "`change
|
|
1989
|
+
"name": "onchange",
|
|
1990
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1854
1991
|
}
|
|
1855
1992
|
]
|
|
1856
1993
|
},
|
|
@@ -1896,7 +2033,7 @@
|
|
|
1896
2033
|
},
|
|
1897
2034
|
{
|
|
1898
2035
|
"name": "umb-tree",
|
|
1899
|
-
"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` - ",
|
|
2036
|
+
"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` - ",
|
|
1900
2037
|
"attributes": [
|
|
1901
2038
|
{
|
|
1902
2039
|
"name": "alias",
|
|
@@ -1911,6 +2048,11 @@
|
|
|
1911
2048
|
"name": "selection",
|
|
1912
2049
|
"description": "`selection` {`string[]`} - \n\nProperty: selection"
|
|
1913
2050
|
},
|
|
2051
|
+
{
|
|
2052
|
+
"name": "multiple",
|
|
2053
|
+
"description": "`multiple` {`boolean`} - \n\nProperty: multiple",
|
|
2054
|
+
"valueSet": "v"
|
|
2055
|
+
},
|
|
1914
2056
|
{
|
|
1915
2057
|
"name": "onselected",
|
|
1916
2058
|
"description": "`selected` {`CustomEvent<unknown>`} - "
|
|
@@ -1977,7 +2119,7 @@
|
|
|
1977
2119
|
},
|
|
1978
2120
|
{
|
|
1979
2121
|
"name": "umb-workspace-action-menu",
|
|
1980
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `
|
|
2122
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_actionMenuIsOpen` {`boolean`} - \n\n * `_workspaceContext` - \n\n * `_entityId` {`string | undefined`} - \n\n * `_entityType` {`string | undefined`} - ",
|
|
1981
2123
|
"attributes": []
|
|
1982
2124
|
},
|
|
1983
2125
|
{
|
|
@@ -2002,7 +2144,7 @@
|
|
|
2002
2144
|
},
|
|
2003
2145
|
{
|
|
2004
2146
|
"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`} - ",
|
|
2147
|
+
"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
2148
|
"attributes": [
|
|
2007
2149
|
{
|
|
2008
2150
|
"name": "headline",
|
|
@@ -2026,7 +2168,7 @@
|
|
|
2026
2168
|
},
|
|
2027
2169
|
{
|
|
2028
2170
|
"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 * `
|
|
2171
|
+
"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
2172
|
"attributes": [
|
|
2031
2173
|
{
|
|
2032
2174
|
"name": "alias",
|
|
@@ -2110,21 +2252,8 @@
|
|
|
2110
2252
|
},
|
|
2111
2253
|
{
|
|
2112
2254
|
"name": "umb-icon-picker-modal",
|
|
2113
|
-
"description": "
|
|
2114
|
-
"attributes": [
|
|
2115
|
-
{
|
|
2116
|
-
"name": "iconlist",
|
|
2117
|
-
"description": "`iconlist` - \n\nProperty: iconlist\n\nDefault: icons.map((icon) => icon.name)"
|
|
2118
|
-
},
|
|
2119
|
-
{
|
|
2120
|
-
"name": "iconlistFiltered",
|
|
2121
|
-
"description": "`iconlistFiltered` {`string[]`} - \n\nProperty: iconlistFiltered\n\nDefault: "
|
|
2122
|
-
},
|
|
2123
|
-
{
|
|
2124
|
-
"name": "colorlist",
|
|
2125
|
-
"description": "`colorlist` {`string[]`} - \n\nProperty: colorlist\n\nDefault: #000000,#373737,#9e9e9e,#607d8b,#2196f3,#03a9f4,#3f51b5,#9c27b0,#673ab7,#00bcd4,#4caf50,#8bc34a,#cddc39,#ffeb3b,#ffc107,#ff9800,#ff5722,#f44336,#e91e63,#795548"
|
|
2126
|
-
}
|
|
2127
|
-
]
|
|
2255
|
+
"description": "Properties:\n\n * `_iconList` - \n\n * `_iconListFiltered` {`string[]`} - \n\n * `_colorList` {`string[]`} - \n\n * `_currentColor` {`string | undefined`} - \n\n * `_currentIcon` {`string | undefined`} - \n\n * `styles` {`CSSResult[]`} - ",
|
|
2256
|
+
"attributes": []
|
|
2128
2257
|
},
|
|
2129
2258
|
{
|
|
2130
2259
|
"name": "umb-link-picker-modal",
|
|
@@ -2148,7 +2277,7 @@
|
|
|
2148
2277
|
},
|
|
2149
2278
|
{
|
|
2150
2279
|
"name": "umb-template-modal",
|
|
2151
|
-
"description": "Properties:\n\n * `
|
|
2280
|
+
"description": "Properties:\n\n * `_id` {`string`} - \n\n * `_template` - \n\n * `_codeEditor` - \n\n * `styles` {`CSSResult[]`} - ",
|
|
2152
2281
|
"attributes": []
|
|
2153
2282
|
},
|
|
2154
2283
|
{
|
|
@@ -2274,7 +2403,7 @@
|
|
|
2274
2403
|
},
|
|
2275
2404
|
{
|
|
2276
2405
|
"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` {`
|
|
2406
|
+
"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
2407
|
"attributes": [
|
|
2279
2408
|
{
|
|
2280
2409
|
"name": "name",
|
|
@@ -2284,7 +2413,7 @@
|
|
|
2284
2413
|
},
|
|
2285
2414
|
{
|
|
2286
2415
|
"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` {`
|
|
2416
|
+
"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
2417
|
"attributes": [
|
|
2289
2418
|
{
|
|
2290
2419
|
"name": "value",
|
|
@@ -2797,11 +2926,15 @@
|
|
|
2797
2926
|
},
|
|
2798
2927
|
{
|
|
2799
2928
|
"name": "umb-property-editor-ui-upload-field",
|
|
2800
|
-
"description": "
|
|
2929
|
+
"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
2930
|
"attributes": [
|
|
2802
2931
|
{
|
|
2803
2932
|
"name": "value",
|
|
2804
2933
|
"description": "`value` {`string`} - \n\nProperty: value\n\nDefault: "
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"name": "onproperty-value-change",
|
|
2937
|
+
"description": "`property-value-change` {`CustomEvent<unknown>`} - "
|
|
2805
2938
|
}
|
|
2806
2939
|
]
|
|
2807
2940
|
},
|
|
@@ -2862,7 +2995,7 @@
|
|
|
2862
2995
|
},
|
|
2863
2996
|
{
|
|
2864
2997
|
"name": "umb-import-dictionary-modal",
|
|
2865
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_form` {`HTMLFormElement`} - \n\n * `
|
|
2998
|
+
"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
2999
|
"attributes": []
|
|
2867
3000
|
},
|
|
2868
3001
|
{
|
|
@@ -3063,7 +3196,7 @@
|
|
|
3063
3196
|
"attributes": []
|
|
3064
3197
|
},
|
|
3065
3198
|
{
|
|
3066
|
-
"name": "story-modal-context-example",
|
|
3199
|
+
"name": "umb-story-modal-context-example",
|
|
3067
3200
|
"description": "Attributes:\n\n * `modalLayout` {`string`} - \n\nProperties:\n\n * `modalLayout` {`string`} - \n\n * `value` {`string`} - \n\n * `_modalContext` - ",
|
|
3068
3201
|
"attributes": [
|
|
3069
3202
|
{
|
|
@@ -3083,7 +3216,7 @@
|
|
|
3083
3216
|
]
|
|
3084
3217
|
},
|
|
3085
3218
|
{
|
|
3086
|
-
"name": "story-notification-default-example",
|
|
3219
|
+
"name": "umb-story-notification-default-example",
|
|
3087
3220
|
"description": "Properties:\n\n * `_notificationContext` - \n\n * `_handleNotification` - ",
|
|
3088
3221
|
"attributes": []
|
|
3089
3222
|
},
|