@progress/kendo-angular-common 16.5.0 → 16.6.0-develop.2
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/adornments/adornments.module.d.ts +2 -1
- package/adornments/prefix.directive.d.ts +1 -1
- package/adornments/separator.component.d.ts +1 -1
- package/adornments/suffix.directive.d.ts +1 -1
- package/directives.d.ts +45 -0
- package/draggable/draggable.directive.d.ts +1 -1
- package/draggable/draggable.module.d.ts +2 -2
- package/esm2020/adornments/adornments.module.mjs +9 -7
- package/esm2020/adornments/prefix.directive.mjs +3 -2
- package/esm2020/adornments/separator.component.mjs +3 -2
- package/esm2020/adornments/suffix.directive.mjs +3 -2
- package/esm2020/directives.mjs +68 -0
- package/esm2020/draggable/draggable.directive.mjs +3 -2
- package/esm2020/draggable/draggable.module.mjs +4 -5
- package/esm2020/events/events-outside-angular.directive.mjs +3 -2
- package/esm2020/events/events.module.mjs +3 -2
- package/esm2020/index.mjs +2 -0
- package/esm2020/resize-sensor/resize-batch.service.mjs +5 -2
- package/esm2020/resize-sensor/resize-sensor.component.mjs +3 -2
- package/esm2020/resize-sensor/resize-sensor.module.mjs +6 -6
- package/esm2020/template-context/index.mjs +5 -0
- package/esm2020/template-context/template-context.directive.mjs +35 -0
- package/esm2020/toggle-button-tab-stop/toggle-button-tab-stop.directive.mjs +3 -2
- package/esm2020/toggle-button-tab-stop/toggle-button-tab-stop.module.mjs +6 -3
- package/esm2020/watermark/watermark.component.mjs +6 -4
- package/esm2020/watermark/watermark.module.mjs +4 -5
- package/events/events-outside-angular.directive.d.ts +1 -1
- package/events/events.module.d.ts +2 -1
- package/fesm2015/progress-kendo-angular-common.mjs +211 -109
- package/fesm2020/progress-kendo-angular-common.mjs +211 -109
- package/index.d.ts +2 -0
- package/package.json +2 -2
- package/resize-sensor/resize-sensor.component.d.ts +1 -1
- package/resize-sensor/resize-sensor.module.d.ts +3 -2
- package/template-context/index.d.ts +5 -0
- package/template-context/template-context.directive.d.ts +17 -0
- package/toggle-button-tab-stop/toggle-button-tab-stop.directive.d.ts +1 -1
- package/toggle-button-tab-stop/toggle-button-tab-stop.module.d.ts +5 -1
- package/watermark/watermark.component.d.ts +1 -1
- package/watermark/watermark.module.d.ts +2 -2
|
@@ -7,9 +7,8 @@ import { EventEmitter, Directive, Input, Output, NgModule, Injectable, Component
|
|
|
7
7
|
import { detectDesktopBrowser, detectMobileOS } from '@progress/kendo-common';
|
|
8
8
|
import { take, auditTime } from 'rxjs/operators';
|
|
9
9
|
import { Draggable } from '@progress/kendo-draggable';
|
|
10
|
-
import * as i1 from '@angular/common';
|
|
11
|
-
import { CommonModule } from '@angular/common';
|
|
12
10
|
import { merge, fromEvent, from, Subscription } from 'rxjs';
|
|
11
|
+
import { NgIf, NgStyle } from '@angular/common';
|
|
13
12
|
|
|
14
13
|
/**
|
|
15
14
|
* @hidden
|
|
@@ -227,11 +226,12 @@ class DraggableDirective {
|
|
|
227
226
|
}
|
|
228
227
|
}
|
|
229
228
|
DraggableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
230
|
-
DraggableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DraggableDirective, selector: "[kendoDraggable]", inputs: { enableDrag: "enableDrag" }, outputs: { kendoPress: "kendoPress", kendoDrag: "kendoDrag", kendoRelease: "kendoRelease" }, usesOnChanges: true, ngImport: i0 });
|
|
229
|
+
DraggableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DraggableDirective, isStandalone: true, selector: "[kendoDraggable]", inputs: { enableDrag: "enableDrag" }, outputs: { kendoPress: "kendoPress", kendoDrag: "kendoDrag", kendoRelease: "kendoRelease" }, usesOnChanges: true, ngImport: i0 });
|
|
231
230
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableDirective, decorators: [{
|
|
232
231
|
type: Directive,
|
|
233
232
|
args: [{
|
|
234
|
-
selector: '[kendoDraggable]'
|
|
233
|
+
selector: '[kendoDraggable]',
|
|
234
|
+
standalone: true
|
|
235
235
|
}]
|
|
236
236
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { enableDrag: [{
|
|
237
237
|
type: Input
|
|
@@ -245,18 +245,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
245
245
|
|
|
246
246
|
/**
|
|
247
247
|
* @hidden
|
|
248
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
248
249
|
*/
|
|
249
250
|
class DraggableModule {
|
|
250
251
|
}
|
|
251
252
|
DraggableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
252
|
-
DraggableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DraggableModule,
|
|
253
|
-
DraggableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableModule
|
|
253
|
+
DraggableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DraggableModule, imports: [DraggableDirective], exports: [DraggableDirective] });
|
|
254
|
+
DraggableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableModule });
|
|
254
255
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableModule, decorators: [{
|
|
255
256
|
type: NgModule,
|
|
256
257
|
args: [{
|
|
257
|
-
declarations: [DraggableDirective],
|
|
258
258
|
exports: [DraggableDirective],
|
|
259
|
-
imports: [
|
|
259
|
+
imports: [DraggableDirective]
|
|
260
260
|
}]
|
|
261
261
|
}] });
|
|
262
262
|
|
|
@@ -423,11 +423,12 @@ class EventsOutsideAngularDirective {
|
|
|
423
423
|
}
|
|
424
424
|
}
|
|
425
425
|
EventsOutsideAngularDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventsOutsideAngularDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
426
|
-
EventsOutsideAngularDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: { events: ["kendoEventsOutsideAngular", "events"], scope: "scope" }, ngImport: i0 });
|
|
426
|
+
EventsOutsideAngularDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EventsOutsideAngularDirective, isStandalone: true, selector: "[kendoEventsOutsideAngular]", inputs: { events: ["kendoEventsOutsideAngular", "events"], scope: "scope" }, ngImport: i0 });
|
|
427
427
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventsOutsideAngularDirective, decorators: [{
|
|
428
428
|
type: Directive,
|
|
429
429
|
args: [{
|
|
430
|
-
selector: '[kendoEventsOutsideAngular]'
|
|
430
|
+
selector: '[kendoEventsOutsideAngular]',
|
|
431
|
+
standalone: true
|
|
431
432
|
}]
|
|
432
433
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }]; }, propDecorators: { events: [{
|
|
433
434
|
type: Input,
|
|
@@ -438,16 +439,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
438
439
|
|
|
439
440
|
/**
|
|
440
441
|
* @hidden
|
|
442
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
441
443
|
*/
|
|
442
444
|
class EventsModule {
|
|
443
445
|
}
|
|
444
446
|
EventsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
445
|
-
EventsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: EventsModule,
|
|
447
|
+
EventsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: EventsModule, imports: [EventsOutsideAngularDirective], exports: [EventsOutsideAngularDirective] });
|
|
446
448
|
EventsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventsModule });
|
|
447
449
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EventsModule, decorators: [{
|
|
448
450
|
type: NgModule,
|
|
449
451
|
args: [{
|
|
450
|
-
|
|
452
|
+
imports: [EventsOutsideAngularDirective],
|
|
451
453
|
exports: [EventsOutsideAngularDirective]
|
|
452
454
|
}]
|
|
453
455
|
}] });
|
|
@@ -687,9 +689,12 @@ class ResizeBatchService {
|
|
|
687
689
|
}
|
|
688
690
|
}
|
|
689
691
|
ResizeBatchService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeBatchService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
690
|
-
ResizeBatchService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeBatchService });
|
|
692
|
+
ResizeBatchService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeBatchService, providedIn: 'root' });
|
|
691
693
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeBatchService, decorators: [{
|
|
692
|
-
type: Injectable
|
|
694
|
+
type: Injectable,
|
|
695
|
+
args: [{
|
|
696
|
+
providedIn: 'root'
|
|
697
|
+
}]
|
|
693
698
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
694
699
|
|
|
695
700
|
/**
|
|
@@ -737,12 +742,13 @@ class ResizeSensorComponent {
|
|
|
737
742
|
}
|
|
738
743
|
}
|
|
739
744
|
ResizeSensorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorComponent, deps: [{ token: ResizeBatchService }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
740
|
-
ResizeSensorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: { rateLimit: "rateLimit" }, outputs: { resize: "resize" }, ngImport: i0, template: '', isInline: true });
|
|
745
|
+
ResizeSensorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ResizeSensorComponent, isStandalone: true, selector: "kendo-resize-sensor", inputs: { rateLimit: "rateLimit" }, outputs: { resize: "resize" }, ngImport: i0, template: '', isInline: true });
|
|
741
746
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorComponent, decorators: [{
|
|
742
747
|
type: Component,
|
|
743
748
|
args: [{
|
|
744
749
|
selector: 'kendo-resize-sensor',
|
|
745
|
-
template: ''
|
|
750
|
+
template: '',
|
|
751
|
+
standalone: true
|
|
746
752
|
}]
|
|
747
753
|
}], ctorParameters: function () { return [{ type: ResizeBatchService }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { rateLimit: [{
|
|
748
754
|
type: Input
|
|
@@ -750,20 +756,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
750
756
|
type: Output
|
|
751
757
|
}] } });
|
|
752
758
|
|
|
753
|
-
const COMPONENT_DIRECTIVES = [ResizeSensorComponent];
|
|
754
759
|
/**
|
|
755
|
-
*
|
|
760
|
+
* @hidden
|
|
761
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
756
762
|
*/
|
|
757
763
|
class ResizeSensorModule {
|
|
758
764
|
}
|
|
759
765
|
ResizeSensorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
760
|
-
ResizeSensorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorModule,
|
|
761
|
-
ResizeSensorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorModule, providers: [ResizeBatchService] });
|
|
766
|
+
ResizeSensorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorModule, imports: [ResizeSensorComponent], exports: [ResizeSensorComponent] });
|
|
767
|
+
ResizeSensorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorModule, providers: [ResizeBatchService], imports: [ResizeSensorComponent] });
|
|
762
768
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeSensorModule, decorators: [{
|
|
763
769
|
type: NgModule,
|
|
764
770
|
args: [{
|
|
765
|
-
|
|
766
|
-
exports: [
|
|
771
|
+
imports: [ResizeSensorComponent],
|
|
772
|
+
exports: [ResizeSensorComponent],
|
|
767
773
|
providers: [ResizeBatchService]
|
|
768
774
|
}]
|
|
769
775
|
}] });
|
|
@@ -945,7 +951,7 @@ class WatermarkOverlayComponent {
|
|
|
945
951
|
}
|
|
946
952
|
}
|
|
947
953
|
WatermarkOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WatermarkOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
948
|
-
WatermarkOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", host: { properties: { "style": "this.watermarkStyle" } }, viewQueries: [{ propertyName: "banner", first: true, predicate: ["banner"], descendants: true }], ngImport: i0, template: `
|
|
954
|
+
WatermarkOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: WatermarkOverlayComponent, isStandalone: true, selector: "div[kendoWatermarkOverlay]", host: { properties: { "style": "this.watermarkStyle" } }, viewQueries: [{ propertyName: "banner", first: true, predicate: ["banner"], descendants: true }], ngImport: i0, template: `
|
|
949
955
|
<div #banner *ngIf="isOpen && bannerMounted" [ngStyle]="bannerStyles">
|
|
950
956
|
<span [ngStyle]="{ display: 'flex', alignSelf: 'center', marginRight: '8px' }">
|
|
951
957
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
@@ -971,7 +977,7 @@ WatermarkOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
971
977
|
</button>
|
|
972
978
|
</div>
|
|
973
979
|
</div>
|
|
974
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
980
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
975
981
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WatermarkOverlayComponent, decorators: [{
|
|
976
982
|
type: Component,
|
|
977
983
|
args: [{
|
|
@@ -1002,7 +1008,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1002
1008
|
</button>
|
|
1003
1009
|
</div>
|
|
1004
1010
|
</div>
|
|
1005
|
-
|
|
1011
|
+
`,
|
|
1012
|
+
standalone: true,
|
|
1013
|
+
imports: [NgIf, NgStyle]
|
|
1006
1014
|
}]
|
|
1007
1015
|
}], propDecorators: { watermarkStyle: [{
|
|
1008
1016
|
type: HostBinding,
|
|
@@ -1014,18 +1022,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1014
1022
|
|
|
1015
1023
|
/**
|
|
1016
1024
|
* @hidden
|
|
1025
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
1017
1026
|
*/
|
|
1018
1027
|
class WatermarkModule {
|
|
1019
1028
|
}
|
|
1020
1029
|
WatermarkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WatermarkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1021
|
-
WatermarkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: WatermarkModule,
|
|
1022
|
-
WatermarkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WatermarkModule, imports: [
|
|
1030
|
+
WatermarkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: WatermarkModule, imports: [WatermarkOverlayComponent], exports: [WatermarkOverlayComponent] });
|
|
1031
|
+
WatermarkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WatermarkModule, imports: [WatermarkOverlayComponent] });
|
|
1023
1032
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WatermarkModule, decorators: [{
|
|
1024
1033
|
type: NgModule,
|
|
1025
1034
|
args: [{
|
|
1026
|
-
declarations: [WatermarkOverlayComponent],
|
|
1027
1035
|
exports: [WatermarkOverlayComponent],
|
|
1028
|
-
imports: [
|
|
1036
|
+
imports: [WatermarkOverlayComponent]
|
|
1029
1037
|
}]
|
|
1030
1038
|
}] });
|
|
1031
1039
|
|
|
@@ -1078,11 +1086,12 @@ class PrefixTemplateDirective {
|
|
|
1078
1086
|
}
|
|
1079
1087
|
}
|
|
1080
1088
|
PrefixTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PrefixTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1081
|
-
PrefixTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PrefixTemplateDirective, selector: "[kendoPrefixTemplate]", inputs: { showSeparator: "showSeparator" }, ngImport: i0 });
|
|
1089
|
+
PrefixTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PrefixTemplateDirective, isStandalone: true, selector: "[kendoPrefixTemplate]", inputs: { showSeparator: "showSeparator" }, ngImport: i0 });
|
|
1082
1090
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PrefixTemplateDirective, decorators: [{
|
|
1083
1091
|
type: Directive,
|
|
1084
1092
|
args: [{
|
|
1085
|
-
selector: '[kendoPrefixTemplate]'
|
|
1093
|
+
selector: '[kendoPrefixTemplate]',
|
|
1094
|
+
standalone: true
|
|
1086
1095
|
}]
|
|
1087
1096
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
1088
1097
|
type: Optional
|
|
@@ -1129,11 +1138,12 @@ class SuffixTemplateDirective {
|
|
|
1129
1138
|
}
|
|
1130
1139
|
}
|
|
1131
1140
|
SuffixTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SuffixTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1132
|
-
SuffixTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SuffixTemplateDirective, selector: "[kendoSuffixTemplate]", inputs: { showSeparator: "showSeparator" }, ngImport: i0 });
|
|
1141
|
+
SuffixTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SuffixTemplateDirective, isStandalone: true, selector: "[kendoSuffixTemplate]", inputs: { showSeparator: "showSeparator" }, ngImport: i0 });
|
|
1133
1142
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SuffixTemplateDirective, decorators: [{
|
|
1134
1143
|
type: Directive,
|
|
1135
1144
|
args: [{
|
|
1136
|
-
selector: '[kendoSuffixTemplate]'
|
|
1145
|
+
selector: '[kendoSuffixTemplate]',
|
|
1146
|
+
standalone: true
|
|
1137
1147
|
}]
|
|
1138
1148
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
1139
1149
|
type: Optional
|
|
@@ -1176,12 +1186,13 @@ class SeparatorComponent {
|
|
|
1176
1186
|
}
|
|
1177
1187
|
}
|
|
1178
1188
|
SeparatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SeparatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1179
|
-
SeparatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SeparatorComponent, selector: "kendo-separator", inputs: { orientation: "orientation" }, host: { properties: { "class.k-input-separator-vertical": "this.vertical", "class.k-input-separator-horizontal": "this.horizontal", "class.k-input-separator": "this.hostClass" } }, ngImport: i0, template: ``, isInline: true });
|
|
1189
|
+
SeparatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SeparatorComponent, isStandalone: true, selector: "kendo-separator", inputs: { orientation: "orientation" }, host: { properties: { "class.k-input-separator-vertical": "this.vertical", "class.k-input-separator-horizontal": "this.horizontal", "class.k-input-separator": "this.hostClass" } }, ngImport: i0, template: ``, isInline: true });
|
|
1180
1190
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SeparatorComponent, decorators: [{
|
|
1181
1191
|
type: Component,
|
|
1182
1192
|
args: [{
|
|
1183
1193
|
selector: 'kendo-separator',
|
|
1184
|
-
template:
|
|
1194
|
+
template: ``,
|
|
1195
|
+
standalone: true
|
|
1185
1196
|
}]
|
|
1186
1197
|
}], propDecorators: { orientation: [{
|
|
1187
1198
|
type: Input
|
|
@@ -1199,79 +1210,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1199
1210
|
/**
|
|
1200
1211
|
* @hidden
|
|
1201
1212
|
*/
|
|
1202
|
-
class
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
}] });
|
|
1214
|
-
|
|
1215
|
-
class PreventableEvent {
|
|
1216
|
-
constructor() {
|
|
1217
|
-
this.prevented = false;
|
|
1218
|
-
}
|
|
1219
|
-
/**
|
|
1220
|
-
* Prevents the default action for a specified event.
|
|
1221
|
-
* In this way, the source component suppresses
|
|
1222
|
-
* the built-in behavior that follows the event.
|
|
1223
|
-
*/
|
|
1224
|
-
preventDefault() {
|
|
1225
|
-
this.prevented = true;
|
|
1226
|
-
}
|
|
1227
|
-
/**
|
|
1228
|
-
* Returns `true` if the event was prevented
|
|
1229
|
-
* by any of its subscribers.
|
|
1230
|
-
*
|
|
1231
|
-
* @returns `true` if the default action was prevented.
|
|
1232
|
-
* Otherwise, returns `false`.
|
|
1233
|
-
*/
|
|
1234
|
-
isDefaultPrevented() {
|
|
1235
|
-
return this.prevented;
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
const canCreateElement = () => isDocumentAvailable() && document.createElement;
|
|
1240
|
-
const propName = '--kendo-scrollbar-width';
|
|
1241
|
-
/**
|
|
1242
|
-
* @hidden
|
|
1243
|
-
*/
|
|
1244
|
-
const scrollbarWidth = () => {
|
|
1245
|
-
let scrollbarWidth = 0;
|
|
1246
|
-
if (canCreateElement()) {
|
|
1247
|
-
const div = document.createElement('div');
|
|
1248
|
-
div.style.cssText = 'overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block';
|
|
1249
|
-
div.innerHTML = ' ';
|
|
1250
|
-
document.body.appendChild(div);
|
|
1251
|
-
scrollbarWidth = div.offsetWidth - div.scrollWidth;
|
|
1252
|
-
document.body.removeChild(div);
|
|
1253
|
-
}
|
|
1254
|
-
return scrollbarWidth;
|
|
1255
|
-
};
|
|
1256
|
-
/**
|
|
1257
|
-
* @hidden
|
|
1258
|
-
*/
|
|
1259
|
-
class ScrollbarWidthService {
|
|
1260
|
-
constructor() {
|
|
1261
|
-
this.changes = new EventEmitter();
|
|
1262
|
-
if (typeof window !== 'undefined' && isDocumentAvailable()) {
|
|
1263
|
-
document.body.style.setProperty(propName, `${scrollbarWidth()}px`);
|
|
1213
|
+
class TemplateContextDirective {
|
|
1214
|
+
constructor(viewContainerRef) {
|
|
1215
|
+
this.viewContainerRef = viewContainerRef;
|
|
1216
|
+
}
|
|
1217
|
+
set templateContext(context) {
|
|
1218
|
+
if (this.insertedViewRef) {
|
|
1219
|
+
this.viewContainerRef.remove(this.viewContainerRef.indexOf(this.insertedViewRef));
|
|
1220
|
+
this.insertedViewRef = undefined;
|
|
1221
|
+
}
|
|
1222
|
+
if (context.templateRef) {
|
|
1223
|
+
this.insertedViewRef = this.viewContainerRef.createEmbeddedView(context.templateRef, context);
|
|
1264
1224
|
}
|
|
1265
1225
|
}
|
|
1266
1226
|
}
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1270
|
-
type:
|
|
1227
|
+
TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1228
|
+
TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TemplateContextDirective, isStandalone: true, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
|
|
1229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateContextDirective, decorators: [{
|
|
1230
|
+
type: Directive,
|
|
1271
1231
|
args: [{
|
|
1272
|
-
|
|
1232
|
+
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
1233
|
+
selector: '[templateContext]',
|
|
1234
|
+
standalone: true
|
|
1273
1235
|
}]
|
|
1274
|
-
}], ctorParameters: function () { return []; }
|
|
1236
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { templateContext: [{
|
|
1237
|
+
type: Input
|
|
1238
|
+
}] } });
|
|
1275
1239
|
|
|
1276
1240
|
/**
|
|
1277
1241
|
* @hidden
|
|
@@ -1469,11 +1433,12 @@ class ToggleButtonTabStopDirective {
|
|
|
1469
1433
|
}
|
|
1470
1434
|
}
|
|
1471
1435
|
ToggleButtonTabStopDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: MultiTabStop }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1472
|
-
ToggleButtonTabStopDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ToggleButtonTabStopDirective, selector: "[kendoToggleButtonTabStop]", inputs: { active: ["kendoToggleButtonTabStop", "active"], toggleButtonAriaLabel: "toggleButtonAriaLabel" }, usesOnChanges: true, ngImport: i0 });
|
|
1436
|
+
ToggleButtonTabStopDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ToggleButtonTabStopDirective, isStandalone: true, selector: "[kendoToggleButtonTabStop]", inputs: { active: ["kendoToggleButtonTabStop", "active"], toggleButtonAriaLabel: "toggleButtonAriaLabel" }, usesOnChanges: true, ngImport: i0 });
|
|
1473
1437
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopDirective, decorators: [{
|
|
1474
1438
|
type: Directive,
|
|
1475
1439
|
args: [{
|
|
1476
|
-
selector: '[kendoToggleButtonTabStop]'
|
|
1440
|
+
selector: '[kendoToggleButtonTabStop]',
|
|
1441
|
+
standalone: true
|
|
1477
1442
|
}]
|
|
1478
1443
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: MultiTabStop }]; }, propDecorators: { active: [{
|
|
1479
1444
|
type: Input,
|
|
@@ -1482,16 +1447,153 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1482
1447
|
type: Input
|
|
1483
1448
|
}] } });
|
|
1484
1449
|
|
|
1450
|
+
/**
|
|
1451
|
+
* @hidden
|
|
1452
|
+
*/
|
|
1453
|
+
const KENDO_ADORNMENTS = [
|
|
1454
|
+
PrefixTemplateDirective,
|
|
1455
|
+
SuffixTemplateDirective,
|
|
1456
|
+
SeparatorComponent
|
|
1457
|
+
];
|
|
1458
|
+
/**
|
|
1459
|
+
* @hidden
|
|
1460
|
+
*/
|
|
1461
|
+
const KENDO_COMMON = [
|
|
1462
|
+
...KENDO_ADORNMENTS,
|
|
1463
|
+
DraggableDirective,
|
|
1464
|
+
EventsOutsideAngularDirective,
|
|
1465
|
+
ResizeSensorComponent,
|
|
1466
|
+
ToggleButtonTabStopDirective,
|
|
1467
|
+
WatermarkOverlayComponent,
|
|
1468
|
+
];
|
|
1469
|
+
/**
|
|
1470
|
+
* @hidden
|
|
1471
|
+
*/
|
|
1472
|
+
const KENDO_DRAGGABLE = [
|
|
1473
|
+
DraggableDirective
|
|
1474
|
+
];
|
|
1475
|
+
/**
|
|
1476
|
+
* @hidden
|
|
1477
|
+
*/
|
|
1478
|
+
const KENDO_EVENTS = [
|
|
1479
|
+
EventsOutsideAngularDirective
|
|
1480
|
+
];
|
|
1481
|
+
/**
|
|
1482
|
+
* @hidden
|
|
1483
|
+
*/
|
|
1484
|
+
const KENDO_RESIZESENSOR = [
|
|
1485
|
+
ResizeSensorComponent
|
|
1486
|
+
];
|
|
1487
|
+
/**
|
|
1488
|
+
* @hidden
|
|
1489
|
+
*/
|
|
1490
|
+
const KENDO_TOGGLEBUTTONTABSTOP = [
|
|
1491
|
+
ToggleButtonTabStopDirective
|
|
1492
|
+
];
|
|
1493
|
+
/**
|
|
1494
|
+
* @hidden
|
|
1495
|
+
*/
|
|
1496
|
+
const KENDO_WATERMARK = [
|
|
1497
|
+
WatermarkOverlayComponent
|
|
1498
|
+
];
|
|
1499
|
+
/**
|
|
1500
|
+
* @hidden
|
|
1501
|
+
*/
|
|
1502
|
+
const KENDO_TEMPLATE_CONTEXT = [
|
|
1503
|
+
TemplateContextDirective
|
|
1504
|
+
];
|
|
1505
|
+
|
|
1506
|
+
/**
|
|
1507
|
+
* @hidden
|
|
1508
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
1509
|
+
*/
|
|
1510
|
+
class AdornmentsModule {
|
|
1511
|
+
}
|
|
1512
|
+
AdornmentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdornmentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1513
|
+
AdornmentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AdornmentsModule, imports: [PrefixTemplateDirective, SuffixTemplateDirective, SeparatorComponent], exports: [PrefixTemplateDirective, SuffixTemplateDirective, SeparatorComponent] });
|
|
1514
|
+
AdornmentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdornmentsModule, imports: [SeparatorComponent] });
|
|
1515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdornmentsModule, decorators: [{
|
|
1516
|
+
type: NgModule,
|
|
1517
|
+
args: [{
|
|
1518
|
+
imports: [...KENDO_ADORNMENTS],
|
|
1519
|
+
exports: [...KENDO_ADORNMENTS]
|
|
1520
|
+
}]
|
|
1521
|
+
}] });
|
|
1522
|
+
|
|
1523
|
+
class PreventableEvent {
|
|
1524
|
+
constructor() {
|
|
1525
|
+
this.prevented = false;
|
|
1526
|
+
}
|
|
1527
|
+
/**
|
|
1528
|
+
* Prevents the default action for a specified event.
|
|
1529
|
+
* In this way, the source component suppresses
|
|
1530
|
+
* the built-in behavior that follows the event.
|
|
1531
|
+
*/
|
|
1532
|
+
preventDefault() {
|
|
1533
|
+
this.prevented = true;
|
|
1534
|
+
}
|
|
1535
|
+
/**
|
|
1536
|
+
* Returns `true` if the event was prevented
|
|
1537
|
+
* by any of its subscribers.
|
|
1538
|
+
*
|
|
1539
|
+
* @returns `true` if the default action was prevented.
|
|
1540
|
+
* Otherwise, returns `false`.
|
|
1541
|
+
*/
|
|
1542
|
+
isDefaultPrevented() {
|
|
1543
|
+
return this.prevented;
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
const canCreateElement = () => isDocumentAvailable() && document.createElement;
|
|
1548
|
+
const propName = '--kendo-scrollbar-width';
|
|
1549
|
+
/**
|
|
1550
|
+
* @hidden
|
|
1551
|
+
*/
|
|
1552
|
+
const scrollbarWidth = () => {
|
|
1553
|
+
let scrollbarWidth = 0;
|
|
1554
|
+
if (canCreateElement()) {
|
|
1555
|
+
const div = document.createElement('div');
|
|
1556
|
+
div.style.cssText = 'overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block';
|
|
1557
|
+
div.innerHTML = ' ';
|
|
1558
|
+
document.body.appendChild(div);
|
|
1559
|
+
scrollbarWidth = div.offsetWidth - div.scrollWidth;
|
|
1560
|
+
document.body.removeChild(div);
|
|
1561
|
+
}
|
|
1562
|
+
return scrollbarWidth;
|
|
1563
|
+
};
|
|
1564
|
+
/**
|
|
1565
|
+
* @hidden
|
|
1566
|
+
*/
|
|
1567
|
+
class ScrollbarWidthService {
|
|
1568
|
+
constructor() {
|
|
1569
|
+
this.changes = new EventEmitter();
|
|
1570
|
+
if (typeof window !== 'undefined' && isDocumentAvailable()) {
|
|
1571
|
+
document.body.style.setProperty(propName, `${scrollbarWidth()}px`);
|
|
1572
|
+
}
|
|
1573
|
+
}
|
|
1574
|
+
}
|
|
1575
|
+
ScrollbarWidthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollbarWidthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1576
|
+
ScrollbarWidthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollbarWidthService, providedIn: 'root' });
|
|
1577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollbarWidthService, decorators: [{
|
|
1578
|
+
type: Injectable,
|
|
1579
|
+
args: [{
|
|
1580
|
+
providedIn: 'root'
|
|
1581
|
+
}]
|
|
1582
|
+
}], ctorParameters: function () { return []; } });
|
|
1583
|
+
|
|
1584
|
+
/**
|
|
1585
|
+
* @hidden
|
|
1586
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
1587
|
+
*/
|
|
1485
1588
|
class ToggleButtonTabStopModule {
|
|
1486
1589
|
}
|
|
1487
1590
|
ToggleButtonTabStopModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1488
|
-
ToggleButtonTabStopModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopModule,
|
|
1591
|
+
ToggleButtonTabStopModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopModule, imports: [ToggleButtonTabStopDirective], exports: [ToggleButtonTabStopDirective] });
|
|
1489
1592
|
ToggleButtonTabStopModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopModule });
|
|
1490
1593
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ToggleButtonTabStopModule, decorators: [{
|
|
1491
1594
|
type: NgModule,
|
|
1492
1595
|
args: [{
|
|
1493
|
-
imports: [],
|
|
1494
|
-
declarations: [ToggleButtonTabStopDirective],
|
|
1596
|
+
imports: [ToggleButtonTabStopDirective],
|
|
1495
1597
|
exports: [ToggleButtonTabStopDirective]
|
|
1496
1598
|
}]
|
|
1497
1599
|
}] });
|
|
@@ -1500,5 +1602,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1500
1602
|
* Generated bundle index. Do not edit.
|
|
1501
1603
|
*/
|
|
1502
1604
|
|
|
1503
|
-
export { AdornmentsModule, DraggableDirective, DraggableModule, EventsModule, EventsOutsideAngularDirective, KendoInput, Keys, MultiTabStop, PrefixTemplateDirective, PreventableEvent, ResizeBatchService, ResizeCompatService, ResizeObserverService, ResizeSensorComponent, ResizeSensorModule, ScrollbarWidthService, SeparatorComponent, SuffixTemplateDirective, ToggleButtonTabStopDirective, ToggleButtonTabStopModule, WatermarkModule, WatermarkOverlayComponent, anyChanged, applyAttributes, closest, closestBySelector, closestInScope, contains, findElement, findFocusable, findFocusableChild, focusableSelector, guid, hasClasses, hasObservers, isChanged, isControlRequired, isDocumentAvailable, isFirefox, isFocusable, isFocusableWithTabKey, isObject, isObjectPresent, isPresent, isSafari, isString, isVisible, matchesClasses, matchesNodeName, parseAttributes, parseCSSClassNames, removeHTMLAttributes, rtlScrollPosition, scrollbarWidth, setHTMLAttributes, shouldShowValidationUI, splitStringToArray };
|
|
1605
|
+
export { AdornmentsModule, DraggableDirective, DraggableModule, EventsModule, EventsOutsideAngularDirective, KENDO_ADORNMENTS, KENDO_COMMON, KENDO_DRAGGABLE, KENDO_EVENTS, KENDO_RESIZESENSOR, KENDO_TEMPLATE_CONTEXT, KENDO_TOGGLEBUTTONTABSTOP, KENDO_WATERMARK, KendoInput, Keys, MultiTabStop, PrefixTemplateDirective, PreventableEvent, ResizeBatchService, ResizeCompatService, ResizeObserverService, ResizeSensorComponent, ResizeSensorModule, ScrollbarWidthService, SeparatorComponent, SuffixTemplateDirective, TemplateContextDirective, ToggleButtonTabStopDirective, ToggleButtonTabStopModule, WatermarkModule, WatermarkOverlayComponent, anyChanged, applyAttributes, closest, closestBySelector, closestInScope, contains, findElement, findFocusable, findFocusableChild, focusableSelector, guid, hasClasses, hasObservers, isChanged, isControlRequired, isDocumentAvailable, isFirefox, isFocusable, isFocusableWithTabKey, isObject, isObjectPresent, isPresent, isSafari, isString, isVisible, matchesClasses, matchesNodeName, parseAttributes, parseCSSClassNames, removeHTMLAttributes, rtlScrollPosition, scrollbarWidth, setHTMLAttributes, shouldShowValidationUI, splitStringToArray };
|
|
1504
1606
|
|
package/index.d.ts
CHANGED
|
@@ -16,3 +16,5 @@ export * from './adornments';
|
|
|
16
16
|
export { PreventableEvent } from './preventable-event';
|
|
17
17
|
export { ScrollbarWidthService, scrollbarWidth } from './utils/scrollbar-width.service';
|
|
18
18
|
export * from './toggle-button-tab-stop';
|
|
19
|
+
export * from './directives';
|
|
20
|
+
export * from './template-context';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-common",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.2",
|
|
4
4
|
"description": "Kendo UI for Angular - Utility Package",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@progress/kendo-common": "^0.2.1",
|
|
24
24
|
"@progress/kendo-draggable": "^3.0.2",
|
|
25
25
|
"tslib": "^2.3.1",
|
|
26
|
-
"@progress/kendo-angular-schematics": "16.
|
|
26
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.2"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
@@ -28,5 +28,5 @@ export declare class ResizeSensorComponent implements OnDestroy, AfterViewChecke
|
|
|
28
28
|
ngOnDestroy(): void;
|
|
29
29
|
acceptSize(size?: any): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeSensorComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResizeSensorComponent, "kendo-resize-sensor", never, { "rateLimit": "rateLimit"; }, { "resize": "resize"; }, never, never,
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResizeSensorComponent, "kendo-resize-sensor", never, { "rateLimit": "rateLimit"; }, { "resize": "resize"; }, never, never, true, never>;
|
|
32
32
|
}
|
|
@@ -5,10 +5,11 @@
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./resize-sensor.component";
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* @hidden
|
|
9
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
9
10
|
*/
|
|
10
11
|
export declare class ResizeSensorModule {
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeSensorModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ResizeSensorModule, [typeof i1.ResizeSensorComponent],
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ResizeSensorModule, never, [typeof i1.ResizeSensorComponent], [typeof i1.ResizeSensorComponent]>;
|
|
13
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<ResizeSensorModule>;
|
|
14
15
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export { TemplateContextDirective } from './template-context.directive';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ViewContainerRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
*/
|
|
10
|
+
export declare class TemplateContextDirective {
|
|
11
|
+
set templateContext(context: any);
|
|
12
|
+
private insertedViewRef;
|
|
13
|
+
private viewContainerRef;
|
|
14
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateContextDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateContextDirective, "[templateContext]", never, { "templateContext": "templateContext"; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -68,5 +68,5 @@ export declare class ToggleButtonTabStopDirective {
|
|
|
68
68
|
private returnFocusToToggleButton;
|
|
69
69
|
private initializeObserver;
|
|
70
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonTabStopDirective, never>;
|
|
71
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ToggleButtonTabStopDirective, "[kendoToggleButtonTabStop]", never, { "active": "kendoToggleButtonTabStop"; "toggleButtonAriaLabel": "toggleButtonAriaLabel"; }, {}, never, never,
|
|
71
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ToggleButtonTabStopDirective, "[kendoToggleButtonTabStop]", never, { "active": "kendoToggleButtonTabStop"; "toggleButtonAriaLabel": "toggleButtonAriaLabel"; }, {}, never, never, true, never>;
|
|
72
72
|
}
|
|
@@ -4,8 +4,12 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./toggle-button-tab-stop.directive";
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
* IMPORTANT: NgModule export kept for backwards compatibility
|
|
10
|
+
*/
|
|
7
11
|
export declare class ToggleButtonTabStopModule {
|
|
8
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonTabStopModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleButtonTabStopModule, [typeof i1.ToggleButtonTabStopDirective],
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleButtonTabStopModule, never, [typeof i1.ToggleButtonTabStopDirective], [typeof i1.ToggleButtonTabStopDirective]>;
|
|
10
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToggleButtonTabStopModule>;
|
|
11
15
|
}
|
|
@@ -47,5 +47,5 @@ export declare class WatermarkOverlayComponent implements OnInit, AfterViewInit,
|
|
|
47
47
|
closeBanner(): void;
|
|
48
48
|
get isBannerRendered(): boolean;
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<WatermarkOverlayComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WatermarkOverlayComponent, "div[kendoWatermarkOverlay]", never, {}, {}, never, never,
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WatermarkOverlayComponent, "div[kendoWatermarkOverlay]", never, {}, {}, never, never, true, never>;
|
|
51
51
|
}
|