@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 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
- unstable__refActions?: Record<string, RefActionRegistration<P>>;
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
- parameters: FunctionParam<P>[];
11566
+ argTypes: FunctionParam<P>[];
11567
11567
  }
11568
11568
  interface ComponentRegistration {
11569
11569
  component: React.ComponentType<any>;
@@ -1,5 +1,4 @@
1
1
  {
2
- "type": "module",
3
2
  "exports": {
4
3
  "import": "./index.js",
5
4
  "require": "./index.cjs.js"
@@ -1,5 +1,4 @@
1
1
  {
2
- "type": "module",
3
2
  "exports": {
4
3
  "import": "./index.js",
5
4
  "require": "./index.cjs.js"
@@ -1,5 +1,4 @@
1
1
  {
2
- "type": "module",
3
2
  "exports": {
4
3
  "import": "./index.js",
5
4
  "require": "./index.cjs.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.207",
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.74",
78
+ "@plasmicapp/data-sources": "0.1.75",
78
79
  "@plasmicapp/data-sources-context": "0.1.11",
79
- "@plasmicapp/host": "1.0.132",
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": "30e8db6a6a212aba7bb77c6ec124685a81bc6004"
146
+ "gitHead": "807918caa253def6a79afdc3439b6d0a924c119e"
146
147
  }