@khanacademy/wonder-blocks-core 12.3.0 → 12.4.1
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 +12 -0
- package/dist/components/text.d.ts +1 -0
- package/dist/util/types.d.ts +4 -0
- package/package.json +15 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-core
|
|
2
2
|
|
|
3
|
+
## 12.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6d5c485: Include provenance information when publishing to npmjs
|
|
8
|
+
|
|
9
|
+
## 12.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 1334e74: Adding dir to View's type to support RTL usage.
|
|
14
|
+
|
|
3
15
|
## 12.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/util/types.d.ts
CHANGED
|
@@ -71,6 +71,10 @@ export type TextViewSharedProps = {
|
|
|
71
71
|
* Optional CSS classes for the entire dropdown component.
|
|
72
72
|
*/
|
|
73
73
|
className?: string;
|
|
74
|
+
/**
|
|
75
|
+
* The text direction for the element.
|
|
76
|
+
*/
|
|
77
|
+
dir?: "ltr" | "rtl" | "auto";
|
|
74
78
|
htmlFor?: string;
|
|
75
79
|
tabIndex?: number;
|
|
76
80
|
id?: string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-core",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"description": "",
|
|
4
|
+
"author": "Khan Academy",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"version": "12.4.1",
|
|
5
7
|
"publishConfig": {
|
|
6
8
|
"access": "public"
|
|
7
9
|
},
|
|
8
|
-
"
|
|
10
|
+
"design": "v1",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/Khan/wonder-blocks.git",
|
|
14
|
+
"directory": "packages/wonder-blocks-core"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/Khan/wonder-blocks/issues"
|
|
18
|
+
},
|
|
9
19
|
"main": "dist/index.js",
|
|
10
20
|
"module": "dist/es/index.js",
|
|
11
21
|
"types": "dist/index.d.ts",
|
|
@@ -19,11 +29,9 @@
|
|
|
19
29
|
"react-router-dom-v5-compat": "^6.30.0"
|
|
20
30
|
},
|
|
21
31
|
"devDependencies": {
|
|
22
|
-
"@khanacademy/wb-dev-build-settings": "3.
|
|
23
|
-
"@khanacademy/wonder-blocks-testing-core": "
|
|
32
|
+
"@khanacademy/wb-dev-build-settings": "3.2.0",
|
|
33
|
+
"@khanacademy/wonder-blocks-testing-core": "4.0.2"
|
|
24
34
|
},
|
|
25
|
-
"author": "",
|
|
26
|
-
"license": "MIT",
|
|
27
35
|
"scripts": {
|
|
28
36
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
29
37
|
}
|