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