@plasmicapp/react-web 0.2.230 → 0.2.231

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.
@@ -0,0 +1 @@
1
+ export * from "@plasmicapp/prepass";
@@ -0,0 +1,17 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var prepass = require('@plasmicapp/prepass');
6
+
7
+
8
+
9
+ Object.keys(prepass).forEach(function (k) {
10
+ if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return prepass[k];
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=index.cjs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -0,0 +1 @@
1
+ export * from "@plasmicapp/prepass";
@@ -0,0 +1,2 @@
1
+ export * from '@plasmicapp/prepass';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.230",
3
+ "version": "0.2.231",
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",
@@ -41,6 +41,11 @@
41
41
  "import": "./lib/query/index.js",
42
42
  "require": "./lib/query/index.cjs.js"
43
43
  },
44
+ "./lib/prepass": {
45
+ "types": "./lib/prepass/index.d.ts",
46
+ "import": "./lib/prepass/index.js",
47
+ "require": "./lib/prepass/index.cjs.js"
48
+ },
44
49
  "./lib/plasmic.css": "./lib/plasmic.css",
45
50
  "./skinny": {
46
51
  "import": "./skinny/dist/index.js"
@@ -75,9 +80,10 @@
75
80
  },
76
81
  "prettier": {},
77
82
  "dependencies": {
78
- "@plasmicapp/data-sources": "0.1.93",
83
+ "@plasmicapp/data-sources": "0.1.94",
79
84
  "@plasmicapp/data-sources-context": "0.1.11",
80
85
  "@plasmicapp/host": "1.0.149",
86
+ "@plasmicapp/prepass": "1.0.1",
81
87
  "@plasmicapp/query": "0.1.67",
82
88
  "@react-aria/checkbox": "^3.5.0",
83
89
  "@react-aria/focus": "^3.7.0",
@@ -143,5 +149,5 @@
143
149
  "react": ">=16.8.0",
144
150
  "react-dom": ">=16.8.0"
145
151
  },
146
- "gitHead": "24de988d93365a42f5521bc12b7b72a53f76f9b2"
152
+ "gitHead": "dc2ad8008e43ddf96d46c346afd43dc36c34e8d5"
147
153
  }
@@ -0,0 +1 @@
1
+ export * from "@plasmicapp/prepass";