@khanacademy/wonder-blocks-button 9.0.0 → 9.0.2
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/CHANGELOG.md +28 -0
- package/dist/es/index.js +7 -586
- package/dist/index.js +7 -590
- package/dist/themes/default.d.ts +5 -5
- package/dist/themes/khanmigo.d.ts +5 -5
- package/dist/themes/themed-button.d.ts +5 -5
- package/package.json +8 -9
|
@@ -189,18 +189,18 @@ declare const theme: {
|
|
|
189
189
|
};
|
|
190
190
|
font: {
|
|
191
191
|
size: {
|
|
192
|
-
large:
|
|
192
|
+
large: string;
|
|
193
193
|
};
|
|
194
194
|
lineHeight: {
|
|
195
|
-
small:
|
|
196
|
-
default:
|
|
197
|
-
large:
|
|
195
|
+
small: string;
|
|
196
|
+
default: string;
|
|
197
|
+
large: string;
|
|
198
198
|
};
|
|
199
199
|
weight: {
|
|
200
200
|
default: number;
|
|
201
201
|
};
|
|
202
202
|
offset: {
|
|
203
|
-
default:
|
|
203
|
+
default: string;
|
|
204
204
|
};
|
|
205
205
|
};
|
|
206
206
|
};
|
|
@@ -196,18 +196,18 @@ export declare const ButtonThemeContext: React.Context<{
|
|
|
196
196
|
};
|
|
197
197
|
font: {
|
|
198
198
|
size: {
|
|
199
|
-
large:
|
|
199
|
+
large: string;
|
|
200
200
|
};
|
|
201
201
|
lineHeight: {
|
|
202
|
-
small:
|
|
203
|
-
default:
|
|
204
|
-
large:
|
|
202
|
+
small: string;
|
|
203
|
+
default: string;
|
|
204
|
+
large: string;
|
|
205
205
|
};
|
|
206
206
|
weight: {
|
|
207
207
|
default: number;
|
|
208
208
|
};
|
|
209
209
|
offset: {
|
|
210
|
-
default:
|
|
210
|
+
default: string;
|
|
211
211
|
};
|
|
212
212
|
};
|
|
213
213
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-button",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.2",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -12,14 +12,13 @@
|
|
|
12
12
|
"author": "",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@
|
|
16
|
-
"@khanacademy/wonder-blocks-
|
|
17
|
-
"@khanacademy/wonder-blocks-
|
|
18
|
-
"@khanacademy/wonder-blocks-
|
|
19
|
-
"@khanacademy/wonder-blocks-progress-spinner": "3.1.9",
|
|
15
|
+
"@khanacademy/wonder-blocks-clickable": "7.1.0",
|
|
16
|
+
"@khanacademy/wonder-blocks-core": "12.3.0",
|
|
17
|
+
"@khanacademy/wonder-blocks-icon": "5.1.4",
|
|
18
|
+
"@khanacademy/wonder-blocks-progress-spinner": "3.1.11",
|
|
20
19
|
"@khanacademy/wonder-blocks-theming": "3.3.0",
|
|
21
|
-
"@khanacademy/wonder-blocks-tokens": "
|
|
22
|
-
"@khanacademy/wonder-blocks-typography": "3.1
|
|
20
|
+
"@khanacademy/wonder-blocks-tokens": "10.0.0",
|
|
21
|
+
"@khanacademy/wonder-blocks-typography": "3.2.1"
|
|
23
22
|
},
|
|
24
23
|
"peerDependencies": {
|
|
25
24
|
"aphrodite": "^1.2.5",
|
|
@@ -29,7 +28,7 @@
|
|
|
29
28
|
"react-router-dom-v5-compat": "^6.30.0"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|
|
32
|
-
"@khanacademy/wb-dev-build-settings": "
|
|
31
|
+
"@khanacademy/wb-dev-build-settings": "3.0.0"
|
|
33
32
|
},
|
|
34
33
|
"scripts": {
|
|
35
34
|
"test": "echo \"Error: no test specified\" && exit 1"
|