diff --git a/.github/workflows/demos_visual_tests_frameworks.yml b/.github/workflows/demos_visual_tests_frameworks.yml
index e909f943d89d..f9b61931d5ef 100644
--- a/.github/workflows/demos_visual_tests_frameworks.yml
+++ b/.github/workflows/demos_visual_tests_frameworks.yml
@@ -451,7 +451,7 @@ jobs:
working-directory: apps/demos
env:
CHANGEDFILEINFOSPATH: changed-files.json
- BROWSERS: chrome:headless --disable-gpu --window-size=1200,800 --js-flags=--random-seed=2147483647
+ BROWSERS: chrome:headless --window-size=1200,800 --disable-partial-raster --disable-skia-runtime-opts --run-all-compositor-stages-before-draw --disable-new-content-rendering-timeout --disable-threaded-animation --disable-threaded-scrolling --disable-checker-imaging --disable-image-animation-resync --use-gl="swiftshader" --disable-features=PaintHolding --js-flags=--random-seed=2147483647 --font-render-hinting=none --disable-font-subpixel-positioning
# DEBUG: hammerhead:*,testcafe:*
CONCURRENCY: 4
TCQUARANTINE: true
diff --git a/apps/demos/Demos/Chat/Customization/jQuery/index.js b/apps/demos/Demos/Chat/Customization/jQuery/index.js
index 47de3344c96f..b6381e0deed9 100644
--- a/apps/demos/Demos/Chat/Customization/jQuery/index.js
+++ b/apps/demos/Demos/Chat/Customization/jQuery/index.js
@@ -10,30 +10,6 @@ $(() => {
messageTimestampFormat: messageTimestampFormat[0],
}).dxChat('instance');
- $('#chat-disabled').dxCheckBox({
- value: false,
- text: 'Disable Chat',
- onValueChanged(data) {
- chat.option('disabled', data.value);
- },
- });
-
- $('#show-day-headers').dxCheckBox({
- value: true,
- text: 'Show Day Headers',
- onValueChanged(data) {
- chat.option('showDayHeaders', data.value);
- },
- });
-
- $('#show-message-timestamp').dxCheckBox({
- value: true,
- text: 'Show Message Timestamp',
- onValueChanged(data) {
- chat.option('showMessageTimestamp', data.value);
- },
- });
-
$('#show-avatar').dxCheckBox({
value: true,
text: 'Show Avatar',
@@ -50,6 +26,14 @@ $(() => {
},
});
+ $('#show-day-headers').dxCheckBox({
+ value: true,
+ text: 'Show Day Headers',
+ onValueChanged(data) {
+ chat.option('showDayHeaders', data.value);
+ },
+ });
+
$('#day-headers-format').dxSelectBox({
items: dayHeaderFormat,
value: dayHeaderFormat[0],
@@ -59,6 +43,14 @@ $(() => {
},
});
+ $('#show-message-timestamp').dxCheckBox({
+ value: true,
+ text: 'Show Message Timestamp',
+ onValueChanged(data) {
+ chat.option('showMessageTimestamp', data.value);
+ },
+ });
+
$('#message-timestamp-format').dxSelectBox({
items: messageTimestampFormat,
value: messageTimestampFormat[0],
@@ -67,4 +59,12 @@ $(() => {
chat.option('messageTimestampFormat', data.value);
},
});
+
+ $('#chat-disabled').dxCheckBox({
+ value: false,
+ text: 'Disable Chat',
+ onValueChanged(data) {
+ chat.option('disabled', data.value);
+ },
+ });
});
diff --git a/apps/demos/Demos/Chat/Overview/Vue/App.vue b/apps/demos/Demos/Chat/Overview/Vue/App.vue
index e39b85502c55..0141f6fff784 100644
--- a/apps/demos/Demos/Chat/Overview/Vue/App.vue
+++ b/apps/demos/Demos/Chat/Overview/Vue/App.vue
@@ -1,62 +1,67 @@
-
-
+
+
-
-
+
+
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.css b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.css
new file mode 100644
index 000000000000..f65579fc60ad
--- /dev/null
+++ b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.css
@@ -0,0 +1,100 @@
+body {
+ overflow-x: hidden;
+}
+
+.demo-container {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+
+.container {
+ min-width: 720px;
+ width: 100%;
+}
+
+::ng-deep .employees {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 16px;
+ min-height: 644px;
+ padding-bottom: 24px;
+}
+
+::ng-deep employee-card {
+ width: 100%;
+ max-height: 312px;
+ align-self: stretch;
+ overflow: hidden;
+ border: var(--dx-border-width) solid var(--dx-color-border);
+ border-radius: var(--dx-border-radius);
+ background-color: var(--dx-component-color-bg);
+}
+
+::ng-deep .employees.employees--forth employee-card {
+ min-width: 250px;
+ width: 390px;
+ flex-basis: calc(50% - 10px);
+}
+
+::ng-deep .employees.employees--six employee-card {
+ flex-basis: calc(33.3% - 12.5px);
+}
+
+::ng-deep .employees__img-wrapper {
+ height: 180px;
+ position: relative;
+ overflow: hidden;
+ border-bottom: var(--dx-border-width) solid var(--dx-color-border);
+ background-color: #fff;
+}
+
+::ng-deep .employees__img {
+ display: block;
+ height: 220px;
+ position: absolute;
+ content: "";
+ left: 50%;
+ top: 0;
+ transform: translateX(-50%);
+}
+
+::ng-deep .employees__info {
+ padding: 24px;
+}
+
+::ng-deep .employees__info-row {
+ margin-bottom: 8px;
+ text-wrap: nowrap;
+}
+
+::ng-deep .employees__info-label {
+ display: inline-block;
+ font-weight: 600;
+ vertical-align: middle;
+}
+
+::ng-deep .employees.employees--forth .employees__info-label {
+ width: 160px;
+}
+
+::ng-deep .employees.employees--six .employees__info-label {
+ width: 80px;
+}
+
+::ng-deep .employees__info-value {
+ display: inline-block;
+ text-wrap: nowrap;
+ text-overflow: ellipsis;
+ vertical-align: middle;
+ overflow: hidden;
+ white-space:nowrap
+}
+
+::ng-deep .employees.employees--forth .employees__info-value {
+ max-width: 180px;
+}
+
+::ng-deep .employees.employees--six .employees__info-value {
+ max-width: 120px;
+}
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.html b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.html
index ddc4ed8f5862..175a0142f5e6 100644
--- a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.html
+++ b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.html
@@ -1,7 +1,22 @@
-
-
+
+
+ @for (employee of pageEmployees; track employee.ID) {
+
+ }
+
+
+
+
+
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts
index 7ea2d957c548..125f11487eca 100644
--- a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts
+++ b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts
@@ -1,8 +1,9 @@
import { NgModule, Component, enableProdMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-import { DxDataGridModule } from 'devextreme-angular';
-import { Customer, Service } from './app.service';
+import { DxPaginationModule } from 'devextreme-angular';
+import { Employee, Service } from './app.service';
+import { EmployeeCard } from './employee-card/employee-card.component';
if (!/localhost/.test(document.location.host)) {
enableProdMode();
@@ -17,22 +18,53 @@ if (window && window.config.packageConfigPaths) {
@Component({
selector: 'demo-app',
templateUrl: `.${modulePrefix}/app.component.html`,
+ styleUrls: [`.${modulePrefix}/app.component.css`],
providers: [Service],
})
export class AppComponent {
- customers: Customer[];
+ employees: Employee[];
+
+ pageEmployees: Employee[];
+
+ itemCount: number;
+
+ readonly allowedPageSizes = [4, 6];
+
+ showInfo = true;
+
+ showNavigationButtons = true;
+
+ pageIndex = 1;
+
+ pageSize = 4;
+
+ onPageIndexChange(val) {
+ this.pageIndex = val;
+ this.setPageEmployees();
+ }
+
+ onPageSizeChange(val) {
+ this.pageSize = val;
+ this.setPageEmployees();
+ }
+
+ setPageEmployees() {
+ this.pageEmployees = this.employees.slice((this.pageIndex - 1) * this.pageSize, this.pageIndex * this.pageSize);
+ }
constructor(service: Service) {
- this.customers = service.getCustomers();
+ this.employees = service.getEmployees();
+ this.itemCount = this.employees.length;
+ this.setPageEmployees();
}
}
@NgModule({
imports: [
BrowserModule,
- DxDataGridModule,
+ DxPaginationModule,
],
- declarations: [AppComponent],
+ declarations: [AppComponent, EmployeeCard],
bootstrap: [AppComponent],
})
export class AppModule { }
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/app.service.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/app.service.ts
index db238661893a..32d2a4fbb35d 100644
--- a/apps/demos/Demos/Pagination/Overview/Angular/app/app.service.ts
+++ b/apps/demos/Demos/Pagination/Overview/Angular/app/app.service.ts
@@ -1,150 +1,434 @@
import { Injectable } from '@angular/core';
-export class Customer {
+export class Employee {
ID: number;
- CompanyName: string;
+ FullName: string;
- Address: string;
+ Title: string;
- City: string;
+ Employee_Picture: string;
- State: string;
+ Picture: string;
- Zipcode: number;
+ MobilePhone: string;
- Phone: string;
-
- Fax: string;
-
- Website: string;
}
-let customers: Customer[] = [{
- ID: 1,
- CompanyName: 'Super Mart of the West',
- Address: '702 SW 8th Street',
- City: 'Bentonville',
- State: 'Arkansas',
- Zipcode: 72716,
- Phone: '(800) 555-2797',
- Fax: '(800) 555-2171',
- Website: 'http://www.nowebsitesupermart.dx',
-}, {
- ID: 2,
- CompanyName: 'Electronics Depot',
- Address: '2455 Paces Ferry Road NW',
- City: 'Atlanta',
- State: 'Georgia',
- Zipcode: 30339,
- Phone: '(800) 595-3232',
- Fax: '(800) 595-3231',
- Website: 'http://www.nowebsitedepot.dx',
-}, {
- ID: 3,
- CompanyName: 'K&S Music',
- Address: '1000 Nicllet Mall',
- City: 'Minneapolis',
- State: 'Minnesota',
- Zipcode: 55403,
- Phone: '(612) 304-6073',
- Fax: '(612) 304-6074',
- Website: 'http://www.nowebsitemusic.dx',
-}, {
- ID: 4,
- CompanyName: "Tom's Club",
- Address: '999 Lake Drive',
- City: 'Issaquah',
- State: 'Washington',
- Zipcode: 98027,
- Phone: '(800) 955-2292',
- Fax: '(800) 955-2293',
- Website: 'http://www.nowebsitetomsclub.dx',
-}, {
- ID: 5,
- CompanyName: 'E-Mart',
- Address: '3333 Beverly Rd',
- City: 'Hoffman Estates',
- State: 'Illinois',
- Zipcode: 60179,
- Phone: '(847) 286-2500',
- Fax: '(847) 286-2501',
- Website: 'http://www.nowebsiteemart.dx',
-}, {
- ID: 6,
- CompanyName: 'Walters',
- Address: '200 Wilmot Rd',
- City: 'Deerfield',
- State: 'Illinois',
- Zipcode: 60015,
- Phone: '(847) 940-2500',
- Fax: '(847) 940-2501',
- Website: 'http://www.nowebsitewalters.dx',
-}, {
- ID: 7,
- CompanyName: 'StereoShack',
- Address: '400 Commerce S',
- City: 'Fort Worth',
- State: 'Texas',
- Zipcode: 76102,
- Phone: '(817) 820-0741',
- Fax: '(817) 820-0742',
- Website: 'http://www.nowebsiteshack.dx',
-}, {
- ID: 8,
- CompanyName: 'Circuit Town',
- Address: '2200 Kensington Court',
- City: 'Oak Brook',
- State: 'Illinois',
- Zipcode: 60523,
- Phone: '(800) 955-2929',
- Fax: '(800) 955-9392',
- Website: 'http://www.nowebsitecircuittown.dx',
-}, {
- ID: 9,
- CompanyName: 'Premier Buy',
- Address: '7601 Penn Avenue South',
- City: 'Richfield',
- State: 'Minnesota',
- Zipcode: 55423,
- Phone: '(612) 291-1000',
- Fax: '(612) 291-2001',
- Website: 'http://www.nowebsitepremierbuy.dx',
-}, {
- ID: 10,
- CompanyName: 'ElectrixMax',
- Address: '263 Shuman Blvd',
- City: 'Naperville',
- State: 'Illinois',
- Zipcode: 60563,
- Phone: '(630) 438-7800',
- Fax: '(630) 438-7801',
- Website: 'http://www.nowebsiteelectrixmax.dx',
-}, {
- ID: 11,
- CompanyName: 'Video Emporium',
- Address: '1201 Elm Street',
- City: 'Dallas',
- State: 'Texas',
- Zipcode: 75270,
- Phone: '(214) 854-3000',
- Fax: '(214) 854-3001',
- Website: 'http://www.nowebsitevideoemporium.dx',
-}, {
- ID: 12,
- CompanyName: 'Screen Shop',
- Address: '1000 Lowes Blvd',
- City: 'Mooresville',
- State: 'North Carolina',
- Zipcode: 28117,
- Phone: '(800) 445-6937',
- Fax: '(800) 445-6938',
- Website: 'http://www.nowebsitescreenshop.dx',
-}];
+const employees: Employee[] = [
+ {
+ ID: 1,
+ FullName: 'John Heart',
+ Title: 'CEO',
+ Employee_Picture: '01.png',
+ Picture: '../../../../images/employees/01.png',
+ MobilePhone: '2135559392',
+ },
+ {
+ ID: 2,
+ FullName: 'Samantha Bright',
+ Title: 'COO',
+ Employee_Picture: '30.png',
+ Picture: '../../../../images/employees/30.png',
+ MobilePhone: '2135552858',
+ },
+ {
+ ID: 3,
+ FullName: 'Arthur Miller',
+ Title: 'CTO',
+ Employee_Picture: '10.png',
+ Picture: '../../../../images/employees/10.png',
+ MobilePhone: '3105558583',
+ },
+ {
+ ID: 4,
+ FullName: 'Robert Reagan',
+ Title: 'CMO',
+ Employee_Picture: '03.png',
+ Picture: '../../../../images/employees/03.png',
+ MobilePhone: '8185552387',
+ },
+ {
+ ID: 5,
+ FullName: 'Greta Sims',
+ Title: 'HR Manager',
+ Employee_Picture: '04.png',
+ Picture: '../../../../images/employees/04.png',
+ MobilePhone: '8185556546',
+ },
+ {
+ ID: 6,
+ FullName: 'Brett Wade',
+ Title: 'IT Manager',
+ Employee_Picture: '05.png',
+ Picture: '../../../../images/employees/05.png',
+ MobilePhone: '6265550358',
+ },
+ {
+ ID: 7,
+ FullName: 'Sandra Johnson',
+ Title: 'Controller',
+ Employee_Picture: '06.png',
+ Picture: '../../../../images/employees/06.png',
+ MobilePhone: '5625552082',
+ },
+ {
+ ID: 8,
+ FullName: 'Ed Holmes',
+ Title: 'Sales Manager',
+ Employee_Picture: '11.png',
+ Picture: '../../../../images/employees/11.png',
+ MobilePhone: '3105551288',
+ },
+ {
+ ID: 9,
+ FullName: 'Barb Banks',
+ Title: 'Support Manager',
+ Employee_Picture: '20.png',
+ Picture: '../../../../images/employees/20.png',
+ MobilePhone: '3105553355',
+ },
+ {
+ ID: 10,
+ FullName: 'Kevin Carter',
+ Title: 'Shipping Manager',
+ Employee_Picture: '07.png',
+ Picture: '../../../../images/employees/07.png',
+ MobilePhone: '2135552840',
+ },
+ {
+ ID: 11,
+ FullName: 'Cindy Stanwick',
+ Title: 'HR Assistant',
+ Employee_Picture: '08.png',
+ Picture: '../../../../images/employees/08.png',
+ MobilePhone: '8185556655',
+ },
+ {
+ ID: 12,
+ FullName: 'Sammy Hill',
+ Title: 'Sales Assistant',
+ Employee_Picture: '12.png',
+ Picture: '../../../../images/employees/12.png',
+ MobilePhone: '6265557292',
+ },
+ {
+ ID: 13,
+ FullName: 'Davey Jones',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '13.png',
+ Picture: '../../../../images/employees/13.png',
+ MobilePhone: '6265550281',
+ },
+ {
+ ID: 14,
+ FullName: 'Victor Norris',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '14.png',
+ Picture: '../../../../images/employees/14.png',
+ MobilePhone: '2135559278',
+ },
+ {
+ ID: 15,
+ FullName: 'Mary Stern',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '15.png',
+ Picture: '../../../../images/employees/15.png',
+ MobilePhone: '8185557857',
+ },
+ {
+ ID: 16,
+ FullName: 'Robin Cosworth',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '16.png',
+ Picture: '../../../../images/employees/16.png',
+ MobilePhone: '8185550942',
+ },
+ {
+ ID: 17,
+ FullName: 'Kelly Rodriguez',
+ Title: 'Support Assistant',
+ Employee_Picture: '17.png',
+ Picture: '../../../../images/employees/17.png',
+ MobilePhone: '8185559248',
+ },
+ {
+ ID: 18,
+ FullName: 'James Anderson',
+ Title: 'Support Assistant',
+ Employee_Picture: '18.png',
+ Picture: '../../../../images/employees/18.png',
+ MobilePhone: '3235554702',
+ },
+ {
+ ID: 19,
+ FullName: 'Antony Remmen',
+ Title: 'Support Assistant',
+ Employee_Picture: '19.png',
+ Picture: '../../../../images/employees/19.png',
+ MobilePhone: '3105556625',
+ },
+ {
+ ID: 20,
+ FullName: 'Olivia Peyton',
+ Title: 'Sales Assistant',
+ Employee_Picture: '09.png',
+ Picture: '../../../../images/employees/09.png',
+ MobilePhone: '3105552728',
+ },
+ {
+ ID: 21,
+ FullName: 'Taylor Riley',
+ Title: 'Network Admin',
+ Employee_Picture: '21.png',
+ Picture: '../../../../images/employees/21.png',
+ MobilePhone: '3105557276',
+ },
+ {
+ ID: 22,
+ FullName: 'Amelia Harper',
+ Title: 'Network Admin',
+ Employee_Picture: '22.png',
+ Picture: '../../../../images/employees/22.png',
+ MobilePhone: '2135554276',
+ },
+ {
+ ID: 23,
+ FullName: 'Wally Hobbs',
+ Title: 'Programmer',
+ Employee_Picture: '23.png',
+ Picture: '../../../../images/employees/23.png',
+ MobilePhone: '8185558872',
+ },
+ {
+ ID: 24,
+ FullName: 'Brad Jameson',
+ Title: 'Programmer',
+ Employee_Picture: '24.png',
+ Picture: '../../../../images/employees/24.png',
+ MobilePhone: '8185554646',
+ },
+ {
+ ID: 25,
+ FullName: 'Karen Goodson',
+ Title: 'Programmer',
+ Employee_Picture: '25.png',
+ Picture: '../../../../images/employees/25.png',
+ MobilePhone: '6265550908',
+ },
+ {
+ ID: 26,
+ FullName: 'Marcus Orbison',
+ Title: 'Travel Coordinator',
+ Employee_Picture: '26.png',
+ Picture: '../../../../images/employees/26.png',
+ MobilePhone: '2135557098',
+ },
+ {
+ ID: 27,
+ FullName: 'Sandy Bright',
+ Title: 'Benefits Coordinator',
+ Employee_Picture: '27.png',
+ Picture: '../../../../images/employees/27.png',
+ MobilePhone: '8185550524',
+ },
+ {
+ ID: 28,
+ FullName: 'Morgan Kennedy',
+ Title: 'Graphic Designer',
+ Employee_Picture: '28.png',
+ Picture: '../../../../images/employees/28.png',
+ MobilePhone: '8185558238',
+ },
+ {
+ ID: 29,
+ FullName: 'Violet Bailey',
+ Title: 'Jr Graphic Designer',
+ Employee_Picture: '29.png',
+ Picture: '../../../../images/employees/29.png',
+ MobilePhone: '8185552478',
+ },
+ {
+ ID: 30,
+ FullName: 'Ken Samuelson',
+ Title: 'Ombudsman',
+ Employee_Picture: '02.png',
+ Picture: '../../../../images/employees/02.png',
+ MobilePhone: '5625559282',
+ },
+ {
+ ID: 31,
+ FullName: 'Nat Maguiree',
+ Title: 'Trainer',
+ Employee_Picture: '31.png',
+ Picture: '../../../../images/employees/31.png',
+ MobilePhone: '5625558377',
+ },
+ {
+ ID: 32,
+ FullName: 'Bart Arnaz',
+ Title: 'Director of Engineering',
+ Employee_Picture: '32.png',
+ Picture: '../../../../images/employees/32.png',
+ MobilePhone: '7145552000',
+ },
+ {
+ ID: 33,
+ FullName: 'Leah Simpson',
+ Title: 'Test Coordinator',
+ Employee_Picture: '33.png',
+ Picture: '../../../../images/employees/33.png',
+ MobilePhone: '5625595830',
+ },
+ {
+ ID: 34,
+ FullName: 'Arnie Schwartz',
+ Title: 'Engineer',
+ Employee_Picture: '34.png',
+ Picture: '../../../../images/employees/34.png',
+ MobilePhone: '7145558882',
+ },
+ {
+ ID: 35,
+ FullName: 'Billy Zimmer',
+ Title: 'Engineer',
+ Employee_Picture: '51.png',
+ Picture: '../../../../images/employees/51.png',
+ MobilePhone: '9095556939',
+ },
+ {
+ ID: 36,
+ FullName: 'Samantha Piper',
+ Title: 'Engineer',
+ Employee_Picture: '35.png',
+ Picture: '../../../../images/employees/35.png',
+ MobilePhone: '3235554512',
+ },
+ {
+ ID: 37,
+ FullName: 'Maggie Boxter',
+ Title: 'Engineer',
+ Employee_Picture: '36.png',
+ Picture: '../../../../images/employees/36.png',
+ MobilePhone: '7145557239',
+ },
+ {
+ ID: 38,
+ FullName: 'Terry Bradley',
+ Title: 'QA Engineer',
+ Employee_Picture: '37.png',
+ Picture: '../../../../images/employees/37.png',
+ MobilePhone: '8055552788',
+ },
+ {
+ ID: 39,
+ FullName: 'Gabe Jones',
+ Title: 'Retail Coordinator',
+ Employee_Picture: '38.png',
+ Picture: '../../../../images/employees/38.png',
+ MobilePhone: '3105555395',
+ },
+ {
+ ID: 40,
+ FullName: 'Lucy Ball',
+ Title: 'Sales Assistant',
+ Employee_Picture: '39.png',
+ Picture: '../../../../images/employees/39.png',
+ MobilePhone: '3105553357',
+ },
+ {
+ ID: 41,
+ FullName: 'Jim Packard',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '40.png',
+ Picture: '../../../../images/employees/40.png',
+ MobilePhone: '6615558224',
+ },
+ {
+ ID: 42,
+ FullName: 'Hannah Brookly',
+ Title: 'Online Sales Manager',
+ Employee_Picture: '41.png',
+ Picture: '../../../../images/employees/41.png',
+ MobilePhone: '8055553627',
+ },
+ {
+ ID: 43,
+ FullName: 'Harv Mudd',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '42.png',
+ Picture: '../../../../images/employees/42.png',
+ MobilePhone: '8315553895',
+ },
+ {
+ ID: 44,
+ FullName: 'Clark Morgan',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '43.png',
+ Picture: '../../../../images/employees/43.png',
+ MobilePhone: '9255552525',
+ },
+ {
+ ID: 45,
+ FullName: 'Todd Hoffman',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '44.png',
+ Picture: '../../../../images/employees/44.png',
+ MobilePhone: '9255553579',
+ },
+ {
+ ID: 46,
+ FullName: 'Jackie Garmin',
+ Title: 'Support Assistant',
+ Employee_Picture: '45.png',
+ Picture: '../../../../images/employees/45.png',
+ MobilePhone: '2135551824',
+ },
+ {
+ ID: 47,
+ FullName: 'Lincoln Bartlett',
+ Title: 'Sales Assistant',
+ Employee_Picture: '46.png',
+ Picture: '../../../../images/employees/46.png',
+ MobilePhone: '2135558272',
+ },
+ {
+ ID: 48,
+ FullName: 'Brad Farkus',
+ Title: 'Engineer',
+ Employee_Picture: '47.png',
+ Picture: '../../../../images/employees/47.png',
+ MobilePhone: '2135553626',
+ },
+ {
+ ID: 49,
+ FullName: 'Jenny Hobbs',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '48.png',
+ Picture: '../../../../images/employees/48.png',
+ MobilePhone: '3105552668',
+ },
+ {
+ ID: 50,
+ FullName: 'Dallas Lou',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '49.png',
+ Picture: '../../../../images/employees/49.png',
+ MobilePhone: '2135558357',
+ },
+ {
+ ID: 51,
+ FullName: 'Stu Pizaro',
+ Title: 'Engineer',
+ Employee_Picture: '50.png',
+ Picture: '../../../../images/employees/50.png',
+ MobilePhone: '2135552552',
+ },
+];
@Injectable()
export class Service {
- getCustomers() {
- return customers;
+ getEmployees() {
+ return employees;
}
}
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.html b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.html
new file mode 100644
index 000000000000..436ef5afdbfc
--- /dev/null
+++ b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+ Full Name:
+ {{ employee.FullName }}
+
+
+ Position:
+ {{ employee.Title }}
+
+
+ Phone:
+ {{ employee.MobilePhone }}
+
+
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts
new file mode 100644
index 000000000000..7f112f55fbdb
--- /dev/null
+++ b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts
@@ -0,0 +1,16 @@
+import { Component, Input } from '@angular/core';
+import { Employee } from '../app.service';
+
+let modulePrefix = '';
+// @ts-ignore
+if (window && window.config.packageConfigPaths) {
+ modulePrefix = '/app';
+}
+
+@Component({
+ selector: 'employee-card',
+ templateUrl: `.${modulePrefix}/employee-card/employee-card.component.html`,
+})
+export class EmployeeCard {
+ @Input() employee: Employee;
+}
diff --git a/apps/demos/Demos/Pagination/Overview/Angular/index.html b/apps/demos/Demos/Pagination/Overview/Angular/index.html
index 3bb93e38968b..d6cce972f42b 100644
--- a/apps/demos/Demos/Pagination/Overview/Angular/index.html
+++ b/apps/demos/Demos/Pagination/Overview/Angular/index.html
@@ -8,7 +8,7 @@
-
+
diff --git a/apps/demos/Demos/Pagination/Overview/React/App.tsx b/apps/demos/Demos/Pagination/Overview/React/App.tsx
index 62e519df1408..43ffc99aae3b 100644
--- a/apps/demos/Demos/Pagination/Overview/React/App.tsx
+++ b/apps/demos/Demos/Pagination/Overview/React/App.tsx
@@ -1,13 +1,14 @@
import React, { useState } from 'react';
import Pagination from 'devextreme-react/pagination';
import EmployeeGallery from './EmployeesGallery.tsx';
+
import { employees } from './data.ts';
const PAGE_SIZES = [4, 6];
const App = () => {
- const [pageSize, setPageSize] = useState(4);
- const [pageIndex, setPageIndex] = useState(1);
+ const [pageSize, setPageSize] = useState(4);
+ const [pageIndex, setPageIndex] = useState(1);
return (
<>
diff --git a/apps/demos/Demos/Pagination/Overview/React/EmployeeCard.tsx b/apps/demos/Demos/Pagination/Overview/React/EmployeeCard.tsx
index b2256729a59a..cf450dd52775 100644
--- a/apps/demos/Demos/Pagination/Overview/React/EmployeeCard.tsx
+++ b/apps/demos/Demos/Pagination/Overview/React/EmployeeCard.tsx
@@ -1,13 +1,5 @@
import React from 'react';
-
-interface Employee {
- ID: number;
- FullName: string;
- Title: string;
- Employee_Picture: string;
- Picture: string;
- MobilePhone: string;
-}
+import { Employee } from './data';
interface EmployeeCardProps {
employee: Employee;
diff --git a/apps/demos/Demos/Pagination/Overview/React/EmployeesGallery.tsx b/apps/demos/Demos/Pagination/Overview/React/EmployeesGallery.tsx
index e6fe26410b53..c8667c9b344f 100644
--- a/apps/demos/Demos/Pagination/Overview/React/EmployeesGallery.tsx
+++ b/apps/demos/Demos/Pagination/Overview/React/EmployeesGallery.tsx
@@ -1,14 +1,6 @@
import React from 'react';
import EmployeeCard from './EmployeeCard.tsx';
-
-interface Employee {
- ID: number;
- FullName: string;
- Title: string;
- Employee_Picture: string;
- Picture: string;
- MobilePhone: string;
-}
+import { Employee } from './data';
interface EmployeeGalleryProps {
employees: Employee[];
diff --git a/apps/demos/Demos/Pagination/Overview/React/data.ts b/apps/demos/Demos/Pagination/Overview/React/data.ts
index ba137678f19b..bd2e43e18ba2 100644
--- a/apps/demos/Demos/Pagination/Overview/React/data.ts
+++ b/apps/demos/Demos/Pagination/Overview/React/data.ts
@@ -1,4 +1,13 @@
-export const employees = [
+export interface Employee {
+ ID: number;
+ FullName: string;
+ Title: string;
+ Employee_Picture: string;
+ Picture: string;
+ MobilePhone: string;
+}
+
+export const employees: Employee[] = [
{
ID: 1,
FullName: 'John Heart',
diff --git a/apps/demos/Demos/Pagination/Overview/Vue/App.vue b/apps/demos/Demos/Pagination/Overview/Vue/App.vue
index ad7848d2eb91..ab1ada0a0e04 100644
--- a/apps/demos/Demos/Pagination/Overview/Vue/App.vue
+++ b/apps/demos/Demos/Pagination/Overview/Vue/App.vue
@@ -1,24 +1,159 @@
-
+
+
+
+
+
+
+ Full Name:
+ {{ employee.FullName }}
+
+
+ Position:
+ {{ employee.Title }}
+
+
+ Phone:
+ {{ employee.MobilePhone }}
+
+
+
+
+
+
-
+
+
\ No newline at end of file
diff --git a/apps/demos/Demos/Pagination/Overview/Vue/data.js b/apps/demos/Demos/Pagination/Overview/Vue/data.js
deleted file mode 100644
index 6380157422df..000000000000
--- a/apps/demos/Demos/Pagination/Overview/Vue/data.js
+++ /dev/null
@@ -1,121 +0,0 @@
-export const customers = [{
- ID: 1,
- CompanyName: 'Super Mart of the West',
- Address: '702 SW 8th Street',
- City: 'Bentonville',
- State: 'Arkansas',
- Zipcode: 72716,
- Phone: '(800) 555-2797',
- Fax: '(800) 555-2171',
- Website: 'http://www.nowebsitesupermart.dx',
-}, {
- ID: 2,
- CompanyName: 'Electronics Depot',
- Address: '2455 Paces Ferry Road NW',
- City: 'Atlanta',
- State: 'Georgia',
- Zipcode: 30339,
- Phone: '(800) 595-3232',
- Fax: '(800) 595-3231',
- Website: 'http://www.nowebsitedepot.dx',
-}, {
- ID: 3,
- CompanyName: 'K&S Music',
- Address: '1000 Nicllet Mall',
- City: 'Minneapolis',
- State: 'Minnesota',
- Zipcode: 55403,
- Phone: '(612) 304-6073',
- Fax: '(612) 304-6074',
- Website: 'http://www.nowebsitemusic.dx',
-}, {
- ID: 4,
- CompanyName: "Tom's Club",
- Address: '999 Lake Drive',
- City: 'Issaquah',
- State: 'Washington',
- Zipcode: 98027,
- Phone: '(800) 955-2292',
- Fax: '(800) 955-2293',
- Website: 'http://www.nowebsitetomsclub.dx',
-}, {
- ID: 5,
- CompanyName: 'E-Mart',
- Address: '3333 Beverly Rd',
- City: 'Hoffman Estates',
- State: 'Illinois',
- Zipcode: 60179,
- Phone: '(847) 286-2500',
- Fax: '(847) 286-2501',
- Website: 'http://www.nowebsiteemart.dx',
-}, {
- ID: 6,
- CompanyName: 'Walters',
- Address: '200 Wilmot Rd',
- City: 'Deerfield',
- State: 'Illinois',
- Zipcode: 60015,
- Phone: '(847) 940-2500',
- Fax: '(847) 940-2501',
- Website: 'http://www.nowebsitewalters.dx',
-}, {
- ID: 7,
- CompanyName: 'StereoShack',
- Address: '400 Commerce S',
- City: 'Fort Worth',
- State: 'Texas',
- Zipcode: 76102,
- Phone: '(817) 820-0741',
- Fax: '(817) 820-0742',
- Website: 'http://www.nowebsiteshack.dx',
-}, {
- ID: 8,
- CompanyName: 'Circuit Town',
- Address: '2200 Kensington Court',
- City: 'Oak Brook',
- State: 'Illinois',
- Zipcode: 60523,
- Phone: '(800) 955-2929',
- Fax: '(800) 955-9392',
- Website: 'http://www.nowebsitecircuittown.dx',
-}, {
- ID: 9,
- CompanyName: 'Premier Buy',
- Address: '7601 Penn Avenue South',
- City: 'Richfield',
- State: 'Minnesota',
- Zipcode: 55423,
- Phone: '(612) 291-1000',
- Fax: '(612) 291-2001',
- Website: 'http://www.nowebsitepremierbuy.dx',
-}, {
- ID: 10,
- CompanyName: 'ElectrixMax',
- Address: '263 Shuman Blvd',
- City: 'Naperville',
- State: 'Illinois',
- Zipcode: 60563,
- Phone: '(630) 438-7800',
- Fax: '(630) 438-7801',
- Website: 'http://www.nowebsiteelectrixmax.dx',
-}, {
- ID: 11,
- CompanyName: 'Video Emporium',
- Address: '1201 Elm Street',
- City: 'Dallas',
- State: 'Texas',
- Zipcode: 75270,
- Phone: '(214) 854-3000',
- Fax: '(214) 854-3001',
- Website: 'http://www.nowebsitevideoemporium.dx',
-}, {
- ID: 12,
- CompanyName: 'Screen Shop',
- Address: '1000 Lowes Blvd',
- City: 'Mooresville',
- State: 'North Carolina',
- Zipcode: 28117,
- Phone: '(800) 445-6937',
- Fax: '(800) 445-6938',
- Website: 'http://www.nowebsitescreenshop.dx',
-}];
diff --git a/apps/demos/Demos/Pagination/Overview/Vue/data.ts b/apps/demos/Demos/Pagination/Overview/Vue/data.ts
new file mode 100644
index 000000000000..ee0d580fe540
--- /dev/null
+++ b/apps/demos/Demos/Pagination/Overview/Vue/data.ts
@@ -0,0 +1,419 @@
+export interface Employee {
+ ID: number;
+ FullName: string;
+ Title: string;
+ Employee_Picture: string;
+ Picture: string;
+ MobilePhone: string;
+}
+
+export const employees: Employee[] = [
+ {
+ ID: 1,
+ FullName: 'John Heart',
+ Title: 'CEO',
+ Employee_Picture: '01.png',
+ Picture: '../../../../images/employees/01.png',
+ MobilePhone: '2135559392',
+ },
+ {
+ ID: 2,
+ FullName: 'Samantha Bright',
+ Title: 'COO',
+ Employee_Picture: '30.png',
+ Picture: '../../../../images/employees/30.png',
+ MobilePhone: '2135552858',
+ },
+ {
+ ID: 3,
+ FullName: 'Arthur Miller',
+ Title: 'CTO',
+ Employee_Picture: '10.png',
+ Picture: '../../../../images/employees/10.png',
+ MobilePhone: '3105558583',
+ },
+ {
+ ID: 4,
+ FullName: 'Robert Reagan',
+ Title: 'CMO',
+ Employee_Picture: '03.png',
+ Picture: '../../../../images/employees/03.png',
+ MobilePhone: '8185552387',
+ },
+ {
+ ID: 5,
+ FullName: 'Greta Sims',
+ Title: 'HR Manager',
+ Employee_Picture: '04.png',
+ Picture: '../../../../images/employees/04.png',
+ MobilePhone: '8185556546',
+ },
+ {
+ ID: 6,
+ FullName: 'Brett Wade',
+ Title: 'IT Manager',
+ Employee_Picture: '05.png',
+ Picture: '../../../../images/employees/05.png',
+ MobilePhone: '6265550358',
+ },
+ {
+ ID: 7,
+ FullName: 'Sandra Johnson',
+ Title: 'Controller',
+ Employee_Picture: '06.png',
+ Picture: '../../../../images/employees/06.png',
+ MobilePhone: '5625552082',
+ },
+ {
+ ID: 8,
+ FullName: 'Ed Holmes',
+ Title: 'Sales Manager',
+ Employee_Picture: '11.png',
+ Picture: '../../../../images/employees/11.png',
+ MobilePhone: '3105551288',
+ },
+ {
+ ID: 9,
+ FullName: 'Barb Banks',
+ Title: 'Support Manager',
+ Employee_Picture: '20.png',
+ Picture: '../../../../images/employees/20.png',
+ MobilePhone: '3105553355',
+ },
+ {
+ ID: 10,
+ FullName: 'Kevin Carter',
+ Title: 'Shipping Manager',
+ Employee_Picture: '07.png',
+ Picture: '../../../../images/employees/07.png',
+ MobilePhone: '2135552840',
+ },
+ {
+ ID: 11,
+ FullName: 'Cindy Stanwick',
+ Title: 'HR Assistant',
+ Employee_Picture: '08.png',
+ Picture: '../../../../images/employees/08.png',
+ MobilePhone: '8185556655',
+ },
+ {
+ ID: 12,
+ FullName: 'Sammy Hill',
+ Title: 'Sales Assistant',
+ Employee_Picture: '12.png',
+ Picture: '../../../../images/employees/12.png',
+ MobilePhone: '6265557292',
+ },
+ {
+ ID: 13,
+ FullName: 'Davey Jones',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '13.png',
+ Picture: '../../../../images/employees/13.png',
+ MobilePhone: '6265550281',
+ },
+ {
+ ID: 14,
+ FullName: 'Victor Norris',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '14.png',
+ Picture: '../../../../images/employees/14.png',
+ MobilePhone: '2135559278',
+ },
+ {
+ ID: 15,
+ FullName: 'Mary Stern',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '15.png',
+ Picture: '../../../../images/employees/15.png',
+ MobilePhone: '8185557857',
+ },
+ {
+ ID: 16,
+ FullName: 'Robin Cosworth',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '16.png',
+ Picture: '../../../../images/employees/16.png',
+ MobilePhone: '8185550942',
+ },
+ {
+ ID: 17,
+ FullName: 'Kelly Rodriguez',
+ Title: 'Support Assistant',
+ Employee_Picture: '17.png',
+ Picture: '../../../../images/employees/17.png',
+ MobilePhone: '8185559248',
+ },
+ {
+ ID: 18,
+ FullName: 'James Anderson',
+ Title: 'Support Assistant',
+ Employee_Picture: '18.png',
+ Picture: '../../../../images/employees/18.png',
+ MobilePhone: '3235554702',
+ },
+ {
+ ID: 19,
+ FullName: 'Antony Remmen',
+ Title: 'Support Assistant',
+ Employee_Picture: '19.png',
+ Picture: '../../../../images/employees/19.png',
+ MobilePhone: '3105556625',
+ },
+ {
+ ID: 20,
+ FullName: 'Olivia Peyton',
+ Title: 'Sales Assistant',
+ Employee_Picture: '09.png',
+ Picture: '../../../../images/employees/09.png',
+ MobilePhone: '3105552728',
+ },
+ {
+ ID: 21,
+ FullName: 'Taylor Riley',
+ Title: 'Network Admin',
+ Employee_Picture: '21.png',
+ Picture: '../../../../images/employees/21.png',
+ MobilePhone: '3105557276',
+ },
+ {
+ ID: 22,
+ FullName: 'Amelia Harper',
+ Title: 'Network Admin',
+ Employee_Picture: '22.png',
+ Picture: '../../../../images/employees/22.png',
+ MobilePhone: '2135554276',
+ },
+ {
+ ID: 23,
+ FullName: 'Wally Hobbs',
+ Title: 'Programmer',
+ Employee_Picture: '23.png',
+ Picture: '../../../../images/employees/23.png',
+ MobilePhone: '8185558872',
+ },
+ {
+ ID: 24,
+ FullName: 'Brad Jameson',
+ Title: 'Programmer',
+ Employee_Picture: '24.png',
+ Picture: '../../../../images/employees/24.png',
+ MobilePhone: '8185554646',
+ },
+ {
+ ID: 25,
+ FullName: 'Karen Goodson',
+ Title: 'Programmer',
+ Employee_Picture: '25.png',
+ Picture: '../../../../images/employees/25.png',
+ MobilePhone: '6265550908',
+ },
+ {
+ ID: 26,
+ FullName: 'Marcus Orbison',
+ Title: 'Travel Coordinator',
+ Employee_Picture: '26.png',
+ Picture: '../../../../images/employees/26.png',
+ MobilePhone: '2135557098',
+ },
+ {
+ ID: 27,
+ FullName: 'Sandy Bright',
+ Title: 'Benefits Coordinator',
+ Employee_Picture: '27.png',
+ Picture: '../../../../images/employees/27.png',
+ MobilePhone: '8185550524',
+ },
+ {
+ ID: 28,
+ FullName: 'Morgan Kennedy',
+ Title: 'Graphic Designer',
+ Employee_Picture: '28.png',
+ Picture: '../../../../images/employees/28.png',
+ MobilePhone: '8185558238',
+ },
+ {
+ ID: 29,
+ FullName: 'Violet Bailey',
+ Title: 'Jr Graphic Designer',
+ Employee_Picture: '29.png',
+ Picture: '../../../../images/employees/29.png',
+ MobilePhone: '8185552478',
+ },
+ {
+ ID: 30,
+ FullName: 'Ken Samuelson',
+ Title: 'Ombudsman',
+ Employee_Picture: '02.png',
+ Picture: '../../../../images/employees/02.png',
+ MobilePhone: '5625559282',
+ },
+ {
+ ID: 31,
+ FullName: 'Nat Maguiree',
+ Title: 'Trainer',
+ Employee_Picture: '31.png',
+ Picture: '../../../../images/employees/31.png',
+ MobilePhone: '5625558377',
+ },
+ {
+ ID: 32,
+ FullName: 'Bart Arnaz',
+ Title: 'Director of Engineering',
+ Employee_Picture: '32.png',
+ Picture: '../../../../images/employees/32.png',
+ MobilePhone: '7145552000',
+ },
+ {
+ ID: 33,
+ FullName: 'Leah Simpson',
+ Title: 'Test Coordinator',
+ Employee_Picture: '33.png',
+ Picture: '../../../../images/employees/33.png',
+ MobilePhone: '5625595830',
+ },
+ {
+ ID: 34,
+ FullName: 'Arnie Schwartz',
+ Title: 'Engineer',
+ Employee_Picture: '34.png',
+ Picture: '../../../../images/employees/34.png',
+ MobilePhone: '7145558882',
+ },
+ {
+ ID: 35,
+ FullName: 'Billy Zimmer',
+ Title: 'Engineer',
+ Employee_Picture: '51.png',
+ Picture: '../../../../images/employees/51.png',
+ MobilePhone: '9095556939',
+ },
+ {
+ ID: 36,
+ FullName: 'Samantha Piper',
+ Title: 'Engineer',
+ Employee_Picture: '35.png',
+ Picture: '../../../../images/employees/35.png',
+ MobilePhone: '3235554512',
+ },
+ {
+ ID: 37,
+ FullName: 'Maggie Boxter',
+ Title: 'Engineer',
+ Employee_Picture: '36.png',
+ Picture: '../../../../images/employees/36.png',
+ MobilePhone: '7145557239',
+ },
+ {
+ ID: 38,
+ FullName: 'Terry Bradley',
+ Title: 'QA Engineer',
+ Employee_Picture: '37.png',
+ Picture: '../../../../images/employees/37.png',
+ MobilePhone: '8055552788',
+ },
+ {
+ ID: 39,
+ FullName: 'Gabe Jones',
+ Title: 'Retail Coordinator',
+ Employee_Picture: '38.png',
+ Picture: '../../../../images/employees/38.png',
+ MobilePhone: '3105555395',
+ },
+ {
+ ID: 40,
+ FullName: 'Lucy Ball',
+ Title: 'Sales Assistant',
+ Employee_Picture: '39.png',
+ Picture: '../../../../images/employees/39.png',
+ MobilePhone: '3105553357',
+ },
+ {
+ ID: 41,
+ FullName: 'Jim Packard',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '40.png',
+ Picture: '../../../../images/employees/40.png',
+ MobilePhone: '6615558224',
+ },
+ {
+ ID: 42,
+ FullName: 'Hannah Brookly',
+ Title: 'Online Sales Manager',
+ Employee_Picture: '41.png',
+ Picture: '../../../../images/employees/41.png',
+ MobilePhone: '8055553627',
+ },
+ {
+ ID: 43,
+ FullName: 'Harv Mudd',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '42.png',
+ Picture: '../../../../images/employees/42.png',
+ MobilePhone: '8315553895',
+ },
+ {
+ ID: 44,
+ FullName: 'Clark Morgan',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '43.png',
+ Picture: '../../../../images/employees/43.png',
+ MobilePhone: '9255552525',
+ },
+ {
+ ID: 45,
+ FullName: 'Todd Hoffman',
+ Title: 'Retail Sales Manager',
+ Employee_Picture: '44.png',
+ Picture: '../../../../images/employees/44.png',
+ MobilePhone: '9255553579',
+ },
+ {
+ ID: 46,
+ FullName: 'Jackie Garmin',
+ Title: 'Support Assistant',
+ Employee_Picture: '45.png',
+ Picture: '../../../../images/employees/45.png',
+ MobilePhone: '2135551824',
+ },
+ {
+ ID: 47,
+ FullName: 'Lincoln Bartlett',
+ Title: 'Sales Assistant',
+ Employee_Picture: '46.png',
+ Picture: '../../../../images/employees/46.png',
+ MobilePhone: '2135558272',
+ },
+ {
+ ID: 48,
+ FullName: 'Brad Farkus',
+ Title: 'Engineer',
+ Employee_Picture: '47.png',
+ Picture: '../../../../images/employees/47.png',
+ MobilePhone: '2135553626',
+ },
+ {
+ ID: 49,
+ FullName: 'Jenny Hobbs',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '48.png',
+ Picture: '../../../../images/employees/48.png',
+ MobilePhone: '3105552668',
+ },
+ {
+ ID: 50,
+ FullName: 'Dallas Lou',
+ Title: 'Shipping Assistant',
+ Employee_Picture: '49.png',
+ Picture: '../../../../images/employees/49.png',
+ MobilePhone: '2135558357',
+ },
+ {
+ ID: 51,
+ FullName: 'Stu Pizaro',
+ Title: 'Engineer',
+ Employee_Picture: '50.png',
+ Picture: '../../../../images/employees/50.png',
+ MobilePhone: '2135552552',
+ },
+];
diff --git a/apps/demos/Demos/Pagination/Overview/Vue/index.html b/apps/demos/Demos/Pagination/Overview/Vue/index.html
index ec140a786d7e..7ebc7f30a85a 100644
--- a/apps/demos/Demos/Pagination/Overview/Vue/index.html
+++ b/apps/demos/Demos/Pagination/Overview/Vue/index.html
@@ -17,13 +17,13 @@