@igniteui/angular-templates 14.1.1010 → 15.0.1100-beta.0
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/chip/default/files/src/app/__path__/__filePrefix__.component.html +1 -1
- package/igx-ts/custom-templates/awesome-grid/files/src/app/__path__/__filePrefix__.component.scss +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.html +1 -1
- package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.scss +13 -12
- package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.ts +4 -4
- 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 +2 -8
- package/igx-ts/custom-templates/fintech-grid/index.js +1 -1
- package/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/__filePrefix__.component.scss +2 -6
- package/igx-ts/custom-templates/weather-forecast/files/src/app/__path__/__filePrefix__.component.html +2 -3
- package/igx-ts/financial-chart/default/index.js +1 -1
- package/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.component.ts +2 -2
- package/igx-ts/hierarchical-grid/hierarchical-grid-batch-editing/files/src/app/__path__/__filePrefix__.component.ts +4 -3
- package/igx-ts/hierarchical-grid/hierarchical-grid-custom/files/src/app/__path__/__filePrefix__.component.ts +2 -2
- 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/__dot__github/workflows/node.js.yml +2 -2
- package/igx-ts/projects/_base/files/__dot__gitignore +9 -14
- package/igx-ts/projects/_base/files/angular.json +4 -1
- package/igx-ts/projects/_base/files/package.json +25 -24
- package/igx-ts/projects/_base/files/src/index.html +1 -1
- package/igx-ts/projects/_base/files/src/styles.scss +1 -2
- package/igx-ts/projects/_base/files/tsconfig.json +5 -4
- package/igx-ts/projects/empty/files/src/app/home/home.component.html +7 -7
- package/igx-ts/projects/side-nav-auth/files/package.json +27 -26
- package/igx-ts/projects/side-nav-auth/files/src/index.html +1 -1
- package/igx-ts/radial-gauge/default/index.js +1 -1
- package/package.json +2 -2
- package/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/themes/_mixins.scss +0 -21
- package/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/themes/_mixins.scss +0 -21
- package/igx-ts/projects/_base/files/__dot__browserslistrc +0 -17
|
@@ -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@~14.
|
|
18
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-gauges@~14.2.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@~14.
|
|
18
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-charts@~14.2.0"];
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
module.exports = new IgxCategoryChartTemplate();
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<button #openButton igxButton="raised" (click)="toggleDropDown($event)" [igxDropDownItemNavigation]="dropdown">Talks</button>
|
|
18
18
|
<igx-drop-down #dropdown (selectionChanging)="itemSelection($event)">
|
|
19
19
|
<igx-drop-down-item *ngFor="let item of dropDownList" [value]="item.name">
|
|
20
|
-
<div class="
|
|
20
|
+
<div class="ig-drop-down__item-template">
|
|
21
21
|
<span>{{item.name}}</span>
|
|
22
22
|
</div>
|
|
23
23
|
</igx-drop-down-item>
|
|
@@ -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@~14.
|
|
36
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-charts@~14.2.0"];
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
module.exports = new IgxGridAwesomeTemplate();
|
package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.html
CHANGED
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
|
|
170
170
|
<igx-column field="estimated_sales" header="Possible Sales ($)" [sortable]="true" width="150" dataType="number"
|
|
171
171
|
[hasSummary]="false" [summaries]="dealsSummary" [resizable]="true" [filterable]="false">
|
|
172
|
-
<ng-template igxCell let-cell="
|
|
172
|
+
<ng-template igxCell let-cell="cell" let-val>
|
|
173
173
|
{{ formatValue(val) }}
|
|
174
174
|
</ng-template>
|
|
175
175
|
</igx-column>
|
package/igx-ts/custom-templates/crm-grid/files/src/app/__path__/__filePrefix__.component.scss
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
$crm-grid-palette: palette(
|
|
8
8
|
$primary: #09f,
|
|
9
|
-
$secondary: #ffbf00
|
|
9
|
+
$secondary: #ffbf00,
|
|
10
|
+
$surface: #333
|
|
10
11
|
);
|
|
11
12
|
@include theme($crm-grid-palette);
|
|
12
13
|
|
|
@@ -23,8 +24,8 @@
|
|
|
23
24
|
$search-theme: input-group-theme(
|
|
24
25
|
$search-background: color($crm-grid-palette, "primary", 600),
|
|
25
26
|
$idle-text-color: color($crm-grid-palette, "primary", 100),
|
|
26
|
-
$filled-text-color: color($crm-grid-palette, "
|
|
27
|
-
$focused-text-color: color($crm-grid-palette, "
|
|
27
|
+
$filled-text-color: color($crm-grid-palette, "gray", 600),
|
|
28
|
+
$focused-text-color: color($crm-grid-palette, "gray", 600)
|
|
28
29
|
);
|
|
29
30
|
|
|
30
31
|
$crm-grid-theme: grid-theme(
|
|
@@ -44,13 +45,13 @@
|
|
|
44
45
|
|
|
45
46
|
$crm-grid-search-button: button-theme(
|
|
46
47
|
$background: transparent,
|
|
47
|
-
$focus-background: color($crm-grid-palette, "
|
|
48
|
-
$hover-background: color($crm-grid-palette, "
|
|
48
|
+
$focus-background: color($crm-grid-palette, "gray", 200),
|
|
49
|
+
$hover-background: color($crm-grid-palette, "gray", 200)
|
|
49
50
|
);
|
|
50
51
|
|
|
51
52
|
$crm-input-drop-down: input-group-theme(
|
|
52
|
-
$placeholder-color: color($crm-grid-palette, "
|
|
53
|
-
$idle-text-color: color($crm-grid-palette, "
|
|
53
|
+
$placeholder-color: color($crm-grid-palette, "gray", 500),
|
|
54
|
+
$idle-text-color: color($crm-grid-palette, "gray", 900)
|
|
54
55
|
);
|
|
55
56
|
|
|
56
57
|
@include grid-toolbar($crm-grid-toolbar);
|
|
@@ -226,30 +227,30 @@
|
|
|
226
227
|
&:focus,
|
|
227
228
|
&.igx-input-group--focused {
|
|
228
229
|
igx-icon {
|
|
229
|
-
color: color($crm-grid-palette, '
|
|
230
|
+
color: color($crm-grid-palette, 'gray', 600);
|
|
230
231
|
}
|
|
231
232
|
|
|
232
233
|
.igx-input-group__bundle {
|
|
233
234
|
background: #fff;
|
|
234
|
-
color: color($crm-grid-palette, '
|
|
235
|
+
color: color($crm-grid-palette, 'gray', 600);
|
|
235
236
|
}
|
|
236
237
|
|
|
237
238
|
.igx-input-group__input {
|
|
238
239
|
&::placeholder {
|
|
239
|
-
color: color($crm-grid-palette, '
|
|
240
|
+
color: color($crm-grid-palette, 'gray', 600);
|
|
240
241
|
opacity: 1;
|
|
241
242
|
}
|
|
242
243
|
}
|
|
243
244
|
|
|
244
245
|
.igx-input-group__textarea,
|
|
245
246
|
.igx-input-group__input {
|
|
246
|
-
color: color($crm-grid-palette, '
|
|
247
|
+
color: color($crm-grid-palette, 'gray', 600);
|
|
247
248
|
}
|
|
248
249
|
|
|
249
250
|
.igx-button--icon {
|
|
250
251
|
&:focus,
|
|
251
252
|
&:active {
|
|
252
|
-
color: color($crm-grid-palette, '
|
|
253
|
+
color: color($crm-grid-palette, 'gray', 600);
|
|
253
254
|
}
|
|
254
255
|
}
|
|
255
256
|
}
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
GridSelectionMode,
|
|
14
14
|
HorizontalAlignment,
|
|
15
15
|
IColumnExportingEventArgs,
|
|
16
|
-
|
|
16
|
+
ColumnType,
|
|
17
17
|
IgxDateSummaryOperand,
|
|
18
18
|
IgxCsvExporterService,
|
|
19
19
|
IgxExcelExporterService,
|
|
@@ -48,7 +48,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
|
|
|
48
48
|
public earliestSummary = EarliestSummary;
|
|
49
49
|
public soonSummary = SoonSummary;
|
|
50
50
|
|
|
51
|
-
public cols!: QueryList<
|
|
51
|
+
public cols!: QueryList<ColumnType>;
|
|
52
52
|
public hiddenColsLength: number = 0;
|
|
53
53
|
public pinnedColsLength: number = 0;
|
|
54
54
|
|
|
@@ -106,7 +106,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
|
|
|
106
106
|
this.pinnedColsLength = this.cols.filter((col) => col.pinned).length;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
public toggleVisibility(col:
|
|
109
|
+
public toggleVisibility(col: ColumnType): void {
|
|
110
110
|
if (col.hidden) {
|
|
111
111
|
this.hiddenColsLength--;
|
|
112
112
|
} else {
|
|
@@ -115,7 +115,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
|
|
|
115
115
|
col.hidden = !col.hidden;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
public togglePin(col:
|
|
118
|
+
public togglePin(col: ColumnType, evt: any): void {
|
|
119
119
|
if (col.pinned) {
|
|
120
120
|
this.grid1.unpinColumn(col.field);
|
|
121
121
|
this.pinnedColsLength--;
|
|
@@ -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@~14.
|
|
46
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-charts@~14.2.0"];
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
module.exports = new IgxGridCRMTemplate();
|
package/igx-ts/custom-templates/fintech-grid/files/src/app/__path__/__filePrefix__.component.scss
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
@use '<%=igxPackage%>/theming' as *;
|
|
2
|
-
@use './themes/_mixins' as *;
|
|
3
2
|
|
|
4
3
|
:host {
|
|
5
4
|
display: block;
|
|
@@ -231,18 +230,13 @@
|
|
|
231
230
|
@include typography($font-family: $material-typeface, $type-scale: $material-type-scale);
|
|
232
231
|
|
|
233
232
|
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
$green-palette: palette($primary: #09f,$secondary: #72da67, $surface: #333);
|
|
233
|
+
$green-palette: palette($primary: #09f, $secondary: #72da67, $surface: #333);
|
|
237
234
|
|
|
238
235
|
:host {
|
|
239
236
|
::ng-deep {
|
|
240
237
|
|
|
241
|
-
@include scrollbar-love();
|
|
242
|
-
|
|
243
238
|
.fin-dark-theme {
|
|
244
|
-
@include dark-theme($
|
|
245
|
-
@include scrollbar-love(color($green-palette, 'surface'));
|
|
239
|
+
@include dark-theme($dark-palette);
|
|
246
240
|
background: #333;
|
|
247
241
|
|
|
248
242
|
igx-grid-cell {
|
|
@@ -29,7 +29,7 @@ class IgxFinTechGridTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAng
|
|
|
29
29
|
},
|
|
30
30
|
{ import: "FormsModule", from: "@angular/forms" }
|
|
31
31
|
];
|
|
32
|
-
this.packages = ["igniteui-angular-core@~14.
|
|
32
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-charts@~14.2.0"];
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
module.exports = new IgxFinTechGridTemplate();
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
@use '<%=igxPackage%>/theming' as *;
|
|
2
|
-
@use './themes/_mixins' as *;
|
|
3
2
|
|
|
4
3
|
:host ::ng-deep {
|
|
5
4
|
.finjs-icons {
|
|
@@ -210,7 +209,7 @@
|
|
|
210
209
|
@include theme($default-palette);
|
|
211
210
|
|
|
212
211
|
|
|
213
|
-
$green-palette: palette($primary: #09f
|
|
212
|
+
$green-palette: palette($primary: #09f, $secondary: #72da67, $surface: #333);
|
|
214
213
|
|
|
215
214
|
:host {
|
|
216
215
|
padding: 0 !important;
|
|
@@ -218,11 +217,8 @@ $green-palette: palette($primary: #09f,$secondary: #72da67, $surface: #333);
|
|
|
218
217
|
|
|
219
218
|
::ng-deep {
|
|
220
219
|
|
|
221
|
-
@include scrollbar-love();
|
|
222
|
-
|
|
223
220
|
.fin-dark-theme {
|
|
224
|
-
@include dark-theme($
|
|
225
|
-
@include scrollbar-love(color($green-palette, 'surface'));
|
|
221
|
+
@include dark-theme($dark-palette);
|
|
226
222
|
background: #333;
|
|
227
223
|
|
|
228
224
|
::-moz-placeholder {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<div class="sample-wrapper">
|
|
2
2
|
<igx-card>
|
|
3
3
|
<igx-card-header>
|
|
4
|
-
<h3 class="
|
|
5
|
-
<h5 class="
|
|
4
|
+
<h3 class="ig-card-header__title">{{data.city}}</h3>
|
|
5
|
+
<h5 class="ig-card-header__subtitle">{{data.dateTime}}, {{data.today.description}}</h5>
|
|
6
6
|
</igx-card-header>
|
|
7
7
|
<igx-card-content>
|
|
8
8
|
<div class="weather__main" *ngIf=data>
|
|
@@ -32,4 +32,3 @@
|
|
|
32
32
|
</igx-card-content>
|
|
33
33
|
</igx-card>
|
|
34
34
|
</div>
|
|
35
|
-
|
|
@@ -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@~14.
|
|
16
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-charts@~14.2.0"];
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
module.exports = new IgxFinancialChartTemplate();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ColumnType } from '<%=igxPackage%>';
|
|
3
3
|
import { Employee, employeesData } from './localData';
|
|
4
4
|
|
|
5
5
|
@Component({
|
|
@@ -15,7 +15,7 @@ export class <%=ClassName%>Component implements OnInit {
|
|
|
15
15
|
this.localData = employeesData;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
public onColumnInit(column:
|
|
18
|
+
public onColumnInit(column: ColumnType): void {
|
|
19
19
|
if (column.field === 'RegistererDate') {
|
|
20
20
|
column.formatter = (date => date.toLocaleDateString());
|
|
21
21
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Component, ViewChild } from '@angular/core';
|
|
2
2
|
import { IgxDialogComponent, IgxGridComponent, IgxHierarchicalGridComponent,
|
|
3
3
|
IgxRowIslandComponent, Transaction } from '<%=igxPackage%>';
|
|
4
|
+
import { GridType } from '<%=igxPackage%>/lib/grids/common/grid.interface';
|
|
4
5
|
import { SINGERS } from './data';
|
|
5
6
|
import { Singer } from './singer';
|
|
6
7
|
|
|
@@ -56,13 +57,13 @@ export class <%=ClassName%>Component {
|
|
|
56
57
|
|
|
57
58
|
public formatter = (a: number): number => a;
|
|
58
59
|
|
|
59
|
-
public undo(grid:
|
|
60
|
+
public undo(grid: GridType): void {
|
|
60
61
|
/* exit edit mode */
|
|
61
|
-
grid.endEdit(/* commit the edit transaction */ false);
|
|
62
|
+
grid.crudService.endEdit(/* commit the edit transaction */ false);
|
|
62
63
|
grid.transactions.undo();
|
|
63
64
|
}
|
|
64
65
|
|
|
65
|
-
public redo(grid:
|
|
66
|
+
public redo(grid: GridType): void {
|
|
66
67
|
grid.transactions.redo();
|
|
67
68
|
}
|
|
68
69
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ColumnType } from '<%=igxPackage%>';
|
|
3
3
|
import { ARTISTS, Artist } from './data';
|
|
4
4
|
|
|
5
5
|
@Component({
|
|
@@ -10,7 +10,7 @@ import { ARTISTS, Artist } from './data';
|
|
|
10
10
|
export class <%=ClassName%>Component {
|
|
11
11
|
public localData: Artist[] = ARTISTS;
|
|
12
12
|
|
|
13
|
-
public toggleColumn(col:
|
|
13
|
+
public toggleColumn(col: ColumnType, event: MouseEvent): void {
|
|
14
14
|
col.pinned ? col.unpin() : col.pin();
|
|
15
15
|
event.stopPropagation();
|
|
16
16
|
}
|
|
@@ -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@~14.
|
|
20
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-gauges@~14.2.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@~14.
|
|
24
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-charts@~14.2.0", "igniteui-angular-maps@~14.2.0"];
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
module.exports = new IgxGeographicMapTemplate();
|
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
strategy:
|
|
21
21
|
matrix:
|
|
22
|
-
node-version: [
|
|
22
|
+
node-version: [16.x, 18.x]
|
|
23
23
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
24
24
|
|
|
25
25
|
steps:
|
|
@@ -32,4 +32,4 @@ jobs:
|
|
|
32
32
|
- run: npm ci
|
|
33
33
|
- run: npm run lint
|
|
34
34
|
- run: npm run build
|
|
35
|
-
- run: npm run test -- --watch=false --browsers ChromeHeadless
|
|
35
|
+
- run: npm run test -- --watch=false --browsers ChromeHeadless
|
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# Compiled output
|
|
4
4
|
/dist
|
|
5
5
|
/tmp
|
|
6
6
|
/out-tsc
|
|
7
|
-
# Only exists if Bazel was run
|
|
8
7
|
/bazel-out
|
|
9
8
|
|
|
10
|
-
#
|
|
9
|
+
# Node
|
|
11
10
|
/node_modules
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
chrome-profiler-events*.json
|
|
15
|
-
speed-measure-plugin*.json
|
|
11
|
+
npm-debug.log
|
|
12
|
+
yarn-error.log
|
|
16
13
|
|
|
17
14
|
# IDEs and editors
|
|
18
|
-
|
|
15
|
+
.idea/
|
|
19
16
|
.project
|
|
20
17
|
.classpath
|
|
21
18
|
.c9/
|
|
@@ -23,7 +20,7 @@ speed-measure-plugin*.json
|
|
|
23
20
|
.settings/
|
|
24
21
|
*.sublime-workspace
|
|
25
22
|
|
|
26
|
-
#
|
|
23
|
+
# Visual Studio Code
|
|
27
24
|
.vscode/*
|
|
28
25
|
!.vscode/settings.json
|
|
29
26
|
!.vscode/tasks.json
|
|
@@ -31,17 +28,15 @@ speed-measure-plugin*.json
|
|
|
31
28
|
!.vscode/extensions.json
|
|
32
29
|
.history/*
|
|
33
30
|
|
|
34
|
-
#
|
|
31
|
+
# Miscellaneous
|
|
35
32
|
/.angular/cache
|
|
36
|
-
|
|
33
|
+
.sass-cache/
|
|
37
34
|
/connect.lock
|
|
38
35
|
/coverage
|
|
39
36
|
/libpeerconnection.log
|
|
40
|
-
npm-debug.log
|
|
41
|
-
yarn-error.log
|
|
42
37
|
testem.log
|
|
43
38
|
/typings
|
|
44
39
|
|
|
45
|
-
# System
|
|
40
|
+
# System files
|
|
46
41
|
.DS_Store
|
|
47
42
|
Thumbs.db
|
|
@@ -10,48 +10,49 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~
|
|
14
|
-
"@angular/common": "~
|
|
15
|
-
"@angular/compiler": "~
|
|
16
|
-
"@angular/core": "~
|
|
17
|
-
"@angular/forms": "~
|
|
18
|
-
"@angular/platform-browser": "~
|
|
19
|
-
"@angular/platform-browser-dynamic": "~
|
|
20
|
-
"@angular/router": "~
|
|
13
|
+
"@angular/animations": "~15.0.0",
|
|
14
|
+
"@angular/common": "~15.0.0",
|
|
15
|
+
"@angular/compiler": "~15.0.0",
|
|
16
|
+
"@angular/core": "~15.0.0",
|
|
17
|
+
"@angular/forms": "~15.0.0",
|
|
18
|
+
"@angular/platform-browser": "~15.0.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~15.0.0",
|
|
20
|
+
"@angular/router": "~15.0.0",
|
|
21
21
|
"hammerjs": "^2.0.8",
|
|
22
|
-
"igniteui-angular": "~
|
|
22
|
+
"igniteui-angular": "~15.0.0-rc.0",
|
|
23
|
+
"igniteui-theming": "~1.1.4",
|
|
23
24
|
"core-js": "^3.6.5",
|
|
24
|
-
"jszip": "^3.
|
|
25
|
+
"jszip": "^3.10.0",
|
|
25
26
|
"minireset.css": "~0.0.4",
|
|
26
27
|
"rxjs": "~7.5.0",
|
|
27
28
|
"tslib": "^2.3.0",
|
|
28
29
|
"zone.js": "~0.11.4"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~
|
|
32
|
-
"@angular-eslint/builder": "14.1.
|
|
33
|
-
"@angular-eslint/eslint-plugin": "14.1.
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "14.1.
|
|
35
|
-
"@angular-eslint/schematics": "14.1.
|
|
36
|
-
"@angular-eslint/template-parser": "14.1.
|
|
37
|
-
"@angular/cli": "~
|
|
38
|
-
"@angular/compiler-cli": "~
|
|
39
|
-
"@types/jasmine": "~4.
|
|
32
|
+
"@angular-devkit/build-angular": "~15.0.0",
|
|
33
|
+
"@angular-eslint/builder": "14.1.2",
|
|
34
|
+
"@angular-eslint/eslint-plugin": "14.1.2",
|
|
35
|
+
"@angular-eslint/eslint-plugin-template": "14.1.2",
|
|
36
|
+
"@angular-eslint/schematics": "14.1.2",
|
|
37
|
+
"@angular-eslint/template-parser": "14.1.2",
|
|
38
|
+
"@angular/cli": "~15.0.0",
|
|
39
|
+
"@angular/compiler-cli": "~15.0.0",
|
|
40
|
+
"@types/jasmine": "~4.3.0",
|
|
40
41
|
"@types/node": "^12.11.1",
|
|
41
42
|
"@typescript-eslint/eslint-plugin": "5.3.0",
|
|
42
43
|
"@typescript-eslint/parser": "5.3.0",
|
|
43
44
|
"codelyzer": "^6.0.0",
|
|
44
45
|
"eslint": "^8.1.0",
|
|
45
46
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
46
|
-
"jasmine-core": "~4.
|
|
47
|
+
"jasmine-core": "~4.5.0",
|
|
47
48
|
"jasmine-spec-reporter": "~7.0.0",
|
|
48
|
-
"karma": "~6.
|
|
49
|
+
"karma": "~6.4.0",
|
|
49
50
|
"karma-chrome-launcher": "~3.1.0",
|
|
50
51
|
"karma-coverage": "~2.2.0",
|
|
51
|
-
"karma-jasmine": "~5.
|
|
52
|
-
"karma-jasmine-html-reporter": "~
|
|
52
|
+
"karma-jasmine": "~5.1.0",
|
|
53
|
+
"karma-jasmine-html-reporter": "~2.0.0",
|
|
53
54
|
"protractor": "~7.0.0",
|
|
54
55
|
"ts-node": "~9.1.1",
|
|
55
|
-
"typescript": "~4.
|
|
56
|
+
"typescript": "~4.8.2"
|
|
56
57
|
}
|
|
57
58
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
12
|
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
13
|
</head>
|
|
14
|
-
<body class="
|
|
14
|
+
<body class="ig-typography ig-scrollbar">
|
|
15
15
|
<app-root></app-root>
|
|
16
16
|
</body>
|
|
17
17
|
</html>
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/* You can add global styles to this file, and also import other style files */
|
|
2
2
|
// Standard CSS normalize, comment out if not required or using a different module
|
|
3
|
-
@use "
|
|
4
|
-
@forward "~minireset.css/minireset";
|
|
3
|
+
@use "minireset.css/minireset";
|
|
5
4
|
|
|
6
5
|
<%=CustomTheme%>
|
|
7
6
|
html, body {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"baseUrl": "./",
|
|
6
6
|
"outDir": "./dist/out-tsc",
|
|
7
7
|
"forceConsistentCasingInFileNames": true,
|
|
8
|
-
"strict":
|
|
8
|
+
"strict": false,
|
|
9
9
|
"noImplicitReturns": true,
|
|
10
10
|
"noFallthroughCasesInSwitch": true,
|
|
11
11
|
"sourceMap": true,
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
"experimentalDecorators": true,
|
|
15
15
|
"moduleResolution": "node",
|
|
16
16
|
"importHelpers": true,
|
|
17
|
-
"target": "
|
|
18
|
-
"module": "
|
|
17
|
+
"target": "ES2022",
|
|
18
|
+
"module": "ES2022",
|
|
19
|
+
"useDefineForClassFields": false,
|
|
19
20
|
"lib": [
|
|
20
|
-
"
|
|
21
|
+
"ES2022",
|
|
21
22
|
"dom"
|
|
22
23
|
]
|
|
23
24
|
},
|
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
<h1 class="content__header content__subject">Welcome to Ignite UI for Angular!</h1>
|
|
3
3
|
<h4 class="content__subject">50+ Material-based UI Components</h4>
|
|
4
4
|
<img src="../../assets/indigo-design.svg" class="content__image">
|
|
5
|
-
<p class="
|
|
5
|
+
<p class="ig-typography__subtitle-1">Discover more at</p>
|
|
6
6
|
<p>
|
|
7
|
-
<a href="https://www.infragistics.com/products/ignite-ui-angular" target="_blank" class="content__link
|
|
7
|
+
<a href="https://www.infragistics.com/products/ignite-ui-angular" target="_blank" class="content__link ig-typography__body-2">
|
|
8
8
|
www.infragistics.com/products/ignite-ui-angular
|
|
9
9
|
</a>
|
|
10
10
|
</p>
|
|
11
11
|
<p>
|
|
12
|
-
<a href="https://www.infragistics.com/products/indigo-design" target="_blank" class="content__link
|
|
12
|
+
<a href="https://www.infragistics.com/products/indigo-design" target="_blank" class="content__link ig-typography__body-2">
|
|
13
13
|
www.infragistics.com/products/indigo-design
|
|
14
14
|
</a>
|
|
15
15
|
</p>
|
|
16
|
-
<p class="
|
|
16
|
+
<p class="ig-typography__subtitle-1">We are also on GitHub</p>
|
|
17
17
|
<p class="content__container--wide">
|
|
18
|
-
<a href="https://github.com/IgniteUI/igniteui-angular" target="_blank" class="content__link--github
|
|
18
|
+
<a href="https://github.com/IgniteUI/igniteui-angular" target="_blank" class="content__link--github ig-typography__body-2">
|
|
19
19
|
<span class="content__link-image"></span>Ignite UI for Angular
|
|
20
20
|
</a>
|
|
21
|
-
<a href="https://github.com/IgniteUI/igniteui-cli" target="_blank" class="content__link--github
|
|
21
|
+
<a href="https://github.com/IgniteUI/igniteui-cli" target="_blank" class="content__link--github ig-typography__body-2">
|
|
22
22
|
<span class="content__link-image"></span>Ignite UI CLI
|
|
23
23
|
</a>
|
|
24
24
|
</p>
|
|
25
|
-
</div>
|
|
25
|
+
</div>
|
|
@@ -10,37 +10,38 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~
|
|
14
|
-
"@angular/common": "~
|
|
15
|
-
"@angular/compiler": "~
|
|
16
|
-
"@angular/core": "~
|
|
17
|
-
"@angular/forms": "~
|
|
18
|
-
"@angular/platform-browser": "~
|
|
19
|
-
"@angular/platform-browser-dynamic": "~
|
|
20
|
-
"@angular/router": "~
|
|
13
|
+
"@angular/animations": "~15.0.0",
|
|
14
|
+
"@angular/common": "~15.0.0",
|
|
15
|
+
"@angular/compiler": "~15.0.0",
|
|
16
|
+
"@angular/core": "~15.0.0",
|
|
17
|
+
"@angular/forms": "~15.0.0",
|
|
18
|
+
"@angular/platform-browser": "~15.0.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~15.0.0",
|
|
20
|
+
"@angular/router": "~15.0.0",
|
|
21
21
|
"angular-auth-oidc-client": "^9.0.3",
|
|
22
22
|
"hammerjs": "^2.0.8",
|
|
23
|
-
"igniteui-angular": "~
|
|
24
|
-
"
|
|
23
|
+
"igniteui-angular": "~15.0.0-rc.0",
|
|
24
|
+
"igniteui-theming": "~1.1.4",
|
|
25
|
+
"core-js": "^3.25.1",
|
|
25
26
|
"jszip": "^3.5.0",
|
|
26
27
|
"minireset.css": "~0.0.4",
|
|
27
28
|
"rxjs": "~7.5.0",
|
|
28
|
-
"tslib": "^2.
|
|
29
|
-
"zone.js": "~0.11.
|
|
29
|
+
"tslib": "^2.4.0",
|
|
30
|
+
"zone.js": "~0.11.8"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
|
-
"@angular-devkit/build-angular": "~
|
|
33
|
-
"@angular-eslint/builder": "14.1.
|
|
34
|
-
"@angular-eslint/eslint-plugin": "14.1.
|
|
35
|
-
"@angular-eslint/eslint-plugin-template": "14.1.
|
|
36
|
-
"@angular-eslint/schematics": "14.1.
|
|
37
|
-
"@angular-eslint/template-parser": "14.1.
|
|
38
|
-
"@angular/cli": "~
|
|
39
|
-
"@angular/compiler-cli": "~
|
|
33
|
+
"@angular-devkit/build-angular": "~15.0.0",
|
|
34
|
+
"@angular-eslint/builder": "14.1.2",
|
|
35
|
+
"@angular-eslint/eslint-plugin": "14.1.2",
|
|
36
|
+
"@angular-eslint/eslint-plugin-template": "14.1.2",
|
|
37
|
+
"@angular-eslint/schematics": "14.1.2",
|
|
38
|
+
"@angular-eslint/template-parser": "14.1.2",
|
|
39
|
+
"@angular/cli": "~15.0.0",
|
|
40
|
+
"@angular/compiler-cli": "~15.0.0",
|
|
40
41
|
"@angular/language-service": "~14.1.0",
|
|
41
42
|
"@types/facebook-js-sdk": "^2.8.6",
|
|
42
43
|
"@types/hammerjs": "^2.0.35",
|
|
43
|
-
"@types/jasmine": "~4.
|
|
44
|
+
"@types/jasmine": "~4.3.0",
|
|
44
45
|
"@types/jasminewd2": "~2.0.3",
|
|
45
46
|
"@types/node": "^12.11.1",
|
|
46
47
|
"@typescript-eslint/eslint-plugin": "5.3.0",
|
|
@@ -48,15 +49,15 @@
|
|
|
48
49
|
"codelyzer": "^6.0.0",
|
|
49
50
|
"eslint": "^8.1.0",
|
|
50
51
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
51
|
-
"jasmine-core": "~4.
|
|
52
|
+
"jasmine-core": "~4.5.0",
|
|
52
53
|
"jasmine-spec-reporter": "~7.0.0",
|
|
53
|
-
"karma": "~6.
|
|
54
|
+
"karma": "~6.4.0",
|
|
54
55
|
"karma-chrome-launcher": "~3.1.0",
|
|
55
56
|
"karma-coverage": "~2.2.0",
|
|
56
|
-
"karma-jasmine": "~5.
|
|
57
|
-
"karma-jasmine-html-reporter": "~
|
|
57
|
+
"karma-jasmine": "~5.1.0",
|
|
58
|
+
"karma-jasmine-html-reporter": "~2.0.0",
|
|
58
59
|
"protractor": "~7.0.0",
|
|
59
60
|
"ts-node": "~9.1.1",
|
|
60
|
-
"typescript": "~4.
|
|
61
|
+
"typescript": "~4.8.4"
|
|
61
62
|
}
|
|
62
63
|
}
|
|
@@ -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@~14.
|
|
20
|
+
this.packages = ["igniteui-angular-core@~14.2.0", "igniteui-angular-gauges@~14.2.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": "
|
|
3
|
+
"version": "15.0.1100-beta.0",
|
|
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": "~
|
|
15
|
+
"@igniteui/cli-core": "~11.0.0-beta.0",
|
|
16
16
|
"typescript": "~4.7.2"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
@use '<%=igxPackage%>/theming' as *;
|
|
2
|
-
|
|
3
|
-
@mixin scrollbar-love($scrollbar-color: null) {
|
|
4
|
-
$scrollbar-track: hexrgba(color($default-palette, 'grays', 200));
|
|
5
|
-
$scrollbar-thumb: hexrgba(color($default-palette, 'grays', 400));
|
|
6
|
-
|
|
7
|
-
@if $scrollbar-color and luminance($scrollbar-color) < .5 {
|
|
8
|
-
$scrollbar-track: darken($scrollbar-color, 8%);
|
|
9
|
-
$scrollbar-thumb: lighten($scrollbar-color, 20%);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
::-webkit-scrollbar {
|
|
13
|
-
width: 16px;
|
|
14
|
-
height: 16px;
|
|
15
|
-
background-color: $scrollbar-track;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
::-webkit-scrollbar-thumb {
|
|
19
|
-
background-color: $scrollbar-thumb;
|
|
20
|
-
}
|
|
21
|
-
}
|
package/igx-ts/custom-templates/fintech-tree-grid/files/src/app/__path__/themes/_mixins.scss
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
@use '<%=igxPackage%>/theming' as *;
|
|
2
|
-
|
|
3
|
-
@mixin scrollbar-love($scrollbar-color: null) {
|
|
4
|
-
$scrollbar-track: hexrgba(color($default-palette, 'grays', 200));
|
|
5
|
-
$scrollbar-thumb: hexrgba(color($default-palette, 'grays', 400));
|
|
6
|
-
|
|
7
|
-
@if $scrollbar-color and luminance($scrollbar-color) < .5 {
|
|
8
|
-
$scrollbar-track: darken($scrollbar-color, 8%);
|
|
9
|
-
$scrollbar-thumb: lighten($scrollbar-color, 20%);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
::-webkit-scrollbar {
|
|
13
|
-
width: 16px;
|
|
14
|
-
height: 16px;
|
|
15
|
-
background-color: $scrollbar-track;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
::-webkit-scrollbar-thumb {
|
|
19
|
-
background-color: $scrollbar-thumb;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
|
2
|
-
# For additional information regarding the format and rule options, please see:
|
|
3
|
-
# https://github.com/browserslist/browserslist#queries
|
|
4
|
-
|
|
5
|
-
# For the full list of supported browsers by the Angular framework, please see:
|
|
6
|
-
# https://angular.io/guide/browser-support
|
|
7
|
-
|
|
8
|
-
# You can see what browsers were selected by your queries by running:
|
|
9
|
-
# npx browserslist
|
|
10
|
-
|
|
11
|
-
last 1 Chrome version
|
|
12
|
-
last 1 Firefox version
|
|
13
|
-
last 2 Edge major versions
|
|
14
|
-
last 2 Safari major versions
|
|
15
|
-
last 2 iOS major versions
|
|
16
|
-
Firefox ESR
|
|
17
|
-
|