@uniformdev/canvas 20.16.0 → 20.17.1-alpha.3
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 +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +7 -6
package/dist/index.d.mts
CHANGED
@@ -12957,7 +12957,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
12957
12957
|
*/
|
12958
12958
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
12959
12959
|
|
12960
|
-
declare const version = "20.
|
12960
|
+
declare const version = "20.17.0";
|
12961
12961
|
|
12962
12962
|
/** API client to enable managing workflow definitions */
|
12963
12963
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.d.ts
CHANGED
@@ -12957,7 +12957,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
12957
12957
|
*/
|
12958
12958
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
12959
12959
|
|
12960
|
-
declare const version = "20.
|
12960
|
+
declare const version = "20.17.0";
|
12961
12961
|
|
12962
12962
|
/** API client to enable managing workflow definitions */
|
12963
12963
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.esm.js
CHANGED
@@ -3372,7 +3372,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
3372
3372
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3373
3373
|
|
3374
3374
|
// src/.version.ts
|
3375
|
-
var version = "20.
|
3375
|
+
var version = "20.17.0";
|
3376
3376
|
|
3377
3377
|
// src/WorkflowClient.ts
|
3378
3378
|
import { ApiClient as ApiClient14 } from "@uniformdev/context/api";
|
package/dist/index.js
CHANGED
@@ -3536,7 +3536,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
3536
3536
|
var import_api16 = require("@uniformdev/context/api");
|
3537
3537
|
|
3538
3538
|
// src/.version.ts
|
3539
|
-
var version = "20.
|
3539
|
+
var version = "20.17.0";
|
3540
3540
|
|
3541
3541
|
// src/WorkflowClient.ts
|
3542
3542
|
var import_api15 = require("@uniformdev/context/api");
|
package/dist/index.mjs
CHANGED
@@ -3372,7 +3372,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
3372
3372
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3373
3373
|
|
3374
3374
|
// src/.version.ts
|
3375
|
-
var version = "20.
|
3375
|
+
var version = "20.17.0";
|
3376
3376
|
|
3377
3377
|
// src/WorkflowClient.ts
|
3378
3378
|
import { ApiClient as ApiClient14 } 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.17.1-alpha.3+d1e3fce857",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -24,7 +24,8 @@
|
|
24
24
|
"dev": "run-s update-openapi create-version dev:ts",
|
25
25
|
"dev:ts": "tsup --watch",
|
26
26
|
"clean": "rimraf dist",
|
27
|
-
"test": "
|
27
|
+
"test": "run-s create-version test:run",
|
28
|
+
"test:run": "jest --maxWorkers=1",
|
28
29
|
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
29
30
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
|
30
31
|
"update-openapi": "tsx ./scripts/update-openapi.cts",
|
@@ -39,9 +40,9 @@
|
|
39
40
|
"p-throttle": "5.0.0"
|
40
41
|
},
|
41
42
|
"dependencies": {
|
42
|
-
"@uniformdev/assets": "20.
|
43
|
-
"@uniformdev/context": "20.
|
44
|
-
"@uniformdev/richtext": "20.
|
43
|
+
"@uniformdev/assets": "20.17.1-alpha.3+d1e3fce857",
|
44
|
+
"@uniformdev/context": "20.17.1-alpha.3+d1e3fce857",
|
45
|
+
"@uniformdev/richtext": "20.17.1-alpha.3+d1e3fce857",
|
45
46
|
"immer": "10.1.1"
|
46
47
|
},
|
47
48
|
"files": [
|
@@ -50,5 +51,5 @@
|
|
50
51
|
"publishConfig": {
|
51
52
|
"access": "public"
|
52
53
|
},
|
53
|
-
"gitHead": "
|
54
|
+
"gitHead": "d1e3fce857552af8fda75c6592a3ab062b1f31a9"
|
54
55
|
}
|