@ray-js/adapter 1.7.5 → 1.7.6

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,5 +1,5 @@
1
- import * as React from 'react';
2
- import { BaseProps, DiffLayer } from '../../types/component';
1
+ import type * as React from 'react';
2
+ import type { BaseProps, DiffLayer } from '../../types/component';
3
3
  export interface IpcPlayerProps extends BaseProps, DiffLayer {
4
4
  type?: number;
5
5
  deviceId: string;
@@ -30,6 +30,7 @@ export interface IpcPlayerProps extends BaseProps, DiffLayer {
30
30
  borderColor?: string;
31
31
  borderRadius?: number | string;
32
32
  backgroundColor?: string;
33
+ config?: string;
33
34
  /**
34
35
  * 当连接状态发生变化时触发,detail = { state }, state: 0 表示连接成功
35
36
  * @param event
@@ -1,5 +1,5 @@
1
- import * as React from 'react';
2
- import { BaseProps, DiffLayer } from '../../types/component';
1
+ import type * as React from 'react';
2
+ import type { BaseProps, DiffLayer } from '../../types/component';
3
3
  export interface IpcPlayerProps extends BaseProps, DiffLayer {
4
4
  type?: number;
5
5
  deviceId: string;
@@ -30,6 +30,7 @@ export interface IpcPlayerProps extends BaseProps, DiffLayer {
30
30
  borderColor?: string;
31
31
  borderRadius?: number | string;
32
32
  backgroundColor?: string;
33
+ config?: string;
33
34
  /**
34
35
  * 当连接状态发生变化时触发,detail = { state }, state: 0 表示连接成功
35
36
  * @param event
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/adapter",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "description": "Ray adapter for tuya",
5
5
  "keywords": [
6
6
  "ray"
@@ -36,7 +36,7 @@
36
36
  "@ray-core/types": "^0.4.9"
37
37
  },
38
38
  "devDependencies": {
39
- "@ray-js/types": "1.7.5",
39
+ "@ray-js/types": "1.7.6",
40
40
  "concurrently": "^6.5.1"
41
41
  },
42
42
  "publishConfig": {
@@ -44,5 +44,5 @@
44
44
  "registry": "https://registry.npmjs.com"
45
45
  },
46
46
  "esnext": "./esm/index.js",
47
- "gitHead": "2e2f09127313b1b49ad905555e83d805a43f52e1"
47
+ "gitHead": "f288bc436e94913b37d851dad06113e02046ac15"
48
48
  }