@xplortech/apollo-data 0.0.3-draft.64d0fa1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +112 -0
  3. package/dist/apollo-data/apollo-data.esm.js +1 -0
  4. package/dist/apollo-data/index.esm.js +1 -0
  5. package/dist/apollo-data/p-Bb2nY-Tf.js +2 -0
  6. package/dist/apollo-data/p-DQuL1Twl.js +1 -0
  7. package/dist/apollo-data/p-e6584598.entry.js +11 -0
  8. package/dist/cjs/apollo-data-bar-chart_2.cjs.entry.js +68368 -0
  9. package/dist/cjs/apollo-data.cjs.js +25 -0
  10. package/dist/cjs/app-globals-V2Kpy_OQ.js +5 -0
  11. package/dist/cjs/index-Cl7HgRm0.js +1198 -0
  12. package/dist/cjs/index.cjs.js +7 -0
  13. package/dist/cjs/loader.cjs.js +13 -0
  14. package/dist/collection/apollo-data-base.js +38 -0
  15. package/dist/collection/collection-manifest.json +13 -0
  16. package/dist/collection/components/apollo-data-bar/apollo-data-bar.js +367 -0
  17. package/dist/collection/components/apollo-data-donut/apollo-data-donut.js +479 -0
  18. package/dist/collection/examples/apollo-data-bar.examples.js +160 -0
  19. package/dist/collection/examples/apollo-data-donut.examples.js +100 -0
  20. package/dist/collection/examples/index.js +2 -0
  21. package/dist/collection/index.js +10 -0
  22. package/dist/collection/utils/code-generator.js +240 -0
  23. package/dist/collection/utils/constants.js +2 -0
  24. package/dist/collection/utils/utils.js +3 -0
  25. package/dist/components/apollo-data-bar-chart.d.ts +11 -0
  26. package/dist/components/apollo-data-bar-chart.js +1 -0
  27. package/dist/components/apollo-data-donut-chart.d.ts +11 -0
  28. package/dist/components/apollo-data-donut-chart.js +1 -0
  29. package/dist/components/index.d.ts +35 -0
  30. package/dist/components/index.js +1 -0
  31. package/dist/components/p-7XF5Cax8.js +11 -0
  32. package/dist/components/p-Dws5s-Xe.js +1 -0
  33. package/dist/esm/apollo-data-bar-chart_2.entry.js +68365 -0
  34. package/dist/esm/apollo-data.js +21 -0
  35. package/dist/esm/app-globals-DQuL1Twl.js +3 -0
  36. package/dist/esm/index-Bb2nY-Tf.js +1190 -0
  37. package/dist/esm/index.js +5 -0
  38. package/dist/esm/loader.js +11 -0
  39. package/dist/index.cjs.js +1 -0
  40. package/dist/index.js +1 -0
  41. package/dist/types/apollo-data-base.d.ts +7 -0
  42. package/dist/types/components/apollo-data-bar/apollo-data-bar.d.ts +298 -0
  43. package/dist/types/components/apollo-data-donut/apollo-data-donut.d.ts +533 -0
  44. package/dist/types/components.d.ts +102 -0
  45. package/dist/types/examples/apollo-data-bar.examples.d.ts +12 -0
  46. package/dist/types/examples/apollo-data-donut.examples.d.ts +11 -0
  47. package/dist/types/examples/index.d.ts +2 -0
  48. package/dist/types/index.d.ts +11 -0
  49. package/dist/types/stencil-public-runtime.d.ts +1839 -0
  50. package/dist/types/utils/code-generator.d.ts +12 -0
  51. package/dist/types/utils/constants.d.ts +2 -0
  52. package/dist/types/utils/utils.d.ts +1 -0
  53. package/loader/cdn.js +1 -0
  54. package/loader/index.cjs.js +1 -0
  55. package/loader/index.d.ts +24 -0
  56. package/loader/index.es2017.js +1 -0
  57. package/loader/index.js +2 -0
  58. package/package.json +92 -0
  59. package/src/examples/apollo-data-bar.examples.ts +172 -0
  60. package/src/examples/apollo-data-donut.examples.ts +118 -0
  61. package/src/examples/index.ts +2 -0
