@khanacademy/wonder-blocks-data 10.1.3 → 11.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @khanacademy/wonder-blocks-data
2
2
 
3
+ ## 11.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 1ca4d7e3: Fix minor issue with generate Flow types (this is a major bump b/c I forgot to do one after doing the TS conversion)
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [1ca4d7e3]
12
+ - @khanacademy/wonder-blocks-core@5.0.0
13
+
3
14
  ## 10.1.3
4
15
 
5
16
  ### Patch Changes
@@ -51,7 +51,7 @@ declare type Props<TData: ValidCacheData> = {
51
51
  * loading state and data or error that gets retrieved from cache or loaded
52
52
  * via the request if no cached value is available.
53
53
  */
54
- children: (result: Result<TData>) => React.Element<>,
54
+ children: (result: Result<TData>) => React.Element<any>,
55
55
  ...
56
56
  };
57
57
  /**
@@ -14,5 +14,5 @@ declare type TrackDataProps = {
14
14
  * Component to enable data request tracking when server-side rendering.
15
15
  */
16
16
  declare export default class TrackData extends React.Component<TrackDataProps> {
17
- render(): React.Element<>;
17
+ render(): React.Element<any>;
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khanacademy/wonder-blocks-data",
3
- "version": "10.1.3",
3
+ "version": "11.0.0",
4
4
  "design": "v1",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -14,14 +14,14 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@babel/runtime": "^7.18.6",
17
- "@khanacademy/wonder-blocks-core": "^4.9.1"
17
+ "@khanacademy/wonder-blocks-core": "^5.0.0"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@khanacademy/wonder-stuff-core": "^1.2.2",
21
21
  "react": "16.14.0"
22
22
  },
23
23
  "devDependencies": {
24
- "wb-dev-build-settings": "^0.7.4"
24
+ "wb-dev-build-settings": "^0.8.0"
25
25
  },
26
26
  "author": "",
27
27
  "license": "MIT"