@movable/studio-framework 3.14.3-canary.0 → 3.15.1-canary.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/dist/index.es.js +6 -0
- package/dist/index.js +6 -0
- package/package.json +4 -4
package/dist/index.es.js
CHANGED
|
@@ -3154,6 +3154,12 @@ class StudioFramework {
|
|
|
3154
3154
|
CD.pause();
|
|
3155
3155
|
currentCanvas = await this.getCurrentCanvas();
|
|
3156
3156
|
this.logCurrentCanvas(currentCanvas);
|
|
3157
|
+
const canvasRedirect = currentCanvas?.canvasRedirect;
|
|
3158
|
+
|
|
3159
|
+
if (canvasRedirect) {
|
|
3160
|
+
CD.setImageRedirect(canvasRedirect);
|
|
3161
|
+
}
|
|
3162
|
+
|
|
3157
3163
|
const clickthroughURL = await this.handleClickthrough(currentCanvas);
|
|
3158
3164
|
const canvasTags = currentCanvas?.tags || [];
|
|
3159
3165
|
const tags = await this.getCurrentTags(canvasTags, currentCanvas);
|
package/dist/index.js
CHANGED
|
@@ -3164,6 +3164,12 @@ class StudioFramework {
|
|
|
3164
3164
|
CD__default['default'].pause();
|
|
3165
3165
|
currentCanvas = await this.getCurrentCanvas();
|
|
3166
3166
|
this.logCurrentCanvas(currentCanvas);
|
|
3167
|
+
const canvasRedirect = currentCanvas?.canvasRedirect;
|
|
3168
|
+
|
|
3169
|
+
if (canvasRedirect) {
|
|
3170
|
+
CD__default['default'].setImageRedirect(canvasRedirect);
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3167
3173
|
const clickthroughURL = await this.handleClickthrough(currentCanvas);
|
|
3168
3174
|
const canvasTags = currentCanvas?.tags || [];
|
|
3169
3175
|
const tags = await this.getCurrentTags(canvasTags, currentCanvas);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/studio-framework",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.15.1-canary.0",
|
|
4
4
|
"description": "A Component library for reactive Studio apps.",
|
|
5
5
|
"author": "Movable Ink",
|
|
6
6
|
"repository": "movableink/studio-framework",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"@babel/preset-react": "^7.14.5",
|
|
32
32
|
"@babel/preset-typescript": "^7.13.0",
|
|
33
33
|
"@movable/eslint-config-react": "^1.0.1",
|
|
34
|
-
"@movable/framework-types": "^3.
|
|
35
|
-
"@movable/studio-framework-test-helpers": "^3.
|
|
34
|
+
"@movable/framework-types": "^3.15.1-canary.0",
|
|
35
|
+
"@movable/studio-framework-test-helpers": "^3.15.1-canary.0",
|
|
36
36
|
"@types/qunit": "^2.11.1",
|
|
37
37
|
"@types/qunit-dom": "^0.7.0",
|
|
38
38
|
"@types/react": "^17.0.6",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"volta": {
|
|
67
67
|
"extends": "../../package.json"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "a16284f79201e07c58ef11652a863b71fe8b6553"
|
|
70
70
|
}
|