@igniteui/angular-templates 13.1.911-rc.0 → 13.1.913
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/custom-templates/fintech-grid/files/src/app/__path__/__filePrefix__.component.scss +0 -1
- package/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.component.html +7 -0
- package/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.component.scss +3 -0
- package/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.component.spec.ts +26 -0
- package/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.component.ts +44 -0
- package/igx-ts/pivot-grid/default/files/src/app/__path__/data.ts +6502 -0
- package/igx-ts/pivot-grid/default/index.d.ts +1 -0
- package/igx-ts/pivot-grid/default/index.js +18 -0
- package/igx-ts/pivot-grid/index.d.ts +1 -0
- package/igx-ts/pivot-grid/index.js +15 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const IgniteUIForAngularTemplate_1 = require("../../../IgniteUIForAngularTemplate");
|
|
4
|
+
class IgxPivotGridTemplate extends IgniteUIForAngularTemplate_1.IgniteUIForAngularTemplate {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(__dirname);
|
|
7
|
+
this.components = ["Pivot Grid"];
|
|
8
|
+
this.controlGroup = "Grids & Lists";
|
|
9
|
+
this.listInComponentTemplates = true;
|
|
10
|
+
this.id = "pivot-grid";
|
|
11
|
+
this.projectType = "igx-ts";
|
|
12
|
+
this.name = "Pivot Grid";
|
|
13
|
+
this.dependencies = [
|
|
14
|
+
{ import: "IgxPivotGridModule", from: "<%=igxPackage%>" }
|
|
15
|
+
];
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
module.exports = new IgxPivotGridTemplate();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const cli_core_1 = require("@igniteui/cli-core");
|
|
4
|
+
class IgxPivotGridComponent extends cli_core_1.BaseComponent {
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
constructor() {
|
|
9
|
+
super(__dirname);
|
|
10
|
+
this.name = "Pivot Grid";
|
|
11
|
+
this.group = "Grids & Lists";
|
|
12
|
+
this.description = "basic IgxPivotGrid";
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
module.exports = new IgxPivotGridComponent();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.913",
|
|
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.
|
|
15
|
+
"@igniteui/cli-core": "~9.1.3",
|
|
16
16
|
"typescript": "~4.4.4"
|
|
17
17
|
}
|
|
18
18
|
}
|