@plasmicapp/react-web 0.2.218 → 0.2.219

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 +5 -2
  2. package/package.json +4 -4
package/dist/all.d.ts CHANGED
@@ -11327,6 +11327,9 @@ interface CodeStringType<P> extends PropTypeBaseDefault<P, string> {
11327
11327
  interface RichTextType<P> extends PropTypeBaseDefault<P, string> {
11328
11328
  type: "richText";
11329
11329
  }
11330
+ interface HrefType<P> extends PropTypeBaseDefault<P, string> {
11331
+ type: "href";
11332
+ }
11330
11333
  interface ColorType<P> extends PropTypeBaseDefault<P, string> {
11331
11334
  type: "color";
11332
11335
  /**
@@ -11398,8 +11401,8 @@ interface CardPickerType<P> extends PropTypeBaseDefault<P, string> {
11398
11401
  showInput?: boolean | ContextDependentConfig<P, boolean>;
11399
11402
  onSearch?: ContextDependentConfig<P, ((value: string) => void) | undefined>;
11400
11403
  }
11401
- type RichStringType<P> = PlainStringType<P> | CodeStringType<P> | RichTextType<P> | ColorType<P> | ClassType<P> | ThemeResetClassType<P> | CardPickerType<P>;
11402
- type StringType<P> = "string" | RichStringType<P>;
11404
+ type RichStringType<P> = PlainStringType<P> | CodeStringType<P> | RichTextType<P> | ColorType<P> | ClassType<P> | ThemeResetClassType<P> | CardPickerType<P> | HrefType<P>;
11405
+ type StringType<P> = "string" | "href" | RichStringType<P>;
11403
11406
  interface RichBooleanType<P> extends PropTypeBaseDefault<P, boolean> {
11404
11407
  type: "boolean";
11405
11408
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.218",
3
+ "version": "0.2.219",
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.84",
78
+ "@plasmicapp/data-sources": "0.1.85",
79
79
  "@plasmicapp/data-sources-context": "0.1.11",
80
- "@plasmicapp/host": "1.0.142",
80
+ "@plasmicapp/host": "1.0.143",
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": "5cea285d1ce34993d5d48e92cebc9e76ec906371"
146
+ "gitHead": "14ac7da363bb5d22b83752f6c4e67cd83797b7c3"
147
147
  }