Skip to content

Commit c95358f

Browse files
committed
fix(grid-lite): applying various fixes for the grid-lite samples
1 parent 0aa7633 commit c95358f

File tree

15 files changed

+23
-4
lines changed

15 files changed

+23
-4
lines changed

browser/public/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"23.2.915","date":"2025-11-21 21:51:03","note":"this file is auto-generated"}
1+
{"version":"23.2.915","date":"2025-11-24 10:34:52","note":"this file is auto-generated"}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"23.2.915","date":"2025-11-21 21:51:03","note":"this file is auto-generated"}
1+
{"version":"23.2.915","date":"2025-11-24 10:34:52","note":"this file is auto-generated"}

samples/grids/grid-lite/column-config-basic/src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
} from 'igniteui-webcomponents';
1111

1212
import "igniteui-webcomponents/themes/light/bootstrap.css";
13+
import "./index.css";
1314

1415
// Register components
1516
IgcGridLite.register();

samples/grids/grid-lite/column-config-dynamic/src/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import {
88
defineComponents,
99
IgcRatingComponent
1010
} from 'igniteui-webcomponents';
11+
1112
import "igniteui-webcomponents/themes/light/bootstrap.css";
13+
import "./index.css";
1214

1315
// Register components
1416
IgcGridLite.register();

samples/grids/grid-lite/column-config-headers/src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { GridLiteDataService, User } from './GridLiteDataService';
55
// Import the web component
66
import { IgcGridLite } from 'igniteui-grid-lite';
77
import "igniteui-webcomponents/themes/light/bootstrap.css";
8+
import "./index.css";
89

910
// Register components
1011
IgcGridLite.register();

samples/grids/grid-lite/data-binding/src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
} from 'igniteui-webcomponents';
1111

1212
import "igniteui-webcomponents/themes/light/bootstrap.css";
13+
import "./index.css";
1314

1415
// Register components
1516
IgcGridLite.register();

samples/grids/grid-lite/filtering-config-events/src/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { GridLiteDataService, User } from './GridLiteDataService';
44

55
// Import the web component
66
import { IgcGridLite } from 'igniteui-grid-lite';
7+
78
import "igniteui-webcomponents/themes/light/bootstrap.css";
9+
import "./index.css";
810

911
// Register components
1012
IgcGridLite.register();
@@ -19,7 +21,7 @@ export default class Sample extends React.Component<any, any> {
1921
super(props);
2022
this.dataService = new GridLiteDataService();
2123
this.gridRef = React.createRef();
22-
this.logRef = React.RefObject<HTMLDivElement>();
24+
this.logRef = React.createRef<HTMLDivElement>();
2325
this.state = { logContent: '' };
2426
}
2527

samples/grids/grid-lite/filtering-config-remote/src/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { GridLiteDataService, User } from './GridLiteDataService';
44

55
// Import the web component
66
import { IgcGridLite } from 'igniteui-grid-lite';
7+
78
import "igniteui-webcomponents/themes/light/bootstrap.css";
9+
import "./index.css";
810

911
// Register components
1012
IgcGridLite.register();

samples/grids/grid-lite/filtering-config/src/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import {
88
defineComponents,
99
IgcCheckboxComponent
1010
} from 'igniteui-webcomponents';
11+
1112
import "igniteui-webcomponents/themes/light/bootstrap.css";
13+
import "./index.css";
1214

1315
// Register components
1416
IgcGridLite.register();

samples/grids/grid-lite/overview/src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
} from 'igniteui-webcomponents';
1414

1515
import "igniteui-webcomponents/themes/light/bootstrap.css";
16+
import "./index.css";
1617

1718
// Register components
1819
IgcGridLite.register();

0 commit comments

Comments
 (0)