igniteui-cli 8.2.0 → 8.2.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/lib/commands/build.js +3 -0
- package/lib/commands/start.js +4 -1
- package/lib/templates/ReactTemplate.d.ts +4 -4
- package/lib/templates/ReactTemplate.js +42 -29
- package/package.json +4 -4
- package/templates/react/es6/bar-chart/default/files/{client → src}/components/__path__/index.js +2 -4
- package/templates/react/es6/{column-chart/default/files/client → bar-chart/default/files/src}/data/world-energy-production.js +2 -2
- package/templates/react/es6/column-chart/default/files/{client → src}/components/__path__/index.js +2 -6
- package/templates/react/es6/{bar-chart/default/files/client → column-chart/default/files/src}/data/world-energy-production.js +0 -0
- package/templates/react/es6/combo/combo/files/{client → src}/components/__path__/index.js +2 -4
- package/templates/react/es6/doughnut-chart/doughnut-chart/files/{client → src}/components/__path__/index.js +1 -4
- package/templates/react/es6/editors/editors/files/{client → src}/components/__path__/index.js +1 -4
- package/templates/react/es6/financial-chart/financial-chart/files/{client → src}/components/__path__/index.js +1 -5
- package/templates/react/es6/financial-chart/financial-chart/files/{client → src}/data/financial-data.js +1 -1
- package/templates/react/es6/funnel-chart/funnel-chart/files/{client → src}/components/__path__/index.js +1 -4
- package/templates/react/es6/generate/files/{client → src}/components/__path__/index.js +1 -1
- package/templates/react/es6/grid/basic/files/{client → src}/components/__path__/index.js +10 -12
- package/templates/react/es6/grid/grid-custom/files/{client → src}/components/__path__/index.js +10 -13
- package/templates/react/es6/grid/grid-editing/files/{client → src}/components/__path__/index.js +10 -13
- package/templates/react/es6/grid/grid-export/files/src/components/__path__/index.js +124 -0
- package/templates/react/es6/grid/grid-export/files/{client/components/__path__/styles.scss → src/components/__path__/styles.css} +0 -0
- package/templates/react/es6/grid/grid-export/index.js +2 -1
- package/templates/react/es6/grid/grid-templating/files/{client → src}/components/__path__/index.js +1 -5
- package/templates/react/es6/grid/grid-templating/files/{client → src}/components/__path__/northwind.js +0 -0
- package/templates/react/es6/hierarchical-grid/hierarchical-grid/files/{client → src}/components/__path__/index.js +1 -5
- package/templates/react/es6/hierarchical-grid/{hierarchical-grid-export/files/client → hierarchical-grid/files/src}/components/__path__/northwind.js +0 -0
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-custom/files/src/components/__path__/index.js +82 -0
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-custom/files/{client → src}/components/__path__/northwind.js +0 -0
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-editing/files/src/components/__path__/index.js +81 -0
- package/templates/react/es6/hierarchical-grid/{hierarchical-grid/files/client → hierarchical-grid-editing/files/src}/components/__path__/northwind.js +5587 -5587
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-export/files/src/components/__path__/index.js +112 -0
- package/templates/react/es6/hierarchical-grid/{hierarchical-grid-editing/files/client → hierarchical-grid-export/files/src}/components/__path__/northwind.js +0 -0
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-export/files/src/components/__path__/styles.css +13 -0
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-export/index.js +2 -1
- package/templates/react/es6/index.js +1 -1
- package/templates/react/es6/line-chart/default/files/src/components/__path__/index.js +76 -0
- package/templates/react/es6/pie-chart/pie-chart/files/src/components/__path__/index.js +38 -0
- package/templates/react/es6/projects/empty/files/README.md +2 -5
- package/templates/react/es6/projects/empty/files/__dot__editorconfig +2 -2
- package/templates/react/es6/projects/empty/files/__dot__env +1 -0
- package/templates/react/es6/projects/empty/files/__dot__gitignore +18 -8
- package/templates/react/es6/projects/empty/files/ignite-ui-cli.json +20 -21
- package/templates/react/es6/projects/empty/files/package.json +33 -43
- package/templates/react/es6/projects/empty/files/public/favicon.ico +0 -0
- package/templates/react/es6/projects/empty/files/public/index.html +42 -0
- package/templates/react/es6/projects/empty/files/public/manifest.json +15 -0
- package/templates/react/es6/projects/empty/files/public/robots.txt +3 -0
- package/templates/react/es6/projects/empty/files/src/App.css +52 -0
- package/templates/react/es6/projects/empty/files/src/App.js +39 -0
- package/templates/react/es6/projects/empty/files/src/components/home/index.js +25 -0
- package/templates/react/es6/projects/empty/files/src/components/navigation-header/index.js +47 -0
- package/templates/react/es6/projects/empty/files/src/hoc/asyncComponent.js +50 -0
- package/templates/react/es6/projects/empty/files/src/igniteuiResources.js +7 -0
- package/templates/react/es6/projects/empty/files/src/index.css +13 -0
- package/templates/react/es6/projects/empty/files/src/index.js +23 -0
- package/templates/react/es6/projects/empty/files/src/reportWebVitals.js +13 -0
- package/templates/react/es6/projects/empty/files/src/routes.json +7 -0
- package/templates/react/es6/projects/empty/index.js +1 -8
- package/templates/react/es6/radial-chart/radial-chart/files/src/components/__path__/index.js +68 -0
- package/templates/react/es6/radial-chart/radial-chart/files/{client → src}/data/temperature.js +2 -2
- package/templates/react/es6/scatter-chart/scatter-chart/files/src/components/__path__/index.js +59 -0
- package/templates/react/es6/scatter-chart/scatter-chart/files/src/data/temperature.js +58 -0
- package/templates/react/es6/tree-grid/tree-grid/files/src/components/__path__/index.js +61 -0
- package/templates/react/es6/tree-grid/tree-grid-custom/files/src/components/__path__/index.js +62 -0
- package/templates/react/es6/tree-grid/tree-grid-editing/files/src/components/__path__/index.js +62 -0
- package/templates/react/es6/tree-grid/tree-grid-export/files/{client → src}/components/__path__/index.js +101 -103
- package/templates/react/es6/tree-grid/tree-grid-export/index.js +2 -1
- package/templates/react/igr-es6/projects/_base/files/README.md +1 -1
- package/templates/react/igr-es6/projects/_base/files/__dot__editorconfig +2 -2
- package/templates/react/igr-es6/projects/_base/files/__dot__env +1 -0
- package/templates/react/igr-es6/projects/top-nav/files/src/App.js +24 -21
- package/templates/react/es6/bar-chart/default/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/column-chart/default/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/combo/combo/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/doughnut-chart/doughnut-chart/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/editors/editors/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/financial-chart/financial-chart/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/funnel-chart/funnel-chart/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/generate/files/client/pages/__path__/index.js +0 -11
- package/templates/react/es6/grid/basic/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/grid/grid-custom/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/grid/grid-editing/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/grid/grid-export/files/client/components/__path__/index.js +0 -124
- package/templates/react/es6/grid/grid-export/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/grid/grid-templating/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/hierarchical-grid/hierarchical-grid/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-custom/files/client/components/__path__/index.js +0 -85
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-custom/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-editing/files/client/components/__path__/index.js +0 -85
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-editing/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-export/files/client/components/__path__/index.js +0 -112
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-export/files/client/components/__path__/styles.scss +0 -13
- package/templates/react/es6/hierarchical-grid/hierarchical-grid-export/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/line-chart/default/files/client/components/__path__/index.js +0 -79
- package/templates/react/es6/line-chart/default/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/pie-chart/pie-chart/files/client/components/__path__/index.js +0 -41
- package/templates/react/es6/pie-chart/pie-chart/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/projects/empty/files/__dot__babelrc +0 -10
- package/templates/react/es6/projects/empty/files/__dot__eslintrc +0 -28
- package/templates/react/es6/projects/empty/files/__tests__/App.js +0 -19
- package/templates/react/es6/projects/empty/files/__tests__/App.spec.js +0 -11
- package/templates/react/es6/projects/empty/files/__tests__/CheckboxWithLabel.js +0 -31
- package/templates/react/es6/projects/empty/files/__tests__/CheckboxWithLabel.spec.js +0 -19
- package/templates/react/es6/projects/empty/files/__tests__/Sum.js +0 -6
- package/templates/react/es6/projects/empty/files/__tests__/Sum.spec.js +0 -6
- package/templates/react/es6/projects/empty/files/build.js +0 -25
- package/templates/react/es6/projects/empty/files/client/_variables.scss +0 -7
- package/templates/react/es6/projects/empty/files/client/components/Header/header.scss +0 -21
- package/templates/react/es6/projects/empty/files/client/components/Header/index.js +0 -21
- package/templates/react/es6/projects/empty/files/client/components/Toolbar/index.js +0 -20
- package/templates/react/es6/projects/empty/files/client/components/Toolbar/toolbar.scss +0 -49
- package/templates/react/es6/projects/empty/files/client/containers/App/index.js +0 -16
- package/templates/react/es6/projects/empty/files/client/containers/App/style.scss +0 -4
- package/templates/react/es6/projects/empty/files/client/general.scss +0 -24
- package/templates/react/es6/projects/empty/files/client/index.ejs +0 -13
- package/templates/react/es6/projects/empty/files/client/index.js +0 -20
- package/templates/react/es6/projects/empty/files/client/lines-bottom-right.svg +0 -56
- package/templates/react/es6/projects/empty/files/client/pages/Home/index.js +0 -9
- package/templates/react/es6/projects/empty/files/client/pages/routes.js +0 -49
- package/templates/react/es6/projects/empty/files/client/pages/routesTemplate.js +0 -9
- package/templates/react/es6/projects/empty/files/webpack.config.js +0 -163
- package/templates/react/es6/radial-chart/radial-chart/files/client/components/__path__/index.js +0 -71
- package/templates/react/es6/radial-chart/radial-chart/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/scatter-chart/scatter-chart/files/client/components/__path__/index.js +0 -63
- package/templates/react/es6/scatter-chart/scatter-chart/files/client/data/temperature.js +0 -58
- package/templates/react/es6/scatter-chart/scatter-chart/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/tree-grid/tree-grid/files/client/components/__path__/index.js +0 -64
- package/templates/react/es6/tree-grid/tree-grid/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/tree-grid/tree-grid-custom/files/client/components/__path__/index.js +0 -65
- package/templates/react/es6/tree-grid/tree-grid-custom/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/tree-grid/tree-grid-editing/files/client/components/__path__/index.js +0 -65
- package/templates/react/es6/tree-grid/tree-grid-editing/files/client/pages/__path__/index.js +0 -10
- package/templates/react/es6/tree-grid/tree-grid-export/files/client/pages/__path__/index.js +0 -10
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.