@codecademy/gamut-illustrations 1.0.0-alpha.f6cb5a.0 → 67.0.0-alpha.35c6c5.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/LICENSE +1 -1
- package/dist/Announcement.d.ts +3 -0
- package/dist/Announcement.js +157 -0
- package/dist/Bee.d.ts +1 -1
- package/dist/Bee.js +124 -112
- package/dist/Bell.d.ts +1 -1
- package/dist/Bell.js +36 -31
- package/dist/BinaryBlocks.d.ts +1 -1
- package/dist/BinaryBlocks.js +126 -116
- package/dist/BinaryStairs.d.ts +3 -0
- package/dist/BinaryStairs.js +81 -0
- package/dist/Blocks.d.ts +3 -0
- package/dist/Blocks.js +247 -0
- package/dist/Blueprint.d.ts +3 -0
- package/dist/Blueprint.js +94 -0
- package/dist/BlueprintWhite.d.ts +3 -0
- package/dist/BlueprintWhite.js +101 -0
- package/dist/BookAndNotepad.d.ts +3 -0
- package/dist/BookAndNotepad.js +96 -0
- package/dist/Browser.d.ts +1 -1
- package/dist/Browser.js +69 -61
- package/dist/BrowserLock.d.ts +1 -1
- package/dist/BrowserLock.js +36 -31
- package/dist/BrowserPuzzle.d.ts +1 -1
- package/dist/BrowserPuzzle.js +61 -54
- package/dist/ChatBox.d.ts +1 -1
- package/dist/ChatBox.js +36 -31
- package/dist/CodeCelebration.d.ts +3 -0
- package/dist/CodeCelebration.js +158 -0
- package/dist/Coffee.d.ts +3 -0
- package/dist/Coffee.js +63 -0
- package/dist/Confetti.d.ts +1 -1
- package/dist/Confetti.js +87 -79
- package/dist/EmailAt.d.ts +1 -1
- package/dist/EmailAt.js +30 -25
- package/dist/Envelope.d.ts +1 -1
- package/dist/Envelope.js +30 -25
- package/dist/ErrorWindow.d.ts +3 -0
- package/dist/ErrorWindow.js +128 -0
- package/dist/Heart.d.ts +1 -1
- package/dist/Heart.js +24 -19
- package/dist/Hills.d.ts +1 -1
- package/dist/Hills.js +45 -38
- package/dist/HomeOffice.d.ts +1 -1
- package/dist/HomeOffice.js +110 -99
- package/dist/Interest.d.ts +3 -0
- package/dist/Interest.js +382 -0
- package/dist/Keyhole.d.ts +1 -1
- package/dist/Keyhole.js +24 -19
- package/dist/Knowledge.d.ts +3 -0
- package/dist/Knowledge.js +308 -0
- package/dist/LightBulbAndGears.d.ts +3 -0
- package/dist/LightBulbAndGears.js +356 -0
- package/dist/MagnifyingGlass.d.ts +3 -0
- package/dist/MagnifyingGlass.js +67 -0
- package/dist/Maze.d.ts +1 -1
- package/dist/Maze.js +61 -58
- package/dist/Megaphone.d.ts +1 -1
- package/dist/Megaphone.js +42 -37
- package/dist/MobilePhone.d.ts +3 -0
- package/dist/MobilePhone.js +96 -0
- package/dist/New.d.ts +1 -1
- package/dist/New.js +54 -49
- package/dist/NumberBlocks.d.ts +1 -1
- package/dist/NumberBlocks.js +273 -252
- package/dist/Onboarding.d.ts +1 -1
- package/dist/Onboarding.js +314 -253
- package/dist/Plant.d.ts +1 -1
- package/dist/Plant.js +62 -55
- package/dist/PortfolioProject.d.ts +1 -1
- package/dist/PortfolioProject.js +29 -26
- package/dist/PracticeProject.d.ts +1 -1
- package/dist/PracticeProject.js +37 -34
- package/dist/PracticeTarget.d.ts +3 -0
- package/dist/PracticeTarget.js +78 -0
- package/dist/Purpose.d.ts +3 -0
- package/dist/Purpose.js +136 -0
- package/dist/Puzzle.d.ts +3 -0
- package/dist/Puzzle.js +159 -0
- package/dist/Python.d.ts +1 -1
- package/dist/Python.js +16 -11
- package/dist/Sun.d.ts +1 -1
- package/dist/Sun.js +111 -103
- package/dist/Syllabus.d.ts +3 -0
- package/dist/Syllabus.js +352 -0
- package/dist/Target.d.ts +1 -1
- package/dist/Target.js +37 -32
- package/dist/TinyBlocks.d.ts +3 -0
- package/dist/TinyBlocks.js +22 -0
- package/dist/Warning.d.ts +3 -0
- package/dist/Warning.js +101 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +21 -1
- package/dist/types.js +1 -0
- package/package.json +9 -11
- package/CHANGELOG.md +0 -1271
- package/babel.config.js +0 -15
- package/dist/__tests__/gamut-illustrations.test.js +0 -32
- package/jest.config.js +0 -1
- package/tsconfig.json +0 -7
package/dist/index.js
CHANGED
|
@@ -1,26 +1,46 @@
|
|
|
1
|
+
export * from './Announcement';
|
|
1
2
|
export * from './Bee';
|
|
2
3
|
export * from './Bell';
|
|
3
4
|
export * from './BinaryBlocks';
|
|
5
|
+
export * from './BinaryStairs';
|
|
6
|
+
export * from './Blocks';
|
|
7
|
+
export * from './Blueprint';
|
|
8
|
+
export * from './BlueprintWhite';
|
|
9
|
+
export * from './BookAndNotepad';
|
|
4
10
|
export * from './Browser';
|
|
5
11
|
export * from './BrowserLock';
|
|
6
12
|
export * from './BrowserPuzzle';
|
|
7
13
|
export * from './ChatBox';
|
|
14
|
+
export * from './CodeCelebration';
|
|
15
|
+
export * from './Coffee';
|
|
8
16
|
export * from './Confetti';
|
|
9
17
|
export * from './EmailAt';
|
|
10
18
|
export * from './Envelope';
|
|
19
|
+
export * from './ErrorWindow';
|
|
20
|
+
export * from './Purpose';
|
|
11
21
|
export * from './Heart';
|
|
12
22
|
export * from './Hills';
|
|
13
23
|
export * from './HomeOffice';
|
|
24
|
+
export * from './Interest';
|
|
14
25
|
export * from './Keyhole';
|
|
26
|
+
export * from './Knowledge';
|
|
27
|
+
export * from './LightBulbAndGears';
|
|
28
|
+
export * from './MagnifyingGlass';
|
|
15
29
|
export * from './Maze';
|
|
16
30
|
export * from './Megaphone';
|
|
31
|
+
export * from './MobilePhone';
|
|
17
32
|
export * from './New';
|
|
18
33
|
export * from './NumberBlocks';
|
|
19
34
|
export * from './Onboarding';
|
|
20
35
|
export * from './Plant';
|
|
21
36
|
export * from './PortfolioProject';
|
|
22
37
|
export * from './PracticeProject';
|
|
38
|
+
export * from './PracticeTarget';
|
|
39
|
+
export * from './Puzzle';
|
|
23
40
|
export * from './Python';
|
|
24
41
|
export * from './Sun';
|
|
42
|
+
export * from './Syllabus';
|
|
43
|
+
export * from './TinyBlocks';
|
|
25
44
|
export * from './Target';
|
|
26
|
-
export * from './types';
|
|
45
|
+
export * from './types';
|
|
46
|
+
export * from './Warning';
|
package/dist/types.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"url": "https://github.com/Codecademy/gamut/issues"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "
|
|
7
|
+
"@codecademy/gamut-styles": "67.0.0-alpha.35c6c5.0",
|
|
8
8
|
"classnames": "^2.2.5"
|
|
9
9
|
},
|
|
10
10
|
"description": "Illustrations library for Codecademy",
|
|
@@ -15,12 +15,15 @@
|
|
|
15
15
|
"name": "@codecademy/gamut-illustrations",
|
|
16
16
|
"module": "./dist/index.js",
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
18
21
|
"license": "MIT",
|
|
19
22
|
"peerDependencies": {
|
|
20
23
|
"@emotion/react": "^11.4.0",
|
|
21
24
|
"@emotion/styled": "^11.3.0",
|
|
22
|
-
"react": "
|
|
23
|
-
"react-dom": "
|
|
25
|
+
"react": "^17.0.2 || ^18.2.0",
|
|
26
|
+
"react-dom": "^17.0.2 || ^18.2.0"
|
|
24
27
|
},
|
|
25
28
|
"publishConfig": {
|
|
26
29
|
"access": "public"
|
|
@@ -30,17 +33,12 @@
|
|
|
30
33
|
"url": "git+ssh://git@github.com/Codecademy/gamut.git"
|
|
31
34
|
},
|
|
32
35
|
"scripts": {
|
|
33
|
-
"
|
|
34
|
-
"build:compile": "babel ./src --out-dir ./dist --copy-files --extensions \".ts,.tsx\"",
|
|
35
|
-
"build:clean": "rm -rf dist",
|
|
36
|
-
"build:types": "tsc --emitDeclarationOnly",
|
|
37
|
-
"build": "yarn build:clean && yarn build:compile && yarn build:types",
|
|
38
|
-
"lernaBuildTask": "yarn build"
|
|
36
|
+
"build": "nx build @codecademy/gamut-illustrations"
|
|
39
37
|
},
|
|
40
38
|
"sideEffects": [
|
|
41
39
|
"dist/**/[A-Z]**/[A-Z]*.js",
|
|
42
40
|
"dist/**/[A-Z]**/index.js"
|
|
43
41
|
],
|
|
44
|
-
"version": "
|
|
45
|
-
"gitHead": "
|
|
42
|
+
"version": "67.0.0-alpha.35c6c5.0",
|
|
43
|
+
"gitHead": "a9bd36a1b207302a38f7d5f2856cbcd646c9e686"
|
|
46
44
|
}
|