@syncfusion/ej2-angular-splitbuttons 33.1.44 → 33.1.49-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-splitbuttons.es5.js +565 -0
- package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-splitbuttons.js +516 -0
- package/@syncfusion/ej2-angular-splitbuttons.js.map +1 -0
- package/LICENSE +10 -0
- package/dist/ej2-angular-splitbuttons.umd.js +604 -0
- package/dist/ej2-angular-splitbuttons.umd.js.map +1 -0
- package/dist/ej2-angular-splitbuttons.umd.min.js +11 -0
- package/dist/ej2-angular-splitbuttons.umd.min.js.map +1 -0
- package/ej2-angular-splitbuttons.d.ts +7 -0
- package/ej2-angular-splitbuttons.metadata.json +1 -0
- package/package.json +48 -30
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/drop-down-button/dropdownbutton-all.module.d.ts +5 -11
- package/src/drop-down-button/dropdownbutton.component.d.ts +37 -40
- package/src/drop-down-button/dropdownbutton.module.d.ts +5 -12
- package/src/drop-down-button/items.directive.d.ts +45 -50
- package/src/index.d.ts +12 -12
- package/src/progress-button/progressbutton-all.module.d.ts +5 -11
- package/src/progress-button/progressbutton.component.d.ts +32 -35
- package/src/progress-button/progressbutton.module.d.ts +5 -11
- package/src/split-button/items.directive.d.ts +45 -50
- package/src/split-button/splitbutton-all.module.d.ts +5 -11
- package/src/split-button/splitbutton.component.d.ts +38 -41
- package/src/split-button/splitbutton.module.d.ts +5 -12
- package/CHANGELOG.md +0 -279
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +0 -23
- package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +0 -64
- package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +0 -34
- package/esm2020/src/drop-down-button/items.directive.mjs +0 -46
- package/esm2020/src/index.mjs +0 -13
- package/esm2020/src/progress-button/progressbutton-all.module.mjs +0 -23
- package/esm2020/src/progress-button/progressbutton.component.mjs +0 -59
- package/esm2020/src/progress-button/progressbutton.module.mjs +0 -25
- package/esm2020/src/split-button/items.directive.mjs +0 -46
- package/esm2020/src/split-button/splitbutton-all.module.mjs +0 -23
- package/esm2020/src/split-button/splitbutton.component.mjs +0 -64
- package/esm2020/src/split-button/splitbutton.module.mjs +0 -34
- package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +0 -403
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -403
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
- package/syncfusion-ej2-angular-splitbuttons.d.ts +0 -5
|
@@ -1,50 +1,45 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
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
|
-
export declare class DropDownButtonItemsDirective extends ArrayBase<DropDownButtonItemsDirective> {
|
|
47
|
-
constructor();
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonItemsDirective, never>;
|
|
49
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownButtonItemsDirective, "ejs-dropdownbutton>e-dropdownbuttonitems", never, {}, {}, ["children"]>;
|
|
50
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
export declare class DropDownButtonItemDirective extends ComplexBase<DropDownButtonItemDirective> {
|
|
4
|
+
private viewContainerRef;
|
|
5
|
+
directivePropList: any;
|
|
6
|
+
/**
|
|
7
|
+
* Used to enable or disable the item.
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
disabled: any;
|
|
11
|
+
/**
|
|
12
|
+
* Defines class/multiple classes separated by a space for the item that is used to include an icon.
|
|
13
|
+
* Action item can include font icon and sprite image.
|
|
14
|
+
* @default ''
|
|
15
|
+
*/
|
|
16
|
+
iconCss: any;
|
|
17
|
+
/**
|
|
18
|
+
* Specifies the id for item.
|
|
19
|
+
* @default ''
|
|
20
|
+
*/
|
|
21
|
+
id: any;
|
|
22
|
+
/**
|
|
23
|
+
* Specifies separator between the items. Separator are horizontal lines used to group action items.
|
|
24
|
+
* @default false
|
|
25
|
+
*/
|
|
26
|
+
separator: any;
|
|
27
|
+
/**
|
|
28
|
+
* Specifies text for item.
|
|
29
|
+
* @default ''
|
|
30
|
+
*/
|
|
31
|
+
text: any;
|
|
32
|
+
/**
|
|
33
|
+
* Specifies url for item that creates the anchor link to navigate to the url provided.
|
|
34
|
+
* @default ''
|
|
35
|
+
*/
|
|
36
|
+
url: any;
|
|
37
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* DropDownButtonItem Array Directive
|
|
41
|
+
* @private
|
|
42
|
+
*/
|
|
43
|
+
export declare class DropDownButtonItemsDirective extends ArrayBase<DropDownButtonItemsDirective> {
|
|
44
|
+
constructor();
|
|
45
|
+
}
|
package/src/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { DropDownButtonItemDirective, DropDownButtonItemsDirective } from './drop-down-button/items.directive';
|
|
2
|
-
export { DropDownButtonComponent } from './drop-down-button/dropdownbutton.component';
|
|
3
|
-
export { DropDownButtonModule } from './drop-down-button/dropdownbutton.module';
|
|
4
|
-
export { DropDownButtonAllModule } from './drop-down-button/dropdownbutton-all.module';
|
|
5
|
-
export { SplitButtonItemDirective, SplitButtonItemsDirective } from './split-button/items.directive';
|
|
6
|
-
export { SplitButtonComponent } from './split-button/splitbutton.component';
|
|
7
|
-
export { SplitButtonModule } from './split-button/splitbutton.module';
|
|
8
|
-
export { SplitButtonAllModule } from './split-button/splitbutton-all.module';
|
|
9
|
-
export { ProgressButtonComponent } from './progress-button/progressbutton.component';
|
|
10
|
-
export { ProgressButtonModule } from './progress-button/progressbutton.module';
|
|
11
|
-
export { ProgressButtonAllModule } from './progress-button/progressbutton-all.module';
|
|
12
|
-
export * from '@syncfusion/ej2-splitbuttons';
|
|
1
|
+
export { DropDownButtonItemDirective, DropDownButtonItemsDirective } from './drop-down-button/items.directive';
|
|
2
|
+
export { DropDownButtonComponent } from './drop-down-button/dropdownbutton.component';
|
|
3
|
+
export { DropDownButtonModule } from './drop-down-button/dropdownbutton.module';
|
|
4
|
+
export { DropDownButtonAllModule } from './drop-down-button/dropdownbutton-all.module';
|
|
5
|
+
export { SplitButtonItemDirective, SplitButtonItemsDirective } from './split-button/items.directive';
|
|
6
|
+
export { SplitButtonComponent } from './split-button/splitbutton.component';
|
|
7
|
+
export { SplitButtonModule } from './split-button/splitbutton.module';
|
|
8
|
+
export { SplitButtonAllModule } from './split-button/splitbutton-all.module';
|
|
9
|
+
export { ProgressButtonComponent } from './progress-button/progressbutton.component';
|
|
10
|
+
export { ProgressButtonModule } from './progress-button/progressbutton.module';
|
|
11
|
+
export { ProgressButtonAllModule } from './progress-button/progressbutton-all.module';
|
|
12
|
+
export * from '@syncfusion/ej2-splitbuttons';
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class ProgressButtonAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressButtonAllModule, never, [typeof i1.CommonModule, typeof i2.ProgressButtonModule], [typeof i2.ProgressButtonModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressButtonAllModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the ProgressButton component with providers.
|
|
3
|
+
*/
|
|
4
|
+
export declare class ProgressButtonAllModule {
|
|
5
|
+
}
|
|
@@ -1,35 +1,32 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { ProgressButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressButtonComponent, "[ejs-progressbutton]", never, { "animationSettings": "animationSettings"; "content": "content"; "cssClass": "cssClass"; "disabled": "disabled"; "duration": "duration"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enableProgress": "enableProgress"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "isPrimary": "isPrimary"; "isToggle": "isToggle"; "spinSettings": "spinSettings"; }, { "begin": "begin"; "created": "created"; "end": "end"; "fail": "fail"; "progress": "progress"; }, never, ["*"]>;
|
|
35
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { ProgressButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
|
+
export declare const inputs: string[];
|
|
5
|
+
export declare const outputs: string[];
|
|
6
|
+
export declare const twoWays: string[];
|
|
7
|
+
/**
|
|
8
|
+
* Represents the Angular ProgressButton Component.
|
|
9
|
+
* ```html
|
|
10
|
+
* <button ejs-progressbutton content='Progress Button'></button>
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class ProgressButtonComponent extends ProgressButton implements IComponentBase {
|
|
14
|
+
private ngEle;
|
|
15
|
+
private srenderer;
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
private injector;
|
|
18
|
+
containerContext: any;
|
|
19
|
+
tagObjects: any;
|
|
20
|
+
begin: any;
|
|
21
|
+
created: any;
|
|
22
|
+
end: any;
|
|
23
|
+
fail: any;
|
|
24
|
+
progress: any;
|
|
25
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
ngAfterViewInit(): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
ngAfterContentChecked(): void;
|
|
30
|
+
registerEvents: (eventList: string[]) => void;
|
|
31
|
+
addTwoWay: (propList: string[]) => void;
|
|
32
|
+
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class ProgressButtonModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressButtonModule, [typeof i1.ProgressButtonComponent], [typeof i2.CommonModule], [typeof i1.ProgressButtonComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressButtonModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the ProgressButton component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class ProgressButtonModule {
|
|
5
|
+
}
|
|
@@ -1,50 +1,45 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
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
|
-
export declare class SplitButtonItemsDirective extends ArrayBase<SplitButtonItemsDirective> {
|
|
47
|
-
constructor();
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonItemsDirective, never>;
|
|
49
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SplitButtonItemsDirective, "ejs-splitbutton>e-splitbuttonitems", never, {}, {}, ["children"]>;
|
|
50
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonItemDirective> {
|
|
4
|
+
private viewContainerRef;
|
|
5
|
+
directivePropList: any;
|
|
6
|
+
/**
|
|
7
|
+
* Used to enable or disable the item.
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
disabled: any;
|
|
11
|
+
/**
|
|
12
|
+
* Defines class/multiple classes separated by a space for the item that is used to include an icon.
|
|
13
|
+
* Action item can include font icon and sprite image.
|
|
14
|
+
* @default ''
|
|
15
|
+
*/
|
|
16
|
+
iconCss: any;
|
|
17
|
+
/**
|
|
18
|
+
* Specifies the id for item.
|
|
19
|
+
* @default ''
|
|
20
|
+
*/
|
|
21
|
+
id: any;
|
|
22
|
+
/**
|
|
23
|
+
* Specifies separator between the items. Separator are horizontal lines used to group action items.
|
|
24
|
+
* @default false
|
|
25
|
+
*/
|
|
26
|
+
separator: any;
|
|
27
|
+
/**
|
|
28
|
+
* Specifies text for item.
|
|
29
|
+
* @default ''
|
|
30
|
+
*/
|
|
31
|
+
text: any;
|
|
32
|
+
/**
|
|
33
|
+
* Specifies url for item that creates the anchor link to navigate to the url provided.
|
|
34
|
+
* @default ''
|
|
35
|
+
*/
|
|
36
|
+
url: any;
|
|
37
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* SplitButtonItem Array Directive
|
|
41
|
+
* @private
|
|
42
|
+
*/
|
|
43
|
+
export declare class SplitButtonItemsDirective extends ArrayBase<SplitButtonItemsDirective> {
|
|
44
|
+
constructor();
|
|
45
|
+
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class SplitButtonAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonAllModule, never, [typeof i1.CommonModule, typeof i2.SplitButtonModule], [typeof i2.SplitButtonModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonAllModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the SplitButton component with providers.
|
|
3
|
+
*/
|
|
4
|
+
export declare class SplitButtonAllModule {
|
|
5
|
+
}
|
|
@@ -1,41 +1,38 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { SplitButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
|
-
import { SplitButtonItemsDirective } from './items.directive';
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "ejs-splitbutton", never, { "animationSettings": "animationSettings"; "closeActionEvents": "closeActionEvents"; "content": "content"; "createPopupOnClick": "createPopupOnClick"; "cssClass": "cssClass"; "disabled": "disabled"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "itemTemplate": "itemTemplate"; "items": "items"; "locale": "locale"; "popupWidth": "popupWidth"; "target": "target"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "click": "click"; "close": "close"; "created": "created"; "open": "open"; "select": "select"; }, ["childItems"], ["*"]>;
|
|
41
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { SplitButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
|
+
import { SplitButtonItemsDirective } from './items.directive';
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* Represents the Angular SplitButton Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ejs-splitbutton content='Split Button'></ejs-splitbutton>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class SplitButtonComponent extends SplitButton implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
containerContext: any;
|
|
20
|
+
tagObjects: any;
|
|
21
|
+
beforeClose: any;
|
|
22
|
+
beforeItemRender: any;
|
|
23
|
+
beforeOpen: any;
|
|
24
|
+
click: any;
|
|
25
|
+
close: any;
|
|
26
|
+
created: any;
|
|
27
|
+
open: any;
|
|
28
|
+
select: any;
|
|
29
|
+
childItems: QueryList<SplitButtonItemsDirective>;
|
|
30
|
+
tags: string[];
|
|
31
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
ngAfterViewInit(): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
ngAfterContentChecked(): void;
|
|
36
|
+
registerEvents: (eventList: string[]) => void;
|
|
37
|
+
addTwoWay: (propList: string[]) => void;
|
|
38
|
+
}
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
* NgModule definition for the SplitButton component.
|
|
7
|
-
*/
|
|
8
|
-
export declare class SplitButtonModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, [typeof i1.SplitButtonComponent, typeof i2.SplitButtonItemDirective, typeof i2.SplitButtonItemsDirective], [typeof i3.CommonModule], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonItemDirective, typeof i2.SplitButtonItemsDirective]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
|
|
12
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the SplitButton component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class SplitButtonModule {
|
|
5
|
+
}
|