@plasmicapp/react-web 0.2.210 → 0.2.212

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 +2 -0
  2. package/package.json +4 -4
package/dist/all.d.ts CHANGED
@@ -11387,9 +11387,11 @@ type Action<P> = {
11387
11387
  type: "button-action";
11388
11388
  label: string;
11389
11389
  onClick: (props: ActionProps<P>) => void;
11390
+ hidden?: ContextDependentConfig<P, boolean>;
11390
11391
  } | {
11391
11392
  type: "custom-action";
11392
11393
  control: React.ComponentType<ActionProps<P>>;
11394
+ hidden?: ContextDependentConfig<P, boolean>;
11393
11395
  };
11394
11396
  type DistributedKeyOf$1<T> = T extends any ? keyof T : never;
11395
11397
  interface ComponentTemplate<P> extends Omit<CodeComponentElement<P>, "type" | "name"> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.210",
3
+ "version": "0.2.212",
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",
@@ -75,9 +75,9 @@
75
75
  },
76
76
  "prettier": {},
77
77
  "dependencies": {
78
- "@plasmicapp/data-sources": "0.1.76",
78
+ "@plasmicapp/data-sources": "0.1.78",
79
79
  "@plasmicapp/data-sources-context": "0.1.11",
80
- "@plasmicapp/host": "1.0.134",
80
+ "@plasmicapp/host": "1.0.136",
81
81
  "@plasmicapp/query": "0.1.64",
82
82
  "@react-aria/checkbox": "^3.5.0",
83
83
  "@react-aria/focus": "^3.7.0",
@@ -143,5 +143,5 @@
143
143
  "react": ">=16.8.0",
144
144
  "react-dom": ">=16.8.0"
145
145
  },
146
- "gitHead": "411497d52815f71297b6268e358218711ddbb967"
146
+ "gitHead": "9f7e1bff70ae5f945027b4718d85d2a17f89501e"
147
147
  }