@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.
- package/lib/Video/Video.d.ts +3 -0
- package/lib/Video/Video.js +7 -0
- package/lib/Video/Video.thing.d.ts +4 -0
- package/lib/Video/Video.thing.js +6 -0
- package/lib/Video/Video.wechat.d.ts +3 -0
- package/lib/Video/Video.wechat.js +8 -0
- package/lib/Video/index.d.ts +3 -0
- package/lib/Video/index.js +2 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/package.json +5 -5
@@ -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;
|
package/lib/index.d.ts
CHANGED
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.
|
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.
|
33
|
-
"@ray-js/framework-shared": "1.4.
|
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.
|
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": "
|
49
|
+
"gitHead": "5f3689fa6a6843dbc27b9266777873ef876b5e11"
|
50
50
|
}
|