New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-yandex-maps-v3

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-yandex-maps-v3 - npm Package Compare versions

Comparing version 18.1.0 to 18.2.0

esm2022/lib/components/common/y-map-feature-data-source/y-map-feature-data-source.directive.mjs

3

index.d.ts
export * from './lib/components/common/y-map/y-map.component';
export * from './lib/components/common/y-map-default-marker/y-map-default-marker.directive';
export * from './lib/components/common/y-map-feature/y-map-feature.directive';
export * from './lib/components/common/y-map-feature-data-source/y-map-feature-data-source.directive';
export * from './lib/components/common/y-map-hint/y-map-hint.directive';
export * from './lib/components/common/y-map-listener/y-map-listener.directive';

@@ -16,2 +18,3 @@ export * from './lib/components/common/y-map-marker/y-map-marker.directive';

export * from './lib/components/layers/y-map-default-scheme-layer/y-map-default-scheme-layer.directive';
export * from './lib/components/layers/y-map-layer/y-map-layer.directive';
export * from './lib/services/y-api-loader/y-api-loader.service';

@@ -18,0 +21,0 @@ export * from './lib/types/y-config';

5

lib/components/common/y-map-default-marker/y-map-default-marker.directive.d.ts

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapDefaultMarker, YMapDefaultMarkerProps } from '@yandex/ymaps3-types/packages/markers';

@@ -35,2 +35,3 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapDefaultMarkerDirective implements OnInit, OnDestroy, OnChanges {
private readonly ngZone;
private readonly yMapComponent;

@@ -48,3 +49,3 @@ private readonly destroy$;

ready: EventEmitter<YReadyEvent<YMapDefaultMarker>>;
constructor(yMapComponent: YMapComponent);
constructor(ngZone: NgZone, yMapComponent: YMapComponent);
ngOnInit(): void;

@@ -51,0 +52,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapFeature, YMapFeatureProps } from '@yandex/ymaps3-types';

@@ -45,2 +45,3 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapFeatureDirective implements OnInit, OnDestroy, OnChanges {
private readonly ngZone;
private readonly yMapComponent;

@@ -58,3 +59,3 @@ private readonly destroy$;

ready: EventEmitter<YReadyEvent<YMapFeature>>;
constructor(yMapComponent: YMapComponent);
constructor(ngZone: NgZone, yMapComponent: YMapComponent);
ngOnInit(): void;

@@ -61,0 +62,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapListener, YMapListenerProps } from '@yandex/ymaps3-types';

