Widgets no longer need to pass their config via options:
Update CHANGELOG.md
This commit is contained in:
parent
24f7e3eda4
commit
751e529141
|
|
@ -2,6 +2,7 @@
|
|||
- Created a new Grid form widget for managing tabular data.
|
||||
- Widget identifiers have changed to remove the alias if it matches the default alias.
|
||||
- Add new form field type called `number`.
|
||||
- You can now override partials for Relation controller by creating partials with `relation_` prefix in the controller view directory.
|
||||
|
||||
* **Build 108** (2014-06-16)
|
||||
- Checkbox List form fields now use scrollbars for 10+ checkboxes.
|
||||
|
|
|
|||
|
|
@ -60,7 +60,6 @@ secondaryTabs:
|
|||
avatar:
|
||||
label: backend::lang.user.avatar
|
||||
type: fileupload
|
||||
options:
|
||||
mode: image
|
||||
image-height: 260
|
||||
image-width: 260
|
||||
mode: image
|
||||
imageHeight: 260
|
||||
imageWidth: 260
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ secondaryTabs:
|
|||
fields:
|
||||
content:
|
||||
tab: cms::lang.editor.content
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: css
|
||||
type: codeeditor
|
||||
language: css
|
||||
|
|
@ -14,7 +14,6 @@ secondaryTabs:
|
|||
fields:
|
||||
content:
|
||||
tab: cms::lang.editor.content
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: html
|
||||
type: codeeditor
|
||||
language: html
|
||||
|
|
@ -21,14 +21,12 @@ secondaryTabs:
|
|||
fields:
|
||||
markup:
|
||||
tab: cms::lang.editor.markup
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: twig
|
||||
type: codeeditor
|
||||
language: twig
|
||||
|
||||
code:
|
||||
tab: cms::lang.editor.code
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: php
|
||||
type: codeeditor
|
||||
language: php
|
||||
|
|
|
|||
|
|
@ -67,14 +67,12 @@ secondaryTabs:
|
|||
fields:
|
||||
markup:
|
||||
tab: cms::lang.editor.markup
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: twig
|
||||
type: codeeditor
|
||||
language: twig
|
||||
|
||||
code:
|
||||
tab: cms::lang.editor.code
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: php
|
||||
type: codeeditor
|
||||
language: php
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ secondaryTabs:
|
|||
fields:
|
||||
markup:
|
||||
tab: cms::lang.editor.markup
|
||||
type: codeeditor
|
||||
stretch: true
|
||||
options:
|
||||
language: twig
|
||||
type: codeeditor
|
||||
language: twig
|
||||
|
|
@ -24,15 +24,13 @@ secondaryTabs:
|
|||
type: codeeditor
|
||||
size: giant
|
||||
tab: system::lang.email_templates.content_html
|
||||
options:
|
||||
language: html
|
||||
language: html
|
||||
|
||||
content_css:
|
||||
type: codeeditor
|
||||
size: giant
|
||||
tab: system::lang.email_templates.content_css
|
||||
options:
|
||||
language: css
|
||||
language: css
|
||||
|
||||
content_text:
|
||||
type: textarea
|
||||
|
|
|
|||
Loading…
Reference in New Issue