Update manifest to support textstring, area, boolean and content picker
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -57,7 +57,6 @@ src/Umbraco.Tests/config/404handlers.config
|
||||
src/Umbraco.Web.UI/Views/*.cshtml
|
||||
src/Umbraco.Web.UI/Views/*.vbhtml
|
||||
src/Umbraco.Tests/config/umbracoSettings.config
|
||||
src/Umbraco.Web.UI/App_Plugins/*
|
||||
src/Umbraco.Web.UI/Views/*
|
||||
src/packages/
|
||||
src/packages/repositories.config
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<input type="checkbox" ng-model="model.value" id="{{model.alias}} />
|
||||
@@ -1,12 +1,5 @@
|
||||
{
|
||||
propertyEditors: [
|
||||
{
|
||||
id: "5e9b75ae-face-41c8-b47e-5f4b0fd82f83",
|
||||
name: "Rich Text Editor",
|
||||
editor: {
|
||||
view: "~/umbraco/Views/propertyeditors/umbraco/rte/editor.html"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "0BA0F832-D759-4526-9B3E-94BBFC98F92E",
|
||||
name: "Regex",
|
||||
|
||||
39
src/Umbraco.Web.UI/App_Plugins/Umbraco/Package.manifest
Normal file
39
src/Umbraco.Web.UI/App_Plugins/Umbraco/Package.manifest
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
propertyEditors: [
|
||||
{
|
||||
id: "ec15c1e5-9d90-422a-aa52-4f7622c63bea",
|
||||
name: "Textstring",
|
||||
editor: {
|
||||
view: "~/umbraco/Views/propertyeditors/umbraco/textstring/editor.html"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "67db8357-ef57-493e-91ac-936d305e0f2a",
|
||||
name: "textarea",
|
||||
editor: {
|
||||
view: "~/umbraco/Views/propertyeditors/umbraco/textarea/editor.html"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "38b352c1-e9f8-4fd8-9324-9a2eab06d97a",
|
||||
name: "True/False",
|
||||
editor: {
|
||||
view: "~/umbraco/Views/propertyeditors/umbraco/boolean/editor.html"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "67db8357-ef57-493e-91ac-936d305e0f2a",
|
||||
name: "Content Picker",
|
||||
editor: {
|
||||
view: "~/umbraco/Views/propertyeditors/umbraco/contentpicker/editor.html"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "5e9b75ae-face-41c8-b47e-5f4b0fd82f83",
|
||||
name: "Rich Text Editor",
|
||||
editor: {
|
||||
view: "~/umbraco/Views/propertyeditors/umbraco/rte/editor.html"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user