clean up
This commit is contained in:
@@ -15,7 +15,7 @@ export const manifest: ManifestPropertyEditorModel = {
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Toggle',
|
||||
},
|
||||
{
|
||||
alias: 'colors',
|
||||
alias: 'items',
|
||||
label: 'Colors',
|
||||
description: 'Add, remove or sort colors',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.ColorPicker',
|
||||
|
||||
@@ -20,7 +20,7 @@ export const manifest: ManifestPropertyEditorModel = {
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
},
|
||||
{
|
||||
alias: 'stepSize',
|
||||
alias: 'step',
|
||||
label: 'Step size',
|
||||
description: 'Enter the intervals amount between each step of number to be entered',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
|
||||
@@ -20,7 +20,7 @@ export const manifest: ManifestPropertyEditorModel = {
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
},
|
||||
{
|
||||
alias: 'stepSize',
|
||||
alias: 'step',
|
||||
label: 'Step size',
|
||||
description: 'Enter the intervals amount between each step of number to be entered',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
|
||||
@@ -6,7 +6,37 @@ export const manifest: ManifestPropertyEditorModel = {
|
||||
alias: 'Umbraco.ListView',
|
||||
meta: {
|
||||
config: {
|
||||
properties: [],
|
||||
properties: [
|
||||
{
|
||||
alias: 'pageSize',
|
||||
label: 'Page Size',
|
||||
description: 'Number of items per page.',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
},
|
||||
{
|
||||
alias: 'orderDirection',
|
||||
label: 'Order Direction',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.OrderDirection',
|
||||
},
|
||||
{
|
||||
alias: 'includeProperties',
|
||||
label: 'Columns Displayed',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.ColumnConfiguration',
|
||||
},
|
||||
{
|
||||
alias: 'orderBy',
|
||||
label: 'Order By',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.OrderBy',
|
||||
},
|
||||
{
|
||||
alias: 'bulkActionPermissions',
|
||||
label: 'Bulk Action Permissions',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.BulkActionPermissions',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -8,13 +8,13 @@ export const manifest: ManifestPropertyEditorModel = {
|
||||
config: {
|
||||
properties: [
|
||||
{
|
||||
alias: 'minNumber',
|
||||
alias: 'min',
|
||||
label: 'Minimum',
|
||||
description: 'Enter the minimum amount of text boxes to be displayed',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
},
|
||||
{
|
||||
alias: 'maxNumber',
|
||||
alias: 'max',
|
||||
label: 'Maximum',
|
||||
description: 'Enter the maximum amount of text boxes to be displayed, enter 0 for unlimited',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
@@ -22,11 +22,11 @@ export const manifest: ManifestPropertyEditorModel = {
|
||||
],
|
||||
defaultData: [
|
||||
{
|
||||
alias: 'minNumber',
|
||||
alias: 'min',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
alias: 'maxNumber',
|
||||
alias: 'max',
|
||||
value: 0,
|
||||
},
|
||||
],
|
||||
|
||||
@@ -27,6 +27,12 @@ const manifest: ManifestPropertyEditorUI = {
|
||||
'Live editing in editor overlays for live updated custom views or labels using custom expression.',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Toggle',
|
||||
},
|
||||
{
|
||||
alias: 'useInlineEditingAsDefault',
|
||||
label: 'Inline editing mode',
|
||||
description: 'Use the inline editor as the default block view.',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Toggle',
|
||||
},
|
||||
{
|
||||
alias: 'maxPropertyWidth',
|
||||
label: 'Property editor width',
|
||||
|
||||
@@ -13,7 +13,7 @@ export const manifest: ManifestPropertyEditorUI = {
|
||||
config: {
|
||||
properties: [
|
||||
{
|
||||
alias: 'options',
|
||||
alias: 'items',
|
||||
label: 'Add option',
|
||||
description: 'Add, remove or sort options for the list.',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.MultipleTextString',
|
||||
|
||||
@@ -16,41 +16,12 @@ const manifest: ManifestPropertyEditorUI = {
|
||||
group: 'lists',
|
||||
config: {
|
||||
properties: [
|
||||
{
|
||||
alias: 'pageSize',
|
||||
label: 'Page Size',
|
||||
description: 'Number of items per page.',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Number',
|
||||
},
|
||||
{
|
||||
alias: 'orderDirection',
|
||||
label: 'Order Direction',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.OrderDirection',
|
||||
},
|
||||
{
|
||||
alias: 'includeProperties',
|
||||
label: 'Columns Displayed',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.ColumnConfiguration',
|
||||
},
|
||||
{
|
||||
alias: 'orderBy',
|
||||
label: 'Order By',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.OrderBy',
|
||||
},
|
||||
{
|
||||
alias: 'layouts',
|
||||
label: 'Layouts',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.LayoutConfiguration',
|
||||
},
|
||||
{
|
||||
alias: 'bulkActionPermissions',
|
||||
label: 'Bulk Action Permissions',
|
||||
description: 'The properties that will be displayed for each column',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.CollectionView.BulkActionPermissions',
|
||||
},
|
||||
{
|
||||
alias: 'icon',
|
||||
label: 'Content app icon',
|
||||
|
||||
@@ -24,6 +24,12 @@ export const manifest: ManifestPropertyEditorUI = {
|
||||
description: 'Require a certain amount of documents',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.NumberRange',
|
||||
},
|
||||
{
|
||||
alias: 'ignoreUserStartNodes',
|
||||
label: 'Ignore User Start Nodes',
|
||||
description: 'Selecting this option allows a user to choose nodes that they normally dont have access to',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Boolean',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
@@ -18,7 +18,7 @@ export const manifest: ManifestPropertyEditorUI = {
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.Toggle',
|
||||
},
|
||||
{
|
||||
alias: 'options',
|
||||
alias: 'items',
|
||||
label: 'Add options',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.MultipleTextString',
|
||||
},
|
||||
|
||||
@@ -13,7 +13,7 @@ export const manifest: ManifestPropertyEditorUI = {
|
||||
config: {
|
||||
properties: [
|
||||
{
|
||||
alias: 'options',
|
||||
alias: 'items',
|
||||
label: 'Add option',
|
||||
description: 'Add, remove or sort options for the list.',
|
||||
propertyEditorUI: 'Umb.PropertyEditorUI.MultipleTextString',
|
||||
|
||||
@@ -45,7 +45,7 @@ export const manifests: Array<ManifestPropertyEditorUI> = [
|
||||
defaultData: [
|
||||
{
|
||||
alias: 'inputType',
|
||||
value: 'text',
|
||||
value: 'email',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user