@ray-js/adapter 1.7.67 → 1.7.69

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.
@@ -29,6 +29,7 @@ export interface MapProps extends BaseProps, DiffLayer {
29
29
  onCallouttap?: (e: GenericEvent) => void;
30
30
  onRegionchange?: (e: GenericEvent) => void;
31
31
  onInitdone?: (e: GenericEvent) => void;
32
+ onMaptap?: (e: GenericEvent) => void;
32
33
  }
33
34
  export type Marker = {
34
35
  content?: string;
@@ -27,6 +27,7 @@ export declare const alias: {
27
27
  onCallouttap: string;
28
28
  onRegionchange: string;
29
29
  onInitdone: string;
30
+ onMaptap: string;
30
31
  disableScroll: string;
31
32
  hoverClass: string;
32
33
  hoverClassName: 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), { id: 'id', className: 'class', style: 'style', updateLayout: 'update-layout', longitude: 'longitude', latitude: 'latitude', scale: 'scale', minScale: 'min-scale', maxScale: 'max-scale', disableAnimation: 'disable-animation', mapType: 'map-type', markers: 'markers', polyline: 'polyline', circles: 'circles', polygons: 'polygons', borderWidth: 'border-width', borderStyle: 'border-style', borderColor: 'border-color', borderRadius: 'border-radius', borderRadiusTopLeft: 'border-radius-top-left', borderRadiusTopRight: 'border-radius-top-right', borderRadiusBottomLeft: 'border-radius-bottom-left', borderRadiusBottomRight: 'border-radius-bottom-right', backgroundColor: 'background-color', onMarkertap: 'bind:markertap', onCallouttap: 'bind:callouttap', onRegionchange: 'bind:regionchange', onInitdone: 'bind:initdone' });
5
+ exports.alias = Object.assign(Object.assign({}, universal_js_1.universalAlias), { id: 'id', className: 'class', style: 'style', updateLayout: 'update-layout', longitude: 'longitude', latitude: 'latitude', scale: 'scale', minScale: 'min-scale', maxScale: 'max-scale', disableAnimation: 'disable-animation', mapType: 'map-type', markers: 'markers', polyline: 'polyline', circles: 'circles', polygons: 'polygons', borderWidth: 'border-width', borderStyle: 'border-style', borderColor: 'border-color', borderRadius: 'border-radius', borderRadiusTopLeft: 'border-radius-top-left', borderRadiusTopRight: 'border-radius-top-right', borderRadiusBottomLeft: 'border-radius-bottom-left', borderRadiusBottomRight: 'border-radius-bottom-right', backgroundColor: 'background-color', onMarkertap: 'bind:markertap', onCallouttap: 'bind:callouttap', onRegionchange: 'bind:regionchange', onInitdone: 'bind:initdone', onMaptap: 'bind:maptap' });
6
6
  exports.props = Object.values(exports.alias);
@@ -29,6 +29,7 @@ export interface MapProps extends BaseProps, DiffLayer {
29
29
  onCallouttap?: (e: GenericEvent) => void;
30
30
  onRegionchange?: (e: GenericEvent) => void;
31
31
  onInitdone?: (e: GenericEvent) => void;
32
+ onMaptap?: (e: GenericEvent) => void;
32
33
  }
33
34
  export type Marker = {
34
35
  content?: string;
@@ -27,6 +27,7 @@ export declare const alias: {
27
27
  onCallouttap: string;
28
28
  onRegionchange: string;
29
29
  onInitdone: string;
30
+ onMaptap: string;
30
31
  disableScroll: string;
31
32
  hoverClass: string;
32
33
  hoverClassName: string;
@@ -1,3 +1,3 @@
1
1
  import { universalAlias } from '../universal.js';
2
- export const alias = Object.assign(Object.assign({}, universalAlias), { id: 'id', className: 'class', style: 'style', updateLayout: 'update-layout', longitude: 'longitude', latitude: 'latitude', scale: 'scale', minScale: 'min-scale', maxScale: 'max-scale', disableAnimation: 'disable-animation', mapType: 'map-type', markers: 'markers', polyline: 'polyline', circles: 'circles', polygons: 'polygons', borderWidth: 'border-width', borderStyle: 'border-style', borderColor: 'border-color', borderRadius: 'border-radius', borderRadiusTopLeft: 'border-radius-top-left', borderRadiusTopRight: 'border-radius-top-right', borderRadiusBottomLeft: 'border-radius-bottom-left', borderRadiusBottomRight: 'border-radius-bottom-right', backgroundColor: 'background-color', onMarkertap: 'bind:markertap', onCallouttap: 'bind:callouttap', onRegionchange: 'bind:regionchange', onInitdone: 'bind:initdone' });
2
+ export const alias = Object.assign(Object.assign({}, universalAlias), { id: 'id', className: 'class', style: 'style', updateLayout: 'update-layout', longitude: 'longitude', latitude: 'latitude', scale: 'scale', minScale: 'min-scale', maxScale: 'max-scale', disableAnimation: 'disable-animation', mapType: 'map-type', markers: 'markers', polyline: 'polyline', circles: 'circles', polygons: 'polygons', borderWidth: 'border-width', borderStyle: 'border-style', borderColor: 'border-color', borderRadius: 'border-radius', borderRadiusTopLeft: 'border-radius-top-left', borderRadiusTopRight: 'border-radius-top-right', borderRadiusBottomLeft: 'border-radius-bottom-left', borderRadiusBottomRight: 'border-radius-bottom-right', backgroundColor: 'background-color', onMarkertap: 'bind:markertap', onCallouttap: 'bind:callouttap', onRegionchange: 'bind:regionchange', onInitdone: 'bind:initdone', onMaptap: 'bind:maptap' });
3
3
  export const props = Object.values(alias);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/adapter",
3
- "version": "1.7.67",
3
+ "version": "1.7.69",
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.67",
39
+ "@ray-js/types": "1.7.69",
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": "25b5f83e993b6028f15e77f14807c8fe6a3bdcb5"
47
+ "gitHead": "55aa561676854afb769fc4fbcdb5a52bf43c6c29"
48
48
  }