@igniteui/angular-templates 13.0.900-beta.0 → 13.0.900-rc.3

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/Update.js CHANGED
@@ -24,7 +24,7 @@ function createExpression(expressionType, packageName) {
24
24
  return String.raw `(from ["'])${packageName}(?<submodules>\/.*?)?(["'])`;
25
25
  }
26
26
  else if (expressionType === RegularExpressionType.STYLE) {
27
- return String.raw `(node_modules\/|~)${packageName}(\/)`;
27
+ return String.raw `(node_modules\/|[~"'])${packageName}(\/)`;
28
28
  }
29
29
  }
30
30
  function updateWorkspace(rootPath) {
package/Update.spec.js CHANGED
@@ -118,10 +118,14 @@ export class HomeComponent {
118
118
  path: "src/home.component.scss",
119
119
  content: `@import '~igniteui-angular/theming';
120
120
  @import '~igniteui-dockmanager/styles/themes/test';
121
+ @use 'igniteui-angular/theming';
122
+ @forward 'igniteui-angular/theming';
121
123
  @include igx-core();
122
124
  `,
123
125
  expected: `@import '~@infragistics/igniteui-angular/theming';
124
126
  @import '~@infragistics/igniteui-dockmanager/styles/themes/test';
127
+ @use '@infragistics/igniteui-angular/theming';
128
+ @forward '@infragistics/igniteui-angular/theming';
125
129
  @include igx-core();
126
130
  `
127
131
  }, {
@@ -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@~12.1.2", "igniteui-angular-gauges@~12.1.2"];
18
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-gauges@~13.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@~12.1.2", "igniteui-angular-charts@~12.1.2"];
18
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-charts@~13.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@~12.1.2", "igniteui-angular-charts@~12.1.2"];
36
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-charts@~13.0.0"];
37
37
  }
38
38
  }
39
39
  module.exports = new IgxGridAwesomeTemplate();
@@ -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@~12.1.2", "igniteui-angular-charts@~12.1.2"];
46
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-charts@~13.0.0"];
47
47
  }
48
48
  }
49
49
  module.exports = new IgxGridCRMTemplate();
@@ -35,7 +35,7 @@
35
35
  <span *ngIf="buttonSelected === 0">Feeding {{volume}} records every {{frequency / 1000}} sec.
36
36
  ~{{volume/5}} records updated.</span>
37
37
  </div>
38
- <igx-grid #grid1 igxPreventDocumentScroll (rowSelected)="rowSelectionChanged($event)" [data]="data"
38
+ <igx-grid #grid1 igxPreventDocumentScroll (rowSelectionChanging)="rowSelectionChanging($event)" [data]="data"
39
39
  width="100%" height="90%" [autoGenerate]="false" displayDensity="compact" primaryKey="ID" hiddenColumnsText="Hidden"
40
40
  [rowSelection]="selectionMode" [allowFiltering]="true" filterMode="excelStyleFilter"
41
41
  (keydown)="gridKeydown($event)" (gridKeydown)="customKeydown($event)">
@@ -217,7 +217,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit, OnDestroy
217
217
  }
218
218
  }
219
219
 
220
- public rowSelectionChanged(args: IRowSelectionEventArgs): void {
220
+ public rowSelectionChanging(args: IRowSelectionEventArgs): void {
221
221
  this.grid1.clearCellSelection();
222
222
  this.chartData = [];
223
223
  args.newSelection.forEach(row => {
@@ -367,7 +367,7 @@ export class <%=ClassName%>Component implements OnInit, AfterViewInit, OnDestroy
367
367
  const type = args.targetType;
368
368
 
369
369
  if (type === 'dataCell' && target.column.field === 'Chart' && evt.key.toLowerCase() === 'enter') {
370
- this.grid1.selectRows([target.row.rowID], true);
370
+ this.grid1.selectRows([target.row.key], true);
371
371
  this.openSingleRowChart(target);
372
372
  }
373
373
  }
@@ -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@~12.1.2", "igniteui-angular-charts@~12.1.2"];
32
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-charts@~13.0.0"];
33
33
  }
34
34
  }
35
35
  module.exports = new IgxFinTechGridTemplate();
@@ -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@~12.1.2", "igniteui-angular-charts@~12.1.2"];
16
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-charts@~13.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@~12.1.2", "igniteui-angular-gauges@~12.1.2"];
20
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-gauges@~13.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@~12.1.2", "igniteui-angular-charts@~12.1.2", "igniteui-angular-maps@~12.1.0"];
24
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-charts@~13.0.0", "igniteui-angular-maps@~13.0.0"];
25
25
  }
