@viewfly/core 0.0.1-alpha.17 → 0.0.1-alpha.19
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 +13 -0
- package/bundles/public-api.d.ts +1 -0
- package/package.json +2 -2
package/bundles/jsx.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Key, Ref } from '@viewfly/core';
|
|
2
|
+
export declare namespace JSX {
|
|
3
|
+
interface Attributes<T extends object> {
|
|
4
|
+
ref?: Ref<T>;
|
|
5
|
+
key?: Key;
|
|
6
|
+
}
|
|
7
|
+
interface ElementClass {
|
|
8
|
+
}
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
}
|
|
11
|
+
interface IntrinsicAttributes {
|
|
12
|
+
}
|
|
13
|
+
}
|
package/bundles/public-api.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viewfly/core",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.19",
|
|
4
4
|
"description": "Viewfly is a simple and easy-to-use JavaScript framework with an intuitive development experience.",
|
|
5
5
|
"main": "./bundles/index.js",
|
|
6
6
|
"module": "./bundles/index.esm.js",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"bugs": {
|
|
35
35
|
"url": "https://github.com/viewfly/viewfly.git/issues"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "2a04301d7221329f49e8ed7b6f923ddc6ceca300"
|
|
38
38
|
}
|