Skip to content

Commit eb10d01

Browse files
merge with upstream
2 parents fdfde99 + 4e86e03 commit eb10d01

303 files changed

Lines changed: 2951 additions & 699 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/demos/Demos/Autocomplete/Overview/jQuery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $(() => {
9494
});
9595

9696
function updateEmployeeInfo() {
97-
let result = $.trim(`${firstName || ''} ${lastName || ''}`);
97+
let result = `${firstName || ''} ${lastName || ''}`.trim();
9898

9999
result += (result && position) ? (`, ${position}`) : position || '';
100100
result += (result && state) ? (`, ${state}`) : state || '';

apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (window && window.config?.packageConfigPaths) {
2222
export class AppComponent {
2323
customers: Customer[];
2424

25-
columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
25+
columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
2626

2727
constructor(service: Service) {
2828
this.customers = service.getCustomers();

apps/demos/Demos/CardView/SimpleArray/React/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import CardView, { Column } from 'devextreme-react/card-view';
33
import { customers } from './data.ts';
44

5-
const columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
5+
const columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
66

77
const App = () => (
88
<CardView

apps/demos/Demos/CardView/SimpleArray/ReactJs/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import CardView, { Column } from 'devextreme-react/card-view';
33
import { customers } from './data.js';
44

5-
const columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
5+
const columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
66
const App = () => (
77
<CardView
88
dataSource={customers}

apps/demos/Demos/CardView/SimpleArray/Vue/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
import { DxCardView, DxColumn } from 'devextreme-vue/card-view';
1414
import { customers } from './data.ts';
1515
16-
const columns = ['CompanyName', 'City', 'State', 'Phone', 'Fax'];
16+
const columns = ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'];
1717
</script>

apps/demos/Demos/CardView/SimpleArray/jQuery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ $(() => {
22
$('#card-view').dxCardView({
33
dataSource: customers,
44
keyExpr: 'ID',
5-
columns: ['CompanyName', 'City', 'State', 'Phone', 'Fax'],
5+
columns: ['CompanyName', 'Address', 'City', 'State', 'Zipcode', 'Phone'],
66
});
77
});

apps/demos/Demos/Charts/SignalRService/jQuery/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
$(() => {
2+
$.type = $.type || function (obj) {
3+
if (obj == null) {
4+
return obj + '';
5+
}
6+
7+
return typeof obj;
8+
};
9+
210
const hubConnection = new signalR.HubConnectionBuilder()
311
.withUrl('https://js.devexpress.com/Demos/NetCore/stockTickDataHub', {
412
skipNegotiation: true,

apps/demos/Demos/DataGrid/CollaborativeEditing/jQuery/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
$(() => {
2+
$.type = $.type || function (obj) {
3+
if (obj == null) {
4+
return obj + '';
5+
}
6+
7+
return typeof obj;
8+
};
9+
210
const BASE_PATH = 'https://js.devexpress.com/Demos/NetCore/';
311
const url = `${BASE_PATH}api/DataGridCollaborativeEditing/`;
412
const groupId = new DevExpress.data.Guid().toString();

apps/demos/Demos/DataGrid/SignalRService/jQuery/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
$(() => {
2+
$.type = $.type || function (obj) {
3+
if (obj == null) {
4+
return obj + '';
5+
}
6+
7+
return typeof obj;
8+
};
9+
210
const connection = new signalR.HubConnectionBuilder()
311
.withUrl('https://js.devexpress.com/Demos/NetCore/liveUpdateSignalRHub', {
412
skipNegotiation: true,

apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[aiIntegration]="aiIntegration"
55
>
66
<dxo-toolbar>
7-
<dxi-item name="ai" commands="commands"></dxi-item>
7+
<dxi-item name="ai" [commands]="commands"></dxi-item>
88
<dxi-item name="separator"></dxi-item>
99
<dxi-item name="undo"></dxi-item>
1010
<dxi-item name="redo"></dxi-item>

0 commit comments

Comments
 (0)