Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inline array improvements #4671

Merged
merged 23 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

## 4.7.0 (2024-09-05)

### Changes

* UI and UX of inline arrays and their table styles

### Adds

* To aid debugging, when a file extension is unacceptable as an Apostrophe attachment the rejected extension is now printed as part of the error message.
Expand Down Expand Up @@ -45,6 +49,9 @@ This resolves the issue for new uploads.
* Fix widget focus state so that the in-context Add Content menu stays visible during animation.
* Fix UI of areas in schemas so that their context menus are layered overtop sibling schema fields UI.

### Removes
* Inline array option for `alwaysOpen` replaced with UI toggles

## 4.6.0 (2024-08-08)

### Adds
Expand Down Expand Up @@ -72,6 +79,7 @@ The shape of the relationship field is still validated.

### Fixes

* Fixes the rendering of conditional fields in arrays where the `inline: true` option is used.
* Fixes the rich text link tool's detection and display of the Remove Link button for removing existing links
* Fixes the rich text link tool's detection and display of Apostrophe Page relationship field.
* Overriding standard Vue.js components with `editorModal` and `managerModal` are now applied all the time.
Expand Down
3 changes: 3 additions & 0 deletions modules/@apostrophecms/asset/lib/globalIcons.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ module.exports = {
'apple-keyboard-shift': 'AppleKeyboardShift',
'archive-arrow-down-icon': 'ArchiveArrowDown',
'archive-arrow-up-icon': 'ArchiveArrowUp',
'arrow-collapse-vertical-icon': 'ArrowCollapseVertical',
'arrow-down-icon': 'ArrowDown',
'arrow-expand-vertical-icon': 'ArrowExpandVertical',
'arrow-left-icon': 'ArrowLeft',
'arrow-right-icon': 'ArrowRight',
'arrow-up-icon': 'ArrowUp',
Expand Down Expand Up @@ -107,6 +109,7 @@ module.exports = {
'sign-text-icon': 'SignText',
'tag-icon': 'Tag',
'text-box-icon': 'TextBox',
'text-box-multiple-icon': 'TextBoxMultiple',
'text-box-remove-icon': 'TextBoxRemove',
'trash-can-icon': 'TrashCan',
'trash-can-outline-icon': 'TrashCanOutline',
Expand Down
6 changes: 6 additions & 0 deletions modules/@apostrophecms/i18n/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"clone": "Clone",
"close": "Close",
"closeGlobal": "Close Global Site Settings",
"collapseAll": "Collapse all",
"commandMenuArchiveSelected": "Archive selected",
"commandMenuContent": "Content",
"commandMenuCreateNew": "Create new {{ type }}",
Expand Down Expand Up @@ -152,6 +153,7 @@
"draftSavedNoPreview": "Draft saved but could not navigate to a preview.",
"dropMedia": "Drop new media here",
"duplicate": "Duplicate...",
"duplicateOf": "Duplicate of",
"duplicateError": "Duplicate",
"edit": "Edit",
"editImageAdjustments": "Image Adjustments",
Expand Down Expand Up @@ -193,6 +195,7 @@
"errorWhileUnpublishing": "An error occurred while unpublishing the document.",
"everythingElse": "Everything Else",
"exit": "Exit",
"expandAll": "Expand all",
"fetchPublishedVersionFailed": "An error occurred fetching the published version of the document.",
"fieldHasUnpublishedChanges": "This field has unpublished changes",
"file": "File",
Expand Down Expand Up @@ -309,6 +312,8 @@
"modifyOrDelete": "Modify / Delete",
"moreOperations": "More Operations",
"moreOptions": "More Options",
"moveDown": "Move Down",
"moveUp": "Move Up",
"multipleEditors": "Multiple Editors",
"newDocType": "New {{ type }}",
"newItem": "New item",
Expand All @@ -319,6 +324,7 @@
"nextPage": "Next Page",
"no": "No",
"noDraftSubmissions": "No Draft Submissions to Manage",
"noItemsAdded": "No Items Added",
"noItemsSelected": "No Items Selected",
"noJustSwitchLocales": "No, just switch locales",
"noLongerPublished": "No longer published.",
Expand Down
Loading
Loading