@progress/kendo-angular-schematics 19.1.2-develop.3 → 19.1.2-develop.5
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/package.json +2 -2
- package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +2 -2
- package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +2 -2
- package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +2 -2
- package/src/utils/kendo-utils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-schematics",
|
|
3
|
-
"version": "19.1.2-develop.
|
|
3
|
+
"version": "19.1.2-develop.5",
|
|
4
4
|
"description": "Kendo UI Schematics for Angular",
|
|
5
5
|
"license": "SEE LICENSE in LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@progress/kendo-angular-schematics": "19.1.2-develop.
|
|
32
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.5",
|
|
33
33
|
"semver": "^7.5.3",
|
|
34
34
|
"@types/semver": "^7.5.0"
|
|
35
35
|
},
|
package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template
CHANGED
|
@@ -3,12 +3,12 @@ import { CommonModule } from '@angular/common';<% } %>
|
|
|
3
3
|
import { sampleData } from './<%= dasherize(name) %>.sample-data';
|
|
4
4
|
<% if (chartType == "circular") { %>
|
|
5
5
|
import { SeriesLabelsContentArgs} from '@progress/kendo-angular-charts';<% } %><% if (legend) {%>
|
|
6
|
-
import { LegendTitle <% if(standalone) {%>,
|
|
6
|
+
import { LegendTitle <% if(standalone) {%>, KENDO_CHARTS<%}%>} from '@progress/kendo-angular-charts';<% } %>
|
|
7
7
|
|
|
8
8
|
@Component({<% if(!skipSelector) {%>
|
|
9
9
|
selector: '<%= selector %>',<%}%><% if(standalone) {%>
|
|
10
10
|
standalone: true,
|
|
11
|
-
imports: [CommonModule<% if(standalone) {%>,
|
|
11
|
+
imports: [CommonModule<% if(standalone) {%>, KENDO_CHARTS<%}%>],<%}%><% if(inlineTemplate) { %>
|
|
12
12
|
template: `<%= include("chart.html.include") %>`<% } else { %>
|
|
13
13
|
templateUrl: './<%= dasherize(name) %><%= type ? '.' + dasherize(type): '' %>.html'<% } if(inlineStyle) { %>,
|
|
14
14
|
styles: [<% if(displayBlock){ %>
|
package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template
CHANGED
|
@@ -3,12 +3,12 @@ import { CommonModule } from '@angular/common';<% } %><% if (dataSource === "Exa
|
|
|
3
3
|
import { products } from './<%= dasherize(name) %>.sample-data'; <% } %><% if (dataSource === "Mock Data") {%>
|
|
4
4
|
import data from './<%= dasherize(name) %>.sample-data';<% } %><% if (editing) {%>
|
|
5
5
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
6
|
-
import { CreateFormGroupArgs<% if(standalone) {%>,
|
|
6
|
+
import { CreateFormGroupArgs<% if(standalone) {%>, KENDO_GRID<%}%> } from '@progress/kendo-angular-grid';<% } %>
|
|
7
7
|
|
|
8
8
|
@Component({<% if(!skipSelector) {%>
|
|
9
9
|
selector: '<%= selector %>',<%}%><% if(standalone) {%>
|
|
10
10
|
standalone: true,
|
|
11
|
-
imports: [CommonModule<% if(standalone) {%>,
|
|
11
|
+
imports: [CommonModule<% if(standalone) {%>, KENDO_GRID<%}%>],<%}%><% if(inlineTemplate) { %>
|
|
12
12
|
template: `<%= include("grid.html.include") %>`<% } else { %>
|
|
13
13
|
templateUrl: './<%= dasherize(name) %><%= type ? '.' + dasherize(type): '' %>.html'<% } if(inlineStyle) { %>,
|
|
14
14
|
styles: [<% if(displayBlock){ %>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { <% if(changeDetection !== 'Default') { %>ChangeDetectionStrategy, <% }%>Component<% if(!!viewEncapsulation) { %>, ViewEncapsulation<% }%> } from '@angular/core';<% if(standalone) {%>
|
|
2
2
|
import { CommonModule } from '@angular/common';<% } %>
|
|
3
3
|
import { sampleData, displayDate } from './<%= dasherize(name) %>.sample-data';
|
|
4
|
-
import { SchedulerEvent<% if(standalone) {%>,
|
|
4
|
+
import { SchedulerEvent<% if(standalone) {%>, KENDO_SCHEDULER<%}%> } from '@progress/kendo-angular-scheduler';
|
|
5
5
|
|
|
6
6
|
@Component({<% if(!skipSelector) {%>
|
|
7
7
|
selector: '<%= selector %>',<%}%><% if(standalone) {%>
|
|
8
8
|
standalone: true,
|
|
9
|
-
imports: [CommonModule<% if(standalone) {%>,
|
|
9
|
+
imports: [CommonModule<% if(standalone) {%>, KENDO_SCHEDULER<%}%>],<%}%><% if(inlineTemplate) { %>
|
|
10
10
|
template: `<%= include("scheduler.html.include") %>`<% } else { %>
|
|
11
11
|
templateUrl: './<%= dasherize(name) %><%= type ? '.' + dasherize(type): '' %>.html'<% } if(inlineStyle) { %>,
|
|
12
12
|
styles: [<% if(displayBlock){ %>
|
package/src/utils/kendo-utils.js
CHANGED
|
@@ -56,7 +56,7 @@ function checkOrAddKendoTheme(options, project) {
|
|
|
56
56
|
(0, dependencies_1.addPackageJsonDependency)(tree, {
|
|
57
57
|
type: dependencies_1.NodeDependencyType.Dev,
|
|
58
58
|
name: '@progress/kendo-theme-default',
|
|
59
|
-
version: "^
|
|
59
|
+
version: "^11.0.2",
|
|
60
60
|
overwrite: true
|
|
61
61
|
});
|
|
62
62
|
}
|