@khanacademy/wonder-blocks-toolbar 2.1.39 → 2.1.40

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-toolbar
2
2
 
3
+ ## 2.1.40
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-typography@1.1.38
13
+
3
14
  ## 2.1.39
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-toolbar",
3
- "version": "2.1.39",
3
+ "version": "2.1.40",
4
4
  "design": "v1",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,16 +16,16 @@
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",
19
+ "@khanacademy/wonder-blocks-color": "^1.2.1",
20
+ "@khanacademy/wonder-blocks-core": "^4.7.0",
21
21
  "@khanacademy/wonder-blocks-spacing": "^3.0.5",
22
- "@khanacademy/wonder-blocks-typography": "^1.1.37"
22
+ "@khanacademy/wonder-blocks-typography": "^1.1.38"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "aphrodite": "^1.2.5",
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,12 +7,12 @@ import Spacing from "@khanacademy/wonder-blocks-spacing";
7
7
  import Toolbar from "@khanacademy/wonder-blocks-toolbar";
8
8
 
9
9
  import type {StoryComponentType} from "@storybook/react";
10
- import ComponentInfo from "../../../../../.storybook/components/component-info.js";
10
+ import ComponentInfo from "../../../../../.storybook/components/component-info";
11
11
  import {name, version} from "../../../package.json";
12
12
  import ToolbarArgtypes, {
13
13
  leftContentMappings,
14
14
  rightContentMappings,
15
- } from "./toolbar.argtypes.js";
15
+ } from "./toolbar.argtypes";
16
16
 
17
17
  export default {
18
18
  title: "Toolbar / Toolbar",
package/src/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  // @flow
2
- import Toolbar from "./components/toolbar.js";
2
+ import Toolbar from "./components/toolbar";
3
3
 
4
4
  export {Toolbar as default};