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.
|
- Created a new Grid form widget for managing tabular data.
|
||||||
- Widget identifiers have changed to remove the alias if it matches the default alias.
|
- Widget identifiers have changed to remove the alias if it matches the default alias.
|
||||||
- Add new form field type called `number`.
|
- 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)
|
* **Build 108** (2014-06-16)
|
||||||
- Checkbox List form fields now use scrollbars for 10+ checkboxes.
|
- Checkbox List form fields now use scrollbars for 10+ checkboxes.
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,6 @@ secondaryTabs:
|
||||||
avatar:
|
avatar:
|
||||||
label: backend::lang.user.avatar
|
label: backend::lang.user.avatar
|
||||||
type: fileupload
|
type: fileupload
|
||||||
options:
|
mode: image
|
||||||
mode: image
|
imageHeight: 260
|
||||||
image-height: 260
|
imageWidth: 260
|
||||||
image-width: 260
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ secondaryTabs:
|
||||||
fields:
|
fields:
|
||||||
content:
|
content:
|
||||||
tab: cms::lang.editor.content
|
tab: cms::lang.editor.content
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: css
|
language: css
|
||||||
|
|
@ -14,7 +14,6 @@ secondaryTabs:
|
||||||
fields:
|
fields:
|
||||||
content:
|
content:
|
||||||
tab: cms::lang.editor.content
|
tab: cms::lang.editor.content
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: html
|
language: html
|
||||||
|
|
@ -21,14 +21,12 @@ secondaryTabs:
|
||||||
fields:
|
fields:
|
||||||
markup:
|
markup:
|
||||||
tab: cms::lang.editor.markup
|
tab: cms::lang.editor.markup
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: twig
|
language: twig
|
||||||
|
|
||||||
code:
|
code:
|
||||||
tab: cms::lang.editor.code
|
tab: cms::lang.editor.code
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: php
|
language: php
|
||||||
|
|
|
||||||
|
|
@ -67,14 +67,12 @@ secondaryTabs:
|
||||||
fields:
|
fields:
|
||||||
markup:
|
markup:
|
||||||
tab: cms::lang.editor.markup
|
tab: cms::lang.editor.markup
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: twig
|
language: twig
|
||||||
|
|
||||||
code:
|
code:
|
||||||
tab: cms::lang.editor.code
|
tab: cms::lang.editor.code
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: php
|
language: php
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ secondaryTabs:
|
||||||
fields:
|
fields:
|
||||||
markup:
|
markup:
|
||||||
tab: cms::lang.editor.markup
|
tab: cms::lang.editor.markup
|
||||||
type: codeeditor
|
|
||||||
stretch: true
|
stretch: true
|
||||||
options:
|
type: codeeditor
|
||||||
language: twig
|
language: twig
|
||||||
|
|
@ -24,15 +24,13 @@ secondaryTabs:
|
||||||
type: codeeditor
|
type: codeeditor
|
||||||
size: giant
|
size: giant
|
||||||
tab: system::lang.email_templates.content_html
|
tab: system::lang.email_templates.content_html
|
||||||
options:
|
language: html
|
||||||
language: html
|
|
||||||
|
|
||||||
content_css:
|
content_css:
|
||||||
type: codeeditor
|
type: codeeditor
|
||||||
size: giant
|
size: giant
|
||||||
tab: system::lang.email_templates.content_css
|
tab: system::lang.email_templates.content_css
|
||||||
options:
|
language: css
|
||||||
language: css
|
|
||||||
|
|
||||||
content_text:
|
content_text:
|
||||||
type: textarea
|
type: textarea
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue