- Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart.circularprogressbar.d.ts
60 lines (60 loc) · 2.94 KB
/
smart.circularprogressbar.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import{CircularProgressBar}from'./../index';
import{Animation}from'./../index';
import{AfterViewInit,ElementRef,OnInit,OnChanges,OnDestroy,SimpleChanges,EventEmitter}from'@angular/core';
import{BaseElement}from'./smart.element';
export{Animation,ElementRenderMode}from'./../index';
export{Smart}from'./smart.element';
export{CircularProgressBar}from'./../index';
exportdeclareclassCircularProgressBarComponentextendsBaseElementimplementsOnInit,AfterViewInit,OnDestroy,OnChanges{
constructor(ref: ElementRef<CircularProgressBar>);
privateeventHandlers;
nativeElement: CircularProgressBar;
/** @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 Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */
animation: Animation|string;
/** @description Enables or disables the element. */
disabled: boolean;
/** @description Sets the value of the Circular Progress bar to indeterminate state(null) and starts the animation. */
formatFunction: {
(value: number): string;
};
/** @description Sets the filling direction of the Circular Progress Bar. */
indeterminate: boolean;
/** @description Sets or gets the language. Used in conjunction with the property messages. */
inverted: boolean;
/** @description Callback, related to localization module. */
locale: string;
/** @description Sets progress bars maximum possible value. */
localizeFormatFunction: any;
/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
max: number;
/** @description Sets progress bars minimum possible value. */
messages: any;
/** @description Enables/Disabled the label for the Progress Bar. */
min: number;
/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
showProgressValue: boolean;
/** @description Determines the theme. Theme defines the look of the element */
rightToLeft: boolean;
/** @description If is set to true, the element cannot be focused. */
theme: string;
/** @description Sets or gets the value of the progress bar */
unfocusable: boolean;
/** @description undefined */
value: number;
/** @description This event is triggered when the value is changed.
* @param event. The custom event. */
onChange: EventEmitter<CustomEvent>;
readonlyisRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
/** @description Add event listeners. */
privatelisten;
/** @description Remove event listeners. */
privateunlisten;
}