Skip to content

Commit 415e94b

Browse files
committed
Rename Ai -> AI in demos
1 parent 0caf206 commit 415e94b

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import DataGrid, {
33
Column,
44
Paging,
55
Grouping,
6-
Ai,
6+
AI,
77
} from 'devextreme-react/data-grid';
88
import Popup, { Position } from 'devextreme-react/popup';
99
import { vehicles } from './data.ts';
@@ -91,7 +91,7 @@ export default function App() {
9191
fixedPosition="right"
9292
cssClass="ai__cell"
9393
>
94-
<Ai
94+
<AI
9595
mode="auto"
9696
noDataText="No data"
9797
prompt="Identify the country where the vehicle model is manufactured. When looking up a country, consider vehicle brand, model, and specifications."

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useCallback, useState } from 'react';
22
import DataGrid, {
3-
Column, Paging, Grouping, Ai,
3+
Column, Paging, Grouping, AI,
44
} from 'devextreme-react/data-grid';
55
import Popup, { Position } from 'devextreme-react/popup';
66
import { vehicles } from './data.js';
@@ -83,7 +83,7 @@ export default function App() {
8383
fixedPosition="right"
8484
cssClass="ai__cell"
8585
>
86-
<Ai
86+
<AI
8787
mode="auto"
8888
noDataText="No data"
8989
prompt="Identify the country where the vehicle model is manufactured. When looking up a country, consider vehicle brand, model, and specifications."

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
fixedPosition="right"
5858
:width="200"
5959
>
60-
<DxAi
60+
<DxAI
6161
mode="auto"
6262
noDataText="No data"
6363
prompt="Identify the country where the vehicle model is manufactured.
@@ -87,7 +87,7 @@ When looking up a country, consider vehicle brand, model, and specifications."
8787

8888
<script setup lang="ts">
8989
import { ref } from 'vue';
90-
import { DxDataGrid, DxColumn, DxGrouping, DxPaging, DxAi } from 'devextreme-vue/data-grid';
90+
import { DxDataGrid, DxColumn, DxGrouping, DxPaging, DxAI } from 'devextreme-vue/data-grid';
9191
import { DxPopup, DxPosition } from 'devextreme-vue/popup';
9292
import { vehicles, type Vehicle } from './data.ts';
9393
import { aiIntegration } from './service.ts';

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import TreeList, {
33
Column,
44
Scrolling,
55
Paging,
6-
Ai,
6+
AI,
77
} from 'devextreme-react/tree-list';
88
import { employees } from './data.ts';
99
import { aiIntegration } from './service.ts';
@@ -70,7 +70,7 @@ export default function App() {
7070
fixedPosition="right"
7171
cssClass="ai__cell"
7272
>
73-
<Ai
73+
<AI
7474
mode="auto"
7575
noDataText="No data"
7676
prompt="Identify the department where the employee works. Select from the following department list: 'Management', 'Human Resources', 'IT', 'Shipping', 'Support', 'Sales', 'Engineering'. Use 'Engineering' if you cannot find a better match."

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import TreeList, {
3-
Column, Scrolling, Paging, Ai,
3+
Column, Scrolling, Paging, AI,
44
} from 'devextreme-react/tree-list';
55
import { employees } from './data.js';
66
import { aiIntegration } from './service.js';
@@ -69,7 +69,7 @@ export default function App() {
6969
fixedPosition="right"
7070
cssClass="ai__cell"
7171
>
72-
<Ai
72+
<AI
7373
mode="auto"
7474
noDataText="No data"
7575
prompt="Identify the department where the employee works. Select from the following department list: 'Management', 'Human Resources', 'IT', 'Shipping', 'Support', 'Sales', 'Engineering'. Use 'Engineering' if you cannot find a better match."

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
fixedPosition="right"
6262
:width="180"
6363
>
64-
<DxAi
64+
<DxAI
6565
mode="auto"
6666
noDataText="No data"
6767
prompt="Identify the department where the employee works.
@@ -73,7 +73,7 @@ Select from the following department list: 'Management', 'Human Resources', 'IT'
7373
</template>
7474

7575
<script setup lang="ts">
76-
import { DxTreeList, DxColumn, DxScrolling, DxPaging, DxAi } from 'devextreme-vue/tree-list';
76+
import { DxTreeList, DxColumn, DxScrolling, DxPaging, DxAI } from 'devextreme-vue/tree-list';
7777
import Employee from './Employee.vue';
7878
import Status from './Status.vue';
7979
import { type IEmployee, employees } from './data.ts';

0 commit comments

Comments
 (0)