@ray-js/components 1.4.22 → 1.4.24

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,3 @@
1
+ import React from 'react';
2
+ declare const Video: () => React.JSX.Element;
3
+ export default Video;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
4
+ const Video = () => {
5
+ return /*#__PURE__*/React.createElement("div", null, "Web\u7AEF\u6682\u672A\u5B9E\u73B0");
6
+ };
7
+ export default Video;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { VideoProps } from '@ray-js/adapter';
3
+ declare const Video: React.FC<VideoProps>;
4
+ export default Video;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { Video as RemaxVideo } from '@ray-js/adapter';
3
+ const Video = props => {
4
+ return /*#__PURE__*/React.createElement(RemaxVideo, props);
5
+ };
6
+ export default Video;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare function Video(): React.JSX.Element;
3
+ export default Video;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { View } from '@ray-js/components';
3
+
4
+ // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
5
+ function Video() {
6
+ return /*#__PURE__*/React.createElement(View, null, "\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u7AEF\u6682\u672A\u5B9E\u73B0");
7
+ }
8
+ export default Video;
@@ -0,0 +1,3 @@
1
+ import Video from './Video';
2
+ export type { VideoProps } from '@ray-js/adapter';
3
+ export default Video;
@@ -0,0 +1,2 @@
1
+ import Video from './Video';
2
+ export default Video;
package/lib/index.d.ts CHANGED
@@ -32,3 +32,4 @@ export { default as Camera } from './Camera';
32
32
  export { default as Progress } from './Progress';
33
33
  export { default as Iframe } from './Iframe';
34
34
  export { default as Modal } from './Modal';
35
+ export { default as Video } from './Video';
package/lib/index.js CHANGED
@@ -31,4 +31,5 @@ export { default as Map } from './Map';
31
31
  export { default as Camera } from './Camera';
32
32
  export { default as Progress } from './Progress';
33
33
  export { default as Iframe } from './Iframe';
34
- export { default as Modal } from './Modal';
34
+ export { default as Modal } from './Modal';
35
+ export { default as Video } from './Video';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/components",
3
- "version": "1.4.22",
3
+ "version": "1.4.24",
4
4
  "description": "Ray basic components",
5
5
  "keywords": [
6
6
  "ray"
@@ -29,8 +29,8 @@
29
29
  "dependencies": {
30
30
  "@ray-core/macro": "^0.3.6",
31
31
  "@ray-core/wechat": "^0.3.6",
32
- "@ray-js/adapter": "1.4.22",
33
- "@ray-js/framework-shared": "1.4.22",
32
+ "@ray-js/adapter": "^1.4.24",
33
+ "@ray-js/framework-shared": "^1.4.24",
34
34
  "ahooks": "^3.7.8",
35
35
  "clsx": "^1.2.1",
36
36
  "core-js": "^3.32.1",
@@ -40,11 +40,11 @@
40
40
  "style-to-object": "^0.3.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@ray-js/cli": "1.4.22"
43
+ "@ray-js/cli": "^1.4.24"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public",
47
47
  "registry": "https://registry.npmjs.org"
48
48
  },
49
- "gitHead": "2f2f4f4d1aeb121755ccc82f5c1145e24eefa60f"
49
+ "gitHead": "5f3689fa6a6843dbc27b9266777873ef876b5e11"
50
50
  }