-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbootstrap.circular.d.ts
42 lines (42 loc) · 1.89 KB
/
bootstrap.circular.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { BootstrapCircular } from './../index';
import { BootstrapCircularStyleMode } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges, EventEmitter } from '@angular/core';
import { BaseElement } from './smart.element';
export { BootstrapCircularStyleMode, ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { BootstrapCircular } from './../index';
export declare class BootstrapCircularComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
constructor(ref: ElementRef<BootstrapCircular>);
private eventHandlers;
nativeElement: BootstrapCircular;
/** @description Creates the component on demand.
* @param properties An optional object of properties, which will be added to the template binded ones.
*/
createComponent(properties?: {}): any;
/** @description Enables or disables the element. */
disabled: boolean;
/** @description Sets the name of the element. */
name: string;
/** @description Sets or gets the min value */
min: number;
/** @description Sets or gets the max value */
max: number;
/** @description Sets whether stripes are displayed in the progress. */
striped: boolean;
/** @description Sets or gets the style mode of the button. */
styleMode: BootstrapCircularStyleMode | string;
/** @description Sets or gets the value */
value: number;
/** @description Change event is triggered when the value of the element is changed.
* @param event. The custom event. */
onChange: EventEmitter<CustomEvent>;
readonly isRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
/** @description Add event listeners. */
private listen;
/** @description Remove event listeners. */
private unlisten;
}