@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 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
@@ -17,6 +17,7 @@ declare const Text: React.ForwardRefExoticComponent<{
17
17
  testId?: string;
18
18
  lang?: string;
19
19
  className?: string;
20
+ dir?: "ltr" | "rtl" | "auto";
20
21
  htmlFor?: string;
21
22
  tabIndex?: number;
22
23
  id?: string;
@@ -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
- "version": "12.3.0",
4
- "design": "v1",
3
+ "description": "",
4
+ "author": "Khan Academy",
5
+ "license": "MIT",
6
+ "version": "12.4.1",
5
7
  "publishConfig": {
6
8
  "access": "public"
7
9
  },
8
- "description": "",
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.0.0",
23
- "@khanacademy/wonder-blocks-testing-core": "3.0.1"
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
  }