26
26
  }
27
27
  module.exports = new IgxGeographicMapTemplate();
@@ -19,7 +19,7 @@
19
19
  "@angular/platform-browser-dynamic": "~13.0.0",
20
20
  "@angular/router": "~13.0.0",
21
21
  "hammerjs": "^2.0.8",
22
- "igniteui-angular": "~13.0.0-alpha.8",
22
+ "igniteui-angular": "~13.0.0-rc.1",
23
23
  "core-js": "^3.6.5",
24
24
  "jszip": "^3.5.0",
25
25
  "minireset.css": "~0.0.4",
@@ -29,11 +29,11 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "@angular-devkit/build-angular": "~13.0.1",
32
- "@angular-eslint/builder": "13.0.0-alpha.0",
33
- "@angular-eslint/eslint-plugin": "13.0.0-alpha.0",
34
- "@angular-eslint/eslint-plugin-template": "13.0.0-alpha.0",
35
- "@angular-eslint/schematics": "13.0.0-alpha.0",
36
- "@angular-eslint/template-parser": "13.0.0-alpha.0",
32
+ "@angular-eslint/builder": "13.0.1",
33
+ "@angular-eslint/eslint-plugin": "13.0.1",
34
+ "@angular-eslint/eslint-plugin-template": "13.0.1",
35
+ "@angular-eslint/schematics": "13.0.1",
36
+ "@angular-eslint/template-parser": "13.0.1",
37
37
  "@angular/cli": "~13.0.1",
38
38
  "@angular/compiler-cli": "~13.0.0",
39
39
  "@types/jasmine": "~3.8.0",
@@ -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="igx-typography">
14
+ <body class="igx-typography igx-scrollbar">
15
15
  <app-root></app-root>
16
16
  </body>
17
17
  </html>
@@ -20,7 +20,7 @@
20
20
  "@angular/router": "~13.0.0",
21
21
  "angular-auth-oidc-client": "^9.0.3",
22
22
  "hammerjs": "^2.0.8",
23
- "igniteui-angular": "~13.0.0-alpha.8",
23
+ "igniteui-angular": "~13.0.0-rc.1",
24
24
  "core-js": "^3.6.5",
25
25
  "jszip": "^3.5.0",
26
26
  "minireset.css": "~0.0.4",
@@ -30,11 +30,11 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@angular-devkit/build-angular": "~13.0.1",
33
- "@angular-eslint/builder": "13.0.0-alpha.0",
34
- "@angular-eslint/eslint-plugin": "13.0.0-alpha.0",
35
- "@angular-eslint/eslint-plugin-template": "13.0.0-alpha.0",
36
- "@angular-eslint/schematics": "13.0.0-alpha.0",
37
- "@angular-eslint/template-parser": "13.0.0-alpha.0",
33
+ "@angular-eslint/builder": "13.0.1",
34
+ "@angular-eslint/eslint-plugin": "13.0.1",
35
+ "@angular-eslint/eslint-plugin-template": "13.0.1",
36
+ "@angular-eslint/schematics": "13.0.1",
37
+ "@angular-eslint/template-parser": "13.0.1",
38
38
  "@angular/cli": "~13.0.1",
39
39
  "@angular/compiler-cli": "~13.0.0",
40
40
  "@angular/language-service": "~13.0.0",
@@ -15,7 +15,7 @@
15
15
  <script src="https://connect.facebook.net/en_US/sdk.js"></script>
16
16
  </head>
17
17
 
18
- <body class="igx-typography">
18
+ <body class="igx-typography igx-scrollbar">
19
19
  <app-root></app-root>
20
20
  </body>
21
21
 
@@ -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@~12.1.2", "igniteui-angular-gauges@~12.1.2"];
20
+ this.packages = ["igniteui-angular-core@~13.0.0", "igniteui-angular-gauges@~13.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": "13.0.900-beta.0",
3
+ "version": "13.0.900-rc.3",
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.0.0-beta.0",
16
- "typescript": "^4.4.4"
15
+ "@igniteui/cli-core": "~9.0.0-rc.3",
16
+ "typescript": "~4.4.4"
17
17
  }
18
18
  }