igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
125 lines (124 loc) • 4.86 kB
TypeScript
import { ColorEditorPanel } from "./ColorEditorPanel";
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
import { BaseControlTheme } from "igniteui-webcomponents-core";
import { IgcHTMLElement } from "igniteui-webcomponents-core";
import { IgcColorEditorPanelSelectedValueChangedEventArgs } from "./igc-color-editor-panel-selected-value-changed-event-args";
export declare class IgcColorEditorPanelComponent extends IgcHTMLElement {
private _portalManager;
private _container;
private _renderer;
constructor();
private _onChildrenChanged;
updateStyle(): void;
destroy(): void;
private _wrapper;
protected createImplementation(): ColorEditorPanel;
private _colorEditorPanel;
private _disconnected;
disconnectedCallback(): void;
connectedCallback(): void;
afterContentInit(): void;
protected _implementation: any;
/**
* @hidden
*/
get i(): ColorEditorPanel; /**
* @hidden
*/
static _createFromInternal(internal: any): IgcColorEditorPanelComponent;
private _settingAttributes;
protected _attached: boolean;
private _queuedSetAttributes;
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
protected _flushQueuedAttributes(): void;
protected _a(attrName: string, attrValue: any): void;
private static _observedAttributesIgcColorEditorPanelComponent;
static get observedAttributes(): string[];
private _updatingFromAttribute;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or Sets the value for the color editor panel.
*/
get value(): string;
set value(v: string);
/**
* Gets or sets the display density to use for the ColorEditorPanel.
*/
get density(): ControlDisplayDensity;
set density(v: ControlDisplayDensity);
/**
* Gets or sets the base built in theme to use for the ColorEditorPanel.
*/
get baseTheme(): BaseControlTheme;
set baseTheme(v: BaseControlTheme);
/**
* Gets or Sets the selected color background color
*/
get backgroundColor(): string;
set backgroundColor(v: string);
/**
* Gets or Sets the selected color boreder color
*/
get selectedColorBorderColor(): string;
set selectedColorBorderColor(v: string);
/**
* Gets or Sets the selected color border color
*/
get selectedFocusDateBackgroundColor(): string;
set selectedFocusDateBackgroundColor(v: string);
/**
* Gets or Sets the focus color border color
*/
get focusColorBorderColor(): string;
set focusColorBorderColor(v: string);
/**
* Gets or Sets the focus date background color
*/
get hoverBackgroundColor(): string;
set hoverBackgroundColor(v: string);
/**
* Gets or Sets the selected date text color
*/
get textColor(): string;
set textColor(v: string);
/**
* Gets or sets the font to use for the combobox.
*/
get textStyle(): string;
set textStyle(v: string);
/**
* Gets or sets the scaling value used to affect the pixel density of the control.
* A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
* to appear blurry.
*/
get pixelScalingRatio(): number;
set pixelScalingRatio(v: number);
get actualPixelScalingRatio(): number;
set actualPixelScalingRatio(v: number);
findByName(name: string): any;
protected __p: string;
protected _hasUserValues: Set<string>;
protected get hasUserValues(): Set<string>;
protected __m(propertyName: string): void;
protected _stylingContainer: any;
protected _stylingParent: any;
protected _inStyling: boolean;
protected _styling(container: any, component: any, parent?: any): void;
private _valueChanged;
private _valueChanged_wrapped;
/**
* Called when date is selected.
*/
get valueChanged(): (s: IgcColorEditorPanelComponent, e: IgcColorEditorPanelSelectedValueChangedEventArgs) => void;
set valueChanged(ev: (s: IgcColorEditorPanelComponent, e: IgcColorEditorPanelSelectedValueChangedEventArgs) => void);
private _valueChanging;
private _valueChanging_wrapped;
/**
* Called when date is selected.
*/
get valueChanging(): (s: IgcColorEditorPanelComponent, e: IgcColorEditorPanelSelectedValueChangedEventArgs) => void;
set valueChanging(ev: (s: IgcColorEditorPanelComponent, e: IgcColorEditorPanelSelectedValueChangedEventArgs) => void);
}