@umbraco-cms/backoffice 1.0.0-next.de0ffca0 → 1.0.0-next.f8d940fc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/context-api.d.ts +61 -1
- package/controller.d.ts +1 -1
- package/custom-elements.json +199 -19
- package/element.d.ts +1 -1
- package/entity-action.d.ts +19 -2
- package/modal.d.ts +12 -3
- package/package.json +1 -1
- package/repository.d.ts +38 -8
- package/vscode-html-custom-data.json +75 -17
package/context-api.d.ts
CHANGED
|
@@ -172,4 +172,64 @@ interface UmbEntityWorkspaceContextInterface<EntityType = unknown> extends UmbWo
|
|
|
172
172
|
|
|
173
173
|
declare const UMB_ENTITY_WORKSPACE_CONTEXT: UmbContextToken<UmbEntityWorkspaceContextInterface<BaseEntity>>;
|
|
174
174
|
|
|
175
|
-
|
|
175
|
+
/**
|
|
176
|
+
* Change the collection of Contexts into a simplified array of data
|
|
177
|
+
*
|
|
178
|
+
* @param contexts This is a map of the collected contexts from umb-debug
|
|
179
|
+
* @returns An array of simplified context data
|
|
180
|
+
*/
|
|
181
|
+
declare function contextData(contexts: Map<any, any>): Array<DebugContextData>;
|
|
182
|
+
interface DebugContextData {
|
|
183
|
+
/**
|
|
184
|
+
* The alias of the context
|
|
185
|
+
*
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof DebugContextData
|
|
188
|
+
*/
|
|
189
|
+
alias: string;
|
|
190
|
+
/**
|
|
191
|
+
* The type of the context such as object or string
|
|
192
|
+
*
|
|
193
|
+
* @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
|
|
194
|
+
* @memberof DebugContextData
|
|
195
|
+
*/
|
|
196
|
+
type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
197
|
+
/**
|
|
198
|
+
* Data about the context that includes method and property names
|
|
199
|
+
*
|
|
200
|
+
* @type {DebugContextItemData}
|
|
201
|
+
* @memberof DebugContextData
|
|
202
|
+
*/
|
|
203
|
+
data: DebugContextItemData;
|
|
204
|
+
}
|
|
205
|
+
interface DebugContextItemData {
|
|
206
|
+
type: string;
|
|
207
|
+
methods?: Array<unknown>;
|
|
208
|
+
properties?: Array<DebugContextItemPropertyData>;
|
|
209
|
+
value?: unknown;
|
|
210
|
+
}
|
|
211
|
+
interface DebugContextItemPropertyData {
|
|
212
|
+
/**
|
|
213
|
+
* The name of the property
|
|
214
|
+
*
|
|
215
|
+
* @type {string}
|
|
216
|
+
* @memberof DebugContextItemPropertyData
|
|
217
|
+
*/
|
|
218
|
+
key: string;
|
|
219
|
+
/**
|
|
220
|
+
* The type of the property's value such as string or number
|
|
221
|
+
*
|
|
222
|
+
* @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
|
|
223
|
+
* @memberof DebugContextItemPropertyData
|
|
224
|
+
*/
|
|
225
|
+
type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
226
|
+
/**
|
|
227
|
+
* Simple types such as string or number can have their value displayed stored inside the property
|
|
228
|
+
*
|
|
229
|
+
* @type {("string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function")}
|
|
230
|
+
* @memberof DebugContextItemPropertyData
|
|
231
|
+
*/
|
|
232
|
+
value?: unknown;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export { DebugContextData, DebugContextItemData, DebugContextItemPropertyData, UMB_ENTITY_WORKSPACE_CONTEXT, UmbContextCallback, UmbContextConsumer, UmbContextConsumerController, UmbContextDebugRequest, UmbContextProvideEvent, UmbContextProvideEventImplementation, UmbContextProvider, UmbContextProviderController, UmbContextRequestEvent, UmbContextRequestEventImplementation, UmbContextToken, contextData, isUmbContextProvideEventType, isUmbContextRequestEvent, umbContextProvideEventType, umbContextRequestEventType, umbDebugContextEventType };
|
package/controller.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ declare class UmbControllerHostElement extends HTMLElement {
|
|
|
20
20
|
* @param {Object} superClass - superclass to be extended.
|
|
21
21
|
* @mixin
|
|
22
22
|
*/
|
|
23
|
-
declare const UmbControllerHostMixin: <T extends HTMLElementConstructor
|
|
23
|
+
declare const UmbControllerHostMixin: <T extends HTMLElementConstructor>(superClass: T) => HTMLElementConstructor<UmbControllerHostElement> & T;
|
|
24
24
|
declare global {
|
|
25
25
|
interface HTMLElement {
|
|
26
26
|
connectedCallback(): void;
|
package/custom-elements.json
CHANGED
|
@@ -943,6 +943,17 @@
|
|
|
943
943
|
}
|
|
944
944
|
]
|
|
945
945
|
},
|
|
946
|
+
{
|
|
947
|
+
"name": "umb-create-data-type-modal",
|
|
948
|
+
"path": "./src/backoffice/settings/data-types/entity-actions/create/modal/create-data-type-modal.element.ts",
|
|
949
|
+
"properties": [
|
|
950
|
+
{
|
|
951
|
+
"name": "styles",
|
|
952
|
+
"type": "CSSResult[]",
|
|
953
|
+
"default": "[\"UUITextStyles\"]"
|
|
954
|
+
}
|
|
955
|
+
]
|
|
956
|
+
},
|
|
946
957
|
{
|
|
947
958
|
"name": "umb-data-type-workspace-edit-element",
|
|
948
959
|
"path": "./src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
@@ -1077,7 +1088,7 @@
|
|
|
1077
1088
|
]
|
|
1078
1089
|
},
|
|
1079
1090
|
{
|
|
1080
|
-
"name": "umb-language-workspace-
|
|
1091
|
+
"name": "umb-language-workspace-edit",
|
|
1081
1092
|
"path": "./src/backoffice/settings/languages/workspace/language/language-workspace-edit.element.ts",
|
|
1082
1093
|
"properties": [
|
|
1083
1094
|
{
|
|
@@ -1845,7 +1856,7 @@
|
|
|
1845
1856
|
"path": "./src/backoffice/shared/components/debug/debug.element.ts",
|
|
1846
1857
|
"attributes": [
|
|
1847
1858
|
{
|
|
1848
|
-
"name": "
|
|
1859
|
+
"name": "visible",
|
|
1849
1860
|
"type": "boolean",
|
|
1850
1861
|
"default": "false"
|
|
1851
1862
|
},
|
|
@@ -1853,11 +1864,6 @@
|
|
|
1853
1864
|
"name": "dialog",
|
|
1854
1865
|
"type": "boolean",
|
|
1855
1866
|
"default": "false"
|
|
1856
|
-
},
|
|
1857
|
-
{
|
|
1858
|
-
"name": "contexts",
|
|
1859
|
-
"type": "Map<any, any>",
|
|
1860
|
-
"default": "\"new Map()\""
|
|
1861
1867
|
}
|
|
1862
1868
|
],
|
|
1863
1869
|
"properties": [
|
|
@@ -1867,8 +1873,8 @@
|
|
|
1867
1873
|
"default": "[\"UUITextStyles\",null]"
|
|
1868
1874
|
},
|
|
1869
1875
|
{
|
|
1870
|
-
"name": "
|
|
1871
|
-
"attribute": "
|
|
1876
|
+
"name": "visible",
|
|
1877
|
+
"attribute": "visible",
|
|
1872
1878
|
"type": "boolean",
|
|
1873
1879
|
"default": "false"
|
|
1874
1880
|
},
|
|
@@ -1879,10 +1885,9 @@
|
|
|
1879
1885
|
"default": "false"
|
|
1880
1886
|
},
|
|
1881
1887
|
{
|
|
1882
|
-
"name": "
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1885
|
-
"default": "\"new Map()\""
|
|
1888
|
+
"name": "contextData",
|
|
1889
|
+
"type": "array",
|
|
1890
|
+
"default": "\"Array<DebugContextData>()\""
|
|
1886
1891
|
}
|
|
1887
1892
|
]
|
|
1888
1893
|
},
|
|
@@ -2179,7 +2184,7 @@
|
|
|
2179
2184
|
},
|
|
2180
2185
|
{
|
|
2181
2186
|
"name": "renderMethod",
|
|
2182
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2187
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2183
2188
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2184
2189
|
}
|
|
2185
2190
|
],
|
|
@@ -2213,7 +2218,7 @@
|
|
|
2213
2218
|
{
|
|
2214
2219
|
"name": "renderMethod",
|
|
2215
2220
|
"attribute": "renderMethod",
|
|
2216
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2221
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2217
2222
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2218
2223
|
}
|
|
2219
2224
|
],
|
|
@@ -3821,6 +3826,101 @@
|
|
|
3821
3826
|
}
|
|
3822
3827
|
]
|
|
3823
3828
|
},
|
|
3829
|
+
{
|
|
3830
|
+
"name": "umb-input-upload-field",
|
|
3831
|
+
"path": "./src/backoffice/shared/components/input-upload-field/input-upload-field.element.ts",
|
|
3832
|
+
"attributes": [
|
|
3833
|
+
{
|
|
3834
|
+
"name": "keys",
|
|
3835
|
+
"type": "Array<String>",
|
|
3836
|
+
"default": "\"[]\""
|
|
3837
|
+
},
|
|
3838
|
+
{
|
|
3839
|
+
"name": "fileExtensions",
|
|
3840
|
+
"type": "Array<String>",
|
|
3841
|
+
"default": "\"undefined\""
|
|
3842
|
+
},
|
|
3843
|
+
{
|
|
3844
|
+
"name": "multiple",
|
|
3845
|
+
"type": "Boolean",
|
|
3846
|
+
"default": "\"false\""
|
|
3847
|
+
}
|
|
3848
|
+
],
|
|
3849
|
+
"properties": [
|
|
3850
|
+
{
|
|
3851
|
+
"name": "styles",
|
|
3852
|
+
"type": "CSSResult[]",
|
|
3853
|
+
"default": "[\"UUITextStyles\",null]"
|
|
3854
|
+
},
|
|
3855
|
+
{
|
|
3856
|
+
"name": "keys",
|
|
3857
|
+
"attribute": "keys",
|
|
3858
|
+
"type": "Array<String>",
|
|
3859
|
+
"default": "\"[]\""
|
|
3860
|
+
},
|
|
3861
|
+
{
|
|
3862
|
+
"name": "fileExtensions",
|
|
3863
|
+
"attribute": "fileExtensions",
|
|
3864
|
+
"type": "Array<String>",
|
|
3865
|
+
"default": "\"undefined\""
|
|
3866
|
+
},
|
|
3867
|
+
{
|
|
3868
|
+
"name": "multiple",
|
|
3869
|
+
"attribute": "multiple",
|
|
3870
|
+
"type": "Boolean",
|
|
3871
|
+
"default": "\"false\""
|
|
3872
|
+
},
|
|
3873
|
+
{
|
|
3874
|
+
"name": "extensions",
|
|
3875
|
+
"type": "string[] | undefined"
|
|
3876
|
+
},
|
|
3877
|
+
{
|
|
3878
|
+
"name": "formAssociated",
|
|
3879
|
+
"type": "boolean"
|
|
3880
|
+
},
|
|
3881
|
+
{
|
|
3882
|
+
"name": "value",
|
|
3883
|
+
"type": "FormDataEntryValue | FormData"
|
|
3884
|
+
},
|
|
3885
|
+
{
|
|
3886
|
+
"name": "name",
|
|
3887
|
+
"type": "string"
|
|
3888
|
+
},
|
|
3889
|
+
{
|
|
3890
|
+
"name": "validationMessage",
|
|
3891
|
+
"type": "string"
|
|
3892
|
+
},
|
|
3893
|
+
{
|
|
3894
|
+
"name": "validity",
|
|
3895
|
+
"type": "ValidityState"
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
"name": "pristine",
|
|
3899
|
+
"type": "boolean"
|
|
3900
|
+
},
|
|
3901
|
+
{
|
|
3902
|
+
"name": "required",
|
|
3903
|
+
"type": "boolean"
|
|
3904
|
+
},
|
|
3905
|
+
{
|
|
3906
|
+
"name": "requiredMessage",
|
|
3907
|
+
"type": "string"
|
|
3908
|
+
},
|
|
3909
|
+
{
|
|
3910
|
+
"name": "error",
|
|
3911
|
+
"type": "boolean"
|
|
3912
|
+
},
|
|
3913
|
+
{
|
|
3914
|
+
"name": "errorMessage",
|
|
3915
|
+
"type": "string"
|
|
3916
|
+
}
|
|
3917
|
+
],
|
|
3918
|
+
"events": [
|
|
3919
|
+
{
|
|
3920
|
+
"name": "change"
|
|
3921
|
+
}
|
|
3922
|
+
]
|
|
3923
|
+
},
|
|
3824
3924
|
{
|
|
3825
3925
|
"name": "umb-input-user-group",
|
|
3826
3926
|
"path": "./src/backoffice/shared/components/input-user-group/input-user-group.element.ts",
|
|
@@ -3942,14 +4042,69 @@
|
|
|
3942
4042
|
]
|
|
3943
4043
|
},
|
|
3944
4044
|
{
|
|
3945
|
-
"name": "umb-menu-item",
|
|
3946
|
-
"path": "./src/backoffice/shared/components/menu-item/menu-item.element.ts",
|
|
4045
|
+
"name": "umb-menu-item-base",
|
|
4046
|
+
"path": "./src/backoffice/shared/components/menu/menu-item-base/menu-item-base.element.ts",
|
|
4047
|
+
"attributes": [
|
|
4048
|
+
{
|
|
4049
|
+
"name": "entity-type",
|
|
4050
|
+
"type": "string | undefined"
|
|
4051
|
+
},
|
|
4052
|
+
{
|
|
4053
|
+
"name": "icon-name",
|
|
4054
|
+
"type": "string",
|
|
4055
|
+
"default": "\"\""
|
|
4056
|
+
},
|
|
4057
|
+
{
|
|
4058
|
+
"name": "label",
|
|
4059
|
+
"type": "string",
|
|
4060
|
+
"default": "\"\""
|
|
4061
|
+
},
|
|
4062
|
+
{
|
|
4063
|
+
"name": "has-children",
|
|
4064
|
+
"type": "boolean",
|
|
4065
|
+
"default": "false"
|
|
4066
|
+
}
|
|
4067
|
+
],
|
|
3947
4068
|
"properties": [
|
|
3948
4069
|
{
|
|
3949
4070
|
"name": "styles",
|
|
3950
4071
|
"type": "CSSResult[]",
|
|
3951
4072
|
"default": "[\"UUITextStyles\",null]"
|
|
3952
4073
|
},
|
|
4074
|
+
{
|
|
4075
|
+
"name": "entityType",
|
|
4076
|
+
"attribute": "entity-type",
|
|
4077
|
+
"type": "string | undefined"
|
|
4078
|
+
},
|
|
4079
|
+
{
|
|
4080
|
+
"name": "iconName",
|
|
4081
|
+
"attribute": "icon-name",
|
|
4082
|
+
"type": "string",
|
|
4083
|
+
"default": "\"\""
|
|
4084
|
+
},
|
|
4085
|
+
{
|
|
4086
|
+
"name": "label",
|
|
4087
|
+
"attribute": "label",
|
|
4088
|
+
"type": "string",
|
|
4089
|
+
"default": "\"\""
|
|
4090
|
+
},
|
|
4091
|
+
{
|
|
4092
|
+
"name": "hasChildren",
|
|
4093
|
+
"attribute": "has-children",
|
|
4094
|
+
"type": "boolean",
|
|
4095
|
+
"default": "false"
|
|
4096
|
+
}
|
|
4097
|
+
]
|
|
4098
|
+
},
|
|
4099
|
+
{
|
|
4100
|
+
"name": "umb-menu-item",
|
|
4101
|
+
"path": "./src/backoffice/shared/components/menu/menu-item/menu-item.element.ts",
|
|
4102
|
+
"properties": [
|
|
4103
|
+
{
|
|
4104
|
+
"name": "styles",
|
|
4105
|
+
"type": "CSSResult[]",
|
|
4106
|
+
"default": "[\"UUITextStyles\"]"
|
|
4107
|
+
},
|
|
3953
4108
|
{
|
|
3954
4109
|
"name": "manifest"
|
|
3955
4110
|
}
|
|
@@ -4790,6 +4945,10 @@
|
|
|
4790
4945
|
"name": "icon",
|
|
4791
4946
|
"description": "Slot for icon"
|
|
4792
4947
|
},
|
|
4948
|
+
{
|
|
4949
|
+
"name": "header",
|
|
4950
|
+
"description": "Slot for workspace header"
|
|
4951
|
+
},
|
|
4793
4952
|
{
|
|
4794
4953
|
"name": "name",
|
|
4795
4954
|
"description": "Slot for name"
|
|
@@ -5005,6 +5164,23 @@
|
|
|
5005
5164
|
}
|
|
5006
5165
|
]
|
|
5007
5166
|
},
|
|
5167
|
+
{
|
|
5168
|
+
"name": "umb-folder-modal",
|
|
5169
|
+
"path": "./src/backoffice/shared/modals/folder/folder-modal.element.ts",
|
|
5170
|
+
"properties": [
|
|
5171
|
+
{
|
|
5172
|
+
"name": "styles",
|
|
5173
|
+
"type": "CSSResult[]",
|
|
5174
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5175
|
+
},
|
|
5176
|
+
{
|
|
5177
|
+
"name": "modalHandler"
|
|
5178
|
+
},
|
|
5179
|
+
{
|
|
5180
|
+
"name": "data"
|
|
5181
|
+
}
|
|
5182
|
+
]
|
|
5183
|
+
},
|
|
5008
5184
|
{
|
|
5009
5185
|
"name": "umb-icon-picker-modal",
|
|
5010
5186
|
"path": "./src/backoffice/shared/modals/icon-picker/icon-picker-modal.element.ts",
|
|
@@ -6825,8 +7001,12 @@
|
|
|
6825
7001
|
},
|
|
6826
7002
|
{
|
|
6827
7003
|
"name": "config",
|
|
6828
|
-
"type": "
|
|
6829
|
-
|
|
7004
|
+
"type": "array"
|
|
7005
|
+
}
|
|
7006
|
+
],
|
|
7007
|
+
"events": [
|
|
7008
|
+
{
|
|
7009
|
+
"name": "property-value-change"
|
|
6830
7010
|
}
|
|
6831
7011
|
]
|
|
6832
7012
|
},
|
package/element.d.ts
CHANGED
|
@@ -13,6 +13,6 @@ declare class UmbElementMixinInterface extends UmbControllerHostElement {
|
|
|
13
13
|
consumeContext<R = unknown>(alias: string | UmbContextToken<R>, callback: UmbContextCallback<R>): UmbContextConsumerController<R>;
|
|
14
14
|
consumeAllContexts(contextAliases: string[], callback: (_instances: ResolvedContexts) => void): void;
|
|
15
15
|
}
|
|
16
|
-
declare const UmbElementMixin: <T extends HTMLElementConstructor
|
|
16
|
+
declare const UmbElementMixin: <T extends HTMLElementConstructor>(superClass: T) => HTMLElementConstructor<UmbElementMixinInterface> & T;
|
|
17
17
|
|
|
18
18
|
export { UmbElementMixin, UmbElementMixinInterface };
|
package/entity-action.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { UmbControllerHostElement } from './controller';
|
|
2
2
|
import { UmbEntityActionBase as UmbEntityActionBase$1 } from './entity-action';
|
|
3
|
+
import { UmbFolderRepository } from './repository';
|
|
3
4
|
|
|
4
5
|
interface UmbAction<RepositoryType = unknown> {
|
|
5
6
|
host: UmbControllerHostElement;
|
|
@@ -17,6 +18,7 @@ interface UmbEntityAction<RepositoryType> extends UmbAction<RepositoryType> {
|
|
|
17
18
|
}
|
|
18
19
|
declare class UmbEntityActionBase<RepositoryType> extends UmbActionBase<RepositoryType> {
|
|
19
20
|
unique: string;
|
|
21
|
+
repositoryAlias: string;
|
|
20
22
|
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
21
23
|
}
|
|
22
24
|
|
|
@@ -39,13 +41,28 @@ declare class UmbCopyEntityAction<T extends {
|
|
|
39
41
|
|
|
40
42
|
declare class UmbDeleteEntityAction<T extends {
|
|
41
43
|
delete(unique: string): Promise<void>;
|
|
42
|
-
|
|
44
|
+
requestTreeItems(uniques: Array<string>): any;
|
|
43
45
|
}> extends UmbEntityActionBase$1<T> {
|
|
44
46
|
#private;
|
|
45
47
|
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
46
48
|
execute(): Promise<void>;
|
|
47
49
|
}
|
|
48
50
|
|
|
51
|
+
declare class UmbDeleteFolderEntityAction<T extends {
|
|
52
|
+
deleteFolder(unique: string): Promise<void>;
|
|
53
|
+
requestTreeItems(uniques: Array<string>): any;
|
|
54
|
+
}> extends UmbEntityActionBase$1<T> {
|
|
55
|
+
#private;
|
|
56
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
57
|
+
execute(): Promise<void>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
declare class UmbFolderUpdateEntityAction<T extends UmbFolderRepository = UmbFolderRepository> extends UmbEntityActionBase$1<T> {
|
|
61
|
+
#private;
|
|
62
|
+
constructor(host: UmbControllerHostElement, repositoryAlias: string, unique: string);
|
|
63
|
+
execute(): Promise<void>;
|
|
64
|
+
}
|
|
65
|
+
|
|
49
66
|
declare class UmbMoveEntityAction<T extends {
|
|
50
67
|
move(): Promise<void>;
|
|
51
68
|
}> extends UmbEntityActionBase$1<T> {
|
|
@@ -69,4 +86,4 @@ declare class UmbTrashEntityAction<T extends {
|
|
|
69
86
|
execute(): Promise<void>;
|
|
70
87
|
}
|
|
71
88
|
|
|
72
|
-
export { UmbAction, UmbActionBase, UmbCopyEntityAction, UmbDeleteEntityAction, UmbEntityAction, UmbEntityActionBase, UmbEntityBulkAction, UmbEntityBulkActionBase, UmbMoveEntityAction, UmbSortChildrenOfEntityAction, UmbTrashEntityAction };
|
|
89
|
+
export { UmbAction, UmbActionBase, UmbCopyEntityAction, UmbDeleteEntityAction, UmbDeleteFolderEntityAction, UmbEntityAction, UmbEntityActionBase, UmbEntityBulkAction, UmbEntityBulkActionBase, UmbFolderUpdateEntityAction, UmbMoveEntityAction, UmbSortChildrenOfEntityAction, UmbTrashEntityAction };
|
package/modal.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { UUIModalDialogElement, UUIModalSidebarElement, UUIModalSidebarSize } fr
|
|
|
7
7
|
import { UmbControllerHostElement, UmbControllerInterface } from './controller';
|
|
8
8
|
import { UmbContextToken } from './context-api';
|
|
9
9
|
import { UmbModalToken as UmbModalToken$1, UmbModalConfig as UmbModalConfig$1, UmbPickerModalData as UmbPickerModalData$1 } from './modal';
|
|
10
|
-
import { LanguageResponseModel } from './backend-api';
|
|
10
|
+
import { LanguageResponseModel, FolderReponseModel } from './backend-api';
|
|
11
11
|
import { UserDetails } from './models';
|
|
12
12
|
|
|
13
13
|
declare class UmbSearchModalElement extends LitElement {
|
|
@@ -104,7 +104,7 @@ interface UmbModalConfig {
|
|
|
104
104
|
declare class UmbModalContext {
|
|
105
105
|
#private;
|
|
106
106
|
host: UmbControllerHostElement;
|
|
107
|
-
readonly modals: rxjs.Observable<UmbModalHandler
|
|
107
|
+
readonly modals: rxjs.Observable<UmbModalHandler[]>;
|
|
108
108
|
constructor(host: UmbControllerHostElement);
|
|
109
109
|
search(): UmbModalHandler<any, any>;
|
|
110
110
|
/**
|
|
@@ -695,6 +695,15 @@ declare const UMB_USER_GROUP_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<
|
|
|
695
695
|
|
|
696
696
|
declare const UMB_USER_PICKER_MODAL: UmbModalToken$1<UmbPickerModalData$1<UserDetails>, unknown>;
|
|
697
697
|
|
|
698
|
+
interface UmbFolderModalData {
|
|
699
|
+
repositoryAlias: string;
|
|
700
|
+
unique?: string;
|
|
701
|
+
}
|
|
702
|
+
interface UmbFolderModalResult {
|
|
703
|
+
folder: FolderReponseModel;
|
|
704
|
+
}
|
|
705
|
+
declare const UMB_FOLDER_MODAL: UmbModalToken$1<UmbFolderModalData, UmbFolderModalResult>;
|
|
706
|
+
|
|
698
707
|
interface UmbPickerModalData<T> {
|
|
699
708
|
multiple: boolean;
|
|
700
709
|
selection: Array<string>;
|
|
@@ -704,4 +713,4 @@ interface UmbPickerModalResult<T> {
|
|
|
704
713
|
selection: Array<string>;
|
|
705
714
|
}
|
|
706
715
|
|
|
707
|
-
export { OEmbedResult, OEmbedStatus, UMB_ALLOWED_DOCUMENT_TYPES_MODAL, UMB_CHANGE_PASSWORD_MODAL, UMB_CONFIRM_MODAL, UMB_CONTEXT_DEBUGGER_MODAL, UMB_CREATE_DICTIONARY_MODAL, UMB_CREATE_USER_MODAL, UMB_CURRENT_USER_MODAL, UMB_DOCUMENT_PICKER_MODAL, UMB_DOCUMENT_TYPE_PICKER_MODAL, UMB_EMBEDDED_MEDIA_MODAL, UMB_EXAMINE_FIELDS_SETTINGS_MODAL, UMB_EXPORT_DICTIONARY_MODAL, UMB_ICON_PICKER_MODAL, UMB_IMPORT_DICTIONARY_MODAL, UMB_INVITE_USER_MODAL, UMB_LANGUAGE_PICKER_MODAL, UMB_LINK_PICKER_MODAL, UMB_MEDIA_PICKER_MODAL, UMB_MODAL_CONTEXT_TOKEN, UMB_PROPERTY_EDITOR_UI_PICKER_MODAL, UMB_PROPERTY_SETTINGS_MODAL, UMB_SEARCH_MODAL, UMB_SECTION_PICKER_MODAL, UMB_TEMPLATE_MODAL, UMB_TEMPLATE_PICKER_MODAL, UMB_USER_GROUP_PICKER_MODAL, UMB_USER_PICKER_MODAL, UmbAllowedDocumentTypesModalData, UmbAllowedDocumentTypesModalResult, UmbChangePasswordModalData, UmbConfirmModalData, UmbConfirmModalResult, UmbContextDebuggerModalData, UmbCreateDictionaryModalData, UmbCreateDictionaryModalResult, UmbCreateDocumentModalResultData, UmbDocumentPickerModalData, UmbDocumentPickerModalResult, UmbDocumentTypePickerModalData, UmbDocumentTypePickerModalResult, UmbEmbeddedMediaModalData, UmbEmbeddedMediaModalResult, UmbExamineFieldsSettingsModalData, UmbExportDictionaryModalData, UmbExportDictionaryModalResult, UmbIconPickerModalData, UmbIconPickerModalResult, UmbImportDictionaryModalData, UmbImportDictionaryModalResult, UmbLanguagePickerModalData, UmbLanguagePickerModalResult, UmbLinkPickerConfig, UmbLinkPickerLink, UmbLinkPickerModalData, UmbLinkPickerModalResult, UmbMediaPickerModalData, UmbMediaPickerModalResult, UmbModalConfig, UmbModalContext, UmbModalHandler, UmbModalHandlerClass, UmbModalRouteBuilder, UmbModalRouteRegistration, UmbModalRouteRegistrationController, UmbModalToken, UmbModalType, UmbPickerModalData, UmbPickerModalResult, UmbPropertyEditorUIPickerModalData, UmbPropertyEditorUIPickerModalResult, UmbPropertySettingsModalResult, UmbSectionPickerModalData, UmbTemplateModalData, UmbTemplateModalResult, UmbTemplatePickerModalData, UmbTemplatePickerModalResult };
|
|
716
|
+
export { OEmbedResult, OEmbedStatus, UMB_ALLOWED_DOCUMENT_TYPES_MODAL, UMB_CHANGE_PASSWORD_MODAL, UMB_CONFIRM_MODAL, UMB_CONTEXT_DEBUGGER_MODAL, UMB_CREATE_DICTIONARY_MODAL, UMB_CREATE_USER_MODAL, UMB_CURRENT_USER_MODAL, UMB_DOCUMENT_PICKER_MODAL, UMB_DOCUMENT_TYPE_PICKER_MODAL, UMB_EMBEDDED_MEDIA_MODAL, UMB_EXAMINE_FIELDS_SETTINGS_MODAL, UMB_EXPORT_DICTIONARY_MODAL, UMB_FOLDER_MODAL, UMB_ICON_PICKER_MODAL, UMB_IMPORT_DICTIONARY_MODAL, UMB_INVITE_USER_MODAL, UMB_LANGUAGE_PICKER_MODAL, UMB_LINK_PICKER_MODAL, UMB_MEDIA_PICKER_MODAL, UMB_MODAL_CONTEXT_TOKEN, UMB_PROPERTY_EDITOR_UI_PICKER_MODAL, UMB_PROPERTY_SETTINGS_MODAL, UMB_SEARCH_MODAL, UMB_SECTION_PICKER_MODAL, UMB_TEMPLATE_MODAL, UMB_TEMPLATE_PICKER_MODAL, UMB_USER_GROUP_PICKER_MODAL, UMB_USER_PICKER_MODAL, UmbAllowedDocumentTypesModalData, UmbAllowedDocumentTypesModalResult, UmbChangePasswordModalData, UmbConfirmModalData, UmbConfirmModalResult, UmbContextDebuggerModalData, UmbCreateDictionaryModalData, UmbCreateDictionaryModalResult, UmbCreateDocumentModalResultData, UmbDocumentPickerModalData, UmbDocumentPickerModalResult, UmbDocumentTypePickerModalData, UmbDocumentTypePickerModalResult, UmbEmbeddedMediaModalData, UmbEmbeddedMediaModalResult, UmbExamineFieldsSettingsModalData, UmbExportDictionaryModalData, UmbExportDictionaryModalResult, UmbFolderModalData, UmbFolderModalResult, UmbIconPickerModalData, UmbIconPickerModalResult, UmbImportDictionaryModalData, UmbImportDictionaryModalResult, UmbLanguagePickerModalData, UmbLanguagePickerModalResult, UmbLinkPickerConfig, UmbLinkPickerLink, UmbLinkPickerModalData, UmbLinkPickerModalResult, UmbMediaPickerModalData, UmbMediaPickerModalResult, UmbModalConfig, UmbModalContext, UmbModalHandler, UmbModalHandlerClass, UmbModalRouteBuilder, UmbModalRouteRegistration, UmbModalRouteRegistrationController, UmbModalToken, UmbModalType, UmbPickerModalData, UmbPickerModalResult, UmbPropertyEditorUIPickerModalData, UmbPropertyEditorUIPickerModalResult, UmbPropertySettingsModalResult, UmbSectionPickerModalData, UmbTemplateModalData, UmbTemplateModalResult, UmbTemplatePickerModalData, UmbTemplatePickerModalResult };
|
package/package.json
CHANGED
package/repository.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ProblemDetailsModel } from './backend-api';
|
|
1
|
+
import { ProblemDetailsModel, FolderReponseModel, CreateFolderRequestModel, UpdateFolderReponseModel, FolderModelBaseModel } from './backend-api';
|
|
2
2
|
import { DataSourceResponse as DataSourceResponse$1 } from './repository';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
|
|
@@ -7,12 +7,20 @@ interface DataSourceResponse<T = undefined> {
|
|
|
7
7
|
error?: ProblemDetailsModel;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
interface UmbDataSource<
|
|
11
|
-
createScaffold(parentKey: string | null): Promise<DataSourceResponse$1<
|
|
12
|
-
get(
|
|
13
|
-
insert(data:
|
|
14
|
-
update(data:
|
|
15
|
-
delete(
|
|
10
|
+
interface UmbDataSource<CreateRequestType, UpdateRequestType, ResponseType> {
|
|
11
|
+
createScaffold(parentKey: string | null): Promise<DataSourceResponse$1<ResponseType>>;
|
|
12
|
+
get(unique: string): Promise<DataSourceResponse$1<ResponseType>>;
|
|
13
|
+
insert(data: CreateRequestType): Promise<any>;
|
|
14
|
+
update(unique: string, data: UpdateRequestType): Promise<DataSourceResponse$1<ResponseType>>;
|
|
15
|
+
delete(unique: string): Promise<DataSourceResponse$1>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
interface UmbFolderDataSource {
|
|
19
|
+
createScaffold(parentKey: string | null): Promise<DataSourceResponse<FolderReponseModel>>;
|
|
20
|
+
get(unique: string): Promise<DataSourceResponse<FolderReponseModel>>;
|
|
21
|
+
insert(data: CreateFolderRequestModel): Promise<DataSourceResponse<string>>;
|
|
22
|
+
update(unique: string, data: CreateFolderRequestModel): Promise<DataSourceResponse<UpdateFolderReponseModel>>;
|
|
23
|
+
delete(unique: string): Promise<DataSourceResponse>;
|
|
16
24
|
}
|
|
17
25
|
|
|
18
26
|
interface UmbTreeDataSource<PagedItemsType = any, ItemsType = any> {
|
|
@@ -66,4 +74,26 @@ interface UmbTreeRepository<ItemType = any, PagedItemType = UmbPagedData<ItemTyp
|
|
|
66
74
|
treeItems: (uniques: string[]) => Promise<Observable<ItemType[]>>;
|
|
67
75
|
}
|
|
68
76
|
|
|
69
|
-
|
|
77
|
+
interface UmbFolderRepository {
|
|
78
|
+
createFolderScaffold(parentKey: string | null): Promise<{
|
|
79
|
+
data?: FolderReponseModel;
|
|
80
|
+
error?: ProblemDetailsModel;
|
|
81
|
+
}>;
|
|
82
|
+
createFolder(folderRequest: CreateFolderRequestModel): Promise<{
|
|
83
|
+
data?: string;
|
|
84
|
+
error?: ProblemDetailsModel;
|
|
85
|
+
}>;
|
|
86
|
+
requestFolder(unique: string): Promise<{
|
|
87
|
+
data?: FolderReponseModel;
|
|
88
|
+
error?: ProblemDetailsModel;
|
|
89
|
+
}>;
|
|
90
|
+
updateFolder(unique: string, folder: FolderModelBaseModel): Promise<{
|
|
91
|
+
data?: UpdateFolderReponseModel;
|
|
92
|
+
error?: ProblemDetailsModel;
|
|
93
|
+
}>;
|
|
94
|
+
deleteFolder(key: string): Promise<{
|
|
95
|
+
error?: ProblemDetailsModel;
|
|
96
|
+
}>;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export { DataSourceResponse, UmbDataSource, UmbDetailRepository, UmbFolderDataSource, UmbFolderRepository, UmbPagedData, UmbTreeDataSource, UmbTreeRepository };
|
|
@@ -454,6 +454,11 @@
|
|
|
454
454
|
"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
455
|
"attributes": []
|
|
456
456
|
},
|
|
457
|
+
{
|
|
458
|
+
"name": "umb-create-data-type-modal",
|
|
459
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - ",
|
|
460
|
+
"attributes": []
|
|
461
|
+
},
|
|
457
462
|
{
|
|
458
463
|
"name": "umb-data-type-workspace-edit-element",
|
|
459
464
|
"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,17 +515,17 @@
|
|
|
510
515
|
},
|
|
511
516
|
{
|
|
512
517
|
"name": "umb-language-root-workspace",
|
|
513
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - ",
|
|
518
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_tableConfig` {`UmbTableConfig`} - \n\n * `_tableColumns` {`UmbTableColumn[]`} - \n\n * `_tableItems` {`UmbTableItem[]`} - \n\n * `_cultureNames` - ",
|
|
514
519
|
"attributes": []
|
|
515
520
|
},
|
|
516
521
|
{
|
|
517
|
-
"name": "umb-language-workspace-
|
|
518
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - ",
|
|
522
|
+
"name": "umb-language-workspace-edit",
|
|
523
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_language` - \n\n * `_isNew` {`boolean`} - ",
|
|
519
524
|
"attributes": []
|
|
520
525
|
},
|
|
521
526
|
{
|
|
522
527
|
"name": "umb-language-workspace",
|
|
523
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`{ path: string; component: () =>
|
|
528
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `_routes` {`{ path: string; component: () => UmbLanguageWorkspaceEditElement; setup: (component: HTMLElement, info: IRoutingInfo<any, any>) => void; }[]`} - ",
|
|
524
529
|
"attributes": []
|
|
525
530
|
},
|
|
526
531
|
{
|
|
@@ -868,6 +873,9 @@
|
|
|
868
873
|
"name": "language",
|
|
869
874
|
"description": "`language` {CodeEditorLanguage} - Language of the editor. Default is javascript.\n\nProperty: language\n\nDefault: javascript",
|
|
870
875
|
"values": [
|
|
876
|
+
{
|
|
877
|
+
"name": "html"
|
|
878
|
+
},
|
|
871
879
|
{
|
|
872
880
|
"name": "razor"
|
|
873
881
|
},
|
|
@@ -885,9 +893,6 @@
|
|
|
885
893
|
},
|
|
886
894
|
{
|
|
887
895
|
"name": "json"
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
"name": "html"
|
|
891
896
|
}
|
|
892
897
|
]
|
|
893
898
|
},
|
|
@@ -934,21 +939,17 @@
|
|
|
934
939
|
},
|
|
935
940
|
{
|
|
936
941
|
"name": "umb-debug",
|
|
937
|
-
"description": "Attributes:\n\n * `
|
|
942
|
+
"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
943
|
"attributes": [
|
|
939
944
|
{
|
|
940
|
-
"name": "
|
|
941
|
-
"description": "`
|
|
945
|
+
"name": "visible",
|
|
946
|
+
"description": "`visible` {`boolean`} - \n\nProperty: visible\n\nDefault: false",
|
|
942
947
|
"valueSet": "v"
|
|
943
948
|
},
|
|
944
949
|
{
|
|
945
950
|
"name": "dialog",
|
|
946
951
|
"description": "`dialog` {`boolean`} - \n\nProperty: dialog\n\nDefault: false",
|
|
947
952
|
"valueSet": "v"
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
"name": "contexts",
|
|
951
|
-
"description": "`contexts` {`Map<any, any>`} - \n\nProperty: contexts\n\nDefault: new Map()"
|
|
952
953
|
}
|
|
953
954
|
]
|
|
954
955
|
},
|
|
@@ -1582,6 +1583,30 @@
|
|
|
1582
1583
|
}
|
|
1583
1584
|
]
|
|
1584
1585
|
},
|
|
1586
|
+
{
|
|
1587
|
+
"name": "umb-input-upload-field",
|
|
1588
|
+
"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`} - ",
|
|
1589
|
+
"attributes": [
|
|
1590
|
+
{
|
|
1591
|
+
"name": "keys",
|
|
1592
|
+
"description": "`keys` {Array<String>} - \n\nProperty: keys\n\nDefault: []"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"name": "fileExtensions",
|
|
1596
|
+
"description": "`fileExtensions` {Array<String>} - \n\nProperty: fileExtensions\n\nDefault: undefined",
|
|
1597
|
+
"values": []
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"name": "multiple",
|
|
1601
|
+
"description": "`multiple` {Boolean} - \n\nProperty: multiple\n\nDefault: false",
|
|
1602
|
+
"valueSet": "v"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"name": "onchange",
|
|
1606
|
+
"description": "`change` {`CustomEvent<unknown>`} - "
|
|
1607
|
+
}
|
|
1608
|
+
]
|
|
1609
|
+
},
|
|
1585
1610
|
{
|
|
1586
1611
|
"name": "umb-input-user-group",
|
|
1587
1612
|
"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 +1689,33 @@
|
|
|
1664
1689
|
}
|
|
1665
1690
|
]
|
|
1666
1691
|
},
|
|
1692
|
+
{
|
|
1693
|
+
"name": "umb-menu-item-base",
|
|
1694
|
+
"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`} - ",
|
|
1695
|
+
"attributes": [
|
|
1696
|
+
{
|
|
1697
|
+
"name": "entity-type",
|
|
1698
|
+
"description": "`entity-type` {`string | undefined`} - \n\nProperty: entityType",
|
|
1699
|
+
"values": []
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"name": "icon-name",
|
|
1703
|
+
"description": "`icon-name` {`string`} - \n\nProperty: iconName\n\nDefault: "
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"name": "label",
|
|
1707
|
+
"description": "`label` {`string`} - \n\nProperty: label\n\nDefault: "
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"name": "has-children",
|
|
1711
|
+
"description": "`has-children` {`boolean`} - \n\nProperty: hasChildren\n\nDefault: false",
|
|
1712
|
+
"valueSet": "v"
|
|
1713
|
+
}
|
|
1714
|
+
]
|
|
1715
|
+
},
|
|
1667
1716
|
{
|
|
1668
1717
|
"name": "umb-menu-item",
|
|
1669
|
-
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` -
|
|
1718
|
+
"description": "Properties:\n\n * `styles` {`CSSResult[]`} - \n\n * `manifest` - ",
|
|
1670
1719
|
"attributes": []
|
|
1671
1720
|
},
|
|
1672
1721
|
{
|
|
@@ -1977,7 +2026,7 @@
|
|
|
1977
2026
|
},
|
|
1978
2027
|
{
|
|
1979
2028
|
"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`} - ",
|
|
2029
|
+
"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
2030
|
"attributes": [
|
|
1982
2031
|
{
|
|
1983
2032
|
"name": "headline",
|
|
@@ -2078,6 +2127,11 @@
|
|
|
2078
2127
|
}
|
|
2079
2128
|
]
|
|
2080
2129
|
},
|
|
2130
|
+
{
|
|
2131
|
+
"name": "umb-folder-modal",
|
|
2132
|
+
"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`} - ",
|
|
2133
|
+
"attributes": []
|
|
2134
|
+
},
|
|
2081
2135
|
{
|
|
2082
2136
|
"name": "umb-icon-picker-modal",
|
|
2083
2137
|
"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`} - ",
|
|
@@ -2767,11 +2821,15 @@
|
|
|
2767
2821
|
},
|
|
2768
2822
|
{
|
|
2769
2823
|
"name": "umb-property-editor-ui-upload-field",
|
|
2770
|
-
"description": "
|
|
2824
|
+
"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
2825
|
"attributes": [
|
|
2772
2826
|
{
|
|
2773
2827
|
"name": "value",
|
|
2774
2828
|
"description": "`value` {`string`} - \n\nProperty: value\n\nDefault: "
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
"name": "onproperty-value-change",
|
|
2832
|
+
"description": "`property-value-change` {`CustomEvent<unknown>`} - "
|
|
2775
2833
|
}
|
|
2776
2834
|
]
|
|
2777
2835
|
},
|