@umbraco-cms/backoffice 1.0.0-next.d924405b → 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 +76 -6
- package/controller.d.ts +5 -5
- package/custom-elements.json +342 -66
- package/element.d.ts +3 -3
- package/entity-action.d.ts +30 -13
- package/extensions-api.d.ts +2 -2
- package/extensions-registry.d.ts +8 -8
- package/modal.d.ts +594 -12
- package/models.d.ts +6 -1
- package/observable-api.d.ts +19 -4
- package/package.json +1 -1
- package/repository.d.ts +38 -8
- package/resources.d.ts +3 -3
- package/router.d.ts +130 -0
- package/store.d.ts +3 -3
- package/vscode-html-custom-data.json +163 -60
- package/workspace.d.ts +16 -9
package/custom-elements.json
CHANGED
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
"name": "umb-document-type-workspace-
|
|
111
|
-
"path": "./src/backoffice/documents/document-types/workspace/document-type-workspace-
|
|
110
|
+
"name": "umb-document-type-workspace-editor",
|
|
111
|
+
"path": "./src/backoffice/documents/document-types/workspace/document-type-workspace-editor.element.ts",
|
|
112
112
|
"properties": [
|
|
113
113
|
{
|
|
114
114
|
"name": "styles",
|
|
@@ -129,8 +129,8 @@
|
|
|
129
129
|
]
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
|
-
"name": "umb-workspace-view-
|
|
133
|
-
"path": "./src/backoffice/documents/document-types/workspace/views/design/workspace-view-
|
|
132
|
+
"name": "umb-document-type-workspace-view-design",
|
|
133
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/design/document-type-workspace-view-design.element.ts",
|
|
134
134
|
"properties": [
|
|
135
135
|
{
|
|
136
136
|
"name": "styles",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
]
|
|
141
141
|
},
|
|
142
142
|
{
|
|
143
|
-
"name": "umb-workspace-view-
|
|
144
|
-
"path": "./src/backoffice/documents/document-types/workspace/views/
|
|
143
|
+
"name": "umb-document-type-workspace-view-details",
|
|
144
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/details/document-type-workspace-view-details.element.ts",
|
|
145
145
|
"properties": [
|
|
146
146
|
{
|
|
147
147
|
"name": "styles",
|
|
@@ -151,8 +151,8 @@
|
|
|
151
151
|
]
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
|
-
"name": "umb-workspace-view-
|
|
155
|
-
"path": "./src/backoffice/documents/document-types/workspace/views/
|
|
154
|
+
"name": "umb-document-type-workspace-view-structure",
|
|
155
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.ts",
|
|
156
156
|
"properties": [
|
|
157
157
|
{
|
|
158
158
|
"name": "styles",
|
|
@@ -162,8 +162,8 @@
|
|
|
162
162
|
]
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
|
-
"name": "umb-workspace-view-
|
|
166
|
-
"path": "./src/backoffice/documents/document-types/workspace/views/templates/workspace-view-
|
|
165
|
+
"name": "umb-document-type-workspace-view-templates",
|
|
166
|
+
"path": "./src/backoffice/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.ts",
|
|
167
167
|
"properties": [
|
|
168
168
|
{
|
|
169
169
|
"name": "styles",
|
|
@@ -257,8 +257,8 @@
|
|
|
257
257
|
]
|
|
258
258
|
},
|
|
259
259
|
{
|
|
260
|
-
"name": "umb-document-workspace-
|
|
261
|
-
"path": "./src/backoffice/documents/documents/workspace/document-workspace-
|
|
260
|
+
"name": "umb-document-workspace-editor",
|
|
261
|
+
"path": "./src/backoffice/documents/documents/workspace/document-workspace-editor.element.ts",
|
|
262
262
|
"properties": [
|
|
263
263
|
{
|
|
264
264
|
"name": "styles",
|
|
@@ -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
|
],
|
|
@@ -2675,9 +2680,6 @@
|
|
|
2675
2680
|
"name": "umb-input-document-type-picker",
|
|
2676
2681
|
"path": "./src/backoffice/shared/components/input-document-type-picker/input-document-type-picker.element.ts",
|
|
2677
2682
|
"attributes": [
|
|
2678
|
-
{
|
|
2679
|
-
"name": "currentDocumentType"
|
|
2680
|
-
},
|
|
2681
2683
|
{
|
|
2682
2684
|
"name": "value",
|
|
2683
2685
|
"type": "string"
|
|
@@ -2693,10 +2695,6 @@
|
|
|
2693
2695
|
"name": "selectedKeys",
|
|
2694
2696
|
"type": "string[]"
|
|
2695
2697
|
},
|
|
2696
|
-
{
|
|
2697
|
-
"name": "currentDocumentType",
|
|
2698
|
-
"attribute": "currentDocumentType"
|
|
2699
|
-
},
|
|
2700
2698
|
{
|
|
2701
2699
|
"name": "formAssociated",
|
|
2702
2700
|
"type": "boolean"
|
|
@@ -3067,6 +3065,14 @@
|
|
|
3067
3065
|
"name": "umb-input-multi-url-picker",
|
|
3068
3066
|
"path": "./src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.element.ts",
|
|
3069
3067
|
"attributes": [
|
|
3068
|
+
{
|
|
3069
|
+
"name": "alias",
|
|
3070
|
+
"type": "string | undefined"
|
|
3071
|
+
},
|
|
3072
|
+
{
|
|
3073
|
+
"name": "variantId",
|
|
3074
|
+
"type": "string | UmbVariantId | undefined"
|
|
3075
|
+
},
|
|
3070
3076
|
{
|
|
3071
3077
|
"name": "min",
|
|
3072
3078
|
"description": "This is a minimum amount of selected items in this input.",
|
|
@@ -3111,6 +3117,16 @@
|
|
|
3111
3117
|
"type": "CSSResult[]",
|
|
3112
3118
|
"default": "[\"UUITextStyles\",null]"
|
|
3113
3119
|
},
|
|
3120
|
+
{
|
|
3121
|
+
"name": "alias",
|
|
3122
|
+
"attribute": "alias",
|
|
3123
|
+
"type": "string | undefined"
|
|
3124
|
+
},
|
|
3125
|
+
{
|
|
3126
|
+
"name": "variantId",
|
|
3127
|
+
"attribute": "variantId",
|
|
3128
|
+
"type": "string | UmbVariantId | undefined"
|
|
3129
|
+
},
|
|
3114
3130
|
{
|
|
3115
3131
|
"name": "min",
|
|
3116
3132
|
"attribute": "min",
|
|
@@ -3810,6 +3826,101 @@
|
|
|
3810
3826
|
}
|
|
3811
3827
|
]
|
|
3812
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
|
+
},
|
|
3813
3924
|
{
|
|
3814
3925
|
"name": "umb-input-user-group",
|
|
3815
3926
|
"path": "./src/backoffice/shared/components/input-user-group/input-user-group.element.ts",
|
|
@@ -3931,14 +4042,69 @@
|
|
|
3931
4042
|
]
|
|
3932
4043
|
},
|
|
3933
4044
|
{
|
|
3934
|
-
"name": "umb-menu-item",
|
|
3935
|
-
"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
|
+
],
|
|
3936
4068
|
"properties": [
|
|
3937
4069
|
{
|
|
3938
4070
|
"name": "styles",
|
|
3939
4071
|
"type": "CSSResult[]",
|
|
3940
4072
|
"default": "[\"UUITextStyles\",null]"
|
|
3941
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
|
+
},
|
|
3942
4108
|
{
|
|
3943
4109
|
"name": "manifest"
|
|
3944
4110
|
}
|
|
@@ -4779,6 +4945,10 @@
|
|
|
4779
4945
|
"name": "icon",
|
|
4780
4946
|
"description": "Slot for icon"
|
|
4781
4947
|
},
|
|
4948
|
+
{
|
|
4949
|
+
"name": "header",
|
|
4950
|
+
"description": "Slot for workspace header"
|
|
4951
|
+
},
|
|
4782
4952
|
{
|
|
4783
4953
|
"name": "name",
|
|
4784
4954
|
"description": "Slot for name"
|
|
@@ -4953,8 +5123,7 @@
|
|
|
4953
5123
|
"path": "./src/backoffice/shared/modals/confirm/confirm-modal.element.ts",
|
|
4954
5124
|
"attributes": [
|
|
4955
5125
|
{
|
|
4956
|
-
"name": "data"
|
|
4957
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5126
|
+
"name": "data"
|
|
4958
5127
|
}
|
|
4959
5128
|
],
|
|
4960
5129
|
"properties": [
|
|
@@ -4968,8 +5137,7 @@
|
|
|
4968
5137
|
},
|
|
4969
5138
|
{
|
|
4970
5139
|
"name": "data",
|
|
4971
|
-
"attribute": "data"
|
|
4972
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5140
|
+
"attribute": "data"
|
|
4973
5141
|
}
|
|
4974
5142
|
]
|
|
4975
5143
|
},
|
|
@@ -4978,8 +5146,7 @@
|
|
|
4978
5146
|
"path": "./src/backoffice/shared/modals/embedded-media/embedded-media-modal.element.ts",
|
|
4979
5147
|
"attributes": [
|
|
4980
5148
|
{
|
|
4981
|
-
"name": "data"
|
|
4982
|
-
"type": "UmbEmbeddedMediaModalData | undefined"
|
|
5149
|
+
"name": "data"
|
|
4983
5150
|
}
|
|
4984
5151
|
],
|
|
4985
5152
|
"properties": [
|
|
@@ -4993,8 +5160,24 @@
|
|
|
4993
5160
|
},
|
|
4994
5161
|
{
|
|
4995
5162
|
"name": "data",
|
|
4996
|
-
"attribute": "data"
|
|
4997
|
-
|
|
5163
|
+
"attribute": "data"
|
|
5164
|
+
}
|
|
5165
|
+
]
|
|
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"
|
|
4998
5181
|
}
|
|
4999
5182
|
]
|
|
5000
5183
|
},
|
|
@@ -5221,8 +5404,7 @@
|
|
|
5221
5404
|
"path": "./src/backoffice/shared/property-editors/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
5222
5405
|
"attributes": [
|
|
5223
5406
|
{
|
|
5224
|
-
"name": "data"
|
|
5225
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5407
|
+
"name": "data"
|
|
5226
5408
|
}
|
|
5227
5409
|
],
|
|
5228
5410
|
"properties": [
|
|
@@ -5233,8 +5415,7 @@
|
|
|
5233
5415
|
},
|
|
5234
5416
|
{
|
|
5235
5417
|
"name": "data",
|
|
5236
|
-
"attribute": "data"
|
|
5237
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5418
|
+
"attribute": "data"
|
|
5238
5419
|
},
|
|
5239
5420
|
{
|
|
5240
5421
|
"name": "modalHandler"
|
|
@@ -6032,7 +6213,7 @@
|
|
|
6032
6213
|
"attributes": [
|
|
6033
6214
|
{
|
|
6034
6215
|
"name": "value",
|
|
6035
|
-
"type": "
|
|
6216
|
+
"type": "array",
|
|
6036
6217
|
"default": "[]"
|
|
6037
6218
|
}
|
|
6038
6219
|
],
|
|
@@ -6045,7 +6226,7 @@
|
|
|
6045
6226
|
{
|
|
6046
6227
|
"name": "value",
|
|
6047
6228
|
"attribute": "value",
|
|
6048
|
-
"type": "
|
|
6229
|
+
"type": "array",
|
|
6049
6230
|
"default": "[]"
|
|
6050
6231
|
},
|
|
6051
6232
|
{
|
|
@@ -6820,8 +7001,12 @@
|
|
|
6820
7001
|
},
|
|
6821
7002
|
{
|
|
6822
7003
|
"name": "config",
|
|
6823
|
-
"type": "
|
|
6824
|
-
|
|
7004
|
+
"type": "array"
|
|
7005
|
+
}
|
|
7006
|
+
],
|
|
7007
|
+
"events": [
|
|
7008
|
+
{
|
|
7009
|
+
"name": "property-value-change"
|
|
6825
7010
|
}
|
|
6826
7011
|
]
|
|
6827
7012
|
},
|
|
@@ -6953,8 +7138,8 @@
|
|
|
6953
7138
|
]
|
|
6954
7139
|
},
|
|
6955
7140
|
{
|
|
6956
|
-
"name": "umb-export-dictionary-modal
|
|
6957
|
-
"path": "./src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal
|
|
7141
|
+
"name": "umb-export-dictionary-modal",
|
|
7142
|
+
"path": "./src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal.element.ts",
|
|
6958
7143
|
"properties": [
|
|
6959
7144
|
{
|
|
6960
7145
|
"name": "styles",
|
|
@@ -6964,8 +7149,8 @@
|
|
|
6964
7149
|
]
|
|
6965
7150
|
},
|
|
6966
7151
|
{
|
|
6967
|
-
"name": "umb-import-dictionary-modal
|
|
6968
|
-
"path": "./src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal
|
|
7152
|
+
"name": "umb-import-dictionary-modal",
|
|
7153
|
+
"path": "./src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal.element.ts",
|
|
6969
7154
|
"properties": [
|
|
6970
7155
|
{
|
|
6971
7156
|
"name": "styles",
|
|
@@ -7027,8 +7212,7 @@
|
|
|
7027
7212
|
"path": "./src/backoffice/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
7028
7213
|
"attributes": [
|
|
7029
7214
|
{
|
|
7030
|
-
"name": "data"
|
|
7031
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7215
|
+
"name": "data"
|
|
7032
7216
|
}
|
|
7033
7217
|
],
|
|
7034
7218
|
"properties": [
|
|
@@ -7042,8 +7226,7 @@
|
|
|
7042
7226
|
},
|
|
7043
7227
|
{
|
|
7044
7228
|
"name": "data",
|
|
7045
|
-
"attribute": "data"
|
|
7046
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7229
|
+
"attribute": "data"
|
|
7047
7230
|
}
|
|
7048
7231
|
]
|
|
7049
7232
|
},
|
|
@@ -7061,18 +7244,58 @@
|
|
|
7061
7244
|
}
|
|
7062
7245
|
]
|
|
7063
7246
|
},
|
|
7247
|
+
{
|
|
7248
|
+
"name": "umb-user-profile-app-external-login-providers",
|
|
7249
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.ts",
|
|
7250
|
+
"properties": [
|
|
7251
|
+
{
|
|
7252
|
+
"name": "styles",
|
|
7253
|
+
"type": "CSSResult[]",
|
|
7254
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7255
|
+
}
|
|
7256
|
+
]
|
|
7257
|
+
},
|
|
7258
|
+
{
|
|
7259
|
+
"name": "umb-user-profile-app-history",
|
|
7260
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7261
|
+
"properties": [
|
|
7262
|
+
{
|
|
7263
|
+
"name": "styles",
|
|
7264
|
+
"type": "CSSResult[]",
|
|
7265
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7266
|
+
}
|
|
7267
|
+
]
|
|
7268
|
+
},
|
|
7064
7269
|
{
|
|
7065
7270
|
"name": "umb-user-dashboard-test",
|
|
7066
|
-
"path": "./src/backoffice/users/current-user/user-
|
|
7271
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7067
7272
|
"properties": [
|
|
7068
7273
|
{
|
|
7069
7274
|
"name": "styles",
|
|
7070
7275
|
"type": "CSSResult[]",
|
|
7071
7276
|
"default": "[\"UUITextStyles\",null]"
|
|
7072
|
-
}
|
|
7277
|
+
}
|
|
7278
|
+
]
|
|
7279
|
+
},
|
|
7280
|
+
{
|
|
7281
|
+
"name": "umb-user-profile-app-profile",
|
|
7282
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-profile.element.ts",
|
|
7283
|
+
"properties": [
|
|
7284
|
+
{
|
|
7285
|
+
"name": "styles",
|
|
7286
|
+
"type": "CSSResult[]",
|
|
7287
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7288
|
+
}
|
|
7289
|
+
]
|
|
7290
|
+
},
|
|
7291
|
+
{
|
|
7292
|
+
"name": "umb-user-profile-app-themes",
|
|
7293
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-themes.element.ts",
|
|
7294
|
+
"properties": [
|
|
7073
7295
|
{
|
|
7074
|
-
"name": "
|
|
7075
|
-
"type": "
|
|
7296
|
+
"name": "styles",
|
|
7297
|
+
"type": "CSSResult[]",
|
|
7298
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7076
7299
|
}
|
|
7077
7300
|
]
|
|
7078
7301
|
},
|
|
@@ -7452,7 +7675,7 @@
|
|
|
7452
7675
|
"attributes": [
|
|
7453
7676
|
{
|
|
7454
7677
|
"name": "routes",
|
|
7455
|
-
"type": "
|
|
7678
|
+
"type": "any[] | undefined"
|
|
7456
7679
|
}
|
|
7457
7680
|
],
|
|
7458
7681
|
"properties": [
|
|
@@ -7464,7 +7687,60 @@
|
|
|
7464
7687
|
{
|
|
7465
7688
|
"name": "routes",
|
|
7466
7689
|
"attribute": "routes",
|
|
7467
|
-
"type": "
|
|
7690
|
+
"type": "any[] | undefined"
|
|
7691
|
+
},
|
|
7692
|
+
{
|
|
7693
|
+
"name": "absoluteRouterPath",
|
|
7694
|
+
"type": "string | undefined"
|
|
7695
|
+
},
|
|
7696
|
+
{
|
|
7697
|
+
"name": "localActiveViewPath",
|
|
7698
|
+
"type": "string | undefined"
|
|
7699
|
+
},
|
|
7700
|
+
{
|
|
7701
|
+
"name": "absoluteActiveViewPath",
|
|
7702
|
+
"type": "string"
|
|
7703
|
+
}
|
|
7704
|
+
],
|
|
7705
|
+
"events": [
|
|
7706
|
+
{
|
|
7707
|
+
"name": "init",
|
|
7708
|
+
"description": "fires when the router is connected"
|
|
7709
|
+
},
|
|
7710
|
+
{
|
|
7711
|
+
"name": "change",
|
|
7712
|
+
"description": "fires when a path of this router is changed"
|
|
7713
|
+
}
|
|
7714
|
+
]
|
|
7715
|
+
},
|
|
7716
|
+
{
|
|
7717
|
+
"name": "umb-variant-router-slot",
|
|
7718
|
+
"path": "./src/core/router/variant-router-slot.element.ts",
|
|
7719
|
+
"attributes": [
|
|
7720
|
+
{
|
|
7721
|
+
"name": "variantId",
|
|
7722
|
+
"type": "UmbVariantId[]"
|
|
7723
|
+
},
|
|
7724
|
+
{
|
|
7725
|
+
"name": "routes",
|
|
7726
|
+
"type": "any[] | undefined"
|
|
7727
|
+
}
|
|
7728
|
+
],
|
|
7729
|
+
"properties": [
|
|
7730
|
+
{
|
|
7731
|
+
"name": "variantId",
|
|
7732
|
+
"attribute": "variantId",
|
|
7733
|
+
"type": "UmbVariantId[]"
|
|
7734
|
+
},
|
|
7735
|
+
{
|
|
7736
|
+
"name": "styles",
|
|
7737
|
+
"type": "CSSResult[]",
|
|
7738
|
+
"default": "[null]"
|
|
7739
|
+
},
|
|
7740
|
+
{
|
|
7741
|
+
"name": "routes",
|
|
7742
|
+
"attribute": "routes",
|
|
7743
|
+
"type": "any[] | undefined"
|
|
7468
7744
|
},
|
|
7469
7745
|
{
|
|
7470
7746
|
"name": "absoluteRouterPath",
|
package/element.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { HTMLElementConstructor } from './models';
|
|
3
|
-
import {
|
|
3
|
+
import { UmbControllerHostElement } from './controller';
|
|
4
4
|
import { UmbContextToken, UmbContextProviderController, UmbContextCallback, UmbContextConsumerController } from './context-api';
|
|
5
5
|
import { UmbObserverController } from './observable-api';
|
|
6
6
|
|
|
7
7
|
interface ResolvedContexts {
|
|
8
8
|
[key: string]: any;
|
|
9
9
|
}
|
|
10
|
-
declare class UmbElementMixinInterface extends
|
|
10
|
+
declare class UmbElementMixinInterface extends UmbControllerHostElement {
|
|
11
11
|
observe<T>(source: Observable<T>, callback: (_value: T) => void, unique?: string): UmbObserverController<T>;
|
|
12
12
|
provideContext<R = unknown>(alias: string | UmbContextToken<R>, instance: R): UmbContextProviderController<R>;
|
|
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 };
|