Spaces:
Sleeping
Sleeping
File size: 12,461 Bytes
391a73c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | type Container = {
width: number;
height: number;
dpi?: number;
remBase?: number;
orientation?: 'landscape' | 'portrait';
};
type Percentage = `${string}%`;
type BorderStyleValue = 'dashed' | 'dotted' | 'solid';
type BorderShorthandStyle = {
border?: number | string;
borderTop?: number | string;
borderRight?: number | string;
borderBottom?: number | string;
borderLeft?: number | string;
borderColor?: string;
borderRadius?: number | string;
borderStyle?: BorderStyleValue;
borderWidth?: number | string;
};
type BorderExpandedStyle = {
borderTopColor?: string;
borderTopStyle?: BorderStyleValue;
borderTopWidth?: number | string;
borderRightColor?: string;
borderRightStyle?: BorderStyleValue;
borderRightWidth?: number | string;
borderBottomColor?: string;
borderBottomStyle?: BorderStyleValue;
borderBottomWidth?: number | string;
borderLeftColor?: string;
borderLeftStyle?: BorderStyleValue;
borderLeftWidth?: number | string;
borderTopLeftRadius?: number | string;
borderTopRightRadius?: number | string;
borderBottomRightRadius?: number | string;
borderBottomLeftRadius?: number | string;
};
type BorderSafeStyle = BorderExpandedStyle & {
borderTopWidth?: number;
borderRightWidth?: number;
borderBottomWidth?: number;
borderLeftWidth?: number;
borderTopLeftRadius?: number | Percentage;
borderTopRightRadius?: number | Percentage;
borderBottomRightRadius?: number | Percentage;
borderBottomLeftRadius?: number | Percentage;
};
type BorderStyle = BorderShorthandStyle & BorderExpandedStyle;
type FlexboxShorthandStyle = {
flex?: number | string;
};
type AlignContent = 'flex-start' | 'flex-end' | 'center' | 'stretch' | 'space-between' | 'space-around' | 'space-evenly';
type AlignItems = 'flex-start' | 'flex-end' | 'center' | 'stretch' | 'baseline';
type AlignSelf = 'auto' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
type FlexDirection = 'row' | 'row-reverse' | 'column' | 'column-reverse';
type FlexWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
type JustifyContent = 'flex-start' | 'flex-end' | 'center' | 'space-around' | 'space-between' | 'space-evenly';
type JustifySelf = string;
type FlexboxExpandedStyle = {
alignContent?: AlignContent;
alignItems?: AlignItems;
alignSelf?: AlignSelf;
flexDirection?: FlexDirection;
flexWrap?: FlexWrap;
flexFlow?: number | string;
flexGrow?: number | string;
flexShrink?: number | string;
flexBasis?: number | string;
justifySelf?: JustifySelf;
justifyContent?: JustifyContent;
};
type FlexboxSafeStyle = FlexboxExpandedStyle & {
flexGrow?: number;
flexShrink?: number;
};
type FlexboxStyle = FlexboxShorthandStyle & FlexboxExpandedStyle;
type GapShorthandStyle = {
gap?: number | string;
};
type GapExpandedStyle = {
rowGap?: number | string;
columnGap?: number | string;
};
type GapSafeStyle = {
rowGap?: number | string;
columnGap?: number | string;
};
type GapStyle = GapShorthandStyle & GapExpandedStyle;
type PositionShorthandStyle = {
objectPosition?: number | string;
};
type PositionExpandedStyle = {
objectPositionX?: number | string;
objectPositionY?: number | string;
objectFit?: string;
};
type PositionSafeStyle = PositionExpandedStyle & {
objectPositionX?: number;
objectPositionY?: number;
};
type PositioningStyle = PositionShorthandStyle & PositionExpandedStyle;
type ScaleTransform = {
operation: 'scale';
value: [number, number];
};
type TranslateTransform = {
operation: 'translate';
value: [number, number];
};
type RotateTransform = {
operation: 'rotate';
value: [number, number, number];
};
type SkewTransform = {
operation: 'skew';
value: [number, number];
};
type MatrixTransform = {
operation: 'matrix';
value: [number, number, number, number, number, number];
};
type Transform = ScaleTransform | TranslateTransform | RotateTransform | SkewTransform | MatrixTransform;
type TransformShorthandStyle = {
transformOrigin?: number | string;
};
type TransformExpandedStyle = {
transformOriginX?: number | string;
transformOriginY?: number | string;
transform?: string | Transform[];
gradientTransform?: string | Transform[];
};
type TransformSafeStyle = Omit<TransformExpandedStyle, 'transform'> & {
transformOriginX?: number | Percentage;
transformOriginY?: number | Percentage;
transform?: Transform[];
gradientTransform?: Transform[];
};
type TransformStyle = TransformShorthandStyle & TransformExpandedStyle;
type Display = 'flex' | 'none';
type Position = 'absolute' | 'relative' | 'static';
type LayoutStyle = {
aspectRatio?: number | string;
bottom?: number | string;
display?: Display;
left?: number | string;
position?: Position;
right?: number | string;
top?: number | string;
overflow?: 'hidden';
zIndex?: number | string;
};
type LayoutExpandedStyle = LayoutStyle;
type LayoutSafeStyle = LayoutExpandedStyle & {
aspectRatio?: number;
bottom?: number;
left?: number;
right?: number;
top?: number;
zIndex?: number;
};
type DimensionStyle = {
height?: number | string;
maxHeight?: number | string;
maxWidth?: number | string;
minHeight?: number | string;
minWidth?: number | string;
width?: number | string;
};
type DimensionExpandedStyle = DimensionStyle;
type DimensionSafeStyle = DimensionExpandedStyle & {
height?: number | Percentage;
maxHeight?: number | Percentage;
maxWidth?: number | Percentage;
minHeight?: number | Percentage;
minWidth?: number | Percentage;
width?: number | Percentage;
};
type ColorStyle = {
backgroundColor?: string;
color?: string;
opacity?: number | string;
};
type ColorExpandedStyle = ColorStyle;
type ColorSafeStyle = {
backgroundColor?: string;
color?: string;
opacity?: number;
};
type FontStyle = 'normal' | 'italic' | 'oblique';
type FontWeight = string | number | 'thin' | 'hairline' | 'ultralight' | 'extralight' | 'light' | 'normal' | 'medium' | 'semibold' | 'demibold' | 'bold' | 'ultrabold' | 'extrabold' | 'heavy' | 'black';
type TextAlign = 'left' | 'right' | 'center' | 'justify';
type TextDecoration = 'line-through' | 'underline' | 'none' | 'line-through underline' | 'underline line-through';
type TextDecorationStyle = 'dashed' | 'dotted' | 'solid' | string;
type TextTransform = 'capitalize' | 'lowercase' | 'uppercase' | 'upperfirst' | 'none';
type VerticalAlign = 'sub' | 'super';
type TextStyle = {
direction?: 'ltr' | 'rtl';
fontSize?: number | string;
fontFamily?: string | string[];
fontStyle?: FontStyle;
fontWeight?: FontWeight;
letterSpacing?: number | string;
lineHeight?: number | string;
maxLines?: number | string;
textAlign?: TextAlign;
textDecoration?: TextDecoration;
textDecorationColor?: string;
textDecorationStyle?: TextDecorationStyle;
textIndent?: any;
textOverflow?: 'ellipsis';
textTransform?: TextTransform;
verticalAlign?: VerticalAlign;
};
type TextExpandedStyle = TextStyle;
type TextSafeStyle = TextExpandedStyle & {
fontSize?: number;
fontWeight?: number;
letterSpacing?: number;
lineHeight?: number;
};
type MarginShorthandStyle = {
margin?: number | string;
marginHorizontal?: number | string;
marginVertical?: number | string;
};
type MarginExpandedStyle = {
marginTop?: number | string;
marginRight?: number | string;
marginBottom?: number | string;
marginLeft?: number | string;
};
type MarginSafeStyle = MarginExpandedStyle & {
marginTop?: number | Percentage;
marginRight?: number | Percentage;
marginBottom?: number | Percentage;
marginLeft?: number | Percentage;
};
type MarginStyle = MarginShorthandStyle & MarginExpandedStyle;
type PaddingShorthandStyle = {
padding?: number | string;
paddingHorizontal?: number | string;
paddingVertical?: number | string;
};
type PaddingExpandedStyle = {
paddingTop?: number | string;
paddingRight?: number | string;
paddingBottom?: number | string;
paddingLeft?: number | string;
};
type PaddingSafeStyle = PaddingExpandedStyle & {
paddingTop?: number | Percentage;
paddingRight?: number | Percentage;
paddingBottom?: number | Percentage;
paddingLeft?: number | Percentage;
};
type PaddingStyle = PaddingShorthandStyle & PaddingExpandedStyle;
interface SvgStyle {
fill?: string;
stroke?: string;
strokeDasharray?: string;
strokeWidth?: string | number;
fillOpacity?: string | number;
fillRule?: 'nonzero' | 'evenodd';
strokeOpacity?: string | number;
textAnchor?: 'start' | 'middle' | 'end';
strokeLinecap?: 'butt' | 'round' | 'square';
strokeLinejoin?: 'butt' | 'round' | 'square' | 'miter' | 'bevel';
visibility?: 'visible' | 'hidden' | 'collapse';
clipPath?: string;
dominantBaseline?: 'auto' | 'middle' | 'central' | 'hanging' | 'mathematical' | 'text-after-edge' | 'text-before-edge';
}
type SvgExpandedStyle = SvgStyle;
type SvgSafeStyle = SvgStyle & {
strokeWidth?: number;
fillOpacity?: number;
strokeOpacity?: number;
};
type BaseStyle = BorderStyle & ColorStyle & DimensionStyle & FlexboxStyle & GapStyle & LayoutStyle & MarginStyle & PaddingStyle & PositioningStyle & TextStyle & TransformStyle & SvgStyle;
type MediaQueryStyle = {
[key in `@media${string}`]: BaseStyle;
};
type Style = BaseStyle & MediaQueryStyle;
type StyleKey = keyof BaseStyle;
type ExpandedStyle = BorderExpandedStyle & ColorExpandedStyle & DimensionExpandedStyle & FlexboxExpandedStyle & GapExpandedStyle & LayoutExpandedStyle & MarginExpandedStyle & PaddingExpandedStyle & PositionExpandedStyle & TextExpandedStyle & TransformExpandedStyle & SvgExpandedStyle;
type SafeStyle = BorderSafeStyle & ColorSafeStyle & DimensionSafeStyle & FlexboxSafeStyle & GapSafeStyle & LayoutSafeStyle & MarginSafeStyle & PaddingSafeStyle & PositionSafeStyle & TextSafeStyle & TransformSafeStyle & SvgSafeStyle;
/**
* Transform given color to hexa
*
* @param value - Styles value
* @returns Transformed value
*/
declare const transformColor: (value: string) => string;
type StyleInput = Style | StyleInput[] | null | undefined;
/**
* Flattens an array of style objects, into one aggregated style object.
* Supports nested arrays of styles.
*
* @param styles - Style or style array (can be nested)
* @returns Flattened style object
*/
declare const flatten: (value: StyleInput | StyleInput[], ...args: any[]) => Style;
type StyleParam = Style | null | undefined;
/**
* Resolves styles
*
* @param container
* @param style - Style
* @returns Resolved style
*/
declare const resolveStyles: (container: Container, style: StyleParam | StyleParam[]) => SafeStyle;
export { type AlignContent, type AlignItems, type AlignSelf, type BorderExpandedStyle, type BorderSafeStyle, type BorderShorthandStyle, type BorderStyle, type BorderStyleValue, type ColorExpandedStyle, type ColorSafeStyle, type ColorStyle, type Container, type DimensionExpandedStyle, type DimensionSafeStyle, type DimensionStyle, type Display, type ExpandedStyle, type FlexDirection, type FlexWrap, type FlexboxExpandedStyle, type FlexboxSafeStyle, type FlexboxShorthandStyle, type FlexboxStyle, type FontStyle, type FontWeight, type GapExpandedStyle, type GapSafeStyle, type GapShorthandStyle, type GapStyle, type JustifyContent, type JustifySelf, type LayoutExpandedStyle, type LayoutSafeStyle, type LayoutStyle, type MarginExpandedStyle, type MarginSafeStyle, type MarginShorthandStyle, type MarginStyle, type MatrixTransform, type PaddingExpandedStyle, type PaddingSafeStyle, type PaddingShorthandStyle, type PaddingStyle, type Percentage, type Position, type PositionExpandedStyle, type PositionSafeStyle, type PositionShorthandStyle, type PositioningStyle, type RotateTransform, type SafeStyle, type ScaleTransform, type SkewTransform, type Style, type StyleKey, type SvgExpandedStyle, type SvgSafeStyle, type SvgStyle, type TextAlign, type TextDecoration, type TextDecorationStyle, type TextExpandedStyle, type TextSafeStyle, type TextStyle, type TextTransform, type Transform, type TransformExpandedStyle, type TransformSafeStyle, type TransformShorthandStyle, type TransformStyle, type TranslateTransform, type VerticalAlign, resolveStyles as default, flatten, transformColor };
|