@plasmicapp/react-web 0.2.207 → 0.2.209
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 +2 -2
- package/lib/data-sources/package.json +0 -1
- package/lib/host/package.json +0 -1
- package/lib/query/package.json +0 -1
- package/package.json +13 -12
package/dist/all.d.ts
CHANGED
|
@@ -11553,7 +11553,7 @@ interface CodeComponentMeta<P> {
|
|
|
11553
11553
|
* will always be named by the name of this component.
|
|
11554
11554
|
*/
|
|
11555
11555
|
alwaysAutoName?: boolean;
|
|
11556
|
-
|
|
11556
|
+
refActions?: Record<string, RefActionRegistration<P>>;
|
|
11557
11557
|
}
|
|
11558
11558
|
interface FunctionParam<P> {
|
|
11559
11559
|
name: string;
|
|
@@ -11563,7 +11563,7 @@ interface FunctionParam<P> {
|
|
|
11563
11563
|
interface RefActionRegistration<P> {
|
|
11564
11564
|
displayName?: string;
|
|
11565
11565
|
description?: string;
|
|
11566
|
-
|
|
11566
|
+
argTypes: FunctionParam<P>[];
|
|
11567
11567
|
}
|
|
11568
11568
|
interface ComponentRegistration {
|
|
11569
11569
|
component: React.ComponentType<any>;
|
package/lib/host/package.json
CHANGED
package/lib/query/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.209",
|
|
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",
|
|
@@ -22,24 +22,24 @@
|
|
|
22
22
|
},
|
|
23
23
|
"exports": {
|
|
24
24
|
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
25
26
|
"import": "./dist/react-web.esm.js",
|
|
26
|
-
"require": "./dist/index.cjs.js"
|
|
27
|
-
"types": "./dist/index.d.ts"
|
|
27
|
+
"require": "./dist/index.cjs.js"
|
|
28
28
|
},
|
|
29
29
|
"./lib/host": {
|
|
30
|
+
"types": "./lib/host/index.d.ts",
|
|
30
31
|
"import": "./lib/host/index.js",
|
|
31
|
-
"require": "./lib/host/index.cjs.js"
|
|
32
|
-
"types": "./lib/host/index.d.ts"
|
|
32
|
+
"require": "./lib/host/index.cjs.js"
|
|
33
33
|
},
|
|
34
34
|
"./lib/data-sources": {
|
|
35
|
+
"types": "./lib/data-sources/index.d.ts",
|
|
35
36
|
"import": "./lib/data-sources/index.js",
|
|
36
|
-
"require": "./lib/data-sources/index.cjs.js"
|
|
37
|
-
"types": "./lib/data-sources/index.d.ts"
|
|
37
|
+
"require": "./lib/data-sources/index.cjs.js"
|
|
38
38
|
},
|
|
39
39
|
"./lib/query": {
|
|
40
|
+
"types": "./lib/query/index.d.ts",
|
|
40
41
|
"import": "./lib/query/index.js",
|
|
41
|
-
"require": "./lib/query/index.cjs.js"
|
|
42
|
-
"types": "./lib/query/index.d.ts"
|
|
42
|
+
"require": "./lib/query/index.cjs.js"
|
|
43
43
|
},
|
|
44
44
|
"./lib/plasmic.css": "./lib/plasmic.css",
|
|
45
45
|
"./skinny": {
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
],
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "rollup -c && mkdir -p lib && cp src/styles/plasmic.css lib/",
|
|
59
|
+
"clean": "rm -rf dist/ skinny/dist/ lib/host/*js lib/host/*.ts lib/host/*.map lib/data-sources/*js lib/data-sources/*.ts lib/data-sources/*.map lib/query/*js lib/query/*.ts lib/query/*.map",
|
|
59
60
|
"start": "tsdx watch",
|
|
60
61
|
"test": "yarn --cwd=../.. test",
|
|
61
62
|
"lint": "tsdx lint",
|
|
@@ -74,9 +75,9 @@
|
|
|
74
75
|
},
|
|
75
76
|
"prettier": {},
|
|
76
77
|
"dependencies": {
|
|
77
|
-
"@plasmicapp/data-sources": "0.1.
|
|
78
|
+
"@plasmicapp/data-sources": "0.1.75",
|
|
78
79
|
"@plasmicapp/data-sources-context": "0.1.11",
|
|
79
|
-
"@plasmicapp/host": "1.0.
|
|
80
|
+
"@plasmicapp/host": "1.0.133",
|
|
80
81
|
"@plasmicapp/query": "0.1.63",
|
|
81
82
|
"@react-aria/checkbox": "^3.5.0",
|
|
82
83
|
"@react-aria/focus": "^3.7.0",
|
|
@@ -142,5 +143,5 @@
|
|
|
142
143
|
"react": ">=16.8.0",
|
|
143
144
|
"react-dom": ">=16.8.0"
|
|
144
145
|
},
|
|
145
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "807918caa253def6a79afdc3439b6d0a924c119e"
|
|
146
147
|
}
|