@uniformdev/canvas 20.35.1-alpha.87 → 20.36.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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +2 -3
- package/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
@@ -13305,7 +13305,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
13305
13305
|
*/
|
13306
13306
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
13307
13307
|
|
13308
|
-
declare const version = "20.
|
13308
|
+
declare const version = "20.36.0";
|
13309
13309
|
|
13310
13310
|
/** API client to enable managing workflow definitions */
|
13311
13311
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.d.ts
CHANGED
@@ -13305,7 +13305,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
13305
13305
|
*/
|
13306
13306
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
13307
13307
|
|
13308
|
-
declare const version = "20.
|
13308
|
+
declare const version = "20.36.0";
|
13309
13309
|
|
13310
13310
|
/** API client to enable managing workflow definitions */
|
13311
13311
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.esm.js
CHANGED
@@ -3263,8 +3263,7 @@ function mapSlotToTestVariations(slot) {
|
|
3263
3263
|
return {
|
3264
3264
|
...v,
|
3265
3265
|
id,
|
3266
|
-
testDistribution: contextTag == null ? void 0 : contextTag.testDistribution
|
3267
|
-
control: contextTag == null ? void 0 : contextTag.control
|
3266
|
+
testDistribution: contextTag == null ? void 0 : contextTag.testDistribution
|
3268
3267
|
};
|
3269
3268
|
});
|
3270
3269
|
}
|
@@ -3429,7 +3428,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
3429
3428
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3430
3429
|
|
3431
3430
|
// src/.version.ts
|
3432
|
-
var version = "20.
|
3431
|
+
var version = "20.36.0";
|
3433
3432
|
|
3434
3433
|
// src/WorkflowClient.ts
|
3435
3434
|
import { ApiClient as ApiClient15 } from "@uniformdev/context/api";
|
package/dist/index.js
CHANGED
@@ -3430,8 +3430,7 @@ function mapSlotToTestVariations(slot) {
|
|
3430
3430
|
return {
|
3431
3431
|
...v,
|
3432
3432
|
id,
|
3433
|
-
testDistribution: contextTag == null ? void 0 : contextTag.testDistribution
|
3434
|
-
control: contextTag == null ? void 0 : contextTag.control
|
3433
|
+
testDistribution: contextTag == null ? void 0 : contextTag.testDistribution
|
3435
3434
|
};
|
3436
3435
|
});
|
3437
3436
|
}
|
@@ -3596,7 +3595,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
3596
3595
|
var import_api17 = require("@uniformdev/context/api");
|
3597
3596
|
|
3598
3597
|
// src/.version.ts
|
3599
|
-
var version = "20.
|
3598
|
+
var version = "20.36.0";
|
3600
3599
|
|
3601
3600
|
// src/WorkflowClient.ts
|
3602
3601
|
var import_api16 = require("@uniformdev/context/api");
|
package/dist/index.mjs
CHANGED
@@ -3263,8 +3263,7 @@ function mapSlotToTestVariations(slot) {
|
|
3263
3263
|
return {
|
3264
3264
|
...v,
|
3265
3265
|
id,
|
3266
|
-
testDistribution: contextTag == null ? void 0 : contextTag.testDistribution
|
3267
|
-
control: contextTag == null ? void 0 : contextTag.control
|
3266
|
+
testDistribution: contextTag == null ? void 0 : contextTag.testDistribution
|
3268
3267
|
};
|
3269
3268
|
});
|
3270
3269
|
}
|
@@ -3429,7 +3428,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
3429
3428
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3430
3429
|
|
3431
3430
|
// src/.version.ts
|
3432
|
-
var version = "20.
|
3431
|
+
var version = "20.36.0";
|
3433
3432
|
|
3434
3433
|
// src/WorkflowClient.ts
|
3435
3434
|
import { ApiClient as ApiClient15 } from "@uniformdev/context/api";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "20.
|
3
|
+
"version": "20.36.0",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -41,9 +41,9 @@
|
|
41
41
|
"svix": "1.71.0"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
-
"@uniformdev/assets": "20.
|
45
|
-
"@uniformdev/context": "20.
|
46
|
-
"@uniformdev/richtext": "20.
|
44
|
+
"@uniformdev/assets": "20.36.0",
|
45
|
+
"@uniformdev/context": "20.36.0",
|
46
|
+
"@uniformdev/richtext": "20.36.0",
|
47
47
|
"immer": "10.1.1"
|
48
48
|
},
|
49
49
|
"files": [
|
@@ -52,5 +52,5 @@
|
|
52
52
|
"publishConfig": {
|
53
53
|
"access": "public"
|
54
54
|
},
|
55
|
-
"gitHead": "
|
55
|
+
"gitHead": "3e8e0c88d24d2576b74b64a48f7d32851979bf40"
|
56
56
|
}
|