@ray-js/components 1.4.25 → 1.4.26

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.
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
- declare const Camera: () => React.JSX.Element;
2
+ import { CameraProps } from '@ray-js/adapter';
3
+ declare const Camera: React.FC<CameraProps>;
3
4
  export default Camera;
@@ -1,6 +1,4 @@
1
1
  import React from 'react';
2
-
3
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
4
2
  const Camera = () => {
5
3
  return /*#__PURE__*/React.createElement("div", null, "web\u7AEF\u6682\u672A\u5B9E\u73B0");
6
4
  };
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
- declare const IpcPlayer: () => React.JSX.Element;
2
+ import { IpcPlayerProps } from '@ray-js/adapter';
3
+ declare const IpcPlayer: React.FC<IpcPlayerProps>;
3
4
  export default IpcPlayer;
@@ -1,6 +1,4 @@
1
1
  import React from 'react';
2
-
3
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
4
2
  const IpcPlayer = () => {
5
3
  return /*#__PURE__*/React.createElement("div", null, "web\u7AEF\u6682\u672A\u5B9E\u73B0");
6
4
  };
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
- declare const NativeVideo: () => React.JSX.Element;
2
+ import { NativeVideoProps } from '@ray-js/adapter';
3
+ declare const NativeVideo: React.FC<NativeVideoProps>;
3
4
  export default NativeVideo;
@@ -1,6 +1,4 @@
1
1
  import React from 'react';
2
-
3
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
4
2
  const NativeVideo = () => {
5
3
  return /*#__PURE__*/React.createElement("div", null, "web\u7AEF\u6682\u672A\u5B9E\u73B0");
6
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/components",
3
- "version": "1.4.25",
3
+ "version": "1.4.26",
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.25",
33
- "@ray-js/framework-shared": "^1.4.25",
32
+ "@ray-js/adapter": "1.4.26",
33
+ "@ray-js/framework-shared": "1.4.26",
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.25"
43
+ "@ray-js/cli": "1.4.26"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public",
47
47
  "registry": "https://registry.npmjs.org"
48
48
  },
49
- "gitHead": "1f7733e15d0e83677ca7a14c60bb03b4b7ddb783"
49
+ "gitHead": "7981d6aea368513b5248cbc0691f817b7a5c225b"
50
50
  }