- Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbootstrap.inputgroup.d.ts
48 lines (48 loc) · 2.18 KB
/
bootstrap.inputgroup.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
import{BootstrapInputGroup}from'./../index';
import{BootstrapInputGroupStyleMode}from'./../index';
import{AfterViewInit,ElementRef,OnInit,OnChanges,OnDestroy,SimpleChanges,EventEmitter}from'@angular/core';
import{BaseElement}from'./smart.element';
export{BootstrapInputGroupStyleMode,ElementRenderMode}from'./../index';
export{Smart}from'./smart.element';
export{BootstrapInputGroup}from'./../index';
exportdeclareclassBootstrapInputGroupComponentextendsBaseElementimplementsOnInit,AfterViewInit,OnDestroy,OnChanges{
constructor(ref: ElementRef<BootstrapInputGroup>);
privateeventHandlers;
nativeElement: BootstrapInputGroup;
/** @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 the content before the input. */
contentBefore: string;
/** @description Sets the content after the input. */
contentAfter: string;
/** @description Enables or disables the element. */
disabled: boolean;
/** @description Sets or gets the name attribute for the element. Name is used when submiting HTML forms. */
name: string;
/** @description Enables or disables the wrapping. */
noWrap: boolean;
/** @description Sets or gets the style mode of the input group. */
styleMode: BootstrapInputGroupStyleMode|string;
/** @description Sets or gets the size mode of the element. */
sizeMode: string;
/** @description Sets or gets the type of the input. */
type: string;
/** @description Sets the placeholder of the input. */
placeholder: string;
/** @description Sets or gets the button's value. */
value: string;
/** @description Click event.
* @param event. The custom event. */
onClick: EventEmitter<CustomEvent>;
readonlyisRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
/** @description Add event listeners. */
privatelisten;
/** @description Remove event listeners. */
privateunlisten;
}