increase frontend flexibility
This commit is contained in:
5
frontend/src/composables/Alignment.ts
Normal file
5
frontend/src/composables/Alignment.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export enum Alignment {
|
||||
Start = 'align-start',
|
||||
Center = 'align-center',
|
||||
End = 'align-end',
|
||||
}
|
||||
4
frontend/src/composables/Direction.ts
Normal file
4
frontend/src/composables/Direction.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export enum Direction {
|
||||
Row = 'row',
|
||||
Column = 'column',
|
||||
}
|
||||
6
frontend/src/composables/GapSize.ts
Normal file
6
frontend/src/composables/GapSize.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export enum GapSize {
|
||||
None = '',
|
||||
Thin = 'gap-half',
|
||||
Normal = 'gap-full',
|
||||
Wide = 'gap-wide',
|
||||
}
|
||||
6
frontend/src/composables/Justification.ts
Normal file
6
frontend/src/composables/Justification.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export enum Justification {
|
||||
Start = 'justify-start',
|
||||
Center = 'justify-center',
|
||||
Between = 'justify-between',
|
||||
End = 'justify-end',
|
||||
}
|
||||
7
frontend/src/composables/ScreenType.ts
Normal file
7
frontend/src/composables/ScreenType.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export enum ScreenType {
|
||||
Standard = '',
|
||||
Page = 'page',
|
||||
Wide = 'wide',
|
||||
Tall = 'tall',
|
||||
WideTall = 'wide tall',
|
||||
}
|
||||
Reference in New Issue
Block a user