@pie-element/ebsr 10.3.11-next.0 → 10.3.11
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 +8 -0
- package/configure/CHANGELOG.md +8 -0
- package/configure/package.json +2 -2
- package/module/element.js +1 -1
- package/module/print.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.3.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/ebsr@10.3.10...@pie-element/ebsr@10.3.11) (2025-02-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @pie-element/ebsr
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [10.3.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/ebsr@10.3.9...@pie-element/ebsr@10.3.10) (2025-02-19)
|
|
7
15
|
|
|
8
16
|
|
package/configure/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.2.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/ebsr-configure@10.2.10...@pie-element/ebsr-configure@10.2.11) (2025-02-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @pie-element/ebsr-configure
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [10.2.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/ebsr-configure@10.2.9...@pie-element/ebsr-configure@10.2.10) (2025-02-19)
|
|
7
15
|
|
|
8
16
|
|
package/configure/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-element/ebsr-configure",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "10.2.
|
|
4
|
+
"version": "10.2.11",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "src/index.js",
|
|
8
8
|
"author": "",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@material-ui/core": "^3.9.2",
|
|
11
|
-
"@pie-element/multiple-choice": "^9.12.
|
|
11
|
+
"@pie-element/multiple-choice": "^9.12.6",
|
|
12
12
|
"@pie-framework/pie-configure-events": "^1.2.0",
|
|
13
13
|
"@pie-lib/pie-toolbox": "2.9.3",
|
|
14
14
|
"lodash": "^4.17.15",
|
package/module/element.js
CHANGED
|
@@ -13089,7 +13089,7 @@ function updateSessionMetadata(session, metadata) {
|
|
|
13089
13089
|
session.audioStartTime = session.audioStartTime || metadata.audioStartTime;
|
|
13090
13090
|
session.audioEndTime = session.audioEndTime || metadata.audioEndTime;
|
|
13091
13091
|
if (!session.waitTime && session.audioStartTime && session.audioEndTime) {
|
|
13092
|
-
session.waitTime =
|
|
13092
|
+
session.waitTime = session.audioEndTime - session.audioStartTime;
|
|
13093
13093
|
}
|
|
13094
13094
|
}
|
|
13095
13095
|
const React = _dll_react;
|
package/module/print.js
CHANGED
|
@@ -13089,7 +13089,7 @@ function updateSessionMetadata(session, metadata) {
|
|
|
13089
13089
|
session.audioStartTime = session.audioStartTime || metadata.audioStartTime;
|
|
13090
13090
|
session.audioEndTime = session.audioEndTime || metadata.audioEndTime;
|
|
13091
13091
|
if (!session.waitTime && session.audioStartTime && session.audioEndTime) {
|
|
13092
|
-
session.waitTime =
|
|
13092
|
+
session.waitTime = session.audioEndTime - session.audioStartTime;
|
|
13093
13093
|
}
|
|
13094
13094
|
}
|
|
13095
13095
|
const React = _dll_react;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-element/ebsr",
|
|
3
|
-
"version": "10.3.11
|
|
3
|
+
"version": "10.3.11",
|
|
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.12.6
|
|
10
|
+
"@pie-element/multiple-choice": "^9.12.6",
|
|
11
11
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
12
12
|
"@pie-lib/pie-toolbox": "2.9.3",
|
|
13
13
|
"classnames": "^2.2.5",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"author": "pie framework developers",
|
|
18
18
|
"license": "ISC",
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "796934a222cc8ef5dd179dab4fcd46dceda80129",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"postpublish": "../../scripts/postpublish"
|
|
22
22
|
},
|