-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(back): schemata, components, and views for skill breakdown (#1169)
## Describe your changes Adds schemas, components, and initial styles for Skill Breakdown and other Experience content. ## Issue ticket number and link - Closes: #1169 - Starts: #1191 ## Checklist before requesting a review - [x] Code linting succeeds - [x] Visual Regression is Passing - [x] I have performed a self-review of my code - [x] Do we need to implement analytics? - [x] Have you tested with JavaScript off?
- Loading branch information
Showing
54 changed files
with
971 additions
and
438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
.../core-store.plugin_content_manager_configuration_components##cv.personal-development.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"key": "plugin_content_manager_configuration_components::cv.personal-development", | ||
"value": { | ||
"settings": { | ||
"bulkable": true, | ||
"filterable": true, | ||
"searchable": true, | ||
"pageSize": 10, | ||
"mainField": "id", | ||
"defaultSortBy": "id", | ||
"defaultSortOrder": "ASC" | ||
}, | ||
"metadatas": { | ||
"id": { | ||
"edit": {}, | ||
"list": { | ||
"label": "id", | ||
"searchable": false, | ||
"sortable": false | ||
} | ||
}, | ||
"achievement": { | ||
"edit": { | ||
"label": "Achievement", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "achievement", | ||
"searchable": false, | ||
"sortable": false | ||
} | ||
} | ||
}, | ||
"layouts": { | ||
"list": [ | ||
"id", | ||
"achievement" | ||
], | ||
"edit": [ | ||
[ | ||
{ | ||
"name": "achievement", | ||
"size": 12 | ||
} | ||
] | ||
] | ||
}, | ||
"uid": "cv.personal-development", | ||
"isComponent": true | ||
}, | ||
"type": "object", | ||
"environment": null, | ||
"tag": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 98 additions & 0 deletions
98
...config/sync/core-store.plugin_content_manager_configuration_components##skills.skill.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
{ | ||
"key": "plugin_content_manager_configuration_components::skills.skill", | ||
"value": { | ||
"settings": { | ||
"bulkable": true, | ||
"filterable": true, | ||
"searchable": true, | ||
"pageSize": 10, | ||
"mainField": "percentage", | ||
"defaultSortBy": "id", | ||
"defaultSortOrder": "ASC" | ||
}, | ||
"metadatas": { | ||
"id": { | ||
"edit": {}, | ||
"list": { | ||
"label": "id", | ||
"searchable": false, | ||
"sortable": false | ||
} | ||
}, | ||
"skill": { | ||
"edit": { | ||
"label": "Skill", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true, | ||
"mainField": "name" | ||
}, | ||
"list": { | ||
"label": "skill", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"percentage": { | ||
"edit": { | ||
"label": "Percentage", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "percentage", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"summary": { | ||
"edit": { | ||
"label": "Summary", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "summary", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
} | ||
}, | ||
"layouts": { | ||
"list": [ | ||
"id", | ||
"skill", | ||
"percentage", | ||
"summary" | ||
], | ||
"edit": [ | ||
[ | ||
{ | ||
"name": "skill", | ||
"size": 4 | ||
}, | ||
{ | ||
"name": "summary", | ||
"size": 8 | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "percentage", | ||
"size": 4 | ||
} | ||
] | ||
] | ||
}, | ||
"uid": "skills.skill", | ||
"isComponent": true | ||
}, | ||
"type": "object", | ||
"environment": null, | ||
"tag": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.