mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
Save layout options query (#246)
* Add getPresetForCollection method * Add savePreset action * Add useSync composition * Sync collection presets with store / api * Clean up browse flow * Cleanup tabular code * Move portal target to browse page * Save column widths to view options * Add must-sort prop to v-table * Add saving flow for viewQuery / viewOptions * Optimize saving flow * Provide main element to sub components * Add per page option * Add field setup drawer detail
This commit is contained in:
@@ -106,11 +106,9 @@
|
||||
|
||||
"modules": {},
|
||||
|
||||
"comfortable": "Comfortable",
|
||||
"coming_soon": "Coming Soon",
|
||||
"comment": "Comment",
|
||||
"comments": "Comments",
|
||||
"compact": "Compact",
|
||||
"config_error": "Missing Config",
|
||||
"config_error_copy": "Make sure you've created the application's configuration file",
|
||||
"confirm": "Confirm",
|
||||
@@ -118,7 +116,6 @@
|
||||
"contains": "Contains",
|
||||
"continue": "Continue",
|
||||
"continue_as": "<b>{name}</b> is already authenticated for this project. If you recognize this account, please press continue.",
|
||||
"cozy": "Cozy",
|
||||
"create": "Create",
|
||||
"create_collection": "Create Collection",
|
||||
"create_field": "Create Field",
|
||||
|
||||
@@ -1,41 +1,46 @@
|
||||
{
|
||||
"layouts": {
|
||||
"calendar": {
|
||||
"calendar": "Calendar",
|
||||
"fields": "Fields",
|
||||
"today": "today",
|
||||
"events": "Events",
|
||||
"moreEvents": "and {amount} more...",
|
||||
"noEvents": "no events yet!",
|
||||
"date": "Date",
|
||||
"datetime": "Datetime",
|
||||
"time": "Time",
|
||||
"title": "Title",
|
||||
"color": "Color"
|
||||
},
|
||||
"cards": {
|
||||
"cards": "Cards",
|
||||
"title": "Title",
|
||||
"subtitle": "Subtitle",
|
||||
"src": "Image Source",
|
||||
"content": "Body Content",
|
||||
"fit": "Fit"
|
||||
},
|
||||
"tabular": {
|
||||
"tabular": "Table",
|
||||
"fields": "Fields"
|
||||
},
|
||||
"timeline": {
|
||||
"timeline": "Timeline",
|
||||
"fields": "Fields",
|
||||
"today": "today",
|
||||
"events": "Events",
|
||||
"moreEvents": "and {amount} more...",
|
||||
"noEvents": "no events yet!",
|
||||
"date": "Date",
|
||||
"content": "Content",
|
||||
"title": "Title",
|
||||
"color": "Color"
|
||||
}
|
||||
}
|
||||
"layouts": {
|
||||
"calendar": {
|
||||
"calendar": "Calendar",
|
||||
"fields": "Fields",
|
||||
"today": "today",
|
||||
"events": "Events",
|
||||
"moreEvents": "and {amount} more...",
|
||||
"noEvents": "no events yet!",
|
||||
"date": "Date",
|
||||
"datetime": "Datetime",
|
||||
"time": "Time",
|
||||
"title": "Title",
|
||||
"color": "Color"
|
||||
},
|
||||
"cards": {
|
||||
"cards": "Cards",
|
||||
"title": "Title",
|
||||
"subtitle": "Subtitle",
|
||||
"src": "Image Source",
|
||||
"content": "Body Content",
|
||||
"fit": "Fit"
|
||||
},
|
||||
"tabular": {
|
||||
"tabular": "Table",
|
||||
"fields": "Fields",
|
||||
"spacing": "Spacing",
|
||||
"comfortable": "Comfortable",
|
||||
"compact": "Compact",
|
||||
"cozy": "Cozy",
|
||||
"per_page": "Per Page"
|
||||
},
|
||||
"timeline": {
|
||||
"timeline": "Timeline",
|
||||
"fields": "Fields",
|
||||
"today": "today",
|
||||
"events": "Events",
|
||||
"moreEvents": "and {amount} more...",
|
||||
"noEvents": "no events yet!",
|
||||
"date": "Date",
|
||||
"content": "Content",
|
||||
"title": "Title",
|
||||
"color": "Color"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user