@uniformdev/canvas-vue 19.202.0 → 19.204.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 +22 -0
- package/dist/index.d.ts +22 -0
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -385,6 +385,17 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
385
385
|
[key: string]: any[];
|
|
386
386
|
};
|
|
387
387
|
variant?: string;
|
|
388
|
+
dataResources?: {
|
|
389
|
+
[key: string]: {
|
|
390
|
+
type: string;
|
|
391
|
+
isPatternParameter?: boolean;
|
|
392
|
+
ignorePatternParameterDefault?: boolean;
|
|
393
|
+
optionalPatternParameter?: boolean;
|
|
394
|
+
variables?: {
|
|
395
|
+
[key: string]: string;
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
};
|
|
388
399
|
};
|
|
389
400
|
};
|
|
390
401
|
_overridability?: {
|
|
@@ -478,6 +489,17 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
478
489
|
[key: string]: any[];
|
|
479
490
|
};
|
|
480
491
|
variant?: string;
|
|
492
|
+
dataResources?: {
|
|
493
|
+
[key: string]: {
|
|
494
|
+
type: string;
|
|
495
|
+
isPatternParameter?: boolean;
|
|
496
|
+
ignorePatternParameterDefault?: boolean;
|
|
497
|
+
optionalPatternParameter?: boolean;
|
|
498
|
+
variables?: {
|
|
499
|
+
[key: string]: string;
|
|
500
|
+
};
|
|
501
|
+
};
|
|
502
|
+
};
|
|
481
503
|
};
|
|
482
504
|
};
|
|
483
505
|
_overridability?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -385,6 +385,17 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
385
385
|
[key: string]: any[];
|
|
386
386
|
};
|
|
387
387
|
variant?: string;
|
|
388
|
+
dataResources?: {
|
|
389
|
+
[key: string]: {
|
|
390
|
+
type: string;
|
|
391
|
+
isPatternParameter?: boolean;
|
|
392
|
+
ignorePatternParameterDefault?: boolean;
|
|
393
|
+
optionalPatternParameter?: boolean;
|
|
394
|
+
variables?: {
|
|
395
|
+
[key: string]: string;
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
};
|
|
388
399
|
};
|
|
389
400
|
};
|
|
390
401
|
_overridability?: {
|
|
@@ -478,6 +489,17 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
478
489
|
[key: string]: any[];
|
|
479
490
|
};
|
|
480
491
|
variant?: string;
|
|
492
|
+
dataResources?: {
|
|
493
|
+
[key: string]: {
|
|
494
|
+
type: string;
|
|
495
|
+
isPatternParameter?: boolean;
|
|
496
|
+
ignorePatternParameterDefault?: boolean;
|
|
497
|
+
optionalPatternParameter?: boolean;
|
|
498
|
+
variables?: {
|
|
499
|
+
[key: string]: string;
|
|
500
|
+
};
|
|
501
|
+
};
|
|
502
|
+
};
|
|
481
503
|
};
|
|
482
504
|
};
|
|
483
505
|
_overridability?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-vue",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.204.0",
|
|
4
4
|
"description": "Vue SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"document": "api-extractor run --local"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@uniformdev/canvas": "19.
|
|
34
|
-
"@uniformdev/context-vue": "19.
|
|
35
|
-
"@uniformdev/richtext": "19.
|
|
33
|
+
"@uniformdev/canvas": "19.204.0",
|
|
34
|
+
"@uniformdev/context-vue": "19.204.0",
|
|
35
|
+
"@uniformdev/richtext": "19.204.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"vue": ">=3.0.0"
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "526d22d188132e5d47dc117808be6ead40532cb1"
|
|
68
68
|
}
|