@plasmicapp/react-web 0.2.189 → 0.2.190

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.
Files changed (2) hide show
  1. package/dist/all.d.ts +4 -0
  2. package/package.json +4 -4
package/dist/all.d.ts CHANGED
@@ -11190,6 +11190,10 @@ declare type JSONLikeType<P> = "object" | ({
11190
11190
  */
11191
11191
  nameFunc?: (item: any, ...args: ControlContext<P>) => string | undefined;
11192
11192
  };
11193
+ /**
11194
+ * Optional function that determines whether the user can delete a given item.
11195
+ */
11196
+ unstable__canDelete?: (item: any, ...args: ControlContext<P>) => boolean;
11193
11197
  /**
11194
11198
  * Specify how to let Plasmic know how to update its own internal representation of the data when the value has
11195
11199
  * changed, or when issuing a minimalValue or shownValue that is different.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.189",
3
+ "version": "0.2.190",
4
4
  "description": "plasmic library for rendering in the presentational style",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -102,9 +102,9 @@
102
102
  },
103
103
  "prettier": {},
104
104
  "dependencies": {
105
- "@plasmicapp/data-sources": "0.1.59",
105
+ "@plasmicapp/data-sources": "0.1.60",
106
106
  "@plasmicapp/data-sources-context": "0.1.9",
107
- "@plasmicapp/host": "1.0.121",
107
+ "@plasmicapp/host": "1.0.122",
108
108
  "@plasmicapp/query": "0.1.61",
109
109
  "@react-aria/checkbox": "^3.5.0",
110
110
  "@react-aria/focus": "^3.7.0",
@@ -171,5 +171,5 @@
171
171
  "react": ">=16.8.0",
172
172
  "react-dom": ">=16.8.0"
173
173
  },
174
- "gitHead": "a9fb9ed8d9fb397f60a30f9078e0c05912130a7c"
174
+ "gitHead": "96b7db457fb8ad72167bc8a793d2718406d763a5"
175
175
  }