@progress/kendo-angular-scheduler 15.0.2-develop.8 → 15.1.0-develop.1
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/editing/recurrence/end-rule-radio-button.directive.d.ts +2 -2
- package/editing/recurrence/repeat-on-radio-button.directive.d.ts +2 -2
- package/esm2020/editing/recurrence/end-rule-radio-button.directive.mjs +4 -4
- package/esm2020/editing/recurrence/repeat-on-radio-button.directive.mjs +4 -4
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-scheduler.mjs +10 -10
- package/fesm2020/progress-kendo-angular-scheduler.mjs +10 -10
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +2 -2
|
@@ -17,13 +17,13 @@ export declare class EndRuleRadioButtonDirective implements OnInit, AfterContent
|
|
|
17
17
|
radioClass: boolean;
|
|
18
18
|
radioSizeClass: boolean;
|
|
19
19
|
endRuleId: string;
|
|
20
|
-
private
|
|
20
|
+
private destroyClick;
|
|
21
21
|
private endRule;
|
|
22
22
|
constructor(el: ElementRef, renderer: Renderer2, recurrence: RecurrenceService, changeDetector: ChangeDetectorRef);
|
|
23
23
|
ngOnInit(): void;
|
|
24
24
|
ngAfterContentChecked(): void;
|
|
25
25
|
ngOnDestroy(): void;
|
|
26
|
-
|
|
26
|
+
onClick(): void;
|
|
27
27
|
private setCheckedState;
|
|
28
28
|
get elem(): any;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<EndRuleRadioButtonDirective, never>;
|
|
@@ -17,14 +17,14 @@ export declare class RepeatOnRadioButtonDirective implements OnInit, AfterConten
|
|
|
17
17
|
radioClass: boolean;
|
|
18
18
|
radioSizeClass: boolean;
|
|
19
19
|
set repeatOnRule(value: string);
|
|
20
|
-
private
|
|
20
|
+
private destroyClick;
|
|
21
21
|
private _repeatOnRule;
|
|
22
22
|
private _uniqueId;
|
|
23
23
|
constructor(el: ElementRef, renderer: Renderer2, recurrence: RecurrenceService, changeDetector: ChangeDetectorRef);
|
|
24
24
|
ngOnInit(): void;
|
|
25
25
|
ngAfterContentChecked(): void;
|
|
26
26
|
ngOnDestroy(): void;
|
|
27
|
-
|
|
27
|
+
onClick(): void;
|
|
28
28
|
private setCheckedState;
|
|
29
29
|
get elem(): any;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeatOnRadioButtonDirective, never>;
|
|
@@ -18,7 +18,7 @@ export class EndRuleRadioButtonDirective {
|
|
|
18
18
|
this.type = 'radio';
|
|
19
19
|
this.radioClass = true;
|
|
20
20
|
this.radioSizeClass = true;
|
|
21
|
-
this.
|
|
21
|
+
this.destroyClick = this.renderer.listen(this.elem, 'click', this.onClick.bind(this));
|
|
22
22
|
}
|
|
23
23
|
ngOnInit() {
|
|
24
24
|
this.endRule = this.endRuleId.split('-')[2];
|
|
@@ -29,11 +29,11 @@ export class EndRuleRadioButtonDirective {
|
|
|
29
29
|
this.setCheckedState();
|
|
30
30
|
}
|
|
31
31
|
ngOnDestroy() {
|
|
32
|
-
if (this.
|
|
33
|
-
this.
|
|
32
|
+
if (this.destroyClick) {
|
|
33
|
+
this.destroyClick();
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
-
|
|
36
|
+
onClick() {
|
|
37
37
|
if (this.elem.checked) {
|
|
38
38
|
this.recurrence.endRule = this.endRule;
|
|
39
39
|
this.changeDetector.markForCheck();
|
|
@@ -18,7 +18,7 @@ export class RepeatOnRadioButtonDirective {
|
|
|
18
18
|
this.type = 'radio';
|
|
19
19
|
this.radioClass = true;
|
|
20
20
|
this.radioSizeClass = true;
|
|
21
|
-
this.
|
|
21
|
+
this.destroyClick = this.renderer.listen(this.elem, 'click', this.onClick.bind(this));
|
|
22
22
|
}
|
|
23
23
|
set repeatOnRule(value) {
|
|
24
24
|
const parts = value.split('-');
|
|
@@ -33,11 +33,11 @@ export class RepeatOnRadioButtonDirective {
|
|
|
33
33
|
this.setCheckedState();
|
|
34
34
|
}
|
|
35
35
|
ngOnDestroy() {
|
|
36
|
-
if (this.
|
|
37
|
-
this.
|
|
36
|
+
if (this.destroyClick) {
|
|
37
|
+
this.destroyClick();
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
|
|
40
|
+
onClick() {
|
|
41
41
|
if (this.elem.checked) {
|
|
42
42
|
this.recurrence.repeatOnRule = this._repeatOnRule;
|
|
43
43
|
this.changeDetector.markForCheck();
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-scheduler',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '15.0
|
|
12
|
+
publishDate: 1708505225,
|
|
13
|
+
version: '15.1.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '15.0
|
|
53
|
+
publishDate: 1708505225,
|
|
54
|
+
version: '15.1.0-develop.1',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -4056,7 +4056,7 @@ class RepeatOnRadioButtonDirective {
|
|
|
4056
4056
|
this.type = 'radio';
|
|
4057
4057
|
this.radioClass = true;
|
|
4058
4058
|
this.radioSizeClass = true;
|
|
4059
|
-
this.
|
|
4059
|
+
this.destroyClick = this.renderer.listen(this.elem, 'click', this.onClick.bind(this));
|
|
4060
4060
|
}
|
|
4061
4061
|
set repeatOnRule(value) {
|
|
4062
4062
|
const parts = value.split('-');
|
|
@@ -4071,11 +4071,11 @@ class RepeatOnRadioButtonDirective {
|
|
|
4071
4071
|
this.setCheckedState();
|
|
4072
4072
|
}
|
|
4073
4073
|
ngOnDestroy() {
|
|
4074
|
-
if (this.
|
|
4075
|
-
this.
|
|
4074
|
+
if (this.destroyClick) {
|
|
4075
|
+
this.destroyClick();
|
|
4076
4076
|
}
|
|
4077
4077
|
}
|
|
4078
|
-
|
|
4078
|
+
onClick() {
|
|
4079
4079
|
if (this.elem.checked) {
|
|
4080
4080
|
this.recurrence.repeatOnRule = this._repeatOnRule;
|
|
4081
4081
|
this.changeDetector.markForCheck();
|
|
@@ -4560,7 +4560,7 @@ class EndRuleRadioButtonDirective {
|
|
|
4560
4560
|
this.type = 'radio';
|
|
4561
4561
|
this.radioClass = true;
|
|
4562
4562
|
this.radioSizeClass = true;
|
|
4563
|
-
this.
|
|
4563
|
+
this.destroyClick = this.renderer.listen(this.elem, 'click', this.onClick.bind(this));
|
|
4564
4564
|
}
|
|
4565
4565
|
ngOnInit() {
|
|
4566
4566
|
this.endRule = this.endRuleId.split('-')[2];
|
|
@@ -4571,11 +4571,11 @@ class EndRuleRadioButtonDirective {
|
|
|
4571
4571
|
this.setCheckedState();
|
|
4572
4572
|
}
|
|
4573
4573
|
ngOnDestroy() {
|
|
4574
|
-
if (this.
|
|
4575
|
-
this.
|
|
4574
|
+
if (this.destroyClick) {
|
|
4575
|
+
this.destroyClick();
|
|
4576
4576
|
}
|
|
4577
4577
|
}
|
|
4578
|
-
|
|
4578
|
+
onClick() {
|
|
4579
4579
|
if (this.elem.checked) {
|
|
4580
4580
|
this.recurrence.endRule = this.endRule;
|
|
4581
4581
|
this.changeDetector.markForCheck();
|
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '15.0
|
|
53
|
+
publishDate: 1708505225,
|
|
54
|
+
version: '15.1.0-develop.1',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -4016,7 +4016,7 @@ class RepeatOnRadioButtonDirective {
|
|
|
4016
4016
|
this.type = 'radio';
|
|
4017
4017
|
this.radioClass = true;
|
|
4018
4018
|
this.radioSizeClass = true;
|
|
4019
|
-
this.
|
|
4019
|
+
this.destroyClick = this.renderer.listen(this.elem, 'click', this.onClick.bind(this));
|
|
4020
4020
|
}
|
|
4021
4021
|
set repeatOnRule(value) {
|
|
4022
4022
|
const parts = value.split('-');
|
|
@@ -4031,11 +4031,11 @@ class RepeatOnRadioButtonDirective {
|
|
|
4031
4031
|
this.setCheckedState();
|
|
4032
4032
|
}
|
|
4033
4033
|
ngOnDestroy() {
|
|
4034
|
-
if (this.
|
|
4035
|
-
this.
|
|
4034
|
+
if (this.destroyClick) {
|
|
4035
|
+
this.destroyClick();
|
|
4036
4036
|
}
|
|
4037
4037
|
}
|
|
4038
|
-
|
|
4038
|
+
onClick() {
|
|
4039
4039
|
if (this.elem.checked) {
|
|
4040
4040
|
this.recurrence.repeatOnRule = this._repeatOnRule;
|
|
4041
4041
|
this.changeDetector.markForCheck();
|
|
@@ -4520,7 +4520,7 @@ class EndRuleRadioButtonDirective {
|
|
|
4520
4520
|
this.type = 'radio';
|
|
4521
4521
|
this.radioClass = true;
|
|
4522
4522
|
this.radioSizeClass = true;
|
|
4523
|
-
this.
|
|
4523
|
+
this.destroyClick = this.renderer.listen(this.elem, 'click', this.onClick.bind(this));
|
|
4524
4524
|
}
|
|
4525
4525
|
ngOnInit() {
|
|
4526
4526
|
this.endRule = this.endRuleId.split('-')[2];
|
|
@@ -4531,11 +4531,11 @@ class EndRuleRadioButtonDirective {
|
|
|
4531
4531
|
this.setCheckedState();
|
|
4532
4532
|
}
|
|
4533
4533
|
ngOnDestroy() {
|
|
4534
|
-
if (this.
|
|
4535
|
-
this.
|
|
4534
|
+
if (this.destroyClick) {
|
|
4535
|
+
this.destroyClick();
|
|
4536
4536
|
}
|
|
4537
4537
|
}
|
|
4538
|
-
|
|
4538
|
+
onClick() {
|
|
4539
4539
|
if (this.elem.checked) {
|
|
4540
4540
|
this.recurrence.endRule = this.endRule;
|
|
4541
4541
|
this.changeDetector.markForCheck();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "15.0
|
|
3
|
+
"version": "15.1.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,22 +26,22 @@
|
|
|
26
26
|
"@progress/kendo-data-query": "^1.0.0",
|
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-tooltip": "15.0
|
|
30
|
-
"@progress/kendo-angular-buttons": "15.0
|
|
31
|
-
"@progress/kendo-angular-common": "15.0
|
|
32
|
-
"@progress/kendo-angular-dateinputs": "15.0
|
|
33
|
-
"@progress/kendo-angular-dialog": "15.0
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "15.0
|
|
35
|
-
"@progress/kendo-angular-icons": "15.0
|
|
36
|
-
"@progress/kendo-angular-inputs": "15.0
|
|
37
|
-
"@progress/kendo-angular-intl": "15.0
|
|
38
|
-
"@progress/kendo-angular-l10n": "15.0
|
|
39
|
-
"@progress/kendo-angular-popup": "15.0
|
|
29
|
+
"@progress/kendo-angular-tooltip": "15.1.0-develop.1",
|
|
30
|
+
"@progress/kendo-angular-buttons": "15.1.0-develop.1",
|
|
31
|
+
"@progress/kendo-angular-common": "15.1.0-develop.1",
|
|
32
|
+
"@progress/kendo-angular-dateinputs": "15.1.0-develop.1",
|
|
33
|
+
"@progress/kendo-angular-dialog": "15.1.0-develop.1",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "15.1.0-develop.1",
|
|
35
|
+
"@progress/kendo-angular-icons": "15.1.0-develop.1",
|
|
36
|
+
"@progress/kendo-angular-inputs": "15.1.0-develop.1",
|
|
37
|
+
"@progress/kendo-angular-intl": "15.1.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-l10n": "15.1.0-develop.1",
|
|
39
|
+
"@progress/kendo-angular-popup": "15.1.0-develop.1",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "15.0
|
|
44
|
+
"@progress/kendo-angular-schematics": "15.1.0-develop.1",
|
|
45
45
|
"@progress/kendo-date-math": "^1.3.2",
|
|
46
46
|
"@progress/kendo-draggable": "^3.0.2",
|
|
47
47
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '15.0
|
|
7
|
+
'@progress/kendo-angular-treeview': '15.1.0-develop.1',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '15.0
|
|
9
|
+
'@progress/kendo-angular-dialog': '15.1.0-develop.1',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0'
|
|
12
12
|
} });
|