mirror of
https://github.com/marktext/marktext.git
synced 2025-05-02 15:21:33 +08:00
65 lines
894 B
JavaScript
65 lines
894 B
JavaScript
export const titleBarStyleOptions = [{
|
|
label: 'Custom',
|
|
value: 'custom'
|
|
}, {
|
|
label: 'Native',
|
|
value: 'native'
|
|
}]
|
|
|
|
export const zoomOptions = [{
|
|
label: '50.0%',
|
|
value: 0.5
|
|
}, {
|
|
label: '62.5%',
|
|
value: 0.625
|
|
}, {
|
|
label: '75.0%',
|
|
value: 0.75
|
|
}, {
|
|
label: '87.5%',
|
|
value: 0.875
|
|
}, {
|
|
label: '100.0%',
|
|
value: 1.0
|
|
}, {
|
|
label: '112.5%',
|
|
value: 1.125
|
|
}, {
|
|
label: '125.0%',
|
|
value: 1.25
|
|
}, {
|
|
label: '137.5%',
|
|
value: 1.375
|
|
}, {
|
|
label: '150.0%',
|
|
value: 1.5
|
|
}, {
|
|
label: '162.5%',
|
|
value: 1.625
|
|
}, {
|
|
label: '175.0%',
|
|
value: 1.75
|
|
}, {
|
|
label: '187.5%',
|
|
value: 1.875
|
|
}, {
|
|
label: '200.0%',
|
|
value: 2.0
|
|
}]
|
|
|
|
export const fileSortByOptions = [{
|
|
label: 'Creation time',
|
|
value: 'created'
|
|
}, {
|
|
label: 'Modification time',
|
|
value: 'modified'
|
|
}, {
|
|
label: 'Title',
|
|
value: 'title'
|
|
}]
|
|
|
|
export const languageOptions = [{
|
|
label: 'English',
|
|
value: 'en'
|
|
}]
|