@uniformdev/canvas 20.39.3-alpha.1 → 20.40.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 CHANGED
@@ -1544,6 +1544,20 @@ interface components$o {
1544
1544
  value?: string;
1545
1545
  /** @description Help text for authors who might be setting up a preview value for this query string */
1546
1546
  helpText?: string;
1547
+ /** @description Configuration for providing a list of allowed values for this query string */
1548
+ optionsSource?: {
1549
+ /**
1550
+ * @description The source type for the options
1551
+ * @enum {string}
1552
+ */
1553
+ source: "static";
1554
+ options: {
1555
+ /** @description Display name for the option */
1556
+ name: string;
1557
+ /** @description The actual value to be used */
1558
+ value: string;
1559
+ }[];
1560
+ };
1547
1561
  };
1548
1562
  ProjectMapNodeData: {
1549
1563
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -5508,6 +5522,20 @@ interface components$d {
5508
5522
  value?: string;
5509
5523
  /** @description Help text for authors who might be setting up a preview value for this query string */
5510
5524
  helpText?: string;
5525
+ /** @description Configuration for providing a list of allowed values for this query string */
5526
+ optionsSource?: {
5527
+ /**
5528
+ * @description The source type for the options
5529
+ * @enum {string}
5530
+ */
5531
+ source: "static";
5532
+ options: {
5533
+ /** @description Display name for the option */
5534
+ name: string;
5535
+ /** @description The actual value to be used */
5536
+ value: string;
5537
+ }[];
5538
+ };
5511
5539
  };
5512
5540
  ProjectMapNodeData: {
5513
5541
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -6653,6 +6681,20 @@ interface components$c {
6653
6681
  value?: string;
6654
6682
  /** @description Help text for authors who might be setting up a preview value for this query string */
6655
6683
  helpText?: string;
6684
+ /** @description Configuration for providing a list of allowed values for this query string */
6685
+ optionsSource?: {
6686
+ /**
6687
+ * @description The source type for the options
6688
+ * @enum {string}
6689
+ */
6690
+ source: "static";
6691
+ options: {
6692
+ /** @description Display name for the option */
6693
+ name: string;
6694
+ /** @description The actual value to be used */
6695
+ value: string;
6696
+ }[];
6697
+ };
6656
6698
  };
6657
6699
  ProjectMapNodeData: {
6658
6700
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -7656,6 +7698,20 @@ interface components$a {
7656
7698
  value?: string;
7657
7699
  /** @description Help text for authors who might be setting up a preview value for this query string */
7658
7700
  helpText?: string;
7701
+ /** @description Configuration for providing a list of allowed values for this query string */
7702
+ optionsSource?: {
7703
+ /**
7704
+ * @description The source type for the options
7705
+ * @enum {string}
7706
+ */
7707
+ source: "static";
7708
+ options: {
7709
+ /** @description Display name for the option */
7710
+ name: string;
7711
+ /** @description The actual value to be used */
7712
+ value: string;
7713
+ }[];
7714
+ };
7659
7715
  };
7660
7716
  ProjectMapNodeData: {
7661
7717
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -8947,6 +9003,20 @@ interface components$9 {
8947
9003
  value?: string;
8948
9004
  /** @description Help text for authors who might be setting up a preview value for this query string */
8949
9005
  helpText?: string;
9006
+ /** @description Configuration for providing a list of allowed values for this query string */
9007
+ optionsSource?: {
9008
+ /**
9009
+ * @description The source type for the options
9010
+ * @enum {string}
9011
+ */
9012
+ source: "static";
9013
+ options: {
9014
+ /** @description Display name for the option */
9015
+ name: string;
9016
+ /** @description The actual value to be used */
9017
+ value: string;
9018
+ }[];
9019
+ };
8950
9020
  };
8951
9021
  ProjectMapNodeData: {
8952
9022
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -13611,7 +13681,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
13611
13681
  */
13612
13682
  declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
13613
13683
 
13614
- declare const version = "20.39.2";
13684
+ declare const version = "20.40.0";
13615
13685
 
13616
13686
  /** API client to enable managing workflow definitions */
13617
13687
  declare class WorkflowClient extends ApiClient {
package/dist/index.d.ts CHANGED
@@ -1544,6 +1544,20 @@ interface components$o {
1544
1544
  value?: string;
1545
1545
  /** @description Help text for authors who might be setting up a preview value for this query string */
1546
1546
  helpText?: string;
1547
+ /** @description Configuration for providing a list of allowed values for this query string */
1548
+ optionsSource?: {
1549
+ /**
1550
+ * @description The source type for the options
1551
+ * @enum {string}
1552
+ */
1553
+ source: "static";
1554
+ options: {
1555
+ /** @description Display name for the option */
1556
+ name: string;
1557
+ /** @description The actual value to be used */
1558
+ value: string;
1559
+ }[];
1560
+ };
1547
1561
  };
1548
1562
  ProjectMapNodeData: {
1549
1563
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -5508,6 +5522,20 @@ interface components$d {
5508
5522
  value?: string;
5509
5523
  /** @description Help text for authors who might be setting up a preview value for this query string */
5510
5524
  helpText?: string;
5525
+ /** @description Configuration for providing a list of allowed values for this query string */
5526
+ optionsSource?: {
5527
+ /**
5528
+ * @description The source type for the options
5529
+ * @enum {string}
5530
+ */
5531
+ source: "static";
5532
+ options: {
5533
+ /** @description Display name for the option */
5534
+ name: string;
5535
+ /** @description The actual value to be used */
5536
+ value: string;
5537
+ }[];
5538
+ };
5511
5539
  };
5512
5540
  ProjectMapNodeData: {
5513
5541
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -6653,6 +6681,20 @@ interface components$c {
6653
6681
  value?: string;
6654
6682
  /** @description Help text for authors who might be setting up a preview value for this query string */
6655
6683
  helpText?: string;
6684
+ /** @description Configuration for providing a list of allowed values for this query string */
6685
+ optionsSource?: {
6686
+ /**
6687
+ * @description The source type for the options
6688
+ * @enum {string}
6689
+ */
6690
+ source: "static";
6691
+ options: {
6692
+ /** @description Display name for the option */
6693
+ name: string;
6694
+ /** @description The actual value to be used */
6695
+ value: string;
6696
+ }[];
6697
+ };
6656
6698
  };
6657
6699
  ProjectMapNodeData: {
6658
6700
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -7656,6 +7698,20 @@ interface components$a {
7656
7698
  value?: string;
7657
7699
  /** @description Help text for authors who might be setting up a preview value for this query string */
7658
7700
  helpText?: string;
7701
+ /** @description Configuration for providing a list of allowed values for this query string */
7702
+ optionsSource?: {
7703
+ /**
7704
+ * @description The source type for the options
7705
+ * @enum {string}
7706
+ */
7707
+ source: "static";
7708
+ options: {
7709
+ /** @description Display name for the option */
7710
+ name: string;
7711
+ /** @description The actual value to be used */
7712
+ value: string;
7713
+ }[];
7714
+ };
7659
7715
  };
7660
7716
  ProjectMapNodeData: {
7661
7717
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -8947,6 +9003,20 @@ interface components$9 {
8947
9003
  value?: string;
8948
9004
  /** @description Help text for authors who might be setting up a preview value for this query string */
8949
9005
  helpText?: string;
9006
+ /** @description Configuration for providing a list of allowed values for this query string */
9007
+ optionsSource?: {
9008
+ /**
9009
+ * @description The source type for the options
9010
+ * @enum {string}
9011
+ */
9012
+ source: "static";
9013
+ options: {
9014
+ /** @description Display name for the option */
9015
+ name: string;
9016
+ /** @description The actual value to be used */
9017
+ value: string;
9018
+ }[];
9019
+ };
8950
9020
  };
8951
9021
  ProjectMapNodeData: {
8952
9022
  /** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
@@ -13611,7 +13681,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
13611
13681
  */
13612
13682
  declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
13613
13683
 
13614
- declare const version = "20.39.2";
13684
+ declare const version = "20.40.0";
13615
13685
 
13616
13686
  /** API client to enable managing workflow definitions */
13617
13687
  declare class WorkflowClient extends ApiClient {
package/dist/index.esm.js CHANGED
@@ -3531,7 +3531,7 @@ function handleRichTextNodeBinding(object, options) {
3531
3531
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
3532
3532
 
3533
3533
  // src/.version.ts
3534
- var version = "20.39.2";
3534
+ var version = "20.40.0";
3535
3535
 
3536
3536
  // src/WorkflowClient.ts
3537
3537
  import { ApiClient as ApiClient16 } from "@uniformdev/context/api";
package/dist/index.js CHANGED
@@ -3701,7 +3701,7 @@ function handleRichTextNodeBinding(object, options) {
3701
3701
  var import_api18 = require("@uniformdev/context/api");
3702
3702
 
3703
3703
  // src/.version.ts
3704
- var version = "20.39.2";
3704
+ var version = "20.40.0";
3705
3705
 
3706
3706
  // src/WorkflowClient.ts
3707
3707
  var import_api17 = require("@uniformdev/context/api");
package/dist/index.mjs CHANGED
@@ -3531,7 +3531,7 @@ function handleRichTextNodeBinding(object, options) {
3531
3531
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
3532
3532
 
3533
3533
  // src/.version.ts
3534
- var version = "20.39.2";
3534
+ var version = "20.40.0";
3535
3535
 
3536
3536
  // src/WorkflowClient.ts
3537
3537
  import { ApiClient as ApiClient16 } from "@uniformdev/context/api";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas",
3
- "version": "20.39.3-alpha.1+5c5ebdb625",
3
+ "version": "20.40.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.39.3-alpha.1+5c5ebdb625",
45
- "@uniformdev/context": "20.39.3-alpha.1+5c5ebdb625",
46
- "@uniformdev/richtext": "20.39.3-alpha.1+5c5ebdb625",
44
+ "@uniformdev/assets": "20.40.0",
45
+ "@uniformdev/context": "20.40.0",
46
+ "@uniformdev/richtext": "20.40.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": "5c5ebdb6256f19b67d7941890176e63f3d60b8f4"
55
+ "gitHead": "5a63373f91355d8865feac0d3fc11be59a5e38bd"
56
56
  }