mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
parent
59679b5aeb
commit
636c3e9cbd
@ -5022,6 +5022,12 @@
|
||||
"sourceRepoURL": "https://github.com/cssinjs/theming",
|
||||
"asOfVersion": "2.0.0"
|
||||
},
|
||||
{
|
||||
"libraryName": "theme-ui",
|
||||
"typingsPackageName": "theme-ui__color",
|
||||
"sourceRepoURL": "https://github.com/system-ui/theme-ui",
|
||||
"asOfVersion": "0.3.1"
|
||||
},
|
||||
{
|
||||
"libraryName": "three",
|
||||
"typingsPackageName": "three",
|
||||
|
||||
17
types/theme-ui__color/index.d.ts
vendored
17
types/theme-ui__color/index.d.ts
vendored
@ -1,17 +0,0 @@
|
||||
// Type definitions for @theme-ui/color 0.3
|
||||
// Project: https://github.com/system-ui/theme-ui
|
||||
// Definitions by: Allan Pope <https://github.com/allanpope>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 3.5
|
||||
|
||||
export * from 'polished';
|
||||
// A few polished functions have been renamed in theme-ui
|
||||
// If these are updated in polished, then the code below can be deleted
|
||||
import {
|
||||
adjustHue as rotate,
|
||||
rgba as alpha,
|
||||
setHue as hue,
|
||||
setLightness as lightness,
|
||||
setSaturation as saturation,
|
||||
} from 'polished';
|
||||
export { alpha, hue, lightness, rotate, saturation };
|
||||
@ -1,6 +0,0 @@
|
||||
{
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"polished": "^3.4.1"
|
||||
}
|
||||
}
|
||||
@ -1,36 +0,0 @@
|
||||
import {
|
||||
darken,
|
||||
lighten,
|
||||
rotate,
|
||||
hue,
|
||||
saturation,
|
||||
lightness,
|
||||
desaturate,
|
||||
saturate,
|
||||
shade,
|
||||
tint,
|
||||
transparentize,
|
||||
alpha,
|
||||
mix,
|
||||
complement,
|
||||
invert,
|
||||
grayscale,
|
||||
} from '@theme-ui/color';
|
||||
|
||||
darken(0.2, '#000');
|
||||
lighten(0.2, '#000');
|
||||
rotate(0.2, '#000');
|
||||
hue(0.2, '#000');
|
||||
saturation(0.2, '#000');
|
||||
lightness(0.2, '#000');
|
||||
desaturate(0.1, '#000');
|
||||
saturate(0.1, '#000');
|
||||
shade('20%', '#000');
|
||||
tint('20%', '#000');
|
||||
transparentize(0.2, '#000');
|
||||
alpha('#000', 0.2);
|
||||
mix(0.25, '#000', '#FFF');
|
||||
complement('#000');
|
||||
complement('#000');
|
||||
invert('#000');
|
||||
grayscale('#000');
|
||||
@ -1,27 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"jsx": "preserve",
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictFunctionTypes": true,
|
||||
"strictNullChecks": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"paths": {
|
||||
"@theme-ui/color": ["theme-ui__color"]
|
||||
},
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"theme-ui__color-tests.ts"
|
||||
]
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
Loading…
Reference in New Issue
Block a user