@progress/kendo-angular-buttons 17.1.1-develop.1 → 17.1.1-develop.10

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.
@@ -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 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]>;
51
52
  static ɵinj: i0.ɵɵInjectorDeclaration<ButtonsModule>;
52
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];
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];
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";
@@ -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,14 +54,14 @@ 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, 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] });
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: [{
60
61
  type: NgModule,
61
62
  args: [{
62
- imports: [...KENDO_BUTTONS],
63
- exports: [...KENDO_BUTTONS],
63
+ imports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
64
+ exports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
64
65
  providers: [IconsService, PopupService, ResizeBatchService]
65
66
  }]
66
67
  }] });
@@ -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
  */
@@ -59,7 +60,8 @@ export const KENDO_FLOATINGACTIONBUTTON = [
59
60
  */
60
61
  export const KENDO_SPLITBUTTON = [
61
62
  SplitButtonComponent,
62
- SplitButtonCustomMessagesComponent
63
+ SplitButtonCustomMessagesComponent,
64
+ ToggleButtonTabStopDirective
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: 1732710294,
13
- version: '17.1.1-develop.1',
12
+ publishDate: 1733730094,
13
+ version: '17.1.1-develop.10',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -6,10 +6,11 @@ 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";
13
+ import * as i3 from "@progress/kendo-angular-common";
13
14
  //IMPORTANT: NgModule export kept for backwards compatibility
14
15
  /**
15
16
  *
@@ -21,14 +22,14 @@ 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, i3.ToggleButtonTabStopDirective], exports: [i1.SplitButtonComponent, i2.SplitButtonCustomMessagesComponent, i3.ToggleButtonTabStopDirective, 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: [{
28
29
  type: NgModule,
29
30
  args: [{
30
- exports: [...KENDO_SPLITBUTTON],
31
- imports: [...KENDO_SPLITBUTTON],
31
+ exports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
32
+ imports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
32
33
  providers: [IconsService, PopupService, ResizeBatchService]
33
34
  }]
34
35
  }] });
@@ -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 { isDocumentAvailable, isFirefox, isSafari, isChanged, hasObservers, Keys, TemplateContextDirective, MultiTabStop, guid, isPresent as isPresent$1, EventsOutsideAngularDirective, anyChanged, ResizeBatchService } from '@progress/kendo-angular-common';
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, ToggleButtonTabStopDirective, ResizeBatchService, KENDO_TOGGLEBUTTONTABSTOP } 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: 1732710294,
46
- version: '17.1.1-develop.1',
46
+ publishDate: 1733730094,
47
+ version: '17.1.1-develop.10',
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
+ ToggleButtonTabStopDirective
5534
5536
  ];
5535
5537
  /**
5536
5538
  * Utility array that contains all `@progress/kendo-angular-buttons` related components and directives
@@ -5648,14 +5650,14 @@ 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, i12.ToggleButtonTabStopDirective], exports: [ButtonComponent, ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, ButtonItemTemplateDirective, ChipComponent, ChipComponent, ChipListComponent, FloatingActionButtonComponent, DialItemTemplateDirective, FloatingActionButtonTemplateDirective, SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective, 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: [{
5655
5657
  type: NgModule,
5656
5658
  args: [{
5657
- imports: [...KENDO_BUTTONS],
5658
- exports: [...KENDO_BUTTONS],
5659
+ imports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
5660
+ exports: [...KENDO_BUTTONS, ...KENDO_TOGGLEBUTTONTABSTOP],
5659
5661
  providers: [IconsService, PopupService, ResizeBatchService]
5660
5662
  }]
5661
5663
  }] });
@@ -5671,14 +5673,14 @@ 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, i12.ToggleButtonTabStopDirective], exports: [SplitButtonComponent, SplitButtonCustomMessagesComponent, i12.ToggleButtonTabStopDirective, 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: [{
5678
5680
  type: NgModule,
5679
5681
  args: [{
5680
- exports: [...KENDO_SPLITBUTTON],
5681
- imports: [...KENDO_SPLITBUTTON],
5682
+ exports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
5683
+ imports: [...KENDO_SPLITBUTTON, ...KENDO_TOGGLEBUTTONTABSTOP],
5682
5684
  providers: [IconsService, PopupService, ResizeBatchService]
5683
5685
  }]
5684
5686
  }] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-buttons",
3
- "version": "17.1.1-develop.1",
3
+ "version": "17.1.1-develop.10",
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.1",
29
- "@progress/kendo-angular-l10n": "17.1.1-develop.1",
30
- "@progress/kendo-angular-popup": "17.1.1-develop.1",
31
- "@progress/kendo-angular-icons": "17.1.1-develop.1",
28
+ "@progress/kendo-angular-common": "17.1.1-develop.10",
29
+ "@progress/kendo-angular-l10n": "17.1.1-develop.10",
30
+ "@progress/kendo-angular-popup": "17.1.1-develop.10",
31
+ "@progress/kendo-angular-icons": "17.1.1-develop.10",
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.1",
36
+ "@progress/kendo-angular-schematics": "17.1.1-develop.10",
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 i3.ToggleButtonTabStopDirective], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonCustomMessagesComponent, typeof i3.ToggleButtonTabStopDirective, typeof i3.ToggleButtonTabStopDirective]>;
19
20
  static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
20
21
  }