@viewfly/platform-browser 0.0.2 → 0.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.
Files changed (2) hide show
  1. package/bundles/jsx.d.ts +2 -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?: any;
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?: any;
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.2",
3
+ "version": "0.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",
@@ -13,7 +13,7 @@
13
13
  "keywords": [],
14
14
  "dependencies": {
15
15
  "@tanbo/di": "^1.1.5",
16
- "@viewfly/core": "^0.0.2",
16
+ "@viewfly/core": "^0.0.4",
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": "65bcb20399ed7e6e14102b649588135a7ebf4a72"
38
+ "gitHead": "fed5b3e328a9f70873bb1c33ea3789c099ad3ebe"
39
39
  }