@progress/kendo-angular-buttons 17.1.1-develop.7 → 17.1.1-develop.9
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 +1 -1
- package/directives.d.ts +3 -2
- package/esm2022/buttons.module.mjs +4 -4
- package/esm2022/directives.mjs +2 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/splitbutton/splitbutton.module.mjs +4 -4
- package/fesm2022/progress-kendo-angular-buttons.mjs +10 -10
- package/package.json +6 -6
- package/splitbutton/splitbutton.module.d.ts +1 -1
package/buttons.module.d.ts
CHANGED
|
@@ -48,6 +48,6 @@ import * as i12 from "@progress/kendo-angular-common";
|
|
|
48
48
|
*/
|
|
49
49
|
export declare class ButtonsModule {
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonsModule, never>;
|
|
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
|
+
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 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, typeof i12.ToggleButtonTabStopDirective]>;
|
|
52
52
|
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonsModule>;
|
|
53
53
|
}
|
package/directives.d.ts
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 { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
16
17
|
/**
|
|
17
18
|
* Utility array that contains all `Button` related components and directives
|
|
18
19
|
*/
|
|
@@ -40,8 +41,8 @@ export declare const KENDO_FLOATINGACTIONBUTTON: readonly [typeof FloatingAction
|
|
|
40
41
|
/**
|
|
41
42
|
* Utility array that contains all `SplitButton` related components and directives
|
|
42
43
|
*/
|
|
43
|
-
export declare const KENDO_SPLITBUTTON: readonly [typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent, typeof
|
|
44
|
+
export declare const KENDO_SPLITBUTTON: readonly [typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent, typeof ToggleButtonTabStopDirective];
|
|
44
45
|
/**
|
|
45
46
|
* Utility array that contains all `@progress/kendo-angular-buttons` related components and directives
|
|
46
47
|
*/
|
|
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
|
|
48
|
+
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 ToggleButtonTabStopDirective];
|
|
@@ -6,7 +6,7 @@ import { NgModule } from '@angular/core';
|
|
|
6
6
|
import { KENDO_BUTTONS } from './directives';
|
|
7
7
|
import { IconsService } from '@progress/kendo-angular-icons';
|
|
8
8
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
9
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
|
+
import { KENDO_TOGGLEBUTTONTABSTOP, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
import * as i1 from "./button/button.component";
|
|
12
12
|
import * as i2 from "./buttongroup/buttongroup.component";
|
|
@@ -54,14 +54,14 @@ import * as i12 from "@progress/kendo-angular-common";
|
|
|
54
54
|
*/
|
|
55
55
|
export class ButtonsModule {
|
|
56
56
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
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
|
+
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, 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, i12.ToggleButtonTabStopDirective] });
|
|
58
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] });
|
|
59
59
|
}
|
|
60
60
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, decorators: [{
|
|
61
61
|
type: NgModule,
|
|
62
62
|
args: [{
|
|
63
|
-
imports: [...KENDO_BUTTONS],
|
|
64
|
-
exports: [...KENDO_BUTTONS],
|
|
63
|
+
imports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
64
|
+
exports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
65
65
|
providers: [IconsService, PopupService, ResizeBatchService]
|
|
66
66
|
}]
|
|
67
67
|
}] });
|
package/esm2022/directives.mjs
CHANGED
|
@@ -13,7 +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 {
|
|
16
|
+
import { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
17
17
|
/**
|
|
18
18
|
* Utility array that contains all `Button` related components and directives
|
|
19
19
|
*/
|
|
@@ -61,7 +61,7 @@ export const KENDO_FLOATINGACTIONBUTTON = [
|
|
|
61
61
|
export const KENDO_SPLITBUTTON = [
|
|
62
62
|
SplitButtonComponent,
|
|
63
63
|
SplitButtonCustomMessagesComponent,
|
|
64
|
-
|
|
64
|
+
ToggleButtonTabStopDirective
|
|
65
65
|
];
|
|
66
66
|
/**
|
|
67
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: 1733491995,
|
|
13
|
+
version: '17.1.1-develop.9',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -6,7 +6,7 @@ import { NgModule } from '@angular/core';
|
|
|
6
6
|
import { KENDO_SPLITBUTTON } from '../directives';
|
|
7
7
|
import { IconsService } from '@progress/kendo-angular-icons';
|
|
8
8
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
9
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
|
+
import { KENDO_TOGGLEBUTTONTABSTOP, 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";
|
|
@@ -22,14 +22,14 @@ import * as i3 from "@progress/kendo-angular-common";
|
|
|
22
22
|
*/
|
|
23
23
|
export class SplitButtonModule {
|
|
24
24
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
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
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, imports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent, i3.ToggleButtonTabStopDirective, i3.ToggleButtonTabStopDirective], exports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent, i3.ToggleButtonTabStopDirective, i3.ToggleButtonTabStopDirective] });
|
|
26
26
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [i1.SplitButtonComponent] });
|
|
27
27
|
}
|
|
28
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, decorators: [{
|
|
29
29
|
type: NgModule,
|
|
30
30
|
args: [{
|
|
31
|
-
exports: [...KENDO_SPLITBUTTON],
|
|
32
|
-
imports: [...KENDO_SPLITBUTTON],
|
|
31
|
+
exports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
32
|
+
imports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
33
33
|
providers: [IconsService, PopupService, ResizeBatchService]
|
|
34
34
|
}]
|
|
35
35
|
}] });
|
|
@@ -6,7 +6,7 @@ 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
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,
|
|
9
|
+
import { isDocumentAvailable, isFirefox, isSafari, isChanged, hasObservers, Keys, TemplateContextDirective, MultiTabStop, guid, isPresent as isPresent$1, EventsOutsideAngularDirective, anyChanged, ToggleButtonTabStopDirective, ResizeBatchService, KENDO_TOGGLEBUTTONTABSTOP } from '@progress/kendo-angular-common';
|
|
10
10
|
export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
11
11
|
import { caretAltDownIcon, xCircleIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
|
12
12
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
@@ -43,8 +43,8 @@ const packageMetadata = {
|
|
|
43
43
|
name: '@progress/kendo-angular-buttons',
|
|
44
44
|
productName: 'Kendo UI for Angular',
|
|
45
45
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
46
|
-
publishDate:
|
|
47
|
-
version: '17.1.1-develop.
|
|
46
|
+
publishDate: 1733491995,
|
|
47
|
+
version: '17.1.1-develop.9',
|
|
48
48
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
49
49
|
};
|
|
50
50
|
|
|
@@ -5532,7 +5532,7 @@ const KENDO_FLOATINGACTIONBUTTON = [
|
|
|
5532
5532
|
const KENDO_SPLITBUTTON = [
|
|
5533
5533
|
SplitButtonComponent,
|
|
5534
5534
|
SplitButtonCustomMessagesComponent,
|
|
5535
|
-
|
|
5535
|
+
ToggleButtonTabStopDirective
|
|
5536
5536
|
];
|
|
5537
5537
|
/**
|
|
5538
5538
|
* Utility array that contains all `@progress/kendo-angular-buttons` related components and directives
|
|
@@ -5650,14 +5650,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5650
5650
|
*/
|
|
5651
5651
|
class ButtonsModule {
|
|
5652
5652
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
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] });
|
|
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, i12.ToggleButtonTabStopDirective], exports: [ButtonComponent, ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, ButtonItemTemplateDirective, ChipComponent, ChipComponent, ChipListComponent, FloatingActionButtonComponent, DialItemTemplateDirective, FloatingActionButtonTemplateDirective, SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective, i12.ToggleButtonTabStopDirective] });
|
|
5654
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] });
|
|
5655
5655
|
}
|
|
5656
5656
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonsModule, decorators: [{
|
|
5657
5657
|
type: NgModule,
|
|
5658
5658
|
args: [{
|
|
5659
|
-
imports: [...KENDO_BUTTONS],
|
|
5660
|
-
exports: [...KENDO_BUTTONS],
|
|
5659
|
+
imports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
5660
|
+
exports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
5661
5661
|
providers: [IconsService, PopupService, ResizeBatchService]
|
|
5662
5662
|
}]
|
|
5663
5663
|
}] });
|
|
@@ -5673,14 +5673,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5673
5673
|
*/
|
|
5674
5674
|
class SplitButtonModule {
|
|
5675
5675
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
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] });
|
|
5676
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, imports: [SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective, i12.ToggleButtonTabStopDirective], exports: [SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective, i12.ToggleButtonTabStopDirective] });
|
|
5677
5677
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [SplitButtonComponent] });
|
|
5678
5678
|
}
|
|
5679
5679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SplitButtonModule, decorators: [{
|
|
5680
5680
|
type: NgModule,
|
|
5681
5681
|
args: [{
|
|
5682
|
-
exports: [...KENDO_SPLITBUTTON],
|
|
5683
|
-
imports: [...KENDO_SPLITBUTTON],
|
|
5682
|
+
exports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
5683
|
+
imports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
|
|
5684
5684
|
providers: [IconsService, PopupService, ResizeBatchService]
|
|
5685
5685
|
}]
|
|
5686
5686
|
}] });
|
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.9",
|
|
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.9",
|
|
29
|
+
"@progress/kendo-angular-l10n": "17.1.1-develop.9",
|
|
30
|
+
"@progress/kendo-angular-popup": "17.1.1-develop.9",
|
|
31
|
+
"@progress/kendo-angular-icons": "17.1.1-develop.9",
|
|
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.9",
|
|
37
37
|
"@progress/kendo-common": "^1.0.1"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
@@ -16,6 +16,6 @@ import * as i3 from "@progress/kendo-angular-common";
|
|
|
16
16
|
*/
|
|
17
17
|
export declare class SplitButtonModule {
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
|
|
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
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, never, [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent, typeof i3.ToggleButtonTabStopDirective, typeof i3.ToggleButtonTabStopDirective], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent, typeof i3.ToggleButtonTabStopDirective, typeof i3.ToggleButtonTabStopDirective]>;
|
|
20
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
|
|
21
21
|
}
|