@viewfly/platform-browser 1.0.3 → 1.0.5
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/bundles/index.d.ts +2 -0
- package/package.json +2 -2
package/bundles/index.d.ts
CHANGED
|
@@ -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
|
+
"version": "1.0.5",
|
|
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.
|
|
17
|
+
"@viewfly/core": "^1.0.5",
|
|
18
18
|
"csstype": "^3.1.2"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|