@ray-js/adapter 1.7.70 → 1.7.72
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/cjs/hostComponents/Slider/index.d.ts +1 -1
- package/cjs/hostComponents/Slider/node.d.ts +1 -2
- package/cjs/hostComponents/Slider/node.js +1 -1
- package/cjs/hostComponents/node.js +2 -0
- package/cjs/types/index.d.ts +1 -1
- package/esm/hostComponents/Slider/index.d.ts +1 -1
- package/esm/hostComponents/Slider/node.d.ts +1 -2
- package/esm/hostComponents/Slider/node.js +1 -1
- package/esm/hostComponents/node.js +2 -0
- package/esm/types/index.d.ts +1 -1
- package/package.json +3 -3
|
@@ -4,10 +4,9 @@ export declare const alias: {
|
|
|
4
4
|
step: string;
|
|
5
5
|
value: string;
|
|
6
6
|
color: string;
|
|
7
|
-
|
|
7
|
+
selectedColor: string;
|
|
8
8
|
activeColor: string;
|
|
9
9
|
backgroundColor: string;
|
|
10
|
-
boxSize: string;
|
|
11
10
|
blockColor: string;
|
|
12
11
|
blockSize: string;
|
|
13
12
|
showValue: string;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.props = exports.alias = void 0;
|
|
4
4
|
const universal_js_1 = require("../universal.js");
|
|
5
|
-
exports.alias = Object.assign(Object.assign({}, universal_js_1.universalAlias), { min: 'min', max: 'max', step: 'step', value: 'value', color: 'color',
|
|
5
|
+
exports.alias = Object.assign(Object.assign({}, universal_js_1.universalAlias), { min: 'min', max: 'max', step: 'step', value: 'value', color: 'color', selectedColor: 'selected-color', activeColor: 'active-color', backgroundColor: 'background-color', blockColor: 'block-color', blockSize: 'block-size', showValue: 'show-value', onChange: 'bind:change', onChanging: 'bind:changing' });
|
|
6
6
|
exports.props = Object.values(exports.alias);
|
|
@@ -68,6 +68,7 @@ const Camera = __importStar(require("./Camera/node.js"));
|
|
|
68
68
|
const RichText = __importStar(require("./RichText/node.js"));
|
|
69
69
|
const Iframe = __importStar(require("./Iframe/node.js"));
|
|
70
70
|
const Navigator = __importStar(require("./Navigator/node.js"));
|
|
71
|
+
const SvgRender = __importStar(require("./SvgRender/node.js"));
|
|
71
72
|
const hostComponents = new Map();
|
|
72
73
|
hostComponents.set('button', Button);
|
|
73
74
|
hostComponents.set('canvas', Canvas);
|
|
@@ -86,6 +87,7 @@ hostComponents.set('radio', Radio);
|
|
|
86
87
|
hostComponents.set('radio-group', RadioGroup);
|
|
87
88
|
hostComponents.set('scroll-view', ScrollView);
|
|
88
89
|
hostComponents.set('swiper', Swiper);
|
|
90
|
+
hostComponents.set('svg-render', SvgRender);
|
|
89
91
|
hostComponents.set('swiper-item', SwiperItem);
|
|
90
92
|
hostComponents.set('switch', Switch);
|
|
91
93
|
hostComponents.set('slider', Slider);
|
package/cjs/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './config.js';
|
|
2
|
-
export type { TouchEvent, GenericEvent } from './component.js';
|
|
2
|
+
export type { BaseEvent, TouchEvent, GenericEvent } from './component.js';
|
|
@@ -4,10 +4,9 @@ export declare const alias: {
|
|
|
4
4
|
step: string;
|
|
5
5
|
value: string;
|
|
6
6
|
color: string;
|
|
7
|
-
|
|
7
|
+
selectedColor: string;
|
|
8
8
|
activeColor: string;
|
|
9
9
|
backgroundColor: string;
|
|
10
|
-
boxSize: string;
|
|
11
10
|
blockColor: string;
|
|
12
11
|
blockSize: string;
|
|
13
12
|
showValue: string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { universalAlias } from '../universal.js';
|
|
2
|
-
export const alias = Object.assign(Object.assign({}, universalAlias), { min: 'min', max: 'max', step: 'step', value: 'value', color: 'color',
|
|
2
|
+
export const alias = Object.assign(Object.assign({}, universalAlias), { min: 'min', max: 'max', step: 'step', value: 'value', color: 'color', selectedColor: 'selected-color', activeColor: 'active-color', backgroundColor: 'background-color', blockColor: 'block-color', blockSize: 'block-size', showValue: 'show-value', onChange: 'bind:change', onChanging: 'bind:changing' });
|
|
3
3
|
export const props = Object.values(alias);
|
|
@@ -33,6 +33,7 @@ import * as Camera from './Camera/node.js';
|
|
|
33
33
|
import * as RichText from './RichText/node.js';
|
|
34
34
|
import * as Iframe from './Iframe/node.js';
|
|
35
35
|
import * as Navigator from './Navigator/node.js';
|
|
36
|
+
import * as SvgRender from './SvgRender/node.js';
|
|
36
37
|
const hostComponents = new Map();
|
|
37
38
|
hostComponents.set('button', Button);
|
|
38
39
|
hostComponents.set('canvas', Canvas);
|
|
@@ -51,6 +52,7 @@ hostComponents.set('radio', Radio);
|
|
|
51
52
|
hostComponents.set('radio-group', RadioGroup);
|
|
52
53
|
hostComponents.set('scroll-view', ScrollView);
|
|
53
54
|
hostComponents.set('swiper', Swiper);
|
|
55
|
+
hostComponents.set('svg-render', SvgRender);
|
|
54
56
|
hostComponents.set('swiper-item', SwiperItem);
|
|
55
57
|
hostComponents.set('switch', Switch);
|
|
56
58
|
hostComponents.set('slider', Slider);
|
package/esm/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './config.js';
|
|
2
|
-
export type { TouchEvent, GenericEvent } from './component.js';
|
|
2
|
+
export type { BaseEvent, TouchEvent, GenericEvent } from './component.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ray-js/adapter",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.72",
|
|
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.
|
|
39
|
+
"@ray-js/types": "1.7.72",
|
|
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": "
|
|
47
|
+
"gitHead": "06415e2d0f0de0a3f27af53a0fece495cf4d9078"
|
|
48
48
|
}
|