mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 14:43:05 -04:00
[nextgen/cardstack] use unicode instead of icons for arrows for light theme compat (visualrefresh)
This commit is contained in:
parent
c969754ca8
commit
7e96b1a413
2 changed files with 13 additions and 8 deletions
|
@ -4,10 +4,14 @@ module.exports.BuiltInButtonTypes = Object.freeze({
|
|||
PREVIOUS_PAGE: "previous"
|
||||
})
|
||||
|
||||
module.exports.DEFAULT_BUTTON_ICON_MAPPINGS = Object.freeze({
|
||||
[this.BuiltInButtonTypes.NEXT_PAGE]: "button_chevron_right",
|
||||
[this.BuiltInButtonTypes.PREVIOUS_PAGE]: "button_chevron_left"
|
||||
});
|
||||
module.exports.DEFAULT_BUTTON_STYLES = Object.freeze({
|
||||
[this.BuiltInButtonTypes.NEXT_PAGE]: {
|
||||
label: "❯"
|
||||
},
|
||||
[this.BuiltInButtonTypes.PREVIOUS_PAGE]: {
|
||||
label: "❮"
|
||||
}
|
||||
})
|
||||
|
||||
module.exports.STACK_CACHE_KEYS = Object.freeze({
|
||||
RESULT_CARDS: 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue