Skip to content

Commit 04a6fa8

Browse files
hawkeye64rstoenescu
authored andcommitted
feat(align): add missing align value: "evenly" (quasarframework#5284)
1 parent 785d73d commit 04a6fa8

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

ui/src/components/breadcrumbs/QBreadcrumbs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"type": "String",
3939
"default": "left",
4040
"desc": "Specify how to align the breadcrumbs horizontally",
41-
"values": [ "left", "center", "right", "between", "around" ],
41+
"values": [ "left", "center", "right", "between", "around", "evenly" ],
4242
"examples": [ "left", "center" ],
4343
"category": "content"
4444
}

ui/src/components/btn/__btn-mixin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
"type": "String",
127127
"desc": "Label or content alignment",
128128
"default": "center",
129-
"values": [ "left", "right", "center", "around", "between" ],
129+
"values": [ "left", "right", "center", "around", "between", "evenly" ],
130130
"category": "content"
131131
},
132132

ui/src/components/card/QCardActions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": "String",
99
"desc": "Specify how to align the actions",
1010
"default": "left (for horizontal mode) / stretch (for vertical mode)",
11-
"values": [ "left", "center", "right", "between", "around", "stretch" ],
11+
"values": [ "left", "center", "right", "between", "around", "evenly", "stretch" ],
1212
"examples": [ "between" ],
1313
"category": "content"
1414
},

ui/src/mixins/align.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const
55
right: 'end',
66
between: 'between',
77
around: 'around',
8+
evenly: 'evenly',
89
stretch: 'stretch'
910
},
1011
alignValues = Object.keys(alignMap)

0 commit comments

Comments
 (0)