atomic-layout
Advanced tools
Comparing version 0.9.5 to 0.9.6
{ | ||
"name": "atomic-layout", | ||
"version": "0.9.5", | ||
"version": "0.9.6", | ||
"description": "Physical representation of layout composition to create declarative, responsive layouts in React.", | ||
@@ -5,0 +5,0 @@ "esnext": "src/index.ts", |
@@ -103,3 +103,3 @@ <p align="center"> | ||
- [Responsive props](https://redd.gitbook.io/atomic-layout/fundamentals/responsive-props) | ||
- [Recipes](https://redd.gitbook.io/atomic-layout/general/recipes) | ||
- [Recipes](https://redd.gitbook.io/atomic-layout/recipes/semantics) | ||
@@ -106,0 +106,0 @@ ## Materials |
import { Numeric } from './defaultOptions'; | ||
declare type CSSGlobalValues = 'inherit' | 'initial' | 'unset'; | ||
declare type FlexboxBasicAlignment = 'center' | 'start' | 'end' | 'flex-start' | 'flex-end'; | ||
declare type FlexboxBasicAlignment = 'center' | 'start' | 'end' | 'flex-start' | 'flex-end' | 'center center' | 'center start' | 'center end' | 'center flex-start' | 'center flex-end' | 'start center' | 'start start' | 'start end' | 'start flex-start' | 'start flex-end' | 'end center' | 'end start' | 'end end' | 'end flex-start' | 'end flex-end' | 'flex-start center' | 'flex-start start' | 'flex-start end' | 'flex-start flex-start' | 'flex-start flex-end' | 'flex-end center' | 'flex-end start' | 'flex-end end' | 'flex-end flex-start' | 'flex-end flex-end'; | ||
declare type FlexboxBaselineAlignment = 'baseline' | 'fist baseline' | 'last baseline'; | ||
@@ -5,0 +5,0 @@ declare type FlexboxDistributedAlignment = 'space-between' | 'space-around' | 'space-evenly' | 'stretch'; |
115177
2044