AniX/app/pages/common.ts

36 lines
808 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const sort = {
descendingIcon: "material-symbols--sort",
ascendingIcon: "[transform:rotateX(180deg)] material-symbols--sort",
values: [
{
name: "По добавлению новых",
value: "adding_descending",
id: 1
},
{
name: "По добавлению старых",
value: "adding_ascending",
id: 2
},
{
name: "По дате выхода новых",
value: "year_descending",
id: 3
},
{
name: "По дате выхода старых",
value: "year_ascending",
id: 4
},
{
name: "По алфавиту А-Я",
value: "alphabet_descending",
id: 5
},
{
name: "По алфавиту Я-А",
value: "alphabet_ascending",
id: 6
},
],
};