increase frontend flexibility

This commit is contained in:
2025-11-30 11:59:26 -08:00
parent 94ed7e05e2
commit a110aa6376
18 changed files with 396 additions and 43 deletions

View File

@@ -0,0 +1,5 @@
export enum Alignment {
Start = 'align-start',
Center = 'align-center',
End = 'align-end',
}

View File

@@ -0,0 +1,4 @@
export enum Direction {
Row = 'row',
Column = 'column',
}

View File

@@ -0,0 +1,6 @@
export enum GapSize {
None = '',
Thin = 'gap-half',
Normal = 'gap-full',
Wide = 'gap-wide',
}

View File

@@ -0,0 +1,6 @@
export enum Justification {
Start = 'justify-start',
Center = 'justify-center',
Between = 'justify-between',
End = 'justify-end',
}

View File

@@ -0,0 +1,7 @@
export enum ScreenType {
Standard = '',
Page = 'page',
Wide = 'wide',
Tall = 'tall',
WideTall = 'wide tall',
}