@viewfly/core 1.0.2 → 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.
- package/bundles/index.d.ts +4 -0
- package/jsx-runtime/index.d.ts +2 -0
- package/package.json +2 -2
package/bundles/index.d.ts
CHANGED
|
@@ -246,7 +246,11 @@ declare namespace JSX {
|
|
|
246
246
|
}
|
|
247
247
|
interface ElementClass<P = any> extends ComponentInstance<P> {
|
|
248
248
|
}
|
|
249
|
+
interface ElementAttributesProperty {
|
|
250
|
+
props: {};
|
|
251
|
+
}
|
|
249
252
|
interface ElementChildrenAttribute {
|
|
253
|
+
children: {};
|
|
250
254
|
}
|
|
251
255
|
interface IntrinsicElements {
|
|
252
256
|
[name: string]: any;
|
package/jsx-runtime/index.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ export declare namespace JSX {
|
|
|
18
18
|
}
|
|
19
19
|
interface ElementChildrenAttribute extends ViewflyJSX.ElementChildrenAttribute {
|
|
20
20
|
}
|
|
21
|
+
interface ElementAttributesProperty extends ViewflyJSX.ElementAttributesProperty {
|
|
22
|
+
}
|
|
21
23
|
interface IntrinsicClassAttributes<T> extends ViewflyJSX.IntrinsicClassAttributes<T> {
|
|
22
24
|
}
|
|
23
25
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viewfly/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"bugs": {
|
|
51
51
|
"url": "https://github.com/viewfly/viewfly.git/issues"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "272ca07c3c97c4f468369380303c41133b345228",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"reflect-metadata": "^0.2.2"
|
|
56
56
|
}
|