@igniteui/angular-templates 13.1.910-rc.0 → 13.1.910-rc.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.
@@ -128,7 +128,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit {
128
128
  }
129
129
  }
130
130
  }
131
-
131
+
132
132
  public formatDate(val: Date): string {
133
133
  return new Intl.DateTimeFormat('en-US').format(val);
134
134
  }
@@ -183,7 +183,7 @@ class DealsSummary extends IgxNumberSummaryOperand {
183
183
  super();
184
184
  }
185
185
 
186
- public operate(summaries?: number[]): IgxSummaryResult[] {
186
+ public override operate(summaries?: number[]): IgxSummaryResult[] {
187
187
  const result = super.operate(summaries).filter((obj) => {
188
188
  if (obj.key === 'average' || obj.key === 'sum') {
189
189
  const summaryResult = obj.summaryResult;
@@ -208,7 +208,7 @@ class EarliestSummary extends IgxDateSummaryOperand {
208
208
  super();
209
209
  }
210
210
 
211
- public operate(summaries?: Date[]): IgxSummaryResult[] {
211
+ public override operate(summaries?: Date[]): IgxSummaryResult[] {
212
212
  const result = super.operate(summaries).filter((obj) => {
213
213
  if (obj.key === 'earliest') {
214
214
  obj.summaryResult = formatDate(obj.summaryResult);
@@ -225,7 +225,7 @@ class SoonSummary extends IgxDateSummaryOperand {
225
225
  super();
226
226
  }
227
227
 
228
- public operate(summaries?: Date[]): IgxSummaryResult[] {
228
+ public override operate(summaries?: Date[]): IgxSummaryResult[] {
229
229
  const result = super.operate(summaries).filter((obj) => {
230
230
  if (obj.key === 'latest') {
231
231
  obj.label = 'Soon';
@@ -37,7 +37,7 @@ class CustomDateSummary extends IgxDateSummaryOperand {
37
37
  constructor() {
38
38
  super();
39
39
  }
40
- public operate(data?: Date[]): IgxSummaryResult[] {
40
+ public override operate(data?: Date[]): IgxSummaryResult[] {
41
41
  const result: IgxSummaryResult[] = [];
42
42
  if (!data) {
43
43
  return result;
@@ -19,7 +19,7 @@
19
19
  "@angular/platform-browser-dynamic": "~13.1.1",
20
20
  "@angular/router": "~13.1.1",
21
21
  "hammerjs": "^2.0.8",
22
- "igniteui-angular": "~13.1.0-rc.0",
22
+ "igniteui-angular": "~13.1.0-rc.1",
23
23
  "core-js": "^3.6.5",
24
24
  "jszip": "^3.5.0",
25
25
  "minireset.css": "~0.0.4",
@@ -20,7 +20,7 @@
20
20
  "@angular/router": "~13.1.1",
21
21
  "angular-auth-oidc-client": "^9.0.3",
22
22
  "hammerjs": "^2.0.8",
23
- "igniteui-angular": "~13.1.0-rc.0",
23
+ "igniteui-angular": "~13.1.0-rc.1",
24
24
  "core-js": "^3.6.5",
25
25
  "jszip": "^3.5.0",
26
26
  "minireset.css": "~0.0.4",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "13.1.910-rc.0",
3
+ "version": "13.1.910-rc.1",
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": "~9.1.0-rc.0",
15
+ "@igniteui/cli-core": "~9.1.0-rc.1",
16
16
  "typescript": "~4.4.4"
17
17
  }
18
18
  }