Skip to content

Commit 8363a95

Browse files
authored
Merge pull request #394 from IgniteUI/vnext
merging vnext to master
2 parents 17751e5 + 9bcdcec commit 8363a95

1,239 files changed

Lines changed: 33769 additions & 5620 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ This repository contains over 240 examples on how to use [Ignite UI for React](h
3030
[Bullet Graph](https://www.infragistics.com/products/ignite-ui-react/react/components/bullet-graph),
3131
[Linear Gauge](https://www.infragistics.com/products/ignite-ui-react/react/components/linear-gauge.html),
3232
[Radial Gauges](https://www.infragistics.com/products/ignite-ui-react/react/components/radial-gauge.html)
33-
- Grids:
33+
- Grids & Lists:
34+
[Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/grids/data-grid),
35+
[List](https://www.infragistics.com/products/ignite-ui-react/react/components/grids/list),
36+
[Tree](https://www.infragistics.com/products/ignite-ui-react/react/components/grids/tree),
3437
[Table / Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/data-grid.html),
35-
[Excel Library](https://www.infragistics.com/products/ignite-ui-react/react/components/excel_library_using_workbooks.html)
38+
[Spreadsheet](https://www.infragistics.com/products/ignite-ui-react/react/components/spreadsheet-overview)
3639
- Other:
3740
[Dock Manager](https://www.infragistics.com/products/ignite-ui-react/react/components/dock-manager),
3841
[Date Picker](https://www.infragistics.com/products/ignite-ui-react/react/components/editors/date-picker),
@@ -60,7 +63,7 @@ git clone https://github.com/IgniteUI/igniteui-react-examples.git
6063
```
6164
./samples/charts/category-chart/axis-options/
6265
```
63-
- type `npm install` command in terminal window
66+
- type `npm install --legacy-peer-deps` command in terminal window
6467
- type `npm run start` command in terminal window
6568

6669
- Wait until the build is completed and then open [http://localhost:4200](http://localhost:4200) in your browser.
@@ -74,7 +77,7 @@ At this point, you should see a website hosted example of [Ignite UI for React](
7477
- open the browser folder in this repository, e.g. `C:\GitHub\igniteui-react-examples\browser`
7578
- select **View** - **Terminal** menu item
7679

77-
- type `npm install` command in terminal window
80+
- type `npm install --legacy-peer-deps` command in terminal window
7881

7982
This will install required packages and [Ignite UI for React](https://infragistics.com/reactsite/components/general-getting-started.html) packages
8083

@@ -113,7 +116,7 @@ Wait until the build is completed and then open [http://localhost:4200](http://l
113116

114117
- rename class to the name of .tsx file
115118

116-
- type `npm install` command in terminal window
119+
- type `npm install --legacy-peer-deps` command in terminal window
117120

118121
- type `npm run start` command in terminal window
119122

browser/gulpfile.js

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ function log(msg) {
99

1010
var sb = require('./tasks/gulp-samples.js')
1111

12-
exports.updateSamples = updateSamples = gulp.series(
13-
sb.lintSamples,
14-
sb.getSamples,
15-
sb.updateReadme,
16-
// sb.updatePackages,
17-
// sb.updateIndex,
18-
sb.updateSharedFiles,
19-
);
12+
// exports.updateSamples = updateSamples = gulp.series(
13+
// sb.lintSamples,
14+
// sb.getSamples,
15+
// sb.updateReadme,
16+
// // sb.updateIndex,
17+
// sb.updateSharedFiles,
18+
// );
2019

2120
exports.updateReadme = updateReadme = gulp.series(
2221
sb.getSamples,
@@ -32,11 +31,6 @@ exports.simplifySamples = simplifySamples = gulp.series(
3231
sb.simplifySamples,
3332
);
3433

35-
exports.updatePackages = updatePackages = gulp.series(
36-
sb.getSamples,
37-
sb.updatePackages,
38-
);
39-
4034
exports.updateSharedFiles = updateSharedFiles = gulp.series(
4135
sb.getSamples,
4236
sb.updateSharedFiles,
@@ -81,3 +75,4 @@ exports.updateCodeViewer = updateCodeViewer = gulp.series(
8175

8276
exports.updateIG = updateIG = sb.updateIG
8377

78+
exports.cleanupSamples = cleanupSamples = sb.cleanupSamples

0 commit comments

Comments
 (0)