@@ -30,3 +30,3 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapListenerDirective implements OnInit, OnChanges, OnDestroy {
private readonly elementRef;
private readonly ngZone;
private readonly yMapComponent;

@@ -44,3 +44,3 @@ private readonly destroy$;

ready: EventEmitter<YReadyEvent<YMapListener>>;
constructor(elementRef: ElementRef<HTMLElement>, yMapComponent: YMapComponent);
constructor(ngZone: NgZone, yMapComponent: YMapComponent);
ngOnInit(): void;

@@ -47,0 +47,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { YMapMarker, YMapMarkerProps } from '@yandex/ymaps3-types';

@@ -40,2 +40,3 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapMarkerDirective implements AfterViewInit, OnDestroy, OnChanges {
private readonly ngZone;
private readonly elementRef;

@@ -45,2 +46,3 @@ private readonly yMapComponent;

private marker?;
private element?;
/**

@@ -55,3 +57,3 @@ * See the API entity documentation for detailed information. Supports ngOnChanges.

ready: EventEmitter<YReadyEvent<YMapMarker>>;
constructor(elementRef: ElementRef<HTMLElement>, yMapComponent: YMapComponent);
constructor(ngZone: NgZone, elementRef: ElementRef<HTMLElement>, yMapComponent: YMapComponent);
ngOnChanges(changes: SimpleChanges): void;

@@ -58,0 +60,0 @@ ngAfterViewInit(): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMap, YMapControlButton } from '@yandex/ymaps3-types';

@@ -30,3 +30,4 @@ import { YMapControlCommonButtonProps } from '@yandex/ymaps3-types/imperative/YMapControl';

export declare class YMapControlButtonDirective implements OnInit, OnChanges, OnDestroy {
private readonly yMapControls;
private readonly ngZone;
private readonly yMapControlsDirective;
private readonly destroy$;

@@ -47,3 +48,3 @@ private control?;

ready: EventEmitter<YReadyEvent<YMapControlButton>>;
constructor(yMapControls: YMapControlsDirective);
constructor(ngZone: NgZone, yMapControlsDirective: YMapControlsDirective);
ngOnInit(): void;

@@ -50,0 +51,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMap } from '@yandex/ymaps3-types';

@@ -30,3 +30,4 @@ import { YMapControlCommonButton, YMapControlCommonButtonProps } from '@yandex/ymaps3-types/imperative/YMapControl';

export declare class YMapControlCommonButtonDirective implements OnInit, OnChanges, OnDestroy {
private readonly yMapControls;
private readonly ngZone;
private readonly yMapControlsDirective;
private readonly destroy$;

@@ -47,3 +48,3 @@ private control?;

ready: EventEmitter<YReadyEvent<YMapControlCommonButton>>;
constructor(yMapControls: YMapControlsDirective);
constructor(ngZone: NgZone, yMapControlsDirective: YMapControlsDirective);
ngOnInit(): void;

@@ -50,0 +51,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { YMapControl, YMapControlProps } from '@yandex/ymaps3-types/imperative/YMapControl';

@@ -30,7 +30,9 @@ import { YReadyEvent } from '../../../types/y-ready-event';

*/
export declare class YMapControlDirective implements OnInit, OnChanges, OnDestroy {
export declare class YMapControlDirective implements AfterViewInit, OnChanges, OnDestroy {
private readonly ngZone;
private readonly elementRef;
private readonly yMapControls;
private readonly yMapControlsDirective;
private readonly destroy$;
private control?;
private element?;
/**

@@ -45,8 +47,13 @@ * See the API entity documentation for detailed information. Supports ngOnChanges.

ready: EventEmitter<YReadyEvent<YMapControl>>;
constructor(elementRef: ElementRef<HTMLElement>, yMapControls: YMapControlsDirective);
ngOnInit(): void;
constructor(ngZone: NgZone, elementRef: ElementRef<HTMLElement>, yMapControlsDirective: YMapControlsDirective);
ngAfterViewInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
/**
* To render a control, a container is required.
* This method isolates all the container creation logic and returns the entity.
*/
private createControlContainer;
static ɵfac: i0.ɵɵFactoryDeclaration<YMapControlDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<YMapControlDirective, "y-map-control", never, { "props": { "alias": "props"; "required": false; }; }, { "ready": "ready"; }, never, never, true, never>;
}

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapControls, YMapControlsProps, YMapEntity } from '@yandex/ymaps3-types';

@@ -29,2 +29,3 @@ import { BehaviorSubject } from 'rxjs';

export declare class YMapControlsDirective implements OnInit, OnChanges, OnDestroy {
private readonly ngZone;
private readonly yMapComponent;

@@ -46,3 +47,3 @@ private readonly destroy$;

ready: EventEmitter<YReadyEvent<YMapControls>>;
constructor(yMapComponent: YMapComponent);
constructor(ngZone: NgZone, yMapComponent: YMapComponent);
ngOnInit(): void;

@@ -49,0 +50,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapGeolocationControl, YMapGeolocationControlProps } from '@yandex/ymaps3-types/packages/controls';

@@ -29,3 +29,4 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapGeolocationControlDirective implements OnInit, OnChanges, OnDestroy {
private readonly yMapControls;
private readonly ngZone;
private readonly yMapControlsDirective;
private readonly destroy$;

@@ -42,3 +43,3 @@ private control?;

ready: EventEmitter<YReadyEvent<YMapGeolocationControl>>;
constructor(yMapControls: YMapControlsDirective);
constructor(ngZone: NgZone, yMapControlsDirective: YMapControlsDirective);
ngOnInit(): void;

@@ -45,0 +46,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapOpenMapsButton, YMapOpenMapsButtonProps } from '@yandex/ymaps3-types/modules/controls-extra';

@@ -29,3 +29,4 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapOpenMapsButtonDirective implements OnInit, OnChanges, OnDestroy {
private readonly yMapControls;
private readonly ngZone;
private readonly yMapControlsDirective;
private readonly destroy$;

@@ -42,3 +43,3 @@ private control?;

ready: EventEmitter<YReadyEvent<YMapOpenMapsButton>>;
constructor(yMapControls: YMapControlsDirective);
constructor(ngZone: NgZone, yMapControlsDirective: YMapControlsDirective);
ngOnInit(): void;

@@ -45,0 +46,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMapScaleControl, YMapScaleControlProps } from '@yandex/ymaps3-types';

@@ -28,3 +28,4 @@ import { YReadyEvent } from '../../../types/y-ready-event';

export declare class YMapScaleControlDirective implements OnInit, OnChanges, OnDestroy {
private readonly yMapControls;
private readonly ngZone;
private readonly yMapControlsDirective;
private readonly destroy$;

@@ -41,3 +42,3 @@ private control?;

ready: EventEmitter<YReadyEvent<YMapScaleControl>>;
constructor(yMapControls: YMapControlsDirective);
constructor(ngZone: NgZone, yMapControlsDirective: YMapControlsDirective);
ngOnInit(): void;

@@ -44,0 +45,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -31,4 +31,4 @@ import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';

export declare class YMapZoomControlDirective implements OnInit, OnChanges, OnDestroy {
private readonly yMapControls;
private readonly ngZone;
private readonly yMapControlsDirective;
private readonly destroy$;

@@ -49,3 +49,3 @@ private control?;

ready: EventEmitter<YReadyEvent<YMapZoomControl>>;
constructor(yMapControls: YMapControlsDirective, ngZone: NgZone);
constructor(ngZone: NgZone, yMapControlsDirective: YMapControlsDirective);
ngOnInit(): void;

@@ -52,0 +52,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMap, YMapDefaultFeaturesLayer, YMapDefaultFeaturesLayerProps } from '@yandex/ymaps3-types';

@@ -25,2 +25,3 @@ import { ComplexOptions } from '../../../types/complex-options';

export declare class YMapDefaultFeaturesLayerDirective implements OnInit, OnDestroy, OnChanges {
private readonly ngZone;
private readonly yMapComponent;

@@ -42,3 +43,3 @@ private readonly destroy$;

ready: EventEmitter<YReadyEvent<YMapDefaultFeaturesLayer>>;
constructor(yMapComponent: YMapComponent);
constructor(ngZone: NgZone, yMapComponent: YMapComponent);
ngOnInit(): void;

@@ -45,0 +46,0 @@ ngOnChanges(changes: SimpleChanges): void;

@@ -1,2 +0,2 @@

import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { YMap, YMapDefaultSchemeLayer, YMapDefaultSchemeLayerProps } from '@yandex/ymaps3-types';

@@ -25,2 +25,3 @@ import { ComplexOptions } from '../../../types/complex-options';

export declare class YMapDefaultSchemeLayerDirective implements OnInit, OnDestroy, OnChanges {
private readonly ngZone;
private readonly yMapComponent;

@@ -42,3 +43,3 @@ private readonly destroy$;

ready: EventEmitter<YReadyEvent<YMapDefaultSchemeLayer>>;
constructor(yMapComponent: YMapComponent);
constructor(ngZone: NgZone, yMapComponent: YMapComponent);
ngOnInit(): void;

@@ -45,0 +46,0 @@ ngOnChanges(changes: SimpleChanges): void;

import { GenericEntity, GenericRootEntity } from '@yandex/ymaps3-types/imperative/Entities';
/**
* Typings do not export this type but use it in many places.
* Typings do not export this type, but it's used it in many places.
* For now, define it here. Maybe later they will export it.

@@ -5,0 +5,0 @@ * @internal

{
"name": "angular-yandex-maps-v3",
"version": "18.1.0",
"version": "18.2.0",
"description": "Yandex.Maps Angular components that implement the Yandex.Maps JavaScript API 3.0",

@@ -5,0 +5,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc