diff --git a/browser/.eslintrc.js b/browser/.eslintrc.js index 73553cf19..25dc45da0 100644 --- a/browser/.eslintrc.js +++ b/browser/.eslintrc.js @@ -18,7 +18,6 @@ module.exports = { "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin ], - extends: ["@babel/plugin-transform-private-property-in-object", "next/core-web-vitals"], rules: { // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs "default-case": "off", diff --git a/samples/grids/pivot-grid/features/src/index.tsx b/samples/grids/pivot-grid/features/src/index.tsx index 8da3538fc..5c59f9d0c 100644 --- a/samples/grids/pivot-grid/features/src/index.tsx +++ b/samples/grids/pivot-grid/features/src/index.tsx @@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client'; import './index.css'; import { IgrPivotGridModule } from 'igniteui-react-grids'; -import { IgrPivotGrid, IgrPivotConfiguration, IgrPivotDateDimension, IgrPivotDimension, IgrPivotDateDimensionOptions, SortingDirection, IgrPivotValue, IgrPivotAggregator } from 'igniteui-react-grids'; +import { IgrPivotGrid, IgrPivotConfiguration, IgrPivotDateDimension, IgrPivotDimension, IgrPivotDateDimensionOptions, SortingDirection, IgrPivotValue, IgrPivotAggregator, PivotAggregationType } from 'igniteui-react-grids'; import { PivotDataFlatItem, PivotDataFlat } from './PivotDataFlat'; import 'igniteui-react-grids/grids/combined'; @@ -66,18 +66,18 @@ export default class Sample extends React.Component { SumOfSale.key = "SUM"; SumOfSale.label = "Sum of Sale"; SumOfSale.aggregator = this.pivotDataFlatAggregateSumSale; - SumOfSale.aggregatorName = "SUM"; + SumOfSale.aggregatorName = PivotAggregationType.SUM; var MinOfSale = new IgrPivotAggregator(); MinOfSale.key = "MIN"; MinOfSale.label = "Minimum of Sale"; MinOfSale.aggregator = this.pivotDataFlatAggregateMinSale; - MinOfSale.aggregatorName = "MIN"; + MinOfSale.aggregatorName = PivotAggregationType.MIN; var MaxOfSale = new IgrPivotAggregator(); MaxOfSale.key = "MAX"; MaxOfSale.label = "Maximum of Sale"; - MaxOfSale.aggregatorName = "MAX"; + MaxOfSale.aggregatorName = PivotAggregationType.MAX; MaxOfSale.aggregator = this.pivotDataFlatAggregateMaxSale; igrPivotValue1.aggregateList = [SumOfSale,MinOfSale,MaxOfSale]; diff --git a/samples/inputs/color-editor/overview/src/index.tsx b/samples/inputs/color-editor/overview/src/index.tsx index 907002da5..cb5bd3db5 100644 --- a/samples/inputs/color-editor/overview/src/index.tsx +++ b/samples/inputs/color-editor/overview/src/index.tsx @@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client'; import './index.css'; import { IgrColorEditorModule } from 'igniteui-react-inputs'; -import { IgrColorEditor } from 'igniteui-react-dashboards'; +import { IgrColorEditor } from 'igniteui-react-inputs'; const mods: any[] = [ IgrColorEditorModule