@pie-element/ebsr 10.6.10 → 10.6.11-next.84

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/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@pie-element/ebsr",
3
- "version": "10.6.10",
3
+ "version": "10.6.11-next.84+4667d7462",
4
4
  "description": "",
5
5
  "repository": "pie-framework/pie-elements",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "dependencies": {
10
- "@pie-element/multiple-choice": "^9.19.4",
10
+ "@pie-element/multiple-choice": "^9.19.5-next.84+4667d7462",
11
11
  "@pie-framework/pie-player-events": "^0.1.0",
12
- "@pie-lib/pie-toolbox": "2.25.2",
12
+ "@pie-lib/translator": "^2.19.0",
13
13
  "classnames": "^2.2.5",
14
14
  "debug": "^4.1.1",
15
15
  "lodash": "^4.17.11"
16
16
  },
17
17
  "author": "pie framework developers",
18
18
  "license": "ISC",
19
- "gitHead": "2fbd9065ebb09e10f21d43369168aa65124d335a",
19
+ "gitHead": "4667d7462d34b39283eebb4c9404c694fd4c6583",
20
20
  "scripts": {
21
21
  "postpublish": "../../scripts/postpublish"
22
22
  },
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { SessionChangedEvent } from '@pie-framework/pie-player-events';
3
3
  import { isSessionComplete } from '..';
4
4
 
5
- jest.mock('@pie-lib/pie-toolbox/math-rendering', () => ({ renderMath: jest.fn() }));
5
+ jest.mock('@pie-lib/math-rendering', () => ({ renderMath: jest.fn() }));
6
6
  jest.mock('@pie-element/multiple-choice', () => jest.fn());
7
7
 
8
8
  const PART_A = 'partA';
package/src/print.js CHANGED
@@ -5,7 +5,7 @@ import get from 'lodash/get';
5
5
  import { SessionChangedEvent } from '@pie-framework/pie-player-events';
6
6
  const MC_TAG_NAME = 'ebsr-multiple-choice';
7
7
  const SESSION_CHANGED = SessionChangedEvent.TYPE;
8
- import Translator from '@pie-lib/pie-toolbox/translator';
8
+ import Translator from '@pie-lib/translator';
9
9
 
10
10
  const { translator } = Translator;
11
11