@plasmicapp/react-web 1.0.0 → 1.0.2
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/all.d.ts +6 -1
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -12383,9 +12383,14 @@ interface CustomFunctionMeta<F extends (...args: any[]) => any> {
|
|
|
12383
12383
|
*/
|
|
12384
12384
|
typescriptDeclaration?: string;
|
|
12385
12385
|
/**
|
|
12386
|
-
* Whether this function can be used as a query in the editor.
|
|
12386
|
+
* Whether this function can be used as a data query in the editor.
|
|
12387
12387
|
*/
|
|
12388
12388
|
isQuery?: boolean;
|
|
12389
|
+
/**
|
|
12390
|
+
* Whether this function can be used as a mutation in element interactions
|
|
12391
|
+
* (e.g. onClick handlers).
|
|
12392
|
+
*/
|
|
12393
|
+
isMutation?: boolean;
|
|
12389
12394
|
/**
|
|
12390
12395
|
* The path to be used when importing the function in the generated code.
|
|
12391
12396
|
* It can be the name of the package that contains the function, or the path
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "plasmic library for rendering in the presentational style",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"@plasmicapp/auth-react": "0.0.27",
|
|
89
|
-
"@plasmicapp/data-sources": "1.0.
|
|
89
|
+
"@plasmicapp/data-sources": "1.0.2",
|
|
90
90
|
"@plasmicapp/data-sources-context": "0.1.23",
|
|
91
|
-
"@plasmicapp/host": "2.0.
|
|
91
|
+
"@plasmicapp/host": "2.0.1",
|
|
92
92
|
"@plasmicapp/loader-splits": "1.0.70",
|
|
93
93
|
"@plasmicapp/nextjs-app-router": "1.0.22",
|
|
94
94
|
"@plasmicapp/prepass": "1.0.24",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"react": ">=18.0.0",
|
|
143
143
|
"react-dom": ">=18.0.0"
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "dce377f1a8e9fafd7776e49acc077d4a218265e3"
|
|
146
146
|
}
|