@umbraco-cms/backoffice 1.0.0-next.c1172939 → 1.0.0-next.d01c4274
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 +595 -55
- package/element.d.ts +2 -2
- 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 +234 -40
- 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,41 @@
|
|
|
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
|
+
"properties": [
|
|
135
|
+
{
|
|
136
|
+
"name": "styles",
|
|
137
|
+
"type": "CSSResult[]",
|
|
138
|
+
"default": "[\"UUITextStyles\",null]"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
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
|
+
"properties": [
|
|
146
|
+
{
|
|
147
|
+
"name": "styles",
|
|
148
|
+
"type": "CSSResult[]",
|
|
149
|
+
"default": "[\"UUITextStyles\",null]"
|
|
150
|
+
}
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
{
|
|
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
|
+
"properties": [
|
|
157
|
+
{
|
|
158
|
+
"name": "styles",
|
|
159
|
+
"type": "CSSResult[]",
|
|
160
|
+
"default": "[\"UUITextStyles\",null]"
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
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",
|
|
134
167
|
"properties": [
|
|
135
168
|
{
|
|
136
169
|
"name": "styles",
|
|
@@ -198,6 +231,17 @@
|
|
|
198
231
|
}
|
|
199
232
|
]
|
|
200
233
|
},
|
|
234
|
+
{
|
|
235
|
+
"name": "umb-document-type-picker-modal",
|
|
236
|
+
"path": "./src/backoffice/documents/documents/modals/document-type-picker/document-type-picker-modal.element.ts",
|
|
237
|
+
"properties": [
|
|
238
|
+
{
|
|
239
|
+
"name": "styles",
|
|
240
|
+
"type": "CSSResult[]",
|
|
241
|
+
"default": "[\"UUITextStyles\",null]"
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
201
245
|
{
|
|
202
246
|
"name": "umb-document-tree-item",
|
|
203
247
|
"path": "./src/backoffice/documents/documents/tree/tree-item/document-tree-item.element.ts",
|
|
@@ -213,8 +257,8 @@
|
|
|
213
257
|
]
|
|
214
258
|
},
|
|
215
259
|
{
|
|
216
|
-
"name": "umb-document-workspace-
|
|
217
|
-
"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",
|
|
218
262
|
"properties": [
|
|
219
263
|
{
|
|
220
264
|
"name": "styles",
|
|
@@ -899,6 +943,17 @@
|
|
|
899
943
|
}
|
|
900
944
|
]
|
|
901
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
|
+
},
|
|
902
957
|
{
|
|
903
958
|
"name": "umb-data-type-workspace-edit-element",
|
|
904
959
|
"path": "./src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts",
|
|
@@ -1801,7 +1856,7 @@
|
|
|
1801
1856
|
"path": "./src/backoffice/shared/components/debug/debug.element.ts",
|
|
1802
1857
|
"attributes": [
|
|
1803
1858
|
{
|
|
1804
|
-
"name": "
|
|
1859
|
+
"name": "visible",
|
|
1805
1860
|
"type": "boolean",
|
|
1806
1861
|
"default": "false"
|
|
1807
1862
|
},
|
|
@@ -1809,11 +1864,6 @@
|
|
|
1809
1864
|
"name": "dialog",
|
|
1810
1865
|
"type": "boolean",
|
|
1811
1866
|
"default": "false"
|
|
1812
|
-
},
|
|
1813
|
-
{
|
|
1814
|
-
"name": "contexts",
|
|
1815
|
-
"type": "Map<any, any>",
|
|
1816
|
-
"default": "\"new Map()\""
|
|
1817
1867
|
}
|
|
1818
1868
|
],
|
|
1819
1869
|
"properties": [
|
|
@@ -1823,8 +1873,8 @@
|
|
|
1823
1873
|
"default": "[\"UUITextStyles\",null]"
|
|
1824
1874
|
},
|
|
1825
1875
|
{
|
|
1826
|
-
"name": "
|
|
1827
|
-
"attribute": "
|
|
1876
|
+
"name": "visible",
|
|
1877
|
+
"attribute": "visible",
|
|
1828
1878
|
"type": "boolean",
|
|
1829
1879
|
"default": "false"
|
|
1830
1880
|
},
|
|
@@ -1835,10 +1885,9 @@
|
|
|
1835
1885
|
"default": "false"
|
|
1836
1886
|
},
|
|
1837
1887
|
{
|
|
1838
|
-
"name": "
|
|
1839
|
-
"
|
|
1840
|
-
"
|
|
1841
|
-
"default": "\"new Map()\""
|
|
1888
|
+
"name": "contextData",
|
|
1889
|
+
"type": "array",
|
|
1890
|
+
"default": "\"Array<DebugContextData>()\""
|
|
1842
1891
|
}
|
|
1843
1892
|
]
|
|
1844
1893
|
},
|
|
@@ -2135,7 +2184,7 @@
|
|
|
2135
2184
|
},
|
|
2136
2185
|
{
|
|
2137
2186
|
"name": "renderMethod",
|
|
2138
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2187
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2139
2188
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2140
2189
|
}
|
|
2141
2190
|
],
|
|
@@ -2169,7 +2218,7 @@
|
|
|
2169
2218
|
{
|
|
2170
2219
|
"name": "renderMethod",
|
|
2171
2220
|
"attribute": "renderMethod",
|
|
2172
|
-
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<
|
|
2221
|
+
"type": "(extension: InitializedExtension) => HTMLElement | TemplateResult<1 | 2> | null",
|
|
2173
2222
|
"default": "\"(extension) =>\\n\\t\\textension.component\""
|
|
2174
2223
|
}
|
|
2175
2224
|
],
|
|
@@ -2627,6 +2676,73 @@
|
|
|
2627
2676
|
}
|
|
2628
2677
|
]
|
|
2629
2678
|
},
|
|
2679
|
+
{
|
|
2680
|
+
"name": "umb-input-document-type-picker",
|
|
2681
|
+
"path": "./src/backoffice/shared/components/input-document-type-picker/input-document-type-picker.element.ts",
|
|
2682
|
+
"attributes": [
|
|
2683
|
+
{
|
|
2684
|
+
"name": "value",
|
|
2685
|
+
"type": "string"
|
|
2686
|
+
}
|
|
2687
|
+
],
|
|
2688
|
+
"properties": [
|
|
2689
|
+
{
|
|
2690
|
+
"name": "styles",
|
|
2691
|
+
"type": "CSSResult[]",
|
|
2692
|
+
"default": "[\"UUITextStyles\",null]"
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"name": "selectedKeys",
|
|
2696
|
+
"type": "string[]"
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
"name": "formAssociated",
|
|
2700
|
+
"type": "boolean"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"name": "value",
|
|
2704
|
+
"attribute": "value",
|
|
2705
|
+
"type": "string"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"name": "name",
|
|
2709
|
+
"type": "string"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"name": "validationMessage",
|
|
2713
|
+
"type": "string"
|
|
2714
|
+
},
|
|
2715
|
+
{
|
|
2716
|
+
"name": "validity",
|
|
2717
|
+
"type": "ValidityState"
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
"name": "pristine",
|
|
2721
|
+
"type": "boolean"
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
"name": "required",
|
|
2725
|
+
"type": "boolean"
|
|
2726
|
+
},
|
|
2727
|
+
{
|
|
2728
|
+
"name": "requiredMessage",
|
|
2729
|
+
"type": "string"
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
"name": "error",
|
|
2733
|
+
"type": "boolean"
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"name": "errorMessage",
|
|
2737
|
+
"type": "string"
|
|
2738
|
+
}
|
|
2739
|
+
],
|
|
2740
|
+
"events": [
|
|
2741
|
+
{
|
|
2742
|
+
"name": "change"
|
|
2743
|
+
}
|
|
2744
|
+
]
|
|
2745
|
+
},
|
|
2630
2746
|
{
|
|
2631
2747
|
"name": "umb-input-eye-dropper",
|
|
2632
2748
|
"path": "./src/backoffice/shared/components/input-eye-dropper/input-eye-dropper.element.ts",
|
|
@@ -2949,6 +3065,14 @@
|
|
|
2949
3065
|
"name": "umb-input-multi-url-picker",
|
|
2950
3066
|
"path": "./src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.element.ts",
|
|
2951
3067
|
"attributes": [
|
|
3068
|
+
{
|
|
3069
|
+
"name": "alias",
|
|
3070
|
+
"type": "string | undefined"
|
|
3071
|
+
},
|
|
3072
|
+
{
|
|
3073
|
+
"name": "variantId",
|
|
3074
|
+
"type": "string | UmbVariantId | undefined"
|
|
3075
|
+
},
|
|
2952
3076
|
{
|
|
2953
3077
|
"name": "min",
|
|
2954
3078
|
"description": "This is a minimum amount of selected items in this input.",
|
|
@@ -2993,6 +3117,16 @@
|
|
|
2993
3117
|
"type": "CSSResult[]",
|
|
2994
3118
|
"default": "[\"UUITextStyles\",null]"
|
|
2995
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
|
+
},
|
|
2996
3130
|
{
|
|
2997
3131
|
"name": "min",
|
|
2998
3132
|
"attribute": "min",
|
|
@@ -3465,6 +3599,137 @@
|
|
|
3465
3599
|
}
|
|
3466
3600
|
]
|
|
3467
3601
|
},
|
|
3602
|
+
{
|
|
3603
|
+
"name": "umb-input-template-picker",
|
|
3604
|
+
"path": "./src/backoffice/shared/components/input-template-picker/input-template-picker.element.ts",
|
|
3605
|
+
"attributes": [
|
|
3606
|
+
{
|
|
3607
|
+
"name": "min",
|
|
3608
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
3609
|
+
"type": "number",
|
|
3610
|
+
"default": "\"undefined\""
|
|
3611
|
+
},
|
|
3612
|
+
{
|
|
3613
|
+
"name": "max",
|
|
3614
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
3615
|
+
"type": "number",
|
|
3616
|
+
"default": "\"undefined\""
|
|
3617
|
+
},
|
|
3618
|
+
{
|
|
3619
|
+
"name": "min-message",
|
|
3620
|
+
"description": "Min validation message.",
|
|
3621
|
+
"type": "boolean",
|
|
3622
|
+
"default": "\"\""
|
|
3623
|
+
},
|
|
3624
|
+
{
|
|
3625
|
+
"name": "maxMessage",
|
|
3626
|
+
"description": "Max validation message.",
|
|
3627
|
+
"type": "boolean",
|
|
3628
|
+
"default": "\"\""
|
|
3629
|
+
},
|
|
3630
|
+
{
|
|
3631
|
+
"name": "allowedKeys",
|
|
3632
|
+
"type": "string[]"
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
"name": "defaultKey",
|
|
3636
|
+
"type": "string"
|
|
3637
|
+
}
|
|
3638
|
+
],
|
|
3639
|
+
"properties": [
|
|
3640
|
+
{
|
|
3641
|
+
"name": "min",
|
|
3642
|
+
"attribute": "min",
|
|
3643
|
+
"description": "This is a minimum amount of selected items in this input.",
|
|
3644
|
+
"type": "number",
|
|
3645
|
+
"default": "\"undefined\""
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
"name": "max",
|
|
3649
|
+
"attribute": "max",
|
|
3650
|
+
"description": "This is a maximum amount of selected items in this input.",
|
|
3651
|
+
"type": "number",
|
|
3652
|
+
"default": "\"undefined\""
|
|
3653
|
+
},
|
|
3654
|
+
{
|
|
3655
|
+
"name": "minMessage",
|
|
3656
|
+
"attribute": "min-message",
|
|
3657
|
+
"description": "Min validation message.",
|
|
3658
|
+
"type": "boolean",
|
|
3659
|
+
"default": "\"\""
|
|
3660
|
+
},
|
|
3661
|
+
{
|
|
3662
|
+
"name": "maxMessage",
|
|
3663
|
+
"attribute": "maxMessage",
|
|
3664
|
+
"description": "Max validation message.",
|
|
3665
|
+
"type": "boolean",
|
|
3666
|
+
"default": "\"\""
|
|
3667
|
+
},
|
|
3668
|
+
{
|
|
3669
|
+
"name": "allowedKeys",
|
|
3670
|
+
"attribute": "allowedKeys",
|
|
3671
|
+
"type": "string[]"
|
|
3672
|
+
},
|
|
3673
|
+
{
|
|
3674
|
+
"name": "defaultKey",
|
|
3675
|
+
"attribute": "defaultKey",
|
|
3676
|
+
"type": "string"
|
|
3677
|
+
},
|
|
3678
|
+
{
|
|
3679
|
+
"name": "styles",
|
|
3680
|
+
"type": "CSSResult[]",
|
|
3681
|
+
"default": "[\"UUITextStyles\",null]"
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
"name": "formAssociated",
|
|
3685
|
+
"type": "boolean"
|
|
3686
|
+
},
|
|
3687
|
+
{
|
|
3688
|
+
"name": "value",
|
|
3689
|
+
"type": "FormDataEntryValue | FormData"
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"name": "name",
|
|
3693
|
+
"type": "string"
|
|
3694
|
+
},
|
|
3695
|
+
{
|
|
3696
|
+
"name": "validationMessage",
|
|
3697
|
+
"type": "string"
|
|
3698
|
+
},
|
|
3699
|
+
{
|
|
3700
|
+
"name": "validity",
|
|
3701
|
+
"type": "ValidityState"
|
|
3702
|
+
},
|
|
3703
|
+
{
|
|
3704
|
+
"name": "pristine",
|
|
3705
|
+
"type": "boolean"
|
|
3706
|
+
},
|
|
3707
|
+
{
|
|
3708
|
+
"name": "required",
|
|
3709
|
+
"type": "boolean"
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"name": "requiredMessage",
|
|
3713
|
+
"type": "string"
|
|
3714
|
+
},
|
|
3715
|
+
{
|
|
3716
|
+
"name": "error",
|
|
3717
|
+
"type": "boolean"
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"name": "errorMessage",
|
|
3721
|
+
"type": "string"
|
|
3722
|
+
}
|
|
3723
|
+
],
|
|
3724
|
+
"events": [
|
|
3725
|
+
{
|
|
3726
|
+
"name": "change-default"
|
|
3727
|
+
},
|
|
3728
|
+
{
|
|
3729
|
+
"name": "change-allowed"
|
|
3730
|
+
}
|
|
3731
|
+
]
|
|
3732
|
+
},
|
|
3468
3733
|
{
|
|
3469
3734
|
"name": "umb-input-toggle",
|
|
3470
3735
|
"path": "./src/backoffice/shared/components/input-toggle/input-toggle.element.ts",
|
|
@@ -3682,16 +3947,71 @@
|
|
|
3682
3947
|
]
|
|
3683
3948
|
},
|
|
3684
3949
|
{
|
|
3685
|
-
"name": "umb-menu-item",
|
|
3686
|
-
"path": "./src/backoffice/shared/components/menu-item/menu-item.element.ts",
|
|
3687
|
-
"
|
|
3950
|
+
"name": "umb-menu-item-base",
|
|
3951
|
+
"path": "./src/backoffice/shared/components/menu/menu-item-base/menu-item-base.element.ts",
|
|
3952
|
+
"attributes": [
|
|
3688
3953
|
{
|
|
3689
|
-
"name": "
|
|
3690
|
-
"type": "
|
|
3691
|
-
"default": "[\"UUITextStyles\",null]"
|
|
3954
|
+
"name": "entity-type",
|
|
3955
|
+
"type": "string | undefined"
|
|
3692
3956
|
},
|
|
3693
3957
|
{
|
|
3694
|
-
"name": "
|
|
3958
|
+
"name": "icon-name",
|
|
3959
|
+
"type": "string",
|
|
3960
|
+
"default": "\"\""
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"name": "label",
|
|
3964
|
+
"type": "string",
|
|
3965
|
+
"default": "\"\""
|
|
3966
|
+
},
|
|
3967
|
+
{
|
|
3968
|
+
"name": "has-children",
|
|
3969
|
+
"type": "boolean",
|
|
3970
|
+
"default": "false"
|
|
3971
|
+
}
|
|
3972
|
+
],
|
|
3973
|
+
"properties": [
|
|
3974
|
+
{
|
|
3975
|
+
"name": "styles",
|
|
3976
|
+
"type": "CSSResult[]",
|
|
3977
|
+
"default": "[\"UUITextStyles\",null]"
|
|
3978
|
+
},
|
|
3979
|
+
{
|
|
3980
|
+
"name": "entityType",
|
|
3981
|
+
"attribute": "entity-type",
|
|
3982
|
+
"type": "string | undefined"
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
"name": "iconName",
|
|
3986
|
+
"attribute": "icon-name",
|
|
3987
|
+
"type": "string",
|
|
3988
|
+
"default": "\"\""
|
|
3989
|
+
},
|
|
3990
|
+
{
|
|
3991
|
+
"name": "label",
|
|
3992
|
+
"attribute": "label",
|
|
3993
|
+
"type": "string",
|
|
3994
|
+
"default": "\"\""
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"name": "hasChildren",
|
|
3998
|
+
"attribute": "has-children",
|
|
3999
|
+
"type": "boolean",
|
|
4000
|
+
"default": "false"
|
|
4001
|
+
}
|
|
4002
|
+
]
|
|
4003
|
+
},
|
|
4004
|
+
{
|
|
4005
|
+
"name": "umb-menu-item",
|
|
4006
|
+
"path": "./src/backoffice/shared/components/menu/menu-item/menu-item.element.ts",
|
|
4007
|
+
"properties": [
|
|
4008
|
+
{
|
|
4009
|
+
"name": "styles",
|
|
4010
|
+
"type": "CSSResult[]",
|
|
4011
|
+
"default": "[\"UUITextStyles\"]"
|
|
4012
|
+
},
|
|
4013
|
+
{
|
|
4014
|
+
"name": "manifest"
|
|
3695
4015
|
}
|
|
3696
4016
|
]
|
|
3697
4017
|
},
|
|
@@ -4018,6 +4338,102 @@
|
|
|
4018
4338
|
}
|
|
4019
4339
|
]
|
|
4020
4340
|
},
|
|
4341
|
+
{
|
|
4342
|
+
"name": "umb-template-card",
|
|
4343
|
+
"path": "./src/backoffice/shared/components/template-card/template-card.element.ts",
|
|
4344
|
+
"attributes": [
|
|
4345
|
+
{
|
|
4346
|
+
"name": "default",
|
|
4347
|
+
"type": "boolean",
|
|
4348
|
+
"default": "false"
|
|
4349
|
+
},
|
|
4350
|
+
{
|
|
4351
|
+
"name": "key",
|
|
4352
|
+
"type": "string"
|
|
4353
|
+
},
|
|
4354
|
+
{
|
|
4355
|
+
"name": "name",
|
|
4356
|
+
"type": "string",
|
|
4357
|
+
"default": "\"\""
|
|
4358
|
+
}
|
|
4359
|
+
],
|
|
4360
|
+
"properties": [
|
|
4361
|
+
{
|
|
4362
|
+
"name": "styles",
|
|
4363
|
+
"type": "CSSResult[]",
|
|
4364
|
+
"default": "[\"UUITextStyles\",null]"
|
|
4365
|
+
},
|
|
4366
|
+
{
|
|
4367
|
+
"name": "default",
|
|
4368
|
+
"attribute": "default",
|
|
4369
|
+
"type": "boolean",
|
|
4370
|
+
"default": "false"
|
|
4371
|
+
},
|
|
4372
|
+
{
|
|
4373
|
+
"name": "key",
|
|
4374
|
+
"attribute": "key",
|
|
4375
|
+
"type": "string"
|
|
4376
|
+
},
|
|
4377
|
+
{
|
|
4378
|
+
"name": "formAssociated",
|
|
4379
|
+
"type": "boolean"
|
|
4380
|
+
},
|
|
4381
|
+
{
|
|
4382
|
+
"name": "value",
|
|
4383
|
+
"type": "FormDataEntryValue | FormData"
|
|
4384
|
+
},
|
|
4385
|
+
{
|
|
4386
|
+
"name": "name",
|
|
4387
|
+
"attribute": "name",
|
|
4388
|
+
"type": "string",
|
|
4389
|
+
"default": "\"\""
|
|
4390
|
+
},
|
|
4391
|
+
{
|
|
4392
|
+
"name": "validationMessage",
|
|
4393
|
+
"type": "string"
|
|
4394
|
+
},
|
|
4395
|
+
{
|
|
4396
|
+
"name": "validity",
|
|
4397
|
+
"type": "ValidityState"
|
|
4398
|
+
},
|
|
4399
|
+
{
|
|
4400
|
+
"name": "pristine",
|
|
4401
|
+
"type": "boolean"
|
|
4402
|
+
},
|
|
4403
|
+
{
|
|
4404
|
+
"name": "required",
|
|
4405
|
+
"type": "boolean"
|
|
4406
|
+
},
|
|
4407
|
+
{
|
|
4408
|
+
"name": "requiredMessage",
|
|
4409
|
+
"type": "string"
|
|
4410
|
+
},
|
|
4411
|
+
{
|
|
4412
|
+
"name": "error",
|
|
4413
|
+
"type": "boolean"
|
|
4414
|
+
},
|
|
4415
|
+
{
|
|
4416
|
+
"name": "errorMessage",
|
|
4417
|
+
"type": "string"
|
|
4418
|
+
}
|
|
4419
|
+
],
|
|
4420
|
+
"events": [
|
|
4421
|
+
{
|
|
4422
|
+
"name": "open"
|
|
4423
|
+
},
|
|
4424
|
+
{
|
|
4425
|
+
"name": "selected"
|
|
4426
|
+
},
|
|
4427
|
+
{
|
|
4428
|
+
"name": "change-default"
|
|
4429
|
+
}
|
|
4430
|
+
],
|
|
4431
|
+
"slots": [
|
|
4432
|
+
{
|
|
4433
|
+
"name": "actions"
|
|
4434
|
+
}
|
|
4435
|
+
]
|
|
4436
|
+
},
|
|
4021
4437
|
{
|
|
4022
4438
|
"name": "umb-tooltip-menu",
|
|
4023
4439
|
"path": "./src/backoffice/shared/components/tooltip-menu/tooltip-menu.element.ts",
|
|
@@ -4608,8 +5024,7 @@
|
|
|
4608
5024
|
"path": "./src/backoffice/shared/modals/confirm/confirm-modal.element.ts",
|
|
4609
5025
|
"attributes": [
|
|
4610
5026
|
{
|
|
4611
|
-
"name": "data"
|
|
4612
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5027
|
+
"name": "data"
|
|
4613
5028
|
}
|
|
4614
5029
|
],
|
|
4615
5030
|
"properties": [
|
|
@@ -4623,8 +5038,7 @@
|
|
|
4623
5038
|
},
|
|
4624
5039
|
{
|
|
4625
5040
|
"name": "data",
|
|
4626
|
-
"attribute": "data"
|
|
4627
|
-
"type": "UmbConfirmModalData | undefined"
|
|
5041
|
+
"attribute": "data"
|
|
4628
5042
|
}
|
|
4629
5043
|
]
|
|
4630
5044
|
},
|
|
@@ -4633,8 +5047,7 @@
|
|
|
4633
5047
|
"path": "./src/backoffice/shared/modals/embedded-media/embedded-media-modal.element.ts",
|
|
4634
5048
|
"attributes": [
|
|
4635
5049
|
{
|
|
4636
|
-
"name": "data"
|
|
4637
|
-
"type": "UmbEmbeddedMediaModalData | undefined"
|
|
5050
|
+
"name": "data"
|
|
4638
5051
|
}
|
|
4639
5052
|
],
|
|
4640
5053
|
"properties": [
|
|
@@ -4648,8 +5061,24 @@
|
|
|
4648
5061
|
},
|
|
4649
5062
|
{
|
|
4650
5063
|
"name": "data",
|
|
4651
|
-
"attribute": "data"
|
|
4652
|
-
|
|
5064
|
+
"attribute": "data"
|
|
5065
|
+
}
|
|
5066
|
+
]
|
|
5067
|
+
},
|
|
5068
|
+
{
|
|
5069
|
+
"name": "umb-folder-modal",
|
|
5070
|
+
"path": "./src/backoffice/shared/modals/folder/folder-modal.element.ts",
|
|
5071
|
+
"properties": [
|
|
5072
|
+
{
|
|
5073
|
+
"name": "styles",
|
|
5074
|
+
"type": "CSSResult[]",
|
|
5075
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5076
|
+
},
|
|
5077
|
+
{
|
|
5078
|
+
"name": "modalHandler"
|
|
5079
|
+
},
|
|
5080
|
+
{
|
|
5081
|
+
"name": "data"
|
|
4653
5082
|
}
|
|
4654
5083
|
]
|
|
4655
5084
|
},
|
|
@@ -4730,6 +5159,28 @@
|
|
|
4730
5159
|
}
|
|
4731
5160
|
]
|
|
4732
5161
|
},
|
|
5162
|
+
{
|
|
5163
|
+
"name": "umb-template-picker-modal",
|
|
5164
|
+
"path": "./src/backoffice/shared/modals/template-picker/template-picker-modal.element.ts",
|
|
5165
|
+
"properties": [
|
|
5166
|
+
{
|
|
5167
|
+
"name": "styles",
|
|
5168
|
+
"type": "CSSResult[]",
|
|
5169
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5170
|
+
}
|
|
5171
|
+
]
|
|
5172
|
+
},
|
|
5173
|
+
{
|
|
5174
|
+
"name": "umb-template-modal",
|
|
5175
|
+
"path": "./src/backoffice/shared/modals/template/template-modal.element.ts",
|
|
5176
|
+
"properties": [
|
|
5177
|
+
{
|
|
5178
|
+
"name": "styles",
|
|
5179
|
+
"type": "CSSResult[]",
|
|
5180
|
+
"default": "[\"UUITextStyles\",null]"
|
|
5181
|
+
}
|
|
5182
|
+
]
|
|
5183
|
+
},
|
|
4733
5184
|
{
|
|
4734
5185
|
"name": "umb-property-action-clear",
|
|
4735
5186
|
"path": "./src/backoffice/shared/property-actions/clear/property-action-clear.element.ts",
|
|
@@ -4854,8 +5305,7 @@
|
|
|
4854
5305
|
"path": "./src/backoffice/shared/property-editors/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.ts",
|
|
4855
5306
|
"attributes": [
|
|
4856
5307
|
{
|
|
4857
|
-
"name": "data"
|
|
4858
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5308
|
+
"name": "data"
|
|
4859
5309
|
}
|
|
4860
5310
|
],
|
|
4861
5311
|
"properties": [
|
|
@@ -4866,8 +5316,7 @@
|
|
|
4866
5316
|
},
|
|
4867
5317
|
{
|
|
4868
5318
|
"name": "data",
|
|
4869
|
-
"attribute": "data"
|
|
4870
|
-
"type": "UmbPropertyEditorUIPickerModalData | undefined"
|
|
5319
|
+
"attribute": "data"
|
|
4871
5320
|
},
|
|
4872
5321
|
{
|
|
4873
5322
|
"name": "modalHandler"
|
|
@@ -5665,7 +6114,7 @@
|
|
|
5665
6114
|
"attributes": [
|
|
5666
6115
|
{
|
|
5667
6116
|
"name": "value",
|
|
5668
|
-
"type": "
|
|
6117
|
+
"type": "array",
|
|
5669
6118
|
"default": "[]"
|
|
5670
6119
|
}
|
|
5671
6120
|
],
|
|
@@ -5678,7 +6127,7 @@
|
|
|
5678
6127
|
{
|
|
5679
6128
|
"name": "value",
|
|
5680
6129
|
"attribute": "value",
|
|
5681
|
-
"type": "
|
|
6130
|
+
"type": "array",
|
|
5682
6131
|
"default": "[]"
|
|
5683
6132
|
},
|
|
5684
6133
|
{
|
|
@@ -6586,8 +7035,8 @@
|
|
|
6586
7035
|
]
|
|
6587
7036
|
},
|
|
6588
7037
|
{
|
|
6589
|
-
"name": "umb-export-dictionary-modal
|
|
6590
|
-
"path": "./src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal
|
|
7038
|
+
"name": "umb-export-dictionary-modal",
|
|
7039
|
+
"path": "./src/backoffice/translation/dictionary/entity-actions/export/export-dictionary-modal.element.ts",
|
|
6591
7040
|
"properties": [
|
|
6592
7041
|
{
|
|
6593
7042
|
"name": "styles",
|
|
@@ -6597,8 +7046,8 @@
|
|
|
6597
7046
|
]
|
|
6598
7047
|
},
|
|
6599
7048
|
{
|
|
6600
|
-
"name": "umb-import-dictionary-modal
|
|
6601
|
-
"path": "./src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal
|
|
7049
|
+
"name": "umb-import-dictionary-modal",
|
|
7050
|
+
"path": "./src/backoffice/translation/dictionary/entity-actions/import/import-dictionary-modal.element.ts",
|
|
6602
7051
|
"properties": [
|
|
6603
7052
|
{
|
|
6604
7053
|
"name": "styles",
|
|
@@ -6660,8 +7109,7 @@
|
|
|
6660
7109
|
"path": "./src/backoffice/users/current-user/modals/change-password/change-password-modal.element.ts",
|
|
6661
7110
|
"attributes": [
|
|
6662
7111
|
{
|
|
6663
|
-
"name": "data"
|
|
6664
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7112
|
+
"name": "data"
|
|
6665
7113
|
}
|
|
6666
7114
|
],
|
|
6667
7115
|
"properties": [
|
|
@@ -6675,8 +7123,7 @@
|
|
|
6675
7123
|
},
|
|
6676
7124
|
{
|
|
6677
7125
|
"name": "data",
|
|
6678
|
-
"attribute": "data"
|
|
6679
|
-
"type": "UmbChangePasswordModalData | undefined"
|
|
7126
|
+
"attribute": "data"
|
|
6680
7127
|
}
|
|
6681
7128
|
]
|
|
6682
7129
|
},
|
|
@@ -6694,18 +7141,58 @@
|
|
|
6694
7141
|
}
|
|
6695
7142
|
]
|
|
6696
7143
|
},
|
|
7144
|
+
{
|
|
7145
|
+
"name": "umb-user-profile-app-external-login-providers",
|
|
7146
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.ts",
|
|
7147
|
+
"properties": [
|
|
7148
|
+
{
|
|
7149
|
+
"name": "styles",
|
|
7150
|
+
"type": "CSSResult[]",
|
|
7151
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7152
|
+
}
|
|
7153
|
+
]
|
|
7154
|
+
},
|
|
7155
|
+
{
|
|
7156
|
+
"name": "umb-user-profile-app-history",
|
|
7157
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
7158
|
+
"properties": [
|
|
7159
|
+
{
|
|
7160
|
+
"name": "styles",
|
|
7161
|
+
"type": "CSSResult[]",
|
|
7162
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7163
|
+
}
|
|
7164
|
+
]
|
|
7165
|
+
},
|
|
6697
7166
|
{
|
|
6698
7167
|
"name": "umb-user-dashboard-test",
|
|
6699
|
-
"path": "./src/backoffice/users/current-user/user-
|
|
7168
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-history.element.ts",
|
|
6700
7169
|
"properties": [
|
|
6701
7170
|
{
|
|
6702
7171
|
"name": "styles",
|
|
6703
7172
|
"type": "CSSResult[]",
|
|
6704
7173
|
"default": "[\"UUITextStyles\",null]"
|
|
6705
|
-
}
|
|
7174
|
+
}
|
|
7175
|
+
]
|
|
7176
|
+
},
|
|
7177
|
+
{
|
|
7178
|
+
"name": "umb-user-profile-app-profile",
|
|
7179
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-profile.element.ts",
|
|
7180
|
+
"properties": [
|
|
7181
|
+
{
|
|
7182
|
+
"name": "styles",
|
|
7183
|
+
"type": "CSSResult[]",
|
|
7184
|
+
"default": "[\"UUITextStyles\",null]"
|
|
7185
|
+
}
|
|
7186
|
+
]
|
|
7187
|
+
},
|
|
7188
|
+
{
|
|
7189
|
+
"name": "umb-user-profile-app-themes",
|
|
7190
|
+
"path": "./src/backoffice/users/current-user/user-profile-apps/user-profile-app-themes.element.ts",
|
|
7191
|
+
"properties": [
|
|
6706
7192
|
{
|
|
6707
|
-
"name": "
|
|
6708
|
-
"type": "
|
|
7193
|
+
"name": "styles",
|
|
7194
|
+
"type": "CSSResult[]",
|
|
7195
|
+
"default": "[\"UUITextStyles\",null]"
|
|
6709
7196
|
}
|
|
6710
7197
|
]
|
|
6711
7198
|
},
|
|
@@ -7085,10 +7572,63 @@
|
|
|
7085
7572
|
"attributes": [
|
|
7086
7573
|
{
|
|
7087
7574
|
"name": "routes",
|
|
7088
|
-
"type": "
|
|
7575
|
+
"type": "any[] | undefined"
|
|
7576
|
+
}
|
|
7577
|
+
],
|
|
7578
|
+
"properties": [
|
|
7579
|
+
{
|
|
7580
|
+
"name": "styles",
|
|
7581
|
+
"type": "CSSResult[]",
|
|
7582
|
+
"default": "[null]"
|
|
7583
|
+
},
|
|
7584
|
+
{
|
|
7585
|
+
"name": "routes",
|
|
7586
|
+
"attribute": "routes",
|
|
7587
|
+
"type": "any[] | undefined"
|
|
7588
|
+
},
|
|
7589
|
+
{
|
|
7590
|
+
"name": "absoluteRouterPath",
|
|
7591
|
+
"type": "string | undefined"
|
|
7592
|
+
},
|
|
7593
|
+
{
|
|
7594
|
+
"name": "localActiveViewPath",
|
|
7595
|
+
"type": "string | undefined"
|
|
7596
|
+
},
|
|
7597
|
+
{
|
|
7598
|
+
"name": "absoluteActiveViewPath",
|
|
7599
|
+
"type": "string"
|
|
7600
|
+
}
|
|
7601
|
+
],
|
|
7602
|
+
"events": [
|
|
7603
|
+
{
|
|
7604
|
+
"name": "init",
|
|
7605
|
+
"description": "fires when the router is connected"
|
|
7606
|
+
},
|
|
7607
|
+
{
|
|
7608
|
+
"name": "change",
|
|
7609
|
+
"description": "fires when a path of this router is changed"
|
|
7610
|
+
}
|
|
7611
|
+
]
|
|
7612
|
+
},
|
|
7613
|
+
{
|
|
7614
|
+
"name": "umb-variant-router-slot",
|
|
7615
|
+
"path": "./src/core/router/variant-router-slot.element.ts",
|
|
7616
|
+
"attributes": [
|
|
7617
|
+
{
|
|
7618
|
+
"name": "variantId",
|
|
7619
|
+
"type": "UmbVariantId[]"
|
|
7620
|
+
},
|
|
7621
|
+
{
|
|
7622
|
+
"name": "routes",
|
|
7623
|
+
"type": "any[] | undefined"
|
|
7089
7624
|
}
|
|
7090
7625
|
],
|
|
7091
7626
|
"properties": [
|
|
7627
|
+
{
|
|
7628
|
+
"name": "variantId",
|
|
7629
|
+
"attribute": "variantId",
|
|
7630
|
+
"type": "UmbVariantId[]"
|
|
7631
|
+
},
|
|
7092
7632
|
{
|
|
7093
7633
|
"name": "styles",
|
|
7094
7634
|
"type": "CSSResult[]",
|
|
@@ -7097,7 +7637,7 @@
|
|
|
7097
7637
|
{
|
|
7098
7638
|
"name": "routes",
|
|
7099
7639
|
"attribute": "routes",
|
|
7100
|
-
"type": "
|
|
7640
|
+
"type": "any[] | undefined"
|
|
7101
7641
|
},
|
|
7102
7642
|
{
|
|
7103
7643
|
"name": "absoluteRouterPath",
|