@plasmicapp/react-web 0.2.193 → 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.
- package/dist/all.d.ts +4 -2
- package/package.json +4 -4
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.
|
|
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",
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
},
|
|
102
102
|
"prettier": {},
|
|
103
103
|
"dependencies": {
|
|
104
|
-
"@plasmicapp/data-sources": "0.1.
|
|
104
|
+
"@plasmicapp/data-sources": "0.1.64",
|
|
105
105
|
"@plasmicapp/data-sources-context": "0.1.9",
|
|
106
|
-
"@plasmicapp/host": "1.0.
|
|
106
|
+
"@plasmicapp/host": "1.0.126",
|
|
107
107
|
"@plasmicapp/query": "0.1.61",
|
|
108
108
|
"@react-aria/checkbox": "^3.5.0",
|
|
109
109
|
"@react-aria/focus": "^3.7.0",
|
|
@@ -170,5 +170,5 @@
|
|
|
170
170
|
"react": ">=16.8.0",
|
|
171
171
|
"react-dom": ">=16.8.0"
|
|
172
172
|
},
|
|
173
|
-
"gitHead": "
|
|
173
|
+
"gitHead": "fdb37e4fae6510d955efef6034d992bab1a189e3"
|
|
174
174
|
}
|