@uniformdev/canvas 20.72.4-alpha.6 → 20.73.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 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -15058,7 +15058,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
|
15058
15058
|
*/
|
|
15059
15059
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable', offset: number) => void | false): number;
|
|
15060
15060
|
|
|
15061
|
-
declare const version = "20.
|
|
15061
|
+
declare const version = "20.73.0";
|
|
15062
15062
|
|
|
15063
15063
|
/** API client to enable managing workflow definitions */
|
|
15064
15064
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -15058,7 +15058,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
|
15058
15058
|
*/
|
|
15059
15059
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable', offset: number) => void | false): number;
|
|
15060
15060
|
|
|
15061
|
-
declare const version = "20.
|
|
15061
|
+
declare const version = "20.73.0";
|
|
15062
15062
|
|
|
15063
15063
|
/** API client to enable managing workflow definitions */
|
|
15064
15064
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.esm.js
CHANGED
|
@@ -1492,7 +1492,7 @@ function getLocaleMatch(index, locale, greedy) {
|
|
|
1492
1492
|
}
|
|
1493
1493
|
const match = index[locale];
|
|
1494
1494
|
if (match === void 0 && greedy) {
|
|
1495
|
-
return Object.values(index)
|
|
1495
|
+
return Object.values(index).find((value) => value !== void 0);
|
|
1496
1496
|
}
|
|
1497
1497
|
return match;
|
|
1498
1498
|
}
|
|
@@ -3373,7 +3373,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
|
3373
3373
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
|
3374
3374
|
|
|
3375
3375
|
// src/.version.ts
|
|
3376
|
-
var version = "20.
|
|
3376
|
+
var version = "20.73.0";
|
|
3377
3377
|
|
|
3378
3378
|
// src/WorkflowClient.ts
|
|
3379
3379
|
import { ApiClient as ApiClient17 } from "@uniformdev/context/api";
|
package/dist/index.js
CHANGED
|
@@ -1701,7 +1701,7 @@ function getLocaleMatch(index, locale, greedy) {
|
|
|
1701
1701
|
}
|
|
1702
1702
|
const match = index[locale];
|
|
1703
1703
|
if (match === void 0 && greedy) {
|
|
1704
|
-
return Object.values(index)
|
|
1704
|
+
return Object.values(index).find((value) => value !== void 0);
|
|
1705
1705
|
}
|
|
1706
1706
|
return match;
|
|
1707
1707
|
}
|
|
@@ -3582,7 +3582,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
|
3582
3582
|
var import_api19 = require("@uniformdev/context/api");
|
|
3583
3583
|
|
|
3584
3584
|
// src/.version.ts
|
|
3585
|
-
var version = "20.
|
|
3585
|
+
var version = "20.73.0";
|
|
3586
3586
|
|
|
3587
3587
|
// src/WorkflowClient.ts
|
|
3588
3588
|
var import_api18 = require("@uniformdev/context/api");
|
package/dist/index.mjs
CHANGED
|
@@ -1492,7 +1492,7 @@ function getLocaleMatch(index, locale, greedy) {
|
|
|
1492
1492
|
}
|
|
1493
1493
|
const match = index[locale];
|
|
1494
1494
|
if (match === void 0 && greedy) {
|
|
1495
|
-
return Object.values(index)
|
|
1495
|
+
return Object.values(index).find((value) => value !== void 0);
|
|
1496
1496
|
}
|
|
1497
1497
|
return match;
|
|
1498
1498
|
}
|
|
@@ -3373,7 +3373,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
|
3373
3373
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
|
3374
3374
|
|
|
3375
3375
|
// src/.version.ts
|
|
3376
|
-
var version = "20.
|
|
3376
|
+
var version = "20.73.0";
|
|
3377
3377
|
|
|
3378
3378
|
// src/WorkflowClient.ts
|
|
3379
3379
|
import { ApiClient as ApiClient17 } 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.73.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",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"svix": "1.96.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/assets": "20.
|
|
40
|
-
"@uniformdev/context": "20.
|
|
41
|
-
"@uniformdev/richtext": "20.
|
|
42
|
-
"immer": "
|
|
39
|
+
"@uniformdev/assets": "20.73.0",
|
|
40
|
+
"@uniformdev/context": "20.73.0",
|
|
41
|
+
"@uniformdev/richtext": "20.73.0",
|
|
42
|
+
"immer": "10.2.0",
|
|
43
43
|
"p-limit": "6.2.0",
|
|
44
44
|
"p-retry": "6.2.1",
|
|
45
45
|
"p-throttle": "6.2.0"
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "23833095a08c168a489a81cab138bd1ad45344cc"
|
|
54
54
|
}
|