@n3/css-base
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "@n3/css-base", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "css variables for n3 interfaces", | ||
@@ -30,4 +30,5 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"react": "^16.13.0", | ||
"roboto-fontface": "^0.10.0" | ||
} | ||
} |
@@ -0,1 +1,2 @@ | ||
import type { CSSProperties } from 'react'; | ||
export declare const ROBOTO_FONT_FAMILY_LIGHT = "Roboto-Light, Arial, Helvetica, sans-serif"; | ||
@@ -5,81 +6,14 @@ export declare const ROBOTO_FONT_FAMILY_REGULAR = "Roboto-Regular, Arial, Helvetica, sans-serif"; | ||
export declare const ROBOTO_FONT_FAMILY_MONO = "Roboto Mono, Arial, Helvetica, sans-serif"; | ||
export declare const H1: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const H2: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const H3: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const H4: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const H5: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: string; | ||
}; | ||
export declare const DEFAULT: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: string; | ||
letterSpacing: string; | ||
}; | ||
export declare const CAPTION: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: string; | ||
}; | ||
export declare const LABEL: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const BUTTON: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const FONT_SMALL: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: number; | ||
}; | ||
export declare const INPUT: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: string; | ||
letterSpacing: string; | ||
}; | ||
export declare const INPUT_SMALL: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: string; | ||
}; | ||
export declare const NUMBER: { | ||
fontFamily: string; | ||
fontSize: string; | ||
lineHeight: string; | ||
fontWeight: string; | ||
}; | ||
export declare const H1: CSSProperties; | ||
export declare const H2: CSSProperties; | ||
export declare const H3: CSSProperties; | ||
export declare const H4: CSSProperties; | ||
export declare const H5: CSSProperties; | ||
export declare const DEFAULT: CSSProperties; | ||
export declare const CAPTION: CSSProperties; | ||
export declare const LABEL: CSSProperties; | ||
export declare const BUTTON: CSSProperties; | ||
export declare const FONT_SMALL: CSSProperties; | ||
export declare const INPUT: CSSProperties; | ||
export declare const INPUT_SMALL: CSSProperties; | ||
export declare const NUMBER: CSSProperties; |
25165
2
505