@khanacademy/wonder-blocks-grid 1.0.37 → 1.0.38

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-grid
2
2
 
3
+ ## 1.0.38
4
+
5
+ ### Patch Changes
6
+
7
+ - 91cb727c: Remove file extensions from imports
8
+ - Updated dependencies [91cb727c]
9
+ - Updated dependencies [91cb727c]
10
+ - @khanacademy/wonder-blocks-color@1.2.1
11
+ - @khanacademy/wonder-blocks-core@4.7.0
12
+ - @khanacademy/wonder-blocks-layout@1.4.16
13
+
3
14
  ## 1.0.37
4
15
 
5
16
  ### Patch Changes
@@ -1,2 +1,2 @@
1
1
  // @flow
2
- export * from "../src/index.js";
2
+ export * from "../src/index";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khanacademy/wonder-blocks-grid",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "design": "v1",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,9 +16,9 @@
16
16
  "license": "MIT",
17
17
  "dependencies": {
18
18
  "@babel/runtime": "^7.18.6",
19
- "@khanacademy/wonder-blocks-color": "^1.2.0",
20
- "@khanacademy/wonder-blocks-core": "^4.6.2",
21
- "@khanacademy/wonder-blocks-layout": "^1.4.15",
19
+ "@khanacademy/wonder-blocks-color": "^1.2.1",
20
+ "@khanacademy/wonder-blocks-core": "^4.7.0",
21
+ "@khanacademy/wonder-blocks-layout": "^1.4.16",
22
22
  "@khanacademy/wonder-blocks-spacing": "^3.0.5"
23
23
  },
24
24
  "peerDependencies": {
@@ -26,6 +26,6 @@
26
26
  "react": "16.14.0"
27
27
  },
28
28
  "devDependencies": {
29
- "wb-dev-build-settings": "^0.7.0"
29
+ "wb-dev-build-settings": "^0.7.1"
30
30
  }
31
31
  }
@@ -7,8 +7,8 @@ import {
7
7
  MEDIA_DEFAULT_SPEC,
8
8
  MediaLayoutContext,
9
9
  } from "@khanacademy/wonder-blocks-layout";
10
- import Row from "../row.js";
11
- import Cell from "../cell.js";
10
+ import Row from "../row";
11
+ import Cell from "../cell";
12
12
 
13
13
  describe("Row", () => {
14
14
  describe("large", () => {
@@ -6,8 +6,8 @@ import {View} from "@khanacademy/wonder-blocks-core";
6
6
  import type {MediaSize} from "@khanacademy/wonder-blocks-layout";
7
7
  import type {StyleType} from "@khanacademy/wonder-blocks-core";
8
8
 
9
- import styles from "../util/styles.js";
10
- import {flexBasis} from "../util/utils.js";
9
+ import styles from "../util/styles";
10
+ import {flexBasis} from "../util/utils";
11
11
 
12
12
  type Props = {|
13
13
  /** The number of columns this cell should span on a Small Grid. */
@@ -9,9 +9,9 @@ import {
9
9
  import type {StyleType} from "@khanacademy/wonder-blocks-core";
10
10
  import type {MediaQuery, MediaSize} from "@khanacademy/wonder-blocks-layout";
11
11
 
12
- import styles from "../util/styles.js";
13
- import Gutter from "./gutter.js";
14
- import Cell from "./cell.js";
12
+ import styles from "../util/styles";
13
+ import Gutter from "./gutter";
14
+ import Cell from "./cell";
15
15
 
16
16
  type Props = {|
17
17
  /**
package/src/index.js CHANGED
@@ -1,3 +1,3 @@
1
1
  // @flow
2
- export {default as Cell} from "./components/cell.js";
3
- export {default as Row} from "./components/row.js";
2
+ export {default as Cell} from "./components/cell";
3
+ export {default as Row} from "./components/row";