@uniformdev/canvas-vue 20.75.1-alpha.16 → 20.76.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 +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -52,20 +52,20 @@ type ResolveRenderer = (componentInstance: ComponentInstance) => Component<any>;
|
|
|
52
52
|
type UniformTextProps = {
|
|
53
53
|
/**
|
|
54
54
|
* The name of the HTML tag to render.
|
|
55
|
-
* @
|
|
55
|
+
* @defaultValue "span"
|
|
56
56
|
*/
|
|
57
57
|
as?: string;
|
|
58
58
|
/** The ID of the parameter. */
|
|
59
59
|
parameterId: string;
|
|
60
60
|
/**
|
|
61
61
|
* When set to true, it adds `whiteSpace: 'pre-wrap'` to the styles of the root element to allow the rendering of line breaks.
|
|
62
|
-
* @
|
|
62
|
+
* @defaultValue false
|
|
63
63
|
*/
|
|
64
64
|
isMultiline?: boolean;
|
|
65
65
|
/**
|
|
66
66
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
67
67
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
68
|
-
* @
|
|
68
|
+
* @defaultValue undefined
|
|
69
69
|
*/
|
|
70
70
|
placeholder?: string | ((parameter: {
|
|
71
71
|
id: string;
|
|
@@ -938,7 +938,7 @@ type UniformRichTextProps = {
|
|
|
938
938
|
/**
|
|
939
939
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
940
940
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
941
|
-
* @
|
|
941
|
+
* @defaultValue undefined
|
|
942
942
|
*/
|
|
943
943
|
placeholder?: string | ((parameter: {
|
|
944
944
|
id: string;
|
|
@@ -1049,7 +1049,7 @@ type UseUniformContextualEditingStateProps = {
|
|
|
1049
1049
|
/**
|
|
1050
1050
|
* When set to true, the hook will return the global contextual state no matter where its used.
|
|
1051
1051
|
* When set to false, it will return only the state relevant to the current component (determined using `useUniformCurrentComponent`).
|
|
1052
|
-
* @
|
|
1052
|
+
* @defaultValue false
|
|
1053
1053
|
**/
|
|
1054
1054
|
global?: boolean;
|
|
1055
1055
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -52,20 +52,20 @@ type ResolveRenderer = (componentInstance: ComponentInstance) => Component<any>;
|
|
|
52
52
|
type UniformTextProps = {
|
|
53
53
|
/**
|
|
54
54
|
* The name of the HTML tag to render.
|
|
55
|
-
* @
|
|
55
|
+
* @defaultValue "span"
|
|
56
56
|
*/
|
|
57
57
|
as?: string;
|
|
58
58
|
/** The ID of the parameter. */
|
|
59
59
|
parameterId: string;
|
|
60
60
|
/**
|
|
61
61
|
* When set to true, it adds `whiteSpace: 'pre-wrap'` to the styles of the root element to allow the rendering of line breaks.
|
|
62
|
-
* @
|
|
62
|
+
* @defaultValue false
|
|
63
63
|
*/
|
|
64
64
|
isMultiline?: boolean;
|
|
65
65
|
/**
|
|
66
66
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
67
67
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
68
|
-
* @
|
|
68
|
+
* @defaultValue undefined
|
|
69
69
|
*/
|
|
70
70
|
placeholder?: string | ((parameter: {
|
|
71
71
|
id: string;
|
|
@@ -938,7 +938,7 @@ type UniformRichTextProps = {
|
|
|
938
938
|
/**
|
|
939
939
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
940
940
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
941
|
-
* @
|
|
941
|
+
* @defaultValue undefined
|
|
942
942
|
*/
|
|
943
943
|
placeholder?: string | ((parameter: {
|
|
944
944
|
id: string;
|
|
@@ -1049,7 +1049,7 @@ type UseUniformContextualEditingStateProps = {
|
|
|
1049
1049
|
/**
|
|
1050
1050
|
* When set to true, the hook will return the global contextual state no matter where its used.
|
|
1051
1051
|
* When set to false, it will return only the state relevant to the current component (determined using `useUniformCurrentComponent`).
|
|
1052
|
-
* @
|
|
1052
|
+
* @defaultValue false
|
|
1053
1053
|
**/
|
|
1054
1054
|
global?: boolean;
|
|
1055
1055
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-vue",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.76.1-alpha.3+61820b0b3e",
|
|
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.
|
|
33
|
-
"@uniformdev/context-vue": "20.
|
|
34
|
-
"@uniformdev/richtext": "20.
|
|
32
|
+
"@uniformdev/canvas": "20.76.1-alpha.3+61820b0b3e",
|
|
33
|
+
"@uniformdev/context-vue": "20.76.1-alpha.3+61820b0b3e",
|
|
34
|
+
"@uniformdev/richtext": "20.76.1-alpha.3+61820b0b3e"
|
|
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": "
|
|
61
|
+
"gitHead": "61820b0b3e1be2512bcfad6bd0a30092ffa7f9a3"
|
|
62
62
|
}
|