@ray-js/components 1.1.0 → 1.2.0-beta.0

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.
@@ -0,0 +1,2 @@
1
+ declare const Iframe: () => JSX.Element;
2
+ export default Iframe;
@@ -0,0 +1,7 @@
1
+ import React from 'react'; // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
2
+
3
+ var Iframe = function () {
4
+ return /*#__PURE__*/React.createElement("div", null, "web \u7AEF\u6682\u672A\u5B9E\u73B0");
5
+ };
6
+
7
+ export default Iframe;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { IframeProps } from '@ray-js/adapter';
3
+ declare const Iframe: React.FC<IframeProps>;
4
+ export default Iframe;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { Iframe as RemaxIframe } from '@ray-js/adapter';
3
+
4
+ var Iframe = function (props) {
5
+ return /*#__PURE__*/React.createElement(RemaxIframe, props);
6
+ };
7
+
8
+ export default Iframe;
@@ -0,0 +1,2 @@
1
+ declare const Iframe: () => JSX.Element;
2
+ export default Iframe;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { View as RemaxView } from '@ray-core/wechat'; // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
3
+
4
+ var Iframe = function () {
5
+ return /*#__PURE__*/React.createElement(RemaxView, null, "wechat \u7AEF\u4E0D\u652F\u6301");
6
+ };
7
+
8
+ export default Iframe;
@@ -0,0 +1,3 @@
1
+ import Iframe from './Iframe';
2
+ export type { IframeProps } from '@ray-js/adapter';
3
+ export default Iframe;
@@ -0,0 +1,2 @@
1
+ import Iframe from './Iframe';
2
+ export default Iframe;
package/lib/index.d.ts CHANGED
@@ -30,3 +30,4 @@ export { default as WebView } from './WebView';
30
30
  export { default as Map } from './Map';
31
31
  export { default as Camera } from './Camera';
32
32
  export { default as Progress } from './Progress';
33
+ export { default as Iframe } from './Iframe';
package/lib/index.js CHANGED
@@ -29,4 +29,5 @@ export { default as NativeVideo } from './NativeVideo';
29
29
  export { default as WebView } from './WebView';
30
30
  export { default as Map } from './Map';
31
31
  export { default as Camera } from './Camera';
32
- export { default as Progress } from './Progress';
32
+ export { default as Progress } from './Progress';
33
+ export { default as Iframe } from './Iframe';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/components",
3
- "version": "1.1.0",
3
+ "version": "1.2.0-beta.0",
4
4
  "description": "Ray basic components",
5
5
  "keywords": [
6
6
  "ray"
@@ -24,10 +24,10 @@
24
24
  "watch": "ray start --type=component"
25
25
  },
26
26
  "dependencies": {
27
- "@ray-core/macro": "^0.2.1",
28
- "@ray-core/wechat": "^0.2.1",
29
- "@ray-js/adapter": "^1.1.0",
30
- "@ray-js/framework-shared": "^1.1.0",
27
+ "@ray-core/macro": "^0.3.0-beta.1",
28
+ "@ray-core/wechat": "^0.3.0-beta.1",
29
+ "@ray-js/adapter": "^1.2.0-beta.0",
30
+ "@ray-js/framework-shared": "^1.2.0-beta.0",
31
31
  "ahooks": "^3.7.1",
32
32
  "clsx": "^1.1.1",
33
33
  "core-js": "^3.19.1",
@@ -37,7 +37,7 @@
37
37
  "style-to-object": "^0.3.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@ray-js/cli": "^1.1.0"
40
+ "@ray-js/cli": "^1.2.0-beta.0"
41
41
  },
42
42
  "maintainers": [
43
43
  {
@@ -45,6 +45,6 @@
45
45
  "email": "tuyafe@tuya.com"
46
46
  }
47
47
  ],
48
- "gitHead": "83c5c44c333e21ebc00fe395d03f2d4eed1e84ba",
48
+ "gitHead": "7e74c61f91edf7d331396664808b5223f8a73950",
49
49
  "repository": {}
50
50
  }