@plasmicapp/react-web 0.2.361 → 0.2.363

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
@@ -12258,6 +12258,10 @@ interface CustomFunctionMeta<F extends (...args: any[]) => any> {
12258
12258
  * provided by `params` and `returnValue`.
12259
12259
  */
12260
12260
  typescriptDeclaration?: string;
12261
+ /**
12262
+ * Whether this function can be used as a query in the editor.
12263
+ */
12264
+ isQuery?: boolean;
12261
12265
  /**
12262
12266
  * The path to be used when importing the function in the generated code.
12263
12267
  * It can be the name of the package that contains the function, or the path
@@ -13223,7 +13227,7 @@ type PlasmicClass<V extends Record<string, any>, A extends Record<string, any>,
13223
13227
  variants?: V;
13224
13228
  args?: A;
13225
13229
  overrides?: O;
13226
- }): React$1.ReactElement | null;
13230
+ }): React$1.ReactNode;
13227
13231
  internalVariantProps: (keyof V)[];
13228
13232
  internalArgProps: (keyof A)[];
13229
13233
  };