Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove igniteui-react related dependencies #1234

Merged
merged 9 commits into from
Apr 12, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ class IgrTsBulletGraphTemplate extends IgniteUIForReactTemplate {
this.projectType = "igr-ts";
this.name = "Bullet Graph";
this.description = `allows for a linear and concise view of measures compared against a scale.`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-gauges@18.3.0"];
this.packages = ["igniteui-react-gauges@~18.6.0"];
}
}
module.exports = new IgrTsBulletGraphTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ class IgrTsCategoryChartTemplate extends IgniteUIForReactTemplate {
this.name = "Category Chart";
this.description = `makes visualizing category data easy. Simplifies the complexities
of the data visualization domain into manageable API`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-charts@18.3.0"];
this.packages = ["igniteui-react-charts@~18.6.0"];
}
}
module.exports = new IgrTsCategoryChartTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ class IgrTsDoughnutChartTemplate extends IgniteUIForReactTemplate {
this.projectType = "igr-ts";
this.name = "Doughnut Chart";
this.description = `proportionally illustrate the occurrences of variables.`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-charts@18.3.0"];
this.packages = ["igniteui-react-charts@~18.6.0"];
}
}
module.exports = new IgrTsDoughnutChartTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ class IgrTsFinancialChartTemplate extends IgniteUIForReactTemplate {
this.name = "Financial Chart";
this.description = `charting component that makes it easy to visualize financial data by
using a simple and intuitive API.`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-charts@18.3.0"];
this.packages = ["igniteui-react-charts@~18.6.0"];
}
}
module.exports = new IgrTsFinancialChartTemplate();
5 changes: 2 additions & 3 deletions packages/cli/templates/react/igr-ts/grid/basic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ class GridTemplate extends IgniteUIForReactTemplate {
this.projectType = "igr-ts";
this.components = ["Grid"];
this.controlGroup = "Data Grids";
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-grids@18.3.0", "igniteui-react-inputs@18.3.0",
"igniteui-react-layouts@18.3.0"];
this.packages = ["igniteui-react-grids@~18.6.0", "igniteui-react-inputs@~18.6.0",
"igniteui-react-layouts@~18.6.0", "igniteui-react@~18.6.0"];

this.hasExtraConfiguration = false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ class IgrTsLinearGaugeTemplate extends IgniteUIForReactTemplate {
this.projectType = "igr-ts";
this.name = "Linear Gauge";
this.description = `value compared against a scale and one or more ranges.`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-gauges@18.3.0"];
this.packages = ["igniteui-react-gauges@~18.6.0"];
}
}
module.exports = new IgrTsLinearGaugeTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ class IgrTsPieChartTemplate extends IgniteUIForReactTemplate {
this.projectType = "igr-ts";
this.name = "Pie Chart";
this.description = `easily illustate the proportions of data entries`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-charts@18.3.0"];
this.packages = ["igniteui-react-charts@~18.6.0"];
}
}
module.exports = new IgrTsPieChartTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"@testing-library/react": "^14.0.0",
"element-internals-polyfill": "^1.3.10",
"functions-have-names": "^1.2.3",
"igniteui-dockmanager": "^1.13.0",
"igniteui-react": "18.3.0",
"igniteui-react-core": "18.3.0",
igdmdimitrov marked this conversation as resolved.
Show resolved Hide resolved
"react": "^18.2.0",
"react-app-polyfill": "^0.2.0",
"react-dom": "^18.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class IgrTsRadialGaugeTemplate extends IgniteUIForReactTemplate {
this.description = `provides a number of visual elements, like a needle, tick marks, ranges
and labels, in order to create a predefined shape and scale.`;
// TODO: read version from igniteui-react-core in package.json
this.packages = ["igniteui-react-gauges@18.3.0"];
this.packages = ["igniteui-react-gauges@~18.6.0"];
damyanpetev marked this conversation as resolved.
Show resolved Hide resolved
}
}
module.exports = new IgrTsRadialGaugeTemplate();
Loading