Skip to content

Commit a7cd891

Browse files
committed
Rename ai_datagrid class name to ai__grid
1 parent 28c9228 commit a7cd891

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

apps/demos/Demos/DataGrid/AIColumns/React/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function App() {
4141
keyExpr="ID"
4242
aiIntegration={aiIntegration}
4343
onAIColumnRequestCreating={onAIColumnRequestCreating}
44-
className="ai__datagrid"
44+
className="ai__grid"
4545
>
4646
<Paging
4747
enabled={true}

apps/demos/Demos/DataGrid/AIColumns/React/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
background-color: var(--dx-datagrid-row-alternation-bg);
33
}
44

5-
.ai__datagrid {
5+
.ai__grid {
66
min-height: 600px;
77
}
88

apps/demos/Demos/DataGrid/AIColumns/ReactJs/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function App() {
3333
keyExpr="ID"
3434
aiIntegration={aiIntegration}
3535
onAIColumnRequestCreating={onAIColumnRequestCreating}
36-
className="ai__datagrid"
36+
className="ai__grid"
3737
>
3838
<Paging
3939
enabled={true}

apps/demos/Demos/DataGrid/AIColumns/ReactJs/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
background-color: var(--dx-datagrid-row-alternation-bg);
33
}
44

5-
.ai__datagrid {
5+
.ai__grid {
66
min-height: 600px;
77
}
88

apps/demos/Demos/DataGrid/AIColumns/Vue/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:showBorders="true"
66
:aiIntegration="aiIntegration"
77
:onAIColumnRequestCreating="onAIColumnRequestCreating"
8-
class="ai__datagrid"
8+
class="ai__grid"
99
>
1010
<DxGrouping :contextMenuEnabled="false"/>
1111
<DxPaging :pageSize="10"/>
@@ -123,7 +123,7 @@ const onAIColumnRequestCreating = (e: { data: Partial<Vehicle>[] }) => {
123123
background-color: var(--dx-datagrid-row-alternation-bg);
124124
}
125125
126-
.ai__datagrid {
126+
.ai__grid {
127127
min-height: 600px;
128128
}
129129
</style>

apps/demos/Demos/TreeList/AIColumns/React/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default function App() {
3030
autoExpandAll={true}
3131
aiIntegration={aiIntegration}
3232
onAIColumnRequestCreating={onAIColumnRequestCreating}
33-
className="ai__datagrid"
33+
className="ai__grid"
3434
>
3535
<Paging enabled={true} pageSize={10} />
3636
<Scrolling mode="standard" />

apps/demos/Demos/TreeList/AIColumns/React/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
background-color: var(--dx-datagrid-row-alternation-bg);
33
}
44

5-
.ai__datagrid {
5+
.ai__grid {
66
min-height: 600px;
77
}
88

apps/demos/Demos/TreeList/AIColumns/ReactJs/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function App() {
2626
autoExpandAll={true}
2727
aiIntegration={aiIntegration}
2828
onAIColumnRequestCreating={onAIColumnRequestCreating}
29-
className="ai__datagrid"
29+
className="ai__grid"
3030
>
3131
<Paging
3232
enabled={true}

apps/demos/Demos/TreeList/AIColumns/ReactJs/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
background-color: var(--dx-datagrid-row-alternation-bg);
33
}
44

5-
.ai__datagrid {
5+
.ai__grid {
66
min-height: 600px;
77
}
88

apps/demos/Demos/TreeList/AIColumns/Vue/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:showBorders="true"
99
:aiIntegration="aiIntegration"
1010
:onAIColumnRequestCreating="onAIColumnRequestCreating"
11-
class="ai__datagrid"
11+
class="ai__grid"
1212
>
1313
<DxScrolling :mode="'standard'"/>
1414
<DxPaging
@@ -95,7 +95,7 @@ const onAIColumnRequestCreating = (e: { data: Partial<IEmployee>[] }) => {
9595
background-color: var(--dx-datagrid-row-alternation-bg);
9696
}
9797
98-
.ai__datagrid {
98+
.ai__grid {
9999
min-height: 600px;
100100
}
101101

0 commit comments

Comments
 (0)