Socket
Socket
Sign inDemoInstall

@iplab/ngx-color-picker

Package Overview
Dependencies
6
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 17.2.0 to 17.2.1

5

lib/components/chrome-picker/chrome-picker.component.d.ts

@@ -1,6 +0,6 @@

import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal } from '@angular/core';
import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal, SimpleChanges, OnChanges } from '@angular/core';
import { ColorPickerControl } from './../../helpers/control.class';
import { ColorString } from '../../helpers/color.class';
import * as i0 from "@angular/core";
export declare class ChromePickerComponent implements OnInit, OnDestroy {
export declare class ChromePickerComponent implements OnInit, OnChanges, OnDestroy {
private readonly cdr;

@@ -14,2 +14,3 @@ selectedPresentation: number;

ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -16,0 +17,0 @@ changePresentation(): void;

@@ -1,6 +0,6 @@

import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal } from '@angular/core';
import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal, OnChanges, SimpleChanges } from '@angular/core';
import { ColorPickerControl } from './../../helpers/control.class';
import { ColorString } from '../../helpers/color.class';
import * as i0 from "@angular/core";
export declare class CompactPickerComponent implements OnInit, OnDestroy {
export declare class CompactPickerComponent implements OnInit, OnChanges, OnDestroy {
private readonly cdr;

@@ -12,2 +12,3 @@ color: ModelSignal<ColorString>;

ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -14,0 +15,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<CompactPickerComponent, never>;

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

import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal } from '@angular/core';
import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal, SimpleChanges, OnChanges } from '@angular/core';
import { ColorString } from './../../helpers/color.class';

@@ -6,3 +6,3 @@ import { ColorPickerControl } from './../../helpers/control.class';

export declare function columnAttribute(value: string | number | null | undefined): number | 'auto';
export declare class GithubPickerComponent implements OnInit, OnDestroy {
export declare class GithubPickerComponent implements OnInit, OnChanges, OnDestroy {
private readonly cdr;

@@ -17,2 +17,3 @@ color: ModelSignal<ColorString>;

ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -19,0 +20,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<GithubPickerComponent, never>;

8

lib/components/ip-picker/ip-picker.component.d.ts

@@ -1,11 +0,13 @@

import { OnInit, OnDestroy, ModelSignal, InputSignal } from '@angular/core';
import { OnInit, OnDestroy, ModelSignal, InputSignal, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
import { ColorString } from './../../helpers/color.class';
import { ColorPickerControl } from './../../helpers/control.class';
import * as i0 from "@angular/core";
export declare class IpPickerComponent implements OnInit, OnDestroy {
export declare class IpPickerComponent implements OnInit, OnChanges, OnDestroy {
private readonly cdr;
color: ModelSignal<ColorString>;
control: InputSignal<ColorPickerControl>;
private subscriptions;
constructor();
constructor(cdr: ChangeDetectorRef);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -12,0 +14,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<IpPickerComponent, never>;

@@ -1,6 +0,6 @@

import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal } from '@angular/core';
import { OnInit, SimpleChanges, OnChanges, OnDestroy, ChangeDetectorRef, ModelSignal, InputSignal } from '@angular/core';
import { ColorString } from './../../helpers/color.class';
import { ColorPickerControl } from './../../helpers/control.class';
import * as i0 from "@angular/core";
export declare class SketchPickerComponent implements OnInit, OnDestroy {
export declare class SketchPickerComponent implements OnInit, OnChanges, OnDestroy {
private readonly cdr;

@@ -12,2 +12,3 @@ color: ModelSignal<ColorString>;

ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -14,0 +15,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<SketchPickerComponent, never>;

@@ -1,6 +0,6 @@

import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal } from '@angular/core';
import { OnInit, OnDestroy, ChangeDetectorRef, ModelSignal, OnChanges, SimpleChanges } from '@angular/core';
import { ColorString } from './../../helpers/color.class';
import { ColorPickerControl } from './../../helpers/control.class';
import * as i0 from "@angular/core";
export declare class SwatchesPickerComponent implements OnInit, OnDestroy {
export declare class SwatchesPickerComponent implements OnInit, OnChanges, OnDestroy {
private readonly cdr;

@@ -14,2 +14,3 @@ color: ModelSignal<ColorString>;

ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -16,0 +17,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<SwatchesPickerComponent, never>;

export declare abstract class BaseColor {
abstract toString(showAlpha?: boolean): string;
abstract equal(color: BaseColor): boolean;
}

@@ -21,2 +21,3 @@ import { BaseColor } from './base-color.class';

getBlack(): number;
equal(color: Cmyk): boolean;
}

@@ -73,2 +73,3 @@ import { Cmyk } from './cmyk.class';

getCmyk(): Cmyk;
equal(color: Color): boolean;
private hsvaToHsla;

@@ -75,0 +76,0 @@ private hslaToHsva;

@@ -1,3 +0,5 @@

import { Color } from './color.class';
import { Color, ColorString } from './color.class';
import { ColorType } from './control.class';
export declare function getValueByType(color: Color, type: ColorType): string;
export declare function isColorEqual(first: Color, second: Color): boolean;
export declare function isColorEqual(first: ColorString, second: ColorString): boolean;

@@ -21,2 +21,3 @@ import { BaseColor } from './base-color.class';

getAlpha(): number;
equal(color: Hsla): boolean;
}

@@ -21,2 +21,3 @@ import { BaseColor } from './base-color.class';

getAlpha(): number;
equal(color: Hsva): boolean;
}

@@ -21,2 +21,3 @@ import { BaseColor } from './base-color.class';

getAlpha(): number;
equal(color: Rgba): boolean;
}

@@ -6,3 +6,3 @@ {

"bugs": "https://github.com/pIvan/ngx-color-picker/issues",
"version": "17.2.0",
"version": "17.2.1",
"author": "Ivan Pintar",

@@ -9,0 +9,0 @@ "license": "MIT",

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

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc