@progress/kendo-angular-gantt 16.7.2-develop.1 → 16.8.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/esm2020/gantt.module.mjs
CHANGED
|
@@ -8,7 +8,6 @@ import { DialogContainerService, DialogService, WindowContainerService, WindowSe
|
|
|
8
8
|
import { CalendarDOMService, CenturyViewService, DayPeriodService, DecadeViewService, HoursService, MillisecondsService, MinutesService, MonthViewService, NavigationService, SecondsService, TimePickerDOMService, WeekNamesService, YearViewService } from '@progress/kendo-angular-dateinputs';
|
|
9
9
|
import { L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
10
10
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
11
|
-
import { DragValidationTooltipComponent } from './dragging/drag-validation-tooltip.component';
|
|
12
11
|
import { IconsService } from '@progress/kendo-angular-icons';
|
|
13
12
|
import { ColumnResizingService } from '@progress/kendo-angular-treelist';
|
|
14
13
|
import { KENDO_GANTT } from './directives';
|
|
@@ -110,7 +109,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
110
109
|
args: [{
|
|
111
110
|
imports: [...KENDO_GANTT],
|
|
112
111
|
exports: [...KENDO_GANTT],
|
|
113
|
-
entryComponents: [DragValidationTooltipComponent],
|
|
114
112
|
providers: [{
|
|
115
113
|
provide: L10N_PREFIX,
|
|
116
114
|
useValue: 'kendo.gantt'
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-gantt',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1724164445,
|
|
13
|
+
version: '16.8.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -40,8 +40,8 @@ const packageMetadata = {
|
|
|
40
40
|
name: '@progress/kendo-angular-gantt',
|
|
41
41
|
productName: 'Kendo UI for Angular',
|
|
42
42
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
43
|
-
publishDate:
|
|
44
|
-
version: '16.
|
|
43
|
+
publishDate: 1724164445,
|
|
44
|
+
version: '16.8.0-develop.2',
|
|
45
45
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
46
46
|
};
|
|
47
47
|
|
|
@@ -7363,59 +7363,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7363
7363
|
type: Output
|
|
7364
7364
|
}] } });
|
|
7365
7365
|
|
|
7366
|
-
/**
|
|
7367
|
-
* @hidden
|
|
7368
|
-
*/
|
|
7369
|
-
class DragValidationTooltipComponent {
|
|
7370
|
-
constructor() {
|
|
7371
|
-
/**
|
|
7372
|
-
* Sets the status class of the attempted operation.
|
|
7373
|
-
* Note that the status will be ignored and the `neutral` status class will be rendered,
|
|
7374
|
-
* if the any of the fromTaskName or toTaskName are not populated.
|
|
7375
|
-
*/
|
|
7376
|
-
this.isValid = false;
|
|
7377
|
-
}
|
|
7378
|
-
}
|
|
7379
|
-
DragValidationTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7380
|
-
DragValidationTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DragValidationTooltipComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
7381
|
-
<div
|
|
7382
|
-
class="k-tooltip k-gantt-tooltip-validation"
|
|
7383
|
-
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7384
|
-
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7385
|
-
>
|
|
7386
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7387
|
-
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7388
|
-
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7389
|
-
</div>
|
|
7390
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7391
|
-
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7392
|
-
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7393
|
-
</div>
|
|
7394
|
-
</div>
|
|
7395
|
-
`, isInline: true });
|
|
7396
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, decorators: [{
|
|
7397
|
-
type: Component,
|
|
7398
|
-
args: [{
|
|
7399
|
-
template: `
|
|
7400
|
-
<div
|
|
7401
|
-
class="k-tooltip k-gantt-tooltip-validation"
|
|
7402
|
-
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7403
|
-
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7404
|
-
>
|
|
7405
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7406
|
-
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7407
|
-
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7408
|
-
</div>
|
|
7409
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7410
|
-
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7411
|
-
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7412
|
-
</div>
|
|
7413
|
-
</div>
|
|
7414
|
-
`,
|
|
7415
|
-
standalone: true
|
|
7416
|
-
}]
|
|
7417
|
-
}] });
|
|
7418
|
-
|
|
7419
7366
|
/**
|
|
7420
7367
|
* A directive which binds the Gantt to an array of objects by using
|
|
7421
7368
|
* an ID and parent ID field to define the hierarchy.
|
|
@@ -7497,6 +7444,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7497
7444
|
type: Input
|
|
7498
7445
|
}] } });
|
|
7499
7446
|
|
|
7447
|
+
/**
|
|
7448
|
+
* @hidden
|
|
7449
|
+
*/
|
|
7450
|
+
class DragValidationTooltipComponent {
|
|
7451
|
+
constructor() {
|
|
7452
|
+
/**
|
|
7453
|
+
* Sets the status class of the attempted operation.
|
|
7454
|
+
* Note that the status will be ignored and the `neutral` status class will be rendered,
|
|
7455
|
+
* if the any of the fromTaskName or toTaskName are not populated.
|
|
7456
|
+
*/
|
|
7457
|
+
this.isValid = false;
|
|
7458
|
+
}
|
|
7459
|
+
}
|
|
7460
|
+
DragValidationTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7461
|
+
DragValidationTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DragValidationTooltipComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
7462
|
+
<div
|
|
7463
|
+
class="k-tooltip k-gantt-tooltip-validation"
|
|
7464
|
+
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7465
|
+
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7466
|
+
>
|
|
7467
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7468
|
+
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7469
|
+
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7470
|
+
</div>
|
|
7471
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7472
|
+
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7473
|
+
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7474
|
+
</div>
|
|
7475
|
+
</div>
|
|
7476
|
+
`, isInline: true });
|
|
7477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, decorators: [{
|
|
7478
|
+
type: Component,
|
|
7479
|
+
args: [{
|
|
7480
|
+
template: `
|
|
7481
|
+
<div
|
|
7482
|
+
class="k-tooltip k-gantt-tooltip-validation"
|
|
7483
|
+
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7484
|
+
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7485
|
+
>
|
|
7486
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7487
|
+
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7488
|
+
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7489
|
+
</div>
|
|
7490
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7491
|
+
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7492
|
+
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7493
|
+
</div>
|
|
7494
|
+
</div>
|
|
7495
|
+
`,
|
|
7496
|
+
standalone: true
|
|
7497
|
+
}]
|
|
7498
|
+
}] });
|
|
7499
|
+
|
|
7500
7500
|
/**
|
|
7501
7501
|
* When added to the .k-task-dot, the element will be kept with hover styles.
|
|
7502
7502
|
* Used for the drag clue from which the dragging has started.
|
|
@@ -8181,7 +8181,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8181
8181
|
args: [{
|
|
8182
8182
|
imports: [...KENDO_GANTT],
|
|
8183
8183
|
exports: [...KENDO_GANTT],
|
|
8184
|
-
entryComponents: [DragValidationTooltipComponent],
|
|
8185
8184
|
providers: [{
|
|
8186
8185
|
provide: L10N_PREFIX,
|
|
8187
8186
|
useValue: 'kendo.gantt'
|
|
@@ -40,8 +40,8 @@ const packageMetadata = {
|
|
|
40
40
|
name: '@progress/kendo-angular-gantt',
|
|
41
41
|
productName: 'Kendo UI for Angular',
|
|
42
42
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
43
|
-
publishDate:
|
|
44
|
-
version: '16.
|
|
43
|
+
publishDate: 1724164445,
|
|
44
|
+
version: '16.8.0-develop.2',
|
|
45
45
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
46
46
|
};
|
|
47
47
|
|
|
@@ -7328,59 +7328,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7328
7328
|
type: Output
|
|
7329
7329
|
}] } });
|
|
7330
7330
|
|
|
7331
|
-
/**
|
|
7332
|
-
* @hidden
|
|
7333
|
-
*/
|
|
7334
|
-
class DragValidationTooltipComponent {
|
|
7335
|
-
constructor() {
|
|
7336
|
-
/**
|
|
7337
|
-
* Sets the status class of the attempted operation.
|
|
7338
|
-
* Note that the status will be ignored and the `neutral` status class will be rendered,
|
|
7339
|
-
* if the any of the fromTaskName or toTaskName are not populated.
|
|
7340
|
-
*/
|
|
7341
|
-
this.isValid = false;
|
|
7342
|
-
}
|
|
7343
|
-
}
|
|
7344
|
-
DragValidationTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7345
|
-
DragValidationTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DragValidationTooltipComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
7346
|
-
<div
|
|
7347
|
-
class="k-tooltip k-gantt-tooltip-validation"
|
|
7348
|
-
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7349
|
-
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7350
|
-
>
|
|
7351
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7352
|
-
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7353
|
-
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7354
|
-
</div>
|
|
7355
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7356
|
-
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7357
|
-
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7358
|
-
</div>
|
|
7359
|
-
</div>
|
|
7360
|
-
`, isInline: true });
|
|
7361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, decorators: [{
|
|
7362
|
-
type: Component,
|
|
7363
|
-
args: [{
|
|
7364
|
-
template: `
|
|
7365
|
-
<div
|
|
7366
|
-
class="k-tooltip k-gantt-tooltip-validation"
|
|
7367
|
-
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7368
|
-
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7369
|
-
>
|
|
7370
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7371
|
-
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7372
|
-
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7373
|
-
</div>
|
|
7374
|
-
<div class="k-gantt-tooltip-validation-row">
|
|
7375
|
-
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7376
|
-
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7377
|
-
</div>
|
|
7378
|
-
</div>
|
|
7379
|
-
`,
|
|
7380
|
-
standalone: true
|
|
7381
|
-
}]
|
|
7382
|
-
}] });
|
|
7383
|
-
|
|
7384
7331
|
/**
|
|
7385
7332
|
* A directive which binds the Gantt to an array of objects by using
|
|
7386
7333
|
* an ID and parent ID field to define the hierarchy.
|
|
@@ -7462,6 +7409,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7462
7409
|
type: Input
|
|
7463
7410
|
}] } });
|
|
7464
7411
|
|
|
7412
|
+
/**
|
|
7413
|
+
* @hidden
|
|
7414
|
+
*/
|
|
7415
|
+
class DragValidationTooltipComponent {
|
|
7416
|
+
constructor() {
|
|
7417
|
+
/**
|
|
7418
|
+
* Sets the status class of the attempted operation.
|
|
7419
|
+
* Note that the status will be ignored and the `neutral` status class will be rendered,
|
|
7420
|
+
* if the any of the fromTaskName or toTaskName are not populated.
|
|
7421
|
+
*/
|
|
7422
|
+
this.isValid = false;
|
|
7423
|
+
}
|
|
7424
|
+
}
|
|
7425
|
+
DragValidationTooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7426
|
+
DragValidationTooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DragValidationTooltipComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
7427
|
+
<div
|
|
7428
|
+
class="k-tooltip k-gantt-tooltip-validation"
|
|
7429
|
+
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7430
|
+
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7431
|
+
>
|
|
7432
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7433
|
+
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7434
|
+
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7435
|
+
</div>
|
|
7436
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7437
|
+
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7438
|
+
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7439
|
+
</div>
|
|
7440
|
+
</div>
|
|
7441
|
+
`, isInline: true });
|
|
7442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragValidationTooltipComponent, decorators: [{
|
|
7443
|
+
type: Component,
|
|
7444
|
+
args: [{
|
|
7445
|
+
template: `
|
|
7446
|
+
<div
|
|
7447
|
+
class="k-tooltip k-gantt-tooltip-validation"
|
|
7448
|
+
[class.k-gantt-tooltip-valid]="showValidityStatus && isValid"
|
|
7449
|
+
[class.k-gantt-tooltip-invalid]="showValidityStatus && !isValid"
|
|
7450
|
+
>
|
|
7451
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7452
|
+
<span class="k-gantt-tooltip-validation-label">From:</span>
|
|
7453
|
+
<span class="k-gantt-tooltip-validation-value">{{ fromTaskName }}</span>
|
|
7454
|
+
</div>
|
|
7455
|
+
<div class="k-gantt-tooltip-validation-row">
|
|
7456
|
+
<span class="k-gantt-tooltip-validation-label">To:</span>
|
|
7457
|
+
<span class="k-gantt-tooltip-validation-value">{{ toTaskName }}</span>
|
|
7458
|
+
</div>
|
|
7459
|
+
</div>
|
|
7460
|
+
`,
|
|
7461
|
+
standalone: true
|
|
7462
|
+
}]
|
|
7463
|
+
}] });
|
|
7464
|
+
|
|
7465
7465
|
/**
|
|
7466
7466
|
* When added to the .k-task-dot, the element will be kept with hover styles.
|
|
7467
7467
|
* Used for the drag clue from which the dragging has started.
|
|
@@ -8146,7 +8146,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8146
8146
|
args: [{
|
|
8147
8147
|
imports: [...KENDO_GANTT],
|
|
8148
8148
|
exports: [...KENDO_GANTT],
|
|
8149
|
-
entryComponents: [DragValidationTooltipComponent],
|
|
8150
8149
|
providers: [{
|
|
8151
8150
|
provide: L10N_PREFIX,
|
|
8152
8151
|
useValue: 'kendo.gantt'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gantt",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.8.0-develop.2",
|
|
4
4
|
"description": "Kendo UI Angular Gantt",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,24 +25,24 @@
|
|
|
25
25
|
"@angular/platform-browser": "15 - 18",
|
|
26
26
|
"@progress/kendo-data-query": "^1.5.5",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-buttons": "16.
|
|
29
|
-
"@progress/kendo-angular-common": "16.
|
|
30
|
-
"@progress/kendo-angular-dialog": "16.
|
|
31
|
-
"@progress/kendo-angular-dropdowns": "16.
|
|
32
|
-
"@progress/kendo-angular-grid": "16.
|
|
33
|
-
"@progress/kendo-angular-icons": "16.
|
|
34
|
-
"@progress/kendo-angular-inputs": "16.
|
|
35
|
-
"@progress/kendo-angular-intl": "16.
|
|
36
|
-
"@progress/kendo-angular-l10n": "16.
|
|
37
|
-
"@progress/kendo-angular-label": "16.
|
|
38
|
-
"@progress/kendo-angular-layout": "16.
|
|
39
|
-
"@progress/kendo-angular-popup": "16.
|
|
40
|
-
"@progress/kendo-angular-treelist": "16.
|
|
28
|
+
"@progress/kendo-angular-buttons": "16.8.0-develop.2",
|
|
29
|
+
"@progress/kendo-angular-common": "16.8.0-develop.2",
|
|
30
|
+
"@progress/kendo-angular-dialog": "16.8.0-develop.2",
|
|
31
|
+
"@progress/kendo-angular-dropdowns": "16.8.0-develop.2",
|
|
32
|
+
"@progress/kendo-angular-grid": "16.8.0-develop.2",
|
|
33
|
+
"@progress/kendo-angular-icons": "16.8.0-develop.2",
|
|
34
|
+
"@progress/kendo-angular-inputs": "16.8.0-develop.2",
|
|
35
|
+
"@progress/kendo-angular-intl": "16.8.0-develop.2",
|
|
36
|
+
"@progress/kendo-angular-l10n": "16.8.0-develop.2",
|
|
37
|
+
"@progress/kendo-angular-label": "16.8.0-develop.2",
|
|
38
|
+
"@progress/kendo-angular-layout": "16.8.0-develop.2",
|
|
39
|
+
"@progress/kendo-angular-popup": "16.8.0-develop.2",
|
|
40
|
+
"@progress/kendo-angular-treelist": "16.8.0-develop.2",
|
|
41
41
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"tslib": "^2.3.1",
|
|
45
|
-
"@progress/kendo-angular-schematics": "16.
|
|
45
|
+
"@progress/kendo-angular-schematics": "16.8.0-develop.2",
|
|
46
46
|
"@progress/kendo-common": "^0.2.1",
|
|
47
47
|
"@progress/kendo-date-math": "^1.5.2",
|
|
48
48
|
"@progress/kendo-draggable": "^3.0.0"
|
|
@@ -7,16 +7,16 @@ function default_1(options) {
|
|
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
8
8
|
peerDependencies: {
|
|
9
9
|
// peer deps of the treelist
|
|
10
|
-
'@progress/kendo-angular-dateinputs': '16.
|
|
11
|
-
'@progress/kendo-angular-excel-export': '16.
|
|
12
|
-
'@progress/kendo-angular-pdf-export': '16.
|
|
13
|
-
'@progress/kendo-angular-utils': '16.
|
|
10
|
+
'@progress/kendo-angular-dateinputs': '16.8.0-develop.2',
|
|
11
|
+
'@progress/kendo-angular-excel-export': '16.8.0-develop.2',
|
|
12
|
+
'@progress/kendo-angular-pdf-export': '16.8.0-develop.2',
|
|
13
|
+
'@progress/kendo-angular-utils': '16.8.0-develop.2',
|
|
14
14
|
'@progress/kendo-drawing': '^1.0.0',
|
|
15
15
|
// peer deps of the dropdowns
|
|
16
|
-
'@progress/kendo-angular-treeview': '16.
|
|
17
|
-
'@progress/kendo-angular-navigation': '16.
|
|
16
|
+
'@progress/kendo-angular-treeview': '16.8.0-develop.2',
|
|
17
|
+
'@progress/kendo-angular-navigation': '16.8.0-develop.2',
|
|
18
18
|
// peer dep of the layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '16.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '16.8.0-develop.2',
|
|
20
20
|
// peer dep of the icons
|
|
21
21
|
'@progress/kendo-svg-icons': '^3.0.0'
|
|
22
22
|
} });
|