@@ -0,0 +1,12 @@
1
+ export interface PropValue {
2
+ value: any;
3
+ isFunction?: boolean;
4
+ functionBody?: string;
5
+ }
6
+ export interface ComponentProps {
7
+ [key: string]: any;
8
+ }
9
+ export declare function generateInstallationDocs(framework?: string, componentName?: string): string;
10
+ export declare function generateReactCode(componentName: string, props: ComponentProps): string;
11
+ export declare function generateVueCode(componentName: string, props: ComponentProps): string;
12
+ export declare function generateWebComponentCode(componentName: string, props: ComponentProps): string;
@@ -0,0 +1,2 @@
1
+ export declare const MAX_NUMBER_OF_CATEGORIES = 8;
2
+ export declare const CHART_COLORS: string[];
@@ -0,0 +1 @@
1
+ export declare function format(first?: string, middle?: string, last?: string): string;
package/loader/cdn.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/cjs/loader.cjs.js');
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/cjs/loader.cjs.js');
@@ -0,0 +1,24 @@
1
+ export * from '../dist/types/components';
2
+ export interface CustomElementsDefineOptions {
3
+ exclude?: string[];
4
+ resourcesUrl?: string;
5
+ syncQueue?: boolean;
6
+ jmp?: (c: Function) => any;
7
+ raf?: (c: FrameRequestCallback) => number;
8
+ ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
9
+ rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
10
+ }
11
+ export declare function defineCustomElements(win?: Window, opts?: CustomElementsDefineOptions): void;
12
+ /**
13
+ * @deprecated
14
+ */
15
+ export declare function applyPolyfills(): Promise<void>;
16
+
17
+ /**
18
+ * Used to specify a nonce value that corresponds with an application's CSP.
19
+ * When set, the nonce will be added to all dynamically created script and style tags at runtime.
20
+ * Alternatively, the nonce value can be set on a meta tag in the DOM head
21
+ * (<meta name="csp-nonce" content="{ nonce value here }" />) which
22
+ * will result in the same behavior.
23
+ */
24
+ export declare function setNonce(nonce: string): void;
@@ -0,0 +1 @@
1
+ export * from '../dist/esm/loader.js';
@@ -0,0 +1,2 @@
1
+ (function(){if("undefined"!==typeof window&&void 0!==window.Reflect&&void 0!==window.customElements){var a=HTMLElement;window.HTMLElement=function(){return Reflect.construct(a,[],this.constructor)};HTMLElement.prototype=a.prototype;HTMLElement.prototype.constructor=HTMLElement;Object.setPrototypeOf(HTMLElement,a)}})();
2
+ export * from '../dist/esm/loader.js';
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "@xplortech/apollo-data",
3
+ "version": "0.0.3-draft.64d0fa1",
4
+ "description": "Apollo Data",
5
+ "main": "dist/index.cjs.js",
6
+ "module": "dist/index.js",
7
+ "types": "dist/types/index.d.ts",
8
+ "collection": "dist/collection/collection-manifest.json",
9
+ "collection:main": "dist/collection/index.js",
10
+ "unpkg": "dist/apollo-data/apollo-data.esm.js",
11
+ "author": "Xplor Technologies",
12
+ "homepage": "https://github.com/xplor/apollo/tree/main/packages/apollo-data#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/xplor/apollo/issues"
15
+ },
16
+ "repository": {
17
+ "url": "git+https://github.com/xplor/apollo.git"
18
+ },
19
+ "keywords": [
20
+ "apollo",
21
+ "apollo-data",
22
+ "apollo-data-visualization",
23
+ "apollo-data-charts",
24
+ "xplor"
25
+ ],
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public",
31
+ "provenance": false
32
+ },
33
+ "exports": {
34
+ ".": {
35
+ "types": "./dist/types/index.d.ts",
36
+ "import": "./dist/apollo-data/apollo-data.esm.js",
37
+ "require": "./dist/apollo-data/apollo-data.cjs.js"
38
+ },
39
+ "./dist/*": {
40
+ "import": "./dist/*",
41
+ "types": "./dist/*"
42
+ },
43
+ "./components/*": {
44
+ "import": "./dist/components/*.js",
45
+ "types": "./dist/components/*.d.ts"
46
+ },
47
+ "./loader": {
48
+ "import": "./loader/index.js",
49
+ "require": "./loader/index.cjs",
50
+ "types": "./loader/index.d.ts"
51
+ },
52
+ "./examples": {
53
+ "import": "./dist/examples/index.js",
54
+ "types": "./dist/types/examples/index.d.ts"
55
+ }
56
+ },
57
+ "files": [
58
+ "dist/",
59
+ "loader/",
60
+ "src/examples/"
61
+ ],
62
+ "scripts": {
63
+ "build": "stencil build",
64
+ "start": "stencil build --dev --watch --serve",
65
+ "test": "stencil test --spec --e2e",
66
+ "test.watch": "stencil test --spec --e2e --watchAll",
67
+ "generate": "stencil generate"
68
+ },
69
+ "devDependencies": {
70
+ "@kesills/eslint-config-airbnb-typescript": "^20.0.0",
71
+ "@stencil/core": "^4.38.2",
72
+ "@stencil/react-output-target": "^1.2.0",
73
+ "@stencil/vue-output-target": "^0.11.8",
74
+ "@testing-library/dom": "^10.4.0",
75
+ "@testing-library/jest-dom": "^6.6.3",
76
+ "eslint": "^8.57.1",
77
+ "eslint-config-airbnb-base": "^15.0.0",
78
+ "eslint-config-prettier": "^10.1.1",
79
+ "eslint-plugin-prettier": "^5.2.5",
80
+ "eslint-plugin-testing-library": "^7.1.1",
81
+ "happy-dom": "^17.4.4",
82
+ "npm-run-all": "^4.1.5",
83
+ "prettier": "^3.5.3",
84
+ "typescript": "^5.5.3",
85
+ "vitest": "^3.0.9"
86
+ },
87
+ "license": "MIT",
88
+ "dependencies": {
89
+ "date-fns": "^2.30.0",
90
+ "vega-embed": "^7.1.0"
91
+ }
92
+ }
@@ -0,0 +1,172 @@
1
+ import { BarDataItem, BarSpec } from '../components/apollo-data-bar/apollo-data-bar';
2
+
3
+ export interface BarExample {
4
+ name: string;
5
+ description: string;
6
+ props: {
7
+ adData: BarDataItem[];
8
+ adSpec?: BarSpec;
9
+ };
10
+ notes?: string;
11
+ }
12
+
13
+ /** periodId should be a date string (YYYY-MM-DD) representing the period. */
14
+ export const barExamples: BarExample[] = [
15
+ {
16
+ name: 'Revenue and Expenses by Day',
17
+ description: 'A stacked bar chart showing daily revenue and expenses over a week',
18
+ props: {
19
+ adData: [
20
+ { label: 'Mon', category: 'Revenue', value: 5000, periodId: '2024-01-01' },
21
+ { label: 'Mon', category: 'Expenses', value: 2000, periodId: '2024-01-01' },
22
+ { label: 'Tue', category: 'Revenue', value: 6000, periodId: '2024-01-02' },
23
+ { label: 'Tue', category: 'Expenses', value: 2500, periodId: '2024-01-02' },
24
+ { label: 'Wed', category: 'Revenue', value: 5500, periodId: '2024-01-03' },
25
+ { label: 'Wed', category: 'Expenses', value: 2200, periodId: '2024-01-03' },
26
+ { label: 'Thu', category: 'Revenue', value: 7000, periodId: '2024-01-04' },
27
+ { label: 'Thu', category: 'Expenses', value: 3000, periodId: '2024-01-04' },
28
+ { label: 'Fri', category: 'Revenue', value: 6500, periodId: '2024-01-05' },
29
+ { label: 'Fri', category: 'Expenses', value: 2800, periodId: '2024-01-05' },
30
+ ],
31
+ adSpec: {
32
+ tooltipPrefix: '$',
33
+ currencySymbol: '$',
34
+ yAxisTitle: 'Amount',
35
+ colorSet: ['#FF8DF4', '#74FBD0'],
36
+ },
37
+ },
38
+ },
39
+ {
40
+ name: 'Monthly Sales by Product',
41
+ description: 'Stacked bar chart showing sales across multiple products by month',
42
+ props: {
43
+ adData: [
44
+ { label: 'Jan', category: 'Product A', value: 12000, periodId: '2024-01-01' },
45
+ { label: 'Jan', category: 'Product B', value: 8000, periodId: '2024-01-01' },
46
+ { label: 'Jan', category: 'Product C', value: 6000, periodId: '2024-01-01' },
47
+ { label: 'Feb', category: 'Product A', value: 15000, periodId: '2024-02-01' },
48
+ { label: 'Feb', category: 'Product B', value: 9000, periodId: '2024-02-01' },
49
+ { label: 'Feb', category: 'Product C', value: 7000, periodId: '2024-02-01' },
50
+ { label: 'Mar', category: 'Product A', value: 13000, periodId: '2024-03-01' },
51
+ { label: 'Mar', category: 'Product B', value: 10000, periodId: '2024-03-01' },
52
+ { label: 'Mar', category: 'Product C', value: 5500, periodId: '2024-03-01' },
53
+ { label: 'Apr', category: 'Product A', value: 14000, periodId: '2024-04-01' },
54
+ { label: 'Apr', category: 'Product B', value: 9500, periodId: '2024-04-01' },
55
+ { label: 'Apr', category: 'Product C', value: 6500, periodId: '2024-04-01' },
56
+ ],
57
+ adSpec: {
58
+ tooltipPrefix: '$',
59
+ currencySymbol: '$',
60
+ yAxisTitle: 'Monthly Sales',
61
+ colorSet: ['#FF8DF4', '#74FBD0', '#ECFD91'],
62
+ },
63
+ },
64
+ },
65
+ {
66
+ name: 'Weekly Revenue by Category',
67
+ description: 'Stacked bar chart showing revenue across Sales, Marketing, and Product',
68
+ props: {
69
+ adData: [
70
+ { label: 'W1', category: 'Sales', value: 3500, periodId: '2024-01-01' },
71
+ { label: 'W1', category: 'Marketing', value: 2200, periodId: '2024-01-01' },
72
+ { label: 'W1', category: 'Product A', value: 1800, periodId: '2024-01-01' },
73
+ { label: 'W2', category: 'Sales', value: 4200, periodId: '2024-01-08' },
74
+ { label: 'W2', category: 'Marketing', value: 2800, periodId: '2024-01-08' },
75
+ { label: 'W2', category: 'Product A', value: 2000, periodId: '2024-01-08' },
76
+ { label: 'W3', category: 'Sales', value: 3800, periodId: '2024-01-15' },
77
+ { label: 'W3', category: 'Marketing', value: 2500, periodId: '2024-01-15' },
78
+ { label: 'W3', category: 'Product A', value: 1900, periodId: '2024-01-15' },
79
+ ],
80
+ adSpec: {
81
+ tooltipPrefix: '$',
82
+ currencySymbol: '$',
83
+ yAxisTitle: 'Weekly Revenue',
84
+ },
85
+ },
86
+ },
87
+ {
88
+ name: 'Yearly Regional Revenue',
89
+ description: 'Stacked bar chart showing revenue across regions by year',
90
+ props: {
91
+ adData: [
92
+ { label: '2019', category: 'North America', value: 450000, periodId: '2019-01-01' },
93
+ { label: '2019', category: 'Europe', value: 320000, periodId: '2019-01-01' },
94
+ { label: '2019', category: 'Asia Pacific', value: 280000, periodId: '2019-01-01' },
95
+ { label: '2020', category: 'North America', value: 380000, periodId: '2020-01-01' },
96
+ { label: '2020', category: 'Europe', value: 290000, periodId: '2020-01-01' },
97
+ { label: '2020', category: 'Asia Pacific', value: 310000, periodId: '2020-01-01' },
98
+ { label: '2021', category: 'North America', value: 520000, periodId: '2021-01-01' },
99
+ { label: '2021', category: 'Europe', value: 410000, periodId: '2021-01-01' },
100
+ { label: '2021', category: 'Asia Pacific', value: 450000, periodId: '2021-01-01' },
101
+ { label: '2022', category: 'North America', value: 580000, periodId: '2022-01-01' },
102
+ { label: '2022', category: 'Europe', value: 460000, periodId: '2022-01-01' },
103
+ { label: '2022', category: 'Asia Pacific', value: 520000, periodId: '2022-01-01' },
104
+ ],
105
+ adSpec: {
106
+ tooltipPrefix: '$',
107
+ currencySymbol: '$',
108
+ yAxisTitle: 'Regional Revenue',
109
+ colorSet: ['#4d1ab2', '#f99170', '#e550c8'],
110
+ },
111
+ },
112
+ },
113
+ {
114
+ name: 'Order Counts by Channel',
115
+ description: 'Bar chart showing order counts by channel without currency formatting',
116
+ props: {
117
+ adData: [
118
+ { label: 'Mon', category: 'Website', value: 1250, periodId: '2024-05-01' },
119
+ { label: 'Mon', category: 'Mobile App', value: 890, periodId: '2024-05-01' },
120
+ { label: 'Mon', category: 'In-Store', value: 450, periodId: '2024-05-01' },
121
+ { label: 'Tue', category: 'Website', value: 1380, periodId: '2024-05-02' },
122
+ { label: 'Tue', category: 'Mobile App', value: 920, periodId: '2024-05-02' },
123
+ { label: 'Tue', category: 'In-Store', value: 480, periodId: '2024-05-02' },
124
+ { label: 'Wed', category: 'Website', value: 1150, periodId: '2024-05-03' },
125
+ { label: 'Wed', category: 'Mobile App', value: 850, periodId: '2024-05-03' },
126
+ { label: 'Wed', category: 'In-Store', value: 420, periodId: '2024-05-03' },
127
+ ],
128
+ adSpec: {
129
+ yAxisTitle: 'Order Count',
130
+ colorSet: ['#8857fa', '#52ebba', '#31cff8'],
131
+ },
132
+ },
133
+ },
134
+ {
135
+ name: 'Single Category',
136
+ description: 'Bar chart with a single category showing visitor counts by day',
137
+ props: {
138
+ adData: [
139
+ { label: 'Mon', category: 'Visitors', value: 2450, periodId: '2024-04-01' },
140
+ { label: 'Tue', category: 'Visitors', value: 2680, periodId: '2024-04-02' },
141
+ { label: 'Wed', category: 'Visitors', value: 2320, periodId: '2024-04-03' },
142
+ { label: 'Thu', category: 'Visitors', value: 2890, periodId: '2024-04-04' },
143
+ { label: 'Fri', category: 'Visitors', value: 3150, periodId: '2024-04-05' },
144
+ { label: 'Sat', category: 'Visitors', value: 3420, periodId: '2024-04-06' },
145
+ { label: 'Sun', category: 'Visitors', value: 3280, periodId: '2024-04-07' },
146
+ ],
147
+ adSpec: {
148
+ yAxisTitle: 'Daily Visitors',
149
+ colorSet: ['#6366f1'],
150
+ },
151
+ },
152
+ },
153
+ {
154
+ name: 'Custom Axis Titles',
155
+ description: 'Chart with custom x-axis and y-axis titles via xAxisTitle and yAxisTitle',
156
+ props: {
157
+ adData: [
158
+ { label: 'Mon', category: 'Inbound', value: 120, periodId: '2024-06-01' },
159
+ { label: 'Mon', category: 'Outbound', value: 80, periodId: '2024-06-01' },
160
+ { label: 'Tue', category: 'Inbound', value: 95, periodId: '2024-06-02' },
161
+ { label: 'Tue', category: 'Outbound', value: 110, periodId: '2024-06-02' },
162
+ { label: 'Wed', category: 'Inbound', value: 130, periodId: '2024-06-03' },
163
+ { label: 'Wed', category: 'Outbound', value: 70, periodId: '2024-06-03' },
164
+ ],
165
+ adSpec: {
166
+ yAxisTitle: 'Calls',
167
+ xAxisTitle: 'Support queue (by day)',
168
+ colorSet: ['#4d1ab2', '#f99170'],
169
+ },
170
+ },
171
+ },
172
+ ];
@@ -0,0 +1,118 @@
1
+ import { DonutDataItem, DonutSpec } from '../components/apollo-data-donut/apollo-data-donut';
2
+
3
+ // Use the component's prop types directly
4
+ export interface DonutExample {
5
+ name: string;
6
+ description: string;
7
+ props: {
8
+ adData: DonutDataItem[];
9
+ adSpec?: DonutSpec;
10
+ // Future: add event handlers when component supports them
11
+ // onSliceClick?: (item: DonutDataItem) => void;
12
+ };
13
+ notes?: string; // Optional additional documentation
14
+ }
15
+
16
+ export const donutExamples: DonutExample[] = [
17
+ {
18
+ name: 'Basic Revenue Distribution',
19
+ description: 'A simple donut chart showing revenue distribution across different categories',
20
+ props: {
21
+ adData: [
22
+ { category: 'Product Sales', value: 350000 },
23
+ { category: 'Services', value: 250000 },
24
+ { category: 'Subscriptions', value: 150000 },
25
+ { category: 'Consulting', value: 100000 },
26
+ ],
27
+ },
28
+ },
29
+ {
30
+ name: 'Custom Colors',
31
+ description: 'Donut chart with custom color scheme',
32
+ props: {
33
+ adData: [
34
+ { category: 'Region A', value: 450000 },
35
+ { category: 'Region B', value: 300000 },
36
+ { category: 'Region C', value: 200000 },
37
+ ],
38
+ adSpec: {
39
+ colorSet: ['#FF6B6B', '#4ECDC4', '#45B7D1'],
40
+ },
41
+ },
42
+ },
43
+ {
44
+ name: 'Many Categories',
45
+ description: 'Donut chart with multiple categories',
46
+ props: {
47
+ adData: [
48
+ { category: 'Marketing', value: 120000 },
49
+ { category: 'Engineering', value: 280000 },
50
+ { category: 'Sales', value: 210000 },
51
+ { category: 'Operations', value: 150000 },
52
+ { category: 'Customer Support', value: 90000 },
53
+ ],
54
+ },
55
+ },
56
+ {
57
+ name: 'Prefix',
58
+ description: 'Donut chart with prefix',
59
+ props: {
60
+ adData: [
61
+ { category: 'Marketing', value: 120000 },
62
+ { category: 'Engineering', value: 280000 },
63
+ { category: 'Sales', value: 210000 },
64
+ { category: 'Operations', value: 150000 },
65
+ { category: 'Customer Support', value: 90000 },
66
+ ],
67
+
68
+ adSpec: {
69
+ prefix: '€',
70
+ },
71
+ },
72
+ },
73
+ {
74
+ name: 'Prefix and Suffix',
75
+ description: 'Donut chart with prefix and suffix',
76
+ props: {
77
+ adData: [
78
+ { category: 'Marketing', value: 120000 },
79
+ { category: 'Engineering', value: 280000 },
80
+ { category: 'Sales', value: 210000 },
81
+ { category: 'Operations', value: 150000 },
82
+ { category: 'Customer Support', value: 90000 },
83
+ ],
84
+
85
+ adSpec: {
86
+ prefix: '€',
87
+ suffix: '€',
88
+ },
89
+ },
90
+ },
91
+ {
92
+ name: 'Prefix, suffix and color set',
93
+ description: 'Donut chart with prefix and suffix and color set',
94
+ props: {
95
+ adData: [
96
+ { category: 'Marketing', value: 120000 },
97
+ { category: 'Engineering', value: 280000 },
98
+ { category: 'Sales', value: 210000 },
99
+ { category: 'Operations', value: 150000 },
100
+ { category: 'Customer Support', value: 90000 },
101
+ ],
102
+
103
+ adSpec: {
104
+ prefix: '€',
105
+ suffix: '€',
106
+ colorSet: [
107
+ '#FF0000', // Red
108
+ '#FF7F00', // Orange
109
+ '#FFD700', // Yellow
110
+ '#00C853', // Green
111
+ '#00B0FF', // Blue
112
+ '#3F51B5', // Indigo
113
+ '#8E24AA', // Violet
114
+ ],
115
+ },
116
+ },
117
+ },
118
+ ];
@@ -0,0 +1,2 @@
1
+ export * from './apollo-data-donut.examples';
2
+ export * from './apollo-data-bar.examples';