@igniteui/angular-templates 16.0.1201 → 16.0.1202
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/igx-ts/bullet-graph/default/index.js +1 -1
- package/igx-ts/category-chart/default/index.js +1 -1
- package/igx-ts/custom-templates/awesome-grid/index.js +1 -1
- package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.scss +1 -1
- package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.ts +2 -2
- package/igx-ts/custom-templates/crm-grid/index.js +1 -1
- package/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/__filePrefix__.component.scss +1 -1
- package/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/__filePrefix__.component.ts +2 -2
- package/igx-ts/custom-templates/fintech-grid/index.js +3 -2
- package/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/__filePrefix__.component.scss +1 -1
- package/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/__filePrefix__.component.ts +2 -2
- package/igx-ts/custom-templates/fintech-tree-grid/index.js +2 -1
- package/igx-ts/financial-chart/default/index.js +1 -1
- package/igx-ts/linear-gauge/default/index.js +1 -1
- package/igx-ts/map/default/index.js +1 -1
- package/igx-ts/projects/_base/files/package.json +0 -1
- package/igx-ts/projects/_base/files/tsconfig.json +1 -1
- package/igx-ts/projects/side-nav-auth/files/package.json +0 -1
- package/igx-ts/radial-gauge/default/index.js +1 -1
- package/package.json +2 -2
|
@@ -15,7 +15,7 @@ class IgxBulletGraphTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
15
15
|
import: ["IgxBulletGraphModule"],
|
|
16
16
|
from: "igniteui-angular-gauges"
|
|
17
17
|
}];
|
|
18
|
-
this.packages = ["igniteui-angular-core@~
|
|
18
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-gauges@~16.0.0"];
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
module.exports = new IgxBulletGraphTemplate();
|
|
@@ -15,7 +15,7 @@ class IgxCategoryChartTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForA
|
|
|
15
15
|
{ import: "IgxCategoryChartModule", from: "igniteui-angular-charts" },
|
|
16
16
|
{ import: "FormsModule", from: "@angular/forms" }
|
|
17
17
|
];
|
|
18
|
-
this.packages = ["igniteui-angular-core@~
|
|
18
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-charts@~16.0.0"];
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
module.exports = new IgxCategoryChartTemplate();
|
|
@@ -33,7 +33,7 @@ class IgxGridAwesomeTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
33
33
|
},
|
|
34
34
|
{ import: "FormsModule", from: "@angular/forms" }
|
|
35
35
|
];
|
|
36
|
-
this.packages = ["igniteui-angular-core@~
|
|
36
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-charts@~16.0.0"];
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
module.exports = new IgxGridAwesomeTemplate();
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
import {
|
|
11
11
|
CloseScrollStrategy,
|
|
12
12
|
ConnectedPositioningStrategy,
|
|
13
|
-
|
|
13
|
+
GridSelectionMode,
|
|
14
14
|
HorizontalAlignment,
|
|
15
15
|
IColumnExportingEventArgs,
|
|
16
16
|
ColumnType,
|
|
@@ -54,7 +54,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
|
|
|
54
54
|
|
|
55
55
|
public searchText = '';
|
|
56
56
|
public caseSensitive = false;
|
|
57
|
-
public selectionMode:
|
|
57
|
+
public selectionMode: GridSelectionMode = 'multiple';
|
|
58
58
|
public displayType = SparklineDisplayType;
|
|
59
59
|
|
|
60
60
|
public positionSettings: PositionSettings = {
|
|
@@ -43,7 +43,7 @@ class IgxGridCRMTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAngular
|
|
|
43
43
|
},
|
|
44
44
|
{ import: "FormsModule", from: "@angular/forms" }
|
|
45
45
|
];
|
|
46
|
-
this.packages = ["igniteui-angular-core@~
|
|
46
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-charts@~16.0.0"];
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
module.exports = new IgxGridCRMTemplate();
|
package/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/__filePrefix__.component.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnI
|
|
|
2
2
|
import {
|
|
3
3
|
CellType,
|
|
4
4
|
DefaultSortingStrategy,
|
|
5
|
-
|
|
5
|
+
GridSelectionMode,
|
|
6
6
|
IButtonGroupEventArgs,
|
|
7
7
|
IChangeSwitchEventArgs,
|
|
8
8
|
IGridKeydownEventArgs,
|
|
@@ -36,7 +36,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit, OnDestroy
|
|
|
36
36
|
|
|
37
37
|
public showToolbar: boolean = false;
|
|
38
38
|
public properties: string[] = [];
|
|
39
|
-
public selectionMode:
|
|
39
|
+
public selectionMode: GridSelectionMode = 'multiple';
|
|
40
40
|
public chartType = CategoryChartType;
|
|
41
41
|
public theme: boolean = false;
|
|
42
42
|
public volume: number = 1000;
|
|
@@ -16,11 +16,12 @@ class IgxFinTechGridTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
16
16
|
{
|
|
17
17
|
import: [
|
|
18
18
|
"IgxButtonGroupModule",
|
|
19
|
-
"IgxButtonModule",
|
|
20
19
|
"IgxDialogModule",
|
|
20
|
+
"IgxFocusModule",
|
|
21
21
|
"IgxGridModule",
|
|
22
22
|
"IgxIconModule",
|
|
23
23
|
"IgxRippleModule",
|
|
24
|
+
"IgxSelectModule",
|
|
24
25
|
"IgxSliderModule",
|
|
25
26
|
"IgxSwitchModule",
|
|
26
27
|
"IgxToggleModule"
|
|
@@ -29,7 +30,7 @@ class IgxFinTechGridTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
29
30
|
},
|
|
30
31
|
{ import: "FormsModule", from: "@angular/forms" }
|
|
31
32
|
];
|
|
32
|
-
this.packages = ["igniteui-angular-core@~
|
|
33
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-charts@~16.0.0"];
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
module.exports = new IgxFinTechGridTemplate();
|
package/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/__filePrefix__.component.ts
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
AbsoluteScrollStrategy,
|
|
7
7
|
ConnectedPositioningStrategy,
|
|
8
|
-
|
|
8
|
+
GridSelectionMode,
|
|
9
9
|
HorizontalAlignment,
|
|
10
10
|
IButtonGroupEventArgs,
|
|
11
11
|
IChangeSwitchEventArgs,
|
|
@@ -35,7 +35,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit, OnDestroy
|
|
|
35
35
|
@ViewChild('slider2', { static: true }) public intervalSlider!: IgxSliderComponent;
|
|
36
36
|
|
|
37
37
|
public showToolbar: boolean = true;
|
|
38
|
-
public selectionMode:
|
|
38
|
+
public selectionMode: GridSelectionMode = 'multiple';
|
|
39
39
|
public theme: boolean = false;
|
|
40
40
|
public volume: number = 1000;
|
|
41
41
|
public frequency: number = 500;
|
|
@@ -15,8 +15,9 @@ class IgxTreeGridFinTechTemplate extends IgniteUIForAngularTemplate_1.IgniteUIFo
|
|
|
15
15
|
{ provide: "IgxExcelExporterService", from: "<%=igxPackage%>" },
|
|
16
16
|
{
|
|
17
17
|
import: [
|
|
18
|
+
"IgxButtonGroupModule",
|
|
18
19
|
"IgxCheckboxModule",
|
|
19
|
-
"
|
|
20
|
+
"IgxIconModule",
|
|
20
21
|
"IgxSwitchModule",
|
|
21
22
|
"IgxSliderModule"
|
|
22
23
|
],
|
|
@@ -13,7 +13,7 @@ class IgxFinancialChartTemplate extends IgniteUIForAngularTemplate_1.IgniteUIFor
|
|
|
13
13
|
this.dependencies = [
|
|
14
14
|
{ import: "IgxFinancialChartModule", from: "igniteui-angular-charts" }
|
|
15
15
|
];
|
|
16
|
-
this.packages = ["igniteui-angular-core@~
|
|
16
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-charts@~16.0.0"];
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
module.exports = new IgxFinancialChartTemplate();
|
|
@@ -17,7 +17,7 @@ class IgxLinearGaugeTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
17
17
|
from: "igniteui-angular-gauges"
|
|
18
18
|
}
|
|
19
19
|
];
|
|
20
|
-
this.packages = ["igniteui-angular-core@~
|
|
20
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-gauges@~16.0.0"];
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
module.exports = new IgxLinearGaugeTemplate();
|
|
@@ -21,7 +21,7 @@ class IgxGeographicMapTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForA
|
|
|
21
21
|
from: "igniteui-angular-charts"
|
|
22
22
|
}
|
|
23
23
|
];
|
|
24
|
-
this.packages = ["igniteui-angular-core@~
|
|
24
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-charts@~16.0.0", "igniteui-angular-maps@~16.0.0"];
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
module.exports = new IgxGeographicMapTemplate();
|
|
@@ -17,7 +17,7 @@ class IgxRadialGaugeTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
17
17
|
from: "igniteui-angular-gauges"
|
|
18
18
|
}
|
|
19
19
|
];
|
|
20
|
-
this.packages = ["igniteui-angular-core@~
|
|
20
|
+
this.packages = ["igniteui-angular-core@~16.0.0", "igniteui-angular-gauges@~16.0.0"];
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
module.exports = new IgxRadialGaugeTemplate();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.1202",
|
|
4
4
|
"description": "Templates for Ignite UI for Angular projects and components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "Infragistics",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@igniteui/cli-core": "~12.0.
|
|
15
|
+
"@igniteui/cli-core": "~12.0.2",
|
|
16
16
|
"typescript": "~4.7.2"
|
|
17
17
|
}
|
|
18
18
|
}
|