@plasmicapp/react-web 0.2.192 → 0.2.194

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 -2
  2. package/package.json +6 -7
package/dist/all.d.ts CHANGED
@@ -10878,7 +10878,9 @@ declare namespace DataType {
10878
10878
  type VisualBox = "border-box" | "content-box" | "padding-box";
10879
10879
  }
10880
10880
 
10881
- declare type CSSProperties = Properties<string | number>;
10881
+ declare type CSSProperties = Properties<string | number> & {
10882
+ layout?: "vbox" | "hbox" | "box" | "page-section";
10883
+ };
10882
10884
  declare type ContainerTags = "a" | "address" | "article" | "aside" | "blockquote" | "button" | "code" | "dd" | "div" | "dl" | "dt" | "form" | "footer" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "header" | "hgroup" | "label" | "li" | "main" | "nav" | "ol" | "p" | "pre" | "section" | "span" | "ul";
10883
10885
  declare type CommonAttrKeys = "title" | "tabIndex" | "className" | "id" | "aria-label" | "aria-hidden" | "aria-labelledby" | "aria-describedby" | "role";
10884
10886
  declare type PictureAttrKeys = "alt" | "loading" | CommonAttrKeys;
@@ -10934,7 +10936,7 @@ interface ButtonContainerElement {
10934
10936
  attrs?: Attrs<ButtonAttrKeys>;
10935
10937
  }
10936
10938
  interface GenericContainerElement {
10937
- type: "box" | "vbox" | "hbox";
10939
+ type: "box" | "vbox" | "hbox" | "page-section";
10938
10940
  /**
10939
10941
  * Default: "div"
10940
10942
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.192",
3
+ "version": "0.2.194",
4
4
  "description": "plasmic library for rendering in the presentational style",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,9 +14,8 @@
14
14
  "!{projectRoot}/lib/**/*"
15
15
  ],
16
16
  "outputs": [
17
- "{projectRoot}/dist",
18
- "{projectRoot}/**/dist",
19
- "{projectRoot}/lib"
17
+ "{projectRoot}/**/dist/**/*",
18
+ "{projectRoot}/lib/**/*"
20
19
  ]
21
20
  }
22
21
  }
@@ -102,9 +101,9 @@
102
101
  },
103
102
  "prettier": {},
104
103
  "dependencies": {
105
- "@plasmicapp/data-sources": "0.1.62",
104
+ "@plasmicapp/data-sources": "0.1.64",
106
105
  "@plasmicapp/data-sources-context": "0.1.9",
107
- "@plasmicapp/host": "1.0.124",
106
+ "@plasmicapp/host": "1.0.126",
108
107
  "@plasmicapp/query": "0.1.61",
109
108
  "@react-aria/checkbox": "^3.5.0",
110
109
  "@react-aria/focus": "^3.7.0",
@@ -171,5 +170,5 @@
171
170
  "react": ">=16.8.0",
172
171
  "react-dom": ">=16.8.0"
173
172
  },
174
- "gitHead": "36fcd311054efa3557a2c78a63cec7c05e006979"
173
+ "gitHead": "fdb37e4fae6510d955efef6034d992bab1a189e3"
175
174
  }