@progress/kendo-angular-buttons 17.1.1-develop.1 → 17.1.1-develop.3
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/buttons.module.d.ts +2 -1
- package/directives.d.ts +2 -2
- package/esm2022/buttons.module.mjs +2 -1
- package/esm2022/directives.mjs +3 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/splitbutton/splitbutton.module.mjs +2 -1
- package/fesm2022/progress-kendo-angular-buttons.mjs +8 -6
- package/package.json +6 -6
- package/splitbutton/splitbutton.module.d.ts +2 -1
package/buttons.module.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import * as i8 from "./floatingactionbutton/templates/dial-item-template.directi
|
|
|
14
14
|
import * as i9 from "./floatingactionbutton/templates/fab-template.directive";
|
|
15
15
|
import * as i10 from "./splitbutton/splitbutton.component";
|
|
16
16
|
import * as i11 from "./splitbutton/localization/custom-messages.component";
|
|
17
|
+
import * as i12 from "@progress/kendo-angular-common";
|
|
17
18
|
/**
|
|
18
19
|
* Represents the [NgModule](link:site.data.urls.angular['ngmodules'])
|
|
19
20
|
* definition for the Buttons components.
|
|
@@ -47,6 +48,6 @@ import * as i11 from "./splitbutton/localization/custom-messages.component";
|
|
|
47
48
|
*/
|
|
48
49
|
export declare class ButtonsModule {
|
|
49
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonsModule, never>;
|
|
50
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonsModule, never, [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent], [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent]>;
|
|
51
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonsModule, never, [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent, typeof i12.ToggleButtonTabStopDirective], [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent, typeof i12.ToggleButtonTabStopDirective]>;
|
|
51
52
|
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonsModule>;
|
|
52
53
|
}
|
package/directives.d.ts
CHANGED
|
@@ -40,8 +40,8 @@ export declare const KENDO_FLOATINGACTIONBUTTON: readonly [typeof FloatingAction
|
|
|
40
40
|
/**
|
|
41
41
|
* Utility array that contains all `SplitButton` related components and directives
|
|
42
42
|
*/
|
|
43
|
-
export declare const KENDO_SPLITBUTTON: readonly [typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent];
|
|
43
|
+
export declare const KENDO_SPLITBUTTON: readonly [typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent, typeof import("@progress/kendo-angular-common").ToggleButtonTabStopDirective];
|
|
44
44
|
/**
|
|
45
45
|
* Utility array that contains all `@progress/kendo-angular-buttons` related components and directives
|
|
46
46
|
*/
|
|
47
|
-
export declare const KENDO_BUTTONS: readonly [typeof ButtonComponent, typeof ButtonComponent, typeof ButtonGroupComponent, typeof DropDownButtonComponent, typeof ButtonItemTemplateDirective, typeof ChipComponent, typeof ChipComponent, typeof ChipListComponent, typeof FloatingActionButtonComponent, typeof DialItemTemplateDirective, typeof FloatingActionButtonTemplateDirective, typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent];
|
|
47
|
+
export declare const KENDO_BUTTONS: readonly [typeof ButtonComponent, typeof ButtonComponent, typeof ButtonGroupComponent, typeof DropDownButtonComponent, typeof ButtonItemTemplateDirective, typeof ChipComponent, typeof ChipComponent, typeof ChipListComponent, typeof FloatingActionButtonComponent, typeof DialItemTemplateDirective, typeof FloatingActionButtonTemplateDirective, typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent, typeof import("@progress/kendo-angular-common").ToggleButtonTabStopDirective];
|
|
@@ -19,6 +19,7 @@ import * as i8 from "./floatingactionbutton/templates/dial-item-template.directi
|
|
|
19
19
|
import * as i9 from "./floatingactionbutton/templates/fab-template.directive";
|
|
20
20
|
import * as i10 from "./splitbutton/splitbutton.component";
|
|
21
21
|
import * as i11 from "./splitbutton/localization/custom-messages.component";
|
|
22
|
+
import * as i12 from "@progress/kendo-angular-common";
|
|
22
23
|
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
23
24
|
/**
|
|
24
25
|
* Represents the [NgModule](link:site.data.urls.angular['ngmodules'])
|
|
@@ -53,7 +54,7 @@ import * as i11 from "./splitbutton/localization/custom-messages.component";
|
|
|
53
54
|
*/
|
|
54
55
|
export class ButtonsModule {
|
|
55
56
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
56
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, imports: [i1.ButtonComponent, i1.ButtonComponent, i2.ButtonGroupComponent, i3.DropDownButtonComponent, i4.ButtonItemTemplateDirective, i5.ChipComponent, i5.ChipComponent, i6.ChipListComponent, i7.FloatingActionButtonComponent, i8.DialItemTemplateDirective, i9.FloatingActionButtonTemplateDirective, i10.SplitButtonComponent, i11.SplitButtonCustomMessagesComponent], exports: [i1.ButtonComponent, i1.ButtonComponent, i2.ButtonGroupComponent, i3.DropDownButtonComponent, i4.ButtonItemTemplateDirective, i5.ChipComponent, i5.ChipComponent, i6.ChipListComponent, i7.FloatingActionButtonComponent, i8.DialItemTemplateDirective, i9.FloatingActionButtonTemplateDirective, i10.SplitButtonComponent, i11.SplitButtonCustomMessagesComponent] });
|
|
57
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, imports: [i1.ButtonComponent, i1.ButtonComponent, i2.ButtonGroupComponent, i3.DropDownButtonComponent, i4.ButtonItemTemplateDirective, i5.ChipComponent, i5.ChipComponent, i6.ChipListComponent, i7.FloatingActionButtonComponent, i8.DialItemTemplateDirective, i9.FloatingActionButtonTemplateDirective, i10.SplitButtonComponent, i11.SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective], exports: [i1.ButtonComponent, i1.ButtonComponent, i2.ButtonGroupComponent, i3.DropDownButtonComponent, i4.ButtonItemTemplateDirective, i5.ChipComponent, i5.ChipComponent, i6.ChipListComponent, i7.FloatingActionButtonComponent, i8.DialItemTemplateDirective, i9.FloatingActionButtonTemplateDirective, i10.SplitButtonComponent, i11.SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective] });
|
|
57
58
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [i1.ButtonComponent, i1.ButtonComponent, i3.DropDownButtonComponent, i5.ChipComponent, i5.ChipComponent, i7.FloatingActionButtonComponent, i10.SplitButtonComponent] });
|
|
58
59
|
}
|
|
59
60
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, decorators: [{
|
package/esm2022/directives.mjs
CHANGED
|
@@ -13,6 +13,7 @@ import { FloatingActionButtonTemplateDirective } from './floatingactionbutton/te
|
|
|
13
13
|
import { SplitButtonCustomMessagesComponent } from './splitbutton/localization/custom-messages.component';
|
|
14
14
|
import { SplitButtonComponent } from './splitbutton/splitbutton.component';
|
|
15
15
|
import { ButtonItemTemplateDirective } from './listbutton/button-item-template.directive';
|
|
16
|
+
import { KENDO_TOGGLEBUTTONTABSTOP } from '@progress/kendo-angular-common';
|
|
16
17
|
/**
|
|
17
18
|
* Utility array that contains all `Button` related components and directives
|
|
18
19
|
*/
|
|
@@ -59,7 +60,8 @@ export const KENDO_FLOATINGACTIONBUTTON = [
|
|
|
59
60
|
*/
|
|
60
61
|
export const KENDO_SPLITBUTTON = [
|
|
61
62
|
SplitButtonComponent,
|
|
62
|
-
SplitButtonCustomMessagesComponent
|
|
63
|
+
SplitButtonCustomMessagesComponent,
|
|
64
|
+
...KENDO_TOGGLEBUTTONTABSTOP
|
|
63
65
|
];
|
|
64
66
|
/**
|
|
65
67
|
* Utility array that contains all `@progress/kendo-angular-buttons` related components and directives
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-buttons',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '17.1.1-develop.
|
|
12
|
+
publishDate: 1733123426,
|
|
13
|
+
version: '17.1.1-develop.3',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -10,6 +10,7 @@ import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
import * as i1 from "./splitbutton.component";
|
|
12
12
|
import * as i2 from "./localization/custom-messages.component";
|
|
13
|
+
import * as i3 from "@progress/kendo-angular-common";
|
|
13
14
|
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -21,7 +22,7 @@ import * as i2 from "./localization/custom-messages.component";
|
|
|
21
22
|
*/
|
|
22
23
|
export class SplitButtonModule {
|
|
23
24
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
24
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, imports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent], exports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent] });
|
|
25
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, imports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent, i3.ToggleButtonTabStopDirective], exports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent, i3.ToggleButtonTabStopDirective] });
|
|
25
26
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [i1.SplitButtonComponent] });
|
|
26
27
|
}
|
|
27
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, decorators: [{
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { Injectable, isDevMode, EventEmitter, Component, Optional, Input, Output, HostBinding, HostListener, ContentChildren, Directive, InjectionToken, Inject, ElementRef, ViewContainerRef, ViewChild, ContentChild, forwardRef, NgModule } from '@angular/core';
|
|
7
7
|
import { Subject, Subscription, fromEvent, merge } from 'rxjs';
|
|
8
|
-
import
|
|
8
|
+
import * as i12 from '@progress/kendo-angular-common';
|
|
9
|
+
import { isDocumentAvailable, isFirefox, isSafari, isChanged, hasObservers, Keys, TemplateContextDirective, MultiTabStop, guid, isPresent as isPresent$1, EventsOutsideAngularDirective, anyChanged, KENDO_TOGGLEBUTTONTABSTOP, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
10
|
export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
10
11
|
import { caretAltDownIcon, xCircleIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
|
11
12
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
@@ -42,8 +43,8 @@ const packageMetadata = {
|
|
|
42
43
|
name: '@progress/kendo-angular-buttons',
|
|
43
44
|
productName: 'Kendo UI for Angular',
|
|
44
45
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
45
|
-
publishDate:
|
|
46
|
-
version: '17.1.1-develop.
|
|
46
|
+
publishDate: 1733123426,
|
|
47
|
+
version: '17.1.1-develop.3',
|
|
47
48
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
48
49
|
};
|
|
49
50
|
|
|
@@ -5530,7 +5531,8 @@ const KENDO_FLOATINGACTIONBUTTON = [
|
|
|
5530
5531
|
*/
|
|
5531
5532
|
const KENDO_SPLITBUTTON = [
|
|
5532
5533
|
SplitButtonComponent,
|
|
5533
|
-
SplitButtonCustomMessagesComponent
|
|
5534
|
+
SplitButtonCustomMessagesComponent,
|
|
5535
|
+
...KENDO_TOGGLEBUTTONTABSTOP
|
|
5534
5536
|
];
|
|
5535
5537
|
/**
|
|
5536
5538
|
* Utility array that contains all `@progress/kendo-angular-buttons` related components and directives
|
|
@@ -5648,7 +5650,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5648
5650
|
*/
|
|
5649
5651
|
class ButtonsModule {
|
|
5650
5652
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5651
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, imports: [ButtonComponent, ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, ButtonItemTemplateDirective, ChipComponent, ChipComponent, ChipListComponent, FloatingActionButtonComponent, DialItemTemplateDirective, FloatingActionButtonTemplateDirective, SplitButtonComponent, SplitButtonCustomMessagesComponent], exports: [ButtonComponent, ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, ButtonItemTemplateDirective, ChipComponent, ChipComponent, ChipListComponent, FloatingActionButtonComponent, DialItemTemplateDirective, FloatingActionButtonTemplateDirective, SplitButtonComponent, SplitButtonCustomMessagesComponent] });
|
|
5653
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, imports: [ButtonComponent, ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, ButtonItemTemplateDirective, ChipComponent, ChipComponent, ChipListComponent, FloatingActionButtonComponent, DialItemTemplateDirective, FloatingActionButtonTemplateDirective, SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective], exports: [ButtonComponent, ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, ButtonItemTemplateDirective, ChipComponent, ChipComponent, ChipListComponent, FloatingActionButtonComponent, DialItemTemplateDirective, FloatingActionButtonTemplateDirective, SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective] });
|
|
5652
5654
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [ButtonComponent, ButtonComponent, DropDownButtonComponent, ChipComponent, ChipComponent, FloatingActionButtonComponent, SplitButtonComponent] });
|
|
5653
5655
|
}
|
|
5654
5656
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, decorators: [{
|
|
@@ -5671,7 +5673,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5671
5673
|
*/
|
|
5672
5674
|
class SplitButtonModule {
|
|
5673
5675
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5674
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, imports: [SplitButtonComponent, SplitButtonCustomMessagesComponent], exports: [SplitButtonComponent, SplitButtonCustomMessagesComponent] });
|
|
5676
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, imports: [SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective], exports: [SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective] });
|
|
5675
5677
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [SplitButtonComponent] });
|
|
5676
5678
|
}
|
|
5677
5679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, decorators: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-buttons",
|
|
3
|
-
"version": "17.1.1-develop.
|
|
3
|
+
"version": "17.1.1-develop.3",
|
|
4
4
|
"description": "Buttons Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"@angular/core": "16 - 19",
|
|
26
26
|
"@angular/platform-browser": "16 - 19",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "17.1.1-develop.
|
|
29
|
-
"@progress/kendo-angular-l10n": "17.1.1-develop.
|
|
30
|
-
"@progress/kendo-angular-popup": "17.1.1-develop.
|
|
31
|
-
"@progress/kendo-angular-icons": "17.1.1-develop.
|
|
28
|
+
"@progress/kendo-angular-common": "17.1.1-develop.3",
|
|
29
|
+
"@progress/kendo-angular-l10n": "17.1.1-develop.3",
|
|
30
|
+
"@progress/kendo-angular-popup": "17.1.1-develop.3",
|
|
31
|
+
"@progress/kendo-angular-icons": "17.1.1-develop.3",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "17.1.1-develop.
|
|
36
|
+
"@progress/kendo-angular-schematics": "17.1.1-develop.3",
|
|
37
37
|
"@progress/kendo-common": "^1.0.1"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./splitbutton.component";
|
|
7
7
|
import * as i2 from "./localization/custom-messages.component";
|
|
8
|
+
import * as i3 from "@progress/kendo-angular-common";
|
|
8
9
|
/**
|
|
9
10
|
*
|
|
10
11
|
* The exported package module.
|
|
@@ -15,6 +16,6 @@ import * as i2 from "./localization/custom-messages.component";
|
|
|
15
16
|
*/
|
|
16
17
|
export declare class SplitButtonModule {
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, never, [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent]>;
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, never, [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent, typeof i3.ToggleButtonTabStopDirective], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent, typeof i3.ToggleButtonTabStopDirective]>;
|
|
19
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
|
|
20
21
|
}
|