Update manifest to support textstring, area, boolean and content picker

This commit is contained in:
Per Ploug Krogslund
2013-06-11 13:19:52 +02:00
parent 16d2711177
commit 20bac8085e
4 changed files with 40 additions and 8 deletions

1
.gitignore vendored
View File

@@ -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

View File

@@ -0,0 +1 @@
<input type="checkbox" ng-model="model.value" id="{{model.alias}} />

View File

@@ -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",

View 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"
}
}
]
}