|
1 | 1 | /* tslint:disable: prefer-template */ |
2 | 2 |
|
3 | 3 | export function generateTypes(arr: string[]) { |
4 | | - return '\n | ' + arr.map(n => `"${n}"`).join('\n | '); |
| 4 | + return '\n | ' + arr.map(n => `'${n}'`).join('\n | '); |
5 | 5 | } |
6 | 6 |
|
7 | 7 | export const defaultScreens = { |
@@ -300,11 +300,11 @@ export type TListStyleType = '_PREFIX_line-none' | '_PREFIX_list-disc' | '_PREFI |
300 | 300 |
|
301 | 301 | export type TListStylePosition = '_PREFIX_list-inside' | '_PREFIX_list-outside'; |
302 | 302 |
|
303 | | -export type TPlaceholderColor = PLACEHOLDER_COLORS; |
| 303 | +export type TPlaceholderColor =PLACEHOLDER_COLORS; |
304 | 304 |
|
305 | 305 | export type TTextAlign = '_PREFIX_text-left' | '_PREFIX_text-center' | '_PREFIX_text-right' | '_PREFIX_text-justify'; |
306 | 306 |
|
307 | | -export type TTextColor = TEXT_COLORS |
| 307 | +export type TTextColor =TEXT_COLORS; |
308 | 308 |
|
309 | 309 | export type TTextDecoration = '_PREFIX_underline' | '_PREFIX_line-through' | '_PREFIX_no-underline'; |
310 | 310 |
|
@@ -348,7 +348,7 @@ export type TTypography = |
348 | 348 |
|
349 | 349 | export type TBackgroundAttachment = '_PREFIX_bg-fixed' | '_PREFIX_bg-local' | '_PREFIX_bg-scroll'; |
350 | 350 |
|
351 | | -export type TBackgroundColor = BACKGROUND_COLORS |
| 351 | +export type TBackgroundColor =BACKGROUND_COLORS; |
352 | 352 |
|
353 | 353 | export type TBackgroundPosition = |
354 | 354 | | '_PREFIX_bg-bottom' |
@@ -378,7 +378,7 @@ export type TBackgrounds = |
378 | 378 | | TBackgroundRepeat |
379 | 379 | | TBackgroundSize; |
380 | 380 |
|
381 | | -export type TBorderColor = BORDER_COLORS |
| 381 | +export type TBorderColor =BORDER_COLORS; |
382 | 382 |
|
383 | 383 | export type TBorderStyle = '_PREFIX_border-solid' | '_PREFIX_border-dashed' | '_PREFIX_border-dotted' | '_PREFIX_border-double' | '_PREFIX_border-none'; |
384 | 384 |
|
|
0 commit comments