@viewfly/platform-browser 0.0.2 → 0.0.3
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/jsx.d.ts +2 -2
- package/package.json +3 -3
package/bundles/jsx.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ interface AriaAttributes {
|
|
|
202
202
|
export type StyleValue = string | CSSProperties;
|
|
203
203
|
export interface HTMLAttributes<T extends object> extends AriaAttributes, EventHandlers<Events>, JSX.Attributes<T> {
|
|
204
204
|
innerHTML?: string;
|
|
205
|
-
class?:
|
|
205
|
+
class?: JSX.ClassNames;
|
|
206
206
|
style?: StyleValue;
|
|
207
207
|
accesskey?: string;
|
|
208
208
|
contenteditable?: Booleanish | 'inherit';
|
|
@@ -626,7 +626,7 @@ export interface SVGAttributes<T extends object> extends AriaAttributes, EventHa
|
|
|
626
626
|
* SVG Styling Attributes
|
|
627
627
|
* @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
|
|
628
628
|
*/
|
|
629
|
-
class?:
|
|
629
|
+
class?: JSX.ClassNames;
|
|
630
630
|
style?: string | CSSProperties;
|
|
631
631
|
color?: string;
|
|
632
632
|
height?: Numberish;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viewfly/platform-browser",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
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",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@tanbo/di": "^1.1.5",
|
|
16
|
-
"@viewfly/core": "^0.0.
|
|
16
|
+
"@viewfly/core": "^0.0.3",
|
|
17
17
|
"csstype": "^3.1.2",
|
|
18
18
|
"reflect-metadata": "^0.1.13"
|
|
19
19
|
},
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/viewfly/viewfly.git/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "55152a4c7db778d22e4ed1d8cd648f9800a01992"
|
|
39
39
|
}
|