@ray-js/adapter 1.7.46 → 1.7.47

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,6 @@
1
+ import * as React from 'react';
2
+ import { BaseProps } from '../../types/component';
3
+ export interface SvgRenderProps extends BaseProps {
4
+ source: string;
5
+ }
6
+ export declare const SvgRender: React.ComponentType<SvgRenderProps>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SvgRender = void 0;
7
+ const createHostComponent_1 = __importDefault(require("../createHostComponent"));
8
+ exports.SvgRender = (0, createHostComponent_1.default)('svg-render');
@@ -0,0 +1,28 @@
1
+ export declare const alias: {
2
+ source: string;
3
+ id: string;
4
+ disableScroll: string;
5
+ hoverClass: string;
6
+ hoverClassName: string;
7
+ hoverStartTime: string;
8
+ hoverStayTime: string;
9
+ hidden: string;
10
+ className: string;
11
+ animation: string;
12
+ style: string;
13
+ hoverStopPropagation: string;
14
+ onTap: string;
15
+ onClick: string;
16
+ onTouchStart: string;
17
+ onTouchMove: string;
18
+ onTouchEnd: string;
19
+ onTouchCancel: string;
20
+ onLongTap: string;
21
+ onLongClick: string;
22
+ onLongPress: string;
23
+ onTransitionEnd: string;
24
+ onAnimationIteration: string;
25
+ onAnimationStart: string;
26
+ onAnimationEnd: string;
27
+ };
28
+ export declare const props: string[];
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.props = exports.alias = void 0;
4
+ const universal_1 = require("../universal");
5
+ exports.alias = Object.assign(Object.assign({}, universal_1.universalAlias), { source: 'source' });
6
+ exports.props = Object.values(exports.alias);
@@ -33,3 +33,4 @@ export * from './Camera';
33
33
  export * from './Progress';
34
34
  export * from './RichText';
35
35
  export * from './Navigator';
36
+ export * from './SvgRender';
@@ -49,3 +49,4 @@ __exportStar(require("./Camera"), exports);
49
49
  __exportStar(require("./Progress"), exports);
50
50
  __exportStar(require("./RichText"), exports);
51
51
  __exportStar(require("./Navigator"), exports);
52
+ __exportStar(require("./SvgRender"), exports);
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { BaseProps } from '../../types/component';
3
+ export interface SvgRenderProps extends BaseProps {
4
+ source: string;
5
+ }
6
+ export declare const SvgRender: React.ComponentType<SvgRenderProps>;
@@ -0,0 +1,2 @@
1
+ import createHostComponent from '../createHostComponent';
2
+ export const SvgRender = createHostComponent('svg-render');
@@ -0,0 +1,28 @@
1
+ export declare const alias: {
2
+ source: string;
3
+ id: string;
4
+ disableScroll: string;
5
+ hoverClass: string;
6
+ hoverClassName: string;
7
+ hoverStartTime: string;
8
+ hoverStayTime: string;
9
+ hidden: string;
10
+ className: string;
11
+ animation: string;
12
+ style: string;
13
+ hoverStopPropagation: string;
14
+ onTap: string;
15
+ onClick: string;
16
+ onTouchStart: string;
17
+ onTouchMove: string;
18
+ onTouchEnd: string;
19
+ onTouchCancel: string;
20
+ onLongTap: string;
21
+ onLongClick: string;
22
+ onLongPress: string;
23
+ onTransitionEnd: string;
24
+ onAnimationIteration: string;
25
+ onAnimationStart: string;
26
+ onAnimationEnd: string;
27
+ };
28
+ export declare const props: string[];
@@ -0,0 +1,3 @@
1
+ import { universalAlias } from '../universal';
2
+ export const alias = Object.assign(Object.assign({}, universalAlias), { source: 'source' });
3
+ export const props = Object.values(alias);
@@ -33,3 +33,4 @@ export * from './Camera';
33
33
  export * from './Progress';
34
34
  export * from './RichText';
35
35
  export * from './Navigator';
36
+ export * from './SvgRender';
@@ -33,3 +33,4 @@ export * from './Camera';
33
33
  export * from './Progress';
34
34
  export * from './RichText';
35
35
  export * from './Navigator';
36
+ export * from './SvgRender';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/adapter",
3
- "version": "1.7.46",
3
+ "version": "1.7.47",
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.46",
39
+ "@ray-js/types": "1.7.47",
40
40
  "concurrently": "^6.5.1"
41
41
  },
42
42
  "publishConfig": {
@@ -44,5 +44,5 @@
44
44
  "registry": "https://registry.npmjs.org"
45
45
  },
46
46
  "esnext": "./esm/index.js",
47
- "gitHead": "1b386c6da0cbced2460a5f68f0534dd0969fae6d"
47
+ "gitHead": "ae38dee96a6daf9f2986a0f103b90b8a4a85545b"
48
48
  }