@viewfly/platform-browser 1.0.3 → 1.0.4

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.
@@ -337,6 +337,7 @@ interface AriaAttributes {
337
337
  }
338
338
  type StyleValue = string | CSSProperties | null;
339
339
  interface HTMLAttributes<T> extends AriaAttributes, EventHandlers<Events>, JSX.RefAttributes<T> {
340
+ children?: JSXNode;
340
341
  innerHTML?: string;
341
342
  class?: ClassNames;
342
343
  style?: StyleValue;
@@ -757,6 +758,7 @@ interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
757
758
  webpreferences?: string;
758
759
  }
759
760
  interface SVGAttributes<T> extends AriaAttributes, EventHandlers<Events>, JSX.RefAttributes<T> {
761
+ children?: JSXNode;
760
762
  innerHTML?: string;
761
763
  /**
762
764
  * SVG Styling Attributes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viewfly/platform-browser",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "This project is used to enable the Viewfly framework to run in a browser.",
5
5
  "main": "./bundles/index.js",
6
6
  "module": "./bundles/index.esm.js",
@@ -14,7 +14,7 @@
14
14
  "license": "MIT",
15
15
  "keywords": [],
16
16
  "dependencies": {
17
- "@viewfly/core": "^1.0.2",
17
+ "@viewfly/core": "^1.0.4",
18
18
  "csstype": "^3.1.2"
19
19
  },
20
20
  "devDependencies": {
@@ -36,5 +36,5 @@
36
36
  "bugs": {
37
37
  "url": "https://github.com/viewfly/viewfly.git/issues"
38
38
  },
39
- "gitHead": "b66ca589f7662cd518fc2e5955b3e3ff9de83f94"
39
+ "gitHead": "272ca07c3c97c4f468369380303c41133b345228"
40
40
  }