@codecademy/gamut-styles 14.2.5 → 14.2.6-alpha.3e81a0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/AssetProvider.js
CHANGED
package/dist/GamutProvider.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { CSSObject } from '@codecademy/variance';
|
|
|
2
2
|
import { EmotionCache, Theme } from '@emotion/react';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
export interface GamutProviderProps {
|
|
5
|
+
children?: React.ReactNode;
|
|
5
6
|
useGlobals?: boolean;
|
|
6
7
|
useCache?: boolean;
|
|
7
8
|
theme: Theme;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Options } from '@emotion/cache';
|
|
2
2
|
export declare const EMOTION_KEY = "gamut";
|
|
3
3
|
export declare const EMOTION_CONTAINER = "emotion-styles";
|
|
4
|
-
export declare const createEmotionCache: (overrides?: Partial<Options> | undefined) => import("@emotion/
|
|
4
|
+
export declare const createEmotionCache: (overrides?: Partial<Options> | undefined) => import("@emotion/utils").EmotionCache;
|
|
@@ -22,5 +22,5 @@ declare const shadowsForDepth: {
|
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
24
|
export declare const createShadow: (depth: ShadowDepth) => string;
|
|
25
|
-
export declare const boxShadow: (depth?: ShadowDepth) => import("@emotion/
|
|
25
|
+
export declare const boxShadow: (depth?: ShadowDepth) => import("@emotion/utils").SerializedStyles;
|
|
26
26
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const noSelect: import("@emotion/
|
|
1
|
+
export declare const noSelect: import("@emotion/utils").SerializedStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const screenReaderOnly: import("@emotion/
|
|
2
|
-
export declare const screenReaderOnlyFocusable: import("@emotion/
|
|
1
|
+
export declare const screenReaderOnly: import("@emotion/utils").SerializedStyles;
|
|
2
|
+
export declare const screenReaderOnlyFocusable: import("@emotion/utils").SerializedStyles;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-styles",
|
|
3
3
|
"description": "Styleguide & Component library for codecademy.com",
|
|
4
|
-
"version": "14.2.
|
|
4
|
+
"version": "14.2.6-alpha.3e81a0.0",
|
|
5
5
|
"author": "Jake Hiller <jake@codecademy.com>",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "git@github.com:Codecademy/gamut.git"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@codecademy/variance": "0.20.
|
|
24
|
+
"@codecademy/variance": "0.20.6-alpha.3e81a0.0",
|
|
25
25
|
"@emotion/is-prop-valid": "^1.1.0",
|
|
26
26
|
"polished": "^4.1.2"
|
|
27
27
|
},
|
|
@@ -30,18 +30,17 @@
|
|
|
30
30
|
"@emotion/react": "^11.4.0",
|
|
31
31
|
"@emotion/styled": "^11.3.0",
|
|
32
32
|
"lodash": "^4.17.5",
|
|
33
|
-
"react": "
|
|
34
|
-
"react-helmet": "^
|
|
33
|
+
"react": "^17.0.2 || ^18.2.0",
|
|
34
|
+
"react-helmet-async": "^1.3.0",
|
|
35
35
|
"stylis": "^4.0.7"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@emotion/jest": "^11.3.0",
|
|
39
|
-
"@types/react-helmet": "^6.1.0",
|
|
40
39
|
"component-test-setup": "^0.3.1"
|
|
41
40
|
},
|
|
42
41
|
"license": "MIT",
|
|
43
42
|
"publishConfig": {
|
|
44
43
|
"access": "public"
|
|
45
44
|
},
|
|
46
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "a4ef40ca9fc46358c59c774bd8b1551887aed8df"
|
|
47
46
|
}
|