@uniformdev/canvas-vue 20.77.2-alpha.3.sha-e9420d8e77 → 20.79.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
@@ -250,6 +250,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
250
250
  name: string;
251
251
  value?: string;
252
252
  helpText?: string;
253
+ editorVisibility?: "opt-in";
253
254
  optionsSource?: {
254
255
  source: "static";
255
256
  options: {
@@ -342,6 +343,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
342
343
  };
343
344
  };
344
345
  };
346
+ _patternOptedInQueryStrings?: string[];
345
347
  _patternError?: "NOTFOUND" | "CYCLIC";
346
348
  _overrides?: {
347
349
  [key: string]: {
@@ -498,6 +500,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
498
500
  };
499
501
  };
500
502
  };
503
+ _patternOptedInQueryStrings?: string[];
501
504
  _dataResources?: {
502
505
  [key: string]: {
503
506
  type: string;
@@ -631,6 +634,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
631
634
  };
632
635
  };
633
636
  };
637
+ _patternOptedInQueryStrings?: string[];
634
638
  _patternError?: "NOTFOUND" | "CYCLIC";
635
639
  _overrides?: {
636
640
  [key: string]: /*elided*/ any;
@@ -783,6 +787,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
783
787
  };
784
788
  };
785
789
  };
790
+ _patternOptedInQueryStrings?: string[];
786
791
  _patternError?: "NOTFOUND" | "CYCLIC";
787
792
  _overrides?: {
788
793
  [key: string]: /*elided*/ any;
@@ -822,6 +827,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
822
827
  hideLockedParameters?: boolean;
823
828
  };
824
829
  _locales?: string[];
830
+ _optedInQueryStrings?: string[];
825
831
  } | undefined>;
826
832
  isContextualEditing: vue.ComputedRef<boolean>;
827
833
  };
package/dist/index.d.ts CHANGED
@@ -250,6 +250,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
250
250
  name: string;
251
251
  value?: string;
252
252
  helpText?: string;
253
+ editorVisibility?: "opt-in";
253
254
  optionsSource?: {
254
255
  source: "static";
255
256
  options: {
@@ -342,6 +343,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
342
343
  };
343
344
  };
344
345
  };
346
+ _patternOptedInQueryStrings?: string[];
345
347
  _patternError?: "NOTFOUND" | "CYCLIC";
346
348
  _overrides?: {
347
349
  [key: string]: {
@@ -498,6 +500,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
498
500
  };
499
501
  };
500
502
  };
503
+ _patternOptedInQueryStrings?: string[];
501
504
  _dataResources?: {
502
505
  [key: string]: {
503
506
  type: string;
@@ -631,6 +634,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
631
634
  };
632
635
  };
633
636
  };
637
+ _patternOptedInQueryStrings?: string[];
634
638
  _patternError?: "NOTFOUND" | "CYCLIC";
635
639
  _overrides?: {
636
640
  [key: string]: /*elided*/ any;
@@ -783,6 +787,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
783
787
  };
784
788
  };
785
789
  };
790
+ _patternOptedInQueryStrings?: string[];
786
791
  _patternError?: "NOTFOUND" | "CYCLIC";
787
792
  _overrides?: {
788
793
  [key: string]: /*elided*/ any;
@@ -822,6 +827,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
822
827
  hideLockedParameters?: boolean;
823
828
  };
824
829
  _locales?: string[];
830
+ _optedInQueryStrings?: string[];
825
831
  } | undefined>;
826
832
  isContextualEditing: vue.ComputedRef<boolean>;
827
833
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-vue",
3
- "version": "20.77.2-alpha.3.sha-e9420d8e77",
3
+ "version": "20.79.0",
4
4
  "description": "Vue SDK for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -29,9 +29,9 @@
29
29
  "apidocs-extract": "api-extractor run --local"
30
30
  },
31
31
  "dependencies": {
32
- "@uniformdev/canvas": "20.77.2-alpha.3.sha-e9420d8e77",
33
- "@uniformdev/context-vue": "20.77.2-alpha.3.sha-e9420d8e77",
34
- "@uniformdev/richtext": "20.77.2-alpha.3.sha-e9420d8e77"
32
+ "@uniformdev/canvas": "20.79.0",
33
+ "@uniformdev/context-vue": "20.79.0",
34
+ "@uniformdev/richtext": "20.79.0"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "vue": ">=3.0.0"
@@ -58,5 +58,5 @@
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "gitHead": "e9420d8e77e7b9b0c5ea14bfe38f1f16a9a236ee"
61
+ "gitHead": "f419f94df6de01601261042943593cabfd739357"
62
62
  }