Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions apps/demos/Demos/List/DragAndDrop/Angular/app/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ export class Task {
}

const doingTasks: Task[] = [
{ id: 1, text: 'Prepare 2019 Financial' },
{ id: 2, text: 'Prepare 2019 Marketing Plan' },
{ id: 1, text: 'Prepare 2026 Financial' },
{ id: 2, text: 'Prepare 2026 Marketing Plan' },
{ id: 3, text: 'Update Personnel Files' },
{ id: 4, text: 'Review Health Insurance Options Under the Affordable Care Act' },
];

const plannedTasks: Task[] = [
{ id: 5, text: 'New Brochures' },
{ id: 6, text: '2019 Brochure Designs' },
{ id: 6, text: '2026 Brochure Designs' },
{ id: 7, text: 'Brochure Design Review' },
{ id: 8, text: 'Website Re-Design Plan' },
{ id: 9, text: 'Rollout of New Website and Marketing Brochures' },
{ id: 10, text: 'Create 2018 Sales Report' },
{ id: 10, text: 'Create 2022 Sales Report' },
{ id: 11, text: 'Direct vs Online Sales Comparison Report' },
{ id: 12, text: 'Review 2018 Sales Report and Approve 2019 Plans' },
{ id: 12, text: 'Review 2022 Sales Report and Approve 2026 Plans' },
{ id: 13, text: 'Submit Signed NDA' },
{ id: 14, text: 'Update Revenue Projections' },
{ id: 15, text: 'Review Revenue Projections' },
Expand All @@ -30,7 +30,7 @@ const plannedTasks: Task[] = [
{ id: 18, text: 'Sign Health Insurance Forms' },
{ id: 19, text: 'Follow up with West Coast Stores' },
{ id: 20, text: 'Follow up with East Coast Stores' },
{ id: 21, text: 'Submit Refund Report for 2019 Recall' },
{ id: 21, text: 'Submit Refund Report for 2026 Recall' },
{ id: 22, text: 'Give Final Approval for Refunds' },
{ id: 23, text: 'Prepare Product Recall Report' },
{ id: 24, text: 'Review Product Recall Report by Engineering Team' },
Expand Down
12 changes: 6 additions & 6 deletions apps/demos/Demos/List/DragAndDrop/React/data.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import type { Task } from './types.ts';

export const doingTasks: Task[] = [{ id: 1, text: 'Prepare 2019 Financial' },
{ id: 2, text: 'Prepare 2019 Marketing Plan' },
export const doingTasks: Task[] = [{ id: 1, text: 'Prepare 2026 Financial' },
{ id: 2, text: 'Prepare 2026 Marketing Plan' },
{ id: 3, text: 'Update Personnel Files' },
{ id: 4, text: 'Review Health Insurance Options Under the Affordable Care Act' }];

export const plannedTasks: Task[] = [{ id: 5, text: 'New Brochures' },
{ id: 6, text: '2019 Brochure Designs' },
{ id: 6, text: '2026 Brochure Designs' },
{ id: 7, text: 'Brochure Design Review' },
{ id: 8, text: 'Website Re-Design Plan' },
{ id: 9, text: 'Rollout of New Website and Marketing Brochures' },
{ id: 10, text: 'Create 2018 Sales Report' },
{ id: 10, text: 'Create 2022 Sales Report' },
{ id: 11, text: 'Direct vs Online Sales Comparison Report' },
{ id: 12, text: 'Review 2018 Sales Report and Approve 2019 Plans' },
{ id: 12, text: 'Review 2022 Sales Report and Approve 2026 Plans' },
{ id: 13, text: 'Submit Signed NDA' },
{ id: 14, text: 'Update Revenue Projections' },
{ id: 15, text: 'Review Revenue Projections' },
Expand All @@ -21,7 +21,7 @@ export const plannedTasks: Task[] = [{ id: 5, text: 'New Brochures' },
{ id: 18, text: 'Sign Health Insurance Forms' },
{ id: 19, text: 'Follow up with West Coast Stores' },
{ id: 20, text: 'Follow up with East Coast Stores' },
{ id: 21, text: 'Submit Refund Report for 2019 Recall' },
{ id: 21, text: 'Submit Refund Report for 2026 Recall' },
{ id: 22, text: 'Give Final Approval for Refunds' },
{ id: 23, text: 'Prepare Product Recall Report' },
{ id: 24, text: 'Review Product Recall Report by Engineering Team' },
Expand Down
12 changes: 6 additions & 6 deletions apps/demos/Demos/List/DragAndDrop/ReactJs/data.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
export const doingTasks = [
{ id: 1, text: 'Prepare 2019 Financial' },
{ id: 2, text: 'Prepare 2019 Marketing Plan' },
{ id: 1, text: 'Prepare 2026 Financial' },
{ id: 2, text: 'Prepare 2026 Marketing Plan' },
{ id: 3, text: 'Update Personnel Files' },
{ id: 4, text: 'Review Health Insurance Options Under the Affordable Care Act' },
];
export const plannedTasks = [
{ id: 5, text: 'New Brochures' },
{ id: 6, text: '2019 Brochure Designs' },
{ id: 6, text: '2026 Brochure Designs' },
{ id: 7, text: 'Brochure Design Review' },
{ id: 8, text: 'Website Re-Design Plan' },
{ id: 9, text: 'Rollout of New Website and Marketing Brochures' },
{ id: 10, text: 'Create 2018 Sales Report' },
{ id: 10, text: 'Create 2022 Sales Report' },
{ id: 11, text: 'Direct vs Online Sales Comparison Report' },
{ id: 12, text: 'Review 2018 Sales Report and Approve 2019 Plans' },
{ id: 12, text: 'Review 2022 Sales Report and Approve 2026 Plans' },
{ id: 13, text: 'Submit Signed NDA' },
{ id: 14, text: 'Update Revenue Projections' },
{ id: 15, text: 'Review Revenue Projections' },
Expand All @@ -21,7 +21,7 @@ export const plannedTasks = [
{ id: 18, text: 'Sign Health Insurance Forms' },
{ id: 19, text: 'Follow up with West Coast Stores' },
{ id: 20, text: 'Follow up with East Coast Stores' },
{ id: 21, text: 'Submit Refund Report for 2019 Recall' },
{ id: 21, text: 'Submit Refund Report for 2026 Recall' },
{ id: 22, text: 'Give Final Approval for Refunds' },
{ id: 23, text: 'Prepare Product Recall Report' },
{ id: 24, text: 'Review Product Recall Report by Engineering Team' },
Expand Down
12 changes: 6 additions & 6 deletions apps/demos/Demos/List/DragAndDrop/Vue/data.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export const doingTasks = [{ id: 1, text: 'Prepare 2019 Financial' },
{ id: 2, text: 'Prepare 2019 Marketing Plan' },
export const doingTasks = [{ id: 1, text: 'Prepare 2026 Financial' },
{ id: 2, text: 'Prepare 2026 Marketing Plan' },
{ id: 3, text: 'Update Personnel Files' },
{ id: 4, text: 'Review Health Insurance Options Under the Affordable Care Act' }];

export const plannedTasks = [{ id: 5, text: 'New Brochures' },
{ id: 6, text: '2019 Brochure Designs' },
{ id: 6, text: '2026 Brochure Designs' },
{ id: 7, text: 'Brochure Design Review' },
{ id: 8, text: 'Website Re-Design Plan' },
{ id: 9, text: 'Rollout of New Website and Marketing Brochures' },
{ id: 10, text: 'Create 2018 Sales Report' },
{ id: 10, text: 'Create 2022 Sales Report' },
{ id: 11, text: 'Direct vs Online Sales Comparison Report' },
{ id: 12, text: 'Review 2018 Sales Report and Approve 2019 Plans' },
{ id: 12, text: 'Review 2022 Sales Report and Approve 2026 Plans' },
{ id: 13, text: 'Submit Signed NDA' },
{ id: 14, text: 'Update Revenue Projections' },
{ id: 15, text: 'Review Revenue Projections' },
Expand All @@ -19,7 +19,7 @@ export const plannedTasks = [{ id: 5, text: 'New Brochures' },
{ id: 18, text: 'Sign Health Insurance Forms' },
{ id: 19, text: 'Follow up with West Coast Stores' },
{ id: 20, text: 'Follow up with East Coast Stores' },
{ id: 21, text: 'Submit Refund Report for 2019 Recall' },
{ id: 21, text: 'Submit Refund Report for 2026 Recall' },
{ id: 22, text: 'Give Final Approval for Refunds' },
{ id: 23, text: 'Prepare Product Recall Report' },
{ id: 24, text: 'Review Product Recall Report by Engineering Team' },
Expand Down
12 changes: 6 additions & 6 deletions apps/demos/Demos/List/DragAndDrop/jQuery/data.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
const doingTasks = [{ id: 1, text: 'Prepare 2019 Financial' },
{ id: 2, text: 'Prepare 2019 Marketing Plan' },
const doingTasks = [{ id: 1, text: 'Prepare 2026 Financial' },
{ id: 2, text: 'Prepare 2026 Marketing Plan' },
{ id: 3, text: 'Update Personnel Files' },
{ id: 4, text: 'Review Health Insurance Options Under the Affordable Care Act' }];

const plannedTasks = [{ id: 5, text: 'New Brochures' },
{ id: 6, text: '2019 Brochure Designs' },
{ id: 6, text: '2026 Brochure Designs' },
{ id: 7, text: 'Brochure Design Review' },
{ id: 8, text: 'Website Re-Design Plan' },
{ id: 9, text: 'Rollout of New Website and Marketing Brochures' },
{ id: 10, text: 'Create 2018 Sales Report' },
{ id: 10, text: 'Create 2022 Sales Report' },
{ id: 11, text: 'Direct vs Online Sales Comparison Report' },
{ id: 12, text: 'Review 2018 Sales Report and Approve 2019 Plans' },
{ id: 12, text: 'Review 2022 Sales Report and Approve 2026 Plans' },
{ id: 13, text: 'Submit Signed NDA' },
{ id: 14, text: 'Update Revenue Projections' },
{ id: 15, text: 'Review Revenue Projections' },
Expand All @@ -19,7 +19,7 @@ const plannedTasks = [{ id: 5, text: 'New Brochures' },
{ id: 18, text: 'Sign Health Insurance Forms' },
{ id: 19, text: 'Follow up with West Coast Stores' },
{ id: 20, text: 'Follow up with East Coast Stores' },
{ id: 21, text: 'Submit Refund Report for 2019 Recall' },
{ id: 21, text: 'Submit Refund Report for 2026 Recall' },
{ id: 22, text: 'Give Final Approval for Refunds' },
{ id: 23, text: 'Prepare Product Recall Report' },
{ id: 24, text: 'Review Product Recall Report by Engineering Team' },
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/List/Grouping/Angular/app/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ const employees: Employee[] = [{
items: ['Update Personnel Files', 'Review Health Insurance Options Under the Affordable Care Act', 'Non-Compete Agreements'],
}, {
key: 'Mr. Robert Reagan',
items: ['Deliver R&D Plans for 2013', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
items: ['Deliver R&D Plans for 2026', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
}, {
key: 'Ms. Greta Sims',
items: ['Approve Hiring of John Jeffers', 'Update Employee Files with New NDA', 'Give Final Approval for Refunds'],
}, {
key: 'Mr. Brett Wade',
items: ['Prepare 3013 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2012 Sales Report and Approve 2013 Plans', 'Review Site Up-Time Report'],
items: ['Prepare 2026 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2022 Sales Report and Approve 2026 Plans', 'Review Site Up-Time Report'],
}, {
key: 'Mrs. Sandra Johnson',
items: ['Provide New Health Insurance Docs', 'Review HR Budget Company Wide', 'Final Budget Review'],
Expand All @@ -29,7 +29,7 @@ const employees: Employee[] = [{
items: ['Sign Updated NDA', 'Review Overtime Report', 'Upgrade Server Hardware', 'Upgrade Personal Computers'],
}, {
key: 'Ms. Cynthia Stanwick',
items: ['Prepare 2013 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
items: ['Prepare 2026 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
}, {
key: 'Dr. Kent Samuelson',
items: ['Update Sales Strategy Documents', 'Review Revenue Projections', 'Refund Request Template'],
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/List/Grouping/React/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ export const employees: Employee[] = [{
items: ['Update Personnel Files', 'Review Health Insurance Options Under the Affordable Care Act', 'Non-Compete Agreements'],
}, {
key: 'Mr. Robert Reagan',
items: ['Deliver R&D Plans for 2013', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
items: ['Deliver R&D Plans for 2026', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
}, {
key: 'Ms. Greta Sims',
items: ['Approve Hiring of John Jeffers', 'Update Employee Files with New NDA', 'Give Final Approval for Refunds'],
}, {
key: 'Mr. Brett Wade',
items: ['Prepare 3013 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2012 Sales Report and Approve 2013 Plans', 'Review Site Up-Time Report'],
items: ['Prepare 2026 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2022 Sales Report and Approve 2026 Plans', 'Review Site Up-Time Report'],
}, {
key: 'Mrs. Sandra Johnson',
items: ['Provide New Health Insurance Docs', 'Review HR Budget Company Wide', 'Final Budget Review'],
Expand All @@ -23,7 +23,7 @@ export const employees: Employee[] = [{
items: ['Sign Updated NDA', 'Review Overtime Report', 'Upgrade Server Hardware', 'Upgrade Personal Computers'],
}, {
key: 'Ms. Cynthia Stanwick',
items: ['Prepare 2013 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
items: ['Prepare 2026 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
}, {
key: 'Dr. Kent Samuelson',
items: ['Update Sales Strategy Documents', 'Review Revenue Projections', 'Refund Request Template'],
Expand Down
8 changes: 4 additions & 4 deletions apps/demos/Demos/List/Grouping/ReactJs/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const employees = [
{
key: 'Mr. Robert Reagan',
items: [
'Deliver R&D Plans for 2013',
'Deliver R&D Plans for 2026',
'Decide on Mobile Devices to Use in the Field',
'Try New Touch-Enabled WinForms Apps',
'Approval on Converting to New HDMI Specification',
Expand All @@ -37,9 +37,9 @@ export const employees = [
{
key: 'Mr. Brett Wade',
items: [
'Prepare 3013 Marketing Plan',
'Prepare 2026 Marketing Plan',
'Rollout of New Website and Marketing Brochures',
'Review 2012 Sales Report and Approve 2013 Plans',
'Review 2022 Sales Report and Approve 2026 Plans',
'Review Site Up-Time Report',
],
},
Expand All @@ -63,7 +63,7 @@ export const employees = [
{
key: 'Ms. Cynthia Stanwick',
items: [
'Prepare 2013 Financial',
'Prepare 2026 Financial',
'Update Revenue Projections',
'Submit D&B Number to ISP for Credit Approval',
],
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/List/Grouping/Vue/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ export const employees = [{
items: ['Update Personnel Files', 'Review Health Insurance Options Under the Affordable Care Act', 'Non-Compete Agreements'],
}, {
key: 'Mr. Robert Reagan',
items: ['Deliver R&D Plans for 2013', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
items: ['Deliver R&D Plans for 2026', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
}, {
key: 'Ms. Greta Sims',
items: ['Approve Hiring of John Jeffers', 'Update Employee Files with New NDA', 'Give Final Approval for Refunds'],
}, {
key: 'Mr. Brett Wade',
items: ['Prepare 3013 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2012 Sales Report and Approve 2013 Plans', 'Review Site Up-Time Report'],
items: ['Prepare 2026 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2022 Sales Report and Approve 2026 Plans', 'Review Site Up-Time Report'],
}, {
key: 'Mrs. Sandra Johnson',
items: ['Provide New Health Insurance Docs', 'Review HR Budget Company Wide', 'Final Budget Review'],
Expand All @@ -21,7 +21,7 @@ export const employees = [{
items: ['Sign Updated NDA', 'Review Overtime Report', 'Upgrade Server Hardware', 'Upgrade Personal Computers'],
}, {
key: 'Ms. Cynthia Stanwick',
items: ['Prepare 2013 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
items: ['Prepare 2026 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
}, {
key: 'Dr. Kent Samuelson',
items: ['Update Sales Strategy Documents', 'Review Revenue Projections', 'Refund Request Template'],
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/List/Grouping/jQuery/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ const employees = [{
items: ['Update Personnel Files', 'Review Health Insurance Options Under the Affordable Care Act', 'Non-Compete Agreements'],
}, {
key: 'Mr. Robert Reagan',
items: ['Deliver R&D Plans for 2013', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
items: ['Deliver R&D Plans for 2026', 'Decide on Mobile Devices to Use in the Field', 'Try New Touch-Enabled WinForms Apps', 'Approval on Converting to New HDMI Specification'],
}, {
key: 'Ms. Greta Sims',
items: ['Approve Hiring of John Jeffers', 'Update Employee Files with New NDA', 'Give Final Approval for Refunds'],
}, {
key: 'Mr. Brett Wade',
items: ['Prepare 3013 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2012 Sales Report and Approve 2013 Plans', 'Review Site Up-Time Report'],
items: ['Prepare 2026 Marketing Plan', 'Rollout of New Website and Marketing Brochures', 'Review 2022 Sales Report and Approve 2026 Plans', 'Review Site Up-Time Report'],
}, {
key: 'Mrs. Sandra Johnson',
items: ['Provide New Health Insurance Docs', 'Review HR Budget Company Wide', 'Final Budget Review'],
Expand All @@ -21,7 +21,7 @@ const employees = [{
items: ['Sign Updated NDA', 'Review Overtime Report', 'Upgrade Server Hardware', 'Upgrade Personal Computers'],
}, {
key: 'Ms. Cynthia Stanwick',
items: ['Prepare 2013 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
items: ['Prepare 2026 Financial', 'Update Revenue Projections', 'Submit D&B Number to ISP for Credit Approval'],
}, {
key: 'Dr. Kent Samuelson',
items: ['Update Sales Strategy Documents', 'Review Revenue Projections', 'Refund Request Template'],
Expand Down
Loading
Loading