Skip to content

Commit e1cf9f5

Browse files
committed
Merge branch 'release/1.6.1'
2 parents bdd8393 + ff440bf commit e1cf9f5

File tree

3 files changed

+34
-16
lines changed

3 files changed

+34
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v1.6.1
2+
## 01/02/2023
3+
4+
1. [](#improved)
5+
* Improved FlexObjects default blueprint
6+
17
# v1.6.0
28
## 12/28/2022
39

blueprints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: DevTools
22
slug: devtools
33
type: plugin
4-
version: 1.6.0
4+
version: 1.6.1
55
description: Plugin and Theme scaffolding utilities
66
icon: cogs
77
author:

components/plugin/flex/blueprints/flex-objects/plugin.yaml.twig

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ config:
4040
type: toggle
4141
label: Published
4242
width: 8
43+
name:
44+
link: edit
45+
description:
4346

4447
# Edit View
4548
edit:
4649
title:
47-
template: '\{\{ object.title \}\}'
50+
template: '{{ object.title }}'
4851

4952
# Preview View
5053
preview:
@@ -99,22 +102,31 @@ config:
99102
options:
100103
contains: 1
101104
# Fields to be searched
102-
# fields:
103-
# - title
104-
# - description
105+
fields:
106+
- name
107+
- description
105108

106109
form:
107110
validation: loose
108111
fields:
109112
published:
110-
type: toggle
111-
label: Published
112-
highlight: 1
113-
default: 1
114-
options:
115-
1: PLUGIN_ADMIN.YES
116-
0: PLUGIN_ADMIN.NO
117-
validate:
118-
type: bool
119-
required: true
120-
113+
type: toggle
114+
label: Published
115+
highlight: 1
116+
default: 1
117+
options:
118+
1: PLUGIN_ADMIN.YES
119+
0: PLUGIN_ADMIN.NO
120+
validate:
121+
type: bool
122+
required: true
123+
name:
124+
type: text
125+
label: Name
126+
validate:
127+
required: true
128+
description:
129+
type: text
130+
label: Description
131+
validate:
132+
required: true

0 commit comments

Comments
 (0)