From 71ff727e9414a97b9ed2b87b99c10ce0d1e64e80 Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Wed, 10 Jun 2026 10:31:04 +0300 Subject: [PATCH 01/14] fix(cli): add tree, hierarchical, and pivot grid options for react --- .../files/src/app/__path__/__filePrefix__.tsx | 77 +++++---- .../files/src/app/__path__/style.module.css | 24 ++- .../src/app/__path__/__filePrefix__.test.tsx | 13 ++ .../files/src/app/__path__/__filePrefix__.tsx | 43 +++++ .../basic/files/src/app/__path__/data.tsx | 104 ++++++++++++ .../files/src/app/__path__/style.module.css | 27 +++ .../igr-ts/hierarchical-grid/basic/index.ts | 18 ++ .../react/igr-ts/hierarchical-grid/index.ts | 11 ++ .../src/app/__path__/__filePrefix__.test.tsx | 13 ++ .../files/src/app/__path__/__filePrefix__.tsx | 54 ++++++ .../basic/files/src/app/__path__/data.tsx | 114 +++++++++++++ .../files/src/app/__path__/style.module.css | 27 +++ .../react/igr-ts/pivot-grid/basic/index.ts | 18 ++ .../react/igr-ts/pivot-grid/index.ts | 11 ++ .../side-nav-auth/files/src/app/app.tsx | 8 +- .../side-nav-mini-auth/files/src/app/app.tsx | 7 +- .../side-nav-mini/files/src/app/app.tsx | 7 +- .../projects/side-nav/files/src/app/app.tsx | 8 +- .../src/app/__path__/__filePrefix__.test.tsx | 13 ++ .../files/src/app/__path__/__filePrefix__.tsx | 30 ++++ .../basic/files/src/app/__path__/data.tsx | 155 ++++++++++++++++++ .../files/src/app/__path__/style.module.css | 27 +++ .../react/igr-ts/tree-grid/basic/index.ts | 18 ++ .../templates/react/igr-ts/tree-grid/index.ts | 11 ++ 24 files changed, 780 insertions(+), 58 deletions(-) create mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx create mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx create mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx create mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/style.module.css create mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts create mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/index.ts create mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx create mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx create mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx create mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/style.module.css create mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts create mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/index.ts create mode 100644 packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx create mode 100644 packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx create mode 100644 packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx create mode 100644 packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/style.module.css create mode 100644 packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts create mode 100644 packages/cli/templates/react/igr-ts/tree-grid/index.ts diff --git a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx index 40afd1495..3897a75e9 100644 --- a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -5,47 +5,46 @@ import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; import data from './data'; export default function $(ClassName)() { - const title = 'Grid'; + const title = '$(name)'; return ( -
-

{title}

-
- Read more on the  - - official documentation page - -
-
-
- - - - - - - - - - - - -
+
+

{title}

+

+ IgrGrid component with auto generated columns and local data.
+ You can read more about configuring the IgrGrid component in the  + + official documentation + . +

+
+ + + + + + + + + + + +
); diff --git a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/style.module.css b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/style.module.css index 2866d55fa..8797056de 100644 --- a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/style.module.css +++ b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/style.module.css @@ -1,17 +1,27 @@ -:local(.container) { - padding-top: 24px; +:local(.page) { + width: 100%; + margin-top: 40px; + padding: 0 48px; display: flex; - flex-flow: column; - justify-content: center; + flex-direction: column; align-items: center; } :local(.title) { color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; +} + +:local(.subtitle) { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; } :local(.grid) { - width: 80%; - margin-bottom: 24px; - border: 1px solid rgb(0, 153, 255); + width: 100%; + max-width: 1200px; } diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx new file mode 100644 index 000000000..854681a3a --- /dev/null +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx @@ -0,0 +1,13 @@ +import { beforeAll, expect, test } from 'vitest'; +import { render } from '@testing-library/react'; +import $(ClassName) from './$(path)'; +import { setupTestMocks } from '../../setupTests'; + +beforeAll(() => { + setupTestMocks(); +}) + +test('renders $(ClassName) component', () => { + const wrapper = render(<$(ClassName) />); + expect(wrapper).toBeTruthy(); +}); diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx new file mode 100644 index 000000000..e499ade99 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -0,0 +1,43 @@ +import style from './style.module.css'; +import { IgrHierarchicalGrid, IgrRowIsland, IgrColumn } from 'igniteui-react-grids'; +import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; + +import { ARTISTS } from './data'; + +export default function $(ClassName)() { + const title = '$(name)'; + + return ( +
+

{title}

+

+ IgrHierarchicalGrid with basic configuration.
+ You can read more about configuring the IgrHierarchicalGrid component in the  + + official documentation + . +

+
+ + + + + + + + + + + + + + + + + + + +
+
+ ); +} diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx new file mode 100644 index 000000000..49a7c5e46 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx @@ -0,0 +1,104 @@ +export interface Artist { + Artist: string; + HasGrammyAward: boolean; + Debut: number; + GrammyNominations: number; + GrammyAwards: number; + Albums?: Album[]; +} + +export interface Album { + Album: string; + LaunchDate: Date; + BillboardReview: number; + USBillboard200: number; + Artist: string; + Songs?: Song[]; +} + +export interface Song { + TrackNumber: number; + Title: string; + Released: string; + Genre: string; + Album: string; +} + +export const ARTISTS: Artist[] = [ + { + Artist: 'Naomí Yepes', + HasGrammyAward: false, + Debut: 2011, + GrammyNominations: 6, + GrammyAwards: 0, + Albums: [ + { + Album: 'Initiation', + LaunchDate: new Date('September 3, 2013'), + BillboardReview: 86, + USBillboard200: 1, + Artist: 'Naomí Yepes' + }, + { + Album: 'Dream Driven', + LaunchDate: new Date('August 25, 2014'), + BillboardReview: 81, + USBillboard200: 1, + Artist: 'Naomí Yepes', + Songs: [ + { TrackNumber: 1, Title: 'Intro', Released: '*', Genre: '*', Album: 'Dream Driven' }, + { TrackNumber: 2, Title: 'Ferocious', Released: '28-Apr-2014', Genre: 'Dance-pop R&B', Album: 'Dream Driven' }, + { TrackNumber: 3, Title: 'Going crazy', Released: '10-Feb-2015', Genre: 'Dance-pop EDM', Album: 'Dream Driven' }, + { TrackNumber: 4, Title: 'Future past', Released: '*', Genre: '*', Album: 'Dream Driven' }, + { TrackNumber: 5, Title: 'Roaming like them', Released: '2-Jul-2014', Genre: 'Electro house Electropop', Album: 'Dream Driven' }, + { TrackNumber: 6, Title: 'Last Wishes', Released: '12-Aug-2014', Genre: 'R&B', Album: 'Dream Driven' } + ] + }, + { + Album: 'The dragon journey', + LaunchDate: new Date('May 20, 2016'), + BillboardReview: 60, + USBillboard200: 2, + Artist: 'Naomí Yepes' + }, + { + Album: 'Curiosity', + LaunchDate: new Date('December 7, 2019'), + BillboardReview: 75, + USBillboard200: 12, + Artist: 'Naomí Yepes' + } + ] + }, + { + Artist: 'Babila Ebwélé', + HasGrammyAward: true, + Debut: 2009, + GrammyNominations: 0, + GrammyAwards: 11, + Albums: [ + { + Album: 'Pushing up daisies', + LaunchDate: new Date('May 31, 2000'), + BillboardReview: 86, + USBillboard200: 42, + Artist: 'Babila Ebwélé', + Songs: [ + { TrackNumber: 1, Title: 'Wood Shavings Forever', Released: '9-Jun-2019', Genre: '*', Album: 'Pushing up daisies' }, + { TrackNumber: 2, Title: 'Early Morning Drive', Released: '20-May-2019', Genre: '*', Album: 'Pushing up daisies' }, + { TrackNumber: 3, Title: "Don't Natter", Released: '10-Jun-2019', Genre: 'adult calypso-industrial', Album: 'Pushing up daisies' }, + { TrackNumber: 4, Title: 'Stairway to Balloons', Released: '18-Jun-2019', Genre: 'calypso and mariachi', Album: 'Pushing up daisies' }, + { TrackNumber: 5, Title: 'The Number of your Apple', Released: '29-Oct-2019', Genre: '*', Album: 'Pushing up daisies' }, + { TrackNumber: 6, Title: 'Your Delightful Heart', Released: '24-Feb-2019', Genre: '*', Album: 'Pushing up daisies' } + ] + }, + { + Album: 'Laughing out loud', + LaunchDate: new Date('April 28, 2003'), + BillboardReview: 92, + USBillboard200: 5, + Artist: 'Babila Ebwélé' + } + ] + } +]; diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/style.module.css b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/style.module.css new file mode 100644 index 000000000..8797056de --- /dev/null +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/style.module.css @@ -0,0 +1,27 @@ +:local(.page) { + width: 100%; + margin-top: 40px; + padding: 0 48px; + display: flex; + flex-direction: column; + align-items: center; +} + +:local(.title) { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; +} + +:local(.subtitle) { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +:local(.grid) { + width: 100%; + max-width: 1200px; +} diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts new file mode 100644 index 000000000..573c24726 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts @@ -0,0 +1,18 @@ +import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; +import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; + +class HierarchicalGridTemplate extends IgniteUIForReactTemplate { + constructor() { + super(__dirname); + this.id = "hierarchical-grid"; + this.name = "Hierarchical Grid"; + this.widget = "igHierarchicalGrid"; + this.description = "IgrHierarchicalGrid template for React"; + this.projectType = "igr-ts"; + this.components = ["Hierarchical Grid"]; + this.controlGroup = "Data Grids"; + this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; + this.hasExtraConfiguration = false; + } +} +module.exports = new HierarchicalGridTemplate(); diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/index.ts b/packages/cli/templates/react/igr-ts/hierarchical-grid/index.ts new file mode 100644 index 000000000..cffbc84b6 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/index.ts @@ -0,0 +1,11 @@ +import { BaseComponent } from "@igniteui/cli-core"; + +class IgrTsHierarchicalGridComponent extends BaseComponent { + constructor() { + super(__dirname); + this.name = "Hierarchical Grid"; + this.group = "Grids & Lists"; + this.description = "IgrHierarchicalGrid component for React"; + } +} +module.exports = new IgrTsHierarchicalGridComponent(); diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx new file mode 100644 index 000000000..854681a3a --- /dev/null +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx @@ -0,0 +1,13 @@ +import { beforeAll, expect, test } from 'vitest'; +import { render } from '@testing-library/react'; +import $(ClassName) from './$(path)'; +import { setupTestMocks } from '../../setupTests'; + +beforeAll(() => { + setupTestMocks(); +}) + +test('renders $(ClassName) component', () => { + const wrapper = render(<$(ClassName) />); + expect(wrapper).toBeTruthy(); +}); diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx new file mode 100644 index 000000000..e3dec16e1 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -0,0 +1,54 @@ +import style from './style.module.css'; +import { IgrPivotGrid } from 'igniteui-react-grids'; +import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; + +import { DATA } from './data'; + +export default function $(ClassName)() { + const title = '$(name)'; + + const pivotConfiguration = { + columns: [ + { + memberName: 'Product', + memberFunction: (data: any) => data.Product.Name, + enabled: true + } + ], + rows: [ + { + memberName: 'Seller', + memberFunction: (data: any) => data.Seller.Name, + enabled: true + } + ], + values: [ + { + member: 'NumberOfUnits', + aggregate: { + aggregatorName: 'SUM', + key: 'sum', + label: 'Sum' + }, + enabled: true + } + ], + filters: null + }; + + return ( +
+

{title}

+

+ Basic IgrPivotGrid component.
+ You can read more about configuring the IgrPivotGrid component in the  + + official documentation + . +

+
+ +
+
+ ); +} diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx new file mode 100644 index 000000000..20976bccf --- /dev/null +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx @@ -0,0 +1,114 @@ +export const DATA: any[] = [ + { + Product: { Name: 'Clothing', UnitPrice: '12.81' }, + Seller: { Name: 'Stanley Brooker', City: 'Seattle' }, + Date: '2007-01-01T00:00:00', + Value: '94.27', + NumberOfUnits: '282' + }, + { + Product: { Name: 'Clothing', UnitPrice: '49.58' }, + Seller: { Name: 'Elisa Longbottom', City: 'Sofia' }, + Date: '2007-01-05T00:00:00', + Value: '70.80', + NumberOfUnits: '296' + }, + { + Product: { Name: 'Bikes', UnitPrice: '3.57' }, + Seller: { Name: 'Lydia Burson', City: 'Tokyo' }, + Date: '2007-01-06T00:00:00', + Value: '35.80', + NumberOfUnits: '68' + }, + { + Product: { Name: 'Accessories', UnitPrice: '85.58' }, + Seller: { Name: 'David Haley', City: 'London' }, + Date: '2007-01-07T00:00:00', + Value: '41.41', + NumberOfUnits: '293' + }, + { + Product: { Name: 'Components', UnitPrice: '18.14' }, + Seller: { Name: 'John Smith', City: 'Seattle' }, + Date: '2007-01-08T00:00:00', + Value: '60.47', + NumberOfUnits: '240' + }, + { + Product: { Name: 'Clothing', UnitPrice: '68.33' }, + Seller: { Name: 'Larry Lieb', City: 'Tokyo' }, + Date: '2007-01-12T00:00:00', + Value: '37.92', + NumberOfUnits: '456' + }, + { + Product: { Name: 'Components', UnitPrice: '16.06' }, + Seller: { Name: 'Walter Pang', City: 'Sofia' }, + Date: '2007-02-09T00:00:00', + Value: '89.20', + NumberOfUnits: '492' + }, + { + Product: { Name: 'Components', UnitPrice: '35.24' }, + Seller: { Name: 'Benjamin Dupree', City: 'Tokyo' }, + Date: '2007-02-16T00:00:00', + Value: '1.86', + NumberOfUnits: '78' + }, + { + Product: { Name: 'Accessories', UnitPrice: '73.22' }, + Seller: { Name: 'Nicholas Carmona', City: 'Mellvile' }, + Date: '2007-02-17T00:00:00', + Value: '4.61', + NumberOfUnits: '150' + }, + { + Product: { Name: 'Clothing', UnitPrice: '73.61' }, + Seller: { Name: 'Nicholas Carmona', City: 'London' }, + Date: '2007-02-19T00:00:00', + Value: '36.17', + NumberOfUnits: '262' + }, + { + Product: { Name: 'Bikes', UnitPrice: '47.08' }, + Seller: { Name: 'Monica Freitag', City: 'Sofia' }, + Date: '2007-02-21T00:00:00', + Value: '18.70', + NumberOfUnits: '125' + }, + { + Product: { Name: 'Accessories', UnitPrice: '80.68' }, + Seller: { Name: 'Elisa Longbottom', City: 'Mellvile' }, + Date: '2007-03-25T00:00:00', + Value: '90.43', + NumberOfUnits: '350' + }, + { + Product: { Name: 'Components', UnitPrice: '64.61' }, + Seller: { Name: 'Glenn Landeros', City: 'Mellvile' }, + Date: '2007-03-27T00:00:00', + Value: '95.39', + NumberOfUnits: '82' + }, + { + Product: { Name: 'Accessories', UnitPrice: '50.04' }, + Seller: { Name: 'Harry Tyler', City: 'New York' }, + Date: '2007-04-02T00:00:00', + Value: '1.28', + NumberOfUnits: '67' + }, + { + Product: { Name: 'Accessories', UnitPrice: '49.85' }, + Seller: { Name: 'Monica Freitag', City: 'Berlin' }, + Date: '2007-04-12T00:00:00', + Value: '46.32', + NumberOfUnits: '228' + }, + { + Product: { Name: 'Components', UnitPrice: '44.76' }, + Seller: { Name: 'Bryan Culver', City: 'Tokyo' }, + Date: '2007-04-15T00:00:00', + Value: '82.18', + NumberOfUnits: '272' + } +]; diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/style.module.css b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/style.module.css new file mode 100644 index 000000000..8797056de --- /dev/null +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/style.module.css @@ -0,0 +1,27 @@ +:local(.page) { + width: 100%; + margin-top: 40px; + padding: 0 48px; + display: flex; + flex-direction: column; + align-items: center; +} + +:local(.title) { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; +} + +:local(.subtitle) { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +:local(.grid) { + width: 100%; + max-width: 1200px; +} diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts new file mode 100644 index 000000000..3c1c96948 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts @@ -0,0 +1,18 @@ +import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; +import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; + +class PivotGridTemplate extends IgniteUIForReactTemplate { + constructor() { + super(__dirname); + this.id = "pivot-grid"; + this.name = "Pivot Grid"; + this.widget = "igPivotGrid"; + this.description = "IgrPivotGrid template for React"; + this.projectType = "igr-ts"; + this.components = ["Pivot Grid"]; + this.controlGroup = "Data Grids"; + this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; + this.hasExtraConfiguration = false; + } +} +module.exports = new PivotGridTemplate(); diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/index.ts b/packages/cli/templates/react/igr-ts/pivot-grid/index.ts new file mode 100644 index 000000000..e3c37ca8b --- /dev/null +++ b/packages/cli/templates/react/igr-ts/pivot-grid/index.ts @@ -0,0 +1,11 @@ +import { BaseComponent } from "@igniteui/cli-core"; + +class IgrTsPivotGridComponent extends BaseComponent { + constructor() { + super(__dirname); + this.name = "Pivot Grid"; + this.group = "Grids & Lists"; + this.description = "IgrPivotGrid component for React"; + } +} +module.exports = new IgrTsPivotGridComponent(); diff --git a/packages/cli/templates/react/igr-ts/projects/side-nav-auth/files/src/app/app.tsx b/packages/cli/templates/react/igr-ts/projects/side-nav-auth/files/src/app/app.tsx index 4bca942fa..ee9884b43 100644 --- a/packages/cli/templates/react/igr-ts/projects/side-nav-auth/files/src/app/app.tsx +++ b/packages/cli/templates/react/igr-ts/projects/side-nav-auth/files/src/app/app.tsx @@ -60,8 +60,10 @@ function AppContent() { return () => mediaQuery.removeEventListener("change", updateDrawerState); }, []); + const toAbsPath = (p: string) => p.startsWith('/') ? p : `/${p}`; + const handleRouteClick = (path: string) => { - navigate(path); + navigate(toAbsPath(path)); if (window.matchMedia("(max-width: 1024px)").matches) { setDrawerOpen(false); @@ -92,7 +94,7 @@ function AppContent() { {visibleRoutes.map((route) => ( handleRouteClick(route.path)} > {route.text} diff --git a/packages/cli/templates/react/igr-ts/projects/side-nav-mini-auth/files/src/app/app.tsx b/packages/cli/templates/react/igr-ts/projects/side-nav-mini-auth/files/src/app/app.tsx index 94cc0a76c..a6a2aeace 100644 --- a/packages/cli/templates/react/igr-ts/projects/side-nav-mini-auth/files/src/app/app.tsx +++ b/packages/cli/templates/react/igr-ts/projects/side-nav-mini-auth/files/src/app/app.tsx @@ -36,6 +36,7 @@ function AppContent() { const navigate = useNavigate(); const location = useLocation(); const { currentUser } = useAuth(); + const toAbsPath = (p: string) => p.startsWith('/') ? p : `/${p}`; const navRoutes = useMemo(() => routes.filter((r) => { if (!r.text) return false; @@ -71,14 +72,14 @@ function AppContent() { {navRoutes.map((route) => ( navigate(route.path)} + active={location.pathname === toAbsPath(route.path)} + onClick={() => navigate(toAbsPath(route.path))} > {route.text} diff --git a/packages/cli/templates/react/igr-ts/projects/side-nav-mini/files/src/app/app.tsx b/packages/cli/templates/react/igr-ts/projects/side-nav-mini/files/src/app/app.tsx index 6a5c3eed2..ecc17f974 100644 --- a/packages/cli/templates/react/igr-ts/projects/side-nav-mini/files/src/app/app.tsx +++ b/packages/cli/templates/react/igr-ts/projects/side-nav-mini/files/src/app/app.tsx @@ -32,6 +32,7 @@ export default function App() { const [drawerOpen, setDrawerOpen] = useState(true); const navigate = useNavigate(); const location = useLocation(); + const toAbsPath = (p: string) => p.startsWith('/') ? p : `/${p}`; useEffect(() => { const mq = window.matchMedia('(min-width: 1025px)'); @@ -59,14 +60,14 @@ export default function App() { {navRoutes.map((route) => ( navigate(route.path)} + active={location.pathname === toAbsPath(route.path)} + onClick={() => navigate(toAbsPath(route.path))} > {route.text} diff --git a/packages/cli/templates/react/igr-ts/projects/side-nav/files/src/app/app.tsx b/packages/cli/templates/react/igr-ts/projects/side-nav/files/src/app/app.tsx index 406cc84bb..ad87730ce 100644 --- a/packages/cli/templates/react/igr-ts/projects/side-nav/files/src/app/app.tsx +++ b/packages/cli/templates/react/igr-ts/projects/side-nav/files/src/app/app.tsx @@ -50,8 +50,10 @@ export default function App() { return () => mediaQuery.removeEventListener("change", updateDrawerState); }, []); + const toAbsPath = (p: string) => p.startsWith('/') ? p : `/${p}`; + const handleRouteClick = (path: string) => { - navigate(path); + navigate(toAbsPath(path)); if (window.matchMedia("(max-width: 1024px)").matches) { setDrawerOpen(false); @@ -80,7 +82,7 @@ export default function App() { {visibleRoutes.map((route) => ( handleRouteClick(route.path)} > {route.text} diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx new file mode 100644 index 000000000..854681a3a --- /dev/null +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.tsx @@ -0,0 +1,13 @@ +import { beforeAll, expect, test } from 'vitest'; +import { render } from '@testing-library/react'; +import $(ClassName) from './$(path)'; +import { setupTestMocks } from '../../setupTests'; + +beforeAll(() => { + setupTestMocks(); +}) + +test('renders $(ClassName) component', () => { + const wrapper = render(<$(ClassName) />); + expect(wrapper).toBeTruthy(); +}); diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx new file mode 100644 index 000000000..320982700 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -0,0 +1,30 @@ +import style from './style.module.css'; +import { IgrTreeGrid, IgrColumn } from 'igniteui-react-grids'; +import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; + +import { EMPLOYEE_DATA } from './data'; + +export default function $(ClassName)() { + const title = '$(name)'; + + return ( +
+

{title}

+

+ IgrTreeGrid component displaying hierarchical data using a child collection.
+ You can read more about configuring the IgrTreeGrid component in the  + + official documentation + . +

+
+ + + + + + +
+
+ ); +} diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx new file mode 100644 index 000000000..08a0d106e --- /dev/null +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx @@ -0,0 +1,155 @@ +export interface Employee { + Age: number; + Employees?: Employee[]; + HireDate: Date; + ID: number; + Name: string; + Location: string; +} + +export const EMPLOYEE_DATA: Employee[] = [ + { + Age: 55, + Employees: [ + { + Age: 43, + Employees: [], + HireDate: new Date(2011, 6, 3), + ID: 3, + Name: 'Michael Burke', + Location: 'London' + }, + { + Age: 29, + Employees: [], + HireDate: new Date(2009, 6, 19), + ID: 2, + Name: 'Thomas Anderson', + Location: 'London' + }, + { + Age: 31, + Employees: [ + { + Age: 35, + HireDate: new Date(2015, 9, 17), + ID: 6, + Name: 'Roland Mendel', + Location: 'Tokyo' + }, + { + Age: 44, + HireDate: new Date(2009, 10, 11), + ID: 12, + Name: 'Sven Cooper', + Location: 'Tokyo' + } + ], + HireDate: new Date(2014, 8, 18), + ID: 11, + Name: 'Monica Reyes', + Location: 'London' + } + ], + HireDate: new Date(2008, 3, 20), + ID: 1, + Name: 'Johnathan Winchester', + Location: 'London' + }, + { + Age: 42, + Employees: [ + { + Age: 44, + HireDate: new Date(2014, 4, 4), + ID: 14, + Name: 'Laurence Johnson', + Location: 'New Jersey' + }, + { + Age: 25, + Employees: [ + { + Age: 39, + HireDate: new Date(2010, 3, 22), + ID: 13, + Name: 'Trevor Ashworth', + Location: 'New Jersey' + } + ], + HireDate: new Date(2017, 11, 9), + ID: 5, + Name: 'Elizabeth Richards', + Location: 'New Jersey' + } + ], + HireDate: new Date(2014, 1, 22), + ID: 4, + Name: 'Ana Sanders', + Location: 'New Jersey' + }, + { + Age: 49, + Employees: [ + { + Age: 44, + Employees: [], + HireDate: new Date(2014, 4, 4), + ID: 17, + Name: 'Antonio Moreno', + Location: 'New Jersey' + } + ], + HireDate: new Date(2014, 1, 22), + ID: 18, + Name: 'Victoria Lincoln', + Location: 'New Jersey' + }, + { + Age: 61, + Employees: [ + { + Age: 50, + Employees: [ + { + Age: 25, + Employees: [], + HireDate: new Date(2017, 11, 9), + ID: 15, + Name: 'Patricia Simpson', + Location: 'New Jersey' + }, + { + Age: 39, + HireDate: new Date(2010, 3, 22), + ID: 9, + Name: 'Francisco Chang', + Location: 'Tokyo' + }, + { + Age: 25, + HireDate: new Date(2018, 3, 18), + ID: 16, + Name: 'Peter Lewis', + Location: 'New Jersey' + } + ], + HireDate: new Date(2007, 11, 18), + ID: 7, + Name: 'Pedro Rodriguez', + Location: 'New Jersey' + }, + { + Age: 27, + HireDate: new Date(2016, 2, 19), + ID: 8, + Name: 'Casey Harper', + Location: 'Tokyo' + } + ], + HireDate: new Date(2010, 1, 1), + ID: 10, + Name: 'Yuki Onna', + Location: 'Tokyo' + } +]; diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/style.module.css b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/style.module.css new file mode 100644 index 000000000..8797056de --- /dev/null +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/style.module.css @@ -0,0 +1,27 @@ +:local(.page) { + width: 100%; + margin-top: 40px; + padding: 0 48px; + display: flex; + flex-direction: column; + align-items: center; +} + +:local(.title) { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; +} + +:local(.subtitle) { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +:local(.grid) { + width: 100%; + max-width: 1200px; +} diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts new file mode 100644 index 000000000..7f5fc1707 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts @@ -0,0 +1,18 @@ +import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; +import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; + +class TreeGridTemplate extends IgniteUIForReactTemplate { + constructor() { + super(__dirname); + this.id = "tree-grid"; + this.name = "Tree Grid"; + this.widget = "igTreeGrid"; + this.description = "IgrTreeGrid template for React"; + this.projectType = "igr-ts"; + this.components = ["Tree Grid"]; + this.controlGroup = "Data Grids"; + this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; + this.hasExtraConfiguration = false; + } +} +module.exports = new TreeGridTemplate(); diff --git a/packages/cli/templates/react/igr-ts/tree-grid/index.ts b/packages/cli/templates/react/igr-ts/tree-grid/index.ts new file mode 100644 index 000000000..0c1f1d1f3 --- /dev/null +++ b/packages/cli/templates/react/igr-ts/tree-grid/index.ts @@ -0,0 +1,11 @@ +import { BaseComponent } from "@igniteui/cli-core"; + +class IgrTsTreeGridComponent extends BaseComponent { + constructor() { + super(__dirname); + this.name = "Tree Grid"; + this.group = "Grids & Lists"; + this.description = "IgrTreeGrid component for React"; + } +} +module.exports = new IgrTsTreeGridComponent(); From d1bf1e309efe2952a5ace597afd1cd245ece87ca Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 10:44:11 +0300 Subject: [PATCH 02/14] fix(components): add rel attributes to target blank links Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx index e3dec16e1..5a10ce754 100644 --- a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -42,7 +42,7 @@ export default function $(ClassName)() {

Basic IgrPivotGrid component.
You can read more about configuring the IgrPivotGrid component in the  - + official documentation .

From 1c46d3145cb40eb80eb323d56bde18be81c5cd15 Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 10:44:30 +0300 Subject: [PATCH 03/14] fix(components): add rel attributes to target blank links Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../basic/files/src/app/__path__/__filePrefix__.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx index e499ade99..8a8bf932b 100644 --- a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -13,7 +13,7 @@ export default function $(ClassName)() {

IgrHierarchicalGrid with basic configuration.
You can read more about configuring the IgrHierarchicalGrid component in the  - + official documentation .

From 21e8a3703863e078d096dccc02895b46721e0c3d Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 10:44:46 +0300 Subject: [PATCH 04/14] fix(components): add rel attributes to target blank links Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx index 320982700..b3cc5feac 100644 --- a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -13,7 +13,7 @@ export default function $(ClassName)() {

IgrTreeGrid component displaying hierarchical data using a child collection.
You can read more about configuring the IgrTreeGrid component in the  - + official documentation .

From 9a6fcf618b5b2a8f1730e1c24879b2a8ec74ddb3 Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 10:45:05 +0300 Subject: [PATCH 05/14] fix(components): add rel attributes to target blank links Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx index 3897a75e9..be9a64fda 100644 --- a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -13,7 +13,7 @@ export default function $(ClassName)() {

IgrGrid component with auto generated columns and local data.
You can read more about configuring the IgrGrid component in the  - + official documentation .

From 54c7d22b47d73c85d8eddb103bbd49888743e81c Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Wed, 10 Jun 2026 14:05:46 +0300 Subject: [PATCH 06/14] feat(cli): grid components with improved styles and layouts for angular --- .../src/app/__path__/__filePrefix__.html | 21 +++++--- .../src/app/__path__/__filePrefix__.scss | 34 ++++++++++++ .../src/app/__path__/__filePrefix__.html | 54 ++++++++++--------- .../src/app/__path__/__filePrefix__.scss | 34 ++++++++++++ .../files/src/app/__path__/__filePrefix__.ts | 1 + .../src/app/__path__/__filePrefix__.html | 19 ++++--- .../src/app/__path__/__filePrefix__.scss | 31 +++++++++++ .../files/src/app/__path__/__filePrefix__.ts | 1 + .../side-nav-auth/files/src/app/app.routes.ts | 6 ++- .../side-nav-auth/files/src/app/app.ts | 18 +++---- .../side-nav-mini-auth/files/src/app/app.ts | 14 +++-- .../src/app/__path__/__filePrefix__.html | 29 +++++----- .../src/app/__path__/__filePrefix__.scss | 34 ++++++++++++ 13 files changed, 223 insertions(+), 73 deletions(-) diff --git a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.html b/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.html index dc3a9937d..fbcd33b94 100644 --- a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.html +++ b/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.html @@ -1,8 +1,13 @@ -

igx-grid component with auto generated columns below and local data.

-

You can read more about configuring the igx-grid component in the - README or the - official documentation. -

- - - +
+

{{ title }}

+

igx-grid component with auto generated columns below and local data.
+ You can read more about configuring the igx-grid component in the + README or the + official documentation. +

+
+ + + +
+
diff --git a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.scss b/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.scss index e69de29bb..9093386e0 100644 --- a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.scss +++ b/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.scss @@ -0,0 +1,34 @@ +:host { + width: 100%; +} + +.page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; +} + +.title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 10px; + margin-bottom: 10px; +} + +.subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +.grid-wrapper { + width: 100%; + max-width: 1200px; +} diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html index f6df67e94..804480643 100644 --- a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html +++ b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html @@ -1,25 +1,31 @@ -

IgxHierarchicalGrid with basic configuration.

-

You can read more about configuring the igx-hierarchical-gird component in the - README or the - official documentation.

- - - - - - - +
+

{{ title }}

+

IgxHierarchicalGrid with basic configuration.
+ You can read more about configuring the igx-hierarchical-grid component in the + README or the + official documentation. +

+
+ + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + +
+
diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.scss b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.scss index e69de29bb..9093386e0 100644 --- a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.scss +++ b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.scss @@ -0,0 +1,34 @@ +:host { + width: 100%; +} + +.page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; +} + +.title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 10px; + margin-bottom: 10px; +} + +.subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +.grid-wrapper { + width: 100%; + max-width: 1200px; +} diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.ts b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.ts index f6ac8fc4a..ca788ca74 100644 --- a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.ts +++ b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.ts @@ -9,5 +9,6 @@ import { IgxHierarchicalGridComponent, IgxColumnComponent, IgxRowIslandComponent imports: [IgxHierarchicalGridComponent, IgxColumnComponent, IgxRowIslandComponent] }) export class <%=ClassName%> { + public title = '<%=name%>'; public localData: Artist[] = ARTISTS; } diff --git a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.html b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.html index be5332c75..2586686a8 100644 --- a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.html +++ b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.html @@ -1,7 +1,12 @@ -

Basic pivot grid.

-

You can read more about configuring the igx-pivot-grid component in the - official documentation. -

- - +
+

{{ title }}

+

Basic pivot grid.
+ You can read more about configuring the igx-pivot-grid component in the + official documentation. +

+
+ + +
+
diff --git a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.scss b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.scss index b9bc65ea4..9093386e0 100644 --- a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.scss +++ b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.scss @@ -1,3 +1,34 @@ :host { width: 100%; } + +.page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; +} + +.title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 10px; + margin-bottom: 10px; +} + +.subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +.grid-wrapper { + width: 100%; + max-width: 1200px; +} diff --git a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.ts b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.ts index fac6a0770..07e6b25da 100644 --- a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.ts +++ b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/__filePrefix__.ts @@ -9,6 +9,7 @@ import { IPivotConfiguration, IgxPivotNumericAggregate, IgxPivotGridComponent } imports: [IgxPivotGridComponent] }) export class <%=ClassName%> { + public title = '<%=name%>'; public data = DATA; public pivotConfigHierarchy: IPivotConfiguration = { columns: [ diff --git a/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.routes.ts b/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.routes.ts index 00960a1fb..1460ed4e5 100644 --- a/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.routes.ts +++ b/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.routes.ts @@ -2,9 +2,13 @@ import { Routes } from '@angular/router'; import { Home } from './home/home'; import { AUTH_ROUTES } from './authentication'; import { AUTH_BASE_PATH } from './authentication/services/external-auth-configs'; +import { NotFound } from './error-routing/not-found/not-found'; +import { UncaughtError } from './error-routing/error/uncaught-error'; export const routes: Routes = [ { path: '', redirectTo: '/home', pathMatch: 'full' }, { path: 'home', component: Home, data: { text: 'Home', icon: 'home' } }, - { path: AUTH_BASE_PATH, children: AUTH_ROUTES } + { path: AUTH_BASE_PATH, children: AUTH_ROUTES }, + { path: 'error', component: UncaughtError }, + { path: '**', component: NotFound } ]; diff --git a/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.ts b/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.ts index b038a6168..35c2ee917 100644 --- a/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.ts +++ b/packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.ts @@ -42,13 +42,7 @@ export class App implements OnInit { path: string, name: string, icon: string - }[] = [ - { - name: 'Home', - path: '/home', - icon: 'home' - } - ]; + }[] = []; private readonly profileNavLinks: { path: string, @@ -63,9 +57,9 @@ export class App implements OnInit { ]; public get topNavLinks() { - return this.userStore.currentUser - ? [...this.homeNavLinks, ...this.profileNavLinks] - : this.homeNavLinks; + if (!this.userStore.currentUser) return this.homeNavLinks; + const [home, ...rest] = this.homeNavLinks; + return [home, ...this.profileNavLinks, ...rest]; } public navdrawer = viewChild.required(IgxNavigationDrawerComponent); @@ -76,11 +70,11 @@ export class App implements OnInit { constructor() { for (const route of routes) { if (route.path && route.data && route.path.indexOf('*') === -1) { - this.homeNavLinks[0] = { + this.homeNavLinks.push({ name: route.data['text'], path: '/' + route.path, icon: route.data['icon'] || 'home' - }; + }); } } } diff --git a/packages/igx-templates/igx-ts/projects/side-nav-mini-auth/files/src/app/app.ts b/packages/igx-templates/igx-ts/projects/side-nav-mini-auth/files/src/app/app.ts index 89d89f1d7..f67b6c361 100644 --- a/packages/igx-templates/igx-ts/projects/side-nav-mini-auth/files/src/app/app.ts +++ b/packages/igx-templates/igx-ts/projects/side-nav-mini-auth/files/src/app/app.ts @@ -43,18 +43,16 @@ const MINI_BREAKPOINT = 1024; export class App implements OnInit, AfterViewInit { public appTitle = '<%=name%>'; - private readonly homeNavLinks: { path: string; name: string; icon: string }[] = [ - { name: 'Home', path: '/home', icon: 'home' } - ]; + private readonly homeNavLinks: { path: string; name: string; icon: string }[] = []; private readonly profileNavLinks: { path: string; name: string; icon: string }[] = [ { name: 'Profile', path: '/auth/profile', icon: 'account_circle' } ]; public get topNavLinks() { - return this.userStore.currentUser - ? [...this.homeNavLinks, ...this.profileNavLinks] - : this.homeNavLinks; + if (!this.userStore.currentUser) return this.homeNavLinks; + const [home, ...rest] = this.homeNavLinks; + return [home, ...this.profileNavLinks, ...rest]; } public readonly initiallyOpen = window.innerWidth > MINI_BREAKPOINT; @@ -66,11 +64,11 @@ export class App implements OnInit, AfterViewInit { constructor() { for (const route of routes) { if (route.path && route.data && route.path.indexOf('*') === -1) { - this.homeNavLinks[0] = { + this.homeNavLinks.push({ name: route.data['text'], path: '/' + route.path, icon: route.data['icon'] || 'home' - }; + }); } } } diff --git a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.html b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.html index 4084664b0..c64065c36 100644 --- a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.html +++ b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.html @@ -1,17 +1,20 @@ -

- <%=description%>
- You can read more about configuring the igx-grid component in the +

+

{{ title }}

+

<%=description%>
+ You can read more about configuring the igx-tree-grid component in the README or the official documentation. -

-<%=selectedFeatures%> - -> - <%=columnPinning%>> - > - > - ><%=additionalMarkup%> - +

+ <%=selectedFeatures%> +
+ > + <%=columnPinning%>> + > + > + ><%=additionalMarkup%> + +
+
diff --git a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.scss b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.scss index e69de29bb..9093386e0 100644 --- a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.scss +++ b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.scss @@ -0,0 +1,34 @@ +:host { + width: 100%; +} + +.page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; +} + +.title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 10px; + margin-bottom: 10px; +} + +.subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; +} + +.grid-wrapper { + width: 100%; + max-width: 1200px; +} From 8c80c807c9077e67ec861154c7930b873c891a4b Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Wed, 10 Jun 2026 14:06:30 +0300 Subject: [PATCH 07/14] fix(cli): refactor the data for the grids in react --- .../files/src/app/__path__/__filePrefix__.tsx | 2 +- .../basic/files/src/app/__path__/data.tsx | 1002 ++- .../basic/files/src/app/__path__/data.tsx | 6550 ++++++++++++++++- 3 files changed, 7438 insertions(+), 116 deletions(-) diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx index 8a8bf932b..8729f77a0 100644 --- a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -30,7 +30,7 @@ export default function $(ClassName)() { - + diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx index 49a7c5e46..300fa1f90 100644 --- a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx @@ -17,7 +17,7 @@ export interface Album { } export interface Song { - TrackNumber: number; + TrackNumber: string; Title: string; Released: string; Genre: string; @@ -26,78 +26,1012 @@ export interface Song { export const ARTISTS: Artist[] = [ { - Artist: 'Naomí Yepes', + Artist: "Naomí Yepes", HasGrammyAward: false, Debut: 2011, GrammyNominations: 6, GrammyAwards: 0, Albums: [ { - Album: 'Initiation', - LaunchDate: new Date('September 3, 2013'), + Album: "Initiation", + LaunchDate: new Date("September 3, 2013"), BillboardReview: 86, USBillboard200: 1, - Artist: 'Naomí Yepes' + Artist: "Naomí Yepes" }, { - Album: 'Dream Driven', - LaunchDate: new Date('August 25, 2014'), + Album: "Dream Driven", + LaunchDate: new Date("August 25, 2014"), BillboardReview: 81, USBillboard200: 1, - Artist: 'Naomí Yepes', + Artist: "Naomí Yepes", Songs: [ - { TrackNumber: 1, Title: 'Intro', Released: '*', Genre: '*', Album: 'Dream Driven' }, - { TrackNumber: 2, Title: 'Ferocious', Released: '28-Apr-2014', Genre: 'Dance-pop R&B', Album: 'Dream Driven' }, - { TrackNumber: 3, Title: 'Going crazy', Released: '10-Feb-2015', Genre: 'Dance-pop EDM', Album: 'Dream Driven' }, - { TrackNumber: 4, Title: 'Future past', Released: '*', Genre: '*', Album: 'Dream Driven' }, - { TrackNumber: 5, Title: 'Roaming like them', Released: '2-Jul-2014', Genre: 'Electro house Electropop', Album: 'Dream Driven' }, - { TrackNumber: 6, Title: 'Last Wishes', Released: '12-Aug-2014', Genre: 'R&B', Album: 'Dream Driven' } + { + TrackNumber: "1", + Title: "Intro", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "2", + Title: "Ferocious", + Released: "28-Apr-2014", + Genre: "Dance-pop R&B", + Album: "Dream Driven" + }, + { + TrackNumber: "3", + Title: "Going crazy", + Released: "10-Feb-2015", + Genre: "Dance-pop EDM", + Album: "Dream Driven" + }, + { + TrackNumber: "4", + Title: "Future past", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "5", + Title: "Roaming like them", + Released: "2-Jul-2014", + Genre: "Electro house Electropop", + Album: "Dream Driven" + }, + { + TrackNumber: "6", + Title: "Last Wishes", + Released: "12-Aug-2014", + Genre: "R&B", + Album: "Dream Driven" + }, + { + TrackNumber: "7", + Title: "Stay where you are", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "8", + Title: "Imaginarium", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "9", + Title: "Tell me", + Released: "30-Sep-2014", + Genre: "Synth-pop R&B", + Album: "Dream Driven" + }, + { + TrackNumber: "10", + Title: "Shredded into pieces", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "11", + Title: "Capture this moment", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "12", + Title: "Dream Driven", + Released: "*", + Genre: "*", + Album: "Dream Driven" + } ] }, { - Album: 'The dragon journey', - LaunchDate: new Date('May 20, 2016'), + Album: "The dragon journey", + LaunchDate: new Date("May 20, 2016"), BillboardReview: 60, USBillboard200: 2, - Artist: 'Naomí Yepes' + Artist: "Naomí Yepes" }, { - Album: 'Curiosity', - LaunchDate: new Date('December 7, 2019'), + Album: "Organic me", + LaunchDate: new Date("August 17, 2018"), + BillboardReview: 82, + USBillboard200: 1, + Artist: "Naomí Yepes", + Songs: [ + { + TrackNumber: "1", + Title: "I Love", + Released: "11-May-2019", + Genre: "Crunk reggaeton", + Album: "Organic me" + }, + { + TrackNumber: "2", + Title: "Early Morning Compass", + Released: "15-Jan-2020", + Genre: "mystical parody-bap ", + Album: "Organic me" + }, + { + TrackNumber: "3", + Title: "Key Fields Forever", + Released: "2-Jan-2020", + Genre: "Dance-pop EDM", + Album: "Organic me" + }, + { + TrackNumber: "4", + Title: "Stand by Your Goblins", + Released: "20-Nov-2019", + Genre: "*", + Album: "Organic me" + }, + { + TrackNumber: "5", + Title: "Mad to Walk", + Released: "12-May-2019", + Genre: "Electro house Electropop", + Album: "Organic me" + }, + { + TrackNumber: "6", + Title: "Alice's Waiting", + Released: "28-Jan-2020", + Genre: "R&B", + Album: "Organic me" + }, + { + TrackNumber: "7", + Title: "We Shall Kiss", + Released: "30-Oct-2019", + Genre: "*", + Album: "Organic me" + }, + { + TrackNumber: "8", + Title: "Behind Single Ants", + Released: "2-Oct-2019", + Genre: "*", + Album: "Organic me" + }, + { + TrackNumber: "9", + Title: "Soap Autopsy", + Released: "8-Aug-2019", + Genre: "Synth-pop R&B", + Album: "Organic me" + }, + { + TrackNumber: "10", + Title: "Have You Met Rich?", + Released: "1-Jul-2019", + Genre: "ethno-tunes", + Album: "Organic me" + }, + { + TrackNumber: "11", + Title: "Livin' on a Banana", + Released: "22-Nov-2019", + Genre: "Crunk reggaeton", + Album: "Organic me" + } + ] + }, + { + Album: "Curiosity", + LaunchDate: new Date("December 7, 2019"), BillboardReview: 75, USBillboard200: 12, - Artist: 'Naomí Yepes' + Artist: "Naomí Yepes" } ] }, { - Artist: 'Babila Ebwélé', + Artist: "Babila Ebwélé", HasGrammyAward: true, Debut: 2009, GrammyNominations: 0, GrammyAwards: 11, Albums: [ { - Album: 'Pushing up daisies', - LaunchDate: new Date('May 31, 2000'), + Album: "Pushing up daisies", + LaunchDate: new Date("May 31, 2000"), BillboardReview: 86, USBillboard200: 42, - Artist: 'Babila Ebwélé', + Artist: "Babila Ebwélé", + Songs: [ + { + TrackNumber: "1", + Title: "Wood Shavings Forever", + Released: "9-Jun-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "2", + Title: "Early Morning Drive", + Released: "20-May-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "3", + Title: "Don't Natter", + Released: "10-Jun-2019", + Genre: "adult calypso-industrial", + Album: "Pushing up daisies" + }, + { + TrackNumber: "4", + Title: "Stairway to Balloons", + Released: "18-Jun-2019", + Genre: "calypso and mariachi", + Album: "Pushing up daisies" + }, + { + TrackNumber: "5", + Title: "The Number of your Apple", + Released: "29-Oct-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "6", + Title: "Your Delightful Heart", + Released: "24-Feb-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "7", + Title: "Nice Weather For Balloons", + Released: "1-Aug-2019", + Genre: "rap-hop", + Album: "Pushing up daisies" + }, + { + TrackNumber: "8", + Title: "The Girl From Cornwall", + Released: "4-May-2019", + Genre: "enigmatic rock-and-roll", + Album: "Pushing up daisies" + }, + { + TrackNumber: "9", + Title: "Here Without Jack", + Released: "24-Oct-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "10", + Title: "Born Rancid", + Released: "19-Mar-2019", + Genre: "*", + Album: "Pushing up daisies" + } + ] + }, + { + Album: "Death's dead", + LaunchDate: new Date("June 8, 2016"), + BillboardReview: 85, + USBillboard200: 95, + Artist: "Babila Ebwélé", + Songs: [ + { + TrackNumber: "1", + Title: "Men Sound Better With You", + Released: "20-Oct-2019", + Genre: "rap-hop", + Album: "Death's dead" + }, + { + TrackNumber: "2", + Title: "Ghost in My Rod", + Released: "5-Oct-2019", + Genre: "enigmatic rock-and-roll", + Album: "Death's dead" + }, + { + TrackNumber: "3", + Title: "Bed of Men", + Released: "14-Nov-2019", + Genre: "whimsical comedy-grass ", + Album: "Death's dead" + }, + { + TrackNumber: "4", + Title: "Don't Push", + Released: "2-Jan-2020", + Genre: "unblack electronic-trip-hop", + Album: "Death's dead" + }, + { + TrackNumber: "5", + Title: "Nice Weather For Men", + Released: "18-Dec-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "6", + Title: "Rancid Rhapsody", + Released: "10-Mar-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "7", + Title: "Push, Push, Push!", + Released: "21-Feb-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "8", + Title: "My Name is Sarah", + Released: "15-Nov-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "9", + Title: "The Girl From My Hotel", + Released: "6-Nov-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "10", + Title: "Free Box", + Released: "18-Apr-2019", + Genre: "splitter-funk", + Album: "Death's dead" + }, + { + TrackNumber: "11", + Title: "Hotel Cardiff", + Released: "30-Dec-2019", + Genre: "guilty pleasure ebm", + Album: "Death's dead" + } + ] + } + ] + }, + { + Artist: "Ahmad Nazeri", + HasGrammyAward: true, + Debut: 2004, + GrammyNominations: 3, + GrammyAwards: 1, + Albums: [ + { + Album: "Emergency", + LaunchDate: new Date("March 6, 2004"), + BillboardReview: 98, + USBillboard200: 69, + Artist: "Ahmad Nazeri" + }, + { + Album: "Bursting bubbles", + LaunchDate: new Date("April 17, 2006"), + BillboardReview: 69, + USBillboard200: 39, + Artist: "Ahmad Nazeri" + } + ] + }, + { + Artist: "Kimmy McIlmorie", + HasGrammyAward: true, + Debut: 2007, + GrammyNominations: 21, + GrammyAwards: 3, + Albums: [ + { + Album: "Here we go again", + LaunchDate: new Date("November 18, 2017"), + BillboardReview: 68, + USBillboard200: 1, + Artist: "Kimmy McIlmorie" + } + ] + }, + { + Artist: "Mar Rueda", + HasGrammyAward: true, + Debut: 1996, + GrammyNominations: 14, + GrammyAwards: 2 + }, + { + Artist: "Izabella Tabakova", + HasGrammyAward: true, + Debut: 2017, + GrammyNominations: 7, + GrammyAwards: 11, + Albums: [ + { + Album: "Once bitten", + LaunchDate: new Date("July 16, 2007"), + BillboardReview: 79, + USBillboard200: 53, + Artist: "Izabella Tabakova", Songs: [ - { TrackNumber: 1, Title: 'Wood Shavings Forever', Released: '9-Jun-2019', Genre: '*', Album: 'Pushing up daisies' }, - { TrackNumber: 2, Title: 'Early Morning Drive', Released: '20-May-2019', Genre: '*', Album: 'Pushing up daisies' }, - { TrackNumber: 3, Title: "Don't Natter", Released: '10-Jun-2019', Genre: 'adult calypso-industrial', Album: 'Pushing up daisies' }, - { TrackNumber: 4, Title: 'Stairway to Balloons', Released: '18-Jun-2019', Genre: 'calypso and mariachi', Album: 'Pushing up daisies' }, - { TrackNumber: 5, Title: 'The Number of your Apple', Released: '29-Oct-2019', Genre: '*', Album: 'Pushing up daisies' }, - { TrackNumber: 6, Title: 'Your Delightful Heart', Released: '24-Feb-2019', Genre: '*', Album: 'Pushing up daisies' } + { + TrackNumber: "1", + Title: "Whole Lotta Super Cats", + Released: "21-May-2019", + Genre: "*", + Album: "Once bitten" + }, + { + TrackNumber: "2", + Title: "Enter Becky", + Released: "16-Jan-2020", + Genre: "*", + Album: "Once bitten" + }, + { + TrackNumber: "3", + Title: "Your Cheatin' Flamingo", + Released: "14-Jan-2020", + Genre: "*", + Album: "Once bitten" + }, + { + TrackNumber: "4", + Title: "Mad to Kiss", + Released: "6-Nov-2019", + Genre: "Synth-pop R&B", + Album: "Once bitten" + }, + { + TrackNumber: "5", + Title: "Hotel Prague", + Released: "20-Oct-2019", + Genre: "ethno-tunes", + Album: "Once bitten" + }, + { + TrackNumber: "6", + Title: "Jail on My Mind", + Released: "31-May-2019", + Genre: "Crunk reggaeton", + Album: "Once bitten" + }, + { + TrackNumber: "7", + Title: "Amazing Blues", + Released: "29-May-2019", + Genre: "mystical parody-bap ", + Album: "Once bitten" + }, + { + TrackNumber: "8", + Title: "Goody Two Iron Filings", + Released: "4-Jul-2019", + Genre: "Electro house Electropop", + Album: "Once bitten" + }, + { + TrackNumber: "9", + Title: "I Love in Your Arms", + Released: "7-Jun-2019", + Genre: "R&B", + Album: "Once bitten" + }, + { + TrackNumber: "10", + Title: "Truly Madly Amazing", + Released: "12-Sep-2019", + Genre: "ethno-tunes", + Album: "Once bitten" + } ] }, { - Album: 'Laughing out loud', - LaunchDate: new Date('April 28, 2003'), - BillboardReview: 92, + Album: "Your graciousness", + LaunchDate: new Date("November 17, 2004"), + BillboardReview: 69, + USBillboard200: 30, + Artist: "Izabella Tabakova", + Songs: [ + { + TrackNumber: "1", + Title: "We Shall Tickle", + Released: "31-Aug-2019", + Genre: "old emo-garage ", + Album: "Your graciousness" + }, + { + TrackNumber: "2", + Title: "Snail Boogie", + Released: "14-Jun-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "3", + Title: "Amazing Liz", + Released: "15-Oct-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "4", + Title: "When Sexy Aardvarks Cry", + Released: "1-Oct-2019", + Genre: "whimsical comedy-grass ", + Album: "Your graciousness" + }, + { + TrackNumber: "5", + Title: "Stand By Dave", + Released: "18-Aug-2019", + Genre: "unblack electronic-trip-hop", + Album: "Your graciousness" + }, + { + TrackNumber: "6", + Title: "The Golf Course is Your Land", + Released: "2-Apr-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "7", + Title: "Where Have All the Men Gone?", + Released: "29-Apr-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "8", + Title: "Rhythm of the Leg", + Released: "5-Aug-2019", + Genre: "ethno-tunes", + Album: "Your graciousness" + }, + { + TrackNumber: "9", + Title: "Baby, I Need Your Hats", + Released: "5-Dec-2019", + Genre: "neuro-tunes", + Album: "Your graciousness" + }, + { + TrackNumber: "10", + Title: "Stand by Your Cat", + Released: "25-Jul-2019", + Genre: "*", + Album: "Your graciousness" + } + ] + }, + { + Album: "Dark matters", + LaunchDate: new Date("November 3, 2002"), + BillboardReview: 79, + USBillboard200: 85, + Artist: "Izabella Tabakova" + } + ] + }, + { + Artist: "Nguyễn Diệp Chi", + HasGrammyAward: true, + Debut: 1992, + GrammyNominations: 4, + GrammyAwards: 2, + Albums: [ + { + Album: "Library of liberty", + LaunchDate: new Date("December 22, 2003"), + BillboardReview: 93, USBillboard200: 5, - Artist: 'Babila Ebwélé' + Artist: "Nguyễn Diệp Chi" + } + ] + }, + { + Artist: "Eva Lee", + HasGrammyAward: false, + Debut: 2008, + GrammyNominations: 2, + GrammyAwards: 0, + Albums: [ + { + Album: "Just a tease", + LaunchDate: new Date("May 3, 2001"), + BillboardReview: 91, + USBillboard200: 29, + Artist: "Eva Lee" + } + ] + }, + { + Artist: "Siri Jakobsson", + HasGrammyAward: true, + Debut: 1990, + GrammyNominations: 2, + GrammyAwards: 8, + Albums: [ + { + Album: "Under the bus", + LaunchDate: new Date("May 14, 2000"), + BillboardReview: 67, + USBillboard200: 67, + Artist: "Siri Jakobsson", + Songs: [ + { + TrackNumber: "1", + Title: "Jack Broke My Heart At Tesco's", + Released: "19-Jan-2020", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "2", + Title: "Cat Deep, Hats High", + Released: "5-Dec-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "3", + Title: "In Snail We Trust", + Released: "31-May-2019", + Genre: "hardcore opera", + Album: "Under the bus" + }, + { + TrackNumber: "4", + Title: "Liz's Waiting", + Released: "22-Jul-2019", + Genre: "emotional C-jam ", + Album: "Under the bus" + }, + { + TrackNumber: "5", + Title: "Lifeless Blues", + Released: "14-Jun-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "6", + Title: "I Spin", + Released: "26-Mar-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "7", + Title: "Ring of Rock", + Released: "12-Dec-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "8", + Title: "Livin' on a Rock", + Released: "17-Apr-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "9", + Title: "Your Lifeless Heart", + Released: "15-Sep-2019", + Genre: "adult calypso-industrial", + Album: "Under the bus" + }, + { + TrackNumber: "10", + Title: "The High Street on My Mind", + Released: "11-Nov-2019", + Genre: "calypso and mariachi", + Album: "Under the bus" + }, + { + TrackNumber: "11", + Title: "Behind Ugly Curtains", + Released: "8-May-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "12", + Title: "Where Have All the Curtains Gone?", + Released: "28-Jun-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "13", + Title: "Ghost in My Apple", + Released: "14-Dec-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "14", + Title: "I Chatter", + Released: "30-Nov-2019", + Genre: "*", + Album: "Under the bus" + } + ] + } + ] + }, + { + Artist: "Pablo Cambeiro", + HasGrammyAward: false, + Debut: 2011, + GrammyNominations: 5, + GrammyAwards: 0, + Albums: [ + { + Album: "Fluke", + LaunchDate: new Date("August 4, 2017"), + BillboardReview: 93, + USBillboard200: 98, + Artist: "Pablo Cambeiro" + }, + { + Album: "Crowd control", + LaunchDate: new Date("August 26, 2003"), + BillboardReview: 68, + USBillboard200: 84, + Artist: "Pablo Cambeiro", + Songs: [ + { + TrackNumber: "1", + Title: "My Bed on My Mind", + Released: "25-Mar-2019", + Genre: "ethno-tunes", + Album: "Crowd control" + }, + { + TrackNumber: "2", + Title: "Bright Blues", + Released: "28-Sep-2019", + Genre: "neuro-tunes", + Album: "Crowd control" + }, + { + TrackNumber: "3", + Title: "Sail, Sail, Sail!", + Released: "5-Mar-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "4", + Title: "Hotel My Bed", + Released: "22-Mar-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "5", + Title: "Gonna Make You Mash", + Released: "18-May-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "6", + Title: "Straight Outta America", + Released: "16-Jan-2020", + Genre: "hardcore opera", + Album: "Crowd control" + }, + { + TrackNumber: "7", + Title: "I Drive", + Released: "23-Feb-2019", + Genre: "emotional C-jam ", + Album: "Crowd control" + }, + { + TrackNumber: "8", + Title: "Like a Teddy", + Released: "31-Aug-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "9", + Title: "Teddy Boogie", + Released: "30-Nov-2019", + Genre: "*", + Album: "Crowd control" + } + ] + } + ] + }, + { + Artist: "Athar Malakooti", + HasGrammyAward: false, + Debut: 2017, + GrammyNominations: 0, + GrammyAwards: 0, + Albums: [ + { + Album: "Pushing up daisies", + LaunchDate: new Date("February 24, 2016"), + BillboardReview: 74, + USBillboard200: 77, + Artist: "Athar Malakooti" + } + ] + }, + { + Artist: "Marti Valencia", + HasGrammyAward: true, + Debut: 2004, + GrammyNominations: 1, + GrammyAwards: 1, + Albums: [ + { + Album: "Nemesis", + LaunchDate: new Date("June 30, 2004"), + BillboardReview: 94, + USBillboard200: 9, + Artist: "Marti Valencia" + }, + { + Album: "First chance", + LaunchDate: new Date("January 7, 2019"), + BillboardReview: 96, + USBillboard200: 19, + Artist: "Marti Valencia", + Songs: [ + { + TrackNumber: "1", + Title: "My Name is Jason", + Released: "12-Jul-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "2", + Title: "Amazing Andy", + Released: "5-Mar-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "3", + Title: "The Number of your Knight", + Released: "4-Dec-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "4", + Title: "I Sail", + Released: "3-Mar-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "5", + Title: "Goody Two Hands", + Released: "11-Oct-2019", + Genre: "Electro house Electropop", + Album: "First chance" + }, + { + TrackNumber: "6", + Title: "Careful With That Knife", + Released: "18-Dec-2019", + Genre: "R&B", + Album: "First chance" + }, + { + TrackNumber: "7", + Title: "Four Single Ants", + Released: "18-Jan-2020", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "8", + Title: "Kiss Forever", + Released: "10-Aug-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "9", + Title: "Rich's Waiting", + Released: "15-Mar-2019", + Genre: "Synth-pop R&B", + Album: "First chance" + }, + { + TrackNumber: "10", + Title: "Japan is Your Land", + Released: "7-Mar-2019", + Genre: "ethno-tunes", + Album: "First chance" + }, + { + TrackNumber: "11", + Title: "Pencils in My Banana", + Released: "21-Jun-2019", + Genre: "Crunk reggaeton", + Album: "First chance" + }, + { + TrackNumber: "12", + Title: "I Sail in Your Arms", + Released: "30-Apr-2019", + Genre: "Synth-pop R&B", + Album: "First chance" + } + ] + }, + { + Album: "God's advocate", + LaunchDate: new Date("April 29, 2007"), + BillboardReview: 66, + USBillboard200: 37, + Artist: "Marti Valencia" + } + ] + }, + { + Artist: "Alicia Stanger", + HasGrammyAward: false, + Debut: 2010, + GrammyNominations: 1, + GrammyAwards: 0, + Albums: [ + { + Album: "Forever alone", + LaunchDate: new Date("November 3, 2005"), + BillboardReview: 82, + USBillboard200: 7, + Artist: "Alicia Stanger" + } + ] + }, + { + Artist: "Peter Taylor", + HasGrammyAward: true, + Debut: 2005, + GrammyNominations: 0, + GrammyAwards: 2, + Albums: [ + { + Album: "Decisions decisions", + LaunchDate: new Date("April 10, 2008"), + BillboardReview: 85, + USBillboard200: 35, + Artist: "Peter Taylor" + }, + { + Album: "Climate changed", + LaunchDate: new Date("June 20, 2015"), + BillboardReview: 66, + USBillboard200: 89, + Artist: "Peter Taylor" } ] } diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx index 20976bccf..8fa57cd86 100644 --- a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx @@ -1,114 +1,6502 @@ -export const DATA: any[] = [ +export const DATA: any = [ { - Product: { Name: 'Clothing', UnitPrice: '12.81' }, - Seller: { Name: 'Stanley Brooker', City: 'Seattle' }, - Date: '2007-01-01T00:00:00', - Value: '94.27', - NumberOfUnits: '282' + Product: { + Name: 'Clothing', + UnitPrice: '12.814860936633712' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2007-01-01T00:00:00', + Value: '94.2652032683907', + NumberOfUnits: '282' }, { - Product: { Name: 'Clothing', UnitPrice: '49.58' }, - Seller: { Name: 'Elisa Longbottom', City: 'Sofia' }, - Date: '2007-01-05T00:00:00', - Value: '70.80', - NumberOfUnits: '296' + Product: { + Name: 'Clothing', + UnitPrice: '49.579375120615296' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2007-01-05T00:00:00', + Value: '70.798922689072285', + NumberOfUnits: '296' }, { - Product: { Name: 'Bikes', UnitPrice: '3.57' }, - Seller: { Name: 'Lydia Burson', City: 'Tokyo' }, - Date: '2007-01-06T00:00:00', - Value: '35.80', - NumberOfUnits: '68' + Product: { + Name: 'Bikes', + UnitPrice: '3.5653273591610266' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2007-01-06T00:00:00', + Value: '35.799331607203619', + NumberOfUnits: '68' }, { - Product: { Name: 'Accessories', UnitPrice: '85.58' }, - Seller: { Name: 'David Haley', City: 'London' }, - Date: '2007-01-07T00:00:00', - Value: '41.41', - NumberOfUnits: '293' + Product: { + Name: 'Accessories', + UnitPrice: '85.581758145979492' + }, + Seller: { + Name: 'David Haley', + City: 'London' + }, + Date: '2007-01-07T00:00:00', + Value: '41.411331268684627', + NumberOfUnits: '293' }, { - Product: { Name: 'Components', UnitPrice: '18.14' }, - Seller: { Name: 'John Smith', City: 'Seattle' }, - Date: '2007-01-08T00:00:00', - Value: '60.47', - NumberOfUnits: '240' + Product: { + Name: 'Components', + UnitPrice: '18.137625846144569' + }, + Seller: { + Name: 'John Smith', + City: 'Seattle' + }, + Date: '2007-01-08T00:00:00', + Value: '60.474313730594851', + NumberOfUnits: '240' }, { - Product: { Name: 'Clothing', UnitPrice: '68.33' }, - Seller: { Name: 'Larry Lieb', City: 'Tokyo' }, - Date: '2007-01-12T00:00:00', - Value: '37.92', - NumberOfUnits: '456' + Product: { + Name: 'Clothing', + UnitPrice: '68.330973139186852' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Tokyo' + }, + Date: '2007-01-12T00:00:00', + Value: '37.920727319047195', + NumberOfUnits: '456' }, { - Product: { Name: 'Components', UnitPrice: '16.06' }, - Seller: { Name: 'Walter Pang', City: 'Sofia' }, - Date: '2007-02-09T00:00:00', - Value: '89.20', - NumberOfUnits: '492' + Product: { + Name: 'Components', + UnitPrice: '16.056252511244384' + }, + Seller: { + Name: 'Walter Pang', + City: 'Sofia' + }, + Date: '2007-02-09T00:00:00', + Value: '89.1950179306767', + NumberOfUnits: '492' }, { - Product: { Name: 'Components', UnitPrice: '35.24' }, - Seller: { Name: 'Benjamin Dupree', City: 'Tokyo' }, - Date: '2007-02-16T00:00:00', - Value: '1.86', - NumberOfUnits: '78' + Product: { + Name: 'Components', + UnitPrice: '35.235206612960994' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Tokyo' + }, + Date: '2007-02-16T00:00:00', + Value: '1.8611075365269125', + NumberOfUnits: '78' }, { - Product: { Name: 'Accessories', UnitPrice: '73.22' }, - Seller: { Name: 'Nicholas Carmona', City: 'Mellvile' }, - Date: '2007-02-17T00:00:00', - Value: '4.61', - NumberOfUnits: '150' + Product: { + Name: 'Accessories', + UnitPrice: '73.215433663323253' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2007-02-17T00:00:00', + Value: '4.611142726899657', + NumberOfUnits: '150' }, { - Product: { Name: 'Clothing', UnitPrice: '73.61' }, - Seller: { Name: 'Nicholas Carmona', City: 'London' }, - Date: '2007-02-19T00:00:00', - Value: '36.17', - NumberOfUnits: '262' + Product: { + Name: 'Clothing', + UnitPrice: '73.614934400476017' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'London' + }, + Date: '2007-02-19T00:00:00', + Value: '36.1731772013815', + NumberOfUnits: '262' }, { - Product: { Name: 'Bikes', UnitPrice: '47.08' }, - Seller: { Name: 'Monica Freitag', City: 'Sofia' }, - Date: '2007-02-21T00:00:00', - Value: '18.70', - NumberOfUnits: '125' + Product: { + Name: 'Bikes', + UnitPrice: '47.080544683654111' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2007-02-21T00:00:00', + Value: '18.699740766873461', + NumberOfUnits: '125' }, { - Product: { Name: 'Accessories', UnitPrice: '80.68' }, - Seller: { Name: 'Elisa Longbottom', City: 'Mellvile' }, - Date: '2007-03-25T00:00:00', - Value: '90.43', - NumberOfUnits: '350' + Product: { + Name: 'Clothing', + UnitPrice: '51.298256382019382' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Sofia' + }, + Date: '2007-03-04T00:00:00', + Value: '11.600706917979151', + NumberOfUnits: '42' }, { - Product: { Name: 'Components', UnitPrice: '64.61' }, - Seller: { Name: 'Glenn Landeros', City: 'Mellvile' }, - Date: '2007-03-27T00:00:00', - Value: '95.39', - NumberOfUnits: '82' + Product: { + Name: 'Bikes', + UnitPrice: '27.466344333936622' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2007-03-04T00:00:00', + Value: '41.252478603856865', + NumberOfUnits: '282' }, { - Product: { Name: 'Accessories', UnitPrice: '50.04' }, - Seller: { Name: 'Harry Tyler', City: 'New York' }, - Date: '2007-04-02T00:00:00', - Value: '1.28', - NumberOfUnits: '67' + Product: { + Name: 'Accessories', + UnitPrice: '22.374118083330856' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2007-03-17T00:00:00', + Value: '59.82648998490837', + NumberOfUnits: '305' }, { - Product: { Name: 'Accessories', UnitPrice: '49.85' }, - Seller: { Name: 'Monica Freitag', City: 'Berlin' }, - Date: '2007-04-12T00:00:00', - Value: '46.32', - NumberOfUnits: '228' + Product: { + Name: 'Clothing', + UnitPrice: '85.292836504659078' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Tokyo' + }, + Date: '2007-03-23T00:00:00', + Value: '31.430979925874148', + NumberOfUnits: '265' }, { - Product: { Name: 'Components', UnitPrice: '44.76' }, - Seller: { Name: 'Bryan Culver', City: 'Tokyo' }, - Date: '2007-04-15T00:00:00', - Value: '82.18', - NumberOfUnits: '272' + Product: { + Name: 'Accessories', + UnitPrice: '80.675564091967217' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2007-03-25T00:00:00', + Value: '90.425077402230855', + NumberOfUnits: '350' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.613919642108456' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Mellvile' + }, + Date: '2007-03-27T00:00:00', + Value: '95.393439147338938', + NumberOfUnits: '82' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.041336636078235' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2007-04-02T00:00:00', + Value: '1.2766330043210803', + NumberOfUnits: '67' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '16.311566166724809' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Mellvile' + }, + Date: '2007-04-04T00:00:00', + Value: '25.354673632120097', + NumberOfUnits: '370' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '49.852171563474542' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Berlin' + }, + Date: '2007-04-12T00:00:00', + Value: '46.315344491189045', + NumberOfUnits: '228' + }, + { + Product: { + Name: 'Components', + UnitPrice: '44.761602042597531' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Tokyo' + }, + Date: '2007-04-15T00:00:00', + Value: '82.180273524569472', + NumberOfUnits: '272' + }, + { + Product: { + Name: 'Components', + UnitPrice: '44.395412618478488' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Berlin' + }, + Date: '2007-04-18T00:00:00', + Value: '83.970713701085515', + NumberOfUnits: '227' + }, + { + Product: { + Name: 'Components', + UnitPrice: '39.287860616709978' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2007-04-18T00:00:00', + Value: '94.261160769621455', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '36.581183335083153' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Tokyo' + }, + Date: '2007-04-21T00:00:00', + Value: '45.74127162142716', + NumberOfUnits: '414' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '75.8285212217963' + }, + Seller: { + Name: 'Walter Pang', + City: 'London' + }, + Date: '2007-04-25T00:00:00', + Value: '97.593172917884388', + NumberOfUnits: '43' + }, + { + Product: { + Name: 'Components', + UnitPrice: '57.757038929386553' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2007-04-26T00:00:00', + Value: '20.936109088797174', + NumberOfUnits: '71' + }, + { + Product: { + Name: 'Components', + UnitPrice: '40.231876140568346' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'New York' + }, + Date: '2007-05-14T00:00:00', + Value: '71.862645294453316', + NumberOfUnits: '321' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '49.525128002057379' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'London' + }, + Date: '2007-05-17T00:00:00', + Value: '49.451349419286174', + NumberOfUnits: '329' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '56.460825706115379' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2007-05-17T00:00:00', + Value: '72.704781020388381', + NumberOfUnits: '88' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '67.129778008502811' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'New York' + }, + Date: '2007-05-26T00:00:00', + Value: '56.169638576065019', + NumberOfUnits: '366' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.628920431541708' + }, + Seller: { + Name: 'Walter Pang', + City: 'Sofia' + }, + Date: '2007-06-02T00:00:00', + Value: '81.322212508563979', + NumberOfUnits: '450' + }, + { + Product: { + Name: 'Components', + UnitPrice: '89.2609520299644' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2007-06-06T00:00:00', + Value: '18.962721814849751', + NumberOfUnits: '475' + }, + { + Product: { + Name: 'Components', + UnitPrice: '33.752368871938607' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2007-06-11T00:00:00', + Value: '54.870849966477067', + NumberOfUnits: '195' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '54.101630511740986' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Sofia' + }, + Date: '2007-06-17T00:00:00', + Value: '71.630847021765462', + NumberOfUnits: '458' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '18.437854628282533' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Sofia' + }, + Date: '2007-07-04T00:00:00', + Value: '24.16097206257329', + NumberOfUnits: '7' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '96.142818264729726' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2007-07-08T00:00:00', + Value: '57.497908062067772', + NumberOfUnits: '158' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '22.990409435234223' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Tokyo' + }, + Date: '2007-07-09T00:00:00', + Value: '58.795889168417027', + NumberOfUnits: '34' + }, + { + Product: { + Name: 'Components', + UnitPrice: '52.664019145380713' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2007-07-10T00:00:00', + Value: '32.396441061234306', + NumberOfUnits: '412' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.127701128892468' + }, + Seller: { + Name: 'John Smith', + City: 'Sofia' + }, + Date: '2007-07-15T00:00:00', + Value: '84.924038818536346', + NumberOfUnits: '10' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '10.722568543033008' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2007-07-16T00:00:00', + Value: '52.205748228452052', + NumberOfUnits: '466' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.6933130848656006' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'London' + }, + Date: '2007-07-20T00:00:00', + Value: '34.224967395060212', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '43.724528301378953' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Mellvile' + }, + Date: '2007-07-24T00:00:00', + Value: '45.460345011884506', + NumberOfUnits: '307' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '76.440263947677' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2007-07-26T00:00:00', + Value: '26.061410608730007', + NumberOfUnits: '445' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '34.278292178305932' + }, + Seller: { + Name: 'Bryan Culver', + City: 'New York' + }, + Date: '2007-08-01T00:00:00', + Value: '89.2379715522928', + NumberOfUnits: '480' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '68.573393890901187' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Berlin' + }, + Date: '2007-08-02T00:00:00', + Value: '38.090129912872861', + NumberOfUnits: '390' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '65.068199003612719' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2007-08-05T00:00:00', + Value: '23.047295037213384', + NumberOfUnits: '388' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '44.938480036770216' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Seattle' + }, + Date: '2007-08-19T00:00:00', + Value: '23.370492376093981', + NumberOfUnits: '37' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '93.468684653504141' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2007-08-24T00:00:00', + Value: '17.307506789130862', + NumberOfUnits: '237' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '94.365085472522807' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2007-08-26T00:00:00', + Value: '54.621032604305555', + NumberOfUnits: '396' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '72.4087734112557' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2007-08-26T00:00:00', + Value: '60.920718014669006', + NumberOfUnits: '3' + }, + { + Product: { + Name: 'Components', + UnitPrice: '80.5917513932063' + }, + Seller: { + Name: 'Russell Shorter', + City: 'New York' + }, + Date: '2007-09-02T00:00:00', + Value: '85.134478139288021', + NumberOfUnits: '330' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '65.4044602836503' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2007-09-04T00:00:00', + Value: '51.209239359576827', + NumberOfUnits: '143' + }, + { + Product: { + Name: 'Components', + UnitPrice: '30.638690912462163' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Seattle' + }, + Date: '2007-09-05T00:00:00', + Value: '55.2145366348394', + NumberOfUnits: '318' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '7.6167185826304928' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Seattle' + }, + Date: '2007-09-06T00:00:00', + Value: '41.804668093940556', + NumberOfUnits: '393' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.946888019771727' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2007-09-10T00:00:00', + Value: '9.0849790764436964', + NumberOfUnits: '129' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '38.017715484843457' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2007-09-17T00:00:00', + Value: '25.578551518534564', + NumberOfUnits: '426' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '2.48126508783608' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2007-09-18T00:00:00', + Value: '36.332240158846716', + NumberOfUnits: '217' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '77.58936000875633' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2007-09-20T00:00:00', + Value: '27.885909670910756', + NumberOfUnits: '152' + }, + { + Product: { + Name: 'Components', + UnitPrice: '97.145493420374336' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Seattle' + }, + Date: '2007-09-25T00:00:00', + Value: '21.834250782539254', + NumberOfUnits: '452' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '19.697441309549585' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2007-10-02T00:00:00', + Value: '98.261060238937418', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '32.775894986826877' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2007-10-06T00:00:00', + Value: '79.624117389146292', + NumberOfUnits: '169' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '21.953632739350958' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Berlin' + }, + Date: '2007-10-14T00:00:00', + Value: '69.497183183905292', + NumberOfUnits: '386' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '35.591812029290857' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2007-10-14T00:00:00', + Value: '27.775967413455234', + NumberOfUnits: '454' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '46.950088509800885' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2007-10-25T00:00:00', + Value: '82.136559757467623', + NumberOfUnits: '334' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '41.134977406419338' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2007-10-26T00:00:00', + Value: '54.425787531969036', + NumberOfUnits: '107' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '13.837097405380149' + }, + Seller: { + Name: 'Mark Slater', + City: 'Sofia' + }, + Date: '2007-11-07T00:00:00', + Value: '86.212293890403728', + NumberOfUnits: '275' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '64.159993810653688' + }, + Seller: { + Name: 'Monica Freitag', + City: 'London' + }, + Date: '2007-11-09T00:00:00', + Value: '37.720342091154471', + NumberOfUnits: '241' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '1.2072517076540981' + }, + Seller: { + Name: 'Larry Lieb', + City: 'London' + }, + Date: '2007-11-11T00:00:00', + Value: '75.227352033940775', + NumberOfUnits: '177' + }, + { + Product: { + Name: 'Components', + UnitPrice: '57.8050364078046' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2007-11-13T00:00:00', + Value: '58.445235415569151', + NumberOfUnits: '494' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '39.492234559493248' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Mellvile' + }, + Date: '2007-11-19T00:00:00', + Value: '40.710543394419616', + NumberOfUnits: '451' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '5.21720713247415' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Tokyo' + }, + Date: '2008-01-01T00:00:00', + Value: '91.820002250289548', + NumberOfUnits: '125' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '53.42944141171381' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'London' + }, + Date: '2008-01-02T00:00:00', + Value: '30.892902720204045', + NumberOfUnits: '103' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '52.157351957707363' + }, + Seller: { + Name: 'Larry Lieb', + City: 'New York' + }, + Date: '2008-01-03T00:00:00', + Value: '42.964697369823554', + NumberOfUnits: '224' + }, + { + Product: { + Name: 'Components', + UnitPrice: '17.694580656334097' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2008-01-07T00:00:00', + Value: '47.573478262672893', + NumberOfUnits: '498' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '80.741111925216913' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2008-01-08T00:00:00', + Value: '15.613263806148089', + NumberOfUnits: '142' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '95.439666973166013' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Berlin' + }, + Date: '2008-01-21T00:00:00', + Value: '87.2099365513818', + NumberOfUnits: '487' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '21.778967427918204' + }, + Seller: { + Name: 'David Haley', + City: 'Mellvile' + }, + Date: '2008-01-27T00:00:00', + Value: '14.448109741531365', + NumberOfUnits: '331' + }, + { + Product: { + Name: 'Components', + UnitPrice: '29.907407625535225' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2008-02-03T00:00:00', + Value: '99.235560325549713', + NumberOfUnits: '418' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '39.839772945195328' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'New York' + }, + Date: '2008-02-04T00:00:00', + Value: '61.018408397686862', + NumberOfUnits: '214' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '40.366990370846814' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2008-02-05T00:00:00', + Value: '81.740158694675273', + NumberOfUnits: '229' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '35.198273153602273' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2008-02-05T00:00:00', + Value: '54.246561859849173', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '41.75500964827603' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2008-02-08T00:00:00', + Value: '17.860554632665849', + NumberOfUnits: '216' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '0.687878998316768' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2008-02-09T00:00:00', + Value: '84.92055874547016', + NumberOfUnits: '486' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '37.556058092767394' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Tokyo' + }, + Date: '2008-02-13T00:00:00', + Value: '45.0776737858903', + NumberOfUnits: '172' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '20.804581568019735' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2008-02-21T00:00:00', + Value: '60.542486123993285', + NumberOfUnits: '102' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.646779691170337' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Seattle' + }, + Date: '2008-02-24T00:00:00', + Value: '42.896613079540721', + NumberOfUnits: '36' + }, + { + Product: { + Name: 'Components', + UnitPrice: '53.290544102569356' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2008-02-25T00:00:00', + Value: '11.017731628854634', + NumberOfUnits: '71' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '24.854228983099681' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2008-02-25T00:00:00', + Value: '16.975014478422242', + NumberOfUnits: '53' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.6324524025584' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Tokyo' + }, + Date: '2008-02-25T00:00:00', + Value: '98.961504315473832', + NumberOfUnits: '104' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '9.6438375346566723' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Tokyo' + }, + Date: '2008-02-26T00:00:00', + Value: '96.234209880341865', + NumberOfUnits: '294' + }, + { + Product: { + Name: 'Components', + UnitPrice: '41.077790568153276' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Sofia' + }, + Date: '2008-03-03T00:00:00', + Value: '93.68367497515105', + NumberOfUnits: '454' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '36.977834551119173' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Berlin' + }, + Date: '2008-03-05T00:00:00', + Value: '82.816526006356128', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.830879969909265' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2008-03-08T00:00:00', + Value: '0.654079998216629', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Components', + UnitPrice: '24.716882512307205' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'New York' + }, + Date: '2008-03-09T00:00:00', + Value: '88.519476162511609', + NumberOfUnits: '225' + }, + { + Product: { + Name: 'Components', + UnitPrice: '65.64449792059348' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2008-03-10T00:00:00', + Value: '69.0674314131343', + NumberOfUnits: '422' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.470670270952709' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2008-03-12T00:00:00', + Value: '97.0884484691026', + NumberOfUnits: '303' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '65.1173483417916' + }, + Seller: { + Name: 'Carl Costello', + City: 'London' + }, + Date: '2008-03-13T00:00:00', + Value: '46.4407860983353', + NumberOfUnits: '319' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '39.577671764221819' + }, + Seller: { + Name: 'Harold Garvin', + City: 'London' + }, + Date: '2008-03-14T00:00:00', + Value: '48.544153733432367', + NumberOfUnits: '262' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '50.714457570907875' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2008-03-23T00:00:00', + Value: '91.7152666448221', + NumberOfUnits: '345' + }, + { + Product: { + Name: 'Components', + UnitPrice: '88.2468002793597' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2008-04-03T00:00:00', + Value: '87.275520939042579', + NumberOfUnits: '407' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.252974541509978' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2008-04-04T00:00:00', + Value: '15.127723903920373', + NumberOfUnits: '121' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '30.427555660916283' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2008-04-06T00:00:00', + Value: '44.425472405005934', + NumberOfUnits: '30' + }, + { + Product: { + Name: 'Components', + UnitPrice: '88.243144186326845' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2008-04-11T00:00:00', + Value: '25.280987110585436', + NumberOfUnits: '293' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '16.463555962063165' + }, + Seller: { + Name: 'David Haley', + City: 'Sofia' + }, + Date: '2008-04-12T00:00:00', + Value: '55.071955618947719', + NumberOfUnits: '271' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '95.208247981596855' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Sofia' + }, + Date: '2008-04-18T00:00:00', + Value: '25.773858011594907', + NumberOfUnits: '107' + }, + { + Product: { + Name: 'Components', + UnitPrice: '7.7514979558771' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Mellvile' + }, + Date: '2008-04-18T00:00:00', + Value: '54.484538247103117', + NumberOfUnits: '87' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '94.826276877348434' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2008-04-23T00:00:00', + Value: '78.9546419768383', + NumberOfUnits: '319' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.211896543024061' + }, + Seller: { + Name: 'Lydia Burson', + City: 'New York' + }, + Date: '2008-04-24T00:00:00', + Value: '21.612914242601448', + NumberOfUnits: '346' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '99.308858159607666' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2008-05-07T00:00:00', + Value: '77.780686075697034', + NumberOfUnits: '382' + }, + { + Product: { + Name: 'Components', + UnitPrice: '96.081492582374011' + }, + Seller: { + Name: 'Larry Lieb', + City: 'New York' + }, + Date: '2008-05-11T00:00:00', + Value: '35.351181326131886', + NumberOfUnits: '334' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '26.152281568456569' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Tokyo' + }, + Date: '2008-05-13T00:00:00', + Value: '28.839570995811176', + NumberOfUnits: '176' + }, + { + Product: { + Name: 'Components', + UnitPrice: '80.816311985634414' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2008-05-19T00:00:00', + Value: '8.3833388091918728', + NumberOfUnits: '125' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '78.320334701948028' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2008-05-19T00:00:00', + Value: '15.037549294083169', + NumberOfUnits: '458' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '93.996538219040517' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Berlin' + }, + Date: '2008-05-25T00:00:00', + Value: '68.472067345153576', + NumberOfUnits: '331' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.600178441312252' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2008-05-27T00:00:00', + Value: '70.953166331608386', + NumberOfUnits: '39' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.643226812427507' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2008-06-06T00:00:00', + Value: '97.089249918744542', + NumberOfUnits: '238' + }, + { + Product: { + Name: 'Components', + UnitPrice: '46.977469579771849' + }, + Seller: { + Name: 'Walter Pang', + City: 'London' + }, + Date: '2008-06-07T00:00:00', + Value: '5.6769712854535186', + NumberOfUnits: '84' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '80.151598053123621' + }, + Seller: { + Name: 'Mark Slater', + City: 'Tokyo' + }, + Date: '2008-06-08T00:00:00', + Value: '24.8368413303219', + NumberOfUnits: '363' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '43.5199616679549' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2008-06-08T00:00:00', + Value: '58.973721162869467', + NumberOfUnits: '479' + }, + { + Product: { + Name: 'Components', + UnitPrice: '56.316017851380643' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Sofia' + }, + Date: '2008-06-11T00:00:00', + Value: '87.466286116962451', + NumberOfUnits: '404' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '81.685168194437935' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2008-06-18T00:00:00', + Value: '80.283416472507369', + NumberOfUnits: '478' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '90.111846611887145' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Sofia' + }, + Date: '2008-06-19T00:00:00', + Value: '2.328636451777367', + NumberOfUnits: '285' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.342426471105966' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Sofia' + }, + Date: '2008-06-22T00:00:00', + Value: '82.489029449638466', + NumberOfUnits: '15' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '30.834545442291788' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Berlin' + }, + Date: '2008-06-26T00:00:00', + Value: '77.825110767886557', + NumberOfUnits: '245' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.386958358523884' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2008-07-01T00:00:00', + Value: '8.1397687588537888', + NumberOfUnits: '376' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '73.34977298665315' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2008-07-02T00:00:00', + Value: '48.44682516923492', + NumberOfUnits: '40' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '43.496660489354589' + }, + Seller: { + Name: 'Larry Lieb', + City: 'London' + }, + Date: '2008-07-10T00:00:00', + Value: '37.8727404577065', + NumberOfUnits: '112' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '16.394280649905223' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2008-07-15T00:00:00', + Value: '9.7406020433365388', + NumberOfUnits: '224' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '71.402299390827437' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Tokyo' + }, + Date: '2008-07-16T00:00:00', + Value: '66.4204306278473', + NumberOfUnits: '145' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '94.61881909268854' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2008-07-21T00:00:00', + Value: '46.491464388785637', + NumberOfUnits: '272' + }, + { + Product: { + Name: 'Components', + UnitPrice: '50.753261684790843' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2008-07-27T00:00:00', + Value: '90.114484676213223', + NumberOfUnits: '278' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '12.782123597702999' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2008-07-27T00:00:00', + Value: '89.137324080400788', + NumberOfUnits: '253' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.780031064422815' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2008-08-01T00:00:00', + Value: '28.40646618437323', + NumberOfUnits: '255' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '17.133888051441819' + }, + Seller: { + Name: 'David Haley', + City: 'Seattle' + }, + Date: '2008-08-02T00:00:00', + Value: '0.455726543653629', + NumberOfUnits: '46' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '22.126638806484006' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Tokyo' + }, + Date: '2008-08-08T00:00:00', + Value: '58.445409852287455', + NumberOfUnits: '279' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.986888765816992' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2008-08-08T00:00:00', + Value: '91.802758533415741', + NumberOfUnits: '89' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '83.838022585882825' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Sofia' + }, + Date: '2008-08-14T00:00:00', + Value: '52.590476420051637', + NumberOfUnits: '17' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '14.075806277839376' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2008-08-21T00:00:00', + Value: '53.912139196839249', + NumberOfUnits: '470' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '34.591086923420008' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2008-08-25T00:00:00', + Value: '1.7413051341387', + NumberOfUnits: '195' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '86.727353691462127' + }, + Seller: { + Name: 'Lydia Burson', + City: 'New York' + }, + Date: '2008-08-27T00:00:00', + Value: '23.782985947925127', + NumberOfUnits: '173' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '42.2365329890682' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'New York' + }, + Date: '2008-09-01T00:00:00', + Value: '51.1229278292148', + NumberOfUnits: '472' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '25.687071413587347' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2008-09-06T00:00:00', + Value: '88.372170640328974', + NumberOfUnits: '148' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '23.20858027004105' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2008-09-06T00:00:00', + Value: '94.485007689560291', + NumberOfUnits: '314' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '83.763652752974835' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2008-09-07T00:00:00', + Value: '66.778043828335612', + NumberOfUnits: '431' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '84.414287882118629' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2008-09-07T00:00:00', + Value: '27.639171773399774', + NumberOfUnits: '347' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '7.3291354846810624' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Berlin' + }, + Date: '2008-09-11T00:00:00', + Value: '2.7723569435870075', + NumberOfUnits: '27' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '9.5534944019995134' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Berlin' + }, + Date: '2008-09-12T00:00:00', + Value: '11.851146077667897', + NumberOfUnits: '5' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.820872164713627' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2008-09-19T00:00:00', + Value: '16.46975079386949', + NumberOfUnits: '191' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '79.869313901229447' + }, + Seller: { + Name: 'Bryan Culver', + City: 'New York' + }, + Date: '2008-09-25T00:00:00', + Value: '84.273458730556754', + NumberOfUnits: '421' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.238494475483193' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2008-10-03T00:00:00', + Value: '28.857351992678527', + NumberOfUnits: '297' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '96.094717130109075' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'New York' + }, + Date: '2008-10-04T00:00:00', + Value: '15.797333380113047', + NumberOfUnits: '128' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.009710244373281' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Mellvile' + }, + Date: '2008-10-13T00:00:00', + Value: '37.30084394910412', + NumberOfUnits: '210' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '35.7560529074427' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2008-10-14T00:00:00', + Value: '26.942082646741571', + NumberOfUnits: '315' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.989432462951839' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'New York' + }, + Date: '2008-10-19T00:00:00', + Value: '69.838245990610787', + NumberOfUnits: '489' + }, + { + Product: { + Name: 'Components', + UnitPrice: '84.320317201465514' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2008-10-21T00:00:00', + Value: '61.3185628137172', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '25.52848226648219' + }, + Seller: { + Name: 'John Smith', + City: 'Mellvile' + }, + Date: '2008-10-22T00:00:00', + Value: '69.33637818756344', + NumberOfUnits: '92' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '23.874032927618376' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2008-11-01T00:00:00', + Value: '81.091924282299317', + NumberOfUnits: '30' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '53.634575919077996' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Berlin' + }, + Date: '2008-11-01T00:00:00', + Value: '15.006514738782547', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '68.152902074229388' + }, + Seller: { + Name: 'Bryan Culver', + City: 'London' + }, + Date: '2008-11-10T00:00:00', + Value: '6.0539431898174536', + NumberOfUnits: '368' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '59.880471210871114' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2008-11-11T00:00:00', + Value: '39.091290505179806', + NumberOfUnits: '482' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '5.754821284559938' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2008-11-11T00:00:00', + Value: '48.663099086220889', + NumberOfUnits: '22' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '95.84922096498741' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2008-11-20T00:00:00', + Value: '87.1416628300872', + NumberOfUnits: '159' + }, + { + Product: { + Name: 'Components', + UnitPrice: '59.066441729230078' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Berlin' + }, + Date: '2008-11-25T00:00:00', + Value: '88.637168141378623', + NumberOfUnits: '52' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '94.029234626344049' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Tokyo' + }, + Date: '2009-01-05T00:00:00', + Value: '79.830559240575212', + NumberOfUnits: '194' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '12.794803135467136' + }, + Seller: { + Name: 'David Haley', + City: 'Berlin' + }, + Date: '2009-01-08T00:00:00', + Value: '42.869858277435348', + NumberOfUnits: '100' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.852128705872282' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Berlin' + }, + Date: '2009-01-10T00:00:00', + Value: '48.256240528196209', + NumberOfUnits: '252' + }, + { + Product: { + Name: 'Components', + UnitPrice: '79.434888241549444' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Tokyo' + }, + Date: '2009-01-13T00:00:00', + Value: '68.505005337533078', + NumberOfUnits: '116' + }, + { + Product: { + Name: 'Components', + UnitPrice: '90.91811845587479' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'London' + }, + Date: '2009-01-14T00:00:00', + Value: '27.461436776193526', + NumberOfUnits: '259' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.848602618951631' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2009-01-19T00:00:00', + Value: '56.725358290935567', + NumberOfUnits: '217' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '43.273846266453084' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Seattle' + }, + Date: '2009-01-22T00:00:00', + Value: '36.4720197098665', + NumberOfUnits: '48' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '0.65436926700843923' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'New York' + }, + Date: '2009-02-02T00:00:00', + Value: '71.425742549554329', + NumberOfUnits: '445' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '60.464150859259135' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Mellvile' + }, + Date: '2009-02-03T00:00:00', + Value: '44.63498086884384', + NumberOfUnits: '90' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '13.659154862938056' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2009-02-07T00:00:00', + Value: '36.151584394346727', + NumberOfUnits: '453' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '44.160772694349646' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Mellvile' + }, + Date: '2009-02-07T00:00:00', + Value: '85.6432799648695', + NumberOfUnits: '450' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.330096614700793' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2009-02-07T00:00:00', + Value: '48.103636479053478', + NumberOfUnits: '152' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.7838492862805033' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Berlin' + }, + Date: '2009-02-16T00:00:00', + Value: '46.49472713772893', + NumberOfUnits: '119' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '79.235950894298014' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Tokyo' + }, + Date: '2009-02-16T00:00:00', + Value: '29.240355281736868', + NumberOfUnits: '463' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '18.588924276916742' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Tokyo' + }, + Date: '2009-02-17T00:00:00', + Value: '19.761605616547914', + NumberOfUnits: '150' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '27.901109833224265' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2009-02-19T00:00:00', + Value: '17.557824644054204', + NumberOfUnits: '210' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.192088797312266' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Tokyo' + }, + Date: '2009-02-20T00:00:00', + Value: '36.321839986518881', + NumberOfUnits: '150' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '35.849487937916763' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2009-02-21T00:00:00', + Value: '73.888651083171681', + NumberOfUnits: '97' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '34.073729130473794' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Berlin' + }, + Date: '2009-02-22T00:00:00', + Value: '86.417150211714741', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '66.299910734547268' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2009-02-24T00:00:00', + Value: '52.847915213949939', + NumberOfUnits: '172' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.901878412301596' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Mellvile' + }, + Date: '2009-02-24T00:00:00', + Value: '5.1081647188906389', + NumberOfUnits: '489' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '51.915620757227586' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Sofia' + }, + Date: '2009-02-27T00:00:00', + Value: '9.0917529580610577', + NumberOfUnits: '222' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '98.30828662882945' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Berlin' + }, + Date: '2009-03-03T00:00:00', + Value: '81.314004157350411', + NumberOfUnits: '300' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.820251282686485' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2009-03-03T00:00:00', + Value: '1.3068364007895981', + NumberOfUnits: '270' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '16.260613881172898' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2009-03-07T00:00:00', + Value: '81.4439182083327', + NumberOfUnits: '263' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '93.446688537228241' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2009-03-10T00:00:00', + Value: '22.661844046163303', + NumberOfUnits: '28' + }, + { + Product: { + Name: 'Components', + UnitPrice: '42.142761425181646' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'London' + }, + Date: '2009-03-15T00:00:00', + Value: '20.388415884407433', + NumberOfUnits: '237' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '54.983897719059094' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Tokyo' + }, + Date: '2009-03-16T00:00:00', + Value: '64.043450431918473', + NumberOfUnits: '171' + }, + { + Product: { + Name: 'Components', + UnitPrice: '97.311258221655734' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2009-03-27T00:00:00', + Value: '23.9032197389301', + NumberOfUnits: '251' + }, + { + Product: { + Name: 'Components', + UnitPrice: '50.889893039544063' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'London' + }, + Date: '2009-04-01T00:00:00', + Value: '32.324041068704815', + NumberOfUnits: '275' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.7144460513789417' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'London' + }, + Date: '2009-04-06T00:00:00', + Value: '41.960918783192021', + NumberOfUnits: '311' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '70.850547156692727' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2009-04-07T00:00:00', + Value: '82.811493604821848', + NumberOfUnits: '217' + }, + { + Product: { + Name: 'Components', + UnitPrice: '96.778652489547923' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2009-04-09T00:00:00', + Value: '62.226076034002972', + NumberOfUnits: '360' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '83.5057999396258' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Berlin' + }, + Date: '2009-04-12T00:00:00', + Value: '51.587959589244782', + NumberOfUnits: '35' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.413802446990189' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2009-04-15T00:00:00', + Value: '80.986556122538886', + NumberOfUnits: '294' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '70.80258972514541' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2009-04-16T00:00:00', + Value: '35.866933425826453', + NumberOfUnits: '436' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.524064517824016' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'London' + }, + Date: '2009-04-20T00:00:00', + Value: '82.488713498454871', + NumberOfUnits: '78' + }, + { + Product: { + Name: 'Components', + UnitPrice: '29.603658024968421' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2009-04-22T00:00:00', + Value: '94.02309180890353', + NumberOfUnits: '301' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.59798216009419' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2009-05-02T00:00:00', + Value: '92.598087011183651', + NumberOfUnits: '24' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '71.666997145706318' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2009-05-04T00:00:00', + Value: '19.282113676556438', + NumberOfUnits: '332' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.552707418125452' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2009-05-11T00:00:00', + Value: '56.428837429931775', + NumberOfUnits: '307' + }, + { + Product: { + Name: 'Components', + UnitPrice: '36.712927202094782' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2009-05-11T00:00:00', + Value: '34.265398902010823', + NumberOfUnits: '375' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '62.74587812961353' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2009-05-12T00:00:00', + Value: '1.9744442785039749', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '13.699630607710981' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2009-05-21T00:00:00', + Value: '42.514021341928292', + NumberOfUnits: '337' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '46.090274558444634' + }, + Seller: { + Name: 'Larry Lieb', + City: 'London' + }, + Date: '2009-05-24T00:00:00', + Value: '55.25077774899583', + NumberOfUnits: '284' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '95.33687676085944' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Berlin' + }, + Date: '2009-05-26T00:00:00', + Value: '94.764131631126688', + NumberOfUnits: '292' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.090784828220862' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Sofia' + }, + Date: '2009-05-26T00:00:00', + Value: '60.153313800763954', + NumberOfUnits: '424' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '99.392229132071236' + }, + Seller: { + Name: 'Mark Slater', + City: 'Mellvile' + }, + Date: '2009-06-05T00:00:00', + Value: '28.99414483876626', + NumberOfUnits: '271' + }, + { + Product: { + Name: 'Components', + UnitPrice: '86.944918514669368' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Mellvile' + }, + Date: '2009-06-10T00:00:00', + Value: '94.041974653509428', + NumberOfUnits: '6' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '13.495747797887656' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2009-06-12T00:00:00', + Value: '94.892294562837236', + NumberOfUnits: '44' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.648592900321162' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2009-06-12T00:00:00', + Value: '74.204946949242128', + NumberOfUnits: '277' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '16.877442187106908' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2009-06-13T00:00:00', + Value: '65.121114330888318', + NumberOfUnits: '98' + }, + { + Product: { + Name: 'Components', + UnitPrice: '42.376991707075852' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2009-06-22T00:00:00', + Value: '68.602847060469372', + NumberOfUnits: '443' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '79.539957074234252' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2009-06-26T00:00:00', + Value: '81.434181044546037', + NumberOfUnits: '409' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '26.25291264907127' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2009-07-02T00:00:00', + Value: '68.128146216332979', + NumberOfUnits: '240' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '34.046156627147532' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Seattle' + }, + Date: '2009-07-10T00:00:00', + Value: '95.570359656387168', + NumberOfUnits: '23' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '29.379817577721468' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2009-07-12T00:00:00', + Value: '35.889505099453736', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '86.650452430662909' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Berlin' + }, + Date: '2009-07-13T00:00:00', + Value: '29.856805424139278', + NumberOfUnits: '117' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '58.386603816592419' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2009-07-15T00:00:00', + Value: '34.369692268953514', + NumberOfUnits: '336' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '39.759629797078496' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Seattle' + }, + Date: '2009-07-18T00:00:00', + Value: '92.39610121231344', + NumberOfUnits: '372' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '10.11000248142984' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Berlin' + }, + Date: '2009-07-19T00:00:00', + Value: '90.408865451071819', + NumberOfUnits: '403' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '17.772769098064288' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2009-07-19T00:00:00', + Value: '66.145469558492991', + NumberOfUnits: '144' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '21.54340814870941' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Seattle' + }, + Date: '2009-07-19T00:00:00', + Value: '41.712649465404752', + NumberOfUnits: '395' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '33.561278383043259' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2009-07-20T00:00:00', + Value: '16.61004327079749', + NumberOfUnits: '236' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '48.76308178005884' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2009-07-20T00:00:00', + Value: '86.7044968934285', + NumberOfUnits: '160' + }, + { + Product: { + Name: 'Components', + UnitPrice: '81.79705179380116' + }, + Seller: { + Name: 'David Haley', + City: 'Sofia' + }, + Date: '2009-07-20T00:00:00', + Value: '65.782062134604', + NumberOfUnits: '157' + }, + { + Product: { + Name: 'Components', + UnitPrice: '9.6737010449514251' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Sofia' + }, + Date: '2009-07-25T00:00:00', + Value: '0.062564946740197455', + NumberOfUnits: '255' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '88.575547462597285' + }, + Seller: { + Name: 'Mark Slater', + City: 'London' + }, + Date: '2009-08-16T00:00:00', + Value: '42.973863865702349', + NumberOfUnits: '284' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '89.335742634411787' + }, + Seller: { + Name: 'Walter Pang', + City: 'Tokyo' + }, + Date: '2009-08-17T00:00:00', + Value: '15.731296835342096', + NumberOfUnits: '333' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '23.987651161843747' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2009-08-17T00:00:00', + Value: '51.5363990569191', + NumberOfUnits: '48' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '19.359730239659424' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2009-08-18T00:00:00', + Value: '82.547955160284388', + NumberOfUnits: '399' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '9.30053084590497' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2009-08-24T00:00:00', + Value: '68.607750753223783', + NumberOfUnits: '413' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '1.1489816946671259' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2009-09-06T00:00:00', + Value: '71.909978693309228', + NumberOfUnits: '182' + }, + { + Product: { + Name: 'Components', + UnitPrice: '76.9795825597735' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2009-09-06T00:00:00', + Value: '44.89029713202747', + NumberOfUnits: '156' + }, + { + Product: { + Name: 'Components', + UnitPrice: '80.664513344254587' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2009-09-09T00:00:00', + Value: '92.268023962279784', + NumberOfUnits: '293' + }, + { + Product: { + Name: 'Components', + UnitPrice: '22.788886131154786' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2009-10-01T00:00:00', + Value: '99.883927823921638', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.05361020288133' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Seattle' + }, + Date: '2009-10-01T00:00:00', + Value: '16.01294182055301', + NumberOfUnits: '106' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '72.974514808959569' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Tokyo' + }, + Date: '2009-10-06T00:00:00', + Value: '91.593776918758536', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Components', + UnitPrice: '22.058241871212722' + }, + Seller: { + Name: 'John Smith', + City: 'Tokyo' + }, + Date: '2009-10-07T00:00:00', + Value: '1.8308585983844747', + NumberOfUnits: '187' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '42.79186979066202' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2009-10-10T00:00:00', + Value: '21.78986469367047', + NumberOfUnits: '137' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.231171277459325' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2009-10-14T00:00:00', + Value: '14.979823871971956', + NumberOfUnits: '138' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '14.350185037753633' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2009-10-24T00:00:00', + Value: '65.044616239631836', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Components', + UnitPrice: '40.100955655845326' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'London' + }, + Date: '2009-10-24T00:00:00', + Value: '11.059040581369326', + NumberOfUnits: '353' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '17.189097831579435' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2009-11-01T00:00:00', + Value: '94.950034746411276', + NumberOfUnits: '359' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '52.031028155251882' + }, + Seller: { + Name: 'Walter Pang', + City: 'Tokyo' + }, + Date: '2009-11-04T00:00:00', + Value: '43.162881835905317', + NumberOfUnits: '134' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '90.993871954732526' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2009-11-09T00:00:00', + Value: '25.162065972183861', + NumberOfUnits: '263' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '88.538379077119' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2009-11-11T00:00:00', + Value: '40.935293185028847', + NumberOfUnits: '313' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '46.481523265355044' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2009-11-16T00:00:00', + Value: '20.430096527761822', + NumberOfUnits: '115' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '20.418462399588183' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Berlin' + }, + Date: '2009-11-17T00:00:00', + Value: '33.038645299635192', + NumberOfUnits: '414' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '70.830144114247588' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2009-11-21T00:00:00', + Value: '2.98972730664058', + NumberOfUnits: '53' + }, + { + Product: { + Name: 'Components', + UnitPrice: '81.628889023153533' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2009-11-22T00:00:00', + Value: '86.668779555088264', + NumberOfUnits: '472' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '9.714081422292665' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Mellvile' + }, + Date: '2009-11-23T00:00:00', + Value: '53.591187323253223', + NumberOfUnits: '199' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '29.755140482334021' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Sofia' + }, + Date: '2009-11-24T00:00:00', + Value: '27.388797945989669', + NumberOfUnits: '241' + }, + { + Product: { + Name: 'Components', + UnitPrice: '33.118537689148695' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'New York' + }, + Date: '2009-11-24T00:00:00', + Value: '1.2120309291463489', + NumberOfUnits: '320' + }, + { + Product: { + Name: 'Components', + UnitPrice: '65.6359763655979' + }, + Seller: { + Name: 'David Haley', + City: 'London' + }, + Date: '2010-01-02T00:00:00', + Value: '20.522539420296688', + NumberOfUnits: '299' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.085259967523285' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2010-01-08T00:00:00', + Value: '35.256934368636891', + NumberOfUnits: '366' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '78.474462068860646' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2010-01-10T00:00:00', + Value: '27.762093407922467', + NumberOfUnits: '290' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '11.587155103491226' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2010-01-11T00:00:00', + Value: '61.712525906838721', + NumberOfUnits: '350' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '33.427815853351639' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2010-01-14T00:00:00', + Value: '33.686906720365819', + NumberOfUnits: '469' + }, + { + Product: { + Name: 'Components', + UnitPrice: '96.141296949303381' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2010-01-21T00:00:00', + Value: '75.607716606747218', + NumberOfUnits: '352' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '92.171847676938327' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2010-01-25T00:00:00', + Value: '38.822024473371926', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '93.045955893139336' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Tokyo' + }, + Date: '2010-02-02T00:00:00', + Value: '66.397165863959657', + NumberOfUnits: '153' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '38.888418506313307' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2010-02-02T00:00:00', + Value: '28.472216533716871', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.255040660153625' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2010-02-04T00:00:00', + Value: '66.975509546220067', + NumberOfUnits: '267' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.418360057481735' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2010-02-04T00:00:00', + Value: '71.271966803479927', + NumberOfUnits: '91' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '19.770187707510864' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Tokyo' + }, + Date: '2010-02-05T00:00:00', + Value: '45.86024901171227', + NumberOfUnits: '84' + }, + { + Product: { + Name: 'Components', + UnitPrice: '87.127108633111746' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Mellvile' + }, + Date: '2010-02-11T00:00:00', + Value: '66.746746220973662', + NumberOfUnits: '270' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '76.21922282326' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Berlin' + }, + Date: '2010-02-12T00:00:00', + Value: '86.961047717817621', + NumberOfUnits: '496' + }, + { + Product: { + Name: 'Components', + UnitPrice: '51.935532154485365' + }, + Seller: { + Name: 'John Smith', + City: 'Seattle' + }, + Date: '2010-02-16T00:00:00', + Value: '47.325407875387654', + NumberOfUnits: '24' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.709201215630959' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2010-02-17T00:00:00', + Value: '72.656378696046943', + NumberOfUnits: '41' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '15.665925860249402' + }, + Seller: { + Name: 'John Smith', + City: 'Mellvile' + }, + Date: '2010-02-22T00:00:00', + Value: '65.636205098422337', + NumberOfUnits: '365' + }, + { + Product: { + Name: 'Components', + UnitPrice: '2.6773556613723541' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Sofia' + }, + Date: '2010-03-01T00:00:00', + Value: '68.629750361959324', + NumberOfUnits: '202' + }, + { + Product: { + Name: 'Components', + UnitPrice: '52.256432619065251' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2010-03-01T00:00:00', + Value: '79.248901540063741', + NumberOfUnits: '225' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '0.30659986674161621' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2010-03-03T00:00:00', + Value: '70.065212654911548', + NumberOfUnits: '206' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '22.362647448835265' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Sofia' + }, + Date: '2010-03-11T00:00:00', + Value: '54.673684646689189', + NumberOfUnits: '158' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '94.7514695090947' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2010-03-14T00:00:00', + Value: '70.422226083661528', + NumberOfUnits: '169' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '1.1244290979227185' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2010-03-15T00:00:00', + Value: '18.868440258721094', + NumberOfUnits: '4' + }, + { + Product: { + Name: 'Components', + UnitPrice: '12.168197199780586' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2010-03-15T00:00:00', + Value: '12.660750706056481', + NumberOfUnits: '232' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '58.754820636825087' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2010-03-16T00:00:00', + Value: '78.751323967590608', + NumberOfUnits: '421' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '43.950277959904767' + }, + Seller: { + Name: 'David Haley', + City: 'Seattle' + }, + Date: '2010-03-25T00:00:00', + Value: '89.636901900934475', + NumberOfUnits: '260' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '54.451138970652188' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2010-04-02T00:00:00', + Value: '91.929945113104736', + NumberOfUnits: '194' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.565373749735471' + }, + Seller: { + Name: 'Walter Pang', + City: 'Tokyo' + }, + Date: '2010-04-05T00:00:00', + Value: '35.415237739409896', + NumberOfUnits: '491' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '11.121100052781916' + }, + Seller: { + Name: 'Harold Garvin', + City: 'London' + }, + Date: '2010-04-14T00:00:00', + Value: '29.986905041144652', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Components', + UnitPrice: '18.092416607817828' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2010-04-15T00:00:00', + Value: '84.457366813187193', + NumberOfUnits: '279' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.277599657083675' + }, + Seller: { + Name: 'Carl Costello', + City: 'Berlin' + }, + Date: '2010-04-15T00:00:00', + Value: '99.568976647951175', + NumberOfUnits: '287' + }, + { + Product: { + Name: 'Components', + UnitPrice: '77.894294018807955' + }, + Seller: { + Name: 'Carl Costello', + City: 'New York' + }, + Date: '2010-04-22T00:00:00', + Value: '58.9137158165284', + NumberOfUnits: '363' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '55.624015888024125' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2010-04-22T00:00:00', + Value: '16.317631032465783', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '39.338956605335213' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Berlin' + }, + Date: '2010-04-24T00:00:00', + Value: '0.092080421788655414', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Components', + UnitPrice: '7.7389456833428447' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2010-05-04T00:00:00', + Value: '99.529428733293628', + NumberOfUnits: '25' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '62.437906005623709' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2010-05-05T00:00:00', + Value: '47.953826816731052', + NumberOfUnits: '64' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '38.696093037117322' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'London' + }, + Date: '2010-05-06T00:00:00', + Value: '57.667695059286281', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '17.764891412930979' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Mellvile' + }, + Date: '2010-05-07T00:00:00', + Value: '15.271079826760609', + NumberOfUnits: '50' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '57.771539901276839' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Berlin' + }, + Date: '2010-05-07T00:00:00', + Value: '58.617693865028066', + NumberOfUnits: '437' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '21.412746897625155' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2010-05-19T00:00:00', + Value: '40.952016665112232', + NumberOfUnits: '253' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '10.10051225782396' + }, + Seller: { + Name: 'Monica Freitag', + City: 'London' + }, + Date: '2010-05-22T00:00:00', + Value: '24.04263714516658', + NumberOfUnits: '312' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '87.649551167920961' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2010-05-24T00:00:00', + Value: '12.452408304648664', + NumberOfUnits: '82' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '42.552965526726545' + }, + Seller: { + Name: 'Harold Garvin', + City: 'New York' + }, + Date: '2010-06-01T00:00:00', + Value: '32.21886932487547', + NumberOfUnits: '467' + }, + { + Product: { + Name: 'Components', + UnitPrice: '79.772670743881108' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Sofia' + }, + Date: '2010-06-05T00:00:00', + Value: '69.47704109804566', + NumberOfUnits: '74' + }, + { + Product: { + Name: 'Components', + UnitPrice: '1.8354761888438258' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2010-06-10T00:00:00', + Value: '14.711501968424534', + NumberOfUnits: '81' + }, + { + Product: { + Name: 'Components', + UnitPrice: '15.038684017508608' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Berlin' + }, + Date: '2010-06-25T00:00:00', + Value: '18.710408228780334', + NumberOfUnits: '88' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '43.393069851860908' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2010-06-26T00:00:00', + Value: '44.323160147444881', + NumberOfUnits: '126' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.236492486780737' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2010-06-27T00:00:00', + Value: '77.721635707524442', + NumberOfUnits: '112' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '59.192252885174121' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Sofia' + }, + Date: '2010-06-27T00:00:00', + Value: '15.444951837623936', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Components', + UnitPrice: '39.858141839438183' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Sofia' + }, + Date: '2010-07-05T00:00:00', + Value: '29.309184630079749', + NumberOfUnits: '218' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '27.044425637947594' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2010-07-05T00:00:00', + Value: '29.84750439871452', + NumberOfUnits: '34' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.269145072563152' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2010-07-13T00:00:00', + Value: '83.42096804800488', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '53.378611455382128' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2010-07-16T00:00:00', + Value: '41.53844534491116', + NumberOfUnits: '464' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.432887213971881' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2010-07-17T00:00:00', + Value: '83.285907275642217', + NumberOfUnits: '118' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '23.970818670452953' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2010-07-18T00:00:00', + Value: '94.1482592346837', + NumberOfUnits: '442' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.523097888344481' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2010-07-23T00:00:00', + Value: '59.59416039269145', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '60.678681014421713' + }, + Seller: { + Name: 'Lydia Burson', + City: 'London' + }, + Date: '2010-07-23T00:00:00', + Value: '83.499601801624337', + NumberOfUnits: '472' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.0230887131873' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'New York' + }, + Date: '2010-07-24T00:00:00', + Value: '83.86764092550969', + NumberOfUnits: '140' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.635253308171059' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2010-07-26T00:00:00', + Value: '86.612572747567938', + NumberOfUnits: '118' + }, + { + Product: { + Name: 'Components', + UnitPrice: '58.201980291959821' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2010-07-27T00:00:00', + Value: '63.959779713284128', + NumberOfUnits: '176' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '98.375331656250779' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2010-08-01T00:00:00', + Value: '23.277100465855142', + NumberOfUnits: '77' + }, + { + Product: { + Name: 'Components', + UnitPrice: '2.9185969396115263' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Sofia' + }, + Date: '2010-08-08T00:00:00', + Value: '74.269686627327317', + NumberOfUnits: '105' + }, + { + Product: { + Name: 'Components', + UnitPrice: '98.157584806046259' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Tokyo' + }, + Date: '2010-08-21T00:00:00', + Value: '60.648173215169543', + NumberOfUnits: '160' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '79.036749144567537' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2010-08-26T00:00:00', + Value: '66.923503934835779', + NumberOfUnits: '186' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '17.790103991418192' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2010-09-04T00:00:00', + Value: '28.990831612139395', + NumberOfUnits: '380' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '38.68470799116637' + }, + Seller: { + Name: 'John Smith', + City: 'Tokyo' + }, + Date: '2010-09-11T00:00:00', + Value: '41.4628619986879', + NumberOfUnits: '470' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '75.233120366573857' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2010-09-13T00:00:00', + Value: '42.688516267895935', + NumberOfUnits: '348' + }, + { + Product: { + Name: 'Components', + UnitPrice: '55.30159308356307' + }, + Seller: { + Name: 'Carl Costello', + City: 'London' + }, + Date: '2010-09-14T00:00:00', + Value: '29.383467570591471', + NumberOfUnits: '151' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '51.315049571597505' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2010-09-24T00:00:00', + Value: '86.581237654472346', + NumberOfUnits: '7' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '31.307030995985041' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2010-10-07T00:00:00', + Value: '38.936872425925394', + NumberOfUnits: '123' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '79.959242362510068' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2010-10-08T00:00:00', + Value: '8.676337175386184', + NumberOfUnits: '374' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '94.65782241647031' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Mellvile' + }, + Date: '2010-10-11T00:00:00', + Value: '96.669988984554067', + NumberOfUnits: '178' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '41.967610009930844' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2010-10-22T00:00:00', + Value: '31.412678645650239', + NumberOfUnits: '354' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '46.564729067759927' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2010-10-25T00:00:00', + Value: '85.540413197847272', + NumberOfUnits: '459' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '27.142422565791019' + }, + Seller: { + Name: 'Mark Slater', + City: 'London' + }, + Date: '2010-11-02T00:00:00', + Value: '46.424968795117444', + NumberOfUnits: '78' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '30.232361531924624' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2010-11-03T00:00:00', + Value: '52.08322599161567', + NumberOfUnits: '417' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '82.166215769092659' + }, + Seller: { + Name: 'Walter Pang', + City: 'Seattle' + }, + Date: '2010-11-12T00:00:00', + Value: '15.3999604356475', + NumberOfUnits: '208' + }, + { + Product: { + Name: 'Components', + UnitPrice: '13.240201125498954' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2010-11-19T00:00:00', + Value: '48.614451078984168', + NumberOfUnits: '359' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.82965918110202' + }, + Seller: { + Name: 'Russell Shorter', + City: 'New York' + }, + Date: '2010-11-25T00:00:00', + Value: '24.490439856653307', + NumberOfUnits: '392' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '78.426081770298111' + }, + Seller: { + Name: 'John Smith', + City: 'London' + }, + Date: '2011-01-01T00:00:00', + Value: '37.596409040315265', + NumberOfUnits: '241' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '50.590050290613462' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Seattle' + }, + Date: '2011-01-04T00:00:00', + Value: '27.185391135134452', + NumberOfUnits: '62' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '6.3079299900252046' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Tokyo' + }, + Date: '2011-01-06T00:00:00', + Value: '89.615617641068809', + NumberOfUnits: '485' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '47.444027544671677' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2011-01-14T00:00:00', + Value: '4.8948556207562124', + NumberOfUnits: '470' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '6.14731172385966' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2011-01-23T00:00:00', + Value: '78.523330706415379', + NumberOfUnits: '197' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '57.598939471691359' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Berlin' + }, + Date: '2011-01-26T00:00:00', + Value: '59.748959848540352', + NumberOfUnits: '353' + }, + { + Product: { + Name: 'Components', + UnitPrice: '37.619407911607723' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Mellvile' + }, + Date: '2011-02-01T00:00:00', + Value: '39.591191541213163', + NumberOfUnits: '338' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '20.995826982425445' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2011-02-08T00:00:00', + Value: '92.874936197360483', + NumberOfUnits: '17' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '11.776900390059176' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2011-02-12T00:00:00', + Value: '61.288865125406936', + NumberOfUnits: '429' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.996284649239982' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Tokyo' + }, + Date: '2011-02-14T00:00:00', + Value: '24.293736985090067', + NumberOfUnits: '385' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '19.89953691135139' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2011-02-20T00:00:00', + Value: '35.271121391687132', + NumberOfUnits: '166' + }, + { + Product: { + Name: 'Components', + UnitPrice: '3.2431666288725873' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Seattle' + }, + Date: '2011-02-20T00:00:00', + Value: '52.569142939787895', + NumberOfUnits: '137' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '18.180364006282932' + }, + Seller: { + Name: 'Russell Shorter', + City: 'New York' + }, + Date: '2011-02-24T00:00:00', + Value: '8.2438002378883759', + NumberOfUnits: '443' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '20.442789662835555' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2011-02-26T00:00:00', + Value: '87.327797658428452', + NumberOfUnits: '40' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '20.547325592742919' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2011-03-05T00:00:00', + Value: '7.2753519319348747', + NumberOfUnits: '138' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '23.766470804701779' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2011-03-09T00:00:00', + Value: '18.243170770929741', + NumberOfUnits: '15' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '76.253175817547913' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2011-03-09T00:00:00', + Value: '74.498488369629939', + NumberOfUnits: '469' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '93.2519404651839' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2011-03-11T00:00:00', + Value: '88.996454276608517', + NumberOfUnits: '426' + }, + { + Product: { + Name: 'Components', + UnitPrice: '62.99248866876237' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-03-16T00:00:00', + Value: '32.470836971174386', + NumberOfUnits: '208' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '58.4988099795295' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2011-03-21T00:00:00', + Value: '50.8492368044561', + NumberOfUnits: '155' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '82.3833047795963' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2011-03-23T00:00:00', + Value: '33.369716877755579', + NumberOfUnits: '381' + }, + { + Product: { + Name: 'Components', + UnitPrice: '19.168732231095774' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Tokyo' + }, + Date: '2011-04-12T00:00:00', + Value: '75.166610896199288', + NumberOfUnits: '5' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '53.516463960295759' + }, + Seller: { + Name: 'Walter Pang', + City: 'London' + }, + Date: '2011-04-12T00:00:00', + Value: '14.533374232488395', + NumberOfUnits: '221' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '97.407401445045792' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Sofia' + }, + Date: '2011-04-14T00:00:00', + Value: '84.691367803463407', + NumberOfUnits: '39' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '74.054133600580556' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2011-04-16T00:00:00', + Value: '51.295898599222255', + NumberOfUnits: '468' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.1049134061229022' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Seattle' + }, + Date: '2011-04-17T00:00:00', + Value: '0.70214751209232373', + NumberOfUnits: '44' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '59.055603649027468' + }, + Seller: { + Name: 'John Smith', + City: 'Mellvile' + }, + Date: '2011-04-22T00:00:00', + Value: '47.532910968890839', + NumberOfUnits: '287' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.816727750383663' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2011-04-24T00:00:00', + Value: '78.545733857222714', + NumberOfUnits: '463' + }, + { + Product: { + Name: 'Components', + UnitPrice: '76.712912356812936' + }, + Seller: { + Name: 'Walter Pang', + City: 'Seattle' + }, + Date: '2011-04-24T00:00:00', + Value: '62.920035218317082', + NumberOfUnits: '335' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '73.424536862142631' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2011-04-24T00:00:00', + Value: '30.569536113445434', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Components', + UnitPrice: '66.398487550392034' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-05-03T00:00:00', + Value: '87.37479121767673', + NumberOfUnits: '291' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.014730059082964' + }, + Seller: { + Name: 'John Smith', + City: 'Sofia' + }, + Date: '2011-05-05T00:00:00', + Value: '40.137041145999468', + NumberOfUnits: '1' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '21.30724839927035' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Seattle' + }, + Date: '2011-05-06T00:00:00', + Value: '46.005596521313116', + NumberOfUnits: '120' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '19.893941804717269' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2011-05-06T00:00:00', + Value: '72.609930798695387', + NumberOfUnits: '382' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '16.486758420470522' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2011-05-07T00:00:00', + Value: '7.763772973680763', + NumberOfUnits: '63' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '41.660496658487475' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2011-05-12T00:00:00', + Value: '94.318148397988708', + NumberOfUnits: '230' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.9773660045943062' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Tokyo' + }, + Date: '2011-05-13T00:00:00', + Value: '30.891342056398909', + NumberOfUnits: '362' + }, + { + Product: { + Name: 'Components', + UnitPrice: '10.7490869289027' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2011-05-17T00:00:00', + Value: '59.668867131540956', + NumberOfUnits: '430' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '66.047576147153777' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2011-05-23T00:00:00', + Value: '91.139627616451875', + NumberOfUnits: '204' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '60.848456370108039' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2011-05-24T00:00:00', + Value: '86.097605566539613', + NumberOfUnits: '118' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '68.7086188088677' + }, + Seller: { + Name: 'Walter Pang', + City: 'Sofia' + }, + Date: '2011-06-01T00:00:00', + Value: '14.562893060298121', + NumberOfUnits: '17' + }, + { + Product: { + Name: 'Components', + UnitPrice: '40.680891247783265' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2011-06-03T00:00:00', + Value: '9.0439965990576887', + NumberOfUnits: '312' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.900314277457227' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Seattle' + }, + Date: '2011-06-12T00:00:00', + Value: '95.038356676249933', + NumberOfUnits: '283' + }, + { + Product: { + Name: 'Components', + UnitPrice: '67.031210179920876' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-06-13T00:00:00', + Value: '27.587484674336149', + NumberOfUnits: '460' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.092374324375939' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'New York' + }, + Date: '2011-06-14T00:00:00', + Value: '66.230523523981915', + NumberOfUnits: '295' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '28.048040265239791' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2011-06-15T00:00:00', + Value: '50.504170614529478', + NumberOfUnits: '49' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '7.3837493580690348' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Tokyo' + }, + Date: '2011-06-24T00:00:00', + Value: '7.8716053664086409', + NumberOfUnits: '127' + }, + { + Product: { + Name: 'Components', + UnitPrice: '39.219759003827235' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2011-06-27T00:00:00', + Value: '98.71029462605263', + NumberOfUnits: '244' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '53.418671131794646' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Tokyo' + }, + Date: '2011-07-01T00:00:00', + Value: '11.231885622829145', + NumberOfUnits: '188' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '25.523898576164573' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-07-06T00:00:00', + Value: '56.126590052678523', + NumberOfUnits: '458' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.257199169256353' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2011-07-08T00:00:00', + Value: '82.339177505271124', + NumberOfUnits: '448' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '7.6365943567997752' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2011-07-27T00:00:00', + Value: '30.461937203287114', + NumberOfUnits: '226' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.512323069159091' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2011-08-01T00:00:00', + Value: '69.618271463372878', + NumberOfUnits: '474' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '37.596370343862276' + }, + Seller: { + Name: 'David Haley', + City: 'Sofia' + }, + Date: '2011-08-02T00:00:00', + Value: '62.767845142058952', + NumberOfUnits: '338' + }, + { + Product: { + Name: 'Components', + UnitPrice: '99.364743102046077' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2011-08-02T00:00:00', + Value: '75.243962125500659', + NumberOfUnits: '88' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.232945669550887' + }, + Seller: { + Name: 'Carl Costello', + City: 'Berlin' + }, + Date: '2011-08-04T00:00:00', + Value: '86.276501736732442', + NumberOfUnits: '436' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '34.253647892854012' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2011-08-06T00:00:00', + Value: '9.2189299451275417', + NumberOfUnits: '297' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '46.885990699234412' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2011-08-07T00:00:00', + Value: '5.0874681701359652', + NumberOfUnits: '240' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '26.369197352961265' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Sofia' + }, + Date: '2011-08-07T00:00:00', + Value: '80.241307141371678', + NumberOfUnits: '415' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '49.072841112070179' + }, + Seller: { + Name: 'David Haley', + City: 'Mellvile' + }, + Date: '2011-08-08T00:00:00', + Value: '61.200517444499084', + NumberOfUnits: '435' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '95.058612569728211' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Berlin' + }, + Date: '2011-08-16T00:00:00', + Value: '73.751322260942', + NumberOfUnits: '64' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '74.181983375075262' + }, + Seller: { + Name: 'John Smith', + City: 'Seattle' + }, + Date: '2011-08-23T00:00:00', + Value: '40.736002680256966', + NumberOfUnits: '21' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '82.506200011124' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2011-08-25T00:00:00', + Value: '54.907956605268623', + NumberOfUnits: '467' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '42.773367531026416' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2011-09-02T00:00:00', + Value: '28.230239091548249', + NumberOfUnits: '98' + }, + { + Product: { + Name: 'Components', + UnitPrice: '83.472341757022008' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2011-09-04T00:00:00', + Value: '72.482020534799446', + NumberOfUnits: '370' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '41.552912276961337' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2011-09-05T00:00:00', + Value: '80.9870070223636', + NumberOfUnits: '94' + }, + { + Product: { + Name: 'Components', + UnitPrice: '74.118408409002427' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2011-09-09T00:00:00', + Value: '94.847531102061055', + NumberOfUnits: '106' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '75.404483999779671' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Sofia' + }, + Date: '2011-09-11T00:00:00', + Value: '9.8866479051702889', + NumberOfUnits: '261' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '10.227189357498283' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2011-09-17T00:00:00', + Value: '29.3933310217193', + NumberOfUnits: '307' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.929749578670481' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2011-09-17T00:00:00', + Value: '56.902403923171761', + NumberOfUnits: '362' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '85.133693080923379' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Tokyo' + }, + Date: '2011-09-24T00:00:00', + Value: '23.863435408036892', + NumberOfUnits: '330' + }, + { + Product: { + Name: 'Components', + UnitPrice: '77.595880943162314' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2011-09-26T00:00:00', + Value: '91.821283424189915', + NumberOfUnits: '23' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.362954591569931' + }, + Seller: { + Name: 'David Haley', + City: 'Berlin' + }, + Date: '2011-09-27T00:00:00', + Value: '66.76641896682159', + NumberOfUnits: '392' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '32.290426563606793' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2011-10-13T00:00:00', + Value: '81.508681122916144', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '62.986913725262006' + }, + Seller: { + Name: 'Lydia Burson', + City: 'New York' + }, + Date: '2011-10-13T00:00:00', + Value: '30.91040301644728', + NumberOfUnits: '100' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '13.441150036380231' + }, + Seller: { + Name: 'Carl Costello', + City: 'Berlin' + }, + Date: '2011-10-22T00:00:00', + Value: '85.46632834964727', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '0.36166957596394683' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2011-10-22T00:00:00', + Value: '74.401750589907991', + NumberOfUnits: '22' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '66.237839621602475' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2011-11-02T00:00:00', + Value: '88.135134283516152', + NumberOfUnits: '96' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.146415294216204' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Berlin' + }, + Date: '2011-11-03T00:00:00', + Value: '31.431514877561256', + NumberOfUnits: '76' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.8830748274378' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2011-11-04T00:00:00', + Value: '91.074618506745722', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '6.5537001036823268' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Berlin' + }, + Date: '2011-11-08T00:00:00', + Value: '51.458535926164373', + NumberOfUnits: '49' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.5539850124875' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2011-11-12T00:00:00', + Value: '20.849885521852357', + NumberOfUnits: '197' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '59.927390962805319' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Tokyo' + }, + Date: '2011-11-12T00:00:00', + Value: '70.322697409578922', + NumberOfUnits: '484' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.355707039756567' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Tokyo' + }, + Date: '2011-11-13T00:00:00', + Value: '14.268465300215624', + NumberOfUnits: '182' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '51.975681005034446' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2011-11-15T00:00:00', + Value: '18.371498919265111', + NumberOfUnits: '42' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '66.674518802517341' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'New York' + }, + Date: '2011-11-19T00:00:00', + Value: '52.755486291253696', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '56.137722244550346' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Mellvile' + }, + Date: '2011-11-23T00:00:00', + Value: '40.171580035319352', + NumberOfUnits: '310' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '93.530705568162119' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2012-01-03T00:00:00', + Value: '53.305936117333331', + NumberOfUnits: '306' + }, + { + Product: { + Name: 'Components', + UnitPrice: '9.5339146487107111' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2012-01-06T00:00:00', + Value: '82.952573375288665', + NumberOfUnits: '290' + }, + { + Product: { + Name: 'Components', + UnitPrice: '41.1171674454199' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Tokyo' + }, + Date: '2012-01-10T00:00:00', + Value: '29.765262841137712', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '9.7998786297626239' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Berlin' + }, + Date: '2012-01-11T00:00:00', + Value: '10.743231471042721', + NumberOfUnits: '7' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.580562228607278' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2012-01-14T00:00:00', + Value: '34.949488535034234', + NumberOfUnits: '220' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.282745012679484' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2012-01-15T00:00:00', + Value: '50.185166276146262', + NumberOfUnits: '395' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '14.609382960297811' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2012-01-18T00:00:00', + Value: '99.998364085330792', + NumberOfUnits: '219' + }, + { + Product: { + Name: 'Components', + UnitPrice: '10.681285248455259' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2012-01-18T00:00:00', + Value: '91.928496859934413', + NumberOfUnits: '229' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.914608125069464' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2012-01-22T00:00:00', + Value: '55.807345246806442', + NumberOfUnits: '111' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '47.909127244683511' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2012-02-01T00:00:00', + Value: '20.473314877819881', + NumberOfUnits: '237' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '87.815776368517334' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Berlin' + }, + Date: '2012-02-13T00:00:00', + Value: '17.170676690140123', + NumberOfUnits: '114' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '55.404070883711832' + }, + Seller: { + Name: 'Bryan Culver', + City: 'London' + }, + Date: '2012-02-23T00:00:00', + Value: '76.743488422009847', + NumberOfUnits: '329' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '40.75572231819654' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2012-02-24T00:00:00', + Value: '1.1660674592322051', + NumberOfUnits: '135' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '57.827554530383807' + }, + Seller: { + Name: 'Harold Garvin', + City: 'New York' + }, + Date: '2012-03-02T00:00:00', + Value: '46.816691358954039', + NumberOfUnits: '187' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.764199040254672' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2012-03-10T00:00:00', + Value: '17.629321207119766', + NumberOfUnits: '286' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '12.991917372211775' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2012-03-11T00:00:00', + Value: '18.210936299623427', + NumberOfUnits: '468' + }, + { + Product: { + Name: 'Components', + UnitPrice: '26.013292989699771' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Tokyo' + }, + Date: '2012-03-18T00:00:00', + Value: '93.230797952614168', + NumberOfUnits: '71' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.623922989062933' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Mellvile' + }, + Date: '2012-03-21T00:00:00', + Value: '61.974642454634719', + NumberOfUnits: '251' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '44.430002777106132' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Berlin' + }, + Date: '2012-03-25T00:00:00', + Value: '57.137854004808631', + NumberOfUnits: '297' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '68.192056365400575' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Berlin' + }, + Date: '2012-03-25T00:00:00', + Value: '4.1927576550248808', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.301038918691241' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2012-03-26T00:00:00', + Value: '45.234568391570157', + NumberOfUnits: '488' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '41.07974113015446' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Sofia' + }, + Date: '2012-04-06T00:00:00', + Value: '59.4756415856423', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Components', + UnitPrice: '29.287349586043206' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2012-04-14T00:00:00', + Value: '3.1218397911274058', + NumberOfUnits: '149' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '51.960718329977574' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Berlin' + }, + Date: '2012-04-14T00:00:00', + Value: '9.8109557804702572', + NumberOfUnits: '99' + }, + { + Product: { + Name: 'Components', + UnitPrice: '57.838875082246432' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Seattle' + }, + Date: '2012-04-16T00:00:00', + Value: '14.041336026993271', + NumberOfUnits: '225' + }, + { + Product: { + Name: 'Components', + UnitPrice: '25.879090337957759' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2012-04-27T00:00:00', + Value: '95.393374001324815', + NumberOfUnits: '408' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.9307178263229865' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Sofia' + }, + Date: '2012-05-09T00:00:00', + Value: '40.24019778717318', + NumberOfUnits: '417' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '3.0351963839657587' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2012-05-24T00:00:00', + Value: '67.743256719663393', + NumberOfUnits: '221' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '57.525798798317929' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2012-06-02T00:00:00', + Value: '45.347840592892766', + NumberOfUnits: '288' + }, + { + Product: { + Name: 'Components', + UnitPrice: '72.260475471737081' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Berlin' + }, + Date: '2012-06-03T00:00:00', + Value: '92.767570816337866', + NumberOfUnits: '372' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '82.533464665773067' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Seattle' + }, + Date: '2012-06-03T00:00:00', + Value: '51.32937051883404', + NumberOfUnits: '408' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '91.596571026182076' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2012-06-04T00:00:00', + Value: '28.526107281691441', + NumberOfUnits: '13' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.668206756314362' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2012-06-05T00:00:00', + Value: '31.552386019170463', + NumberOfUnits: '487' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.269657903476457' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Sofia' + }, + Date: '2012-06-11T00:00:00', + Value: '85.914963570383833', + NumberOfUnits: '276' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '18.243998018207026' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'New York' + }, + Date: '2012-06-16T00:00:00', + Value: '40.241414001323939', + NumberOfUnits: '490' + }, + { + Product: { + Name: 'Components', + UnitPrice: '48.753350437038272' + }, + Seller: { + Name: 'Harold Garvin', + City: 'London' + }, + Date: '2012-06-18T00:00:00', + Value: '55.616326516315496', + NumberOfUnits: '238' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.427641199169514' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2012-06-23T00:00:00', + Value: '91.982604512936717', + NumberOfUnits: '170' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '48.675857367308744' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Mellvile' + }, + Date: '2012-07-04T00:00:00', + Value: '72.766442491098516', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '82.68037088340165' + }, + Seller: { + Name: 'Mark Slater', + City: 'Mellvile' + }, + Date: '2012-07-05T00:00:00', + Value: '56.774197684961457', + NumberOfUnits: '443' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '38.192183821551588' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'New York' + }, + Date: '2012-07-05T00:00:00', + Value: '27.482847276834232', + NumberOfUnits: '368' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '24.194019718186009' + }, + Seller: { + Name: 'Harold Garvin', + City: 'New York' + }, + Date: '2012-07-11T00:00:00', + Value: '38.517737592811571', + NumberOfUnits: '39' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '3.9898014180314729' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Tokyo' + }, + Date: '2012-07-13T00:00:00', + Value: '43.237088873627172', + NumberOfUnits: '95' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '81.770755481799483' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Berlin' + }, + Date: '2012-07-14T00:00:00', + Value: '42.55512666076195', + NumberOfUnits: '42' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '74.867355951511939' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2012-07-16T00:00:00', + Value: '61.42802050403693', + NumberOfUnits: '200' + }, + { + Product: { + Name: 'Components', + UnitPrice: '85.467303630647862' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2012-07-16T00:00:00', + Value: '10.45830762500796', + NumberOfUnits: '221' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '96.415402692004761' + }, + Seller: { + Name: 'Larry Lieb', + City: 'New York' + }, + Date: '2012-07-21T00:00:00', + Value: '99.639215692709769', + NumberOfUnits: '54' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.199419370945272' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2012-07-21T00:00:00', + Value: '55.958572614918737', + NumberOfUnits: '173' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '99.843983026148749' + }, + Seller: { + Name: 'Lydia Burson', + City: 'London' + }, + Date: '2012-07-23T00:00:00', + Value: '10.833150712229847', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '42.35462483128282' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Mellvile' + }, + Date: '2012-07-26T00:00:00', + Value: '91.545096361797818', + NumberOfUnits: '173' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '52.198385052475324' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Mellvile' + }, + Date: '2012-08-05T00:00:00', + Value: '98.8178437570193', + NumberOfUnits: '323' + }, + { + Product: { + Name: 'Components', + UnitPrice: '45.456700048156407' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2012-08-07T00:00:00', + Value: '26.029428060180244', + NumberOfUnits: '264' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '56.771143552274971' + }, + Seller: { + Name: 'Mark Slater', + City: 'Sofia' + }, + Date: '2012-08-09T00:00:00', + Value: '11.488629929483231', + NumberOfUnits: '385' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '3.5650837251753935' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2012-08-10T00:00:00', + Value: '25.95193755158779', + NumberOfUnits: '56' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '34.601844071690849' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2012-08-12T00:00:00', + Value: '96.15096314630982', + NumberOfUnits: '267' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '92.402922963911166' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2012-08-14T00:00:00', + Value: '94.912259883672121', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '34.719441707581019' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2012-08-17T00:00:00', + Value: '62.383219023413595', + NumberOfUnits: '478' + }, + { + Product: { + Name: 'Components', + UnitPrice: '23.335559257928075' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Berlin' + }, + Date: '2012-08-21T00:00:00', + Value: '57.657432163906023', + NumberOfUnits: '184' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '79.522237963751991' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2012-08-21T00:00:00', + Value: '35.349668718571621', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Components', + UnitPrice: '30.645626285414036' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2012-08-22T00:00:00', + Value: '95.940469715716532', + NumberOfUnits: '142' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '89.887765138357764' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2012-08-27T00:00:00', + Value: '27.453476901842972', + NumberOfUnits: '46' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '83.189849035437149' + }, + Seller: { + Name: 'Walter Pang', + City: 'Seattle' + }, + Date: '2012-09-03T00:00:00', + Value: '68.605291316567588', + NumberOfUnits: '102' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '0.10354146366172538' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Berlin' + }, + Date: '2012-09-09T00:00:00', + Value: '96.593755668305676', + NumberOfUnits: '21' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '36.629343143026041' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2012-09-10T00:00:00', + Value: '4.9306348920476788', + NumberOfUnits: '442' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '92.3085672279394' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2012-09-13T00:00:00', + Value: '99.215311091027843', + NumberOfUnits: '254' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '28.009415291254136' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2012-09-13T00:00:00', + Value: '49.9100303509785', + NumberOfUnits: '251' + }, + { + Product: { + Name: 'Components', + UnitPrice: '60.30177895925091' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2012-09-15T00:00:00', + Value: '43.926440898294764', + NumberOfUnits: '119' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '33.007745320446666' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2012-09-19T00:00:00', + Value: '32.426872864564352', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Components', + UnitPrice: '99.002955760342516' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2012-09-23T00:00:00', + Value: '35.80295570930604', + NumberOfUnits: '456' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.174323817796225' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'London' + }, + Date: '2012-10-01T00:00:00', + Value: '16.358145333993317', + NumberOfUnits: '430' + }, + { + Product: { + Name: 'Components', + UnitPrice: '72.899271488608449' + }, + Seller: { + Name: 'David Haley', + City: 'Berlin' + }, + Date: '2012-10-02T00:00:00', + Value: '57.0288074934058', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.662706984981291' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2012-10-18T00:00:00', + Value: '28.238128790742778', + NumberOfUnits: '440' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '28.342247115607488' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'New York' + }, + Date: '2012-10-19T00:00:00', + Value: '66.64152637433331', + NumberOfUnits: '234' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '80.468710223431088' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'New York' + }, + Date: '2012-10-25T00:00:00', + Value: '5.2594607254767141', + NumberOfUnits: '36' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '97.686087618435764' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2012-10-26T00:00:00', + Value: '41.233811686389991', + NumberOfUnits: '46' + }, + { + Product: { + Name: 'Components', + UnitPrice: '88.700193301169293' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'London' + }, + Date: '2012-11-02T00:00:00', + Value: '64.566657210032758', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '67.261227205051682' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2012-11-17T00:00:00', + Value: '14.189396572387498', + NumberOfUnits: '408' + }, + { + Product: { + Name: 'Components', + UnitPrice: '7.1456905022010631' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2012-11-20T00:00:00', + Value: '72.779385965680419', + NumberOfUnits: '376' } ]; From b8769dd54697baeb5ece3857dc4f7850b1a0a4ca Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Wed, 10 Jun 2026 15:55:42 +0300 Subject: [PATCH 08/14] fix(cli): add tree, hierarchical, and pivot grid components for wc --- .../IgniteUIForWebComponentsTemplate.ts | 5 +- .../files/src/app/__path__/__filePrefix__.ts | 90 +- .../src/app/__path__/__filePrefix__.test.ts | 9 + .../files/src/app/__path__/__filePrefix__.ts | 100 + .../basic/files/src/app/__path__/data.ts | 1038 +++ .../igc-ts/hierarchical-grid/basic/index.ts | 16 + .../igc-ts/hierarchical-grid/index.ts | 11 + .../src/app/__path__/__filePrefix__.test.ts | 9 + .../files/src/app/__path__/__filePrefix__.ts | 113 + .../basic/files/src/app/__path__/data.ts | 6502 +++++++++++++++++ .../igc-ts/pivot-grid/basic/index.ts | 16 + .../webcomponents/igc-ts/pivot-grid/index.ts | 11 + .../igc-ts/projects/_base/files/index.html | 1 + .../projects/_base_with_home/files/index.html | 1 + .../projects/side-nav-auth/files/index.html | 1 + .../side-nav-auth/files/src/app/app.ts | 8 +- .../side-nav-mini-auth/files/src/app/app.ts | 9 +- .../side-nav-mini/files/src/app/app.ts | 9 +- .../projects/side-nav/files/src/app/app.ts | 9 +- .../src/app/__path__/__filePrefix__.test.ts | 9 + .../files/src/app/__path__/__filePrefix__.ts | 87 + .../basic/files/src/app/__path__/data.ts | 155 + .../igc-ts/tree-grid/basic/index.ts | 16 + .../webcomponents/igc-ts/tree-grid/index.ts | 11 + 24 files changed, 8204 insertions(+), 32 deletions(-) create mode 100644 packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/index.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/data.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/pivot-grid/index.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/data.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts create mode 100644 packages/cli/templates/webcomponents/igc-ts/tree-grid/index.ts diff --git a/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts b/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts index 241bef587..eb8a7bd20 100644 --- a/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts +++ b/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts @@ -53,6 +53,7 @@ export class IgniteUIForWebComponentsTemplate implements Template { App.container.get(FS_TOKEN).fileExists(routeModulePath) ) { const modulePath = `./${Util.lowerDashed(fullName)}/${Util.lowerDashed(fullName)}-routing` + const componentTag = `app-${this.fileName(fullName)}`; const child: RouteLike = { identifierName: ROUTES_VARIABLE_NAME, aliasName: options.routerChildren, @@ -61,7 +62,7 @@ export class IgniteUIForWebComponentsTemplate implements Template { if (defaultPath) { routingModule.addRoute({ path: "", - redirectTo: options.selector, + redirectTo: componentTag, name: Util.nameFromPath(fullName) } ); @@ -72,7 +73,7 @@ export class IgniteUIForWebComponentsTemplate implements Template { routingModule.addRoute({ path: this.fileName(fullName), - identifierName: options.selector, + identifierName: componentTag, name: Util.nameFromPath(fullName) }, false // multiline diff --git a/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts b/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts index e3bf9188d..438888f76 100644 --- a/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts +++ b/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts @@ -10,15 +10,43 @@ IgcGridComponent.register(); export default class $(ClassName) extends LitElement { static styles = css` :host { - height: 100%; - margin: 0px; - padding-right: 20px; - width: calc(100% - 600px); + display: block; + width: 100%; } - igc-grid img { - object-fit: contain; - height: 100%; + + .page { width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; + } + + .title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 0; + margin-bottom: 0; + } + + .subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; + } + + .subtitle a { + color: rgb(0, 153, 255); + } + + .grid-wrapper { + width: 100%; + max-width: 1200px; } `; @@ -53,24 +81,42 @@ export default class $(ClassName) extends LitElement { { fieldName: 'status', dir: SortingDirection.Desc }, ]; + private flagTemplate = ({ cell }: any) => html` + + `; + render() { return html` - - - - - - - - - - +
+

$(name)

+

+ IgcGrid component with auto generated columns and local data.
+ You can read more about configuring the IgcGrid component in the + + official documentation + . +

+
+ + + + + + + + + + +
+
`; } } diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.ts new file mode 100644 index 000000000..004c11844 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.test.ts @@ -0,0 +1,9 @@ +import { describe, it, expect } from 'vitest'; +import $(ClassName) from './$(path).js'; + +describe('IgcHierarchicalGridComponent', () => { + it(' is an instance of $(ClassName)', async () => { + const element = document.createElement('app-$(path)'); + expect(element).to.be.instanceOf($(ClassName)); + }); +}); diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.ts new file mode 100644 index 000000000..cafece423 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/__filePrefix__.ts @@ -0,0 +1,100 @@ +import { html, css, LitElement } from 'lit'; +import { customElement, state } from 'lit/decorators.js'; +import { IgcHierarchicalGridComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids'; +import { ARTISTS, type Artist } from './data.js'; + +import gridTheme from 'igniteui-webcomponents-grids/grids/themes/light/material.css?inline'; + +IgcHierarchicalGridComponent.register(); +IgcRowIslandComponent.register(); + +@customElement('app-$(path)') +export default class $(ClassName) extends LitElement { + static styles = css` + :host { + display: block; + width: 100%; + } + + .page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; + } + + .title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 0; + margin-bottom: 0; + } + + .subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; + } + + .subtitle a { + color: rgb(0, 153, 255); + } + + .grid-wrapper { + width: 100%; + max-width: 1200px; + } + `; + + @state() + data: Artist[] = ARTISTS; + + render() { + return html` + +
+

$(name)

+

+ IgcHierarchicalGrid with basic configuration.
+ You can read more about configuring the IgcHierarchicalGrid component in the + + official documentation + . +

+
+ + + + + + + + + + + + + + + + + + + +
+
+ `; + } +} diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts new file mode 100644 index 000000000..300fa1f90 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts @@ -0,0 +1,1038 @@ +export interface Artist { + Artist: string; + HasGrammyAward: boolean; + Debut: number; + GrammyNominations: number; + GrammyAwards: number; + Albums?: Album[]; +} + +export interface Album { + Album: string; + LaunchDate: Date; + BillboardReview: number; + USBillboard200: number; + Artist: string; + Songs?: Song[]; +} + +export interface Song { + TrackNumber: string; + Title: string; + Released: string; + Genre: string; + Album: string; +} + +export const ARTISTS: Artist[] = [ + { + Artist: "Naomí Yepes", + HasGrammyAward: false, + Debut: 2011, + GrammyNominations: 6, + GrammyAwards: 0, + Albums: [ + { + Album: "Initiation", + LaunchDate: new Date("September 3, 2013"), + BillboardReview: 86, + USBillboard200: 1, + Artist: "Naomí Yepes" + }, + { + Album: "Dream Driven", + LaunchDate: new Date("August 25, 2014"), + BillboardReview: 81, + USBillboard200: 1, + Artist: "Naomí Yepes", + Songs: [ + { + TrackNumber: "1", + Title: "Intro", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "2", + Title: "Ferocious", + Released: "28-Apr-2014", + Genre: "Dance-pop R&B", + Album: "Dream Driven" + }, + { + TrackNumber: "3", + Title: "Going crazy", + Released: "10-Feb-2015", + Genre: "Dance-pop EDM", + Album: "Dream Driven" + }, + { + TrackNumber: "4", + Title: "Future past", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "5", + Title: "Roaming like them", + Released: "2-Jul-2014", + Genre: "Electro house Electropop", + Album: "Dream Driven" + }, + { + TrackNumber: "6", + Title: "Last Wishes", + Released: "12-Aug-2014", + Genre: "R&B", + Album: "Dream Driven" + }, + { + TrackNumber: "7", + Title: "Stay where you are", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "8", + Title: "Imaginarium", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "9", + Title: "Tell me", + Released: "30-Sep-2014", + Genre: "Synth-pop R&B", + Album: "Dream Driven" + }, + { + TrackNumber: "10", + Title: "Shredded into pieces", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "11", + Title: "Capture this moment", + Released: "*", + Genre: "*", + Album: "Dream Driven" + }, + { + TrackNumber: "12", + Title: "Dream Driven", + Released: "*", + Genre: "*", + Album: "Dream Driven" + } + ] + }, + { + Album: "The dragon journey", + LaunchDate: new Date("May 20, 2016"), + BillboardReview: 60, + USBillboard200: 2, + Artist: "Naomí Yepes" + }, + { + Album: "Organic me", + LaunchDate: new Date("August 17, 2018"), + BillboardReview: 82, + USBillboard200: 1, + Artist: "Naomí Yepes", + Songs: [ + { + TrackNumber: "1", + Title: "I Love", + Released: "11-May-2019", + Genre: "Crunk reggaeton", + Album: "Organic me" + }, + { + TrackNumber: "2", + Title: "Early Morning Compass", + Released: "15-Jan-2020", + Genre: "mystical parody-bap ", + Album: "Organic me" + }, + { + TrackNumber: "3", + Title: "Key Fields Forever", + Released: "2-Jan-2020", + Genre: "Dance-pop EDM", + Album: "Organic me" + }, + { + TrackNumber: "4", + Title: "Stand by Your Goblins", + Released: "20-Nov-2019", + Genre: "*", + Album: "Organic me" + }, + { + TrackNumber: "5", + Title: "Mad to Walk", + Released: "12-May-2019", + Genre: "Electro house Electropop", + Album: "Organic me" + }, + { + TrackNumber: "6", + Title: "Alice's Waiting", + Released: "28-Jan-2020", + Genre: "R&B", + Album: "Organic me" + }, + { + TrackNumber: "7", + Title: "We Shall Kiss", + Released: "30-Oct-2019", + Genre: "*", + Album: "Organic me" + }, + { + TrackNumber: "8", + Title: "Behind Single Ants", + Released: "2-Oct-2019", + Genre: "*", + Album: "Organic me" + }, + { + TrackNumber: "9", + Title: "Soap Autopsy", + Released: "8-Aug-2019", + Genre: "Synth-pop R&B", + Album: "Organic me" + }, + { + TrackNumber: "10", + Title: "Have You Met Rich?", + Released: "1-Jul-2019", + Genre: "ethno-tunes", + Album: "Organic me" + }, + { + TrackNumber: "11", + Title: "Livin' on a Banana", + Released: "22-Nov-2019", + Genre: "Crunk reggaeton", + Album: "Organic me" + } + ] + }, + { + Album: "Curiosity", + LaunchDate: new Date("December 7, 2019"), + BillboardReview: 75, + USBillboard200: 12, + Artist: "Naomí Yepes" + } + ] + }, + { + Artist: "Babila Ebwélé", + HasGrammyAward: true, + Debut: 2009, + GrammyNominations: 0, + GrammyAwards: 11, + Albums: [ + { + Album: "Pushing up daisies", + LaunchDate: new Date("May 31, 2000"), + BillboardReview: 86, + USBillboard200: 42, + Artist: "Babila Ebwélé", + Songs: [ + { + TrackNumber: "1", + Title: "Wood Shavings Forever", + Released: "9-Jun-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "2", + Title: "Early Morning Drive", + Released: "20-May-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "3", + Title: "Don't Natter", + Released: "10-Jun-2019", + Genre: "adult calypso-industrial", + Album: "Pushing up daisies" + }, + { + TrackNumber: "4", + Title: "Stairway to Balloons", + Released: "18-Jun-2019", + Genre: "calypso and mariachi", + Album: "Pushing up daisies" + }, + { + TrackNumber: "5", + Title: "The Number of your Apple", + Released: "29-Oct-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "6", + Title: "Your Delightful Heart", + Released: "24-Feb-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "7", + Title: "Nice Weather For Balloons", + Released: "1-Aug-2019", + Genre: "rap-hop", + Album: "Pushing up daisies" + }, + { + TrackNumber: "8", + Title: "The Girl From Cornwall", + Released: "4-May-2019", + Genre: "enigmatic rock-and-roll", + Album: "Pushing up daisies" + }, + { + TrackNumber: "9", + Title: "Here Without Jack", + Released: "24-Oct-2019", + Genre: "*", + Album: "Pushing up daisies" + }, + { + TrackNumber: "10", + Title: "Born Rancid", + Released: "19-Mar-2019", + Genre: "*", + Album: "Pushing up daisies" + } + ] + }, + { + Album: "Death's dead", + LaunchDate: new Date("June 8, 2016"), + BillboardReview: 85, + USBillboard200: 95, + Artist: "Babila Ebwélé", + Songs: [ + { + TrackNumber: "1", + Title: "Men Sound Better With You", + Released: "20-Oct-2019", + Genre: "rap-hop", + Album: "Death's dead" + }, + { + TrackNumber: "2", + Title: "Ghost in My Rod", + Released: "5-Oct-2019", + Genre: "enigmatic rock-and-roll", + Album: "Death's dead" + }, + { + TrackNumber: "3", + Title: "Bed of Men", + Released: "14-Nov-2019", + Genre: "whimsical comedy-grass ", + Album: "Death's dead" + }, + { + TrackNumber: "4", + Title: "Don't Push", + Released: "2-Jan-2020", + Genre: "unblack electronic-trip-hop", + Album: "Death's dead" + }, + { + TrackNumber: "5", + Title: "Nice Weather For Men", + Released: "18-Dec-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "6", + Title: "Rancid Rhapsody", + Released: "10-Mar-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "7", + Title: "Push, Push, Push!", + Released: "21-Feb-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "8", + Title: "My Name is Sarah", + Released: "15-Nov-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "9", + Title: "The Girl From My Hotel", + Released: "6-Nov-2019", + Genre: "*", + Album: "Death's dead" + }, + { + TrackNumber: "10", + Title: "Free Box", + Released: "18-Apr-2019", + Genre: "splitter-funk", + Album: "Death's dead" + }, + { + TrackNumber: "11", + Title: "Hotel Cardiff", + Released: "30-Dec-2019", + Genre: "guilty pleasure ebm", + Album: "Death's dead" + } + ] + } + ] + }, + { + Artist: "Ahmad Nazeri", + HasGrammyAward: true, + Debut: 2004, + GrammyNominations: 3, + GrammyAwards: 1, + Albums: [ + { + Album: "Emergency", + LaunchDate: new Date("March 6, 2004"), + BillboardReview: 98, + USBillboard200: 69, + Artist: "Ahmad Nazeri" + }, + { + Album: "Bursting bubbles", + LaunchDate: new Date("April 17, 2006"), + BillboardReview: 69, + USBillboard200: 39, + Artist: "Ahmad Nazeri" + } + ] + }, + { + Artist: "Kimmy McIlmorie", + HasGrammyAward: true, + Debut: 2007, + GrammyNominations: 21, + GrammyAwards: 3, + Albums: [ + { + Album: "Here we go again", + LaunchDate: new Date("November 18, 2017"), + BillboardReview: 68, + USBillboard200: 1, + Artist: "Kimmy McIlmorie" + } + ] + }, + { + Artist: "Mar Rueda", + HasGrammyAward: true, + Debut: 1996, + GrammyNominations: 14, + GrammyAwards: 2 + }, + { + Artist: "Izabella Tabakova", + HasGrammyAward: true, + Debut: 2017, + GrammyNominations: 7, + GrammyAwards: 11, + Albums: [ + { + Album: "Once bitten", + LaunchDate: new Date("July 16, 2007"), + BillboardReview: 79, + USBillboard200: 53, + Artist: "Izabella Tabakova", + Songs: [ + { + TrackNumber: "1", + Title: "Whole Lotta Super Cats", + Released: "21-May-2019", + Genre: "*", + Album: "Once bitten" + }, + { + TrackNumber: "2", + Title: "Enter Becky", + Released: "16-Jan-2020", + Genre: "*", + Album: "Once bitten" + }, + { + TrackNumber: "3", + Title: "Your Cheatin' Flamingo", + Released: "14-Jan-2020", + Genre: "*", + Album: "Once bitten" + }, + { + TrackNumber: "4", + Title: "Mad to Kiss", + Released: "6-Nov-2019", + Genre: "Synth-pop R&B", + Album: "Once bitten" + }, + { + TrackNumber: "5", + Title: "Hotel Prague", + Released: "20-Oct-2019", + Genre: "ethno-tunes", + Album: "Once bitten" + }, + { + TrackNumber: "6", + Title: "Jail on My Mind", + Released: "31-May-2019", + Genre: "Crunk reggaeton", + Album: "Once bitten" + }, + { + TrackNumber: "7", + Title: "Amazing Blues", + Released: "29-May-2019", + Genre: "mystical parody-bap ", + Album: "Once bitten" + }, + { + TrackNumber: "8", + Title: "Goody Two Iron Filings", + Released: "4-Jul-2019", + Genre: "Electro house Electropop", + Album: "Once bitten" + }, + { + TrackNumber: "9", + Title: "I Love in Your Arms", + Released: "7-Jun-2019", + Genre: "R&B", + Album: "Once bitten" + }, + { + TrackNumber: "10", + Title: "Truly Madly Amazing", + Released: "12-Sep-2019", + Genre: "ethno-tunes", + Album: "Once bitten" + } + ] + }, + { + Album: "Your graciousness", + LaunchDate: new Date("November 17, 2004"), + BillboardReview: 69, + USBillboard200: 30, + Artist: "Izabella Tabakova", + Songs: [ + { + TrackNumber: "1", + Title: "We Shall Tickle", + Released: "31-Aug-2019", + Genre: "old emo-garage ", + Album: "Your graciousness" + }, + { + TrackNumber: "2", + Title: "Snail Boogie", + Released: "14-Jun-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "3", + Title: "Amazing Liz", + Released: "15-Oct-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "4", + Title: "When Sexy Aardvarks Cry", + Released: "1-Oct-2019", + Genre: "whimsical comedy-grass ", + Album: "Your graciousness" + }, + { + TrackNumber: "5", + Title: "Stand By Dave", + Released: "18-Aug-2019", + Genre: "unblack electronic-trip-hop", + Album: "Your graciousness" + }, + { + TrackNumber: "6", + Title: "The Golf Course is Your Land", + Released: "2-Apr-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "7", + Title: "Where Have All the Men Gone?", + Released: "29-Apr-2019", + Genre: "*", + Album: "Your graciousness" + }, + { + TrackNumber: "8", + Title: "Rhythm of the Leg", + Released: "5-Aug-2019", + Genre: "ethno-tunes", + Album: "Your graciousness" + }, + { + TrackNumber: "9", + Title: "Baby, I Need Your Hats", + Released: "5-Dec-2019", + Genre: "neuro-tunes", + Album: "Your graciousness" + }, + { + TrackNumber: "10", + Title: "Stand by Your Cat", + Released: "25-Jul-2019", + Genre: "*", + Album: "Your graciousness" + } + ] + }, + { + Album: "Dark matters", + LaunchDate: new Date("November 3, 2002"), + BillboardReview: 79, + USBillboard200: 85, + Artist: "Izabella Tabakova" + } + ] + }, + { + Artist: "Nguyễn Diệp Chi", + HasGrammyAward: true, + Debut: 1992, + GrammyNominations: 4, + GrammyAwards: 2, + Albums: [ + { + Album: "Library of liberty", + LaunchDate: new Date("December 22, 2003"), + BillboardReview: 93, + USBillboard200: 5, + Artist: "Nguyễn Diệp Chi" + } + ] + }, + { + Artist: "Eva Lee", + HasGrammyAward: false, + Debut: 2008, + GrammyNominations: 2, + GrammyAwards: 0, + Albums: [ + { + Album: "Just a tease", + LaunchDate: new Date("May 3, 2001"), + BillboardReview: 91, + USBillboard200: 29, + Artist: "Eva Lee" + } + ] + }, + { + Artist: "Siri Jakobsson", + HasGrammyAward: true, + Debut: 1990, + GrammyNominations: 2, + GrammyAwards: 8, + Albums: [ + { + Album: "Under the bus", + LaunchDate: new Date("May 14, 2000"), + BillboardReview: 67, + USBillboard200: 67, + Artist: "Siri Jakobsson", + Songs: [ + { + TrackNumber: "1", + Title: "Jack Broke My Heart At Tesco's", + Released: "19-Jan-2020", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "2", + Title: "Cat Deep, Hats High", + Released: "5-Dec-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "3", + Title: "In Snail We Trust", + Released: "31-May-2019", + Genre: "hardcore opera", + Album: "Under the bus" + }, + { + TrackNumber: "4", + Title: "Liz's Waiting", + Released: "22-Jul-2019", + Genre: "emotional C-jam ", + Album: "Under the bus" + }, + { + TrackNumber: "5", + Title: "Lifeless Blues", + Released: "14-Jun-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "6", + Title: "I Spin", + Released: "26-Mar-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "7", + Title: "Ring of Rock", + Released: "12-Dec-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "8", + Title: "Livin' on a Rock", + Released: "17-Apr-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "9", + Title: "Your Lifeless Heart", + Released: "15-Sep-2019", + Genre: "adult calypso-industrial", + Album: "Under the bus" + }, + { + TrackNumber: "10", + Title: "The High Street on My Mind", + Released: "11-Nov-2019", + Genre: "calypso and mariachi", + Album: "Under the bus" + }, + { + TrackNumber: "11", + Title: "Behind Ugly Curtains", + Released: "8-May-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "12", + Title: "Where Have All the Curtains Gone?", + Released: "28-Jun-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "13", + Title: "Ghost in My Apple", + Released: "14-Dec-2019", + Genre: "*", + Album: "Under the bus" + }, + { + TrackNumber: "14", + Title: "I Chatter", + Released: "30-Nov-2019", + Genre: "*", + Album: "Under the bus" + } + ] + } + ] + }, + { + Artist: "Pablo Cambeiro", + HasGrammyAward: false, + Debut: 2011, + GrammyNominations: 5, + GrammyAwards: 0, + Albums: [ + { + Album: "Fluke", + LaunchDate: new Date("August 4, 2017"), + BillboardReview: 93, + USBillboard200: 98, + Artist: "Pablo Cambeiro" + }, + { + Album: "Crowd control", + LaunchDate: new Date("August 26, 2003"), + BillboardReview: 68, + USBillboard200: 84, + Artist: "Pablo Cambeiro", + Songs: [ + { + TrackNumber: "1", + Title: "My Bed on My Mind", + Released: "25-Mar-2019", + Genre: "ethno-tunes", + Album: "Crowd control" + }, + { + TrackNumber: "2", + Title: "Bright Blues", + Released: "28-Sep-2019", + Genre: "neuro-tunes", + Album: "Crowd control" + }, + { + TrackNumber: "3", + Title: "Sail, Sail, Sail!", + Released: "5-Mar-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "4", + Title: "Hotel My Bed", + Released: "22-Mar-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "5", + Title: "Gonna Make You Mash", + Released: "18-May-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "6", + Title: "Straight Outta America", + Released: "16-Jan-2020", + Genre: "hardcore opera", + Album: "Crowd control" + }, + { + TrackNumber: "7", + Title: "I Drive", + Released: "23-Feb-2019", + Genre: "emotional C-jam ", + Album: "Crowd control" + }, + { + TrackNumber: "8", + Title: "Like a Teddy", + Released: "31-Aug-2019", + Genre: "*", + Album: "Crowd control" + }, + { + TrackNumber: "9", + Title: "Teddy Boogie", + Released: "30-Nov-2019", + Genre: "*", + Album: "Crowd control" + } + ] + } + ] + }, + { + Artist: "Athar Malakooti", + HasGrammyAward: false, + Debut: 2017, + GrammyNominations: 0, + GrammyAwards: 0, + Albums: [ + { + Album: "Pushing up daisies", + LaunchDate: new Date("February 24, 2016"), + BillboardReview: 74, + USBillboard200: 77, + Artist: "Athar Malakooti" + } + ] + }, + { + Artist: "Marti Valencia", + HasGrammyAward: true, + Debut: 2004, + GrammyNominations: 1, + GrammyAwards: 1, + Albums: [ + { + Album: "Nemesis", + LaunchDate: new Date("June 30, 2004"), + BillboardReview: 94, + USBillboard200: 9, + Artist: "Marti Valencia" + }, + { + Album: "First chance", + LaunchDate: new Date("January 7, 2019"), + BillboardReview: 96, + USBillboard200: 19, + Artist: "Marti Valencia", + Songs: [ + { + TrackNumber: "1", + Title: "My Name is Jason", + Released: "12-Jul-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "2", + Title: "Amazing Andy", + Released: "5-Mar-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "3", + Title: "The Number of your Knight", + Released: "4-Dec-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "4", + Title: "I Sail", + Released: "3-Mar-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "5", + Title: "Goody Two Hands", + Released: "11-Oct-2019", + Genre: "Electro house Electropop", + Album: "First chance" + }, + { + TrackNumber: "6", + Title: "Careful With That Knife", + Released: "18-Dec-2019", + Genre: "R&B", + Album: "First chance" + }, + { + TrackNumber: "7", + Title: "Four Single Ants", + Released: "18-Jan-2020", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "8", + Title: "Kiss Forever", + Released: "10-Aug-2019", + Genre: "*", + Album: "First chance" + }, + { + TrackNumber: "9", + Title: "Rich's Waiting", + Released: "15-Mar-2019", + Genre: "Synth-pop R&B", + Album: "First chance" + }, + { + TrackNumber: "10", + Title: "Japan is Your Land", + Released: "7-Mar-2019", + Genre: "ethno-tunes", + Album: "First chance" + }, + { + TrackNumber: "11", + Title: "Pencils in My Banana", + Released: "21-Jun-2019", + Genre: "Crunk reggaeton", + Album: "First chance" + }, + { + TrackNumber: "12", + Title: "I Sail in Your Arms", + Released: "30-Apr-2019", + Genre: "Synth-pop R&B", + Album: "First chance" + } + ] + }, + { + Album: "God's advocate", + LaunchDate: new Date("April 29, 2007"), + BillboardReview: 66, + USBillboard200: 37, + Artist: "Marti Valencia" + } + ] + }, + { + Artist: "Alicia Stanger", + HasGrammyAward: false, + Debut: 2010, + GrammyNominations: 1, + GrammyAwards: 0, + Albums: [ + { + Album: "Forever alone", + LaunchDate: new Date("November 3, 2005"), + BillboardReview: 82, + USBillboard200: 7, + Artist: "Alicia Stanger" + } + ] + }, + { + Artist: "Peter Taylor", + HasGrammyAward: true, + Debut: 2005, + GrammyNominations: 0, + GrammyAwards: 2, + Albums: [ + { + Album: "Decisions decisions", + LaunchDate: new Date("April 10, 2008"), + BillboardReview: 85, + USBillboard200: 35, + Artist: "Peter Taylor" + }, + { + Album: "Climate changed", + LaunchDate: new Date("June 20, 2015"), + BillboardReview: 66, + USBillboard200: 89, + Artist: "Peter Taylor" + } + ] + } +]; diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts new file mode 100644 index 000000000..51f4a423d --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts @@ -0,0 +1,16 @@ +import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; + +class IgcHierarchicalGridTemplate extends IgniteUIForWebComponentsTemplate { + constructor() { + super(__dirname); + this.components = ["Hierarchical Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "hierarchical-grid"; + this.projectType = "igc-ts"; + this.name = "Hierarchical Grid"; + this.description = "IgcHierarchicalGrid with basic configuration"; + this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; + } +} +module.exports = new IgcHierarchicalGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/index.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/index.ts new file mode 100644 index 000000000..a1a035e4a --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/index.ts @@ -0,0 +1,11 @@ +import { BaseComponent } from "@igniteui/cli-core"; + +class IgcHierarchicalGridComponent extends BaseComponent { + constructor() { + super(__dirname); + this.name = "Hierarchical Grid"; + this.group = "Grids & Lists"; + this.description = "pick from different hierarchical grid views"; + } +} +module.exports = new IgcHierarchicalGridComponent(); diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.ts new file mode 100644 index 000000000..5eae10f3f --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.test.ts @@ -0,0 +1,9 @@ +import { describe, it, expect } from 'vitest'; +import $(ClassName) from './$(path).js'; + +describe('IgcPivotGridComponent', () => { + it(' is an instance of $(ClassName)', async () => { + const element = document.createElement('app-$(path)'); + expect(element).to.be.instanceOf($(ClassName)); + }); +}); diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.ts new file mode 100644 index 000000000..a1033c718 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/__filePrefix__.ts @@ -0,0 +1,113 @@ +import { html, css, LitElement } from 'lit'; +import { customElement, state } from 'lit/decorators.js'; +import { + IgcPivotGridComponent, + type IgcPivotConfiguration +} from 'igniteui-webcomponents-grids'; +import { DATA } from './data.js'; + +import gridTheme from 'igniteui-webcomponents-grids/grids/themes/light/material.css?inline'; + +IgcPivotGridComponent.register(); + +@customElement('app-$(path)') +export default class $(ClassName) extends LitElement { + static styles = css` + :host { + display: block; + width: 100%; + } + + .page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; + } + + .title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 0; + margin-bottom: 0; + } + + .subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; + } + + .subtitle a { + color: rgb(0, 153, 255); + } + + .grid-wrapper { + width: 100%; + max-width: 1200px; + } + `; + + @state() + data: any[] = DATA; + + pivotConfig: IgcPivotConfiguration = { + columns: [ + { + memberName: 'Product', + memberFunction: (data: any) => data.Product.Name, + enabled: true + } + ], + rows: [ + { + memberName: 'Seller', + memberFunction: (data: any) => data.Seller.Name, + enabled: true + } + ], + values: [ + { + member: 'NumberOfUnits', + aggregate: { + aggregatorName: 'SUM' as const, + key: 'sum', + label: 'Sum' + }, + enabled: true + } + ], + filters: null + }; + + render() { + return html` + +
+

$(name)

+

+ Basic IgcPivotGrid component.
+ You can read more about configuring the IgcPivotGrid component in the + + official documentation + . +

+
+ +
+
+ `; + } +} diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/data.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/data.ts new file mode 100644 index 000000000..8fa57cd86 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/data.ts @@ -0,0 +1,6502 @@ +export const DATA: any = [ + { + Product: { + Name: 'Clothing', + UnitPrice: '12.814860936633712' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2007-01-01T00:00:00', + Value: '94.2652032683907', + NumberOfUnits: '282' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '49.579375120615296' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2007-01-05T00:00:00', + Value: '70.798922689072285', + NumberOfUnits: '296' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '3.5653273591610266' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2007-01-06T00:00:00', + Value: '35.799331607203619', + NumberOfUnits: '68' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '85.581758145979492' + }, + Seller: { + Name: 'David Haley', + City: 'London' + }, + Date: '2007-01-07T00:00:00', + Value: '41.411331268684627', + NumberOfUnits: '293' + }, + { + Product: { + Name: 'Components', + UnitPrice: '18.137625846144569' + }, + Seller: { + Name: 'John Smith', + City: 'Seattle' + }, + Date: '2007-01-08T00:00:00', + Value: '60.474313730594851', + NumberOfUnits: '240' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '68.330973139186852' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Tokyo' + }, + Date: '2007-01-12T00:00:00', + Value: '37.920727319047195', + NumberOfUnits: '456' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.056252511244384' + }, + Seller: { + Name: 'Walter Pang', + City: 'Sofia' + }, + Date: '2007-02-09T00:00:00', + Value: '89.1950179306767', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.235206612960994' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Tokyo' + }, + Date: '2007-02-16T00:00:00', + Value: '1.8611075365269125', + NumberOfUnits: '78' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '73.215433663323253' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2007-02-17T00:00:00', + Value: '4.611142726899657', + NumberOfUnits: '150' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '73.614934400476017' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'London' + }, + Date: '2007-02-19T00:00:00', + Value: '36.1731772013815', + NumberOfUnits: '262' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '47.080544683654111' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2007-02-21T00:00:00', + Value: '18.699740766873461', + NumberOfUnits: '125' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '51.298256382019382' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Sofia' + }, + Date: '2007-03-04T00:00:00', + Value: '11.600706917979151', + NumberOfUnits: '42' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '27.466344333936622' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2007-03-04T00:00:00', + Value: '41.252478603856865', + NumberOfUnits: '282' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '22.374118083330856' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2007-03-17T00:00:00', + Value: '59.82648998490837', + NumberOfUnits: '305' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '85.292836504659078' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Tokyo' + }, + Date: '2007-03-23T00:00:00', + Value: '31.430979925874148', + NumberOfUnits: '265' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '80.675564091967217' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2007-03-25T00:00:00', + Value: '90.425077402230855', + NumberOfUnits: '350' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.613919642108456' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Mellvile' + }, + Date: '2007-03-27T00:00:00', + Value: '95.393439147338938', + NumberOfUnits: '82' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.041336636078235' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2007-04-02T00:00:00', + Value: '1.2766330043210803', + NumberOfUnits: '67' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '16.311566166724809' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Mellvile' + }, + Date: '2007-04-04T00:00:00', + Value: '25.354673632120097', + NumberOfUnits: '370' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '49.852171563474542' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Berlin' + }, + Date: '2007-04-12T00:00:00', + Value: '46.315344491189045', + NumberOfUnits: '228' + }, + { + Product: { + Name: 'Components', + UnitPrice: '44.761602042597531' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Tokyo' + }, + Date: '2007-04-15T00:00:00', + Value: '82.180273524569472', + NumberOfUnits: '272' + }, + { + Product: { + Name: 'Components', + UnitPrice: '44.395412618478488' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Berlin' + }, + Date: '2007-04-18T00:00:00', + Value: '83.970713701085515', + NumberOfUnits: '227' + }, + { + Product: { + Name: 'Components', + UnitPrice: '39.287860616709978' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2007-04-18T00:00:00', + Value: '94.261160769621455', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '36.581183335083153' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Tokyo' + }, + Date: '2007-04-21T00:00:00', + Value: '45.74127162142716', + NumberOfUnits: '414' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '75.8285212217963' + }, + Seller: { + Name: 'Walter Pang', + City: 'London' + }, + Date: '2007-04-25T00:00:00', + Value: '97.593172917884388', + NumberOfUnits: '43' + }, + { + Product: { + Name: 'Components', + UnitPrice: '57.757038929386553' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2007-04-26T00:00:00', + Value: '20.936109088797174', + NumberOfUnits: '71' + }, + { + Product: { + Name: 'Components', + UnitPrice: '40.231876140568346' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'New York' + }, + Date: '2007-05-14T00:00:00', + Value: '71.862645294453316', + NumberOfUnits: '321' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '49.525128002057379' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'London' + }, + Date: '2007-05-17T00:00:00', + Value: '49.451349419286174', + NumberOfUnits: '329' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '56.460825706115379' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2007-05-17T00:00:00', + Value: '72.704781020388381', + NumberOfUnits: '88' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '67.129778008502811' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'New York' + }, + Date: '2007-05-26T00:00:00', + Value: '56.169638576065019', + NumberOfUnits: '366' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.628920431541708' + }, + Seller: { + Name: 'Walter Pang', + City: 'Sofia' + }, + Date: '2007-06-02T00:00:00', + Value: '81.322212508563979', + NumberOfUnits: '450' + }, + { + Product: { + Name: 'Components', + UnitPrice: '89.2609520299644' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2007-06-06T00:00:00', + Value: '18.962721814849751', + NumberOfUnits: '475' + }, + { + Product: { + Name: 'Components', + UnitPrice: '33.752368871938607' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2007-06-11T00:00:00', + Value: '54.870849966477067', + NumberOfUnits: '195' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '54.101630511740986' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Sofia' + }, + Date: '2007-06-17T00:00:00', + Value: '71.630847021765462', + NumberOfUnits: '458' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '18.437854628282533' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Sofia' + }, + Date: '2007-07-04T00:00:00', + Value: '24.16097206257329', + NumberOfUnits: '7' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '96.142818264729726' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2007-07-08T00:00:00', + Value: '57.497908062067772', + NumberOfUnits: '158' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '22.990409435234223' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Tokyo' + }, + Date: '2007-07-09T00:00:00', + Value: '58.795889168417027', + NumberOfUnits: '34' + }, + { + Product: { + Name: 'Components', + UnitPrice: '52.664019145380713' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2007-07-10T00:00:00', + Value: '32.396441061234306', + NumberOfUnits: '412' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.127701128892468' + }, + Seller: { + Name: 'John Smith', + City: 'Sofia' + }, + Date: '2007-07-15T00:00:00', + Value: '84.924038818536346', + NumberOfUnits: '10' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '10.722568543033008' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2007-07-16T00:00:00', + Value: '52.205748228452052', + NumberOfUnits: '466' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.6933130848656006' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'London' + }, + Date: '2007-07-20T00:00:00', + Value: '34.224967395060212', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '43.724528301378953' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Mellvile' + }, + Date: '2007-07-24T00:00:00', + Value: '45.460345011884506', + NumberOfUnits: '307' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '76.440263947677' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2007-07-26T00:00:00', + Value: '26.061410608730007', + NumberOfUnits: '445' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '34.278292178305932' + }, + Seller: { + Name: 'Bryan Culver', + City: 'New York' + }, + Date: '2007-08-01T00:00:00', + Value: '89.2379715522928', + NumberOfUnits: '480' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '68.573393890901187' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Berlin' + }, + Date: '2007-08-02T00:00:00', + Value: '38.090129912872861', + NumberOfUnits: '390' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '65.068199003612719' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2007-08-05T00:00:00', + Value: '23.047295037213384', + NumberOfUnits: '388' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '44.938480036770216' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Seattle' + }, + Date: '2007-08-19T00:00:00', + Value: '23.370492376093981', + NumberOfUnits: '37' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '93.468684653504141' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2007-08-24T00:00:00', + Value: '17.307506789130862', + NumberOfUnits: '237' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '94.365085472522807' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2007-08-26T00:00:00', + Value: '54.621032604305555', + NumberOfUnits: '396' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '72.4087734112557' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2007-08-26T00:00:00', + Value: '60.920718014669006', + NumberOfUnits: '3' + }, + { + Product: { + Name: 'Components', + UnitPrice: '80.5917513932063' + }, + Seller: { + Name: 'Russell Shorter', + City: 'New York' + }, + Date: '2007-09-02T00:00:00', + Value: '85.134478139288021', + NumberOfUnits: '330' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '65.4044602836503' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2007-09-04T00:00:00', + Value: '51.209239359576827', + NumberOfUnits: '143' + }, + { + Product: { + Name: 'Components', + UnitPrice: '30.638690912462163' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Seattle' + }, + Date: '2007-09-05T00:00:00', + Value: '55.2145366348394', + NumberOfUnits: '318' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '7.6167185826304928' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Seattle' + }, + Date: '2007-09-06T00:00:00', + Value: '41.804668093940556', + NumberOfUnits: '393' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.946888019771727' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2007-09-10T00:00:00', + Value: '9.0849790764436964', + NumberOfUnits: '129' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '38.017715484843457' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2007-09-17T00:00:00', + Value: '25.578551518534564', + NumberOfUnits: '426' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '2.48126508783608' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2007-09-18T00:00:00', + Value: '36.332240158846716', + NumberOfUnits: '217' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '77.58936000875633' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2007-09-20T00:00:00', + Value: '27.885909670910756', + NumberOfUnits: '152' + }, + { + Product: { + Name: 'Components', + UnitPrice: '97.145493420374336' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Seattle' + }, + Date: '2007-09-25T00:00:00', + Value: '21.834250782539254', + NumberOfUnits: '452' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '19.697441309549585' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2007-10-02T00:00:00', + Value: '98.261060238937418', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '32.775894986826877' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2007-10-06T00:00:00', + Value: '79.624117389146292', + NumberOfUnits: '169' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '21.953632739350958' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Berlin' + }, + Date: '2007-10-14T00:00:00', + Value: '69.497183183905292', + NumberOfUnits: '386' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '35.591812029290857' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2007-10-14T00:00:00', + Value: '27.775967413455234', + NumberOfUnits: '454' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '46.950088509800885' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2007-10-25T00:00:00', + Value: '82.136559757467623', + NumberOfUnits: '334' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '41.134977406419338' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2007-10-26T00:00:00', + Value: '54.425787531969036', + NumberOfUnits: '107' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '13.837097405380149' + }, + Seller: { + Name: 'Mark Slater', + City: 'Sofia' + }, + Date: '2007-11-07T00:00:00', + Value: '86.212293890403728', + NumberOfUnits: '275' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '64.159993810653688' + }, + Seller: { + Name: 'Monica Freitag', + City: 'London' + }, + Date: '2007-11-09T00:00:00', + Value: '37.720342091154471', + NumberOfUnits: '241' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '1.2072517076540981' + }, + Seller: { + Name: 'Larry Lieb', + City: 'London' + }, + Date: '2007-11-11T00:00:00', + Value: '75.227352033940775', + NumberOfUnits: '177' + }, + { + Product: { + Name: 'Components', + UnitPrice: '57.8050364078046' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2007-11-13T00:00:00', + Value: '58.445235415569151', + NumberOfUnits: '494' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '39.492234559493248' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Mellvile' + }, + Date: '2007-11-19T00:00:00', + Value: '40.710543394419616', + NumberOfUnits: '451' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '5.21720713247415' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Tokyo' + }, + Date: '2008-01-01T00:00:00', + Value: '91.820002250289548', + NumberOfUnits: '125' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '53.42944141171381' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'London' + }, + Date: '2008-01-02T00:00:00', + Value: '30.892902720204045', + NumberOfUnits: '103' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '52.157351957707363' + }, + Seller: { + Name: 'Larry Lieb', + City: 'New York' + }, + Date: '2008-01-03T00:00:00', + Value: '42.964697369823554', + NumberOfUnits: '224' + }, + { + Product: { + Name: 'Components', + UnitPrice: '17.694580656334097' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2008-01-07T00:00:00', + Value: '47.573478262672893', + NumberOfUnits: '498' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '80.741111925216913' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2008-01-08T00:00:00', + Value: '15.613263806148089', + NumberOfUnits: '142' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '95.439666973166013' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Berlin' + }, + Date: '2008-01-21T00:00:00', + Value: '87.2099365513818', + NumberOfUnits: '487' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '21.778967427918204' + }, + Seller: { + Name: 'David Haley', + City: 'Mellvile' + }, + Date: '2008-01-27T00:00:00', + Value: '14.448109741531365', + NumberOfUnits: '331' + }, + { + Product: { + Name: 'Components', + UnitPrice: '29.907407625535225' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2008-02-03T00:00:00', + Value: '99.235560325549713', + NumberOfUnits: '418' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '39.839772945195328' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'New York' + }, + Date: '2008-02-04T00:00:00', + Value: '61.018408397686862', + NumberOfUnits: '214' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '40.366990370846814' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2008-02-05T00:00:00', + Value: '81.740158694675273', + NumberOfUnits: '229' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '35.198273153602273' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2008-02-05T00:00:00', + Value: '54.246561859849173', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '41.75500964827603' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2008-02-08T00:00:00', + Value: '17.860554632665849', + NumberOfUnits: '216' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '0.687878998316768' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2008-02-09T00:00:00', + Value: '84.92055874547016', + NumberOfUnits: '486' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '37.556058092767394' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Tokyo' + }, + Date: '2008-02-13T00:00:00', + Value: '45.0776737858903', + NumberOfUnits: '172' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '20.804581568019735' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2008-02-21T00:00:00', + Value: '60.542486123993285', + NumberOfUnits: '102' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.646779691170337' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Seattle' + }, + Date: '2008-02-24T00:00:00', + Value: '42.896613079540721', + NumberOfUnits: '36' + }, + { + Product: { + Name: 'Components', + UnitPrice: '53.290544102569356' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2008-02-25T00:00:00', + Value: '11.017731628854634', + NumberOfUnits: '71' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '24.854228983099681' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2008-02-25T00:00:00', + Value: '16.975014478422242', + NumberOfUnits: '53' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.6324524025584' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Tokyo' + }, + Date: '2008-02-25T00:00:00', + Value: '98.961504315473832', + NumberOfUnits: '104' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '9.6438375346566723' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Tokyo' + }, + Date: '2008-02-26T00:00:00', + Value: '96.234209880341865', + NumberOfUnits: '294' + }, + { + Product: { + Name: 'Components', + UnitPrice: '41.077790568153276' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Sofia' + }, + Date: '2008-03-03T00:00:00', + Value: '93.68367497515105', + NumberOfUnits: '454' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '36.977834551119173' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Berlin' + }, + Date: '2008-03-05T00:00:00', + Value: '82.816526006356128', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.830879969909265' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2008-03-08T00:00:00', + Value: '0.654079998216629', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Components', + UnitPrice: '24.716882512307205' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'New York' + }, + Date: '2008-03-09T00:00:00', + Value: '88.519476162511609', + NumberOfUnits: '225' + }, + { + Product: { + Name: 'Components', + UnitPrice: '65.64449792059348' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2008-03-10T00:00:00', + Value: '69.0674314131343', + NumberOfUnits: '422' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.470670270952709' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2008-03-12T00:00:00', + Value: '97.0884484691026', + NumberOfUnits: '303' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '65.1173483417916' + }, + Seller: { + Name: 'Carl Costello', + City: 'London' + }, + Date: '2008-03-13T00:00:00', + Value: '46.4407860983353', + NumberOfUnits: '319' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '39.577671764221819' + }, + Seller: { + Name: 'Harold Garvin', + City: 'London' + }, + Date: '2008-03-14T00:00:00', + Value: '48.544153733432367', + NumberOfUnits: '262' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '50.714457570907875' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2008-03-23T00:00:00', + Value: '91.7152666448221', + NumberOfUnits: '345' + }, + { + Product: { + Name: 'Components', + UnitPrice: '88.2468002793597' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2008-04-03T00:00:00', + Value: '87.275520939042579', + NumberOfUnits: '407' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.252974541509978' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2008-04-04T00:00:00', + Value: '15.127723903920373', + NumberOfUnits: '121' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '30.427555660916283' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2008-04-06T00:00:00', + Value: '44.425472405005934', + NumberOfUnits: '30' + }, + { + Product: { + Name: 'Components', + UnitPrice: '88.243144186326845' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2008-04-11T00:00:00', + Value: '25.280987110585436', + NumberOfUnits: '293' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '16.463555962063165' + }, + Seller: { + Name: 'David Haley', + City: 'Sofia' + }, + Date: '2008-04-12T00:00:00', + Value: '55.071955618947719', + NumberOfUnits: '271' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '95.208247981596855' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Sofia' + }, + Date: '2008-04-18T00:00:00', + Value: '25.773858011594907', + NumberOfUnits: '107' + }, + { + Product: { + Name: 'Components', + UnitPrice: '7.7514979558771' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Mellvile' + }, + Date: '2008-04-18T00:00:00', + Value: '54.484538247103117', + NumberOfUnits: '87' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '94.826276877348434' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2008-04-23T00:00:00', + Value: '78.9546419768383', + NumberOfUnits: '319' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.211896543024061' + }, + Seller: { + Name: 'Lydia Burson', + City: 'New York' + }, + Date: '2008-04-24T00:00:00', + Value: '21.612914242601448', + NumberOfUnits: '346' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '99.308858159607666' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2008-05-07T00:00:00', + Value: '77.780686075697034', + NumberOfUnits: '382' + }, + { + Product: { + Name: 'Components', + UnitPrice: '96.081492582374011' + }, + Seller: { + Name: 'Larry Lieb', + City: 'New York' + }, + Date: '2008-05-11T00:00:00', + Value: '35.351181326131886', + NumberOfUnits: '334' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '26.152281568456569' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Tokyo' + }, + Date: '2008-05-13T00:00:00', + Value: '28.839570995811176', + NumberOfUnits: '176' + }, + { + Product: { + Name: 'Components', + UnitPrice: '80.816311985634414' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2008-05-19T00:00:00', + Value: '8.3833388091918728', + NumberOfUnits: '125' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '78.320334701948028' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2008-05-19T00:00:00', + Value: '15.037549294083169', + NumberOfUnits: '458' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '93.996538219040517' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Berlin' + }, + Date: '2008-05-25T00:00:00', + Value: '68.472067345153576', + NumberOfUnits: '331' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.600178441312252' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2008-05-27T00:00:00', + Value: '70.953166331608386', + NumberOfUnits: '39' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.643226812427507' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2008-06-06T00:00:00', + Value: '97.089249918744542', + NumberOfUnits: '238' + }, + { + Product: { + Name: 'Components', + UnitPrice: '46.977469579771849' + }, + Seller: { + Name: 'Walter Pang', + City: 'London' + }, + Date: '2008-06-07T00:00:00', + Value: '5.6769712854535186', + NumberOfUnits: '84' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '80.151598053123621' + }, + Seller: { + Name: 'Mark Slater', + City: 'Tokyo' + }, + Date: '2008-06-08T00:00:00', + Value: '24.8368413303219', + NumberOfUnits: '363' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '43.5199616679549' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2008-06-08T00:00:00', + Value: '58.973721162869467', + NumberOfUnits: '479' + }, + { + Product: { + Name: 'Components', + UnitPrice: '56.316017851380643' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Sofia' + }, + Date: '2008-06-11T00:00:00', + Value: '87.466286116962451', + NumberOfUnits: '404' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '81.685168194437935' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2008-06-18T00:00:00', + Value: '80.283416472507369', + NumberOfUnits: '478' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '90.111846611887145' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Sofia' + }, + Date: '2008-06-19T00:00:00', + Value: '2.328636451777367', + NumberOfUnits: '285' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.342426471105966' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Sofia' + }, + Date: '2008-06-22T00:00:00', + Value: '82.489029449638466', + NumberOfUnits: '15' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '30.834545442291788' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Berlin' + }, + Date: '2008-06-26T00:00:00', + Value: '77.825110767886557', + NumberOfUnits: '245' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.386958358523884' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2008-07-01T00:00:00', + Value: '8.1397687588537888', + NumberOfUnits: '376' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '73.34977298665315' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2008-07-02T00:00:00', + Value: '48.44682516923492', + NumberOfUnits: '40' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '43.496660489354589' + }, + Seller: { + Name: 'Larry Lieb', + City: 'London' + }, + Date: '2008-07-10T00:00:00', + Value: '37.8727404577065', + NumberOfUnits: '112' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '16.394280649905223' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2008-07-15T00:00:00', + Value: '9.7406020433365388', + NumberOfUnits: '224' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '71.402299390827437' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Tokyo' + }, + Date: '2008-07-16T00:00:00', + Value: '66.4204306278473', + NumberOfUnits: '145' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '94.61881909268854' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2008-07-21T00:00:00', + Value: '46.491464388785637', + NumberOfUnits: '272' + }, + { + Product: { + Name: 'Components', + UnitPrice: '50.753261684790843' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2008-07-27T00:00:00', + Value: '90.114484676213223', + NumberOfUnits: '278' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '12.782123597702999' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2008-07-27T00:00:00', + Value: '89.137324080400788', + NumberOfUnits: '253' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.780031064422815' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2008-08-01T00:00:00', + Value: '28.40646618437323', + NumberOfUnits: '255' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '17.133888051441819' + }, + Seller: { + Name: 'David Haley', + City: 'Seattle' + }, + Date: '2008-08-02T00:00:00', + Value: '0.455726543653629', + NumberOfUnits: '46' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '22.126638806484006' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Tokyo' + }, + Date: '2008-08-08T00:00:00', + Value: '58.445409852287455', + NumberOfUnits: '279' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.986888765816992' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2008-08-08T00:00:00', + Value: '91.802758533415741', + NumberOfUnits: '89' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '83.838022585882825' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Sofia' + }, + Date: '2008-08-14T00:00:00', + Value: '52.590476420051637', + NumberOfUnits: '17' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '14.075806277839376' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2008-08-21T00:00:00', + Value: '53.912139196839249', + NumberOfUnits: '470' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '34.591086923420008' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2008-08-25T00:00:00', + Value: '1.7413051341387', + NumberOfUnits: '195' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '86.727353691462127' + }, + Seller: { + Name: 'Lydia Burson', + City: 'New York' + }, + Date: '2008-08-27T00:00:00', + Value: '23.782985947925127', + NumberOfUnits: '173' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '42.2365329890682' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'New York' + }, + Date: '2008-09-01T00:00:00', + Value: '51.1229278292148', + NumberOfUnits: '472' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '25.687071413587347' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2008-09-06T00:00:00', + Value: '88.372170640328974', + NumberOfUnits: '148' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '23.20858027004105' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2008-09-06T00:00:00', + Value: '94.485007689560291', + NumberOfUnits: '314' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '83.763652752974835' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2008-09-07T00:00:00', + Value: '66.778043828335612', + NumberOfUnits: '431' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '84.414287882118629' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2008-09-07T00:00:00', + Value: '27.639171773399774', + NumberOfUnits: '347' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '7.3291354846810624' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Berlin' + }, + Date: '2008-09-11T00:00:00', + Value: '2.7723569435870075', + NumberOfUnits: '27' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '9.5534944019995134' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Berlin' + }, + Date: '2008-09-12T00:00:00', + Value: '11.851146077667897', + NumberOfUnits: '5' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.820872164713627' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2008-09-19T00:00:00', + Value: '16.46975079386949', + NumberOfUnits: '191' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '79.869313901229447' + }, + Seller: { + Name: 'Bryan Culver', + City: 'New York' + }, + Date: '2008-09-25T00:00:00', + Value: '84.273458730556754', + NumberOfUnits: '421' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.238494475483193' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2008-10-03T00:00:00', + Value: '28.857351992678527', + NumberOfUnits: '297' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '96.094717130109075' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'New York' + }, + Date: '2008-10-04T00:00:00', + Value: '15.797333380113047', + NumberOfUnits: '128' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.009710244373281' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Mellvile' + }, + Date: '2008-10-13T00:00:00', + Value: '37.30084394910412', + NumberOfUnits: '210' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '35.7560529074427' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2008-10-14T00:00:00', + Value: '26.942082646741571', + NumberOfUnits: '315' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.989432462951839' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'New York' + }, + Date: '2008-10-19T00:00:00', + Value: '69.838245990610787', + NumberOfUnits: '489' + }, + { + Product: { + Name: 'Components', + UnitPrice: '84.320317201465514' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2008-10-21T00:00:00', + Value: '61.3185628137172', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '25.52848226648219' + }, + Seller: { + Name: 'John Smith', + City: 'Mellvile' + }, + Date: '2008-10-22T00:00:00', + Value: '69.33637818756344', + NumberOfUnits: '92' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '23.874032927618376' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2008-11-01T00:00:00', + Value: '81.091924282299317', + NumberOfUnits: '30' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '53.634575919077996' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Berlin' + }, + Date: '2008-11-01T00:00:00', + Value: '15.006514738782547', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '68.152902074229388' + }, + Seller: { + Name: 'Bryan Culver', + City: 'London' + }, + Date: '2008-11-10T00:00:00', + Value: '6.0539431898174536', + NumberOfUnits: '368' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '59.880471210871114' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2008-11-11T00:00:00', + Value: '39.091290505179806', + NumberOfUnits: '482' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '5.754821284559938' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2008-11-11T00:00:00', + Value: '48.663099086220889', + NumberOfUnits: '22' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '95.84922096498741' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2008-11-20T00:00:00', + Value: '87.1416628300872', + NumberOfUnits: '159' + }, + { + Product: { + Name: 'Components', + UnitPrice: '59.066441729230078' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Berlin' + }, + Date: '2008-11-25T00:00:00', + Value: '88.637168141378623', + NumberOfUnits: '52' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '94.029234626344049' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Tokyo' + }, + Date: '2009-01-05T00:00:00', + Value: '79.830559240575212', + NumberOfUnits: '194' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '12.794803135467136' + }, + Seller: { + Name: 'David Haley', + City: 'Berlin' + }, + Date: '2009-01-08T00:00:00', + Value: '42.869858277435348', + NumberOfUnits: '100' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.852128705872282' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Berlin' + }, + Date: '2009-01-10T00:00:00', + Value: '48.256240528196209', + NumberOfUnits: '252' + }, + { + Product: { + Name: 'Components', + UnitPrice: '79.434888241549444' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Tokyo' + }, + Date: '2009-01-13T00:00:00', + Value: '68.505005337533078', + NumberOfUnits: '116' + }, + { + Product: { + Name: 'Components', + UnitPrice: '90.91811845587479' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'London' + }, + Date: '2009-01-14T00:00:00', + Value: '27.461436776193526', + NumberOfUnits: '259' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.848602618951631' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2009-01-19T00:00:00', + Value: '56.725358290935567', + NumberOfUnits: '217' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '43.273846266453084' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Seattle' + }, + Date: '2009-01-22T00:00:00', + Value: '36.4720197098665', + NumberOfUnits: '48' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '0.65436926700843923' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'New York' + }, + Date: '2009-02-02T00:00:00', + Value: '71.425742549554329', + NumberOfUnits: '445' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '60.464150859259135' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Mellvile' + }, + Date: '2009-02-03T00:00:00', + Value: '44.63498086884384', + NumberOfUnits: '90' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '13.659154862938056' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2009-02-07T00:00:00', + Value: '36.151584394346727', + NumberOfUnits: '453' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '44.160772694349646' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Mellvile' + }, + Date: '2009-02-07T00:00:00', + Value: '85.6432799648695', + NumberOfUnits: '450' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.330096614700793' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2009-02-07T00:00:00', + Value: '48.103636479053478', + NumberOfUnits: '152' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.7838492862805033' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Berlin' + }, + Date: '2009-02-16T00:00:00', + Value: '46.49472713772893', + NumberOfUnits: '119' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '79.235950894298014' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Tokyo' + }, + Date: '2009-02-16T00:00:00', + Value: '29.240355281736868', + NumberOfUnits: '463' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '18.588924276916742' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Tokyo' + }, + Date: '2009-02-17T00:00:00', + Value: '19.761605616547914', + NumberOfUnits: '150' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '27.901109833224265' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2009-02-19T00:00:00', + Value: '17.557824644054204', + NumberOfUnits: '210' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.192088797312266' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Tokyo' + }, + Date: '2009-02-20T00:00:00', + Value: '36.321839986518881', + NumberOfUnits: '150' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '35.849487937916763' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2009-02-21T00:00:00', + Value: '73.888651083171681', + NumberOfUnits: '97' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '34.073729130473794' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Berlin' + }, + Date: '2009-02-22T00:00:00', + Value: '86.417150211714741', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '66.299910734547268' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2009-02-24T00:00:00', + Value: '52.847915213949939', + NumberOfUnits: '172' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.901878412301596' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Mellvile' + }, + Date: '2009-02-24T00:00:00', + Value: '5.1081647188906389', + NumberOfUnits: '489' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '51.915620757227586' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Sofia' + }, + Date: '2009-02-27T00:00:00', + Value: '9.0917529580610577', + NumberOfUnits: '222' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '98.30828662882945' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Berlin' + }, + Date: '2009-03-03T00:00:00', + Value: '81.314004157350411', + NumberOfUnits: '300' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.820251282686485' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2009-03-03T00:00:00', + Value: '1.3068364007895981', + NumberOfUnits: '270' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '16.260613881172898' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2009-03-07T00:00:00', + Value: '81.4439182083327', + NumberOfUnits: '263' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '93.446688537228241' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2009-03-10T00:00:00', + Value: '22.661844046163303', + NumberOfUnits: '28' + }, + { + Product: { + Name: 'Components', + UnitPrice: '42.142761425181646' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'London' + }, + Date: '2009-03-15T00:00:00', + Value: '20.388415884407433', + NumberOfUnits: '237' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '54.983897719059094' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Tokyo' + }, + Date: '2009-03-16T00:00:00', + Value: '64.043450431918473', + NumberOfUnits: '171' + }, + { + Product: { + Name: 'Components', + UnitPrice: '97.311258221655734' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2009-03-27T00:00:00', + Value: '23.9032197389301', + NumberOfUnits: '251' + }, + { + Product: { + Name: 'Components', + UnitPrice: '50.889893039544063' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'London' + }, + Date: '2009-04-01T00:00:00', + Value: '32.324041068704815', + NumberOfUnits: '275' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.7144460513789417' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'London' + }, + Date: '2009-04-06T00:00:00', + Value: '41.960918783192021', + NumberOfUnits: '311' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '70.850547156692727' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2009-04-07T00:00:00', + Value: '82.811493604821848', + NumberOfUnits: '217' + }, + { + Product: { + Name: 'Components', + UnitPrice: '96.778652489547923' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2009-04-09T00:00:00', + Value: '62.226076034002972', + NumberOfUnits: '360' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '83.5057999396258' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Berlin' + }, + Date: '2009-04-12T00:00:00', + Value: '51.587959589244782', + NumberOfUnits: '35' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.413802446990189' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2009-04-15T00:00:00', + Value: '80.986556122538886', + NumberOfUnits: '294' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '70.80258972514541' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2009-04-16T00:00:00', + Value: '35.866933425826453', + NumberOfUnits: '436' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.524064517824016' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'London' + }, + Date: '2009-04-20T00:00:00', + Value: '82.488713498454871', + NumberOfUnits: '78' + }, + { + Product: { + Name: 'Components', + UnitPrice: '29.603658024968421' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2009-04-22T00:00:00', + Value: '94.02309180890353', + NumberOfUnits: '301' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.59798216009419' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2009-05-02T00:00:00', + Value: '92.598087011183651', + NumberOfUnits: '24' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '71.666997145706318' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2009-05-04T00:00:00', + Value: '19.282113676556438', + NumberOfUnits: '332' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.552707418125452' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2009-05-11T00:00:00', + Value: '56.428837429931775', + NumberOfUnits: '307' + }, + { + Product: { + Name: 'Components', + UnitPrice: '36.712927202094782' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2009-05-11T00:00:00', + Value: '34.265398902010823', + NumberOfUnits: '375' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '62.74587812961353' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2009-05-12T00:00:00', + Value: '1.9744442785039749', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '13.699630607710981' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2009-05-21T00:00:00', + Value: '42.514021341928292', + NumberOfUnits: '337' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '46.090274558444634' + }, + Seller: { + Name: 'Larry Lieb', + City: 'London' + }, + Date: '2009-05-24T00:00:00', + Value: '55.25077774899583', + NumberOfUnits: '284' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '95.33687676085944' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Berlin' + }, + Date: '2009-05-26T00:00:00', + Value: '94.764131631126688', + NumberOfUnits: '292' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.090784828220862' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Sofia' + }, + Date: '2009-05-26T00:00:00', + Value: '60.153313800763954', + NumberOfUnits: '424' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '99.392229132071236' + }, + Seller: { + Name: 'Mark Slater', + City: 'Mellvile' + }, + Date: '2009-06-05T00:00:00', + Value: '28.99414483876626', + NumberOfUnits: '271' + }, + { + Product: { + Name: 'Components', + UnitPrice: '86.944918514669368' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Mellvile' + }, + Date: '2009-06-10T00:00:00', + Value: '94.041974653509428', + NumberOfUnits: '6' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '13.495747797887656' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2009-06-12T00:00:00', + Value: '94.892294562837236', + NumberOfUnits: '44' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.648592900321162' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2009-06-12T00:00:00', + Value: '74.204946949242128', + NumberOfUnits: '277' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '16.877442187106908' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2009-06-13T00:00:00', + Value: '65.121114330888318', + NumberOfUnits: '98' + }, + { + Product: { + Name: 'Components', + UnitPrice: '42.376991707075852' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Mellvile' + }, + Date: '2009-06-22T00:00:00', + Value: '68.602847060469372', + NumberOfUnits: '443' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '79.539957074234252' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2009-06-26T00:00:00', + Value: '81.434181044546037', + NumberOfUnits: '409' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '26.25291264907127' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2009-07-02T00:00:00', + Value: '68.128146216332979', + NumberOfUnits: '240' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '34.046156627147532' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Seattle' + }, + Date: '2009-07-10T00:00:00', + Value: '95.570359656387168', + NumberOfUnits: '23' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '29.379817577721468' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2009-07-12T00:00:00', + Value: '35.889505099453736', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '86.650452430662909' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Berlin' + }, + Date: '2009-07-13T00:00:00', + Value: '29.856805424139278', + NumberOfUnits: '117' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '58.386603816592419' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2009-07-15T00:00:00', + Value: '34.369692268953514', + NumberOfUnits: '336' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '39.759629797078496' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Seattle' + }, + Date: '2009-07-18T00:00:00', + Value: '92.39610121231344', + NumberOfUnits: '372' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '10.11000248142984' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Berlin' + }, + Date: '2009-07-19T00:00:00', + Value: '90.408865451071819', + NumberOfUnits: '403' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '17.772769098064288' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2009-07-19T00:00:00', + Value: '66.145469558492991', + NumberOfUnits: '144' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '21.54340814870941' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Seattle' + }, + Date: '2009-07-19T00:00:00', + Value: '41.712649465404752', + NumberOfUnits: '395' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '33.561278383043259' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2009-07-20T00:00:00', + Value: '16.61004327079749', + NumberOfUnits: '236' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '48.76308178005884' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2009-07-20T00:00:00', + Value: '86.7044968934285', + NumberOfUnits: '160' + }, + { + Product: { + Name: 'Components', + UnitPrice: '81.79705179380116' + }, + Seller: { + Name: 'David Haley', + City: 'Sofia' + }, + Date: '2009-07-20T00:00:00', + Value: '65.782062134604', + NumberOfUnits: '157' + }, + { + Product: { + Name: 'Components', + UnitPrice: '9.6737010449514251' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Sofia' + }, + Date: '2009-07-25T00:00:00', + Value: '0.062564946740197455', + NumberOfUnits: '255' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '88.575547462597285' + }, + Seller: { + Name: 'Mark Slater', + City: 'London' + }, + Date: '2009-08-16T00:00:00', + Value: '42.973863865702349', + NumberOfUnits: '284' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '89.335742634411787' + }, + Seller: { + Name: 'Walter Pang', + City: 'Tokyo' + }, + Date: '2009-08-17T00:00:00', + Value: '15.731296835342096', + NumberOfUnits: '333' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '23.987651161843747' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2009-08-17T00:00:00', + Value: '51.5363990569191', + NumberOfUnits: '48' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '19.359730239659424' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2009-08-18T00:00:00', + Value: '82.547955160284388', + NumberOfUnits: '399' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '9.30053084590497' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2009-08-24T00:00:00', + Value: '68.607750753223783', + NumberOfUnits: '413' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '1.1489816946671259' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2009-09-06T00:00:00', + Value: '71.909978693309228', + NumberOfUnits: '182' + }, + { + Product: { + Name: 'Components', + UnitPrice: '76.9795825597735' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2009-09-06T00:00:00', + Value: '44.89029713202747', + NumberOfUnits: '156' + }, + { + Product: { + Name: 'Components', + UnitPrice: '80.664513344254587' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2009-09-09T00:00:00', + Value: '92.268023962279784', + NumberOfUnits: '293' + }, + { + Product: { + Name: 'Components', + UnitPrice: '22.788886131154786' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2009-10-01T00:00:00', + Value: '99.883927823921638', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.05361020288133' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Seattle' + }, + Date: '2009-10-01T00:00:00', + Value: '16.01294182055301', + NumberOfUnits: '106' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '72.974514808959569' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Tokyo' + }, + Date: '2009-10-06T00:00:00', + Value: '91.593776918758536', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Components', + UnitPrice: '22.058241871212722' + }, + Seller: { + Name: 'John Smith', + City: 'Tokyo' + }, + Date: '2009-10-07T00:00:00', + Value: '1.8308585983844747', + NumberOfUnits: '187' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '42.79186979066202' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2009-10-10T00:00:00', + Value: '21.78986469367047', + NumberOfUnits: '137' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.231171277459325' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2009-10-14T00:00:00', + Value: '14.979823871971956', + NumberOfUnits: '138' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '14.350185037753633' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2009-10-24T00:00:00', + Value: '65.044616239631836', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Components', + UnitPrice: '40.100955655845326' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'London' + }, + Date: '2009-10-24T00:00:00', + Value: '11.059040581369326', + NumberOfUnits: '353' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '17.189097831579435' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2009-11-01T00:00:00', + Value: '94.950034746411276', + NumberOfUnits: '359' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '52.031028155251882' + }, + Seller: { + Name: 'Walter Pang', + City: 'Tokyo' + }, + Date: '2009-11-04T00:00:00', + Value: '43.162881835905317', + NumberOfUnits: '134' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '90.993871954732526' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2009-11-09T00:00:00', + Value: '25.162065972183861', + NumberOfUnits: '263' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '88.538379077119' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2009-11-11T00:00:00', + Value: '40.935293185028847', + NumberOfUnits: '313' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '46.481523265355044' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2009-11-16T00:00:00', + Value: '20.430096527761822', + NumberOfUnits: '115' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '20.418462399588183' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Berlin' + }, + Date: '2009-11-17T00:00:00', + Value: '33.038645299635192', + NumberOfUnits: '414' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '70.830144114247588' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2009-11-21T00:00:00', + Value: '2.98972730664058', + NumberOfUnits: '53' + }, + { + Product: { + Name: 'Components', + UnitPrice: '81.628889023153533' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2009-11-22T00:00:00', + Value: '86.668779555088264', + NumberOfUnits: '472' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '9.714081422292665' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Mellvile' + }, + Date: '2009-11-23T00:00:00', + Value: '53.591187323253223', + NumberOfUnits: '199' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '29.755140482334021' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Sofia' + }, + Date: '2009-11-24T00:00:00', + Value: '27.388797945989669', + NumberOfUnits: '241' + }, + { + Product: { + Name: 'Components', + UnitPrice: '33.118537689148695' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'New York' + }, + Date: '2009-11-24T00:00:00', + Value: '1.2120309291463489', + NumberOfUnits: '320' + }, + { + Product: { + Name: 'Components', + UnitPrice: '65.6359763655979' + }, + Seller: { + Name: 'David Haley', + City: 'London' + }, + Date: '2010-01-02T00:00:00', + Value: '20.522539420296688', + NumberOfUnits: '299' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '62.085259967523285' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2010-01-08T00:00:00', + Value: '35.256934368636891', + NumberOfUnits: '366' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '78.474462068860646' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2010-01-10T00:00:00', + Value: '27.762093407922467', + NumberOfUnits: '290' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '11.587155103491226' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2010-01-11T00:00:00', + Value: '61.712525906838721', + NumberOfUnits: '350' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '33.427815853351639' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2010-01-14T00:00:00', + Value: '33.686906720365819', + NumberOfUnits: '469' + }, + { + Product: { + Name: 'Components', + UnitPrice: '96.141296949303381' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2010-01-21T00:00:00', + Value: '75.607716606747218', + NumberOfUnits: '352' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '92.171847676938327' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2010-01-25T00:00:00', + Value: '38.822024473371926', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '93.045955893139336' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Tokyo' + }, + Date: '2010-02-02T00:00:00', + Value: '66.397165863959657', + NumberOfUnits: '153' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '38.888418506313307' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2010-02-02T00:00:00', + Value: '28.472216533716871', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '99.255040660153625' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2010-02-04T00:00:00', + Value: '66.975509546220067', + NumberOfUnits: '267' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.418360057481735' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2010-02-04T00:00:00', + Value: '71.271966803479927', + NumberOfUnits: '91' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '19.770187707510864' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Tokyo' + }, + Date: '2010-02-05T00:00:00', + Value: '45.86024901171227', + NumberOfUnits: '84' + }, + { + Product: { + Name: 'Components', + UnitPrice: '87.127108633111746' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Mellvile' + }, + Date: '2010-02-11T00:00:00', + Value: '66.746746220973662', + NumberOfUnits: '270' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '76.21922282326' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Berlin' + }, + Date: '2010-02-12T00:00:00', + Value: '86.961047717817621', + NumberOfUnits: '496' + }, + { + Product: { + Name: 'Components', + UnitPrice: '51.935532154485365' + }, + Seller: { + Name: 'John Smith', + City: 'Seattle' + }, + Date: '2010-02-16T00:00:00', + Value: '47.325407875387654', + NumberOfUnits: '24' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.709201215630959' + }, + Seller: { + Name: 'Walter Pang', + City: 'Mellvile' + }, + Date: '2010-02-17T00:00:00', + Value: '72.656378696046943', + NumberOfUnits: '41' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '15.665925860249402' + }, + Seller: { + Name: 'John Smith', + City: 'Mellvile' + }, + Date: '2010-02-22T00:00:00', + Value: '65.636205098422337', + NumberOfUnits: '365' + }, + { + Product: { + Name: 'Components', + UnitPrice: '2.6773556613723541' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Sofia' + }, + Date: '2010-03-01T00:00:00', + Value: '68.629750361959324', + NumberOfUnits: '202' + }, + { + Product: { + Name: 'Components', + UnitPrice: '52.256432619065251' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2010-03-01T00:00:00', + Value: '79.248901540063741', + NumberOfUnits: '225' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '0.30659986674161621' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2010-03-03T00:00:00', + Value: '70.065212654911548', + NumberOfUnits: '206' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '22.362647448835265' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Sofia' + }, + Date: '2010-03-11T00:00:00', + Value: '54.673684646689189', + NumberOfUnits: '158' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '94.7514695090947' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2010-03-14T00:00:00', + Value: '70.422226083661528', + NumberOfUnits: '169' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '1.1244290979227185' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2010-03-15T00:00:00', + Value: '18.868440258721094', + NumberOfUnits: '4' + }, + { + Product: { + Name: 'Components', + UnitPrice: '12.168197199780586' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2010-03-15T00:00:00', + Value: '12.660750706056481', + NumberOfUnits: '232' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '58.754820636825087' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2010-03-16T00:00:00', + Value: '78.751323967590608', + NumberOfUnits: '421' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '43.950277959904767' + }, + Seller: { + Name: 'David Haley', + City: 'Seattle' + }, + Date: '2010-03-25T00:00:00', + Value: '89.636901900934475', + NumberOfUnits: '260' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '54.451138970652188' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2010-04-02T00:00:00', + Value: '91.929945113104736', + NumberOfUnits: '194' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.565373749735471' + }, + Seller: { + Name: 'Walter Pang', + City: 'Tokyo' + }, + Date: '2010-04-05T00:00:00', + Value: '35.415237739409896', + NumberOfUnits: '491' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '11.121100052781916' + }, + Seller: { + Name: 'Harold Garvin', + City: 'London' + }, + Date: '2010-04-14T00:00:00', + Value: '29.986905041144652', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Components', + UnitPrice: '18.092416607817828' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2010-04-15T00:00:00', + Value: '84.457366813187193', + NumberOfUnits: '279' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.277599657083675' + }, + Seller: { + Name: 'Carl Costello', + City: 'Berlin' + }, + Date: '2010-04-15T00:00:00', + Value: '99.568976647951175', + NumberOfUnits: '287' + }, + { + Product: { + Name: 'Components', + UnitPrice: '77.894294018807955' + }, + Seller: { + Name: 'Carl Costello', + City: 'New York' + }, + Date: '2010-04-22T00:00:00', + Value: '58.9137158165284', + NumberOfUnits: '363' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '55.624015888024125' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2010-04-22T00:00:00', + Value: '16.317631032465783', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '39.338956605335213' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Berlin' + }, + Date: '2010-04-24T00:00:00', + Value: '0.092080421788655414', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Components', + UnitPrice: '7.7389456833428447' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2010-05-04T00:00:00', + Value: '99.529428733293628', + NumberOfUnits: '25' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '62.437906005623709' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2010-05-05T00:00:00', + Value: '47.953826816731052', + NumberOfUnits: '64' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '38.696093037117322' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'London' + }, + Date: '2010-05-06T00:00:00', + Value: '57.667695059286281', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '17.764891412930979' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Mellvile' + }, + Date: '2010-05-07T00:00:00', + Value: '15.271079826760609', + NumberOfUnits: '50' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '57.771539901276839' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Berlin' + }, + Date: '2010-05-07T00:00:00', + Value: '58.617693865028066', + NumberOfUnits: '437' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '21.412746897625155' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2010-05-19T00:00:00', + Value: '40.952016665112232', + NumberOfUnits: '253' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '10.10051225782396' + }, + Seller: { + Name: 'Monica Freitag', + City: 'London' + }, + Date: '2010-05-22T00:00:00', + Value: '24.04263714516658', + NumberOfUnits: '312' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '87.649551167920961' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'London' + }, + Date: '2010-05-24T00:00:00', + Value: '12.452408304648664', + NumberOfUnits: '82' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '42.552965526726545' + }, + Seller: { + Name: 'Harold Garvin', + City: 'New York' + }, + Date: '2010-06-01T00:00:00', + Value: '32.21886932487547', + NumberOfUnits: '467' + }, + { + Product: { + Name: 'Components', + UnitPrice: '79.772670743881108' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Sofia' + }, + Date: '2010-06-05T00:00:00', + Value: '69.47704109804566', + NumberOfUnits: '74' + }, + { + Product: { + Name: 'Components', + UnitPrice: '1.8354761888438258' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2010-06-10T00:00:00', + Value: '14.711501968424534', + NumberOfUnits: '81' + }, + { + Product: { + Name: 'Components', + UnitPrice: '15.038684017508608' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Berlin' + }, + Date: '2010-06-25T00:00:00', + Value: '18.710408228780334', + NumberOfUnits: '88' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '43.393069851860908' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2010-06-26T00:00:00', + Value: '44.323160147444881', + NumberOfUnits: '126' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.236492486780737' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2010-06-27T00:00:00', + Value: '77.721635707524442', + NumberOfUnits: '112' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '59.192252885174121' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Sofia' + }, + Date: '2010-06-27T00:00:00', + Value: '15.444951837623936', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Components', + UnitPrice: '39.858141839438183' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Sofia' + }, + Date: '2010-07-05T00:00:00', + Value: '29.309184630079749', + NumberOfUnits: '218' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '27.044425637947594' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'New York' + }, + Date: '2010-07-05T00:00:00', + Value: '29.84750439871452', + NumberOfUnits: '34' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.269145072563152' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2010-07-13T00:00:00', + Value: '83.42096804800488', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '53.378611455382128' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2010-07-16T00:00:00', + Value: '41.53844534491116', + NumberOfUnits: '464' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.432887213971881' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2010-07-17T00:00:00', + Value: '83.285907275642217', + NumberOfUnits: '118' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '23.970818670452953' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2010-07-18T00:00:00', + Value: '94.1482592346837', + NumberOfUnits: '442' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.523097888344481' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2010-07-23T00:00:00', + Value: '59.59416039269145', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '60.678681014421713' + }, + Seller: { + Name: 'Lydia Burson', + City: 'London' + }, + Date: '2010-07-23T00:00:00', + Value: '83.499601801624337', + NumberOfUnits: '472' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '78.0230887131873' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'New York' + }, + Date: '2010-07-24T00:00:00', + Value: '83.86764092550969', + NumberOfUnits: '140' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.635253308171059' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2010-07-26T00:00:00', + Value: '86.612572747567938', + NumberOfUnits: '118' + }, + { + Product: { + Name: 'Components', + UnitPrice: '58.201980291959821' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Sofia' + }, + Date: '2010-07-27T00:00:00', + Value: '63.959779713284128', + NumberOfUnits: '176' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '98.375331656250779' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2010-08-01T00:00:00', + Value: '23.277100465855142', + NumberOfUnits: '77' + }, + { + Product: { + Name: 'Components', + UnitPrice: '2.9185969396115263' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'Sofia' + }, + Date: '2010-08-08T00:00:00', + Value: '74.269686627327317', + NumberOfUnits: '105' + }, + { + Product: { + Name: 'Components', + UnitPrice: '98.157584806046259' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Tokyo' + }, + Date: '2010-08-21T00:00:00', + Value: '60.648173215169543', + NumberOfUnits: '160' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '79.036749144567537' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2010-08-26T00:00:00', + Value: '66.923503934835779', + NumberOfUnits: '186' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '17.790103991418192' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2010-09-04T00:00:00', + Value: '28.990831612139395', + NumberOfUnits: '380' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '38.68470799116637' + }, + Seller: { + Name: 'John Smith', + City: 'Tokyo' + }, + Date: '2010-09-11T00:00:00', + Value: '41.4628619986879', + NumberOfUnits: '470' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '75.233120366573857' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2010-09-13T00:00:00', + Value: '42.688516267895935', + NumberOfUnits: '348' + }, + { + Product: { + Name: 'Components', + UnitPrice: '55.30159308356307' + }, + Seller: { + Name: 'Carl Costello', + City: 'London' + }, + Date: '2010-09-14T00:00:00', + Value: '29.383467570591471', + NumberOfUnits: '151' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '51.315049571597505' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'New York' + }, + Date: '2010-09-24T00:00:00', + Value: '86.581237654472346', + NumberOfUnits: '7' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '31.307030995985041' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2010-10-07T00:00:00', + Value: '38.936872425925394', + NumberOfUnits: '123' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '79.959242362510068' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2010-10-08T00:00:00', + Value: '8.676337175386184', + NumberOfUnits: '374' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '94.65782241647031' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Mellvile' + }, + Date: '2010-10-11T00:00:00', + Value: '96.669988984554067', + NumberOfUnits: '178' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '41.967610009930844' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2010-10-22T00:00:00', + Value: '31.412678645650239', + NumberOfUnits: '354' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '46.564729067759927' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2010-10-25T00:00:00', + Value: '85.540413197847272', + NumberOfUnits: '459' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '27.142422565791019' + }, + Seller: { + Name: 'Mark Slater', + City: 'London' + }, + Date: '2010-11-02T00:00:00', + Value: '46.424968795117444', + NumberOfUnits: '78' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '30.232361531924624' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2010-11-03T00:00:00', + Value: '52.08322599161567', + NumberOfUnits: '417' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '82.166215769092659' + }, + Seller: { + Name: 'Walter Pang', + City: 'Seattle' + }, + Date: '2010-11-12T00:00:00', + Value: '15.3999604356475', + NumberOfUnits: '208' + }, + { + Product: { + Name: 'Components', + UnitPrice: '13.240201125498954' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2010-11-19T00:00:00', + Value: '48.614451078984168', + NumberOfUnits: '359' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.82965918110202' + }, + Seller: { + Name: 'Russell Shorter', + City: 'New York' + }, + Date: '2010-11-25T00:00:00', + Value: '24.490439856653307', + NumberOfUnits: '392' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '78.426081770298111' + }, + Seller: { + Name: 'John Smith', + City: 'London' + }, + Date: '2011-01-01T00:00:00', + Value: '37.596409040315265', + NumberOfUnits: '241' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '50.590050290613462' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Seattle' + }, + Date: '2011-01-04T00:00:00', + Value: '27.185391135134452', + NumberOfUnits: '62' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '6.3079299900252046' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Tokyo' + }, + Date: '2011-01-06T00:00:00', + Value: '89.615617641068809', + NumberOfUnits: '485' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '47.444027544671677' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Sofia' + }, + Date: '2011-01-14T00:00:00', + Value: '4.8948556207562124', + NumberOfUnits: '470' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '6.14731172385966' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2011-01-23T00:00:00', + Value: '78.523330706415379', + NumberOfUnits: '197' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '57.598939471691359' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Berlin' + }, + Date: '2011-01-26T00:00:00', + Value: '59.748959848540352', + NumberOfUnits: '353' + }, + { + Product: { + Name: 'Components', + UnitPrice: '37.619407911607723' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Mellvile' + }, + Date: '2011-02-01T00:00:00', + Value: '39.591191541213163', + NumberOfUnits: '338' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '20.995826982425445' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2011-02-08T00:00:00', + Value: '92.874936197360483', + NumberOfUnits: '17' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '11.776900390059176' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2011-02-12T00:00:00', + Value: '61.288865125406936', + NumberOfUnits: '429' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.996284649239982' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Tokyo' + }, + Date: '2011-02-14T00:00:00', + Value: '24.293736985090067', + NumberOfUnits: '385' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '19.89953691135139' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2011-02-20T00:00:00', + Value: '35.271121391687132', + NumberOfUnits: '166' + }, + { + Product: { + Name: 'Components', + UnitPrice: '3.2431666288725873' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Seattle' + }, + Date: '2011-02-20T00:00:00', + Value: '52.569142939787895', + NumberOfUnits: '137' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '18.180364006282932' + }, + Seller: { + Name: 'Russell Shorter', + City: 'New York' + }, + Date: '2011-02-24T00:00:00', + Value: '8.2438002378883759', + NumberOfUnits: '443' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '20.442789662835555' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2011-02-26T00:00:00', + Value: '87.327797658428452', + NumberOfUnits: '40' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '20.547325592742919' + }, + Seller: { + Name: 'Glenn Landeros', + City: 'London' + }, + Date: '2011-03-05T00:00:00', + Value: '7.2753519319348747', + NumberOfUnits: '138' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '23.766470804701779' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2011-03-09T00:00:00', + Value: '18.243170770929741', + NumberOfUnits: '15' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '76.253175817547913' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2011-03-09T00:00:00', + Value: '74.498488369629939', + NumberOfUnits: '469' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '93.2519404651839' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2011-03-11T00:00:00', + Value: '88.996454276608517', + NumberOfUnits: '426' + }, + { + Product: { + Name: 'Components', + UnitPrice: '62.99248866876237' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-03-16T00:00:00', + Value: '32.470836971174386', + NumberOfUnits: '208' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '58.4988099795295' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2011-03-21T00:00:00', + Value: '50.8492368044561', + NumberOfUnits: '155' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '82.3833047795963' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2011-03-23T00:00:00', + Value: '33.369716877755579', + NumberOfUnits: '381' + }, + { + Product: { + Name: 'Components', + UnitPrice: '19.168732231095774' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Tokyo' + }, + Date: '2011-04-12T00:00:00', + Value: '75.166610896199288', + NumberOfUnits: '5' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '53.516463960295759' + }, + Seller: { + Name: 'Walter Pang', + City: 'London' + }, + Date: '2011-04-12T00:00:00', + Value: '14.533374232488395', + NumberOfUnits: '221' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '97.407401445045792' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Sofia' + }, + Date: '2011-04-14T00:00:00', + Value: '84.691367803463407', + NumberOfUnits: '39' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '74.054133600580556' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2011-04-16T00:00:00', + Value: '51.295898599222255', + NumberOfUnits: '468' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '8.1049134061229022' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Seattle' + }, + Date: '2011-04-17T00:00:00', + Value: '0.70214751209232373', + NumberOfUnits: '44' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '59.055603649027468' + }, + Seller: { + Name: 'John Smith', + City: 'Mellvile' + }, + Date: '2011-04-22T00:00:00', + Value: '47.532910968890839', + NumberOfUnits: '287' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.816727750383663' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2011-04-24T00:00:00', + Value: '78.545733857222714', + NumberOfUnits: '463' + }, + { + Product: { + Name: 'Components', + UnitPrice: '76.712912356812936' + }, + Seller: { + Name: 'Walter Pang', + City: 'Seattle' + }, + Date: '2011-04-24T00:00:00', + Value: '62.920035218317082', + NumberOfUnits: '335' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '73.424536862142631' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2011-04-24T00:00:00', + Value: '30.569536113445434', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Components', + UnitPrice: '66.398487550392034' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-05-03T00:00:00', + Value: '87.37479121767673', + NumberOfUnits: '291' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '37.014730059082964' + }, + Seller: { + Name: 'John Smith', + City: 'Sofia' + }, + Date: '2011-05-05T00:00:00', + Value: '40.137041145999468', + NumberOfUnits: '1' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '21.30724839927035' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Seattle' + }, + Date: '2011-05-06T00:00:00', + Value: '46.005596521313116', + NumberOfUnits: '120' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '19.893941804717269' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2011-05-06T00:00:00', + Value: '72.609930798695387', + NumberOfUnits: '382' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '16.486758420470522' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Seattle' + }, + Date: '2011-05-07T00:00:00', + Value: '7.763772973680763', + NumberOfUnits: '63' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '41.660496658487475' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2011-05-12T00:00:00', + Value: '94.318148397988708', + NumberOfUnits: '230' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.9773660045943062' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Tokyo' + }, + Date: '2011-05-13T00:00:00', + Value: '30.891342056398909', + NumberOfUnits: '362' + }, + { + Product: { + Name: 'Components', + UnitPrice: '10.7490869289027' + }, + Seller: { + Name: 'Monica Freitag', + City: 'New York' + }, + Date: '2011-05-17T00:00:00', + Value: '59.668867131540956', + NumberOfUnits: '430' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '66.047576147153777' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2011-05-23T00:00:00', + Value: '91.139627616451875', + NumberOfUnits: '204' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '60.848456370108039' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Berlin' + }, + Date: '2011-05-24T00:00:00', + Value: '86.097605566539613', + NumberOfUnits: '118' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '68.7086188088677' + }, + Seller: { + Name: 'Walter Pang', + City: 'Sofia' + }, + Date: '2011-06-01T00:00:00', + Value: '14.562893060298121', + NumberOfUnits: '17' + }, + { + Product: { + Name: 'Components', + UnitPrice: '40.680891247783265' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2011-06-03T00:00:00', + Value: '9.0439965990576887', + NumberOfUnits: '312' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '96.900314277457227' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Seattle' + }, + Date: '2011-06-12T00:00:00', + Value: '95.038356676249933', + NumberOfUnits: '283' + }, + { + Product: { + Name: 'Components', + UnitPrice: '67.031210179920876' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-06-13T00:00:00', + Value: '27.587484674336149', + NumberOfUnits: '460' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.092374324375939' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'New York' + }, + Date: '2011-06-14T00:00:00', + Value: '66.230523523981915', + NumberOfUnits: '295' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '28.048040265239791' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Mellvile' + }, + Date: '2011-06-15T00:00:00', + Value: '50.504170614529478', + NumberOfUnits: '49' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '7.3837493580690348' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Tokyo' + }, + Date: '2011-06-24T00:00:00', + Value: '7.8716053664086409', + NumberOfUnits: '127' + }, + { + Product: { + Name: 'Components', + UnitPrice: '39.219759003827235' + }, + Seller: { + Name: 'Mark Slater', + City: 'Seattle' + }, + Date: '2011-06-27T00:00:00', + Value: '98.71029462605263', + NumberOfUnits: '244' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '53.418671131794646' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Tokyo' + }, + Date: '2011-07-01T00:00:00', + Value: '11.231885622829145', + NumberOfUnits: '188' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '25.523898576164573' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Seattle' + }, + Date: '2011-07-06T00:00:00', + Value: '56.126590052678523', + NumberOfUnits: '458' + }, + { + Product: { + Name: 'Components', + UnitPrice: '70.257199169256353' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2011-07-08T00:00:00', + Value: '82.339177505271124', + NumberOfUnits: '448' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '7.6365943567997752' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2011-07-27T00:00:00', + Value: '30.461937203287114', + NumberOfUnits: '226' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.512323069159091' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2011-08-01T00:00:00', + Value: '69.618271463372878', + NumberOfUnits: '474' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '37.596370343862276' + }, + Seller: { + Name: 'David Haley', + City: 'Sofia' + }, + Date: '2011-08-02T00:00:00', + Value: '62.767845142058952', + NumberOfUnits: '338' + }, + { + Product: { + Name: 'Components', + UnitPrice: '99.364743102046077' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'London' + }, + Date: '2011-08-02T00:00:00', + Value: '75.243962125500659', + NumberOfUnits: '88' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.232945669550887' + }, + Seller: { + Name: 'Carl Costello', + City: 'Berlin' + }, + Date: '2011-08-04T00:00:00', + Value: '86.276501736732442', + NumberOfUnits: '436' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '34.253647892854012' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2011-08-06T00:00:00', + Value: '9.2189299451275417', + NumberOfUnits: '297' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '46.885990699234412' + }, + Seller: { + Name: 'Russell Shorter', + City: 'London' + }, + Date: '2011-08-07T00:00:00', + Value: '5.0874681701359652', + NumberOfUnits: '240' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '26.369197352961265' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Sofia' + }, + Date: '2011-08-07T00:00:00', + Value: '80.241307141371678', + NumberOfUnits: '415' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '49.072841112070179' + }, + Seller: { + Name: 'David Haley', + City: 'Mellvile' + }, + Date: '2011-08-08T00:00:00', + Value: '61.200517444499084', + NumberOfUnits: '435' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '95.058612569728211' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Berlin' + }, + Date: '2011-08-16T00:00:00', + Value: '73.751322260942', + NumberOfUnits: '64' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '74.181983375075262' + }, + Seller: { + Name: 'John Smith', + City: 'Seattle' + }, + Date: '2011-08-23T00:00:00', + Value: '40.736002680256966', + NumberOfUnits: '21' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '82.506200011124' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2011-08-25T00:00:00', + Value: '54.907956605268623', + NumberOfUnits: '467' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '42.773367531026416' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2011-09-02T00:00:00', + Value: '28.230239091548249', + NumberOfUnits: '98' + }, + { + Product: { + Name: 'Components', + UnitPrice: '83.472341757022008' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2011-09-04T00:00:00', + Value: '72.482020534799446', + NumberOfUnits: '370' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '41.552912276961337' + }, + Seller: { + Name: 'Walter Pang', + City: 'Berlin' + }, + Date: '2011-09-05T00:00:00', + Value: '80.9870070223636', + NumberOfUnits: '94' + }, + { + Product: { + Name: 'Components', + UnitPrice: '74.118408409002427' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'London' + }, + Date: '2011-09-09T00:00:00', + Value: '94.847531102061055', + NumberOfUnits: '106' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '75.404483999779671' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Sofia' + }, + Date: '2011-09-11T00:00:00', + Value: '9.8866479051702889', + NumberOfUnits: '261' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '10.227189357498283' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2011-09-17T00:00:00', + Value: '29.3933310217193', + NumberOfUnits: '307' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.929749578670481' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2011-09-17T00:00:00', + Value: '56.902403923171761', + NumberOfUnits: '362' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '85.133693080923379' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Tokyo' + }, + Date: '2011-09-24T00:00:00', + Value: '23.863435408036892', + NumberOfUnits: '330' + }, + { + Product: { + Name: 'Components', + UnitPrice: '77.595880943162314' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2011-09-26T00:00:00', + Value: '91.821283424189915', + NumberOfUnits: '23' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.362954591569931' + }, + Seller: { + Name: 'David Haley', + City: 'Berlin' + }, + Date: '2011-09-27T00:00:00', + Value: '66.76641896682159', + NumberOfUnits: '392' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '32.290426563606793' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Seattle' + }, + Date: '2011-10-13T00:00:00', + Value: '81.508681122916144', + NumberOfUnits: '16' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '62.986913725262006' + }, + Seller: { + Name: 'Lydia Burson', + City: 'New York' + }, + Date: '2011-10-13T00:00:00', + Value: '30.91040301644728', + NumberOfUnits: '100' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '13.441150036380231' + }, + Seller: { + Name: 'Carl Costello', + City: 'Berlin' + }, + Date: '2011-10-22T00:00:00', + Value: '85.46632834964727', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '0.36166957596394683' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2011-10-22T00:00:00', + Value: '74.401750589907991', + NumberOfUnits: '22' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '66.237839621602475' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2011-11-02T00:00:00', + Value: '88.135134283516152', + NumberOfUnits: '96' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '50.146415294216204' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Berlin' + }, + Date: '2011-11-03T00:00:00', + Value: '31.431514877561256', + NumberOfUnits: '76' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.8830748274378' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Mellvile' + }, + Date: '2011-11-04T00:00:00', + Value: '91.074618506745722', + NumberOfUnits: '492' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '6.5537001036823268' + }, + Seller: { + Name: 'Harry Tyler', + City: 'Berlin' + }, + Date: '2011-11-08T00:00:00', + Value: '51.458535926164373', + NumberOfUnits: '49' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.5539850124875' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Mellvile' + }, + Date: '2011-11-12T00:00:00', + Value: '20.849885521852357', + NumberOfUnits: '197' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '59.927390962805319' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Tokyo' + }, + Date: '2011-11-12T00:00:00', + Value: '70.322697409578922', + NumberOfUnits: '484' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '67.355707039756567' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Tokyo' + }, + Date: '2011-11-13T00:00:00', + Value: '14.268465300215624', + NumberOfUnits: '182' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '51.975681005034446' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2011-11-15T00:00:00', + Value: '18.371498919265111', + NumberOfUnits: '42' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '66.674518802517341' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'New York' + }, + Date: '2011-11-19T00:00:00', + Value: '52.755486291253696', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '56.137722244550346' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Mellvile' + }, + Date: '2011-11-23T00:00:00', + Value: '40.171580035319352', + NumberOfUnits: '310' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '93.530705568162119' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2012-01-03T00:00:00', + Value: '53.305936117333331', + NumberOfUnits: '306' + }, + { + Product: { + Name: 'Components', + UnitPrice: '9.5339146487107111' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Seattle' + }, + Date: '2012-01-06T00:00:00', + Value: '82.952573375288665', + NumberOfUnits: '290' + }, + { + Product: { + Name: 'Components', + UnitPrice: '41.1171674454199' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Tokyo' + }, + Date: '2012-01-10T00:00:00', + Value: '29.765262841137712', + NumberOfUnits: '499' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '9.7998786297626239' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Berlin' + }, + Date: '2012-01-11T00:00:00', + Value: '10.743231471042721', + NumberOfUnits: '7' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.580562228607278' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2012-01-14T00:00:00', + Value: '34.949488535034234', + NumberOfUnits: '220' + }, + { + Product: { + Name: 'Components', + UnitPrice: '47.282745012679484' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'New York' + }, + Date: '2012-01-15T00:00:00', + Value: '50.185166276146262', + NumberOfUnits: '395' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '14.609382960297811' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Sofia' + }, + Date: '2012-01-18T00:00:00', + Value: '99.998364085330792', + NumberOfUnits: '219' + }, + { + Product: { + Name: 'Components', + UnitPrice: '10.681285248455259' + }, + Seller: { + Name: 'Larry Lieb', + City: 'Mellvile' + }, + Date: '2012-01-18T00:00:00', + Value: '91.928496859934413', + NumberOfUnits: '229' + }, + { + Product: { + Name: 'Components', + UnitPrice: '64.914608125069464' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Mellvile' + }, + Date: '2012-01-22T00:00:00', + Value: '55.807345246806442', + NumberOfUnits: '111' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '47.909127244683511' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2012-02-01T00:00:00', + Value: '20.473314877819881', + NumberOfUnits: '237' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '87.815776368517334' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Berlin' + }, + Date: '2012-02-13T00:00:00', + Value: '17.170676690140123', + NumberOfUnits: '114' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '55.404070883711832' + }, + Seller: { + Name: 'Bryan Culver', + City: 'London' + }, + Date: '2012-02-23T00:00:00', + Value: '76.743488422009847', + NumberOfUnits: '329' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '40.75572231819654' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'Seattle' + }, + Date: '2012-02-24T00:00:00', + Value: '1.1660674592322051', + NumberOfUnits: '135' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '57.827554530383807' + }, + Seller: { + Name: 'Harold Garvin', + City: 'New York' + }, + Date: '2012-03-02T00:00:00', + Value: '46.816691358954039', + NumberOfUnits: '187' + }, + { + Product: { + Name: 'Components', + UnitPrice: '14.764199040254672' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2012-03-10T00:00:00', + Value: '17.629321207119766', + NumberOfUnits: '286' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '12.991917372211775' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'Mellvile' + }, + Date: '2012-03-11T00:00:00', + Value: '18.210936299623427', + NumberOfUnits: '468' + }, + { + Product: { + Name: 'Components', + UnitPrice: '26.013292989699771' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Tokyo' + }, + Date: '2012-03-18T00:00:00', + Value: '93.230797952614168', + NumberOfUnits: '71' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '72.623922989062933' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Mellvile' + }, + Date: '2012-03-21T00:00:00', + Value: '61.974642454634719', + NumberOfUnits: '251' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '44.430002777106132' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Berlin' + }, + Date: '2012-03-25T00:00:00', + Value: '57.137854004808631', + NumberOfUnits: '297' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '68.192056365400575' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Berlin' + }, + Date: '2012-03-25T00:00:00', + Value: '4.1927576550248808', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Components', + UnitPrice: '35.301038918691241' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'Sofia' + }, + Date: '2012-03-26T00:00:00', + Value: '45.234568391570157', + NumberOfUnits: '488' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '41.07974113015446' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Sofia' + }, + Date: '2012-04-06T00:00:00', + Value: '59.4756415856423', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Components', + UnitPrice: '29.287349586043206' + }, + Seller: { + Name: 'Stanley Brooker', + City: 'Seattle' + }, + Date: '2012-04-14T00:00:00', + Value: '3.1218397911274058', + NumberOfUnits: '149' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '51.960718329977574' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Berlin' + }, + Date: '2012-04-14T00:00:00', + Value: '9.8109557804702572', + NumberOfUnits: '99' + }, + { + Product: { + Name: 'Components', + UnitPrice: '57.838875082246432' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Seattle' + }, + Date: '2012-04-16T00:00:00', + Value: '14.041336026993271', + NumberOfUnits: '225' + }, + { + Product: { + Name: 'Components', + UnitPrice: '25.879090337957759' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Seattle' + }, + Date: '2012-04-27T00:00:00', + Value: '95.393374001324815', + NumberOfUnits: '408' + }, + { + Product: { + Name: 'Components', + UnitPrice: '4.9307178263229865' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Sofia' + }, + Date: '2012-05-09T00:00:00', + Value: '40.24019778717318', + NumberOfUnits: '417' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '3.0351963839657587' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'London' + }, + Date: '2012-05-24T00:00:00', + Value: '67.743256719663393', + NumberOfUnits: '221' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '57.525798798317929' + }, + Seller: { + Name: 'Mark Slater', + City: 'New York' + }, + Date: '2012-06-02T00:00:00', + Value: '45.347840592892766', + NumberOfUnits: '288' + }, + { + Product: { + Name: 'Components', + UnitPrice: '72.260475471737081' + }, + Seller: { + Name: 'Bryan Culver', + City: 'Berlin' + }, + Date: '2012-06-03T00:00:00', + Value: '92.767570816337866', + NumberOfUnits: '372' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '82.533464665773067' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Seattle' + }, + Date: '2012-06-03T00:00:00', + Value: '51.32937051883404', + NumberOfUnits: '408' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '91.596571026182076' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2012-06-04T00:00:00', + Value: '28.526107281691441', + NumberOfUnits: '13' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.668206756314362' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Mellvile' + }, + Date: '2012-06-05T00:00:00', + Value: '31.552386019170463', + NumberOfUnits: '487' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.269657903476457' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Sofia' + }, + Date: '2012-06-11T00:00:00', + Value: '85.914963570383833', + NumberOfUnits: '276' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '18.243998018207026' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'New York' + }, + Date: '2012-06-16T00:00:00', + Value: '40.241414001323939', + NumberOfUnits: '490' + }, + { + Product: { + Name: 'Components', + UnitPrice: '48.753350437038272' + }, + Seller: { + Name: 'Harold Garvin', + City: 'London' + }, + Date: '2012-06-18T00:00:00', + Value: '55.616326516315496', + NumberOfUnits: '238' + }, + { + Product: { + Name: 'Components', + UnitPrice: '94.427641199169514' + }, + Seller: { + Name: 'David Haley', + City: 'Tokyo' + }, + Date: '2012-06-23T00:00:00', + Value: '91.982604512936717', + NumberOfUnits: '170' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '48.675857367308744' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Mellvile' + }, + Date: '2012-07-04T00:00:00', + Value: '72.766442491098516', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '82.68037088340165' + }, + Seller: { + Name: 'Mark Slater', + City: 'Mellvile' + }, + Date: '2012-07-05T00:00:00', + Value: '56.774197684961457', + NumberOfUnits: '443' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '38.192183821551588' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'New York' + }, + Date: '2012-07-05T00:00:00', + Value: '27.482847276834232', + NumberOfUnits: '368' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '24.194019718186009' + }, + Seller: { + Name: 'Harold Garvin', + City: 'New York' + }, + Date: '2012-07-11T00:00:00', + Value: '38.517737592811571', + NumberOfUnits: '39' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '3.9898014180314729' + }, + Seller: { + Name: 'Alfredo Fetuchini', + City: 'Tokyo' + }, + Date: '2012-07-13T00:00:00', + Value: '43.237088873627172', + NumberOfUnits: '95' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '81.770755481799483' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'Berlin' + }, + Date: '2012-07-14T00:00:00', + Value: '42.55512666076195', + NumberOfUnits: '42' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '74.867355951511939' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2012-07-16T00:00:00', + Value: '61.42802050403693', + NumberOfUnits: '200' + }, + { + Product: { + Name: 'Components', + UnitPrice: '85.467303630647862' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2012-07-16T00:00:00', + Value: '10.45830762500796', + NumberOfUnits: '221' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '96.415402692004761' + }, + Seller: { + Name: 'Larry Lieb', + City: 'New York' + }, + Date: '2012-07-21T00:00:00', + Value: '99.639215692709769', + NumberOfUnits: '54' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '46.199419370945272' + }, + Seller: { + Name: 'Lydia Burson', + City: 'Tokyo' + }, + Date: '2012-07-21T00:00:00', + Value: '55.958572614918737', + NumberOfUnits: '173' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '99.843983026148749' + }, + Seller: { + Name: 'Lydia Burson', + City: 'London' + }, + Date: '2012-07-23T00:00:00', + Value: '10.833150712229847', + NumberOfUnits: '47' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '42.35462483128282' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'Mellvile' + }, + Date: '2012-07-26T00:00:00', + Value: '91.545096361797818', + NumberOfUnits: '173' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '52.198385052475324' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Mellvile' + }, + Date: '2012-08-05T00:00:00', + Value: '98.8178437570193', + NumberOfUnits: '323' + }, + { + Product: { + Name: 'Components', + UnitPrice: '45.456700048156407' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Sofia' + }, + Date: '2012-08-07T00:00:00', + Value: '26.029428060180244', + NumberOfUnits: '264' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '56.771143552274971' + }, + Seller: { + Name: 'Mark Slater', + City: 'Sofia' + }, + Date: '2012-08-09T00:00:00', + Value: '11.488629929483231', + NumberOfUnits: '385' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '3.5650837251753935' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2012-08-10T00:00:00', + Value: '25.95193755158779', + NumberOfUnits: '56' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '34.601844071690849' + }, + Seller: { + Name: 'Benjamin Dupree', + City: 'Berlin' + }, + Date: '2012-08-12T00:00:00', + Value: '96.15096314630982', + NumberOfUnits: '267' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '92.402922963911166' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Seattle' + }, + Date: '2012-08-14T00:00:00', + Value: '94.912259883672121', + NumberOfUnits: '109' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '34.719441707581019' + }, + Seller: { + Name: 'Mark Slater', + City: 'Berlin' + }, + Date: '2012-08-17T00:00:00', + Value: '62.383219023413595', + NumberOfUnits: '478' + }, + { + Product: { + Name: 'Components', + UnitPrice: '23.335559257928075' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'Berlin' + }, + Date: '2012-08-21T00:00:00', + Value: '57.657432163906023', + NumberOfUnits: '184' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '79.522237963751991' + }, + Seller: { + Name: 'Brandon Mckim', + City: 'Seattle' + }, + Date: '2012-08-21T00:00:00', + Value: '35.349668718571621', + NumberOfUnits: '132' + }, + { + Product: { + Name: 'Components', + UnitPrice: '30.645626285414036' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2012-08-22T00:00:00', + Value: '95.940469715716532', + NumberOfUnits: '142' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '89.887765138357764' + }, + Seller: { + Name: 'Carl Costello', + City: 'Seattle' + }, + Date: '2012-08-27T00:00:00', + Value: '27.453476901842972', + NumberOfUnits: '46' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '83.189849035437149' + }, + Seller: { + Name: 'Walter Pang', + City: 'Seattle' + }, + Date: '2012-09-03T00:00:00', + Value: '68.605291316567588', + NumberOfUnits: '102' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '0.10354146366172538' + }, + Seller: { + Name: 'Russell Shorter', + City: 'Berlin' + }, + Date: '2012-09-09T00:00:00', + Value: '96.593755668305676', + NumberOfUnits: '21' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '36.629343143026041' + }, + Seller: { + Name: 'Monica Freitag', + City: 'Sofia' + }, + Date: '2012-09-10T00:00:00', + Value: '4.9306348920476788', + NumberOfUnits: '442' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '92.3085672279394' + }, + Seller: { + Name: 'Harry Tyler', + City: 'New York' + }, + Date: '2012-09-13T00:00:00', + Value: '99.215311091027843', + NumberOfUnits: '254' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '28.009415291254136' + }, + Seller: { + Name: 'Nicholas Carmona', + City: 'Sofia' + }, + Date: '2012-09-13T00:00:00', + Value: '49.9100303509785', + NumberOfUnits: '251' + }, + { + Product: { + Name: 'Components', + UnitPrice: '60.30177895925091' + }, + Seller: { + Name: 'Antonio Charbonneau', + City: 'New York' + }, + Date: '2012-09-15T00:00:00', + Value: '43.926440898294764', + NumberOfUnits: '119' + }, + { + Product: { + Name: 'Bikes', + UnitPrice: '33.007745320446666' + }, + Seller: { + Name: 'Claudia Kobayashi', + City: 'New York' + }, + Date: '2012-09-19T00:00:00', + Value: '32.426872864564352', + NumberOfUnits: '256' + }, + { + Product: { + Name: 'Components', + UnitPrice: '99.002955760342516' + }, + Seller: { + Name: 'John Smith', + City: 'New York' + }, + Date: '2012-09-23T00:00:00', + Value: '35.80295570930604', + NumberOfUnits: '456' + }, + { + Product: { + Name: 'Components', + UnitPrice: '16.174323817796225' + }, + Seller: { + Name: 'Kathe Pettel', + City: 'London' + }, + Date: '2012-10-01T00:00:00', + Value: '16.358145333993317', + NumberOfUnits: '430' + }, + { + Product: { + Name: 'Components', + UnitPrice: '72.899271488608449' + }, + Seller: { + Name: 'David Haley', + City: 'Berlin' + }, + Date: '2012-10-02T00:00:00', + Value: '57.0288074934058', + NumberOfUnits: '248' + }, + { + Product: { + Name: 'Components', + UnitPrice: '21.662706984981291' + }, + Seller: { + Name: 'Harold Garvin', + City: 'Berlin' + }, + Date: '2012-10-18T00:00:00', + Value: '28.238128790742778', + NumberOfUnits: '440' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '28.342247115607488' + }, + Seller: { + Name: 'Howard Sprouse', + City: 'New York' + }, + Date: '2012-10-19T00:00:00', + Value: '66.64152637433331', + NumberOfUnits: '234' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '80.468710223431088' + }, + Seller: { + Name: 'Benjamin Meekins', + City: 'New York' + }, + Date: '2012-10-25T00:00:00', + Value: '5.2594607254767141', + NumberOfUnits: '36' + }, + { + Product: { + Name: 'Accessories', + UnitPrice: '97.686087618435764' + }, + Seller: { + Name: 'Harry Tyler', + City: 'London' + }, + Date: '2012-10-26T00:00:00', + Value: '41.233811686389991', + NumberOfUnits: '46' + }, + { + Product: { + Name: 'Components', + UnitPrice: '88.700193301169293' + }, + Seller: { + Name: 'Elisa Longbottom', + City: 'London' + }, + Date: '2012-11-02T00:00:00', + Value: '64.566657210032758', + NumberOfUnits: '211' + }, + { + Product: { + Name: 'Clothing', + UnitPrice: '67.261227205051682' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2012-11-17T00:00:00', + Value: '14.189396572387498', + NumberOfUnits: '408' + }, + { + Product: { + Name: 'Components', + UnitPrice: '7.1456905022010631' + }, + Seller: { + Name: 'Walter Pang', + City: 'New York' + }, + Date: '2012-11-20T00:00:00', + Value: '72.779385965680419', + NumberOfUnits: '376' + } +]; diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts new file mode 100644 index 000000000..f6fbc96b5 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts @@ -0,0 +1,16 @@ +import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; + +class IgcPivotGridTemplate extends IgniteUIForWebComponentsTemplate { + constructor() { + super(__dirname); + this.components = ["Pivot Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "pivot-grid"; + this.projectType = "igc-ts"; + this.name = "Pivot Grid"; + this.description = "Basic IgcPivotGrid component"; + this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; + } +} +module.exports = new IgcPivotGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/index.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/index.ts new file mode 100644 index 000000000..5ed2c3c91 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/index.ts @@ -0,0 +1,11 @@ +import { BaseComponent } from "@igniteui/cli-core"; + +class IgcPivotGridComponent extends BaseComponent { + constructor() { + super(__dirname); + this.name = "Pivot Grid"; + this.group = "Grids & Lists"; + this.description = "pick from different pivot grid views"; + } +} +module.exports = new IgcPivotGridComponent(); diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/_base/files/index.html b/packages/cli/templates/webcomponents/igc-ts/projects/_base/files/index.html index 0ddbd388a..b0470b8bd 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/_base/files/index.html +++ b/packages/cli/templates/webcomponents/igc-ts/projects/_base/files/index.html @@ -5,6 +5,7 @@ <%=ApplicationTitle%> + diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/_base_with_home/files/index.html b/packages/cli/templates/webcomponents/igc-ts/projects/_base_with_home/files/index.html index c759abc08..1548f06fb 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/_base_with_home/files/index.html +++ b/packages/cli/templates/webcomponents/igc-ts/projects/_base_with_home/files/index.html @@ -8,6 +8,7 @@ Ignite UI for Web Components + diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/index.html b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/index.html index 890fe862f..19000e30d 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/index.html +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/index.html @@ -9,6 +9,7 @@ + diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts index ce02e1fef..3fac17099 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts @@ -176,7 +176,7 @@ export default class App extends LitElement { > ${visibleRoutes.map((route) => html` this.navigate(route.path)} > { this.drawerOpen = !this.drawerOpen; }; private navigate(path: string) { - this.currentPath = path; + this.currentPath = this.toAbsPath(path); Router.go(path); if (!this.mediaQuery?.matches) { diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts index eacbec635..a4236be07 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts @@ -192,13 +192,14 @@ export default class App extends LitElement { > ${visibleRoutes.map((route) => html` this.navigate(route.path)} > ${route.name} @@ -234,12 +235,16 @@ export default class App extends LitElement { router.setRoutes(routes); } + private toAbsPath(p: string) { + return p.startsWith('/') ? p : '/' + p; + } + private toggleDrawer = () => { this.drawerOpen = !this.drawerOpen; }; private navigate(path: string) { - this.currentPath = path; + this.currentPath = this.toAbsPath(path); Router.go(path); } diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts index 172eaa16f..34318d39c 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts @@ -181,13 +181,14 @@ export default class App extends LitElement { > ${visibleRoutes.map((route) => html` this.navigate(route.path)} > ${route.name} @@ -219,12 +220,16 @@ export default class App extends LitElement { router.setRoutes(routes); } + private toAbsPath(p: string) { + return p.startsWith('/') ? p : '/' + p; + } + private toggleDrawer = () => { this.drawerOpen = !this.drawerOpen; }; private navigate(path: string) { - this.currentPath = path; + this.currentPath = this.toAbsPath(path); Router.go(path); } diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts index 45e08088c..4043ce95b 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts @@ -162,13 +162,14 @@ export default class App extends LitElement { > ${visibleRoutes.map((route) => html` this.navigate(route.path)} > ${route.name} @@ -202,12 +203,16 @@ export default class App extends LitElement { router.setRoutes(routes); } + private toAbsPath(p: string) { + return p.startsWith('/') ? p : '/' + p; + } + private toggleDrawer = () => { this.drawerOpen = !this.drawerOpen; }; private navigate(path: string) { - this.currentPath = path; + this.currentPath = this.toAbsPath(path); Router.go(path); if (!this.mediaQuery?.matches) { diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.ts new file mode 100644 index 000000000..70f0f5289 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.test.ts @@ -0,0 +1,9 @@ +import { describe, it, expect } from 'vitest'; +import $(ClassName) from './$(path).js'; + +describe('IgcTreeGridComponent', () => { + it(' is an instance of $(ClassName)', async () => { + const element = document.createElement('app-$(path)'); + expect(element).to.be.instanceOf($(ClassName)); + }); +}); diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.ts new file mode 100644 index 000000000..e2b6e9315 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/__filePrefix__.ts @@ -0,0 +1,87 @@ +import { html, css, LitElement } from 'lit'; +import { customElement, state } from 'lit/decorators.js'; +import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids'; +import { EMPLOYEE_DATA, type Employee } from './data.js'; + +import gridTheme from 'igniteui-webcomponents-grids/grids/themes/light/material.css?inline'; + +IgcTreeGridComponent.register(); + +@customElement('app-$(path)') +export default class $(ClassName) extends LitElement { + static styles = css` + :host { + display: block; + width: 100%; + } + + .page { + width: 100%; + margin-top: 40px; + padding: 0 48px; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; + } + + .title { + color: rgb(0, 153, 255); + text-align: center; + font-size: 2.5rem; + font-weight: 600; + margin-top: 0; + margin-bottom: 0; + } + + .subtitle { + text-align: center; + margin-bottom: 32px; + margin-top: 16px; + font-size: 14px; + } + + .subtitle a { + color: rgb(0, 153, 255); + } + + .grid-wrapper { + width: 100%; + max-width: 1200px; + } + `; + + @state() + data: Employee[] = EMPLOYEE_DATA; + + render() { + return html` + +
+

$(name)

+

+ IgcTreeGrid component displaying hierarchical data using a child collection.
+ You can read more about configuring the IgcTreeGrid component in the + + official documentation + . +

+
+ + + + + + +
+
+ `; + } +} diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/data.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/data.ts new file mode 100644 index 000000000..08a0d106e --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/data.ts @@ -0,0 +1,155 @@ +export interface Employee { + Age: number; + Employees?: Employee[]; + HireDate: Date; + ID: number; + Name: string; + Location: string; +} + +export const EMPLOYEE_DATA: Employee[] = [ + { + Age: 55, + Employees: [ + { + Age: 43, + Employees: [], + HireDate: new Date(2011, 6, 3), + ID: 3, + Name: 'Michael Burke', + Location: 'London' + }, + { + Age: 29, + Employees: [], + HireDate: new Date(2009, 6, 19), + ID: 2, + Name: 'Thomas Anderson', + Location: 'London' + }, + { + Age: 31, + Employees: [ + { + Age: 35, + HireDate: new Date(2015, 9, 17), + ID: 6, + Name: 'Roland Mendel', + Location: 'Tokyo' + }, + { + Age: 44, + HireDate: new Date(2009, 10, 11), + ID: 12, + Name: 'Sven Cooper', + Location: 'Tokyo' + } + ], + HireDate: new Date(2014, 8, 18), + ID: 11, + Name: 'Monica Reyes', + Location: 'London' + } + ], + HireDate: new Date(2008, 3, 20), + ID: 1, + Name: 'Johnathan Winchester', + Location: 'London' + }, + { + Age: 42, + Employees: [ + { + Age: 44, + HireDate: new Date(2014, 4, 4), + ID: 14, + Name: 'Laurence Johnson', + Location: 'New Jersey' + }, + { + Age: 25, + Employees: [ + { + Age: 39, + HireDate: new Date(2010, 3, 22), + ID: 13, + Name: 'Trevor Ashworth', + Location: 'New Jersey' + } + ], + HireDate: new Date(2017, 11, 9), + ID: 5, + Name: 'Elizabeth Richards', + Location: 'New Jersey' + } + ], + HireDate: new Date(2014, 1, 22), + ID: 4, + Name: 'Ana Sanders', + Location: 'New Jersey' + }, + { + Age: 49, + Employees: [ + { + Age: 44, + Employees: [], + HireDate: new Date(2014, 4, 4), + ID: 17, + Name: 'Antonio Moreno', + Location: 'New Jersey' + } + ], + HireDate: new Date(2014, 1, 22), + ID: 18, + Name: 'Victoria Lincoln', + Location: 'New Jersey' + }, + { + Age: 61, + Employees: [ + { + Age: 50, + Employees: [ + { + Age: 25, + Employees: [], + HireDate: new Date(2017, 11, 9), + ID: 15, + Name: 'Patricia Simpson', + Location: 'New Jersey' + }, + { + Age: 39, + HireDate: new Date(2010, 3, 22), + ID: 9, + Name: 'Francisco Chang', + Location: 'Tokyo' + }, + { + Age: 25, + HireDate: new Date(2018, 3, 18), + ID: 16, + Name: 'Peter Lewis', + Location: 'New Jersey' + } + ], + HireDate: new Date(2007, 11, 18), + ID: 7, + Name: 'Pedro Rodriguez', + Location: 'New Jersey' + }, + { + Age: 27, + HireDate: new Date(2016, 2, 19), + ID: 8, + Name: 'Casey Harper', + Location: 'Tokyo' + } + ], + HireDate: new Date(2010, 1, 1), + ID: 10, + Name: 'Yuki Onna', + Location: 'Tokyo' + } +]; diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts new file mode 100644 index 000000000..483edafed --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts @@ -0,0 +1,16 @@ +import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; + +class IgcTreeGridTemplate extends IgniteUIForWebComponentsTemplate { + constructor() { + super(__dirname); + this.components = ["Tree Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "tree-grid"; + this.projectType = "igc-ts"; + this.name = "Tree Grid"; + this.description = "IgcTreeGrid with hierarchical data"; + this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; + } +} +module.exports = new IgcTreeGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/index.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/index.ts new file mode 100644 index 000000000..385cd5190 --- /dev/null +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/index.ts @@ -0,0 +1,11 @@ +import { BaseComponent } from "@igniteui/cli-core"; + +class IgcTreeGridComponent extends BaseComponent { + constructor() { + super(__dirname); + this.name = "Tree Grid"; + this.group = "Grids & Lists"; + this.description = "pick from different tree grid views"; + } +} +module.exports = new IgcTreeGridComponent(); From 63e968f19295616b3a04a3f82ded668d2e3f1d89 Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 16:04:21 +0300 Subject: [PATCH 09/14] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../grid/default/files/src/app/__path__/__filePrefix__.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts b/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts index 438888f76..21b4e12f4 100644 --- a/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts +++ b/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts @@ -82,7 +82,7 @@ export default class $(ClassName) extends LitElement { ]; private flagTemplate = ({ cell }: any) => html` - + `; render() { From 5b78ce0e24bda3761d33b1e725691fae77c04686 Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 16:05:03 +0300 Subject: [PATCH 10/14] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../default/files/src/app/__path__/__filePrefix__.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html index 804480643..dae571b16 100644 --- a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html +++ b/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/__filePrefix__.html @@ -16,9 +16,9 @@ - - - + + + From 7302f8e66c1f1513484ed49072034af76d102726 Mon Sep 17 00:00:00 2001 From: Georgi Anastasov <48180072+georgianastasov@users.noreply.github.com> Date: Wed, 10 Jun 2026 16:06:27 +0300 Subject: [PATCH 11/14] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts b/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts index eb8a7bd20..a69fc5d70 100644 --- a/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts +++ b/packages/cli/lib/templates/IgniteUIForWebComponentsTemplate.ts @@ -52,7 +52,7 @@ export class IgniteUIForWebComponentsTemplate implements Template { !(options && options.skipRoute) && App.container.get(FS_TOKEN).fileExists(routeModulePath) ) { - const modulePath = `./${Util.lowerDashed(fullName)}/${Util.lowerDashed(fullName)}-routing` + const modulePath = `./${Util.lowerDashed(fullName)}/${Util.lowerDashed(fullName)}-routing`; const componentTag = `app-${this.fileName(fullName)}`; const child: RouteLike = { identifierName: ROUTES_VARIABLE_NAME, From 4eb5322ff75cdc728bff4e45166c5f42272dfb60 Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Wed, 10 Jun 2026 16:20:48 +0300 Subject: [PATCH 12/14] fix(components): normalize router navigation paths --- .../igc-ts/projects/side-nav-auth/files/src/app/app.ts | 6 ++++-- .../igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts | 6 ++++-- .../igc-ts/projects/side-nav-mini/files/src/app/app.ts | 6 ++++-- .../igc-ts/projects/side-nav/files/src/app/app.ts | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts index 3fac17099..3b0d9f503 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-auth/files/src/app/app.ts @@ -229,8 +229,10 @@ export default class App extends LitElement { }; private navigate(path: string) { - this.currentPath = this.toAbsPath(path); - Router.go(path); + const targetPath = this.toAbsPath(path); + + this.currentPath = targetPath; + Router.go(targetPath); if (!this.mediaQuery?.matches) { this.drawerOpen = false; diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts index a4236be07..9f48cc336 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini-auth/files/src/app/app.ts @@ -244,8 +244,10 @@ export default class App extends LitElement { }; private navigate(path: string) { - this.currentPath = this.toAbsPath(path); - Router.go(path); + const targetPath = this.toAbsPath(path); + + this.currentPath = targetPath; + Router.go(targetPath); } private updateDrawerState = () => { diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts index 34318d39c..df8915e24 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav-mini/files/src/app/app.ts @@ -229,8 +229,10 @@ export default class App extends LitElement { }; private navigate(path: string) { - this.currentPath = this.toAbsPath(path); - Router.go(path); + const targetPath = this.toAbsPath(path); + + this.currentPath = targetPath; + Router.go(targetPath); } private updateDrawerState = () => { diff --git a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts index 4043ce95b..e04e34dae 100644 --- a/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts +++ b/packages/cli/templates/webcomponents/igc-ts/projects/side-nav/files/src/app/app.ts @@ -212,8 +212,10 @@ export default class App extends LitElement { }; private navigate(path: string) { - this.currentPath = this.toAbsPath(path); - Router.go(path); + const targetPath = this.toAbsPath(path); + + this.currentPath = targetPath; + Router.go(targetPath); if (!this.mediaQuery?.matches) { this.drawerOpen = false; From f1fc98e0d73688dd4a29f181735ad5851830e72e Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Thu, 11 Jun 2026 13:11:19 +0300 Subject: [PATCH 13/14] fix(components): add shared data path for template components files --- .../grid/files/src/app/__path__/data.ts} | 0 .../files/src/app/__path__/data.ts | 0 .../files/src/app/__path__/data.ts | 0 .../tree-grid}/files/src/app/__path__/data.ts | 0 .../files/src/app/__path__/__filePrefix__.tsx | 36 +- .../basic/files/src/app/__path__/data.tsx | 46 - .../react/igr-ts/grid/basic/index.ts | 40 +- .../basic/files/src/app/__path__/data.tsx | 1038 --- .../igr-ts/hierarchical-grid/basic/index.ts | 10 + .../basic/files/src/app/__path__/data.tsx | 6502 ----------------- .../react/igr-ts/pivot-grid/basic/index.ts | 10 + .../basic/files/src/app/__path__/data.tsx | 155 - .../react/igr-ts/tree-grid/basic/index.ts | 10 + .../files/src/app/__path__/__filePrefix__.ts | 55 +- .../igc-ts/grid/default/index.ts | 32 +- .../basic/files/src/app/__path__/data.ts | 1038 --- .../igc-ts/hierarchical-grid/basic/index.ts | 10 + .../igc-ts/pivot-grid/basic/index.ts | 10 + .../igc-ts/tree-grid/basic/index.ts | 10 + .../files/src/app/__path__/__filePrefix__.ts | 2 +- .../igx-ts/grid/default/index.ts | 32 +- .../igx-ts/hierarchical-grid/default/index.ts | 32 +- .../default/files/src/app/__path__/data.ts | 6502 ----------------- .../igx-ts/pivot-grid/default/index.ts | 30 +- .../files/src/app/__path__/__filePrefix__.ts | 2 +- .../files/src/app/__path__/localData.ts | 155 - .../tree-grid/tree-grid-custom/index.ts | 10 + 27 files changed, 214 insertions(+), 15553 deletions(-) rename packages/{igx-templates/igx-ts/grid/default/files/src/app/__path__/localData.ts => cli/shared-data/grid/files/src/app/__path__/data.ts} (100%) rename packages/{igx-templates/igx-ts/hierarchical-grid/default => cli/shared-data/hierarchical-grid}/files/src/app/__path__/data.ts (100%) rename packages/cli/{templates/webcomponents/igc-ts/pivot-grid/basic => shared-data/pivot-grid}/files/src/app/__path__/data.ts (100%) rename packages/cli/{templates/webcomponents/igc-ts/tree-grid/basic => shared-data/tree-grid}/files/src/app/__path__/data.ts (100%) delete mode 100644 packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/data.tsx delete mode 100644 packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx delete mode 100644 packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx delete mode 100644 packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx delete mode 100644 packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts delete mode 100644 packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/data.ts delete mode 100644 packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/localData.ts diff --git a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/localData.ts b/packages/cli/shared-data/grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/localData.ts rename to packages/cli/shared-data/grid/files/src/app/__path__/data.ts diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/data.ts b/packages/cli/shared-data/hierarchical-grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/igx-templates/igx-ts/hierarchical-grid/default/files/src/app/__path__/data.ts rename to packages/cli/shared-data/hierarchical-grid/files/src/app/__path__/data.ts diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/data.ts b/packages/cli/shared-data/pivot-grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/files/src/app/__path__/data.ts rename to packages/cli/shared-data/pivot-grid/files/src/app/__path__/data.ts diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/data.ts b/packages/cli/shared-data/tree-grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/files/src/app/__path__/data.ts rename to packages/cli/shared-data/tree-grid/files/src/app/__path__/data.ts diff --git a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx index be9a64fda..e2d1ac522 100644 --- a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx +++ b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx @@ -2,7 +2,7 @@ import style from './style.module.css'; import { IgrGrid, IgrColumn } from 'igniteui-react-grids'; import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; -import data from './data'; +import { employeesData } from './data'; export default function $(ClassName)() { const title = '$(name)'; @@ -18,32 +18,42 @@ export default function $(ClassName)() { .

- + + field="EmployeeID" + header="Employee ID" + dataType="string"> + + + +
diff --git a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/data.tsx deleted file mode 100644 index 54ff21bd4..000000000 --- a/packages/cli/templates/react/igr-ts/grid/basic/files/src/app/__path__/data.tsx +++ /dev/null @@ -1,46 +0,0 @@ -export default [{ - Discontinued: false, - OrderDate: new Date('2012-02-12'), - ProductID: 1, - ProductName: 'Chai', - QuantityPerUnit: '10 boxes x 20 bags', - ReorderLevel: 10, - UnitPrice: 18.0000, - UnitsInStock: 39 -}, { - Discontinued: false, - OrderDate: new Date('2003-03-17'), - ProductID: 2, - ProductName: 'Chang', - QuantityPerUnit: '24 - 12 oz bottles', - ReorderLevel: 25, - UnitPrice: 19.0000, - UnitsInStock: 17 -}, { - Discontinued: false, - OrderDate: new Date('2006-03-17'), - ProductID: 3, - ProductName: 'Aniseed Syrup', - QuantityPerUnit: '12 - 550 ml bottles', - ReorderLevel: 25, - UnitPrice: 10.0000, - UnitsInStock: 13 -}, { - Discontinued: false, - OrderDate: new Date('2016-03-17'), - ProductID: 4, - ProductName: 'Chef Antons Cajun Seasoning', - QuantityPerUnit: '48 - 6 oz jars', - ReorderLevel: 0, - UnitPrice: 22.0000, - UnitsInStock: 53 -}, { - Discontinued: true, - OrderDate: new Date('2011-11-11'), - ProductID: 5, - ProductName: 'Chef Antons Gumbo Mix', - QuantityPerUnit: '36 boxes', - ReorderLevel: 0, - UnitPrice: 21.3500, - UnitsInStock: 0 -}]; diff --git a/packages/cli/templates/react/igr-ts/grid/basic/index.ts b/packages/cli/templates/react/igr-ts/grid/basic/index.ts index a6ad1af75..90de0455f 100644 --- a/packages/cli/templates/react/igr-ts/grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/grid/basic/index.ts @@ -1,23 +1,33 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class GridTemplate extends IgniteUIForReactTemplate { - /** - * - */ - constructor() { - super(__dirname); - this.id = "grid"; - this.name = "Grid"; - this.widget = "igGrid"; - this.description = "IgrGrid template for React"; - this.projectType = "igr-ts"; - this.components = ["Grid"]; - this.controlGroup = "Data Grids"; - this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; + /** + * + */ + constructor() { + super(__dirname); + this.id = "grid"; + this.name = "Grid"; + this.widget = "igGrid"; + this.description = "IgrGrid template for React"; + this.projectType = "igr-ts"; + this.components = ["Grid"]; + this.controlGroup = "Data Grids"; + this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; + + this.hasExtraConfiguration = false; + } - this.hasExtraConfiguration = false; - } + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "grid", "files") + ]; + } } module.exports = new GridTemplate(); diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx deleted file mode 100644 index 300fa1f90..000000000 --- a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/files/src/app/__path__/data.tsx +++ /dev/null @@ -1,1038 +0,0 @@ -export interface Artist { - Artist: string; - HasGrammyAward: boolean; - Debut: number; - GrammyNominations: number; - GrammyAwards: number; - Albums?: Album[]; -} - -export interface Album { - Album: string; - LaunchDate: Date; - BillboardReview: number; - USBillboard200: number; - Artist: string; - Songs?: Song[]; -} - -export interface Song { - TrackNumber: string; - Title: string; - Released: string; - Genre: string; - Album: string; -} - -export const ARTISTS: Artist[] = [ - { - Artist: "Naomí Yepes", - HasGrammyAward: false, - Debut: 2011, - GrammyNominations: 6, - GrammyAwards: 0, - Albums: [ - { - Album: "Initiation", - LaunchDate: new Date("September 3, 2013"), - BillboardReview: 86, - USBillboard200: 1, - Artist: "Naomí Yepes" - }, - { - Album: "Dream Driven", - LaunchDate: new Date("August 25, 2014"), - BillboardReview: 81, - USBillboard200: 1, - Artist: "Naomí Yepes", - Songs: [ - { - TrackNumber: "1", - Title: "Intro", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "2", - Title: "Ferocious", - Released: "28-Apr-2014", - Genre: "Dance-pop R&B", - Album: "Dream Driven" - }, - { - TrackNumber: "3", - Title: "Going crazy", - Released: "10-Feb-2015", - Genre: "Dance-pop EDM", - Album: "Dream Driven" - }, - { - TrackNumber: "4", - Title: "Future past", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "5", - Title: "Roaming like them", - Released: "2-Jul-2014", - Genre: "Electro house Electropop", - Album: "Dream Driven" - }, - { - TrackNumber: "6", - Title: "Last Wishes", - Released: "12-Aug-2014", - Genre: "R&B", - Album: "Dream Driven" - }, - { - TrackNumber: "7", - Title: "Stay where you are", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "8", - Title: "Imaginarium", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "9", - Title: "Tell me", - Released: "30-Sep-2014", - Genre: "Synth-pop R&B", - Album: "Dream Driven" - }, - { - TrackNumber: "10", - Title: "Shredded into pieces", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "11", - Title: "Capture this moment", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "12", - Title: "Dream Driven", - Released: "*", - Genre: "*", - Album: "Dream Driven" - } - ] - }, - { - Album: "The dragon journey", - LaunchDate: new Date("May 20, 2016"), - BillboardReview: 60, - USBillboard200: 2, - Artist: "Naomí Yepes" - }, - { - Album: "Organic me", - LaunchDate: new Date("August 17, 2018"), - BillboardReview: 82, - USBillboard200: 1, - Artist: "Naomí Yepes", - Songs: [ - { - TrackNumber: "1", - Title: "I Love", - Released: "11-May-2019", - Genre: "Crunk reggaeton", - Album: "Organic me" - }, - { - TrackNumber: "2", - Title: "Early Morning Compass", - Released: "15-Jan-2020", - Genre: "mystical parody-bap ", - Album: "Organic me" - }, - { - TrackNumber: "3", - Title: "Key Fields Forever", - Released: "2-Jan-2020", - Genre: "Dance-pop EDM", - Album: "Organic me" - }, - { - TrackNumber: "4", - Title: "Stand by Your Goblins", - Released: "20-Nov-2019", - Genre: "*", - Album: "Organic me" - }, - { - TrackNumber: "5", - Title: "Mad to Walk", - Released: "12-May-2019", - Genre: "Electro house Electropop", - Album: "Organic me" - }, - { - TrackNumber: "6", - Title: "Alice's Waiting", - Released: "28-Jan-2020", - Genre: "R&B", - Album: "Organic me" - }, - { - TrackNumber: "7", - Title: "We Shall Kiss", - Released: "30-Oct-2019", - Genre: "*", - Album: "Organic me" - }, - { - TrackNumber: "8", - Title: "Behind Single Ants", - Released: "2-Oct-2019", - Genre: "*", - Album: "Organic me" - }, - { - TrackNumber: "9", - Title: "Soap Autopsy", - Released: "8-Aug-2019", - Genre: "Synth-pop R&B", - Album: "Organic me" - }, - { - TrackNumber: "10", - Title: "Have You Met Rich?", - Released: "1-Jul-2019", - Genre: "ethno-tunes", - Album: "Organic me" - }, - { - TrackNumber: "11", - Title: "Livin' on a Banana", - Released: "22-Nov-2019", - Genre: "Crunk reggaeton", - Album: "Organic me" - } - ] - }, - { - Album: "Curiosity", - LaunchDate: new Date("December 7, 2019"), - BillboardReview: 75, - USBillboard200: 12, - Artist: "Naomí Yepes" - } - ] - }, - { - Artist: "Babila Ebwélé", - HasGrammyAward: true, - Debut: 2009, - GrammyNominations: 0, - GrammyAwards: 11, - Albums: [ - { - Album: "Pushing up daisies", - LaunchDate: new Date("May 31, 2000"), - BillboardReview: 86, - USBillboard200: 42, - Artist: "Babila Ebwélé", - Songs: [ - { - TrackNumber: "1", - Title: "Wood Shavings Forever", - Released: "9-Jun-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "2", - Title: "Early Morning Drive", - Released: "20-May-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "3", - Title: "Don't Natter", - Released: "10-Jun-2019", - Genre: "adult calypso-industrial", - Album: "Pushing up daisies" - }, - { - TrackNumber: "4", - Title: "Stairway to Balloons", - Released: "18-Jun-2019", - Genre: "calypso and mariachi", - Album: "Pushing up daisies" - }, - { - TrackNumber: "5", - Title: "The Number of your Apple", - Released: "29-Oct-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "6", - Title: "Your Delightful Heart", - Released: "24-Feb-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "7", - Title: "Nice Weather For Balloons", - Released: "1-Aug-2019", - Genre: "rap-hop", - Album: "Pushing up daisies" - }, - { - TrackNumber: "8", - Title: "The Girl From Cornwall", - Released: "4-May-2019", - Genre: "enigmatic rock-and-roll", - Album: "Pushing up daisies" - }, - { - TrackNumber: "9", - Title: "Here Without Jack", - Released: "24-Oct-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "10", - Title: "Born Rancid", - Released: "19-Mar-2019", - Genre: "*", - Album: "Pushing up daisies" - } - ] - }, - { - Album: "Death's dead", - LaunchDate: new Date("June 8, 2016"), - BillboardReview: 85, - USBillboard200: 95, - Artist: "Babila Ebwélé", - Songs: [ - { - TrackNumber: "1", - Title: "Men Sound Better With You", - Released: "20-Oct-2019", - Genre: "rap-hop", - Album: "Death's dead" - }, - { - TrackNumber: "2", - Title: "Ghost in My Rod", - Released: "5-Oct-2019", - Genre: "enigmatic rock-and-roll", - Album: "Death's dead" - }, - { - TrackNumber: "3", - Title: "Bed of Men", - Released: "14-Nov-2019", - Genre: "whimsical comedy-grass ", - Album: "Death's dead" - }, - { - TrackNumber: "4", - Title: "Don't Push", - Released: "2-Jan-2020", - Genre: "unblack electronic-trip-hop", - Album: "Death's dead" - }, - { - TrackNumber: "5", - Title: "Nice Weather For Men", - Released: "18-Dec-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "6", - Title: "Rancid Rhapsody", - Released: "10-Mar-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "7", - Title: "Push, Push, Push!", - Released: "21-Feb-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "8", - Title: "My Name is Sarah", - Released: "15-Nov-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "9", - Title: "The Girl From My Hotel", - Released: "6-Nov-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "10", - Title: "Free Box", - Released: "18-Apr-2019", - Genre: "splitter-funk", - Album: "Death's dead" - }, - { - TrackNumber: "11", - Title: "Hotel Cardiff", - Released: "30-Dec-2019", - Genre: "guilty pleasure ebm", - Album: "Death's dead" - } - ] - } - ] - }, - { - Artist: "Ahmad Nazeri", - HasGrammyAward: true, - Debut: 2004, - GrammyNominations: 3, - GrammyAwards: 1, - Albums: [ - { - Album: "Emergency", - LaunchDate: new Date("March 6, 2004"), - BillboardReview: 98, - USBillboard200: 69, - Artist: "Ahmad Nazeri" - }, - { - Album: "Bursting bubbles", - LaunchDate: new Date("April 17, 2006"), - BillboardReview: 69, - USBillboard200: 39, - Artist: "Ahmad Nazeri" - } - ] - }, - { - Artist: "Kimmy McIlmorie", - HasGrammyAward: true, - Debut: 2007, - GrammyNominations: 21, - GrammyAwards: 3, - Albums: [ - { - Album: "Here we go again", - LaunchDate: new Date("November 18, 2017"), - BillboardReview: 68, - USBillboard200: 1, - Artist: "Kimmy McIlmorie" - } - ] - }, - { - Artist: "Mar Rueda", - HasGrammyAward: true, - Debut: 1996, - GrammyNominations: 14, - GrammyAwards: 2 - }, - { - Artist: "Izabella Tabakova", - HasGrammyAward: true, - Debut: 2017, - GrammyNominations: 7, - GrammyAwards: 11, - Albums: [ - { - Album: "Once bitten", - LaunchDate: new Date("July 16, 2007"), - BillboardReview: 79, - USBillboard200: 53, - Artist: "Izabella Tabakova", - Songs: [ - { - TrackNumber: "1", - Title: "Whole Lotta Super Cats", - Released: "21-May-2019", - Genre: "*", - Album: "Once bitten" - }, - { - TrackNumber: "2", - Title: "Enter Becky", - Released: "16-Jan-2020", - Genre: "*", - Album: "Once bitten" - }, - { - TrackNumber: "3", - Title: "Your Cheatin' Flamingo", - Released: "14-Jan-2020", - Genre: "*", - Album: "Once bitten" - }, - { - TrackNumber: "4", - Title: "Mad to Kiss", - Released: "6-Nov-2019", - Genre: "Synth-pop R&B", - Album: "Once bitten" - }, - { - TrackNumber: "5", - Title: "Hotel Prague", - Released: "20-Oct-2019", - Genre: "ethno-tunes", - Album: "Once bitten" - }, - { - TrackNumber: "6", - Title: "Jail on My Mind", - Released: "31-May-2019", - Genre: "Crunk reggaeton", - Album: "Once bitten" - }, - { - TrackNumber: "7", - Title: "Amazing Blues", - Released: "29-May-2019", - Genre: "mystical parody-bap ", - Album: "Once bitten" - }, - { - TrackNumber: "8", - Title: "Goody Two Iron Filings", - Released: "4-Jul-2019", - Genre: "Electro house Electropop", - Album: "Once bitten" - }, - { - TrackNumber: "9", - Title: "I Love in Your Arms", - Released: "7-Jun-2019", - Genre: "R&B", - Album: "Once bitten" - }, - { - TrackNumber: "10", - Title: "Truly Madly Amazing", - Released: "12-Sep-2019", - Genre: "ethno-tunes", - Album: "Once bitten" - } - ] - }, - { - Album: "Your graciousness", - LaunchDate: new Date("November 17, 2004"), - BillboardReview: 69, - USBillboard200: 30, - Artist: "Izabella Tabakova", - Songs: [ - { - TrackNumber: "1", - Title: "We Shall Tickle", - Released: "31-Aug-2019", - Genre: "old emo-garage ", - Album: "Your graciousness" - }, - { - TrackNumber: "2", - Title: "Snail Boogie", - Released: "14-Jun-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "3", - Title: "Amazing Liz", - Released: "15-Oct-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "4", - Title: "When Sexy Aardvarks Cry", - Released: "1-Oct-2019", - Genre: "whimsical comedy-grass ", - Album: "Your graciousness" - }, - { - TrackNumber: "5", - Title: "Stand By Dave", - Released: "18-Aug-2019", - Genre: "unblack electronic-trip-hop", - Album: "Your graciousness" - }, - { - TrackNumber: "6", - Title: "The Golf Course is Your Land", - Released: "2-Apr-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "7", - Title: "Where Have All the Men Gone?", - Released: "29-Apr-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "8", - Title: "Rhythm of the Leg", - Released: "5-Aug-2019", - Genre: "ethno-tunes", - Album: "Your graciousness" - }, - { - TrackNumber: "9", - Title: "Baby, I Need Your Hats", - Released: "5-Dec-2019", - Genre: "neuro-tunes", - Album: "Your graciousness" - }, - { - TrackNumber: "10", - Title: "Stand by Your Cat", - Released: "25-Jul-2019", - Genre: "*", - Album: "Your graciousness" - } - ] - }, - { - Album: "Dark matters", - LaunchDate: new Date("November 3, 2002"), - BillboardReview: 79, - USBillboard200: 85, - Artist: "Izabella Tabakova" - } - ] - }, - { - Artist: "Nguyễn Diệp Chi", - HasGrammyAward: true, - Debut: 1992, - GrammyNominations: 4, - GrammyAwards: 2, - Albums: [ - { - Album: "Library of liberty", - LaunchDate: new Date("December 22, 2003"), - BillboardReview: 93, - USBillboard200: 5, - Artist: "Nguyễn Diệp Chi" - } - ] - }, - { - Artist: "Eva Lee", - HasGrammyAward: false, - Debut: 2008, - GrammyNominations: 2, - GrammyAwards: 0, - Albums: [ - { - Album: "Just a tease", - LaunchDate: new Date("May 3, 2001"), - BillboardReview: 91, - USBillboard200: 29, - Artist: "Eva Lee" - } - ] - }, - { - Artist: "Siri Jakobsson", - HasGrammyAward: true, - Debut: 1990, - GrammyNominations: 2, - GrammyAwards: 8, - Albums: [ - { - Album: "Under the bus", - LaunchDate: new Date("May 14, 2000"), - BillboardReview: 67, - USBillboard200: 67, - Artist: "Siri Jakobsson", - Songs: [ - { - TrackNumber: "1", - Title: "Jack Broke My Heart At Tesco's", - Released: "19-Jan-2020", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "2", - Title: "Cat Deep, Hats High", - Released: "5-Dec-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "3", - Title: "In Snail We Trust", - Released: "31-May-2019", - Genre: "hardcore opera", - Album: "Under the bus" - }, - { - TrackNumber: "4", - Title: "Liz's Waiting", - Released: "22-Jul-2019", - Genre: "emotional C-jam ", - Album: "Under the bus" - }, - { - TrackNumber: "5", - Title: "Lifeless Blues", - Released: "14-Jun-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "6", - Title: "I Spin", - Released: "26-Mar-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "7", - Title: "Ring of Rock", - Released: "12-Dec-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "8", - Title: "Livin' on a Rock", - Released: "17-Apr-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "9", - Title: "Your Lifeless Heart", - Released: "15-Sep-2019", - Genre: "adult calypso-industrial", - Album: "Under the bus" - }, - { - TrackNumber: "10", - Title: "The High Street on My Mind", - Released: "11-Nov-2019", - Genre: "calypso and mariachi", - Album: "Under the bus" - }, - { - TrackNumber: "11", - Title: "Behind Ugly Curtains", - Released: "8-May-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "12", - Title: "Where Have All the Curtains Gone?", - Released: "28-Jun-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "13", - Title: "Ghost in My Apple", - Released: "14-Dec-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "14", - Title: "I Chatter", - Released: "30-Nov-2019", - Genre: "*", - Album: "Under the bus" - } - ] - } - ] - }, - { - Artist: "Pablo Cambeiro", - HasGrammyAward: false, - Debut: 2011, - GrammyNominations: 5, - GrammyAwards: 0, - Albums: [ - { - Album: "Fluke", - LaunchDate: new Date("August 4, 2017"), - BillboardReview: 93, - USBillboard200: 98, - Artist: "Pablo Cambeiro" - }, - { - Album: "Crowd control", - LaunchDate: new Date("August 26, 2003"), - BillboardReview: 68, - USBillboard200: 84, - Artist: "Pablo Cambeiro", - Songs: [ - { - TrackNumber: "1", - Title: "My Bed on My Mind", - Released: "25-Mar-2019", - Genre: "ethno-tunes", - Album: "Crowd control" - }, - { - TrackNumber: "2", - Title: "Bright Blues", - Released: "28-Sep-2019", - Genre: "neuro-tunes", - Album: "Crowd control" - }, - { - TrackNumber: "3", - Title: "Sail, Sail, Sail!", - Released: "5-Mar-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "4", - Title: "Hotel My Bed", - Released: "22-Mar-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "5", - Title: "Gonna Make You Mash", - Released: "18-May-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "6", - Title: "Straight Outta America", - Released: "16-Jan-2020", - Genre: "hardcore opera", - Album: "Crowd control" - }, - { - TrackNumber: "7", - Title: "I Drive", - Released: "23-Feb-2019", - Genre: "emotional C-jam ", - Album: "Crowd control" - }, - { - TrackNumber: "8", - Title: "Like a Teddy", - Released: "31-Aug-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "9", - Title: "Teddy Boogie", - Released: "30-Nov-2019", - Genre: "*", - Album: "Crowd control" - } - ] - } - ] - }, - { - Artist: "Athar Malakooti", - HasGrammyAward: false, - Debut: 2017, - GrammyNominations: 0, - GrammyAwards: 0, - Albums: [ - { - Album: "Pushing up daisies", - LaunchDate: new Date("February 24, 2016"), - BillboardReview: 74, - USBillboard200: 77, - Artist: "Athar Malakooti" - } - ] - }, - { - Artist: "Marti Valencia", - HasGrammyAward: true, - Debut: 2004, - GrammyNominations: 1, - GrammyAwards: 1, - Albums: [ - { - Album: "Nemesis", - LaunchDate: new Date("June 30, 2004"), - BillboardReview: 94, - USBillboard200: 9, - Artist: "Marti Valencia" - }, - { - Album: "First chance", - LaunchDate: new Date("January 7, 2019"), - BillboardReview: 96, - USBillboard200: 19, - Artist: "Marti Valencia", - Songs: [ - { - TrackNumber: "1", - Title: "My Name is Jason", - Released: "12-Jul-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "2", - Title: "Amazing Andy", - Released: "5-Mar-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "3", - Title: "The Number of your Knight", - Released: "4-Dec-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "4", - Title: "I Sail", - Released: "3-Mar-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "5", - Title: "Goody Two Hands", - Released: "11-Oct-2019", - Genre: "Electro house Electropop", - Album: "First chance" - }, - { - TrackNumber: "6", - Title: "Careful With That Knife", - Released: "18-Dec-2019", - Genre: "R&B", - Album: "First chance" - }, - { - TrackNumber: "7", - Title: "Four Single Ants", - Released: "18-Jan-2020", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "8", - Title: "Kiss Forever", - Released: "10-Aug-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "9", - Title: "Rich's Waiting", - Released: "15-Mar-2019", - Genre: "Synth-pop R&B", - Album: "First chance" - }, - { - TrackNumber: "10", - Title: "Japan is Your Land", - Released: "7-Mar-2019", - Genre: "ethno-tunes", - Album: "First chance" - }, - { - TrackNumber: "11", - Title: "Pencils in My Banana", - Released: "21-Jun-2019", - Genre: "Crunk reggaeton", - Album: "First chance" - }, - { - TrackNumber: "12", - Title: "I Sail in Your Arms", - Released: "30-Apr-2019", - Genre: "Synth-pop R&B", - Album: "First chance" - } - ] - }, - { - Album: "God's advocate", - LaunchDate: new Date("April 29, 2007"), - BillboardReview: 66, - USBillboard200: 37, - Artist: "Marti Valencia" - } - ] - }, - { - Artist: "Alicia Stanger", - HasGrammyAward: false, - Debut: 2010, - GrammyNominations: 1, - GrammyAwards: 0, - Albums: [ - { - Album: "Forever alone", - LaunchDate: new Date("November 3, 2005"), - BillboardReview: 82, - USBillboard200: 7, - Artist: "Alicia Stanger" - } - ] - }, - { - Artist: "Peter Taylor", - HasGrammyAward: true, - Debut: 2005, - GrammyNominations: 0, - GrammyAwards: 2, - Albums: [ - { - Album: "Decisions decisions", - LaunchDate: new Date("April 10, 2008"), - BillboardReview: 85, - USBillboard200: 35, - Artist: "Peter Taylor" - }, - { - Album: "Climate changed", - LaunchDate: new Date("June 20, 2015"), - BillboardReview: 66, - USBillboard200: 89, - Artist: "Peter Taylor" - } - ] - } -]; diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts index 573c24726..de52c8ce7 100644 --- a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts @@ -1,5 +1,8 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class HierarchicalGridTemplate extends IgniteUIForReactTemplate { constructor() { @@ -14,5 +17,12 @@ class HierarchicalGridTemplate extends IgniteUIForReactTemplate { this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; this.hasExtraConfiguration = false; } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "hierarchical-grid", "files") + ]; + } } module.exports = new HierarchicalGridTemplate(); diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx deleted file mode 100644 index 8fa57cd86..000000000 --- a/packages/cli/templates/react/igr-ts/pivot-grid/basic/files/src/app/__path__/data.tsx +++ /dev/null @@ -1,6502 +0,0 @@ -export const DATA: any = [ - { - Product: { - Name: 'Clothing', - UnitPrice: '12.814860936633712' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2007-01-01T00:00:00', - Value: '94.2652032683907', - NumberOfUnits: '282' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '49.579375120615296' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2007-01-05T00:00:00', - Value: '70.798922689072285', - NumberOfUnits: '296' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '3.5653273591610266' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2007-01-06T00:00:00', - Value: '35.799331607203619', - NumberOfUnits: '68' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '85.581758145979492' - }, - Seller: { - Name: 'David Haley', - City: 'London' - }, - Date: '2007-01-07T00:00:00', - Value: '41.411331268684627', - NumberOfUnits: '293' - }, - { - Product: { - Name: 'Components', - UnitPrice: '18.137625846144569' - }, - Seller: { - Name: 'John Smith', - City: 'Seattle' - }, - Date: '2007-01-08T00:00:00', - Value: '60.474313730594851', - NumberOfUnits: '240' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '68.330973139186852' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Tokyo' - }, - Date: '2007-01-12T00:00:00', - Value: '37.920727319047195', - NumberOfUnits: '456' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.056252511244384' - }, - Seller: { - Name: 'Walter Pang', - City: 'Sofia' - }, - Date: '2007-02-09T00:00:00', - Value: '89.1950179306767', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.235206612960994' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Tokyo' - }, - Date: '2007-02-16T00:00:00', - Value: '1.8611075365269125', - NumberOfUnits: '78' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '73.215433663323253' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2007-02-17T00:00:00', - Value: '4.611142726899657', - NumberOfUnits: '150' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '73.614934400476017' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'London' - }, - Date: '2007-02-19T00:00:00', - Value: '36.1731772013815', - NumberOfUnits: '262' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '47.080544683654111' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2007-02-21T00:00:00', - Value: '18.699740766873461', - NumberOfUnits: '125' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '51.298256382019382' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Sofia' - }, - Date: '2007-03-04T00:00:00', - Value: '11.600706917979151', - NumberOfUnits: '42' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '27.466344333936622' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2007-03-04T00:00:00', - Value: '41.252478603856865', - NumberOfUnits: '282' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '22.374118083330856' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2007-03-17T00:00:00', - Value: '59.82648998490837', - NumberOfUnits: '305' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '85.292836504659078' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Tokyo' - }, - Date: '2007-03-23T00:00:00', - Value: '31.430979925874148', - NumberOfUnits: '265' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '80.675564091967217' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2007-03-25T00:00:00', - Value: '90.425077402230855', - NumberOfUnits: '350' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.613919642108456' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Mellvile' - }, - Date: '2007-03-27T00:00:00', - Value: '95.393439147338938', - NumberOfUnits: '82' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.041336636078235' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2007-04-02T00:00:00', - Value: '1.2766330043210803', - NumberOfUnits: '67' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '16.311566166724809' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Mellvile' - }, - Date: '2007-04-04T00:00:00', - Value: '25.354673632120097', - NumberOfUnits: '370' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '49.852171563474542' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Berlin' - }, - Date: '2007-04-12T00:00:00', - Value: '46.315344491189045', - NumberOfUnits: '228' - }, - { - Product: { - Name: 'Components', - UnitPrice: '44.761602042597531' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Tokyo' - }, - Date: '2007-04-15T00:00:00', - Value: '82.180273524569472', - NumberOfUnits: '272' - }, - { - Product: { - Name: 'Components', - UnitPrice: '44.395412618478488' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Berlin' - }, - Date: '2007-04-18T00:00:00', - Value: '83.970713701085515', - NumberOfUnits: '227' - }, - { - Product: { - Name: 'Components', - UnitPrice: '39.287860616709978' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2007-04-18T00:00:00', - Value: '94.261160769621455', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '36.581183335083153' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Tokyo' - }, - Date: '2007-04-21T00:00:00', - Value: '45.74127162142716', - NumberOfUnits: '414' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '75.8285212217963' - }, - Seller: { - Name: 'Walter Pang', - City: 'London' - }, - Date: '2007-04-25T00:00:00', - Value: '97.593172917884388', - NumberOfUnits: '43' - }, - { - Product: { - Name: 'Components', - UnitPrice: '57.757038929386553' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2007-04-26T00:00:00', - Value: '20.936109088797174', - NumberOfUnits: '71' - }, - { - Product: { - Name: 'Components', - UnitPrice: '40.231876140568346' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'New York' - }, - Date: '2007-05-14T00:00:00', - Value: '71.862645294453316', - NumberOfUnits: '321' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '49.525128002057379' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'London' - }, - Date: '2007-05-17T00:00:00', - Value: '49.451349419286174', - NumberOfUnits: '329' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '56.460825706115379' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2007-05-17T00:00:00', - Value: '72.704781020388381', - NumberOfUnits: '88' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '67.129778008502811' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'New York' - }, - Date: '2007-05-26T00:00:00', - Value: '56.169638576065019', - NumberOfUnits: '366' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.628920431541708' - }, - Seller: { - Name: 'Walter Pang', - City: 'Sofia' - }, - Date: '2007-06-02T00:00:00', - Value: '81.322212508563979', - NumberOfUnits: '450' - }, - { - Product: { - Name: 'Components', - UnitPrice: '89.2609520299644' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2007-06-06T00:00:00', - Value: '18.962721814849751', - NumberOfUnits: '475' - }, - { - Product: { - Name: 'Components', - UnitPrice: '33.752368871938607' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2007-06-11T00:00:00', - Value: '54.870849966477067', - NumberOfUnits: '195' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '54.101630511740986' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Sofia' - }, - Date: '2007-06-17T00:00:00', - Value: '71.630847021765462', - NumberOfUnits: '458' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '18.437854628282533' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Sofia' - }, - Date: '2007-07-04T00:00:00', - Value: '24.16097206257329', - NumberOfUnits: '7' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '96.142818264729726' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2007-07-08T00:00:00', - Value: '57.497908062067772', - NumberOfUnits: '158' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '22.990409435234223' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Tokyo' - }, - Date: '2007-07-09T00:00:00', - Value: '58.795889168417027', - NumberOfUnits: '34' - }, - { - Product: { - Name: 'Components', - UnitPrice: '52.664019145380713' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2007-07-10T00:00:00', - Value: '32.396441061234306', - NumberOfUnits: '412' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.127701128892468' - }, - Seller: { - Name: 'John Smith', - City: 'Sofia' - }, - Date: '2007-07-15T00:00:00', - Value: '84.924038818536346', - NumberOfUnits: '10' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '10.722568543033008' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2007-07-16T00:00:00', - Value: '52.205748228452052', - NumberOfUnits: '466' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.6933130848656006' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'London' - }, - Date: '2007-07-20T00:00:00', - Value: '34.224967395060212', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '43.724528301378953' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Mellvile' - }, - Date: '2007-07-24T00:00:00', - Value: '45.460345011884506', - NumberOfUnits: '307' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '76.440263947677' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2007-07-26T00:00:00', - Value: '26.061410608730007', - NumberOfUnits: '445' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '34.278292178305932' - }, - Seller: { - Name: 'Bryan Culver', - City: 'New York' - }, - Date: '2007-08-01T00:00:00', - Value: '89.2379715522928', - NumberOfUnits: '480' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '68.573393890901187' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Berlin' - }, - Date: '2007-08-02T00:00:00', - Value: '38.090129912872861', - NumberOfUnits: '390' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '65.068199003612719' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2007-08-05T00:00:00', - Value: '23.047295037213384', - NumberOfUnits: '388' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '44.938480036770216' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Seattle' - }, - Date: '2007-08-19T00:00:00', - Value: '23.370492376093981', - NumberOfUnits: '37' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '93.468684653504141' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2007-08-24T00:00:00', - Value: '17.307506789130862', - NumberOfUnits: '237' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '94.365085472522807' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2007-08-26T00:00:00', - Value: '54.621032604305555', - NumberOfUnits: '396' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '72.4087734112557' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2007-08-26T00:00:00', - Value: '60.920718014669006', - NumberOfUnits: '3' - }, - { - Product: { - Name: 'Components', - UnitPrice: '80.5917513932063' - }, - Seller: { - Name: 'Russell Shorter', - City: 'New York' - }, - Date: '2007-09-02T00:00:00', - Value: '85.134478139288021', - NumberOfUnits: '330' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '65.4044602836503' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2007-09-04T00:00:00', - Value: '51.209239359576827', - NumberOfUnits: '143' - }, - { - Product: { - Name: 'Components', - UnitPrice: '30.638690912462163' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Seattle' - }, - Date: '2007-09-05T00:00:00', - Value: '55.2145366348394', - NumberOfUnits: '318' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '7.6167185826304928' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Seattle' - }, - Date: '2007-09-06T00:00:00', - Value: '41.804668093940556', - NumberOfUnits: '393' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.946888019771727' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2007-09-10T00:00:00', - Value: '9.0849790764436964', - NumberOfUnits: '129' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '38.017715484843457' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2007-09-17T00:00:00', - Value: '25.578551518534564', - NumberOfUnits: '426' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '2.48126508783608' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2007-09-18T00:00:00', - Value: '36.332240158846716', - NumberOfUnits: '217' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '77.58936000875633' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2007-09-20T00:00:00', - Value: '27.885909670910756', - NumberOfUnits: '152' - }, - { - Product: { - Name: 'Components', - UnitPrice: '97.145493420374336' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Seattle' - }, - Date: '2007-09-25T00:00:00', - Value: '21.834250782539254', - NumberOfUnits: '452' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '19.697441309549585' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2007-10-02T00:00:00', - Value: '98.261060238937418', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '32.775894986826877' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2007-10-06T00:00:00', - Value: '79.624117389146292', - NumberOfUnits: '169' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '21.953632739350958' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Berlin' - }, - Date: '2007-10-14T00:00:00', - Value: '69.497183183905292', - NumberOfUnits: '386' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '35.591812029290857' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2007-10-14T00:00:00', - Value: '27.775967413455234', - NumberOfUnits: '454' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '46.950088509800885' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2007-10-25T00:00:00', - Value: '82.136559757467623', - NumberOfUnits: '334' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '41.134977406419338' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2007-10-26T00:00:00', - Value: '54.425787531969036', - NumberOfUnits: '107' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '13.837097405380149' - }, - Seller: { - Name: 'Mark Slater', - City: 'Sofia' - }, - Date: '2007-11-07T00:00:00', - Value: '86.212293890403728', - NumberOfUnits: '275' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '64.159993810653688' - }, - Seller: { - Name: 'Monica Freitag', - City: 'London' - }, - Date: '2007-11-09T00:00:00', - Value: '37.720342091154471', - NumberOfUnits: '241' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '1.2072517076540981' - }, - Seller: { - Name: 'Larry Lieb', - City: 'London' - }, - Date: '2007-11-11T00:00:00', - Value: '75.227352033940775', - NumberOfUnits: '177' - }, - { - Product: { - Name: 'Components', - UnitPrice: '57.8050364078046' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2007-11-13T00:00:00', - Value: '58.445235415569151', - NumberOfUnits: '494' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '39.492234559493248' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Mellvile' - }, - Date: '2007-11-19T00:00:00', - Value: '40.710543394419616', - NumberOfUnits: '451' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '5.21720713247415' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Tokyo' - }, - Date: '2008-01-01T00:00:00', - Value: '91.820002250289548', - NumberOfUnits: '125' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '53.42944141171381' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'London' - }, - Date: '2008-01-02T00:00:00', - Value: '30.892902720204045', - NumberOfUnits: '103' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '52.157351957707363' - }, - Seller: { - Name: 'Larry Lieb', - City: 'New York' - }, - Date: '2008-01-03T00:00:00', - Value: '42.964697369823554', - NumberOfUnits: '224' - }, - { - Product: { - Name: 'Components', - UnitPrice: '17.694580656334097' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2008-01-07T00:00:00', - Value: '47.573478262672893', - NumberOfUnits: '498' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '80.741111925216913' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2008-01-08T00:00:00', - Value: '15.613263806148089', - NumberOfUnits: '142' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '95.439666973166013' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Berlin' - }, - Date: '2008-01-21T00:00:00', - Value: '87.2099365513818', - NumberOfUnits: '487' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '21.778967427918204' - }, - Seller: { - Name: 'David Haley', - City: 'Mellvile' - }, - Date: '2008-01-27T00:00:00', - Value: '14.448109741531365', - NumberOfUnits: '331' - }, - { - Product: { - Name: 'Components', - UnitPrice: '29.907407625535225' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2008-02-03T00:00:00', - Value: '99.235560325549713', - NumberOfUnits: '418' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '39.839772945195328' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'New York' - }, - Date: '2008-02-04T00:00:00', - Value: '61.018408397686862', - NumberOfUnits: '214' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '40.366990370846814' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2008-02-05T00:00:00', - Value: '81.740158694675273', - NumberOfUnits: '229' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '35.198273153602273' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2008-02-05T00:00:00', - Value: '54.246561859849173', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '41.75500964827603' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2008-02-08T00:00:00', - Value: '17.860554632665849', - NumberOfUnits: '216' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '0.687878998316768' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2008-02-09T00:00:00', - Value: '84.92055874547016', - NumberOfUnits: '486' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '37.556058092767394' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Tokyo' - }, - Date: '2008-02-13T00:00:00', - Value: '45.0776737858903', - NumberOfUnits: '172' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '20.804581568019735' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2008-02-21T00:00:00', - Value: '60.542486123993285', - NumberOfUnits: '102' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.646779691170337' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Seattle' - }, - Date: '2008-02-24T00:00:00', - Value: '42.896613079540721', - NumberOfUnits: '36' - }, - { - Product: { - Name: 'Components', - UnitPrice: '53.290544102569356' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2008-02-25T00:00:00', - Value: '11.017731628854634', - NumberOfUnits: '71' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '24.854228983099681' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2008-02-25T00:00:00', - Value: '16.975014478422242', - NumberOfUnits: '53' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.6324524025584' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Tokyo' - }, - Date: '2008-02-25T00:00:00', - Value: '98.961504315473832', - NumberOfUnits: '104' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '9.6438375346566723' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Tokyo' - }, - Date: '2008-02-26T00:00:00', - Value: '96.234209880341865', - NumberOfUnits: '294' - }, - { - Product: { - Name: 'Components', - UnitPrice: '41.077790568153276' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Sofia' - }, - Date: '2008-03-03T00:00:00', - Value: '93.68367497515105', - NumberOfUnits: '454' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '36.977834551119173' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Berlin' - }, - Date: '2008-03-05T00:00:00', - Value: '82.816526006356128', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.830879969909265' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2008-03-08T00:00:00', - Value: '0.654079998216629', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Components', - UnitPrice: '24.716882512307205' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'New York' - }, - Date: '2008-03-09T00:00:00', - Value: '88.519476162511609', - NumberOfUnits: '225' - }, - { - Product: { - Name: 'Components', - UnitPrice: '65.64449792059348' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2008-03-10T00:00:00', - Value: '69.0674314131343', - NumberOfUnits: '422' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.470670270952709' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2008-03-12T00:00:00', - Value: '97.0884484691026', - NumberOfUnits: '303' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '65.1173483417916' - }, - Seller: { - Name: 'Carl Costello', - City: 'London' - }, - Date: '2008-03-13T00:00:00', - Value: '46.4407860983353', - NumberOfUnits: '319' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '39.577671764221819' - }, - Seller: { - Name: 'Harold Garvin', - City: 'London' - }, - Date: '2008-03-14T00:00:00', - Value: '48.544153733432367', - NumberOfUnits: '262' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '50.714457570907875' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2008-03-23T00:00:00', - Value: '91.7152666448221', - NumberOfUnits: '345' - }, - { - Product: { - Name: 'Components', - UnitPrice: '88.2468002793597' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2008-04-03T00:00:00', - Value: '87.275520939042579', - NumberOfUnits: '407' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.252974541509978' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2008-04-04T00:00:00', - Value: '15.127723903920373', - NumberOfUnits: '121' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '30.427555660916283' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2008-04-06T00:00:00', - Value: '44.425472405005934', - NumberOfUnits: '30' - }, - { - Product: { - Name: 'Components', - UnitPrice: '88.243144186326845' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2008-04-11T00:00:00', - Value: '25.280987110585436', - NumberOfUnits: '293' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '16.463555962063165' - }, - Seller: { - Name: 'David Haley', - City: 'Sofia' - }, - Date: '2008-04-12T00:00:00', - Value: '55.071955618947719', - NumberOfUnits: '271' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '95.208247981596855' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Sofia' - }, - Date: '2008-04-18T00:00:00', - Value: '25.773858011594907', - NumberOfUnits: '107' - }, - { - Product: { - Name: 'Components', - UnitPrice: '7.7514979558771' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Mellvile' - }, - Date: '2008-04-18T00:00:00', - Value: '54.484538247103117', - NumberOfUnits: '87' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '94.826276877348434' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2008-04-23T00:00:00', - Value: '78.9546419768383', - NumberOfUnits: '319' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.211896543024061' - }, - Seller: { - Name: 'Lydia Burson', - City: 'New York' - }, - Date: '2008-04-24T00:00:00', - Value: '21.612914242601448', - NumberOfUnits: '346' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '99.308858159607666' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2008-05-07T00:00:00', - Value: '77.780686075697034', - NumberOfUnits: '382' - }, - { - Product: { - Name: 'Components', - UnitPrice: '96.081492582374011' - }, - Seller: { - Name: 'Larry Lieb', - City: 'New York' - }, - Date: '2008-05-11T00:00:00', - Value: '35.351181326131886', - NumberOfUnits: '334' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '26.152281568456569' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Tokyo' - }, - Date: '2008-05-13T00:00:00', - Value: '28.839570995811176', - NumberOfUnits: '176' - }, - { - Product: { - Name: 'Components', - UnitPrice: '80.816311985634414' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2008-05-19T00:00:00', - Value: '8.3833388091918728', - NumberOfUnits: '125' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '78.320334701948028' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2008-05-19T00:00:00', - Value: '15.037549294083169', - NumberOfUnits: '458' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '93.996538219040517' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Berlin' - }, - Date: '2008-05-25T00:00:00', - Value: '68.472067345153576', - NumberOfUnits: '331' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.600178441312252' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2008-05-27T00:00:00', - Value: '70.953166331608386', - NumberOfUnits: '39' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.643226812427507' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2008-06-06T00:00:00', - Value: '97.089249918744542', - NumberOfUnits: '238' - }, - { - Product: { - Name: 'Components', - UnitPrice: '46.977469579771849' - }, - Seller: { - Name: 'Walter Pang', - City: 'London' - }, - Date: '2008-06-07T00:00:00', - Value: '5.6769712854535186', - NumberOfUnits: '84' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '80.151598053123621' - }, - Seller: { - Name: 'Mark Slater', - City: 'Tokyo' - }, - Date: '2008-06-08T00:00:00', - Value: '24.8368413303219', - NumberOfUnits: '363' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '43.5199616679549' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2008-06-08T00:00:00', - Value: '58.973721162869467', - NumberOfUnits: '479' - }, - { - Product: { - Name: 'Components', - UnitPrice: '56.316017851380643' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Sofia' - }, - Date: '2008-06-11T00:00:00', - Value: '87.466286116962451', - NumberOfUnits: '404' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '81.685168194437935' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2008-06-18T00:00:00', - Value: '80.283416472507369', - NumberOfUnits: '478' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '90.111846611887145' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Sofia' - }, - Date: '2008-06-19T00:00:00', - Value: '2.328636451777367', - NumberOfUnits: '285' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.342426471105966' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Sofia' - }, - Date: '2008-06-22T00:00:00', - Value: '82.489029449638466', - NumberOfUnits: '15' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '30.834545442291788' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Berlin' - }, - Date: '2008-06-26T00:00:00', - Value: '77.825110767886557', - NumberOfUnits: '245' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.386958358523884' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2008-07-01T00:00:00', - Value: '8.1397687588537888', - NumberOfUnits: '376' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '73.34977298665315' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2008-07-02T00:00:00', - Value: '48.44682516923492', - NumberOfUnits: '40' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '43.496660489354589' - }, - Seller: { - Name: 'Larry Lieb', - City: 'London' - }, - Date: '2008-07-10T00:00:00', - Value: '37.8727404577065', - NumberOfUnits: '112' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '16.394280649905223' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2008-07-15T00:00:00', - Value: '9.7406020433365388', - NumberOfUnits: '224' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '71.402299390827437' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Tokyo' - }, - Date: '2008-07-16T00:00:00', - Value: '66.4204306278473', - NumberOfUnits: '145' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '94.61881909268854' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2008-07-21T00:00:00', - Value: '46.491464388785637', - NumberOfUnits: '272' - }, - { - Product: { - Name: 'Components', - UnitPrice: '50.753261684790843' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2008-07-27T00:00:00', - Value: '90.114484676213223', - NumberOfUnits: '278' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '12.782123597702999' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2008-07-27T00:00:00', - Value: '89.137324080400788', - NumberOfUnits: '253' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.780031064422815' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2008-08-01T00:00:00', - Value: '28.40646618437323', - NumberOfUnits: '255' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '17.133888051441819' - }, - Seller: { - Name: 'David Haley', - City: 'Seattle' - }, - Date: '2008-08-02T00:00:00', - Value: '0.455726543653629', - NumberOfUnits: '46' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '22.126638806484006' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Tokyo' - }, - Date: '2008-08-08T00:00:00', - Value: '58.445409852287455', - NumberOfUnits: '279' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.986888765816992' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2008-08-08T00:00:00', - Value: '91.802758533415741', - NumberOfUnits: '89' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '83.838022585882825' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Sofia' - }, - Date: '2008-08-14T00:00:00', - Value: '52.590476420051637', - NumberOfUnits: '17' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '14.075806277839376' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2008-08-21T00:00:00', - Value: '53.912139196839249', - NumberOfUnits: '470' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '34.591086923420008' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2008-08-25T00:00:00', - Value: '1.7413051341387', - NumberOfUnits: '195' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '86.727353691462127' - }, - Seller: { - Name: 'Lydia Burson', - City: 'New York' - }, - Date: '2008-08-27T00:00:00', - Value: '23.782985947925127', - NumberOfUnits: '173' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '42.2365329890682' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'New York' - }, - Date: '2008-09-01T00:00:00', - Value: '51.1229278292148', - NumberOfUnits: '472' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '25.687071413587347' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2008-09-06T00:00:00', - Value: '88.372170640328974', - NumberOfUnits: '148' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '23.20858027004105' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2008-09-06T00:00:00', - Value: '94.485007689560291', - NumberOfUnits: '314' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '83.763652752974835' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2008-09-07T00:00:00', - Value: '66.778043828335612', - NumberOfUnits: '431' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '84.414287882118629' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2008-09-07T00:00:00', - Value: '27.639171773399774', - NumberOfUnits: '347' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '7.3291354846810624' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Berlin' - }, - Date: '2008-09-11T00:00:00', - Value: '2.7723569435870075', - NumberOfUnits: '27' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '9.5534944019995134' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Berlin' - }, - Date: '2008-09-12T00:00:00', - Value: '11.851146077667897', - NumberOfUnits: '5' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.820872164713627' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2008-09-19T00:00:00', - Value: '16.46975079386949', - NumberOfUnits: '191' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '79.869313901229447' - }, - Seller: { - Name: 'Bryan Culver', - City: 'New York' - }, - Date: '2008-09-25T00:00:00', - Value: '84.273458730556754', - NumberOfUnits: '421' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.238494475483193' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2008-10-03T00:00:00', - Value: '28.857351992678527', - NumberOfUnits: '297' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '96.094717130109075' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'New York' - }, - Date: '2008-10-04T00:00:00', - Value: '15.797333380113047', - NumberOfUnits: '128' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.009710244373281' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Mellvile' - }, - Date: '2008-10-13T00:00:00', - Value: '37.30084394910412', - NumberOfUnits: '210' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '35.7560529074427' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2008-10-14T00:00:00', - Value: '26.942082646741571', - NumberOfUnits: '315' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.989432462951839' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'New York' - }, - Date: '2008-10-19T00:00:00', - Value: '69.838245990610787', - NumberOfUnits: '489' - }, - { - Product: { - Name: 'Components', - UnitPrice: '84.320317201465514' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2008-10-21T00:00:00', - Value: '61.3185628137172', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '25.52848226648219' - }, - Seller: { - Name: 'John Smith', - City: 'Mellvile' - }, - Date: '2008-10-22T00:00:00', - Value: '69.33637818756344', - NumberOfUnits: '92' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '23.874032927618376' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2008-11-01T00:00:00', - Value: '81.091924282299317', - NumberOfUnits: '30' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '53.634575919077996' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Berlin' - }, - Date: '2008-11-01T00:00:00', - Value: '15.006514738782547', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '68.152902074229388' - }, - Seller: { - Name: 'Bryan Culver', - City: 'London' - }, - Date: '2008-11-10T00:00:00', - Value: '6.0539431898174536', - NumberOfUnits: '368' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '59.880471210871114' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2008-11-11T00:00:00', - Value: '39.091290505179806', - NumberOfUnits: '482' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '5.754821284559938' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2008-11-11T00:00:00', - Value: '48.663099086220889', - NumberOfUnits: '22' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '95.84922096498741' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2008-11-20T00:00:00', - Value: '87.1416628300872', - NumberOfUnits: '159' - }, - { - Product: { - Name: 'Components', - UnitPrice: '59.066441729230078' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Berlin' - }, - Date: '2008-11-25T00:00:00', - Value: '88.637168141378623', - NumberOfUnits: '52' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '94.029234626344049' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Tokyo' - }, - Date: '2009-01-05T00:00:00', - Value: '79.830559240575212', - NumberOfUnits: '194' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '12.794803135467136' - }, - Seller: { - Name: 'David Haley', - City: 'Berlin' - }, - Date: '2009-01-08T00:00:00', - Value: '42.869858277435348', - NumberOfUnits: '100' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.852128705872282' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Berlin' - }, - Date: '2009-01-10T00:00:00', - Value: '48.256240528196209', - NumberOfUnits: '252' - }, - { - Product: { - Name: 'Components', - UnitPrice: '79.434888241549444' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Tokyo' - }, - Date: '2009-01-13T00:00:00', - Value: '68.505005337533078', - NumberOfUnits: '116' - }, - { - Product: { - Name: 'Components', - UnitPrice: '90.91811845587479' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'London' - }, - Date: '2009-01-14T00:00:00', - Value: '27.461436776193526', - NumberOfUnits: '259' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.848602618951631' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2009-01-19T00:00:00', - Value: '56.725358290935567', - NumberOfUnits: '217' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '43.273846266453084' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Seattle' - }, - Date: '2009-01-22T00:00:00', - Value: '36.4720197098665', - NumberOfUnits: '48' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '0.65436926700843923' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'New York' - }, - Date: '2009-02-02T00:00:00', - Value: '71.425742549554329', - NumberOfUnits: '445' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '60.464150859259135' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Mellvile' - }, - Date: '2009-02-03T00:00:00', - Value: '44.63498086884384', - NumberOfUnits: '90' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '13.659154862938056' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2009-02-07T00:00:00', - Value: '36.151584394346727', - NumberOfUnits: '453' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '44.160772694349646' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Mellvile' - }, - Date: '2009-02-07T00:00:00', - Value: '85.6432799648695', - NumberOfUnits: '450' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.330096614700793' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2009-02-07T00:00:00', - Value: '48.103636479053478', - NumberOfUnits: '152' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.7838492862805033' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Berlin' - }, - Date: '2009-02-16T00:00:00', - Value: '46.49472713772893', - NumberOfUnits: '119' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '79.235950894298014' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Tokyo' - }, - Date: '2009-02-16T00:00:00', - Value: '29.240355281736868', - NumberOfUnits: '463' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '18.588924276916742' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Tokyo' - }, - Date: '2009-02-17T00:00:00', - Value: '19.761605616547914', - NumberOfUnits: '150' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '27.901109833224265' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2009-02-19T00:00:00', - Value: '17.557824644054204', - NumberOfUnits: '210' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.192088797312266' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Tokyo' - }, - Date: '2009-02-20T00:00:00', - Value: '36.321839986518881', - NumberOfUnits: '150' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '35.849487937916763' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2009-02-21T00:00:00', - Value: '73.888651083171681', - NumberOfUnits: '97' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '34.073729130473794' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Berlin' - }, - Date: '2009-02-22T00:00:00', - Value: '86.417150211714741', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '66.299910734547268' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2009-02-24T00:00:00', - Value: '52.847915213949939', - NumberOfUnits: '172' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.901878412301596' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Mellvile' - }, - Date: '2009-02-24T00:00:00', - Value: '5.1081647188906389', - NumberOfUnits: '489' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '51.915620757227586' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Sofia' - }, - Date: '2009-02-27T00:00:00', - Value: '9.0917529580610577', - NumberOfUnits: '222' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '98.30828662882945' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Berlin' - }, - Date: '2009-03-03T00:00:00', - Value: '81.314004157350411', - NumberOfUnits: '300' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.820251282686485' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2009-03-03T00:00:00', - Value: '1.3068364007895981', - NumberOfUnits: '270' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '16.260613881172898' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2009-03-07T00:00:00', - Value: '81.4439182083327', - NumberOfUnits: '263' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '93.446688537228241' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2009-03-10T00:00:00', - Value: '22.661844046163303', - NumberOfUnits: '28' - }, - { - Product: { - Name: 'Components', - UnitPrice: '42.142761425181646' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'London' - }, - Date: '2009-03-15T00:00:00', - Value: '20.388415884407433', - NumberOfUnits: '237' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '54.983897719059094' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Tokyo' - }, - Date: '2009-03-16T00:00:00', - Value: '64.043450431918473', - NumberOfUnits: '171' - }, - { - Product: { - Name: 'Components', - UnitPrice: '97.311258221655734' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2009-03-27T00:00:00', - Value: '23.9032197389301', - NumberOfUnits: '251' - }, - { - Product: { - Name: 'Components', - UnitPrice: '50.889893039544063' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'London' - }, - Date: '2009-04-01T00:00:00', - Value: '32.324041068704815', - NumberOfUnits: '275' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.7144460513789417' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'London' - }, - Date: '2009-04-06T00:00:00', - Value: '41.960918783192021', - NumberOfUnits: '311' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '70.850547156692727' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2009-04-07T00:00:00', - Value: '82.811493604821848', - NumberOfUnits: '217' - }, - { - Product: { - Name: 'Components', - UnitPrice: '96.778652489547923' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2009-04-09T00:00:00', - Value: '62.226076034002972', - NumberOfUnits: '360' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '83.5057999396258' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Berlin' - }, - Date: '2009-04-12T00:00:00', - Value: '51.587959589244782', - NumberOfUnits: '35' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.413802446990189' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2009-04-15T00:00:00', - Value: '80.986556122538886', - NumberOfUnits: '294' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '70.80258972514541' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2009-04-16T00:00:00', - Value: '35.866933425826453', - NumberOfUnits: '436' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.524064517824016' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'London' - }, - Date: '2009-04-20T00:00:00', - Value: '82.488713498454871', - NumberOfUnits: '78' - }, - { - Product: { - Name: 'Components', - UnitPrice: '29.603658024968421' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2009-04-22T00:00:00', - Value: '94.02309180890353', - NumberOfUnits: '301' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.59798216009419' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2009-05-02T00:00:00', - Value: '92.598087011183651', - NumberOfUnits: '24' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '71.666997145706318' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2009-05-04T00:00:00', - Value: '19.282113676556438', - NumberOfUnits: '332' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.552707418125452' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2009-05-11T00:00:00', - Value: '56.428837429931775', - NumberOfUnits: '307' - }, - { - Product: { - Name: 'Components', - UnitPrice: '36.712927202094782' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2009-05-11T00:00:00', - Value: '34.265398902010823', - NumberOfUnits: '375' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '62.74587812961353' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2009-05-12T00:00:00', - Value: '1.9744442785039749', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '13.699630607710981' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2009-05-21T00:00:00', - Value: '42.514021341928292', - NumberOfUnits: '337' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '46.090274558444634' - }, - Seller: { - Name: 'Larry Lieb', - City: 'London' - }, - Date: '2009-05-24T00:00:00', - Value: '55.25077774899583', - NumberOfUnits: '284' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '95.33687676085944' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Berlin' - }, - Date: '2009-05-26T00:00:00', - Value: '94.764131631126688', - NumberOfUnits: '292' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.090784828220862' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Sofia' - }, - Date: '2009-05-26T00:00:00', - Value: '60.153313800763954', - NumberOfUnits: '424' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '99.392229132071236' - }, - Seller: { - Name: 'Mark Slater', - City: 'Mellvile' - }, - Date: '2009-06-05T00:00:00', - Value: '28.99414483876626', - NumberOfUnits: '271' - }, - { - Product: { - Name: 'Components', - UnitPrice: '86.944918514669368' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Mellvile' - }, - Date: '2009-06-10T00:00:00', - Value: '94.041974653509428', - NumberOfUnits: '6' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '13.495747797887656' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2009-06-12T00:00:00', - Value: '94.892294562837236', - NumberOfUnits: '44' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.648592900321162' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2009-06-12T00:00:00', - Value: '74.204946949242128', - NumberOfUnits: '277' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '16.877442187106908' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2009-06-13T00:00:00', - Value: '65.121114330888318', - NumberOfUnits: '98' - }, - { - Product: { - Name: 'Components', - UnitPrice: '42.376991707075852' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2009-06-22T00:00:00', - Value: '68.602847060469372', - NumberOfUnits: '443' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '79.539957074234252' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2009-06-26T00:00:00', - Value: '81.434181044546037', - NumberOfUnits: '409' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '26.25291264907127' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2009-07-02T00:00:00', - Value: '68.128146216332979', - NumberOfUnits: '240' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '34.046156627147532' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Seattle' - }, - Date: '2009-07-10T00:00:00', - Value: '95.570359656387168', - NumberOfUnits: '23' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '29.379817577721468' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2009-07-12T00:00:00', - Value: '35.889505099453736', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '86.650452430662909' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Berlin' - }, - Date: '2009-07-13T00:00:00', - Value: '29.856805424139278', - NumberOfUnits: '117' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '58.386603816592419' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2009-07-15T00:00:00', - Value: '34.369692268953514', - NumberOfUnits: '336' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '39.759629797078496' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Seattle' - }, - Date: '2009-07-18T00:00:00', - Value: '92.39610121231344', - NumberOfUnits: '372' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '10.11000248142984' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Berlin' - }, - Date: '2009-07-19T00:00:00', - Value: '90.408865451071819', - NumberOfUnits: '403' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '17.772769098064288' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2009-07-19T00:00:00', - Value: '66.145469558492991', - NumberOfUnits: '144' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '21.54340814870941' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Seattle' - }, - Date: '2009-07-19T00:00:00', - Value: '41.712649465404752', - NumberOfUnits: '395' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '33.561278383043259' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2009-07-20T00:00:00', - Value: '16.61004327079749', - NumberOfUnits: '236' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '48.76308178005884' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2009-07-20T00:00:00', - Value: '86.7044968934285', - NumberOfUnits: '160' - }, - { - Product: { - Name: 'Components', - UnitPrice: '81.79705179380116' - }, - Seller: { - Name: 'David Haley', - City: 'Sofia' - }, - Date: '2009-07-20T00:00:00', - Value: '65.782062134604', - NumberOfUnits: '157' - }, - { - Product: { - Name: 'Components', - UnitPrice: '9.6737010449514251' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Sofia' - }, - Date: '2009-07-25T00:00:00', - Value: '0.062564946740197455', - NumberOfUnits: '255' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '88.575547462597285' - }, - Seller: { - Name: 'Mark Slater', - City: 'London' - }, - Date: '2009-08-16T00:00:00', - Value: '42.973863865702349', - NumberOfUnits: '284' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '89.335742634411787' - }, - Seller: { - Name: 'Walter Pang', - City: 'Tokyo' - }, - Date: '2009-08-17T00:00:00', - Value: '15.731296835342096', - NumberOfUnits: '333' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '23.987651161843747' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2009-08-17T00:00:00', - Value: '51.5363990569191', - NumberOfUnits: '48' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '19.359730239659424' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2009-08-18T00:00:00', - Value: '82.547955160284388', - NumberOfUnits: '399' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '9.30053084590497' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2009-08-24T00:00:00', - Value: '68.607750753223783', - NumberOfUnits: '413' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '1.1489816946671259' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2009-09-06T00:00:00', - Value: '71.909978693309228', - NumberOfUnits: '182' - }, - { - Product: { - Name: 'Components', - UnitPrice: '76.9795825597735' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2009-09-06T00:00:00', - Value: '44.89029713202747', - NumberOfUnits: '156' - }, - { - Product: { - Name: 'Components', - UnitPrice: '80.664513344254587' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2009-09-09T00:00:00', - Value: '92.268023962279784', - NumberOfUnits: '293' - }, - { - Product: { - Name: 'Components', - UnitPrice: '22.788886131154786' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2009-10-01T00:00:00', - Value: '99.883927823921638', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.05361020288133' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Seattle' - }, - Date: '2009-10-01T00:00:00', - Value: '16.01294182055301', - NumberOfUnits: '106' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '72.974514808959569' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Tokyo' - }, - Date: '2009-10-06T00:00:00', - Value: '91.593776918758536', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Components', - UnitPrice: '22.058241871212722' - }, - Seller: { - Name: 'John Smith', - City: 'Tokyo' - }, - Date: '2009-10-07T00:00:00', - Value: '1.8308585983844747', - NumberOfUnits: '187' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '42.79186979066202' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2009-10-10T00:00:00', - Value: '21.78986469367047', - NumberOfUnits: '137' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.231171277459325' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2009-10-14T00:00:00', - Value: '14.979823871971956', - NumberOfUnits: '138' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '14.350185037753633' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2009-10-24T00:00:00', - Value: '65.044616239631836', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Components', - UnitPrice: '40.100955655845326' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'London' - }, - Date: '2009-10-24T00:00:00', - Value: '11.059040581369326', - NumberOfUnits: '353' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '17.189097831579435' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2009-11-01T00:00:00', - Value: '94.950034746411276', - NumberOfUnits: '359' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '52.031028155251882' - }, - Seller: { - Name: 'Walter Pang', - City: 'Tokyo' - }, - Date: '2009-11-04T00:00:00', - Value: '43.162881835905317', - NumberOfUnits: '134' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '90.993871954732526' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2009-11-09T00:00:00', - Value: '25.162065972183861', - NumberOfUnits: '263' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '88.538379077119' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2009-11-11T00:00:00', - Value: '40.935293185028847', - NumberOfUnits: '313' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '46.481523265355044' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2009-11-16T00:00:00', - Value: '20.430096527761822', - NumberOfUnits: '115' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '20.418462399588183' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Berlin' - }, - Date: '2009-11-17T00:00:00', - Value: '33.038645299635192', - NumberOfUnits: '414' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '70.830144114247588' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2009-11-21T00:00:00', - Value: '2.98972730664058', - NumberOfUnits: '53' - }, - { - Product: { - Name: 'Components', - UnitPrice: '81.628889023153533' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2009-11-22T00:00:00', - Value: '86.668779555088264', - NumberOfUnits: '472' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '9.714081422292665' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Mellvile' - }, - Date: '2009-11-23T00:00:00', - Value: '53.591187323253223', - NumberOfUnits: '199' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '29.755140482334021' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Sofia' - }, - Date: '2009-11-24T00:00:00', - Value: '27.388797945989669', - NumberOfUnits: '241' - }, - { - Product: { - Name: 'Components', - UnitPrice: '33.118537689148695' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'New York' - }, - Date: '2009-11-24T00:00:00', - Value: '1.2120309291463489', - NumberOfUnits: '320' - }, - { - Product: { - Name: 'Components', - UnitPrice: '65.6359763655979' - }, - Seller: { - Name: 'David Haley', - City: 'London' - }, - Date: '2010-01-02T00:00:00', - Value: '20.522539420296688', - NumberOfUnits: '299' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.085259967523285' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2010-01-08T00:00:00', - Value: '35.256934368636891', - NumberOfUnits: '366' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '78.474462068860646' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2010-01-10T00:00:00', - Value: '27.762093407922467', - NumberOfUnits: '290' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '11.587155103491226' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2010-01-11T00:00:00', - Value: '61.712525906838721', - NumberOfUnits: '350' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '33.427815853351639' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2010-01-14T00:00:00', - Value: '33.686906720365819', - NumberOfUnits: '469' - }, - { - Product: { - Name: 'Components', - UnitPrice: '96.141296949303381' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2010-01-21T00:00:00', - Value: '75.607716606747218', - NumberOfUnits: '352' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '92.171847676938327' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2010-01-25T00:00:00', - Value: '38.822024473371926', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '93.045955893139336' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Tokyo' - }, - Date: '2010-02-02T00:00:00', - Value: '66.397165863959657', - NumberOfUnits: '153' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '38.888418506313307' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2010-02-02T00:00:00', - Value: '28.472216533716871', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.255040660153625' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2010-02-04T00:00:00', - Value: '66.975509546220067', - NumberOfUnits: '267' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.418360057481735' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2010-02-04T00:00:00', - Value: '71.271966803479927', - NumberOfUnits: '91' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '19.770187707510864' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Tokyo' - }, - Date: '2010-02-05T00:00:00', - Value: '45.86024901171227', - NumberOfUnits: '84' - }, - { - Product: { - Name: 'Components', - UnitPrice: '87.127108633111746' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Mellvile' - }, - Date: '2010-02-11T00:00:00', - Value: '66.746746220973662', - NumberOfUnits: '270' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '76.21922282326' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Berlin' - }, - Date: '2010-02-12T00:00:00', - Value: '86.961047717817621', - NumberOfUnits: '496' - }, - { - Product: { - Name: 'Components', - UnitPrice: '51.935532154485365' - }, - Seller: { - Name: 'John Smith', - City: 'Seattle' - }, - Date: '2010-02-16T00:00:00', - Value: '47.325407875387654', - NumberOfUnits: '24' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.709201215630959' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2010-02-17T00:00:00', - Value: '72.656378696046943', - NumberOfUnits: '41' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '15.665925860249402' - }, - Seller: { - Name: 'John Smith', - City: 'Mellvile' - }, - Date: '2010-02-22T00:00:00', - Value: '65.636205098422337', - NumberOfUnits: '365' - }, - { - Product: { - Name: 'Components', - UnitPrice: '2.6773556613723541' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Sofia' - }, - Date: '2010-03-01T00:00:00', - Value: '68.629750361959324', - NumberOfUnits: '202' - }, - { - Product: { - Name: 'Components', - UnitPrice: '52.256432619065251' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2010-03-01T00:00:00', - Value: '79.248901540063741', - NumberOfUnits: '225' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '0.30659986674161621' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2010-03-03T00:00:00', - Value: '70.065212654911548', - NumberOfUnits: '206' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '22.362647448835265' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Sofia' - }, - Date: '2010-03-11T00:00:00', - Value: '54.673684646689189', - NumberOfUnits: '158' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '94.7514695090947' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2010-03-14T00:00:00', - Value: '70.422226083661528', - NumberOfUnits: '169' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '1.1244290979227185' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2010-03-15T00:00:00', - Value: '18.868440258721094', - NumberOfUnits: '4' - }, - { - Product: { - Name: 'Components', - UnitPrice: '12.168197199780586' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2010-03-15T00:00:00', - Value: '12.660750706056481', - NumberOfUnits: '232' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '58.754820636825087' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2010-03-16T00:00:00', - Value: '78.751323967590608', - NumberOfUnits: '421' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '43.950277959904767' - }, - Seller: { - Name: 'David Haley', - City: 'Seattle' - }, - Date: '2010-03-25T00:00:00', - Value: '89.636901900934475', - NumberOfUnits: '260' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '54.451138970652188' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2010-04-02T00:00:00', - Value: '91.929945113104736', - NumberOfUnits: '194' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.565373749735471' - }, - Seller: { - Name: 'Walter Pang', - City: 'Tokyo' - }, - Date: '2010-04-05T00:00:00', - Value: '35.415237739409896', - NumberOfUnits: '491' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '11.121100052781916' - }, - Seller: { - Name: 'Harold Garvin', - City: 'London' - }, - Date: '2010-04-14T00:00:00', - Value: '29.986905041144652', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Components', - UnitPrice: '18.092416607817828' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2010-04-15T00:00:00', - Value: '84.457366813187193', - NumberOfUnits: '279' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.277599657083675' - }, - Seller: { - Name: 'Carl Costello', - City: 'Berlin' - }, - Date: '2010-04-15T00:00:00', - Value: '99.568976647951175', - NumberOfUnits: '287' - }, - { - Product: { - Name: 'Components', - UnitPrice: '77.894294018807955' - }, - Seller: { - Name: 'Carl Costello', - City: 'New York' - }, - Date: '2010-04-22T00:00:00', - Value: '58.9137158165284', - NumberOfUnits: '363' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '55.624015888024125' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2010-04-22T00:00:00', - Value: '16.317631032465783', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '39.338956605335213' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Berlin' - }, - Date: '2010-04-24T00:00:00', - Value: '0.092080421788655414', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Components', - UnitPrice: '7.7389456833428447' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2010-05-04T00:00:00', - Value: '99.529428733293628', - NumberOfUnits: '25' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '62.437906005623709' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2010-05-05T00:00:00', - Value: '47.953826816731052', - NumberOfUnits: '64' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '38.696093037117322' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'London' - }, - Date: '2010-05-06T00:00:00', - Value: '57.667695059286281', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '17.764891412930979' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Mellvile' - }, - Date: '2010-05-07T00:00:00', - Value: '15.271079826760609', - NumberOfUnits: '50' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '57.771539901276839' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Berlin' - }, - Date: '2010-05-07T00:00:00', - Value: '58.617693865028066', - NumberOfUnits: '437' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '21.412746897625155' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2010-05-19T00:00:00', - Value: '40.952016665112232', - NumberOfUnits: '253' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '10.10051225782396' - }, - Seller: { - Name: 'Monica Freitag', - City: 'London' - }, - Date: '2010-05-22T00:00:00', - Value: '24.04263714516658', - NumberOfUnits: '312' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '87.649551167920961' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2010-05-24T00:00:00', - Value: '12.452408304648664', - NumberOfUnits: '82' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '42.552965526726545' - }, - Seller: { - Name: 'Harold Garvin', - City: 'New York' - }, - Date: '2010-06-01T00:00:00', - Value: '32.21886932487547', - NumberOfUnits: '467' - }, - { - Product: { - Name: 'Components', - UnitPrice: '79.772670743881108' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Sofia' - }, - Date: '2010-06-05T00:00:00', - Value: '69.47704109804566', - NumberOfUnits: '74' - }, - { - Product: { - Name: 'Components', - UnitPrice: '1.8354761888438258' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2010-06-10T00:00:00', - Value: '14.711501968424534', - NumberOfUnits: '81' - }, - { - Product: { - Name: 'Components', - UnitPrice: '15.038684017508608' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Berlin' - }, - Date: '2010-06-25T00:00:00', - Value: '18.710408228780334', - NumberOfUnits: '88' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '43.393069851860908' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2010-06-26T00:00:00', - Value: '44.323160147444881', - NumberOfUnits: '126' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.236492486780737' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2010-06-27T00:00:00', - Value: '77.721635707524442', - NumberOfUnits: '112' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '59.192252885174121' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Sofia' - }, - Date: '2010-06-27T00:00:00', - Value: '15.444951837623936', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Components', - UnitPrice: '39.858141839438183' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Sofia' - }, - Date: '2010-07-05T00:00:00', - Value: '29.309184630079749', - NumberOfUnits: '218' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '27.044425637947594' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2010-07-05T00:00:00', - Value: '29.84750439871452', - NumberOfUnits: '34' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.269145072563152' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2010-07-13T00:00:00', - Value: '83.42096804800488', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '53.378611455382128' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2010-07-16T00:00:00', - Value: '41.53844534491116', - NumberOfUnits: '464' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.432887213971881' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2010-07-17T00:00:00', - Value: '83.285907275642217', - NumberOfUnits: '118' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '23.970818670452953' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2010-07-18T00:00:00', - Value: '94.1482592346837', - NumberOfUnits: '442' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.523097888344481' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2010-07-23T00:00:00', - Value: '59.59416039269145', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '60.678681014421713' - }, - Seller: { - Name: 'Lydia Burson', - City: 'London' - }, - Date: '2010-07-23T00:00:00', - Value: '83.499601801624337', - NumberOfUnits: '472' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.0230887131873' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'New York' - }, - Date: '2010-07-24T00:00:00', - Value: '83.86764092550969', - NumberOfUnits: '140' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.635253308171059' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2010-07-26T00:00:00', - Value: '86.612572747567938', - NumberOfUnits: '118' - }, - { - Product: { - Name: 'Components', - UnitPrice: '58.201980291959821' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2010-07-27T00:00:00', - Value: '63.959779713284128', - NumberOfUnits: '176' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '98.375331656250779' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2010-08-01T00:00:00', - Value: '23.277100465855142', - NumberOfUnits: '77' - }, - { - Product: { - Name: 'Components', - UnitPrice: '2.9185969396115263' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Sofia' - }, - Date: '2010-08-08T00:00:00', - Value: '74.269686627327317', - NumberOfUnits: '105' - }, - { - Product: { - Name: 'Components', - UnitPrice: '98.157584806046259' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Tokyo' - }, - Date: '2010-08-21T00:00:00', - Value: '60.648173215169543', - NumberOfUnits: '160' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '79.036749144567537' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2010-08-26T00:00:00', - Value: '66.923503934835779', - NumberOfUnits: '186' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '17.790103991418192' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2010-09-04T00:00:00', - Value: '28.990831612139395', - NumberOfUnits: '380' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '38.68470799116637' - }, - Seller: { - Name: 'John Smith', - City: 'Tokyo' - }, - Date: '2010-09-11T00:00:00', - Value: '41.4628619986879', - NumberOfUnits: '470' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '75.233120366573857' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2010-09-13T00:00:00', - Value: '42.688516267895935', - NumberOfUnits: '348' - }, - { - Product: { - Name: 'Components', - UnitPrice: '55.30159308356307' - }, - Seller: { - Name: 'Carl Costello', - City: 'London' - }, - Date: '2010-09-14T00:00:00', - Value: '29.383467570591471', - NumberOfUnits: '151' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '51.315049571597505' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2010-09-24T00:00:00', - Value: '86.581237654472346', - NumberOfUnits: '7' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '31.307030995985041' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2010-10-07T00:00:00', - Value: '38.936872425925394', - NumberOfUnits: '123' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '79.959242362510068' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2010-10-08T00:00:00', - Value: '8.676337175386184', - NumberOfUnits: '374' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '94.65782241647031' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Mellvile' - }, - Date: '2010-10-11T00:00:00', - Value: '96.669988984554067', - NumberOfUnits: '178' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '41.967610009930844' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2010-10-22T00:00:00', - Value: '31.412678645650239', - NumberOfUnits: '354' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '46.564729067759927' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2010-10-25T00:00:00', - Value: '85.540413197847272', - NumberOfUnits: '459' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '27.142422565791019' - }, - Seller: { - Name: 'Mark Slater', - City: 'London' - }, - Date: '2010-11-02T00:00:00', - Value: '46.424968795117444', - NumberOfUnits: '78' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '30.232361531924624' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2010-11-03T00:00:00', - Value: '52.08322599161567', - NumberOfUnits: '417' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '82.166215769092659' - }, - Seller: { - Name: 'Walter Pang', - City: 'Seattle' - }, - Date: '2010-11-12T00:00:00', - Value: '15.3999604356475', - NumberOfUnits: '208' - }, - { - Product: { - Name: 'Components', - UnitPrice: '13.240201125498954' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2010-11-19T00:00:00', - Value: '48.614451078984168', - NumberOfUnits: '359' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.82965918110202' - }, - Seller: { - Name: 'Russell Shorter', - City: 'New York' - }, - Date: '2010-11-25T00:00:00', - Value: '24.490439856653307', - NumberOfUnits: '392' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '78.426081770298111' - }, - Seller: { - Name: 'John Smith', - City: 'London' - }, - Date: '2011-01-01T00:00:00', - Value: '37.596409040315265', - NumberOfUnits: '241' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '50.590050290613462' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Seattle' - }, - Date: '2011-01-04T00:00:00', - Value: '27.185391135134452', - NumberOfUnits: '62' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '6.3079299900252046' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Tokyo' - }, - Date: '2011-01-06T00:00:00', - Value: '89.615617641068809', - NumberOfUnits: '485' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '47.444027544671677' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2011-01-14T00:00:00', - Value: '4.8948556207562124', - NumberOfUnits: '470' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '6.14731172385966' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2011-01-23T00:00:00', - Value: '78.523330706415379', - NumberOfUnits: '197' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '57.598939471691359' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Berlin' - }, - Date: '2011-01-26T00:00:00', - Value: '59.748959848540352', - NumberOfUnits: '353' - }, - { - Product: { - Name: 'Components', - UnitPrice: '37.619407911607723' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Mellvile' - }, - Date: '2011-02-01T00:00:00', - Value: '39.591191541213163', - NumberOfUnits: '338' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '20.995826982425445' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2011-02-08T00:00:00', - Value: '92.874936197360483', - NumberOfUnits: '17' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '11.776900390059176' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2011-02-12T00:00:00', - Value: '61.288865125406936', - NumberOfUnits: '429' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.996284649239982' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Tokyo' - }, - Date: '2011-02-14T00:00:00', - Value: '24.293736985090067', - NumberOfUnits: '385' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '19.89953691135139' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2011-02-20T00:00:00', - Value: '35.271121391687132', - NumberOfUnits: '166' - }, - { - Product: { - Name: 'Components', - UnitPrice: '3.2431666288725873' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Seattle' - }, - Date: '2011-02-20T00:00:00', - Value: '52.569142939787895', - NumberOfUnits: '137' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '18.180364006282932' - }, - Seller: { - Name: 'Russell Shorter', - City: 'New York' - }, - Date: '2011-02-24T00:00:00', - Value: '8.2438002378883759', - NumberOfUnits: '443' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '20.442789662835555' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2011-02-26T00:00:00', - Value: '87.327797658428452', - NumberOfUnits: '40' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '20.547325592742919' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2011-03-05T00:00:00', - Value: '7.2753519319348747', - NumberOfUnits: '138' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '23.766470804701779' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2011-03-09T00:00:00', - Value: '18.243170770929741', - NumberOfUnits: '15' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '76.253175817547913' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2011-03-09T00:00:00', - Value: '74.498488369629939', - NumberOfUnits: '469' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '93.2519404651839' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2011-03-11T00:00:00', - Value: '88.996454276608517', - NumberOfUnits: '426' - }, - { - Product: { - Name: 'Components', - UnitPrice: '62.99248866876237' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-03-16T00:00:00', - Value: '32.470836971174386', - NumberOfUnits: '208' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '58.4988099795295' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2011-03-21T00:00:00', - Value: '50.8492368044561', - NumberOfUnits: '155' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '82.3833047795963' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2011-03-23T00:00:00', - Value: '33.369716877755579', - NumberOfUnits: '381' - }, - { - Product: { - Name: 'Components', - UnitPrice: '19.168732231095774' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Tokyo' - }, - Date: '2011-04-12T00:00:00', - Value: '75.166610896199288', - NumberOfUnits: '5' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '53.516463960295759' - }, - Seller: { - Name: 'Walter Pang', - City: 'London' - }, - Date: '2011-04-12T00:00:00', - Value: '14.533374232488395', - NumberOfUnits: '221' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '97.407401445045792' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Sofia' - }, - Date: '2011-04-14T00:00:00', - Value: '84.691367803463407', - NumberOfUnits: '39' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '74.054133600580556' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2011-04-16T00:00:00', - Value: '51.295898599222255', - NumberOfUnits: '468' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.1049134061229022' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Seattle' - }, - Date: '2011-04-17T00:00:00', - Value: '0.70214751209232373', - NumberOfUnits: '44' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '59.055603649027468' - }, - Seller: { - Name: 'John Smith', - City: 'Mellvile' - }, - Date: '2011-04-22T00:00:00', - Value: '47.532910968890839', - NumberOfUnits: '287' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.816727750383663' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2011-04-24T00:00:00', - Value: '78.545733857222714', - NumberOfUnits: '463' - }, - { - Product: { - Name: 'Components', - UnitPrice: '76.712912356812936' - }, - Seller: { - Name: 'Walter Pang', - City: 'Seattle' - }, - Date: '2011-04-24T00:00:00', - Value: '62.920035218317082', - NumberOfUnits: '335' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '73.424536862142631' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2011-04-24T00:00:00', - Value: '30.569536113445434', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Components', - UnitPrice: '66.398487550392034' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-05-03T00:00:00', - Value: '87.37479121767673', - NumberOfUnits: '291' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.014730059082964' - }, - Seller: { - Name: 'John Smith', - City: 'Sofia' - }, - Date: '2011-05-05T00:00:00', - Value: '40.137041145999468', - NumberOfUnits: '1' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '21.30724839927035' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Seattle' - }, - Date: '2011-05-06T00:00:00', - Value: '46.005596521313116', - NumberOfUnits: '120' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '19.893941804717269' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2011-05-06T00:00:00', - Value: '72.609930798695387', - NumberOfUnits: '382' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '16.486758420470522' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2011-05-07T00:00:00', - Value: '7.763772973680763', - NumberOfUnits: '63' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '41.660496658487475' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2011-05-12T00:00:00', - Value: '94.318148397988708', - NumberOfUnits: '230' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.9773660045943062' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Tokyo' - }, - Date: '2011-05-13T00:00:00', - Value: '30.891342056398909', - NumberOfUnits: '362' - }, - { - Product: { - Name: 'Components', - UnitPrice: '10.7490869289027' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2011-05-17T00:00:00', - Value: '59.668867131540956', - NumberOfUnits: '430' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '66.047576147153777' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2011-05-23T00:00:00', - Value: '91.139627616451875', - NumberOfUnits: '204' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '60.848456370108039' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2011-05-24T00:00:00', - Value: '86.097605566539613', - NumberOfUnits: '118' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '68.7086188088677' - }, - Seller: { - Name: 'Walter Pang', - City: 'Sofia' - }, - Date: '2011-06-01T00:00:00', - Value: '14.562893060298121', - NumberOfUnits: '17' - }, - { - Product: { - Name: 'Components', - UnitPrice: '40.680891247783265' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2011-06-03T00:00:00', - Value: '9.0439965990576887', - NumberOfUnits: '312' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.900314277457227' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Seattle' - }, - Date: '2011-06-12T00:00:00', - Value: '95.038356676249933', - NumberOfUnits: '283' - }, - { - Product: { - Name: 'Components', - UnitPrice: '67.031210179920876' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-06-13T00:00:00', - Value: '27.587484674336149', - NumberOfUnits: '460' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.092374324375939' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'New York' - }, - Date: '2011-06-14T00:00:00', - Value: '66.230523523981915', - NumberOfUnits: '295' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '28.048040265239791' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2011-06-15T00:00:00', - Value: '50.504170614529478', - NumberOfUnits: '49' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '7.3837493580690348' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Tokyo' - }, - Date: '2011-06-24T00:00:00', - Value: '7.8716053664086409', - NumberOfUnits: '127' - }, - { - Product: { - Name: 'Components', - UnitPrice: '39.219759003827235' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2011-06-27T00:00:00', - Value: '98.71029462605263', - NumberOfUnits: '244' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '53.418671131794646' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Tokyo' - }, - Date: '2011-07-01T00:00:00', - Value: '11.231885622829145', - NumberOfUnits: '188' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '25.523898576164573' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-07-06T00:00:00', - Value: '56.126590052678523', - NumberOfUnits: '458' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.257199169256353' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2011-07-08T00:00:00', - Value: '82.339177505271124', - NumberOfUnits: '448' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '7.6365943567997752' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2011-07-27T00:00:00', - Value: '30.461937203287114', - NumberOfUnits: '226' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.512323069159091' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2011-08-01T00:00:00', - Value: '69.618271463372878', - NumberOfUnits: '474' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '37.596370343862276' - }, - Seller: { - Name: 'David Haley', - City: 'Sofia' - }, - Date: '2011-08-02T00:00:00', - Value: '62.767845142058952', - NumberOfUnits: '338' - }, - { - Product: { - Name: 'Components', - UnitPrice: '99.364743102046077' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2011-08-02T00:00:00', - Value: '75.243962125500659', - NumberOfUnits: '88' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.232945669550887' - }, - Seller: { - Name: 'Carl Costello', - City: 'Berlin' - }, - Date: '2011-08-04T00:00:00', - Value: '86.276501736732442', - NumberOfUnits: '436' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '34.253647892854012' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2011-08-06T00:00:00', - Value: '9.2189299451275417', - NumberOfUnits: '297' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '46.885990699234412' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2011-08-07T00:00:00', - Value: '5.0874681701359652', - NumberOfUnits: '240' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '26.369197352961265' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Sofia' - }, - Date: '2011-08-07T00:00:00', - Value: '80.241307141371678', - NumberOfUnits: '415' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '49.072841112070179' - }, - Seller: { - Name: 'David Haley', - City: 'Mellvile' - }, - Date: '2011-08-08T00:00:00', - Value: '61.200517444499084', - NumberOfUnits: '435' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '95.058612569728211' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Berlin' - }, - Date: '2011-08-16T00:00:00', - Value: '73.751322260942', - NumberOfUnits: '64' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '74.181983375075262' - }, - Seller: { - Name: 'John Smith', - City: 'Seattle' - }, - Date: '2011-08-23T00:00:00', - Value: '40.736002680256966', - NumberOfUnits: '21' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '82.506200011124' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2011-08-25T00:00:00', - Value: '54.907956605268623', - NumberOfUnits: '467' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '42.773367531026416' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2011-09-02T00:00:00', - Value: '28.230239091548249', - NumberOfUnits: '98' - }, - { - Product: { - Name: 'Components', - UnitPrice: '83.472341757022008' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2011-09-04T00:00:00', - Value: '72.482020534799446', - NumberOfUnits: '370' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '41.552912276961337' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2011-09-05T00:00:00', - Value: '80.9870070223636', - NumberOfUnits: '94' - }, - { - Product: { - Name: 'Components', - UnitPrice: '74.118408409002427' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2011-09-09T00:00:00', - Value: '94.847531102061055', - NumberOfUnits: '106' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '75.404483999779671' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Sofia' - }, - Date: '2011-09-11T00:00:00', - Value: '9.8866479051702889', - NumberOfUnits: '261' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '10.227189357498283' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2011-09-17T00:00:00', - Value: '29.3933310217193', - NumberOfUnits: '307' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.929749578670481' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2011-09-17T00:00:00', - Value: '56.902403923171761', - NumberOfUnits: '362' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '85.133693080923379' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Tokyo' - }, - Date: '2011-09-24T00:00:00', - Value: '23.863435408036892', - NumberOfUnits: '330' - }, - { - Product: { - Name: 'Components', - UnitPrice: '77.595880943162314' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2011-09-26T00:00:00', - Value: '91.821283424189915', - NumberOfUnits: '23' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.362954591569931' - }, - Seller: { - Name: 'David Haley', - City: 'Berlin' - }, - Date: '2011-09-27T00:00:00', - Value: '66.76641896682159', - NumberOfUnits: '392' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '32.290426563606793' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2011-10-13T00:00:00', - Value: '81.508681122916144', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '62.986913725262006' - }, - Seller: { - Name: 'Lydia Burson', - City: 'New York' - }, - Date: '2011-10-13T00:00:00', - Value: '30.91040301644728', - NumberOfUnits: '100' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '13.441150036380231' - }, - Seller: { - Name: 'Carl Costello', - City: 'Berlin' - }, - Date: '2011-10-22T00:00:00', - Value: '85.46632834964727', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '0.36166957596394683' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2011-10-22T00:00:00', - Value: '74.401750589907991', - NumberOfUnits: '22' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '66.237839621602475' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2011-11-02T00:00:00', - Value: '88.135134283516152', - NumberOfUnits: '96' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.146415294216204' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Berlin' - }, - Date: '2011-11-03T00:00:00', - Value: '31.431514877561256', - NumberOfUnits: '76' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.8830748274378' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2011-11-04T00:00:00', - Value: '91.074618506745722', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '6.5537001036823268' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Berlin' - }, - Date: '2011-11-08T00:00:00', - Value: '51.458535926164373', - NumberOfUnits: '49' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.5539850124875' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2011-11-12T00:00:00', - Value: '20.849885521852357', - NumberOfUnits: '197' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '59.927390962805319' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Tokyo' - }, - Date: '2011-11-12T00:00:00', - Value: '70.322697409578922', - NumberOfUnits: '484' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.355707039756567' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Tokyo' - }, - Date: '2011-11-13T00:00:00', - Value: '14.268465300215624', - NumberOfUnits: '182' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '51.975681005034446' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2011-11-15T00:00:00', - Value: '18.371498919265111', - NumberOfUnits: '42' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '66.674518802517341' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'New York' - }, - Date: '2011-11-19T00:00:00', - Value: '52.755486291253696', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '56.137722244550346' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Mellvile' - }, - Date: '2011-11-23T00:00:00', - Value: '40.171580035319352', - NumberOfUnits: '310' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '93.530705568162119' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2012-01-03T00:00:00', - Value: '53.305936117333331', - NumberOfUnits: '306' - }, - { - Product: { - Name: 'Components', - UnitPrice: '9.5339146487107111' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2012-01-06T00:00:00', - Value: '82.952573375288665', - NumberOfUnits: '290' - }, - { - Product: { - Name: 'Components', - UnitPrice: '41.1171674454199' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Tokyo' - }, - Date: '2012-01-10T00:00:00', - Value: '29.765262841137712', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '9.7998786297626239' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Berlin' - }, - Date: '2012-01-11T00:00:00', - Value: '10.743231471042721', - NumberOfUnits: '7' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.580562228607278' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2012-01-14T00:00:00', - Value: '34.949488535034234', - NumberOfUnits: '220' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.282745012679484' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2012-01-15T00:00:00', - Value: '50.185166276146262', - NumberOfUnits: '395' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '14.609382960297811' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2012-01-18T00:00:00', - Value: '99.998364085330792', - NumberOfUnits: '219' - }, - { - Product: { - Name: 'Components', - UnitPrice: '10.681285248455259' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2012-01-18T00:00:00', - Value: '91.928496859934413', - NumberOfUnits: '229' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.914608125069464' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2012-01-22T00:00:00', - Value: '55.807345246806442', - NumberOfUnits: '111' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '47.909127244683511' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2012-02-01T00:00:00', - Value: '20.473314877819881', - NumberOfUnits: '237' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '87.815776368517334' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Berlin' - }, - Date: '2012-02-13T00:00:00', - Value: '17.170676690140123', - NumberOfUnits: '114' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '55.404070883711832' - }, - Seller: { - Name: 'Bryan Culver', - City: 'London' - }, - Date: '2012-02-23T00:00:00', - Value: '76.743488422009847', - NumberOfUnits: '329' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '40.75572231819654' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2012-02-24T00:00:00', - Value: '1.1660674592322051', - NumberOfUnits: '135' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '57.827554530383807' - }, - Seller: { - Name: 'Harold Garvin', - City: 'New York' - }, - Date: '2012-03-02T00:00:00', - Value: '46.816691358954039', - NumberOfUnits: '187' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.764199040254672' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2012-03-10T00:00:00', - Value: '17.629321207119766', - NumberOfUnits: '286' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '12.991917372211775' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2012-03-11T00:00:00', - Value: '18.210936299623427', - NumberOfUnits: '468' - }, - { - Product: { - Name: 'Components', - UnitPrice: '26.013292989699771' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Tokyo' - }, - Date: '2012-03-18T00:00:00', - Value: '93.230797952614168', - NumberOfUnits: '71' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.623922989062933' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Mellvile' - }, - Date: '2012-03-21T00:00:00', - Value: '61.974642454634719', - NumberOfUnits: '251' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '44.430002777106132' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Berlin' - }, - Date: '2012-03-25T00:00:00', - Value: '57.137854004808631', - NumberOfUnits: '297' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '68.192056365400575' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Berlin' - }, - Date: '2012-03-25T00:00:00', - Value: '4.1927576550248808', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.301038918691241' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2012-03-26T00:00:00', - Value: '45.234568391570157', - NumberOfUnits: '488' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '41.07974113015446' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Sofia' - }, - Date: '2012-04-06T00:00:00', - Value: '59.4756415856423', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Components', - UnitPrice: '29.287349586043206' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2012-04-14T00:00:00', - Value: '3.1218397911274058', - NumberOfUnits: '149' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '51.960718329977574' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Berlin' - }, - Date: '2012-04-14T00:00:00', - Value: '9.8109557804702572', - NumberOfUnits: '99' - }, - { - Product: { - Name: 'Components', - UnitPrice: '57.838875082246432' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Seattle' - }, - Date: '2012-04-16T00:00:00', - Value: '14.041336026993271', - NumberOfUnits: '225' - }, - { - Product: { - Name: 'Components', - UnitPrice: '25.879090337957759' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2012-04-27T00:00:00', - Value: '95.393374001324815', - NumberOfUnits: '408' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.9307178263229865' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Sofia' - }, - Date: '2012-05-09T00:00:00', - Value: '40.24019778717318', - NumberOfUnits: '417' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '3.0351963839657587' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2012-05-24T00:00:00', - Value: '67.743256719663393', - NumberOfUnits: '221' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '57.525798798317929' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2012-06-02T00:00:00', - Value: '45.347840592892766', - NumberOfUnits: '288' - }, - { - Product: { - Name: 'Components', - UnitPrice: '72.260475471737081' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Berlin' - }, - Date: '2012-06-03T00:00:00', - Value: '92.767570816337866', - NumberOfUnits: '372' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '82.533464665773067' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Seattle' - }, - Date: '2012-06-03T00:00:00', - Value: '51.32937051883404', - NumberOfUnits: '408' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '91.596571026182076' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2012-06-04T00:00:00', - Value: '28.526107281691441', - NumberOfUnits: '13' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.668206756314362' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2012-06-05T00:00:00', - Value: '31.552386019170463', - NumberOfUnits: '487' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.269657903476457' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Sofia' - }, - Date: '2012-06-11T00:00:00', - Value: '85.914963570383833', - NumberOfUnits: '276' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '18.243998018207026' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'New York' - }, - Date: '2012-06-16T00:00:00', - Value: '40.241414001323939', - NumberOfUnits: '490' - }, - { - Product: { - Name: 'Components', - UnitPrice: '48.753350437038272' - }, - Seller: { - Name: 'Harold Garvin', - City: 'London' - }, - Date: '2012-06-18T00:00:00', - Value: '55.616326516315496', - NumberOfUnits: '238' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.427641199169514' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2012-06-23T00:00:00', - Value: '91.982604512936717', - NumberOfUnits: '170' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '48.675857367308744' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Mellvile' - }, - Date: '2012-07-04T00:00:00', - Value: '72.766442491098516', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '82.68037088340165' - }, - Seller: { - Name: 'Mark Slater', - City: 'Mellvile' - }, - Date: '2012-07-05T00:00:00', - Value: '56.774197684961457', - NumberOfUnits: '443' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '38.192183821551588' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'New York' - }, - Date: '2012-07-05T00:00:00', - Value: '27.482847276834232', - NumberOfUnits: '368' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '24.194019718186009' - }, - Seller: { - Name: 'Harold Garvin', - City: 'New York' - }, - Date: '2012-07-11T00:00:00', - Value: '38.517737592811571', - NumberOfUnits: '39' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '3.9898014180314729' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Tokyo' - }, - Date: '2012-07-13T00:00:00', - Value: '43.237088873627172', - NumberOfUnits: '95' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '81.770755481799483' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Berlin' - }, - Date: '2012-07-14T00:00:00', - Value: '42.55512666076195', - NumberOfUnits: '42' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '74.867355951511939' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2012-07-16T00:00:00', - Value: '61.42802050403693', - NumberOfUnits: '200' - }, - { - Product: { - Name: 'Components', - UnitPrice: '85.467303630647862' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2012-07-16T00:00:00', - Value: '10.45830762500796', - NumberOfUnits: '221' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '96.415402692004761' - }, - Seller: { - Name: 'Larry Lieb', - City: 'New York' - }, - Date: '2012-07-21T00:00:00', - Value: '99.639215692709769', - NumberOfUnits: '54' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.199419370945272' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2012-07-21T00:00:00', - Value: '55.958572614918737', - NumberOfUnits: '173' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '99.843983026148749' - }, - Seller: { - Name: 'Lydia Burson', - City: 'London' - }, - Date: '2012-07-23T00:00:00', - Value: '10.833150712229847', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '42.35462483128282' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Mellvile' - }, - Date: '2012-07-26T00:00:00', - Value: '91.545096361797818', - NumberOfUnits: '173' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '52.198385052475324' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Mellvile' - }, - Date: '2012-08-05T00:00:00', - Value: '98.8178437570193', - NumberOfUnits: '323' - }, - { - Product: { - Name: 'Components', - UnitPrice: '45.456700048156407' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2012-08-07T00:00:00', - Value: '26.029428060180244', - NumberOfUnits: '264' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '56.771143552274971' - }, - Seller: { - Name: 'Mark Slater', - City: 'Sofia' - }, - Date: '2012-08-09T00:00:00', - Value: '11.488629929483231', - NumberOfUnits: '385' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '3.5650837251753935' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2012-08-10T00:00:00', - Value: '25.95193755158779', - NumberOfUnits: '56' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '34.601844071690849' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2012-08-12T00:00:00', - Value: '96.15096314630982', - NumberOfUnits: '267' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '92.402922963911166' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2012-08-14T00:00:00', - Value: '94.912259883672121', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '34.719441707581019' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2012-08-17T00:00:00', - Value: '62.383219023413595', - NumberOfUnits: '478' - }, - { - Product: { - Name: 'Components', - UnitPrice: '23.335559257928075' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Berlin' - }, - Date: '2012-08-21T00:00:00', - Value: '57.657432163906023', - NumberOfUnits: '184' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '79.522237963751991' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2012-08-21T00:00:00', - Value: '35.349668718571621', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Components', - UnitPrice: '30.645626285414036' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2012-08-22T00:00:00', - Value: '95.940469715716532', - NumberOfUnits: '142' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '89.887765138357764' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2012-08-27T00:00:00', - Value: '27.453476901842972', - NumberOfUnits: '46' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '83.189849035437149' - }, - Seller: { - Name: 'Walter Pang', - City: 'Seattle' - }, - Date: '2012-09-03T00:00:00', - Value: '68.605291316567588', - NumberOfUnits: '102' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '0.10354146366172538' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Berlin' - }, - Date: '2012-09-09T00:00:00', - Value: '96.593755668305676', - NumberOfUnits: '21' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '36.629343143026041' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2012-09-10T00:00:00', - Value: '4.9306348920476788', - NumberOfUnits: '442' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '92.3085672279394' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2012-09-13T00:00:00', - Value: '99.215311091027843', - NumberOfUnits: '254' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '28.009415291254136' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2012-09-13T00:00:00', - Value: '49.9100303509785', - NumberOfUnits: '251' - }, - { - Product: { - Name: 'Components', - UnitPrice: '60.30177895925091' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2012-09-15T00:00:00', - Value: '43.926440898294764', - NumberOfUnits: '119' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '33.007745320446666' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2012-09-19T00:00:00', - Value: '32.426872864564352', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Components', - UnitPrice: '99.002955760342516' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2012-09-23T00:00:00', - Value: '35.80295570930604', - NumberOfUnits: '456' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.174323817796225' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'London' - }, - Date: '2012-10-01T00:00:00', - Value: '16.358145333993317', - NumberOfUnits: '430' - }, - { - Product: { - Name: 'Components', - UnitPrice: '72.899271488608449' - }, - Seller: { - Name: 'David Haley', - City: 'Berlin' - }, - Date: '2012-10-02T00:00:00', - Value: '57.0288074934058', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.662706984981291' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2012-10-18T00:00:00', - Value: '28.238128790742778', - NumberOfUnits: '440' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '28.342247115607488' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'New York' - }, - Date: '2012-10-19T00:00:00', - Value: '66.64152637433331', - NumberOfUnits: '234' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '80.468710223431088' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'New York' - }, - Date: '2012-10-25T00:00:00', - Value: '5.2594607254767141', - NumberOfUnits: '36' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '97.686087618435764' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2012-10-26T00:00:00', - Value: '41.233811686389991', - NumberOfUnits: '46' - }, - { - Product: { - Name: 'Components', - UnitPrice: '88.700193301169293' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'London' - }, - Date: '2012-11-02T00:00:00', - Value: '64.566657210032758', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '67.261227205051682' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2012-11-17T00:00:00', - Value: '14.189396572387498', - NumberOfUnits: '408' - }, - { - Product: { - Name: 'Components', - UnitPrice: '7.1456905022010631' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2012-11-20T00:00:00', - Value: '72.779385965680419', - NumberOfUnits: '376' - } -]; diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts index 3c1c96948..78f46cd92 100644 --- a/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts @@ -1,5 +1,8 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class PivotGridTemplate extends IgniteUIForReactTemplate { constructor() { @@ -14,5 +17,12 @@ class PivotGridTemplate extends IgniteUIForReactTemplate { this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; this.hasExtraConfiguration = false; } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "pivot-grid", "files") + ]; + } } module.exports = new PivotGridTemplate(); diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx b/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx deleted file mode 100644 index 08a0d106e..000000000 --- a/packages/cli/templates/react/igr-ts/tree-grid/basic/files/src/app/__path__/data.tsx +++ /dev/null @@ -1,155 +0,0 @@ -export interface Employee { - Age: number; - Employees?: Employee[]; - HireDate: Date; - ID: number; - Name: string; - Location: string; -} - -export const EMPLOYEE_DATA: Employee[] = [ - { - Age: 55, - Employees: [ - { - Age: 43, - Employees: [], - HireDate: new Date(2011, 6, 3), - ID: 3, - Name: 'Michael Burke', - Location: 'London' - }, - { - Age: 29, - Employees: [], - HireDate: new Date(2009, 6, 19), - ID: 2, - Name: 'Thomas Anderson', - Location: 'London' - }, - { - Age: 31, - Employees: [ - { - Age: 35, - HireDate: new Date(2015, 9, 17), - ID: 6, - Name: 'Roland Mendel', - Location: 'Tokyo' - }, - { - Age: 44, - HireDate: new Date(2009, 10, 11), - ID: 12, - Name: 'Sven Cooper', - Location: 'Tokyo' - } - ], - HireDate: new Date(2014, 8, 18), - ID: 11, - Name: 'Monica Reyes', - Location: 'London' - } - ], - HireDate: new Date(2008, 3, 20), - ID: 1, - Name: 'Johnathan Winchester', - Location: 'London' - }, - { - Age: 42, - Employees: [ - { - Age: 44, - HireDate: new Date(2014, 4, 4), - ID: 14, - Name: 'Laurence Johnson', - Location: 'New Jersey' - }, - { - Age: 25, - Employees: [ - { - Age: 39, - HireDate: new Date(2010, 3, 22), - ID: 13, - Name: 'Trevor Ashworth', - Location: 'New Jersey' - } - ], - HireDate: new Date(2017, 11, 9), - ID: 5, - Name: 'Elizabeth Richards', - Location: 'New Jersey' - } - ], - HireDate: new Date(2014, 1, 22), - ID: 4, - Name: 'Ana Sanders', - Location: 'New Jersey' - }, - { - Age: 49, - Employees: [ - { - Age: 44, - Employees: [], - HireDate: new Date(2014, 4, 4), - ID: 17, - Name: 'Antonio Moreno', - Location: 'New Jersey' - } - ], - HireDate: new Date(2014, 1, 22), - ID: 18, - Name: 'Victoria Lincoln', - Location: 'New Jersey' - }, - { - Age: 61, - Employees: [ - { - Age: 50, - Employees: [ - { - Age: 25, - Employees: [], - HireDate: new Date(2017, 11, 9), - ID: 15, - Name: 'Patricia Simpson', - Location: 'New Jersey' - }, - { - Age: 39, - HireDate: new Date(2010, 3, 22), - ID: 9, - Name: 'Francisco Chang', - Location: 'Tokyo' - }, - { - Age: 25, - HireDate: new Date(2018, 3, 18), - ID: 16, - Name: 'Peter Lewis', - Location: 'New Jersey' - } - ], - HireDate: new Date(2007, 11, 18), - ID: 7, - Name: 'Pedro Rodriguez', - Location: 'New Jersey' - }, - { - Age: 27, - HireDate: new Date(2016, 2, 19), - ID: 8, - Name: 'Casey Harper', - Location: 'Tokyo' - } - ], - HireDate: new Date(2010, 1, 1), - ID: 10, - Name: 'Yuki Onna', - Location: 'Tokyo' - } -]; diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts index 7f5fc1707..fb6f7d058 100644 --- a/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts @@ -1,5 +1,8 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIForReactTemplate"; import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class TreeGridTemplate extends IgniteUIForReactTemplate { constructor() { @@ -14,5 +17,12 @@ class TreeGridTemplate extends IgniteUIForReactTemplate { this.packages = [IGNITEUI_REACT_GRIDS_PACKAGE]; this.hasExtraConfiguration = false; } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "tree-grid", "files") + ]; + } } module.exports = new TreeGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts b/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts index 21b4e12f4..0b4b79a5c 100644 --- a/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts +++ b/packages/cli/templates/webcomponents/igc-ts/grid/default/files/src/app/__path__/__filePrefix__.ts @@ -1,9 +1,11 @@ import { html, css, LitElement } from 'lit'; import { customElement, state } from 'lit/decorators.js'; -import { IgcGridComponent, type IgcGroupingExpression, SortingDirection } from 'igniteui-webcomponents-grids'; +import { IgcGridComponent } from 'igniteui-webcomponents-grids'; import gridThemeLightMaterial from 'igniteui-webcomponents-grids/grids/themes/light/material.css?inline' +import { employeesData, type Employee } from './data.js'; + IgcGridComponent.register(); @customElement('app-$(path)') @@ -51,39 +53,7 @@ export default class $(ClassName) extends LitElement { `; @state() - data: any[] = [{ - country: 'USA', - countryFlag: 'https://static.infragistics.com/xplatform/images/flags/USA.png', - margin: 0.03, - orderDate: new Date(2021, 4, 3), - orderItems: 7, - orderValue: 500, - productID: 1001, - productName: 'Patriot Memory', - productPrice: 2000, - status: 'Shipped', - }, - { - country: 'Croatia', - countryFlag: 'https://static.infragistics.com/xplatform/images/flags/Croatia.png', - margin: 0.05, - orderDate: new Date(2021, 1, 10), - orderItems: 11, - orderValue: 760, - productID: 1002, - productName: 'Asus GPU', - productPrice: 3000, - status: 'Packing', - }]; - - @state() - groupingExpressions: IgcGroupingExpression[] = [ - { fieldName: 'status', dir: SortingDirection.Desc }, - ]; - - private flagTemplate = ({ cell }: any) => html` - - `; + data: Employee[] = employeesData; render() { return html` @@ -101,19 +71,16 @@ export default class $(ClassName) extends LitElement { - - - - - - - - + + + + + + +
diff --git a/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts b/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts index 6c502014c..d3783af52 100644 --- a/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts @@ -1,16 +1,26 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class IgcGridTemplate extends IgniteUIForWebComponentsTemplate { - constructor() { - super(__dirname); - this.components = ["Grid"]; - this.controlGroup = "Grids & Lists"; - this.listInComponentTemplates = true; - this.id = "grid"; - this.projectType = "igc-ts"; - this.name = "Grid"; - this.description = "IgcGrid with local data"; - this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; - } + constructor() { + super(__dirname); + this.components = ["Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "grid"; + this.projectType = "igc-ts"; + this.name = "Grid"; + this.description = "IgcGrid with local data"; + this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; + } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "grid", "files") + ]; + } } module.exports = new IgcGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts deleted file mode 100644 index 300fa1f90..000000000 --- a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/files/src/app/__path__/data.ts +++ /dev/null @@ -1,1038 +0,0 @@ -export interface Artist { - Artist: string; - HasGrammyAward: boolean; - Debut: number; - GrammyNominations: number; - GrammyAwards: number; - Albums?: Album[]; -} - -export interface Album { - Album: string; - LaunchDate: Date; - BillboardReview: number; - USBillboard200: number; - Artist: string; - Songs?: Song[]; -} - -export interface Song { - TrackNumber: string; - Title: string; - Released: string; - Genre: string; - Album: string; -} - -export const ARTISTS: Artist[] = [ - { - Artist: "Naomí Yepes", - HasGrammyAward: false, - Debut: 2011, - GrammyNominations: 6, - GrammyAwards: 0, - Albums: [ - { - Album: "Initiation", - LaunchDate: new Date("September 3, 2013"), - BillboardReview: 86, - USBillboard200: 1, - Artist: "Naomí Yepes" - }, - { - Album: "Dream Driven", - LaunchDate: new Date("August 25, 2014"), - BillboardReview: 81, - USBillboard200: 1, - Artist: "Naomí Yepes", - Songs: [ - { - TrackNumber: "1", - Title: "Intro", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "2", - Title: "Ferocious", - Released: "28-Apr-2014", - Genre: "Dance-pop R&B", - Album: "Dream Driven" - }, - { - TrackNumber: "3", - Title: "Going crazy", - Released: "10-Feb-2015", - Genre: "Dance-pop EDM", - Album: "Dream Driven" - }, - { - TrackNumber: "4", - Title: "Future past", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "5", - Title: "Roaming like them", - Released: "2-Jul-2014", - Genre: "Electro house Electropop", - Album: "Dream Driven" - }, - { - TrackNumber: "6", - Title: "Last Wishes", - Released: "12-Aug-2014", - Genre: "R&B", - Album: "Dream Driven" - }, - { - TrackNumber: "7", - Title: "Stay where you are", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "8", - Title: "Imaginarium", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "9", - Title: "Tell me", - Released: "30-Sep-2014", - Genre: "Synth-pop R&B", - Album: "Dream Driven" - }, - { - TrackNumber: "10", - Title: "Shredded into pieces", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "11", - Title: "Capture this moment", - Released: "*", - Genre: "*", - Album: "Dream Driven" - }, - { - TrackNumber: "12", - Title: "Dream Driven", - Released: "*", - Genre: "*", - Album: "Dream Driven" - } - ] - }, - { - Album: "The dragon journey", - LaunchDate: new Date("May 20, 2016"), - BillboardReview: 60, - USBillboard200: 2, - Artist: "Naomí Yepes" - }, - { - Album: "Organic me", - LaunchDate: new Date("August 17, 2018"), - BillboardReview: 82, - USBillboard200: 1, - Artist: "Naomí Yepes", - Songs: [ - { - TrackNumber: "1", - Title: "I Love", - Released: "11-May-2019", - Genre: "Crunk reggaeton", - Album: "Organic me" - }, - { - TrackNumber: "2", - Title: "Early Morning Compass", - Released: "15-Jan-2020", - Genre: "mystical parody-bap ", - Album: "Organic me" - }, - { - TrackNumber: "3", - Title: "Key Fields Forever", - Released: "2-Jan-2020", - Genre: "Dance-pop EDM", - Album: "Organic me" - }, - { - TrackNumber: "4", - Title: "Stand by Your Goblins", - Released: "20-Nov-2019", - Genre: "*", - Album: "Organic me" - }, - { - TrackNumber: "5", - Title: "Mad to Walk", - Released: "12-May-2019", - Genre: "Electro house Electropop", - Album: "Organic me" - }, - { - TrackNumber: "6", - Title: "Alice's Waiting", - Released: "28-Jan-2020", - Genre: "R&B", - Album: "Organic me" - }, - { - TrackNumber: "7", - Title: "We Shall Kiss", - Released: "30-Oct-2019", - Genre: "*", - Album: "Organic me" - }, - { - TrackNumber: "8", - Title: "Behind Single Ants", - Released: "2-Oct-2019", - Genre: "*", - Album: "Organic me" - }, - { - TrackNumber: "9", - Title: "Soap Autopsy", - Released: "8-Aug-2019", - Genre: "Synth-pop R&B", - Album: "Organic me" - }, - { - TrackNumber: "10", - Title: "Have You Met Rich?", - Released: "1-Jul-2019", - Genre: "ethno-tunes", - Album: "Organic me" - }, - { - TrackNumber: "11", - Title: "Livin' on a Banana", - Released: "22-Nov-2019", - Genre: "Crunk reggaeton", - Album: "Organic me" - } - ] - }, - { - Album: "Curiosity", - LaunchDate: new Date("December 7, 2019"), - BillboardReview: 75, - USBillboard200: 12, - Artist: "Naomí Yepes" - } - ] - }, - { - Artist: "Babila Ebwélé", - HasGrammyAward: true, - Debut: 2009, - GrammyNominations: 0, - GrammyAwards: 11, - Albums: [ - { - Album: "Pushing up daisies", - LaunchDate: new Date("May 31, 2000"), - BillboardReview: 86, - USBillboard200: 42, - Artist: "Babila Ebwélé", - Songs: [ - { - TrackNumber: "1", - Title: "Wood Shavings Forever", - Released: "9-Jun-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "2", - Title: "Early Morning Drive", - Released: "20-May-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "3", - Title: "Don't Natter", - Released: "10-Jun-2019", - Genre: "adult calypso-industrial", - Album: "Pushing up daisies" - }, - { - TrackNumber: "4", - Title: "Stairway to Balloons", - Released: "18-Jun-2019", - Genre: "calypso and mariachi", - Album: "Pushing up daisies" - }, - { - TrackNumber: "5", - Title: "The Number of your Apple", - Released: "29-Oct-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "6", - Title: "Your Delightful Heart", - Released: "24-Feb-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "7", - Title: "Nice Weather For Balloons", - Released: "1-Aug-2019", - Genre: "rap-hop", - Album: "Pushing up daisies" - }, - { - TrackNumber: "8", - Title: "The Girl From Cornwall", - Released: "4-May-2019", - Genre: "enigmatic rock-and-roll", - Album: "Pushing up daisies" - }, - { - TrackNumber: "9", - Title: "Here Without Jack", - Released: "24-Oct-2019", - Genre: "*", - Album: "Pushing up daisies" - }, - { - TrackNumber: "10", - Title: "Born Rancid", - Released: "19-Mar-2019", - Genre: "*", - Album: "Pushing up daisies" - } - ] - }, - { - Album: "Death's dead", - LaunchDate: new Date("June 8, 2016"), - BillboardReview: 85, - USBillboard200: 95, - Artist: "Babila Ebwélé", - Songs: [ - { - TrackNumber: "1", - Title: "Men Sound Better With You", - Released: "20-Oct-2019", - Genre: "rap-hop", - Album: "Death's dead" - }, - { - TrackNumber: "2", - Title: "Ghost in My Rod", - Released: "5-Oct-2019", - Genre: "enigmatic rock-and-roll", - Album: "Death's dead" - }, - { - TrackNumber: "3", - Title: "Bed of Men", - Released: "14-Nov-2019", - Genre: "whimsical comedy-grass ", - Album: "Death's dead" - }, - { - TrackNumber: "4", - Title: "Don't Push", - Released: "2-Jan-2020", - Genre: "unblack electronic-trip-hop", - Album: "Death's dead" - }, - { - TrackNumber: "5", - Title: "Nice Weather For Men", - Released: "18-Dec-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "6", - Title: "Rancid Rhapsody", - Released: "10-Mar-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "7", - Title: "Push, Push, Push!", - Released: "21-Feb-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "8", - Title: "My Name is Sarah", - Released: "15-Nov-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "9", - Title: "The Girl From My Hotel", - Released: "6-Nov-2019", - Genre: "*", - Album: "Death's dead" - }, - { - TrackNumber: "10", - Title: "Free Box", - Released: "18-Apr-2019", - Genre: "splitter-funk", - Album: "Death's dead" - }, - { - TrackNumber: "11", - Title: "Hotel Cardiff", - Released: "30-Dec-2019", - Genre: "guilty pleasure ebm", - Album: "Death's dead" - } - ] - } - ] - }, - { - Artist: "Ahmad Nazeri", - HasGrammyAward: true, - Debut: 2004, - GrammyNominations: 3, - GrammyAwards: 1, - Albums: [ - { - Album: "Emergency", - LaunchDate: new Date("March 6, 2004"), - BillboardReview: 98, - USBillboard200: 69, - Artist: "Ahmad Nazeri" - }, - { - Album: "Bursting bubbles", - LaunchDate: new Date("April 17, 2006"), - BillboardReview: 69, - USBillboard200: 39, - Artist: "Ahmad Nazeri" - } - ] - }, - { - Artist: "Kimmy McIlmorie", - HasGrammyAward: true, - Debut: 2007, - GrammyNominations: 21, - GrammyAwards: 3, - Albums: [ - { - Album: "Here we go again", - LaunchDate: new Date("November 18, 2017"), - BillboardReview: 68, - USBillboard200: 1, - Artist: "Kimmy McIlmorie" - } - ] - }, - { - Artist: "Mar Rueda", - HasGrammyAward: true, - Debut: 1996, - GrammyNominations: 14, - GrammyAwards: 2 - }, - { - Artist: "Izabella Tabakova", - HasGrammyAward: true, - Debut: 2017, - GrammyNominations: 7, - GrammyAwards: 11, - Albums: [ - { - Album: "Once bitten", - LaunchDate: new Date("July 16, 2007"), - BillboardReview: 79, - USBillboard200: 53, - Artist: "Izabella Tabakova", - Songs: [ - { - TrackNumber: "1", - Title: "Whole Lotta Super Cats", - Released: "21-May-2019", - Genre: "*", - Album: "Once bitten" - }, - { - TrackNumber: "2", - Title: "Enter Becky", - Released: "16-Jan-2020", - Genre: "*", - Album: "Once bitten" - }, - { - TrackNumber: "3", - Title: "Your Cheatin' Flamingo", - Released: "14-Jan-2020", - Genre: "*", - Album: "Once bitten" - }, - { - TrackNumber: "4", - Title: "Mad to Kiss", - Released: "6-Nov-2019", - Genre: "Synth-pop R&B", - Album: "Once bitten" - }, - { - TrackNumber: "5", - Title: "Hotel Prague", - Released: "20-Oct-2019", - Genre: "ethno-tunes", - Album: "Once bitten" - }, - { - TrackNumber: "6", - Title: "Jail on My Mind", - Released: "31-May-2019", - Genre: "Crunk reggaeton", - Album: "Once bitten" - }, - { - TrackNumber: "7", - Title: "Amazing Blues", - Released: "29-May-2019", - Genre: "mystical parody-bap ", - Album: "Once bitten" - }, - { - TrackNumber: "8", - Title: "Goody Two Iron Filings", - Released: "4-Jul-2019", - Genre: "Electro house Electropop", - Album: "Once bitten" - }, - { - TrackNumber: "9", - Title: "I Love in Your Arms", - Released: "7-Jun-2019", - Genre: "R&B", - Album: "Once bitten" - }, - { - TrackNumber: "10", - Title: "Truly Madly Amazing", - Released: "12-Sep-2019", - Genre: "ethno-tunes", - Album: "Once bitten" - } - ] - }, - { - Album: "Your graciousness", - LaunchDate: new Date("November 17, 2004"), - BillboardReview: 69, - USBillboard200: 30, - Artist: "Izabella Tabakova", - Songs: [ - { - TrackNumber: "1", - Title: "We Shall Tickle", - Released: "31-Aug-2019", - Genre: "old emo-garage ", - Album: "Your graciousness" - }, - { - TrackNumber: "2", - Title: "Snail Boogie", - Released: "14-Jun-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "3", - Title: "Amazing Liz", - Released: "15-Oct-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "4", - Title: "When Sexy Aardvarks Cry", - Released: "1-Oct-2019", - Genre: "whimsical comedy-grass ", - Album: "Your graciousness" - }, - { - TrackNumber: "5", - Title: "Stand By Dave", - Released: "18-Aug-2019", - Genre: "unblack electronic-trip-hop", - Album: "Your graciousness" - }, - { - TrackNumber: "6", - Title: "The Golf Course is Your Land", - Released: "2-Apr-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "7", - Title: "Where Have All the Men Gone?", - Released: "29-Apr-2019", - Genre: "*", - Album: "Your graciousness" - }, - { - TrackNumber: "8", - Title: "Rhythm of the Leg", - Released: "5-Aug-2019", - Genre: "ethno-tunes", - Album: "Your graciousness" - }, - { - TrackNumber: "9", - Title: "Baby, I Need Your Hats", - Released: "5-Dec-2019", - Genre: "neuro-tunes", - Album: "Your graciousness" - }, - { - TrackNumber: "10", - Title: "Stand by Your Cat", - Released: "25-Jul-2019", - Genre: "*", - Album: "Your graciousness" - } - ] - }, - { - Album: "Dark matters", - LaunchDate: new Date("November 3, 2002"), - BillboardReview: 79, - USBillboard200: 85, - Artist: "Izabella Tabakova" - } - ] - }, - { - Artist: "Nguyễn Diệp Chi", - HasGrammyAward: true, - Debut: 1992, - GrammyNominations: 4, - GrammyAwards: 2, - Albums: [ - { - Album: "Library of liberty", - LaunchDate: new Date("December 22, 2003"), - BillboardReview: 93, - USBillboard200: 5, - Artist: "Nguyễn Diệp Chi" - } - ] - }, - { - Artist: "Eva Lee", - HasGrammyAward: false, - Debut: 2008, - GrammyNominations: 2, - GrammyAwards: 0, - Albums: [ - { - Album: "Just a tease", - LaunchDate: new Date("May 3, 2001"), - BillboardReview: 91, - USBillboard200: 29, - Artist: "Eva Lee" - } - ] - }, - { - Artist: "Siri Jakobsson", - HasGrammyAward: true, - Debut: 1990, - GrammyNominations: 2, - GrammyAwards: 8, - Albums: [ - { - Album: "Under the bus", - LaunchDate: new Date("May 14, 2000"), - BillboardReview: 67, - USBillboard200: 67, - Artist: "Siri Jakobsson", - Songs: [ - { - TrackNumber: "1", - Title: "Jack Broke My Heart At Tesco's", - Released: "19-Jan-2020", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "2", - Title: "Cat Deep, Hats High", - Released: "5-Dec-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "3", - Title: "In Snail We Trust", - Released: "31-May-2019", - Genre: "hardcore opera", - Album: "Under the bus" - }, - { - TrackNumber: "4", - Title: "Liz's Waiting", - Released: "22-Jul-2019", - Genre: "emotional C-jam ", - Album: "Under the bus" - }, - { - TrackNumber: "5", - Title: "Lifeless Blues", - Released: "14-Jun-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "6", - Title: "I Spin", - Released: "26-Mar-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "7", - Title: "Ring of Rock", - Released: "12-Dec-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "8", - Title: "Livin' on a Rock", - Released: "17-Apr-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "9", - Title: "Your Lifeless Heart", - Released: "15-Sep-2019", - Genre: "adult calypso-industrial", - Album: "Under the bus" - }, - { - TrackNumber: "10", - Title: "The High Street on My Mind", - Released: "11-Nov-2019", - Genre: "calypso and mariachi", - Album: "Under the bus" - }, - { - TrackNumber: "11", - Title: "Behind Ugly Curtains", - Released: "8-May-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "12", - Title: "Where Have All the Curtains Gone?", - Released: "28-Jun-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "13", - Title: "Ghost in My Apple", - Released: "14-Dec-2019", - Genre: "*", - Album: "Under the bus" - }, - { - TrackNumber: "14", - Title: "I Chatter", - Released: "30-Nov-2019", - Genre: "*", - Album: "Under the bus" - } - ] - } - ] - }, - { - Artist: "Pablo Cambeiro", - HasGrammyAward: false, - Debut: 2011, - GrammyNominations: 5, - GrammyAwards: 0, - Albums: [ - { - Album: "Fluke", - LaunchDate: new Date("August 4, 2017"), - BillboardReview: 93, - USBillboard200: 98, - Artist: "Pablo Cambeiro" - }, - { - Album: "Crowd control", - LaunchDate: new Date("August 26, 2003"), - BillboardReview: 68, - USBillboard200: 84, - Artist: "Pablo Cambeiro", - Songs: [ - { - TrackNumber: "1", - Title: "My Bed on My Mind", - Released: "25-Mar-2019", - Genre: "ethno-tunes", - Album: "Crowd control" - }, - { - TrackNumber: "2", - Title: "Bright Blues", - Released: "28-Sep-2019", - Genre: "neuro-tunes", - Album: "Crowd control" - }, - { - TrackNumber: "3", - Title: "Sail, Sail, Sail!", - Released: "5-Mar-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "4", - Title: "Hotel My Bed", - Released: "22-Mar-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "5", - Title: "Gonna Make You Mash", - Released: "18-May-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "6", - Title: "Straight Outta America", - Released: "16-Jan-2020", - Genre: "hardcore opera", - Album: "Crowd control" - }, - { - TrackNumber: "7", - Title: "I Drive", - Released: "23-Feb-2019", - Genre: "emotional C-jam ", - Album: "Crowd control" - }, - { - TrackNumber: "8", - Title: "Like a Teddy", - Released: "31-Aug-2019", - Genre: "*", - Album: "Crowd control" - }, - { - TrackNumber: "9", - Title: "Teddy Boogie", - Released: "30-Nov-2019", - Genre: "*", - Album: "Crowd control" - } - ] - } - ] - }, - { - Artist: "Athar Malakooti", - HasGrammyAward: false, - Debut: 2017, - GrammyNominations: 0, - GrammyAwards: 0, - Albums: [ - { - Album: "Pushing up daisies", - LaunchDate: new Date("February 24, 2016"), - BillboardReview: 74, - USBillboard200: 77, - Artist: "Athar Malakooti" - } - ] - }, - { - Artist: "Marti Valencia", - HasGrammyAward: true, - Debut: 2004, - GrammyNominations: 1, - GrammyAwards: 1, - Albums: [ - { - Album: "Nemesis", - LaunchDate: new Date("June 30, 2004"), - BillboardReview: 94, - USBillboard200: 9, - Artist: "Marti Valencia" - }, - { - Album: "First chance", - LaunchDate: new Date("January 7, 2019"), - BillboardReview: 96, - USBillboard200: 19, - Artist: "Marti Valencia", - Songs: [ - { - TrackNumber: "1", - Title: "My Name is Jason", - Released: "12-Jul-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "2", - Title: "Amazing Andy", - Released: "5-Mar-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "3", - Title: "The Number of your Knight", - Released: "4-Dec-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "4", - Title: "I Sail", - Released: "3-Mar-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "5", - Title: "Goody Two Hands", - Released: "11-Oct-2019", - Genre: "Electro house Electropop", - Album: "First chance" - }, - { - TrackNumber: "6", - Title: "Careful With That Knife", - Released: "18-Dec-2019", - Genre: "R&B", - Album: "First chance" - }, - { - TrackNumber: "7", - Title: "Four Single Ants", - Released: "18-Jan-2020", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "8", - Title: "Kiss Forever", - Released: "10-Aug-2019", - Genre: "*", - Album: "First chance" - }, - { - TrackNumber: "9", - Title: "Rich's Waiting", - Released: "15-Mar-2019", - Genre: "Synth-pop R&B", - Album: "First chance" - }, - { - TrackNumber: "10", - Title: "Japan is Your Land", - Released: "7-Mar-2019", - Genre: "ethno-tunes", - Album: "First chance" - }, - { - TrackNumber: "11", - Title: "Pencils in My Banana", - Released: "21-Jun-2019", - Genre: "Crunk reggaeton", - Album: "First chance" - }, - { - TrackNumber: "12", - Title: "I Sail in Your Arms", - Released: "30-Apr-2019", - Genre: "Synth-pop R&B", - Album: "First chance" - } - ] - }, - { - Album: "God's advocate", - LaunchDate: new Date("April 29, 2007"), - BillboardReview: 66, - USBillboard200: 37, - Artist: "Marti Valencia" - } - ] - }, - { - Artist: "Alicia Stanger", - HasGrammyAward: false, - Debut: 2010, - GrammyNominations: 1, - GrammyAwards: 0, - Albums: [ - { - Album: "Forever alone", - LaunchDate: new Date("November 3, 2005"), - BillboardReview: 82, - USBillboard200: 7, - Artist: "Alicia Stanger" - } - ] - }, - { - Artist: "Peter Taylor", - HasGrammyAward: true, - Debut: 2005, - GrammyNominations: 0, - GrammyAwards: 2, - Albums: [ - { - Album: "Decisions decisions", - LaunchDate: new Date("April 10, 2008"), - BillboardReview: 85, - USBillboard200: 35, - Artist: "Peter Taylor" - }, - { - Album: "Climate changed", - LaunchDate: new Date("June 20, 2015"), - BillboardReview: 66, - USBillboard200: 89, - Artist: "Peter Taylor" - } - ] - } -]; diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts index 51f4a423d..10aaa1ab3 100644 --- a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts @@ -1,4 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class IgcHierarchicalGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { @@ -12,5 +15,12 @@ class IgcHierarchicalGridTemplate extends IgniteUIForWebComponentsTemplate { this.description = "IgcHierarchicalGrid with basic configuration"; this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "hierarchical-grid", "files") + ]; + } } module.exports = new IgcHierarchicalGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts index f6fbc96b5..b908f5d16 100644 --- a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts @@ -1,4 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class IgcPivotGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { @@ -12,5 +15,12 @@ class IgcPivotGridTemplate extends IgniteUIForWebComponentsTemplate { this.description = "Basic IgcPivotGrid component"; this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "pivot-grid", "files") + ]; + } } module.exports = new IgcPivotGridTemplate(); diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts index 483edafed..3a5679b28 100644 --- a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts @@ -1,4 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); class IgcTreeGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { @@ -12,5 +15,12 @@ class IgcTreeGridTemplate extends IgniteUIForWebComponentsTemplate { this.description = "IgcTreeGrid with hierarchical data"; this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ]; } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "tree-grid", "files") + ]; + } } module.exports = new IgcTreeGridTemplate(); diff --git a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.ts b/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.ts index 4172c1443..c93f96459 100644 --- a/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.ts +++ b/packages/igx-templates/igx-ts/grid/default/files/src/app/__path__/__filePrefix__.ts @@ -1,6 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { ColumnType, IgxGridComponent, IgxPaginatorComponent } from '<%=igxPackage%>'; -import { Employee, employeesData } from './localData'; +import { Employee, employeesData } from './data'; @Component({ selector: 'app-<%=filePrefix%>', diff --git a/packages/igx-templates/igx-ts/grid/default/index.ts b/packages/igx-templates/igx-ts/grid/default/index.ts index 288cfa021..e1f74b270 100644 --- a/packages/igx-templates/igx-ts/grid/default/index.ts +++ b/packages/igx-templates/igx-ts/grid/default/index.ts @@ -1,17 +1,27 @@ import { IGNITEUI_ANGULAR_PACKAGE } from "../../../constants"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); class IgxGridTemplate extends IgniteUIForAngularTemplate { - constructor() { - super(__dirname); - this.components = ["Grid"]; - this.controlGroup = "Grids & Lists"; - this.listInComponentTemplates = true; - this.id = "grid"; - this.projectType = "igx-ts"; - this.name = "Grid"; - this.description = "basic IgxGrid"; - this.packages = [IGNITEUI_ANGULAR_PACKAGE]; - } + constructor() { + super(__dirname); + this.components = ["Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "grid"; + this.projectType = "igx-ts"; + this.name = "Grid"; + this.description = "basic IgxGrid"; + this.packages = [IGNITEUI_ANGULAR_PACKAGE]; + } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "grid", "files") + ]; + } } module.exports = new IgxGridTemplate(); diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts b/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts index 6e821f0e2..68170a776 100644 --- a/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts +++ b/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts @@ -1,17 +1,27 @@ import { IGNITEUI_ANGULAR_PACKAGE } from "../../../constants"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); class IgxHierarchicalGridTemplate extends IgniteUIForAngularTemplate { - constructor() { - super(__dirname); - this.components = ["Hierarchical Grid"]; - this.controlGroup = "Grids & Lists"; - this.listInComponentTemplates = true; - this.id = "hierarchical-grid"; - this.projectType = "igx-ts"; - this.name = "Hierarchical Grid"; - this.description = "basic IgxHierarchicalGrid"; - this.packages = [IGNITEUI_ANGULAR_PACKAGE]; - } + constructor() { + super(__dirname); + this.components = ["Hierarchical Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "hierarchical-grid"; + this.projectType = "igx-ts"; + this.name = "Hierarchical Grid"; + this.description = "basic IgxHierarchicalGrid"; + this.packages = [IGNITEUI_ANGULAR_PACKAGE]; + } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "hierarchical-grid", "files") + ]; + } } module.exports = new IgxHierarchicalGridTemplate(); diff --git a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/data.ts b/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/data.ts deleted file mode 100644 index 8fa57cd86..000000000 --- a/packages/igx-templates/igx-ts/pivot-grid/default/files/src/app/__path__/data.ts +++ /dev/null @@ -1,6502 +0,0 @@ -export const DATA: any = [ - { - Product: { - Name: 'Clothing', - UnitPrice: '12.814860936633712' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2007-01-01T00:00:00', - Value: '94.2652032683907', - NumberOfUnits: '282' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '49.579375120615296' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2007-01-05T00:00:00', - Value: '70.798922689072285', - NumberOfUnits: '296' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '3.5653273591610266' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2007-01-06T00:00:00', - Value: '35.799331607203619', - NumberOfUnits: '68' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '85.581758145979492' - }, - Seller: { - Name: 'David Haley', - City: 'London' - }, - Date: '2007-01-07T00:00:00', - Value: '41.411331268684627', - NumberOfUnits: '293' - }, - { - Product: { - Name: 'Components', - UnitPrice: '18.137625846144569' - }, - Seller: { - Name: 'John Smith', - City: 'Seattle' - }, - Date: '2007-01-08T00:00:00', - Value: '60.474313730594851', - NumberOfUnits: '240' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '68.330973139186852' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Tokyo' - }, - Date: '2007-01-12T00:00:00', - Value: '37.920727319047195', - NumberOfUnits: '456' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.056252511244384' - }, - Seller: { - Name: 'Walter Pang', - City: 'Sofia' - }, - Date: '2007-02-09T00:00:00', - Value: '89.1950179306767', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.235206612960994' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Tokyo' - }, - Date: '2007-02-16T00:00:00', - Value: '1.8611075365269125', - NumberOfUnits: '78' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '73.215433663323253' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2007-02-17T00:00:00', - Value: '4.611142726899657', - NumberOfUnits: '150' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '73.614934400476017' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'London' - }, - Date: '2007-02-19T00:00:00', - Value: '36.1731772013815', - NumberOfUnits: '262' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '47.080544683654111' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2007-02-21T00:00:00', - Value: '18.699740766873461', - NumberOfUnits: '125' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '51.298256382019382' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Sofia' - }, - Date: '2007-03-04T00:00:00', - Value: '11.600706917979151', - NumberOfUnits: '42' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '27.466344333936622' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2007-03-04T00:00:00', - Value: '41.252478603856865', - NumberOfUnits: '282' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '22.374118083330856' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2007-03-17T00:00:00', - Value: '59.82648998490837', - NumberOfUnits: '305' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '85.292836504659078' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Tokyo' - }, - Date: '2007-03-23T00:00:00', - Value: '31.430979925874148', - NumberOfUnits: '265' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '80.675564091967217' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2007-03-25T00:00:00', - Value: '90.425077402230855', - NumberOfUnits: '350' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.613919642108456' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Mellvile' - }, - Date: '2007-03-27T00:00:00', - Value: '95.393439147338938', - NumberOfUnits: '82' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.041336636078235' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2007-04-02T00:00:00', - Value: '1.2766330043210803', - NumberOfUnits: '67' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '16.311566166724809' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Mellvile' - }, - Date: '2007-04-04T00:00:00', - Value: '25.354673632120097', - NumberOfUnits: '370' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '49.852171563474542' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Berlin' - }, - Date: '2007-04-12T00:00:00', - Value: '46.315344491189045', - NumberOfUnits: '228' - }, - { - Product: { - Name: 'Components', - UnitPrice: '44.761602042597531' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Tokyo' - }, - Date: '2007-04-15T00:00:00', - Value: '82.180273524569472', - NumberOfUnits: '272' - }, - { - Product: { - Name: 'Components', - UnitPrice: '44.395412618478488' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Berlin' - }, - Date: '2007-04-18T00:00:00', - Value: '83.970713701085515', - NumberOfUnits: '227' - }, - { - Product: { - Name: 'Components', - UnitPrice: '39.287860616709978' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2007-04-18T00:00:00', - Value: '94.261160769621455', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '36.581183335083153' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Tokyo' - }, - Date: '2007-04-21T00:00:00', - Value: '45.74127162142716', - NumberOfUnits: '414' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '75.8285212217963' - }, - Seller: { - Name: 'Walter Pang', - City: 'London' - }, - Date: '2007-04-25T00:00:00', - Value: '97.593172917884388', - NumberOfUnits: '43' - }, - { - Product: { - Name: 'Components', - UnitPrice: '57.757038929386553' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2007-04-26T00:00:00', - Value: '20.936109088797174', - NumberOfUnits: '71' - }, - { - Product: { - Name: 'Components', - UnitPrice: '40.231876140568346' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'New York' - }, - Date: '2007-05-14T00:00:00', - Value: '71.862645294453316', - NumberOfUnits: '321' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '49.525128002057379' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'London' - }, - Date: '2007-05-17T00:00:00', - Value: '49.451349419286174', - NumberOfUnits: '329' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '56.460825706115379' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2007-05-17T00:00:00', - Value: '72.704781020388381', - NumberOfUnits: '88' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '67.129778008502811' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'New York' - }, - Date: '2007-05-26T00:00:00', - Value: '56.169638576065019', - NumberOfUnits: '366' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.628920431541708' - }, - Seller: { - Name: 'Walter Pang', - City: 'Sofia' - }, - Date: '2007-06-02T00:00:00', - Value: '81.322212508563979', - NumberOfUnits: '450' - }, - { - Product: { - Name: 'Components', - UnitPrice: '89.2609520299644' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2007-06-06T00:00:00', - Value: '18.962721814849751', - NumberOfUnits: '475' - }, - { - Product: { - Name: 'Components', - UnitPrice: '33.752368871938607' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2007-06-11T00:00:00', - Value: '54.870849966477067', - NumberOfUnits: '195' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '54.101630511740986' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Sofia' - }, - Date: '2007-06-17T00:00:00', - Value: '71.630847021765462', - NumberOfUnits: '458' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '18.437854628282533' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Sofia' - }, - Date: '2007-07-04T00:00:00', - Value: '24.16097206257329', - NumberOfUnits: '7' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '96.142818264729726' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2007-07-08T00:00:00', - Value: '57.497908062067772', - NumberOfUnits: '158' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '22.990409435234223' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Tokyo' - }, - Date: '2007-07-09T00:00:00', - Value: '58.795889168417027', - NumberOfUnits: '34' - }, - { - Product: { - Name: 'Components', - UnitPrice: '52.664019145380713' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2007-07-10T00:00:00', - Value: '32.396441061234306', - NumberOfUnits: '412' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.127701128892468' - }, - Seller: { - Name: 'John Smith', - City: 'Sofia' - }, - Date: '2007-07-15T00:00:00', - Value: '84.924038818536346', - NumberOfUnits: '10' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '10.722568543033008' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2007-07-16T00:00:00', - Value: '52.205748228452052', - NumberOfUnits: '466' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.6933130848656006' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'London' - }, - Date: '2007-07-20T00:00:00', - Value: '34.224967395060212', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '43.724528301378953' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Mellvile' - }, - Date: '2007-07-24T00:00:00', - Value: '45.460345011884506', - NumberOfUnits: '307' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '76.440263947677' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2007-07-26T00:00:00', - Value: '26.061410608730007', - NumberOfUnits: '445' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '34.278292178305932' - }, - Seller: { - Name: 'Bryan Culver', - City: 'New York' - }, - Date: '2007-08-01T00:00:00', - Value: '89.2379715522928', - NumberOfUnits: '480' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '68.573393890901187' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Berlin' - }, - Date: '2007-08-02T00:00:00', - Value: '38.090129912872861', - NumberOfUnits: '390' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '65.068199003612719' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2007-08-05T00:00:00', - Value: '23.047295037213384', - NumberOfUnits: '388' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '44.938480036770216' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Seattle' - }, - Date: '2007-08-19T00:00:00', - Value: '23.370492376093981', - NumberOfUnits: '37' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '93.468684653504141' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2007-08-24T00:00:00', - Value: '17.307506789130862', - NumberOfUnits: '237' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '94.365085472522807' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2007-08-26T00:00:00', - Value: '54.621032604305555', - NumberOfUnits: '396' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '72.4087734112557' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2007-08-26T00:00:00', - Value: '60.920718014669006', - NumberOfUnits: '3' - }, - { - Product: { - Name: 'Components', - UnitPrice: '80.5917513932063' - }, - Seller: { - Name: 'Russell Shorter', - City: 'New York' - }, - Date: '2007-09-02T00:00:00', - Value: '85.134478139288021', - NumberOfUnits: '330' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '65.4044602836503' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2007-09-04T00:00:00', - Value: '51.209239359576827', - NumberOfUnits: '143' - }, - { - Product: { - Name: 'Components', - UnitPrice: '30.638690912462163' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Seattle' - }, - Date: '2007-09-05T00:00:00', - Value: '55.2145366348394', - NumberOfUnits: '318' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '7.6167185826304928' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Seattle' - }, - Date: '2007-09-06T00:00:00', - Value: '41.804668093940556', - NumberOfUnits: '393' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.946888019771727' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2007-09-10T00:00:00', - Value: '9.0849790764436964', - NumberOfUnits: '129' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '38.017715484843457' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2007-09-17T00:00:00', - Value: '25.578551518534564', - NumberOfUnits: '426' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '2.48126508783608' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2007-09-18T00:00:00', - Value: '36.332240158846716', - NumberOfUnits: '217' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '77.58936000875633' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2007-09-20T00:00:00', - Value: '27.885909670910756', - NumberOfUnits: '152' - }, - { - Product: { - Name: 'Components', - UnitPrice: '97.145493420374336' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Seattle' - }, - Date: '2007-09-25T00:00:00', - Value: '21.834250782539254', - NumberOfUnits: '452' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '19.697441309549585' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2007-10-02T00:00:00', - Value: '98.261060238937418', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '32.775894986826877' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2007-10-06T00:00:00', - Value: '79.624117389146292', - NumberOfUnits: '169' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '21.953632739350958' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Berlin' - }, - Date: '2007-10-14T00:00:00', - Value: '69.497183183905292', - NumberOfUnits: '386' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '35.591812029290857' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2007-10-14T00:00:00', - Value: '27.775967413455234', - NumberOfUnits: '454' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '46.950088509800885' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2007-10-25T00:00:00', - Value: '82.136559757467623', - NumberOfUnits: '334' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '41.134977406419338' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2007-10-26T00:00:00', - Value: '54.425787531969036', - NumberOfUnits: '107' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '13.837097405380149' - }, - Seller: { - Name: 'Mark Slater', - City: 'Sofia' - }, - Date: '2007-11-07T00:00:00', - Value: '86.212293890403728', - NumberOfUnits: '275' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '64.159993810653688' - }, - Seller: { - Name: 'Monica Freitag', - City: 'London' - }, - Date: '2007-11-09T00:00:00', - Value: '37.720342091154471', - NumberOfUnits: '241' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '1.2072517076540981' - }, - Seller: { - Name: 'Larry Lieb', - City: 'London' - }, - Date: '2007-11-11T00:00:00', - Value: '75.227352033940775', - NumberOfUnits: '177' - }, - { - Product: { - Name: 'Components', - UnitPrice: '57.8050364078046' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2007-11-13T00:00:00', - Value: '58.445235415569151', - NumberOfUnits: '494' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '39.492234559493248' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Mellvile' - }, - Date: '2007-11-19T00:00:00', - Value: '40.710543394419616', - NumberOfUnits: '451' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '5.21720713247415' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Tokyo' - }, - Date: '2008-01-01T00:00:00', - Value: '91.820002250289548', - NumberOfUnits: '125' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '53.42944141171381' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'London' - }, - Date: '2008-01-02T00:00:00', - Value: '30.892902720204045', - NumberOfUnits: '103' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '52.157351957707363' - }, - Seller: { - Name: 'Larry Lieb', - City: 'New York' - }, - Date: '2008-01-03T00:00:00', - Value: '42.964697369823554', - NumberOfUnits: '224' - }, - { - Product: { - Name: 'Components', - UnitPrice: '17.694580656334097' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2008-01-07T00:00:00', - Value: '47.573478262672893', - NumberOfUnits: '498' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '80.741111925216913' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2008-01-08T00:00:00', - Value: '15.613263806148089', - NumberOfUnits: '142' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '95.439666973166013' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Berlin' - }, - Date: '2008-01-21T00:00:00', - Value: '87.2099365513818', - NumberOfUnits: '487' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '21.778967427918204' - }, - Seller: { - Name: 'David Haley', - City: 'Mellvile' - }, - Date: '2008-01-27T00:00:00', - Value: '14.448109741531365', - NumberOfUnits: '331' - }, - { - Product: { - Name: 'Components', - UnitPrice: '29.907407625535225' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2008-02-03T00:00:00', - Value: '99.235560325549713', - NumberOfUnits: '418' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '39.839772945195328' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'New York' - }, - Date: '2008-02-04T00:00:00', - Value: '61.018408397686862', - NumberOfUnits: '214' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '40.366990370846814' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2008-02-05T00:00:00', - Value: '81.740158694675273', - NumberOfUnits: '229' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '35.198273153602273' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2008-02-05T00:00:00', - Value: '54.246561859849173', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '41.75500964827603' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2008-02-08T00:00:00', - Value: '17.860554632665849', - NumberOfUnits: '216' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '0.687878998316768' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2008-02-09T00:00:00', - Value: '84.92055874547016', - NumberOfUnits: '486' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '37.556058092767394' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Tokyo' - }, - Date: '2008-02-13T00:00:00', - Value: '45.0776737858903', - NumberOfUnits: '172' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '20.804581568019735' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2008-02-21T00:00:00', - Value: '60.542486123993285', - NumberOfUnits: '102' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.646779691170337' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Seattle' - }, - Date: '2008-02-24T00:00:00', - Value: '42.896613079540721', - NumberOfUnits: '36' - }, - { - Product: { - Name: 'Components', - UnitPrice: '53.290544102569356' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2008-02-25T00:00:00', - Value: '11.017731628854634', - NumberOfUnits: '71' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '24.854228983099681' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2008-02-25T00:00:00', - Value: '16.975014478422242', - NumberOfUnits: '53' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.6324524025584' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Tokyo' - }, - Date: '2008-02-25T00:00:00', - Value: '98.961504315473832', - NumberOfUnits: '104' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '9.6438375346566723' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Tokyo' - }, - Date: '2008-02-26T00:00:00', - Value: '96.234209880341865', - NumberOfUnits: '294' - }, - { - Product: { - Name: 'Components', - UnitPrice: '41.077790568153276' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Sofia' - }, - Date: '2008-03-03T00:00:00', - Value: '93.68367497515105', - NumberOfUnits: '454' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '36.977834551119173' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Berlin' - }, - Date: '2008-03-05T00:00:00', - Value: '82.816526006356128', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.830879969909265' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2008-03-08T00:00:00', - Value: '0.654079998216629', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Components', - UnitPrice: '24.716882512307205' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'New York' - }, - Date: '2008-03-09T00:00:00', - Value: '88.519476162511609', - NumberOfUnits: '225' - }, - { - Product: { - Name: 'Components', - UnitPrice: '65.64449792059348' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2008-03-10T00:00:00', - Value: '69.0674314131343', - NumberOfUnits: '422' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.470670270952709' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2008-03-12T00:00:00', - Value: '97.0884484691026', - NumberOfUnits: '303' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '65.1173483417916' - }, - Seller: { - Name: 'Carl Costello', - City: 'London' - }, - Date: '2008-03-13T00:00:00', - Value: '46.4407860983353', - NumberOfUnits: '319' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '39.577671764221819' - }, - Seller: { - Name: 'Harold Garvin', - City: 'London' - }, - Date: '2008-03-14T00:00:00', - Value: '48.544153733432367', - NumberOfUnits: '262' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '50.714457570907875' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2008-03-23T00:00:00', - Value: '91.7152666448221', - NumberOfUnits: '345' - }, - { - Product: { - Name: 'Components', - UnitPrice: '88.2468002793597' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2008-04-03T00:00:00', - Value: '87.275520939042579', - NumberOfUnits: '407' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.252974541509978' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2008-04-04T00:00:00', - Value: '15.127723903920373', - NumberOfUnits: '121' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '30.427555660916283' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2008-04-06T00:00:00', - Value: '44.425472405005934', - NumberOfUnits: '30' - }, - { - Product: { - Name: 'Components', - UnitPrice: '88.243144186326845' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2008-04-11T00:00:00', - Value: '25.280987110585436', - NumberOfUnits: '293' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '16.463555962063165' - }, - Seller: { - Name: 'David Haley', - City: 'Sofia' - }, - Date: '2008-04-12T00:00:00', - Value: '55.071955618947719', - NumberOfUnits: '271' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '95.208247981596855' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Sofia' - }, - Date: '2008-04-18T00:00:00', - Value: '25.773858011594907', - NumberOfUnits: '107' - }, - { - Product: { - Name: 'Components', - UnitPrice: '7.7514979558771' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Mellvile' - }, - Date: '2008-04-18T00:00:00', - Value: '54.484538247103117', - NumberOfUnits: '87' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '94.826276877348434' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2008-04-23T00:00:00', - Value: '78.9546419768383', - NumberOfUnits: '319' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.211896543024061' - }, - Seller: { - Name: 'Lydia Burson', - City: 'New York' - }, - Date: '2008-04-24T00:00:00', - Value: '21.612914242601448', - NumberOfUnits: '346' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '99.308858159607666' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2008-05-07T00:00:00', - Value: '77.780686075697034', - NumberOfUnits: '382' - }, - { - Product: { - Name: 'Components', - UnitPrice: '96.081492582374011' - }, - Seller: { - Name: 'Larry Lieb', - City: 'New York' - }, - Date: '2008-05-11T00:00:00', - Value: '35.351181326131886', - NumberOfUnits: '334' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '26.152281568456569' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Tokyo' - }, - Date: '2008-05-13T00:00:00', - Value: '28.839570995811176', - NumberOfUnits: '176' - }, - { - Product: { - Name: 'Components', - UnitPrice: '80.816311985634414' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2008-05-19T00:00:00', - Value: '8.3833388091918728', - NumberOfUnits: '125' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '78.320334701948028' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2008-05-19T00:00:00', - Value: '15.037549294083169', - NumberOfUnits: '458' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '93.996538219040517' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Berlin' - }, - Date: '2008-05-25T00:00:00', - Value: '68.472067345153576', - NumberOfUnits: '331' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.600178441312252' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2008-05-27T00:00:00', - Value: '70.953166331608386', - NumberOfUnits: '39' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.643226812427507' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2008-06-06T00:00:00', - Value: '97.089249918744542', - NumberOfUnits: '238' - }, - { - Product: { - Name: 'Components', - UnitPrice: '46.977469579771849' - }, - Seller: { - Name: 'Walter Pang', - City: 'London' - }, - Date: '2008-06-07T00:00:00', - Value: '5.6769712854535186', - NumberOfUnits: '84' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '80.151598053123621' - }, - Seller: { - Name: 'Mark Slater', - City: 'Tokyo' - }, - Date: '2008-06-08T00:00:00', - Value: '24.8368413303219', - NumberOfUnits: '363' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '43.5199616679549' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2008-06-08T00:00:00', - Value: '58.973721162869467', - NumberOfUnits: '479' - }, - { - Product: { - Name: 'Components', - UnitPrice: '56.316017851380643' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Sofia' - }, - Date: '2008-06-11T00:00:00', - Value: '87.466286116962451', - NumberOfUnits: '404' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '81.685168194437935' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2008-06-18T00:00:00', - Value: '80.283416472507369', - NumberOfUnits: '478' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '90.111846611887145' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Sofia' - }, - Date: '2008-06-19T00:00:00', - Value: '2.328636451777367', - NumberOfUnits: '285' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.342426471105966' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Sofia' - }, - Date: '2008-06-22T00:00:00', - Value: '82.489029449638466', - NumberOfUnits: '15' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '30.834545442291788' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Berlin' - }, - Date: '2008-06-26T00:00:00', - Value: '77.825110767886557', - NumberOfUnits: '245' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.386958358523884' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2008-07-01T00:00:00', - Value: '8.1397687588537888', - NumberOfUnits: '376' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '73.34977298665315' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2008-07-02T00:00:00', - Value: '48.44682516923492', - NumberOfUnits: '40' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '43.496660489354589' - }, - Seller: { - Name: 'Larry Lieb', - City: 'London' - }, - Date: '2008-07-10T00:00:00', - Value: '37.8727404577065', - NumberOfUnits: '112' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '16.394280649905223' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2008-07-15T00:00:00', - Value: '9.7406020433365388', - NumberOfUnits: '224' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '71.402299390827437' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Tokyo' - }, - Date: '2008-07-16T00:00:00', - Value: '66.4204306278473', - NumberOfUnits: '145' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '94.61881909268854' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2008-07-21T00:00:00', - Value: '46.491464388785637', - NumberOfUnits: '272' - }, - { - Product: { - Name: 'Components', - UnitPrice: '50.753261684790843' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2008-07-27T00:00:00', - Value: '90.114484676213223', - NumberOfUnits: '278' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '12.782123597702999' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2008-07-27T00:00:00', - Value: '89.137324080400788', - NumberOfUnits: '253' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.780031064422815' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2008-08-01T00:00:00', - Value: '28.40646618437323', - NumberOfUnits: '255' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '17.133888051441819' - }, - Seller: { - Name: 'David Haley', - City: 'Seattle' - }, - Date: '2008-08-02T00:00:00', - Value: '0.455726543653629', - NumberOfUnits: '46' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '22.126638806484006' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Tokyo' - }, - Date: '2008-08-08T00:00:00', - Value: '58.445409852287455', - NumberOfUnits: '279' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.986888765816992' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2008-08-08T00:00:00', - Value: '91.802758533415741', - NumberOfUnits: '89' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '83.838022585882825' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Sofia' - }, - Date: '2008-08-14T00:00:00', - Value: '52.590476420051637', - NumberOfUnits: '17' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '14.075806277839376' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2008-08-21T00:00:00', - Value: '53.912139196839249', - NumberOfUnits: '470' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '34.591086923420008' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2008-08-25T00:00:00', - Value: '1.7413051341387', - NumberOfUnits: '195' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '86.727353691462127' - }, - Seller: { - Name: 'Lydia Burson', - City: 'New York' - }, - Date: '2008-08-27T00:00:00', - Value: '23.782985947925127', - NumberOfUnits: '173' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '42.2365329890682' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'New York' - }, - Date: '2008-09-01T00:00:00', - Value: '51.1229278292148', - NumberOfUnits: '472' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '25.687071413587347' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2008-09-06T00:00:00', - Value: '88.372170640328974', - NumberOfUnits: '148' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '23.20858027004105' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2008-09-06T00:00:00', - Value: '94.485007689560291', - NumberOfUnits: '314' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '83.763652752974835' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2008-09-07T00:00:00', - Value: '66.778043828335612', - NumberOfUnits: '431' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '84.414287882118629' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2008-09-07T00:00:00', - Value: '27.639171773399774', - NumberOfUnits: '347' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '7.3291354846810624' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Berlin' - }, - Date: '2008-09-11T00:00:00', - Value: '2.7723569435870075', - NumberOfUnits: '27' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '9.5534944019995134' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Berlin' - }, - Date: '2008-09-12T00:00:00', - Value: '11.851146077667897', - NumberOfUnits: '5' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.820872164713627' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2008-09-19T00:00:00', - Value: '16.46975079386949', - NumberOfUnits: '191' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '79.869313901229447' - }, - Seller: { - Name: 'Bryan Culver', - City: 'New York' - }, - Date: '2008-09-25T00:00:00', - Value: '84.273458730556754', - NumberOfUnits: '421' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.238494475483193' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2008-10-03T00:00:00', - Value: '28.857351992678527', - NumberOfUnits: '297' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '96.094717130109075' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'New York' - }, - Date: '2008-10-04T00:00:00', - Value: '15.797333380113047', - NumberOfUnits: '128' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.009710244373281' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Mellvile' - }, - Date: '2008-10-13T00:00:00', - Value: '37.30084394910412', - NumberOfUnits: '210' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '35.7560529074427' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2008-10-14T00:00:00', - Value: '26.942082646741571', - NumberOfUnits: '315' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.989432462951839' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'New York' - }, - Date: '2008-10-19T00:00:00', - Value: '69.838245990610787', - NumberOfUnits: '489' - }, - { - Product: { - Name: 'Components', - UnitPrice: '84.320317201465514' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2008-10-21T00:00:00', - Value: '61.3185628137172', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '25.52848226648219' - }, - Seller: { - Name: 'John Smith', - City: 'Mellvile' - }, - Date: '2008-10-22T00:00:00', - Value: '69.33637818756344', - NumberOfUnits: '92' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '23.874032927618376' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2008-11-01T00:00:00', - Value: '81.091924282299317', - NumberOfUnits: '30' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '53.634575919077996' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Berlin' - }, - Date: '2008-11-01T00:00:00', - Value: '15.006514738782547', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '68.152902074229388' - }, - Seller: { - Name: 'Bryan Culver', - City: 'London' - }, - Date: '2008-11-10T00:00:00', - Value: '6.0539431898174536', - NumberOfUnits: '368' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '59.880471210871114' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2008-11-11T00:00:00', - Value: '39.091290505179806', - NumberOfUnits: '482' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '5.754821284559938' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2008-11-11T00:00:00', - Value: '48.663099086220889', - NumberOfUnits: '22' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '95.84922096498741' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2008-11-20T00:00:00', - Value: '87.1416628300872', - NumberOfUnits: '159' - }, - { - Product: { - Name: 'Components', - UnitPrice: '59.066441729230078' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Berlin' - }, - Date: '2008-11-25T00:00:00', - Value: '88.637168141378623', - NumberOfUnits: '52' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '94.029234626344049' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Tokyo' - }, - Date: '2009-01-05T00:00:00', - Value: '79.830559240575212', - NumberOfUnits: '194' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '12.794803135467136' - }, - Seller: { - Name: 'David Haley', - City: 'Berlin' - }, - Date: '2009-01-08T00:00:00', - Value: '42.869858277435348', - NumberOfUnits: '100' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.852128705872282' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Berlin' - }, - Date: '2009-01-10T00:00:00', - Value: '48.256240528196209', - NumberOfUnits: '252' - }, - { - Product: { - Name: 'Components', - UnitPrice: '79.434888241549444' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Tokyo' - }, - Date: '2009-01-13T00:00:00', - Value: '68.505005337533078', - NumberOfUnits: '116' - }, - { - Product: { - Name: 'Components', - UnitPrice: '90.91811845587479' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'London' - }, - Date: '2009-01-14T00:00:00', - Value: '27.461436776193526', - NumberOfUnits: '259' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.848602618951631' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2009-01-19T00:00:00', - Value: '56.725358290935567', - NumberOfUnits: '217' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '43.273846266453084' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Seattle' - }, - Date: '2009-01-22T00:00:00', - Value: '36.4720197098665', - NumberOfUnits: '48' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '0.65436926700843923' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'New York' - }, - Date: '2009-02-02T00:00:00', - Value: '71.425742549554329', - NumberOfUnits: '445' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '60.464150859259135' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Mellvile' - }, - Date: '2009-02-03T00:00:00', - Value: '44.63498086884384', - NumberOfUnits: '90' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '13.659154862938056' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2009-02-07T00:00:00', - Value: '36.151584394346727', - NumberOfUnits: '453' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '44.160772694349646' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Mellvile' - }, - Date: '2009-02-07T00:00:00', - Value: '85.6432799648695', - NumberOfUnits: '450' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.330096614700793' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2009-02-07T00:00:00', - Value: '48.103636479053478', - NumberOfUnits: '152' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.7838492862805033' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Berlin' - }, - Date: '2009-02-16T00:00:00', - Value: '46.49472713772893', - NumberOfUnits: '119' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '79.235950894298014' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Tokyo' - }, - Date: '2009-02-16T00:00:00', - Value: '29.240355281736868', - NumberOfUnits: '463' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '18.588924276916742' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Tokyo' - }, - Date: '2009-02-17T00:00:00', - Value: '19.761605616547914', - NumberOfUnits: '150' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '27.901109833224265' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2009-02-19T00:00:00', - Value: '17.557824644054204', - NumberOfUnits: '210' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.192088797312266' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Tokyo' - }, - Date: '2009-02-20T00:00:00', - Value: '36.321839986518881', - NumberOfUnits: '150' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '35.849487937916763' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2009-02-21T00:00:00', - Value: '73.888651083171681', - NumberOfUnits: '97' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '34.073729130473794' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Berlin' - }, - Date: '2009-02-22T00:00:00', - Value: '86.417150211714741', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '66.299910734547268' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2009-02-24T00:00:00', - Value: '52.847915213949939', - NumberOfUnits: '172' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.901878412301596' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Mellvile' - }, - Date: '2009-02-24T00:00:00', - Value: '5.1081647188906389', - NumberOfUnits: '489' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '51.915620757227586' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Sofia' - }, - Date: '2009-02-27T00:00:00', - Value: '9.0917529580610577', - NumberOfUnits: '222' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '98.30828662882945' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Berlin' - }, - Date: '2009-03-03T00:00:00', - Value: '81.314004157350411', - NumberOfUnits: '300' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.820251282686485' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2009-03-03T00:00:00', - Value: '1.3068364007895981', - NumberOfUnits: '270' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '16.260613881172898' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2009-03-07T00:00:00', - Value: '81.4439182083327', - NumberOfUnits: '263' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '93.446688537228241' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2009-03-10T00:00:00', - Value: '22.661844046163303', - NumberOfUnits: '28' - }, - { - Product: { - Name: 'Components', - UnitPrice: '42.142761425181646' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'London' - }, - Date: '2009-03-15T00:00:00', - Value: '20.388415884407433', - NumberOfUnits: '237' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '54.983897719059094' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Tokyo' - }, - Date: '2009-03-16T00:00:00', - Value: '64.043450431918473', - NumberOfUnits: '171' - }, - { - Product: { - Name: 'Components', - UnitPrice: '97.311258221655734' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2009-03-27T00:00:00', - Value: '23.9032197389301', - NumberOfUnits: '251' - }, - { - Product: { - Name: 'Components', - UnitPrice: '50.889893039544063' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'London' - }, - Date: '2009-04-01T00:00:00', - Value: '32.324041068704815', - NumberOfUnits: '275' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.7144460513789417' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'London' - }, - Date: '2009-04-06T00:00:00', - Value: '41.960918783192021', - NumberOfUnits: '311' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '70.850547156692727' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2009-04-07T00:00:00', - Value: '82.811493604821848', - NumberOfUnits: '217' - }, - { - Product: { - Name: 'Components', - UnitPrice: '96.778652489547923' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2009-04-09T00:00:00', - Value: '62.226076034002972', - NumberOfUnits: '360' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '83.5057999396258' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Berlin' - }, - Date: '2009-04-12T00:00:00', - Value: '51.587959589244782', - NumberOfUnits: '35' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.413802446990189' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2009-04-15T00:00:00', - Value: '80.986556122538886', - NumberOfUnits: '294' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '70.80258972514541' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2009-04-16T00:00:00', - Value: '35.866933425826453', - NumberOfUnits: '436' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.524064517824016' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'London' - }, - Date: '2009-04-20T00:00:00', - Value: '82.488713498454871', - NumberOfUnits: '78' - }, - { - Product: { - Name: 'Components', - UnitPrice: '29.603658024968421' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2009-04-22T00:00:00', - Value: '94.02309180890353', - NumberOfUnits: '301' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.59798216009419' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2009-05-02T00:00:00', - Value: '92.598087011183651', - NumberOfUnits: '24' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '71.666997145706318' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2009-05-04T00:00:00', - Value: '19.282113676556438', - NumberOfUnits: '332' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.552707418125452' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2009-05-11T00:00:00', - Value: '56.428837429931775', - NumberOfUnits: '307' - }, - { - Product: { - Name: 'Components', - UnitPrice: '36.712927202094782' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2009-05-11T00:00:00', - Value: '34.265398902010823', - NumberOfUnits: '375' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '62.74587812961353' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2009-05-12T00:00:00', - Value: '1.9744442785039749', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '13.699630607710981' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2009-05-21T00:00:00', - Value: '42.514021341928292', - NumberOfUnits: '337' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '46.090274558444634' - }, - Seller: { - Name: 'Larry Lieb', - City: 'London' - }, - Date: '2009-05-24T00:00:00', - Value: '55.25077774899583', - NumberOfUnits: '284' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '95.33687676085944' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Berlin' - }, - Date: '2009-05-26T00:00:00', - Value: '94.764131631126688', - NumberOfUnits: '292' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.090784828220862' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Sofia' - }, - Date: '2009-05-26T00:00:00', - Value: '60.153313800763954', - NumberOfUnits: '424' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '99.392229132071236' - }, - Seller: { - Name: 'Mark Slater', - City: 'Mellvile' - }, - Date: '2009-06-05T00:00:00', - Value: '28.99414483876626', - NumberOfUnits: '271' - }, - { - Product: { - Name: 'Components', - UnitPrice: '86.944918514669368' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Mellvile' - }, - Date: '2009-06-10T00:00:00', - Value: '94.041974653509428', - NumberOfUnits: '6' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '13.495747797887656' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2009-06-12T00:00:00', - Value: '94.892294562837236', - NumberOfUnits: '44' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.648592900321162' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2009-06-12T00:00:00', - Value: '74.204946949242128', - NumberOfUnits: '277' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '16.877442187106908' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2009-06-13T00:00:00', - Value: '65.121114330888318', - NumberOfUnits: '98' - }, - { - Product: { - Name: 'Components', - UnitPrice: '42.376991707075852' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Mellvile' - }, - Date: '2009-06-22T00:00:00', - Value: '68.602847060469372', - NumberOfUnits: '443' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '79.539957074234252' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2009-06-26T00:00:00', - Value: '81.434181044546037', - NumberOfUnits: '409' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '26.25291264907127' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2009-07-02T00:00:00', - Value: '68.128146216332979', - NumberOfUnits: '240' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '34.046156627147532' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Seattle' - }, - Date: '2009-07-10T00:00:00', - Value: '95.570359656387168', - NumberOfUnits: '23' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '29.379817577721468' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2009-07-12T00:00:00', - Value: '35.889505099453736', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '86.650452430662909' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Berlin' - }, - Date: '2009-07-13T00:00:00', - Value: '29.856805424139278', - NumberOfUnits: '117' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '58.386603816592419' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2009-07-15T00:00:00', - Value: '34.369692268953514', - NumberOfUnits: '336' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '39.759629797078496' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Seattle' - }, - Date: '2009-07-18T00:00:00', - Value: '92.39610121231344', - NumberOfUnits: '372' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '10.11000248142984' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Berlin' - }, - Date: '2009-07-19T00:00:00', - Value: '90.408865451071819', - NumberOfUnits: '403' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '17.772769098064288' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2009-07-19T00:00:00', - Value: '66.145469558492991', - NumberOfUnits: '144' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '21.54340814870941' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Seattle' - }, - Date: '2009-07-19T00:00:00', - Value: '41.712649465404752', - NumberOfUnits: '395' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '33.561278383043259' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2009-07-20T00:00:00', - Value: '16.61004327079749', - NumberOfUnits: '236' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '48.76308178005884' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2009-07-20T00:00:00', - Value: '86.7044968934285', - NumberOfUnits: '160' - }, - { - Product: { - Name: 'Components', - UnitPrice: '81.79705179380116' - }, - Seller: { - Name: 'David Haley', - City: 'Sofia' - }, - Date: '2009-07-20T00:00:00', - Value: '65.782062134604', - NumberOfUnits: '157' - }, - { - Product: { - Name: 'Components', - UnitPrice: '9.6737010449514251' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Sofia' - }, - Date: '2009-07-25T00:00:00', - Value: '0.062564946740197455', - NumberOfUnits: '255' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '88.575547462597285' - }, - Seller: { - Name: 'Mark Slater', - City: 'London' - }, - Date: '2009-08-16T00:00:00', - Value: '42.973863865702349', - NumberOfUnits: '284' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '89.335742634411787' - }, - Seller: { - Name: 'Walter Pang', - City: 'Tokyo' - }, - Date: '2009-08-17T00:00:00', - Value: '15.731296835342096', - NumberOfUnits: '333' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '23.987651161843747' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2009-08-17T00:00:00', - Value: '51.5363990569191', - NumberOfUnits: '48' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '19.359730239659424' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2009-08-18T00:00:00', - Value: '82.547955160284388', - NumberOfUnits: '399' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '9.30053084590497' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2009-08-24T00:00:00', - Value: '68.607750753223783', - NumberOfUnits: '413' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '1.1489816946671259' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2009-09-06T00:00:00', - Value: '71.909978693309228', - NumberOfUnits: '182' - }, - { - Product: { - Name: 'Components', - UnitPrice: '76.9795825597735' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2009-09-06T00:00:00', - Value: '44.89029713202747', - NumberOfUnits: '156' - }, - { - Product: { - Name: 'Components', - UnitPrice: '80.664513344254587' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2009-09-09T00:00:00', - Value: '92.268023962279784', - NumberOfUnits: '293' - }, - { - Product: { - Name: 'Components', - UnitPrice: '22.788886131154786' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2009-10-01T00:00:00', - Value: '99.883927823921638', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.05361020288133' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Seattle' - }, - Date: '2009-10-01T00:00:00', - Value: '16.01294182055301', - NumberOfUnits: '106' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '72.974514808959569' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Tokyo' - }, - Date: '2009-10-06T00:00:00', - Value: '91.593776918758536', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Components', - UnitPrice: '22.058241871212722' - }, - Seller: { - Name: 'John Smith', - City: 'Tokyo' - }, - Date: '2009-10-07T00:00:00', - Value: '1.8308585983844747', - NumberOfUnits: '187' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '42.79186979066202' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2009-10-10T00:00:00', - Value: '21.78986469367047', - NumberOfUnits: '137' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.231171277459325' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2009-10-14T00:00:00', - Value: '14.979823871971956', - NumberOfUnits: '138' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '14.350185037753633' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2009-10-24T00:00:00', - Value: '65.044616239631836', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Components', - UnitPrice: '40.100955655845326' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'London' - }, - Date: '2009-10-24T00:00:00', - Value: '11.059040581369326', - NumberOfUnits: '353' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '17.189097831579435' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2009-11-01T00:00:00', - Value: '94.950034746411276', - NumberOfUnits: '359' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '52.031028155251882' - }, - Seller: { - Name: 'Walter Pang', - City: 'Tokyo' - }, - Date: '2009-11-04T00:00:00', - Value: '43.162881835905317', - NumberOfUnits: '134' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '90.993871954732526' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2009-11-09T00:00:00', - Value: '25.162065972183861', - NumberOfUnits: '263' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '88.538379077119' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2009-11-11T00:00:00', - Value: '40.935293185028847', - NumberOfUnits: '313' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '46.481523265355044' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2009-11-16T00:00:00', - Value: '20.430096527761822', - NumberOfUnits: '115' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '20.418462399588183' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Berlin' - }, - Date: '2009-11-17T00:00:00', - Value: '33.038645299635192', - NumberOfUnits: '414' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '70.830144114247588' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2009-11-21T00:00:00', - Value: '2.98972730664058', - NumberOfUnits: '53' - }, - { - Product: { - Name: 'Components', - UnitPrice: '81.628889023153533' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2009-11-22T00:00:00', - Value: '86.668779555088264', - NumberOfUnits: '472' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '9.714081422292665' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Mellvile' - }, - Date: '2009-11-23T00:00:00', - Value: '53.591187323253223', - NumberOfUnits: '199' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '29.755140482334021' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Sofia' - }, - Date: '2009-11-24T00:00:00', - Value: '27.388797945989669', - NumberOfUnits: '241' - }, - { - Product: { - Name: 'Components', - UnitPrice: '33.118537689148695' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'New York' - }, - Date: '2009-11-24T00:00:00', - Value: '1.2120309291463489', - NumberOfUnits: '320' - }, - { - Product: { - Name: 'Components', - UnitPrice: '65.6359763655979' - }, - Seller: { - Name: 'David Haley', - City: 'London' - }, - Date: '2010-01-02T00:00:00', - Value: '20.522539420296688', - NumberOfUnits: '299' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '62.085259967523285' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2010-01-08T00:00:00', - Value: '35.256934368636891', - NumberOfUnits: '366' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '78.474462068860646' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2010-01-10T00:00:00', - Value: '27.762093407922467', - NumberOfUnits: '290' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '11.587155103491226' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2010-01-11T00:00:00', - Value: '61.712525906838721', - NumberOfUnits: '350' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '33.427815853351639' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2010-01-14T00:00:00', - Value: '33.686906720365819', - NumberOfUnits: '469' - }, - { - Product: { - Name: 'Components', - UnitPrice: '96.141296949303381' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2010-01-21T00:00:00', - Value: '75.607716606747218', - NumberOfUnits: '352' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '92.171847676938327' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2010-01-25T00:00:00', - Value: '38.822024473371926', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '93.045955893139336' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Tokyo' - }, - Date: '2010-02-02T00:00:00', - Value: '66.397165863959657', - NumberOfUnits: '153' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '38.888418506313307' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2010-02-02T00:00:00', - Value: '28.472216533716871', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '99.255040660153625' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2010-02-04T00:00:00', - Value: '66.975509546220067', - NumberOfUnits: '267' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.418360057481735' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2010-02-04T00:00:00', - Value: '71.271966803479927', - NumberOfUnits: '91' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '19.770187707510864' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Tokyo' - }, - Date: '2010-02-05T00:00:00', - Value: '45.86024901171227', - NumberOfUnits: '84' - }, - { - Product: { - Name: 'Components', - UnitPrice: '87.127108633111746' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Mellvile' - }, - Date: '2010-02-11T00:00:00', - Value: '66.746746220973662', - NumberOfUnits: '270' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '76.21922282326' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Berlin' - }, - Date: '2010-02-12T00:00:00', - Value: '86.961047717817621', - NumberOfUnits: '496' - }, - { - Product: { - Name: 'Components', - UnitPrice: '51.935532154485365' - }, - Seller: { - Name: 'John Smith', - City: 'Seattle' - }, - Date: '2010-02-16T00:00:00', - Value: '47.325407875387654', - NumberOfUnits: '24' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.709201215630959' - }, - Seller: { - Name: 'Walter Pang', - City: 'Mellvile' - }, - Date: '2010-02-17T00:00:00', - Value: '72.656378696046943', - NumberOfUnits: '41' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '15.665925860249402' - }, - Seller: { - Name: 'John Smith', - City: 'Mellvile' - }, - Date: '2010-02-22T00:00:00', - Value: '65.636205098422337', - NumberOfUnits: '365' - }, - { - Product: { - Name: 'Components', - UnitPrice: '2.6773556613723541' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Sofia' - }, - Date: '2010-03-01T00:00:00', - Value: '68.629750361959324', - NumberOfUnits: '202' - }, - { - Product: { - Name: 'Components', - UnitPrice: '52.256432619065251' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2010-03-01T00:00:00', - Value: '79.248901540063741', - NumberOfUnits: '225' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '0.30659986674161621' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2010-03-03T00:00:00', - Value: '70.065212654911548', - NumberOfUnits: '206' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '22.362647448835265' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Sofia' - }, - Date: '2010-03-11T00:00:00', - Value: '54.673684646689189', - NumberOfUnits: '158' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '94.7514695090947' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2010-03-14T00:00:00', - Value: '70.422226083661528', - NumberOfUnits: '169' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '1.1244290979227185' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2010-03-15T00:00:00', - Value: '18.868440258721094', - NumberOfUnits: '4' - }, - { - Product: { - Name: 'Components', - UnitPrice: '12.168197199780586' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2010-03-15T00:00:00', - Value: '12.660750706056481', - NumberOfUnits: '232' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '58.754820636825087' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2010-03-16T00:00:00', - Value: '78.751323967590608', - NumberOfUnits: '421' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '43.950277959904767' - }, - Seller: { - Name: 'David Haley', - City: 'Seattle' - }, - Date: '2010-03-25T00:00:00', - Value: '89.636901900934475', - NumberOfUnits: '260' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '54.451138970652188' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2010-04-02T00:00:00', - Value: '91.929945113104736', - NumberOfUnits: '194' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.565373749735471' - }, - Seller: { - Name: 'Walter Pang', - City: 'Tokyo' - }, - Date: '2010-04-05T00:00:00', - Value: '35.415237739409896', - NumberOfUnits: '491' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '11.121100052781916' - }, - Seller: { - Name: 'Harold Garvin', - City: 'London' - }, - Date: '2010-04-14T00:00:00', - Value: '29.986905041144652', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Components', - UnitPrice: '18.092416607817828' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2010-04-15T00:00:00', - Value: '84.457366813187193', - NumberOfUnits: '279' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.277599657083675' - }, - Seller: { - Name: 'Carl Costello', - City: 'Berlin' - }, - Date: '2010-04-15T00:00:00', - Value: '99.568976647951175', - NumberOfUnits: '287' - }, - { - Product: { - Name: 'Components', - UnitPrice: '77.894294018807955' - }, - Seller: { - Name: 'Carl Costello', - City: 'New York' - }, - Date: '2010-04-22T00:00:00', - Value: '58.9137158165284', - NumberOfUnits: '363' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '55.624015888024125' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2010-04-22T00:00:00', - Value: '16.317631032465783', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '39.338956605335213' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Berlin' - }, - Date: '2010-04-24T00:00:00', - Value: '0.092080421788655414', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Components', - UnitPrice: '7.7389456833428447' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2010-05-04T00:00:00', - Value: '99.529428733293628', - NumberOfUnits: '25' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '62.437906005623709' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2010-05-05T00:00:00', - Value: '47.953826816731052', - NumberOfUnits: '64' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '38.696093037117322' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'London' - }, - Date: '2010-05-06T00:00:00', - Value: '57.667695059286281', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '17.764891412930979' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Mellvile' - }, - Date: '2010-05-07T00:00:00', - Value: '15.271079826760609', - NumberOfUnits: '50' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '57.771539901276839' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Berlin' - }, - Date: '2010-05-07T00:00:00', - Value: '58.617693865028066', - NumberOfUnits: '437' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '21.412746897625155' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2010-05-19T00:00:00', - Value: '40.952016665112232', - NumberOfUnits: '253' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '10.10051225782396' - }, - Seller: { - Name: 'Monica Freitag', - City: 'London' - }, - Date: '2010-05-22T00:00:00', - Value: '24.04263714516658', - NumberOfUnits: '312' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '87.649551167920961' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'London' - }, - Date: '2010-05-24T00:00:00', - Value: '12.452408304648664', - NumberOfUnits: '82' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '42.552965526726545' - }, - Seller: { - Name: 'Harold Garvin', - City: 'New York' - }, - Date: '2010-06-01T00:00:00', - Value: '32.21886932487547', - NumberOfUnits: '467' - }, - { - Product: { - Name: 'Components', - UnitPrice: '79.772670743881108' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Sofia' - }, - Date: '2010-06-05T00:00:00', - Value: '69.47704109804566', - NumberOfUnits: '74' - }, - { - Product: { - Name: 'Components', - UnitPrice: '1.8354761888438258' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2010-06-10T00:00:00', - Value: '14.711501968424534', - NumberOfUnits: '81' - }, - { - Product: { - Name: 'Components', - UnitPrice: '15.038684017508608' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Berlin' - }, - Date: '2010-06-25T00:00:00', - Value: '18.710408228780334', - NumberOfUnits: '88' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '43.393069851860908' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2010-06-26T00:00:00', - Value: '44.323160147444881', - NumberOfUnits: '126' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.236492486780737' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2010-06-27T00:00:00', - Value: '77.721635707524442', - NumberOfUnits: '112' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '59.192252885174121' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Sofia' - }, - Date: '2010-06-27T00:00:00', - Value: '15.444951837623936', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Components', - UnitPrice: '39.858141839438183' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Sofia' - }, - Date: '2010-07-05T00:00:00', - Value: '29.309184630079749', - NumberOfUnits: '218' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '27.044425637947594' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'New York' - }, - Date: '2010-07-05T00:00:00', - Value: '29.84750439871452', - NumberOfUnits: '34' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.269145072563152' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2010-07-13T00:00:00', - Value: '83.42096804800488', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '53.378611455382128' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2010-07-16T00:00:00', - Value: '41.53844534491116', - NumberOfUnits: '464' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.432887213971881' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2010-07-17T00:00:00', - Value: '83.285907275642217', - NumberOfUnits: '118' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '23.970818670452953' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2010-07-18T00:00:00', - Value: '94.1482592346837', - NumberOfUnits: '442' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.523097888344481' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2010-07-23T00:00:00', - Value: '59.59416039269145', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '60.678681014421713' - }, - Seller: { - Name: 'Lydia Burson', - City: 'London' - }, - Date: '2010-07-23T00:00:00', - Value: '83.499601801624337', - NumberOfUnits: '472' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '78.0230887131873' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'New York' - }, - Date: '2010-07-24T00:00:00', - Value: '83.86764092550969', - NumberOfUnits: '140' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.635253308171059' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2010-07-26T00:00:00', - Value: '86.612572747567938', - NumberOfUnits: '118' - }, - { - Product: { - Name: 'Components', - UnitPrice: '58.201980291959821' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Sofia' - }, - Date: '2010-07-27T00:00:00', - Value: '63.959779713284128', - NumberOfUnits: '176' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '98.375331656250779' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2010-08-01T00:00:00', - Value: '23.277100465855142', - NumberOfUnits: '77' - }, - { - Product: { - Name: 'Components', - UnitPrice: '2.9185969396115263' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'Sofia' - }, - Date: '2010-08-08T00:00:00', - Value: '74.269686627327317', - NumberOfUnits: '105' - }, - { - Product: { - Name: 'Components', - UnitPrice: '98.157584806046259' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Tokyo' - }, - Date: '2010-08-21T00:00:00', - Value: '60.648173215169543', - NumberOfUnits: '160' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '79.036749144567537' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2010-08-26T00:00:00', - Value: '66.923503934835779', - NumberOfUnits: '186' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '17.790103991418192' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2010-09-04T00:00:00', - Value: '28.990831612139395', - NumberOfUnits: '380' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '38.68470799116637' - }, - Seller: { - Name: 'John Smith', - City: 'Tokyo' - }, - Date: '2010-09-11T00:00:00', - Value: '41.4628619986879', - NumberOfUnits: '470' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '75.233120366573857' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2010-09-13T00:00:00', - Value: '42.688516267895935', - NumberOfUnits: '348' - }, - { - Product: { - Name: 'Components', - UnitPrice: '55.30159308356307' - }, - Seller: { - Name: 'Carl Costello', - City: 'London' - }, - Date: '2010-09-14T00:00:00', - Value: '29.383467570591471', - NumberOfUnits: '151' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '51.315049571597505' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'New York' - }, - Date: '2010-09-24T00:00:00', - Value: '86.581237654472346', - NumberOfUnits: '7' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '31.307030995985041' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2010-10-07T00:00:00', - Value: '38.936872425925394', - NumberOfUnits: '123' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '79.959242362510068' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2010-10-08T00:00:00', - Value: '8.676337175386184', - NumberOfUnits: '374' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '94.65782241647031' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Mellvile' - }, - Date: '2010-10-11T00:00:00', - Value: '96.669988984554067', - NumberOfUnits: '178' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '41.967610009930844' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2010-10-22T00:00:00', - Value: '31.412678645650239', - NumberOfUnits: '354' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '46.564729067759927' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2010-10-25T00:00:00', - Value: '85.540413197847272', - NumberOfUnits: '459' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '27.142422565791019' - }, - Seller: { - Name: 'Mark Slater', - City: 'London' - }, - Date: '2010-11-02T00:00:00', - Value: '46.424968795117444', - NumberOfUnits: '78' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '30.232361531924624' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2010-11-03T00:00:00', - Value: '52.08322599161567', - NumberOfUnits: '417' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '82.166215769092659' - }, - Seller: { - Name: 'Walter Pang', - City: 'Seattle' - }, - Date: '2010-11-12T00:00:00', - Value: '15.3999604356475', - NumberOfUnits: '208' - }, - { - Product: { - Name: 'Components', - UnitPrice: '13.240201125498954' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2010-11-19T00:00:00', - Value: '48.614451078984168', - NumberOfUnits: '359' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.82965918110202' - }, - Seller: { - Name: 'Russell Shorter', - City: 'New York' - }, - Date: '2010-11-25T00:00:00', - Value: '24.490439856653307', - NumberOfUnits: '392' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '78.426081770298111' - }, - Seller: { - Name: 'John Smith', - City: 'London' - }, - Date: '2011-01-01T00:00:00', - Value: '37.596409040315265', - NumberOfUnits: '241' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '50.590050290613462' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Seattle' - }, - Date: '2011-01-04T00:00:00', - Value: '27.185391135134452', - NumberOfUnits: '62' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '6.3079299900252046' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Tokyo' - }, - Date: '2011-01-06T00:00:00', - Value: '89.615617641068809', - NumberOfUnits: '485' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '47.444027544671677' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Sofia' - }, - Date: '2011-01-14T00:00:00', - Value: '4.8948556207562124', - NumberOfUnits: '470' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '6.14731172385966' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2011-01-23T00:00:00', - Value: '78.523330706415379', - NumberOfUnits: '197' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '57.598939471691359' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Berlin' - }, - Date: '2011-01-26T00:00:00', - Value: '59.748959848540352', - NumberOfUnits: '353' - }, - { - Product: { - Name: 'Components', - UnitPrice: '37.619407911607723' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Mellvile' - }, - Date: '2011-02-01T00:00:00', - Value: '39.591191541213163', - NumberOfUnits: '338' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '20.995826982425445' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2011-02-08T00:00:00', - Value: '92.874936197360483', - NumberOfUnits: '17' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '11.776900390059176' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2011-02-12T00:00:00', - Value: '61.288865125406936', - NumberOfUnits: '429' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.996284649239982' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Tokyo' - }, - Date: '2011-02-14T00:00:00', - Value: '24.293736985090067', - NumberOfUnits: '385' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '19.89953691135139' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2011-02-20T00:00:00', - Value: '35.271121391687132', - NumberOfUnits: '166' - }, - { - Product: { - Name: 'Components', - UnitPrice: '3.2431666288725873' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Seattle' - }, - Date: '2011-02-20T00:00:00', - Value: '52.569142939787895', - NumberOfUnits: '137' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '18.180364006282932' - }, - Seller: { - Name: 'Russell Shorter', - City: 'New York' - }, - Date: '2011-02-24T00:00:00', - Value: '8.2438002378883759', - NumberOfUnits: '443' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '20.442789662835555' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2011-02-26T00:00:00', - Value: '87.327797658428452', - NumberOfUnits: '40' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '20.547325592742919' - }, - Seller: { - Name: 'Glenn Landeros', - City: 'London' - }, - Date: '2011-03-05T00:00:00', - Value: '7.2753519319348747', - NumberOfUnits: '138' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '23.766470804701779' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2011-03-09T00:00:00', - Value: '18.243170770929741', - NumberOfUnits: '15' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '76.253175817547913' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2011-03-09T00:00:00', - Value: '74.498488369629939', - NumberOfUnits: '469' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '93.2519404651839' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2011-03-11T00:00:00', - Value: '88.996454276608517', - NumberOfUnits: '426' - }, - { - Product: { - Name: 'Components', - UnitPrice: '62.99248866876237' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-03-16T00:00:00', - Value: '32.470836971174386', - NumberOfUnits: '208' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '58.4988099795295' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2011-03-21T00:00:00', - Value: '50.8492368044561', - NumberOfUnits: '155' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '82.3833047795963' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2011-03-23T00:00:00', - Value: '33.369716877755579', - NumberOfUnits: '381' - }, - { - Product: { - Name: 'Components', - UnitPrice: '19.168732231095774' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Tokyo' - }, - Date: '2011-04-12T00:00:00', - Value: '75.166610896199288', - NumberOfUnits: '5' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '53.516463960295759' - }, - Seller: { - Name: 'Walter Pang', - City: 'London' - }, - Date: '2011-04-12T00:00:00', - Value: '14.533374232488395', - NumberOfUnits: '221' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '97.407401445045792' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Sofia' - }, - Date: '2011-04-14T00:00:00', - Value: '84.691367803463407', - NumberOfUnits: '39' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '74.054133600580556' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2011-04-16T00:00:00', - Value: '51.295898599222255', - NumberOfUnits: '468' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '8.1049134061229022' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Seattle' - }, - Date: '2011-04-17T00:00:00', - Value: '0.70214751209232373', - NumberOfUnits: '44' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '59.055603649027468' - }, - Seller: { - Name: 'John Smith', - City: 'Mellvile' - }, - Date: '2011-04-22T00:00:00', - Value: '47.532910968890839', - NumberOfUnits: '287' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.816727750383663' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2011-04-24T00:00:00', - Value: '78.545733857222714', - NumberOfUnits: '463' - }, - { - Product: { - Name: 'Components', - UnitPrice: '76.712912356812936' - }, - Seller: { - Name: 'Walter Pang', - City: 'Seattle' - }, - Date: '2011-04-24T00:00:00', - Value: '62.920035218317082', - NumberOfUnits: '335' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '73.424536862142631' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2011-04-24T00:00:00', - Value: '30.569536113445434', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Components', - UnitPrice: '66.398487550392034' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-05-03T00:00:00', - Value: '87.37479121767673', - NumberOfUnits: '291' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '37.014730059082964' - }, - Seller: { - Name: 'John Smith', - City: 'Sofia' - }, - Date: '2011-05-05T00:00:00', - Value: '40.137041145999468', - NumberOfUnits: '1' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '21.30724839927035' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Seattle' - }, - Date: '2011-05-06T00:00:00', - Value: '46.005596521313116', - NumberOfUnits: '120' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '19.893941804717269' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2011-05-06T00:00:00', - Value: '72.609930798695387', - NumberOfUnits: '382' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '16.486758420470522' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Seattle' - }, - Date: '2011-05-07T00:00:00', - Value: '7.763772973680763', - NumberOfUnits: '63' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '41.660496658487475' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2011-05-12T00:00:00', - Value: '94.318148397988708', - NumberOfUnits: '230' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.9773660045943062' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Tokyo' - }, - Date: '2011-05-13T00:00:00', - Value: '30.891342056398909', - NumberOfUnits: '362' - }, - { - Product: { - Name: 'Components', - UnitPrice: '10.7490869289027' - }, - Seller: { - Name: 'Monica Freitag', - City: 'New York' - }, - Date: '2011-05-17T00:00:00', - Value: '59.668867131540956', - NumberOfUnits: '430' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '66.047576147153777' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2011-05-23T00:00:00', - Value: '91.139627616451875', - NumberOfUnits: '204' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '60.848456370108039' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Berlin' - }, - Date: '2011-05-24T00:00:00', - Value: '86.097605566539613', - NumberOfUnits: '118' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '68.7086188088677' - }, - Seller: { - Name: 'Walter Pang', - City: 'Sofia' - }, - Date: '2011-06-01T00:00:00', - Value: '14.562893060298121', - NumberOfUnits: '17' - }, - { - Product: { - Name: 'Components', - UnitPrice: '40.680891247783265' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2011-06-03T00:00:00', - Value: '9.0439965990576887', - NumberOfUnits: '312' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '96.900314277457227' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Seattle' - }, - Date: '2011-06-12T00:00:00', - Value: '95.038356676249933', - NumberOfUnits: '283' - }, - { - Product: { - Name: 'Components', - UnitPrice: '67.031210179920876' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-06-13T00:00:00', - Value: '27.587484674336149', - NumberOfUnits: '460' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.092374324375939' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'New York' - }, - Date: '2011-06-14T00:00:00', - Value: '66.230523523981915', - NumberOfUnits: '295' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '28.048040265239791' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Mellvile' - }, - Date: '2011-06-15T00:00:00', - Value: '50.504170614529478', - NumberOfUnits: '49' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '7.3837493580690348' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Tokyo' - }, - Date: '2011-06-24T00:00:00', - Value: '7.8716053664086409', - NumberOfUnits: '127' - }, - { - Product: { - Name: 'Components', - UnitPrice: '39.219759003827235' - }, - Seller: { - Name: 'Mark Slater', - City: 'Seattle' - }, - Date: '2011-06-27T00:00:00', - Value: '98.71029462605263', - NumberOfUnits: '244' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '53.418671131794646' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Tokyo' - }, - Date: '2011-07-01T00:00:00', - Value: '11.231885622829145', - NumberOfUnits: '188' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '25.523898576164573' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Seattle' - }, - Date: '2011-07-06T00:00:00', - Value: '56.126590052678523', - NumberOfUnits: '458' - }, - { - Product: { - Name: 'Components', - UnitPrice: '70.257199169256353' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2011-07-08T00:00:00', - Value: '82.339177505271124', - NumberOfUnits: '448' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '7.6365943567997752' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2011-07-27T00:00:00', - Value: '30.461937203287114', - NumberOfUnits: '226' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.512323069159091' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2011-08-01T00:00:00', - Value: '69.618271463372878', - NumberOfUnits: '474' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '37.596370343862276' - }, - Seller: { - Name: 'David Haley', - City: 'Sofia' - }, - Date: '2011-08-02T00:00:00', - Value: '62.767845142058952', - NumberOfUnits: '338' - }, - { - Product: { - Name: 'Components', - UnitPrice: '99.364743102046077' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'London' - }, - Date: '2011-08-02T00:00:00', - Value: '75.243962125500659', - NumberOfUnits: '88' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.232945669550887' - }, - Seller: { - Name: 'Carl Costello', - City: 'Berlin' - }, - Date: '2011-08-04T00:00:00', - Value: '86.276501736732442', - NumberOfUnits: '436' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '34.253647892854012' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2011-08-06T00:00:00', - Value: '9.2189299451275417', - NumberOfUnits: '297' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '46.885990699234412' - }, - Seller: { - Name: 'Russell Shorter', - City: 'London' - }, - Date: '2011-08-07T00:00:00', - Value: '5.0874681701359652', - NumberOfUnits: '240' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '26.369197352961265' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Sofia' - }, - Date: '2011-08-07T00:00:00', - Value: '80.241307141371678', - NumberOfUnits: '415' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '49.072841112070179' - }, - Seller: { - Name: 'David Haley', - City: 'Mellvile' - }, - Date: '2011-08-08T00:00:00', - Value: '61.200517444499084', - NumberOfUnits: '435' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '95.058612569728211' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Berlin' - }, - Date: '2011-08-16T00:00:00', - Value: '73.751322260942', - NumberOfUnits: '64' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '74.181983375075262' - }, - Seller: { - Name: 'John Smith', - City: 'Seattle' - }, - Date: '2011-08-23T00:00:00', - Value: '40.736002680256966', - NumberOfUnits: '21' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '82.506200011124' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2011-08-25T00:00:00', - Value: '54.907956605268623', - NumberOfUnits: '467' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '42.773367531026416' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2011-09-02T00:00:00', - Value: '28.230239091548249', - NumberOfUnits: '98' - }, - { - Product: { - Name: 'Components', - UnitPrice: '83.472341757022008' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2011-09-04T00:00:00', - Value: '72.482020534799446', - NumberOfUnits: '370' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '41.552912276961337' - }, - Seller: { - Name: 'Walter Pang', - City: 'Berlin' - }, - Date: '2011-09-05T00:00:00', - Value: '80.9870070223636', - NumberOfUnits: '94' - }, - { - Product: { - Name: 'Components', - UnitPrice: '74.118408409002427' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'London' - }, - Date: '2011-09-09T00:00:00', - Value: '94.847531102061055', - NumberOfUnits: '106' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '75.404483999779671' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Sofia' - }, - Date: '2011-09-11T00:00:00', - Value: '9.8866479051702889', - NumberOfUnits: '261' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '10.227189357498283' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2011-09-17T00:00:00', - Value: '29.3933310217193', - NumberOfUnits: '307' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.929749578670481' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2011-09-17T00:00:00', - Value: '56.902403923171761', - NumberOfUnits: '362' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '85.133693080923379' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Tokyo' - }, - Date: '2011-09-24T00:00:00', - Value: '23.863435408036892', - NumberOfUnits: '330' - }, - { - Product: { - Name: 'Components', - UnitPrice: '77.595880943162314' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2011-09-26T00:00:00', - Value: '91.821283424189915', - NumberOfUnits: '23' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.362954591569931' - }, - Seller: { - Name: 'David Haley', - City: 'Berlin' - }, - Date: '2011-09-27T00:00:00', - Value: '66.76641896682159', - NumberOfUnits: '392' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '32.290426563606793' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Seattle' - }, - Date: '2011-10-13T00:00:00', - Value: '81.508681122916144', - NumberOfUnits: '16' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '62.986913725262006' - }, - Seller: { - Name: 'Lydia Burson', - City: 'New York' - }, - Date: '2011-10-13T00:00:00', - Value: '30.91040301644728', - NumberOfUnits: '100' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '13.441150036380231' - }, - Seller: { - Name: 'Carl Costello', - City: 'Berlin' - }, - Date: '2011-10-22T00:00:00', - Value: '85.46632834964727', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '0.36166957596394683' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2011-10-22T00:00:00', - Value: '74.401750589907991', - NumberOfUnits: '22' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '66.237839621602475' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2011-11-02T00:00:00', - Value: '88.135134283516152', - NumberOfUnits: '96' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '50.146415294216204' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Berlin' - }, - Date: '2011-11-03T00:00:00', - Value: '31.431514877561256', - NumberOfUnits: '76' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.8830748274378' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Mellvile' - }, - Date: '2011-11-04T00:00:00', - Value: '91.074618506745722', - NumberOfUnits: '492' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '6.5537001036823268' - }, - Seller: { - Name: 'Harry Tyler', - City: 'Berlin' - }, - Date: '2011-11-08T00:00:00', - Value: '51.458535926164373', - NumberOfUnits: '49' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.5539850124875' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Mellvile' - }, - Date: '2011-11-12T00:00:00', - Value: '20.849885521852357', - NumberOfUnits: '197' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '59.927390962805319' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Tokyo' - }, - Date: '2011-11-12T00:00:00', - Value: '70.322697409578922', - NumberOfUnits: '484' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '67.355707039756567' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Tokyo' - }, - Date: '2011-11-13T00:00:00', - Value: '14.268465300215624', - NumberOfUnits: '182' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '51.975681005034446' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2011-11-15T00:00:00', - Value: '18.371498919265111', - NumberOfUnits: '42' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '66.674518802517341' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'New York' - }, - Date: '2011-11-19T00:00:00', - Value: '52.755486291253696', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '56.137722244550346' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Mellvile' - }, - Date: '2011-11-23T00:00:00', - Value: '40.171580035319352', - NumberOfUnits: '310' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '93.530705568162119' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2012-01-03T00:00:00', - Value: '53.305936117333331', - NumberOfUnits: '306' - }, - { - Product: { - Name: 'Components', - UnitPrice: '9.5339146487107111' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Seattle' - }, - Date: '2012-01-06T00:00:00', - Value: '82.952573375288665', - NumberOfUnits: '290' - }, - { - Product: { - Name: 'Components', - UnitPrice: '41.1171674454199' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Tokyo' - }, - Date: '2012-01-10T00:00:00', - Value: '29.765262841137712', - NumberOfUnits: '499' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '9.7998786297626239' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Berlin' - }, - Date: '2012-01-11T00:00:00', - Value: '10.743231471042721', - NumberOfUnits: '7' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.580562228607278' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2012-01-14T00:00:00', - Value: '34.949488535034234', - NumberOfUnits: '220' - }, - { - Product: { - Name: 'Components', - UnitPrice: '47.282745012679484' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'New York' - }, - Date: '2012-01-15T00:00:00', - Value: '50.185166276146262', - NumberOfUnits: '395' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '14.609382960297811' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Sofia' - }, - Date: '2012-01-18T00:00:00', - Value: '99.998364085330792', - NumberOfUnits: '219' - }, - { - Product: { - Name: 'Components', - UnitPrice: '10.681285248455259' - }, - Seller: { - Name: 'Larry Lieb', - City: 'Mellvile' - }, - Date: '2012-01-18T00:00:00', - Value: '91.928496859934413', - NumberOfUnits: '229' - }, - { - Product: { - Name: 'Components', - UnitPrice: '64.914608125069464' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Mellvile' - }, - Date: '2012-01-22T00:00:00', - Value: '55.807345246806442', - NumberOfUnits: '111' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '47.909127244683511' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2012-02-01T00:00:00', - Value: '20.473314877819881', - NumberOfUnits: '237' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '87.815776368517334' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Berlin' - }, - Date: '2012-02-13T00:00:00', - Value: '17.170676690140123', - NumberOfUnits: '114' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '55.404070883711832' - }, - Seller: { - Name: 'Bryan Culver', - City: 'London' - }, - Date: '2012-02-23T00:00:00', - Value: '76.743488422009847', - NumberOfUnits: '329' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '40.75572231819654' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'Seattle' - }, - Date: '2012-02-24T00:00:00', - Value: '1.1660674592322051', - NumberOfUnits: '135' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '57.827554530383807' - }, - Seller: { - Name: 'Harold Garvin', - City: 'New York' - }, - Date: '2012-03-02T00:00:00', - Value: '46.816691358954039', - NumberOfUnits: '187' - }, - { - Product: { - Name: 'Components', - UnitPrice: '14.764199040254672' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2012-03-10T00:00:00', - Value: '17.629321207119766', - NumberOfUnits: '286' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '12.991917372211775' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'Mellvile' - }, - Date: '2012-03-11T00:00:00', - Value: '18.210936299623427', - NumberOfUnits: '468' - }, - { - Product: { - Name: 'Components', - UnitPrice: '26.013292989699771' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Tokyo' - }, - Date: '2012-03-18T00:00:00', - Value: '93.230797952614168', - NumberOfUnits: '71' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '72.623922989062933' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Mellvile' - }, - Date: '2012-03-21T00:00:00', - Value: '61.974642454634719', - NumberOfUnits: '251' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '44.430002777106132' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Berlin' - }, - Date: '2012-03-25T00:00:00', - Value: '57.137854004808631', - NumberOfUnits: '297' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '68.192056365400575' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Berlin' - }, - Date: '2012-03-25T00:00:00', - Value: '4.1927576550248808', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Components', - UnitPrice: '35.301038918691241' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'Sofia' - }, - Date: '2012-03-26T00:00:00', - Value: '45.234568391570157', - NumberOfUnits: '488' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '41.07974113015446' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Sofia' - }, - Date: '2012-04-06T00:00:00', - Value: '59.4756415856423', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Components', - UnitPrice: '29.287349586043206' - }, - Seller: { - Name: 'Stanley Brooker', - City: 'Seattle' - }, - Date: '2012-04-14T00:00:00', - Value: '3.1218397911274058', - NumberOfUnits: '149' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '51.960718329977574' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Berlin' - }, - Date: '2012-04-14T00:00:00', - Value: '9.8109557804702572', - NumberOfUnits: '99' - }, - { - Product: { - Name: 'Components', - UnitPrice: '57.838875082246432' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Seattle' - }, - Date: '2012-04-16T00:00:00', - Value: '14.041336026993271', - NumberOfUnits: '225' - }, - { - Product: { - Name: 'Components', - UnitPrice: '25.879090337957759' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Seattle' - }, - Date: '2012-04-27T00:00:00', - Value: '95.393374001324815', - NumberOfUnits: '408' - }, - { - Product: { - Name: 'Components', - UnitPrice: '4.9307178263229865' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Sofia' - }, - Date: '2012-05-09T00:00:00', - Value: '40.24019778717318', - NumberOfUnits: '417' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '3.0351963839657587' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'London' - }, - Date: '2012-05-24T00:00:00', - Value: '67.743256719663393', - NumberOfUnits: '221' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '57.525798798317929' - }, - Seller: { - Name: 'Mark Slater', - City: 'New York' - }, - Date: '2012-06-02T00:00:00', - Value: '45.347840592892766', - NumberOfUnits: '288' - }, - { - Product: { - Name: 'Components', - UnitPrice: '72.260475471737081' - }, - Seller: { - Name: 'Bryan Culver', - City: 'Berlin' - }, - Date: '2012-06-03T00:00:00', - Value: '92.767570816337866', - NumberOfUnits: '372' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '82.533464665773067' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Seattle' - }, - Date: '2012-06-03T00:00:00', - Value: '51.32937051883404', - NumberOfUnits: '408' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '91.596571026182076' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2012-06-04T00:00:00', - Value: '28.526107281691441', - NumberOfUnits: '13' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.668206756314362' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Mellvile' - }, - Date: '2012-06-05T00:00:00', - Value: '31.552386019170463', - NumberOfUnits: '487' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.269657903476457' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Sofia' - }, - Date: '2012-06-11T00:00:00', - Value: '85.914963570383833', - NumberOfUnits: '276' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '18.243998018207026' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'New York' - }, - Date: '2012-06-16T00:00:00', - Value: '40.241414001323939', - NumberOfUnits: '490' - }, - { - Product: { - Name: 'Components', - UnitPrice: '48.753350437038272' - }, - Seller: { - Name: 'Harold Garvin', - City: 'London' - }, - Date: '2012-06-18T00:00:00', - Value: '55.616326516315496', - NumberOfUnits: '238' - }, - { - Product: { - Name: 'Components', - UnitPrice: '94.427641199169514' - }, - Seller: { - Name: 'David Haley', - City: 'Tokyo' - }, - Date: '2012-06-23T00:00:00', - Value: '91.982604512936717', - NumberOfUnits: '170' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '48.675857367308744' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Mellvile' - }, - Date: '2012-07-04T00:00:00', - Value: '72.766442491098516', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '82.68037088340165' - }, - Seller: { - Name: 'Mark Slater', - City: 'Mellvile' - }, - Date: '2012-07-05T00:00:00', - Value: '56.774197684961457', - NumberOfUnits: '443' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '38.192183821551588' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'New York' - }, - Date: '2012-07-05T00:00:00', - Value: '27.482847276834232', - NumberOfUnits: '368' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '24.194019718186009' - }, - Seller: { - Name: 'Harold Garvin', - City: 'New York' - }, - Date: '2012-07-11T00:00:00', - Value: '38.517737592811571', - NumberOfUnits: '39' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '3.9898014180314729' - }, - Seller: { - Name: 'Alfredo Fetuchini', - City: 'Tokyo' - }, - Date: '2012-07-13T00:00:00', - Value: '43.237088873627172', - NumberOfUnits: '95' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '81.770755481799483' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'Berlin' - }, - Date: '2012-07-14T00:00:00', - Value: '42.55512666076195', - NumberOfUnits: '42' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '74.867355951511939' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2012-07-16T00:00:00', - Value: '61.42802050403693', - NumberOfUnits: '200' - }, - { - Product: { - Name: 'Components', - UnitPrice: '85.467303630647862' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2012-07-16T00:00:00', - Value: '10.45830762500796', - NumberOfUnits: '221' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '96.415402692004761' - }, - Seller: { - Name: 'Larry Lieb', - City: 'New York' - }, - Date: '2012-07-21T00:00:00', - Value: '99.639215692709769', - NumberOfUnits: '54' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '46.199419370945272' - }, - Seller: { - Name: 'Lydia Burson', - City: 'Tokyo' - }, - Date: '2012-07-21T00:00:00', - Value: '55.958572614918737', - NumberOfUnits: '173' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '99.843983026148749' - }, - Seller: { - Name: 'Lydia Burson', - City: 'London' - }, - Date: '2012-07-23T00:00:00', - Value: '10.833150712229847', - NumberOfUnits: '47' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '42.35462483128282' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'Mellvile' - }, - Date: '2012-07-26T00:00:00', - Value: '91.545096361797818', - NumberOfUnits: '173' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '52.198385052475324' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Mellvile' - }, - Date: '2012-08-05T00:00:00', - Value: '98.8178437570193', - NumberOfUnits: '323' - }, - { - Product: { - Name: 'Components', - UnitPrice: '45.456700048156407' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Sofia' - }, - Date: '2012-08-07T00:00:00', - Value: '26.029428060180244', - NumberOfUnits: '264' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '56.771143552274971' - }, - Seller: { - Name: 'Mark Slater', - City: 'Sofia' - }, - Date: '2012-08-09T00:00:00', - Value: '11.488629929483231', - NumberOfUnits: '385' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '3.5650837251753935' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2012-08-10T00:00:00', - Value: '25.95193755158779', - NumberOfUnits: '56' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '34.601844071690849' - }, - Seller: { - Name: 'Benjamin Dupree', - City: 'Berlin' - }, - Date: '2012-08-12T00:00:00', - Value: '96.15096314630982', - NumberOfUnits: '267' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '92.402922963911166' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Seattle' - }, - Date: '2012-08-14T00:00:00', - Value: '94.912259883672121', - NumberOfUnits: '109' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '34.719441707581019' - }, - Seller: { - Name: 'Mark Slater', - City: 'Berlin' - }, - Date: '2012-08-17T00:00:00', - Value: '62.383219023413595', - NumberOfUnits: '478' - }, - { - Product: { - Name: 'Components', - UnitPrice: '23.335559257928075' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'Berlin' - }, - Date: '2012-08-21T00:00:00', - Value: '57.657432163906023', - NumberOfUnits: '184' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '79.522237963751991' - }, - Seller: { - Name: 'Brandon Mckim', - City: 'Seattle' - }, - Date: '2012-08-21T00:00:00', - Value: '35.349668718571621', - NumberOfUnits: '132' - }, - { - Product: { - Name: 'Components', - UnitPrice: '30.645626285414036' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2012-08-22T00:00:00', - Value: '95.940469715716532', - NumberOfUnits: '142' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '89.887765138357764' - }, - Seller: { - Name: 'Carl Costello', - City: 'Seattle' - }, - Date: '2012-08-27T00:00:00', - Value: '27.453476901842972', - NumberOfUnits: '46' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '83.189849035437149' - }, - Seller: { - Name: 'Walter Pang', - City: 'Seattle' - }, - Date: '2012-09-03T00:00:00', - Value: '68.605291316567588', - NumberOfUnits: '102' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '0.10354146366172538' - }, - Seller: { - Name: 'Russell Shorter', - City: 'Berlin' - }, - Date: '2012-09-09T00:00:00', - Value: '96.593755668305676', - NumberOfUnits: '21' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '36.629343143026041' - }, - Seller: { - Name: 'Monica Freitag', - City: 'Sofia' - }, - Date: '2012-09-10T00:00:00', - Value: '4.9306348920476788', - NumberOfUnits: '442' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '92.3085672279394' - }, - Seller: { - Name: 'Harry Tyler', - City: 'New York' - }, - Date: '2012-09-13T00:00:00', - Value: '99.215311091027843', - NumberOfUnits: '254' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '28.009415291254136' - }, - Seller: { - Name: 'Nicholas Carmona', - City: 'Sofia' - }, - Date: '2012-09-13T00:00:00', - Value: '49.9100303509785', - NumberOfUnits: '251' - }, - { - Product: { - Name: 'Components', - UnitPrice: '60.30177895925091' - }, - Seller: { - Name: 'Antonio Charbonneau', - City: 'New York' - }, - Date: '2012-09-15T00:00:00', - Value: '43.926440898294764', - NumberOfUnits: '119' - }, - { - Product: { - Name: 'Bikes', - UnitPrice: '33.007745320446666' - }, - Seller: { - Name: 'Claudia Kobayashi', - City: 'New York' - }, - Date: '2012-09-19T00:00:00', - Value: '32.426872864564352', - NumberOfUnits: '256' - }, - { - Product: { - Name: 'Components', - UnitPrice: '99.002955760342516' - }, - Seller: { - Name: 'John Smith', - City: 'New York' - }, - Date: '2012-09-23T00:00:00', - Value: '35.80295570930604', - NumberOfUnits: '456' - }, - { - Product: { - Name: 'Components', - UnitPrice: '16.174323817796225' - }, - Seller: { - Name: 'Kathe Pettel', - City: 'London' - }, - Date: '2012-10-01T00:00:00', - Value: '16.358145333993317', - NumberOfUnits: '430' - }, - { - Product: { - Name: 'Components', - UnitPrice: '72.899271488608449' - }, - Seller: { - Name: 'David Haley', - City: 'Berlin' - }, - Date: '2012-10-02T00:00:00', - Value: '57.0288074934058', - NumberOfUnits: '248' - }, - { - Product: { - Name: 'Components', - UnitPrice: '21.662706984981291' - }, - Seller: { - Name: 'Harold Garvin', - City: 'Berlin' - }, - Date: '2012-10-18T00:00:00', - Value: '28.238128790742778', - NumberOfUnits: '440' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '28.342247115607488' - }, - Seller: { - Name: 'Howard Sprouse', - City: 'New York' - }, - Date: '2012-10-19T00:00:00', - Value: '66.64152637433331', - NumberOfUnits: '234' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '80.468710223431088' - }, - Seller: { - Name: 'Benjamin Meekins', - City: 'New York' - }, - Date: '2012-10-25T00:00:00', - Value: '5.2594607254767141', - NumberOfUnits: '36' - }, - { - Product: { - Name: 'Accessories', - UnitPrice: '97.686087618435764' - }, - Seller: { - Name: 'Harry Tyler', - City: 'London' - }, - Date: '2012-10-26T00:00:00', - Value: '41.233811686389991', - NumberOfUnits: '46' - }, - { - Product: { - Name: 'Components', - UnitPrice: '88.700193301169293' - }, - Seller: { - Name: 'Elisa Longbottom', - City: 'London' - }, - Date: '2012-11-02T00:00:00', - Value: '64.566657210032758', - NumberOfUnits: '211' - }, - { - Product: { - Name: 'Clothing', - UnitPrice: '67.261227205051682' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2012-11-17T00:00:00', - Value: '14.189396572387498', - NumberOfUnits: '408' - }, - { - Product: { - Name: 'Components', - UnitPrice: '7.1456905022010631' - }, - Seller: { - Name: 'Walter Pang', - City: 'New York' - }, - Date: '2012-11-20T00:00:00', - Value: '72.779385965680419', - NumberOfUnits: '376' - } -]; diff --git a/packages/igx-templates/igx-ts/pivot-grid/default/index.ts b/packages/igx-templates/igx-ts/pivot-grid/default/index.ts index 12f47f56e..a183b6d33 100644 --- a/packages/igx-templates/igx-ts/pivot-grid/default/index.ts +++ b/packages/igx-templates/igx-ts/pivot-grid/default/index.ts @@ -1,16 +1,26 @@ import { IGNITEUI_ANGULAR_PACKAGE } from "../../../constants"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); class IgxPivotGridTemplate extends IgniteUIForAngularTemplate { - constructor() { - super(__dirname); - this.components = ["Pivot Grid"]; - this.controlGroup = "Grids & Lists"; - this.listInComponentTemplates = true; - this.id = "pivot-grid"; - this.projectType = "igx-ts"; - this.name = "Pivot Grid"; - this.packages = [IGNITEUI_ANGULAR_PACKAGE]; - } + constructor() { + super(__dirname); + this.components = ["Pivot Grid"]; + this.controlGroup = "Grids & Lists"; + this.listInComponentTemplates = true; + this.id = "pivot-grid"; + this.projectType = "igx-ts"; + this.name = "Pivot Grid"; + this.packages = [IGNITEUI_ANGULAR_PACKAGE]; + } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "pivot-grid", "files") + ]; + } } module.exports = new IgxPivotGridTemplate(); diff --git a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.ts b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.ts index 7803e3c0f..76689deca 100644 --- a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.ts +++ b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/__filePrefix__.ts @@ -1,5 +1,5 @@ import { Component, OnInit } from '@angular/core'; -import { Employee, EMPLOYEE_DATA } from './localData'; +import { Employee, EMPLOYEE_DATA } from './data'; @Component({ selector: 'app-<%=filePrefix%>', diff --git a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/localData.ts b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/localData.ts deleted file mode 100644 index 08a0d106e..000000000 --- a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/files/src/app/__path__/localData.ts +++ /dev/null @@ -1,155 +0,0 @@ -export interface Employee { - Age: number; - Employees?: Employee[]; - HireDate: Date; - ID: number; - Name: string; - Location: string; -} - -export const EMPLOYEE_DATA: Employee[] = [ - { - Age: 55, - Employees: [ - { - Age: 43, - Employees: [], - HireDate: new Date(2011, 6, 3), - ID: 3, - Name: 'Michael Burke', - Location: 'London' - }, - { - Age: 29, - Employees: [], - HireDate: new Date(2009, 6, 19), - ID: 2, - Name: 'Thomas Anderson', - Location: 'London' - }, - { - Age: 31, - Employees: [ - { - Age: 35, - HireDate: new Date(2015, 9, 17), - ID: 6, - Name: 'Roland Mendel', - Location: 'Tokyo' - }, - { - Age: 44, - HireDate: new Date(2009, 10, 11), - ID: 12, - Name: 'Sven Cooper', - Location: 'Tokyo' - } - ], - HireDate: new Date(2014, 8, 18), - ID: 11, - Name: 'Monica Reyes', - Location: 'London' - } - ], - HireDate: new Date(2008, 3, 20), - ID: 1, - Name: 'Johnathan Winchester', - Location: 'London' - }, - { - Age: 42, - Employees: [ - { - Age: 44, - HireDate: new Date(2014, 4, 4), - ID: 14, - Name: 'Laurence Johnson', - Location: 'New Jersey' - }, - { - Age: 25, - Employees: [ - { - Age: 39, - HireDate: new Date(2010, 3, 22), - ID: 13, - Name: 'Trevor Ashworth', - Location: 'New Jersey' - } - ], - HireDate: new Date(2017, 11, 9), - ID: 5, - Name: 'Elizabeth Richards', - Location: 'New Jersey' - } - ], - HireDate: new Date(2014, 1, 22), - ID: 4, - Name: 'Ana Sanders', - Location: 'New Jersey' - }, - { - Age: 49, - Employees: [ - { - Age: 44, - Employees: [], - HireDate: new Date(2014, 4, 4), - ID: 17, - Name: 'Antonio Moreno', - Location: 'New Jersey' - } - ], - HireDate: new Date(2014, 1, 22), - ID: 18, - Name: 'Victoria Lincoln', - Location: 'New Jersey' - }, - { - Age: 61, - Employees: [ - { - Age: 50, - Employees: [ - { - Age: 25, - Employees: [], - HireDate: new Date(2017, 11, 9), - ID: 15, - Name: 'Patricia Simpson', - Location: 'New Jersey' - }, - { - Age: 39, - HireDate: new Date(2010, 3, 22), - ID: 9, - Name: 'Francisco Chang', - Location: 'Tokyo' - }, - { - Age: 25, - HireDate: new Date(2018, 3, 18), - ID: 16, - Name: 'Peter Lewis', - Location: 'New Jersey' - } - ], - HireDate: new Date(2007, 11, 18), - ID: 7, - Name: 'Pedro Rodriguez', - Location: 'New Jersey' - }, - { - Age: 27, - HireDate: new Date(2016, 2, 19), - ID: 8, - Name: 'Casey Harper', - Location: 'Tokyo' - } - ], - HireDate: new Date(2010, 1, 1), - ID: 10, - Name: 'Yuki Onna', - Location: 'Tokyo' - } -]; diff --git a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts index 339017a65..deaf9ebe6 100644 --- a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts +++ b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts @@ -1,5 +1,8 @@ import { ControlExtraConfigType, ControlExtraConfiguration, TemplateDependency } from "@igniteui/cli-core"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; +import * as path from "path"; + +const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); class IgxCustomTreeGridTemplate extends IgniteUIForAngularTemplate { private userExtraConfiguration: {} = {}; @@ -207,5 +210,12 @@ class IgxCustomTreeGridTemplate extends IgniteUIForAngularTemplate { columnFeatures.push(text); columnBoolFeatures.push(text); } + + public get templatePaths(): string[] { + return [ + ...super.templatePaths, + path.join(SHARED_DATA_ROOT, "tree-grid", "files") + ]; + } } module.exports = new IgxCustomTreeGridTemplate(); From 674442cd9dda3f666ea7da4e192d99170f30ad81 Mon Sep 17 00:00:00 2001 From: georgianastasov Date: Tue, 16 Jun 2026 12:09:51 +0300 Subject: [PATCH 14/14] fix(components): sync shared template data into igx-templates folder --- packages/cli/templates/react/igr-ts/grid/basic/index.ts | 2 +- .../cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts | 2 +- packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts | 2 +- packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts | 2 +- .../cli/templates/webcomponents/igc-ts/grid/default/index.ts | 2 +- .../webcomponents/igc-ts/hierarchical-grid/basic/index.ts | 2 +- .../templates/webcomponents/igc-ts/pivot-grid/basic/index.ts | 2 +- .../cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts | 2 +- packages/igx-templates/igx-ts/grid/default/index.ts | 2 +- .../igx-templates/igx-ts/hierarchical-grid/default/index.ts | 2 +- packages/igx-templates/igx-ts/pivot-grid/default/index.ts | 2 +- .../igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts | 2 +- .../shared-data/grid/files/src/app/__path__/data.ts | 0 .../hierarchical-grid/files/src/app/__path__/data.ts | 0 .../shared-data/pivot-grid/files/src/app/__path__/data.ts | 0 .../shared-data/tree-grid/files/src/app/__path__/data.ts | 0 16 files changed, 12 insertions(+), 12 deletions(-) rename packages/{cli => igx-templates}/shared-data/grid/files/src/app/__path__/data.ts (100%) rename packages/{cli => igx-templates}/shared-data/hierarchical-grid/files/src/app/__path__/data.ts (100%) rename packages/{cli => igx-templates}/shared-data/pivot-grid/files/src/app/__path__/data.ts (100%) rename packages/{cli => igx-templates}/shared-data/tree-grid/files/src/app/__path__/data.ts (100%) diff --git a/packages/cli/templates/react/igr-ts/grid/basic/index.ts b/packages/cli/templates/react/igr-ts/grid/basic/index.ts index 90de0455f..38a823682 100644 --- a/packages/cli/templates/react/igr-ts/grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/grid/basic/index.ts @@ -3,7 +3,7 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIF import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class GridTemplate extends IgniteUIForReactTemplate { /** diff --git a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts index de52c8ce7..4077bb1b1 100644 --- a/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/hierarchical-grid/basic/index.ts @@ -2,7 +2,7 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIF import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class HierarchicalGridTemplate extends IgniteUIForReactTemplate { constructor() { diff --git a/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts index 78f46cd92..7c3285ae2 100644 --- a/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/pivot-grid/basic/index.ts @@ -2,7 +2,7 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIF import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class PivotGridTemplate extends IgniteUIForReactTemplate { constructor() { diff --git a/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts b/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts index fb6f7d058..a27383949 100644 --- a/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts +++ b/packages/cli/templates/react/igr-ts/tree-grid/basic/index.ts @@ -2,7 +2,7 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIF import { IGNITEUI_REACT_GRIDS_PACKAGE } from "../../constants"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class TreeGridTemplate extends IgniteUIForReactTemplate { constructor() { diff --git a/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts b/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts index d3783af52..e08c17e22 100644 --- a/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/grid/default/index.ts @@ -1,7 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class IgcGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { diff --git a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts index 10aaa1ab3..9977740bf 100644 --- a/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/hierarchical-grid/basic/index.ts @@ -1,7 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class IgcHierarchicalGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { diff --git a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts index b908f5d16..6360471ed 100644 --- a/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/pivot-grid/basic/index.ts @@ -1,7 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class IgcPivotGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { diff --git a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts index 3a5679b28..19bf4db3a 100644 --- a/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts +++ b/packages/cli/templates/webcomponents/igc-ts/tree-grid/basic/index.ts @@ -1,7 +1,7 @@ import { IgniteUIForWebComponentsTemplate } from "../../../../../lib/templates/IgniteUIForWebComponentsTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../../shared-data"); +const SHARED_DATA_ROOT = path.join(path.dirname(require.resolve("@igniteui/angular-templates/package.json")), "shared-data"); class IgcTreeGridTemplate extends IgniteUIForWebComponentsTemplate { constructor() { diff --git a/packages/igx-templates/igx-ts/grid/default/index.ts b/packages/igx-templates/igx-ts/grid/default/index.ts index e1f74b270..d4c10984d 100644 --- a/packages/igx-templates/igx-ts/grid/default/index.ts +++ b/packages/igx-templates/igx-ts/grid/default/index.ts @@ -2,7 +2,7 @@ import { IGNITEUI_ANGULAR_PACKAGE } from "../../../constants"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); +const SHARED_DATA_ROOT = path.join(__dirname, "../../../shared-data"); class IgxGridTemplate extends IgniteUIForAngularTemplate { constructor() { diff --git a/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts b/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts index 68170a776..814b7eefc 100644 --- a/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts +++ b/packages/igx-templates/igx-ts/hierarchical-grid/default/index.ts @@ -2,7 +2,7 @@ import { IGNITEUI_ANGULAR_PACKAGE } from "../../../constants"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); +const SHARED_DATA_ROOT = path.join(__dirname, "../../../shared-data"); class IgxHierarchicalGridTemplate extends IgniteUIForAngularTemplate { constructor() { diff --git a/packages/igx-templates/igx-ts/pivot-grid/default/index.ts b/packages/igx-templates/igx-ts/pivot-grid/default/index.ts index a183b6d33..0fee3706b 100644 --- a/packages/igx-templates/igx-ts/pivot-grid/default/index.ts +++ b/packages/igx-templates/igx-ts/pivot-grid/default/index.ts @@ -2,7 +2,7 @@ import { IGNITEUI_ANGULAR_PACKAGE } from "../../../constants"; import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); +const SHARED_DATA_ROOT = path.join(__dirname, "../../../shared-data"); class IgxPivotGridTemplate extends IgniteUIForAngularTemplate { constructor() { diff --git a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts index deaf9ebe6..3191a2042 100644 --- a/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts +++ b/packages/igx-templates/igx-ts/tree-grid/tree-grid-custom/index.ts @@ -2,7 +2,7 @@ import { ControlExtraConfigType, ControlExtraConfiguration, TemplateDependency } import { IgniteUIForAngularTemplate } from "../../../IgniteUIForAngularTemplate"; import * as path from "path"; -const SHARED_DATA_ROOT = path.join(__dirname, "../../../../cli/shared-data"); +const SHARED_DATA_ROOT = path.join(__dirname, "../../../shared-data"); class IgxCustomTreeGridTemplate extends IgniteUIForAngularTemplate { private userExtraConfiguration: {} = {}; diff --git a/packages/cli/shared-data/grid/files/src/app/__path__/data.ts b/packages/igx-templates/shared-data/grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/cli/shared-data/grid/files/src/app/__path__/data.ts rename to packages/igx-templates/shared-data/grid/files/src/app/__path__/data.ts diff --git a/packages/cli/shared-data/hierarchical-grid/files/src/app/__path__/data.ts b/packages/igx-templates/shared-data/hierarchical-grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/cli/shared-data/hierarchical-grid/files/src/app/__path__/data.ts rename to packages/igx-templates/shared-data/hierarchical-grid/files/src/app/__path__/data.ts diff --git a/packages/cli/shared-data/pivot-grid/files/src/app/__path__/data.ts b/packages/igx-templates/shared-data/pivot-grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/cli/shared-data/pivot-grid/files/src/app/__path__/data.ts rename to packages/igx-templates/shared-data/pivot-grid/files/src/app/__path__/data.ts diff --git a/packages/cli/shared-data/tree-grid/files/src/app/__path__/data.ts b/packages/igx-templates/shared-data/tree-grid/files/src/app/__path__/data.ts similarity index 100% rename from packages/cli/shared-data/tree-grid/files/src/app/__path__/data.ts rename to packages/igx-templates/shared-data/tree-grid/files/src/app/__path__/data.ts