🆙 Init V3

This commit is contained in:
DuckieTM
2026-01-31 09:10:52 +01:00
commit 7feb10ab15
1733 changed files with 53405 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export type AlignItemType = 'start' | 'end' | 'center' | 'baseline' | 'stretch';
+1
View File
@@ -0,0 +1 @@
export type AlignSelfType = 'start' | 'end' | 'center' | 'baseline' | 'stretch';
+1
View File
@@ -0,0 +1 @@
export type ButtonSizeType = 'lg' | 'sm' | 'md';
+1
View File
@@ -0,0 +1 @@
export type ColorVariantType = 'primary' | 'success' | 'danger' | 'secondary' | 'link' | 'black' | 'white' | 'dark' | 'warning' | 'muted' | 'light' | 'gray';
+1
View File
@@ -0,0 +1 @@
export type ColumnSizesType = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
+1
View File
@@ -0,0 +1 @@
export type DisplayType = 'none' | 'inline' | 'inline-block' | 'block' | 'grid' | 'table' | 'table-cell' | 'table-row' | 'flex' | 'inline-flex';
+1
View File
@@ -0,0 +1 @@
export type FloatType = 'start' | 'end' | 'none';
+1
View File
@@ -0,0 +1 @@
export type FontSizeType = 1 | 2 | 3 | 4 | 5 | 6;
+1
View File
@@ -0,0 +1 @@
export type FontWeightType = 'bold' | 'bolder' | 'normal' | 'light' | 'lighter';
+1
View File
@@ -0,0 +1 @@
export type JustifyContentType = 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
+1
View File
@@ -0,0 +1 @@
export type OverflowType = 'auto' | 'hidden' | 'visible' | 'scroll' | 'y-scroll' | 'unset';
+1
View File
@@ -0,0 +1 @@
export type PositionType = 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky';
+1
View File
@@ -0,0 +1 @@
export type SpacingType = 0 | 1 | 2 | 3 | 4 | 5;
+1
View File
@@ -0,0 +1 @@
export type TextAlignType = 'start' | 'center' | 'end';
+14
View File
@@ -0,0 +1,14 @@
export * from './AlignItemType';
export * from './AlignSelfType';
export * from './ButtonSizeType';
export * from './ColorVariantType';
export * from './ColumnSizesType';
export * from './DisplayType';
export * from './FloatType';
export * from './FontSizeType';
export * from './FontWeightType';
export * from './JustifyContentType';
export * from './OverflowType';
export * from './PositionType';
export * from './SpacingType';
export * from './TextAlignType';