buckaroo-js-core 0.8.4 → 0.11.7

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 (242) hide show
  1. package/LICENSE +24 -12
  2. package/README.md +55 -51
  3. package/dist/index.cjs.js +114 -0
  4. package/dist/index.cjs.js.map +1 -0
  5. package/dist/index.es.js +60790 -0
  6. package/dist/index.es.js.map +1 -0
  7. package/dist/index.esm.js +60790 -0
  8. package/dist/index.esm.js.map +1 -0
  9. package/dist/jest.setup.d.ts +0 -0
  10. package/dist/src/SampleComponent.d.ts +10 -0
  11. package/{buckaroo_js → dist/src}/baked_data/colorMap.d.ts +0 -1
  12. package/dist/src/baked_data/olympic-winners.d.ts +12 -0
  13. package/dist/src/components/BuckarooInfiniteWidget.flash.test.d.ts +1 -0
  14. package/dist/src/components/BuckarooStaticTable.d.ts +26 -0
  15. package/dist/src/components/BuckarooWidgetInfinite.d.ts +38 -0
  16. package/{buckaroo_js → dist/src}/components/ColumnsEditor.d.ts +5 -8
  17. package/{buckaroo_js → dist/src}/components/CommandUtils.d.ts +8 -5
  18. package/dist/src/components/DCFCell.d.ts +19 -0
  19. package/dist/src/components/DFViewerParts/ChartCell.d.ts +43 -0
  20. package/dist/src/components/DFViewerParts/DFViewerConfigs.d.ts +5 -0
  21. package/dist/src/components/DFViewerParts/DFViewerDataHelper.d.ts +20 -0
  22. package/dist/src/components/DFViewerParts/DFViewerInfinite.d.ts +43 -0
  23. package/dist/src/components/DFViewerParts/DFViewerInfinite.flash.test.d.ts +1 -0
  24. package/dist/src/components/DFViewerParts/DFViewerInfinite.test.d.ts +1 -0
  25. package/dist/src/components/DFViewerParts/DFWhole.d.ts +173 -0
  26. package/{buckaroo_js → dist/src}/components/DFViewerParts/Displayer.d.ts +20 -6
  27. package/dist/src/components/DFViewerParts/HistogramCell.d.ts +29 -0
  28. package/dist/src/components/DFViewerParts/HistogramCell.hooks.test.d.ts +1 -0
  29. package/dist/src/components/DFViewerParts/OtherRenderers.d.ts +5 -0
  30. package/dist/src/components/DFViewerParts/RowCache.d.ts +61 -0
  31. package/dist/src/components/DFViewerParts/RowCache.test.d.ts +1 -0
  32. package/dist/src/components/DFViewerParts/RowStore.d.ts +22 -0
  33. package/dist/src/components/DFViewerParts/RowStore.test.d.ts +1 -0
  34. package/dist/src/components/DFViewerParts/RowStoreGc.d.ts +22 -0
  35. package/dist/src/components/DFViewerParts/RowStoreGc.test.d.ts +1 -0
  36. package/dist/src/components/DFViewerParts/SeriesSummaryTooltip.d.ts +13 -0
  37. package/dist/src/components/DFViewerParts/SmartRowCache.d.ts +83 -0
  38. package/dist/src/components/DFViewerParts/SmartRowCache.test.d.ts +23 -0
  39. package/dist/src/components/DFViewerParts/Styler.d.ts +33 -0
  40. package/dist/src/components/DFViewerParts/TableInfinite.d.ts +10 -0
  41. package/dist/src/components/DFViewerParts/ViewRegistry.d.ts +21 -0
  42. package/dist/src/components/DFViewerParts/ViewRegistry.test.d.ts +1 -0
  43. package/dist/src/components/DFViewerParts/Views.d.ts +53 -0
  44. package/dist/src/components/DFViewerParts/Views.test.d.ts +1 -0
  45. package/dist/src/components/DFViewerParts/autocleaning.toggle.integration.test.d.ts +27 -0
  46. package/dist/src/components/DFViewerParts/gridUtils.d.ts +81 -0
  47. package/dist/src/components/DFViewerParts/gridUtils.test.d.ts +1 -0
  48. package/dist/src/components/DFViewerParts/resolveDFData.d.ts +29 -0
  49. package/dist/src/components/DFViewerParts/resolveDFData.test.d.ts +1 -0
  50. package/dist/src/components/DFViewerParts/xorqWindow.dom.test.d.ts +1 -0
  51. package/dist/src/components/DFViewerParts/xorqWindow.test.d.ts +1 -0
  52. package/{buckaroo_js → dist/src}/components/DependentTabs.d.ts +8 -13
  53. package/dist/src/components/MessageBox.d.ts +8 -0
  54. package/{buckaroo_js → dist/src}/components/OperationDetail.d.ts +4 -6
  55. package/dist/src/components/OperationExamples.d.ts +8 -0
  56. package/{buckaroo_js → dist/src}/components/OperationUtils.d.ts +1 -1
  57. package/dist/src/components/Operations.d.ts +14 -0
  58. package/dist/src/components/Operations.test.d.ts +4 -0
  59. package/dist/src/components/OperationsList.d.ts +9 -0
  60. package/dist/src/components/OperationsList.test.d.ts +0 -0
  61. package/dist/src/components/StatusBar.d.ts +15 -0
  62. package/{buckaroo_js → dist/src}/components/WidgetTypes.d.ts +3 -4
  63. package/dist/src/components/useColorScheme.d.ts +7 -0
  64. package/dist/src/components/utils.d.ts +299 -0
  65. package/dist/src/index.d.ts +59 -0
  66. package/dist/src/stories/BuckarooWidgetTest.stories.d.ts +12 -0
  67. package/dist/src/stories/ChartCell.stories.d.ts +20 -0
  68. package/dist/src/stories/ColumnsEditor.stories.d.ts +17 -0
  69. package/dist/src/stories/DFViewer.stories.d.ts +26 -0
  70. package/dist/src/stories/DFViewerInfiniteRaw.stories.d.ts +24 -0
  71. package/dist/src/stories/DFViewerInfiniteShadow.stories.d.ts +31 -0
  72. package/dist/src/stories/HistogramCell.stories.d.ts +18 -0
  73. package/dist/src/stories/InheritEdgeCases.stories.d.ts +12 -0
  74. package/dist/src/stories/InheritPinnedRows.stories.d.ts +13 -0
  75. package/dist/src/stories/MessageBox.stories.d.ts +26 -0
  76. package/dist/src/stories/OperationViewer.stories.d.ts +24 -0
  77. package/dist/src/stories/OperationsList.stories.d.ts +19 -0
  78. package/dist/src/stories/OutsideParamsInconsistency.stories.d.ts +16 -0
  79. package/dist/src/stories/PinnedRowsDynamic.stories.d.ts +12 -0
  80. package/dist/src/stories/PinnedRowsRace.stories.d.ts +12 -0
  81. package/dist/src/stories/PinnedRowsTranscriptReplayer.stories.d.ts +13 -0
  82. package/dist/src/stories/RawAGGrid.stories.d.ts +17 -0
  83. package/dist/src/stories/SmallDFScroll.stories.d.ts +11 -0
  84. package/dist/src/stories/StatusBar.stories.d.ts +19 -0
  85. package/dist/src/stories/StoryUtils.d.ts +13 -0
  86. package/dist/src/stories/Styling.stories.d.ts +15 -0
  87. package/dist/src/stories/StylingIssues.stories.d.ts +54 -0
  88. package/dist/src/stories/ThemeCustomization.stories.d.ts +22 -0
  89. package/dist/src/stories/UseMemoExamples.stories.d.ts +12 -0
  90. package/dist/src/stories/WeirdTypes.stories.d.ts +17 -0
  91. package/dist/src/test-utils/agGridSpy.d.ts +50 -0
  92. package/dist/src/widgetUtils.d.ts +1 -0
  93. package/dist/style.css +1 -0
  94. package/package.json +109 -101
  95. package/.prettierrc +0 -16
  96. package/CHANGELOG.md +0 -23
  97. package/buckaroo_js/baked_data/colorMap.d.ts.map +0 -1
  98. package/buckaroo_js/baked_data/colorMap.js +0 -520
  99. package/buckaroo_js/baked_data/colorMap.js.map +0 -1
  100. package/buckaroo_js/baked_data/staticData.d.ts +0 -124
  101. package/buckaroo_js/baked_data/staticData.d.ts.map +0 -1
  102. package/buckaroo_js/baked_data/staticData.js +0 -459
  103. package/buckaroo_js/baked_data/staticData.js.map +0 -1
  104. package/buckaroo_js/components/ColumnsEditor.d.ts.map +0 -1
  105. package/buckaroo_js/components/ColumnsEditor.js +0 -68
  106. package/buckaroo_js/components/ColumnsEditor.js.map +0 -1
  107. package/buckaroo_js/components/CommandUtils.d.ts.map +0 -1
  108. package/buckaroo_js/components/CommandUtils.js +0 -17
  109. package/buckaroo_js/components/CommandUtils.js.map +0 -1
  110. package/buckaroo_js/components/DCFCell.d.ts +0 -28
  111. package/buckaroo_js/components/DCFCell.d.ts.map +0 -1
  112. package/buckaroo_js/components/DCFCell.js +0 -120
  113. package/buckaroo_js/components/DCFCell.js.map +0 -1
  114. package/buckaroo_js/components/DFViewerParts/DFViewer.d.ts +0 -29
  115. package/buckaroo_js/components/DFViewerParts/DFViewer.d.ts.map +0 -1
  116. package/buckaroo_js/components/DFViewerParts/DFViewer.js +0 -163
  117. package/buckaroo_js/components/DFViewerParts/DFViewer.js.map +0 -1
  118. package/buckaroo_js/components/DFViewerParts/DFWhole.d.ts +0 -111
  119. package/buckaroo_js/components/DFViewerParts/DFWhole.d.ts.map +0 -1
  120. package/buckaroo_js/components/DFViewerParts/DFWhole.js +0 -17
  121. package/buckaroo_js/components/DFViewerParts/DFWhole.js.map +0 -1
  122. package/buckaroo_js/components/DFViewerParts/Displayer.d.ts.map +0 -1
  123. package/buckaroo_js/components/DFViewerParts/Displayer.js +0 -221
  124. package/buckaroo_js/components/DFViewerParts/Displayer.js.map +0 -1
  125. package/buckaroo_js/components/DFViewerParts/HistogramCell.d.ts +0 -20
  126. package/buckaroo_js/components/DFViewerParts/HistogramCell.d.ts.map +0 -1
  127. package/buckaroo_js/components/DFViewerParts/HistogramCell.js +0 -184
  128. package/buckaroo_js/components/DFViewerParts/HistogramCell.js.map +0 -1
  129. package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.d.ts +0 -5
  130. package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.d.ts.map +0 -1
  131. package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.js +0 -18
  132. package/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.js.map +0 -1
  133. package/buckaroo_js/components/DFViewerParts/gridUtils.d.ts +0 -24
  134. package/buckaroo_js/components/DFViewerParts/gridUtils.d.ts.map +0 -1
  135. package/buckaroo_js/components/DFViewerParts/gridUtils.js +0 -230
  136. package/buckaroo_js/components/DFViewerParts/gridUtils.js.map +0 -1
  137. package/buckaroo_js/components/DependentTabs.d.ts.map +0 -1
  138. package/buckaroo_js/components/DependentTabs.js +0 -108
  139. package/buckaroo_js/components/DependentTabs.js.map +0 -1
  140. package/buckaroo_js/components/OperationDetail.d.ts.map +0 -1
  141. package/buckaroo_js/components/OperationDetail.js +0 -144
  142. package/buckaroo_js/components/OperationDetail.js.map +0 -1
  143. package/buckaroo_js/components/OperationUtils.d.ts.map +0 -1
  144. package/buckaroo_js/components/OperationUtils.js +0 -14
  145. package/buckaroo_js/components/OperationUtils.js.map +0 -1
  146. package/buckaroo_js/components/Operations.d.ts +0 -24
  147. package/buckaroo_js/components/Operations.d.ts.map +0 -1
  148. package/buckaroo_js/components/Operations.js +0 -209
  149. package/buckaroo_js/components/Operations.js.map +0 -1
  150. package/buckaroo_js/components/StatusBar.d.ts +0 -12
  151. package/buckaroo_js/components/StatusBar.d.ts.map +0 -1
  152. package/buckaroo_js/components/StatusBar.js +0 -155
  153. package/buckaroo_js/components/StatusBar.js.map +0 -1
  154. package/buckaroo_js/components/WidgetTypes.d.ts.map +0 -1
  155. package/buckaroo_js/components/WidgetTypes.js +0 -3
  156. package/buckaroo_js/components/WidgetTypes.js.map +0 -1
  157. package/buckaroo_js/components/bakedOperationDefaults.d.ts +0 -5
  158. package/buckaroo_js/components/bakedOperationDefaults.d.ts.map +0 -1
  159. package/buckaroo_js/components/bakedOperationDefaults.js +0 -15
  160. package/buckaroo_js/components/bakedOperationDefaults.js.map +0 -1
  161. package/buckaroo_js/components/utils.d.ts +0 -294
  162. package/buckaroo_js/components/utils.d.ts.map +0 -1
  163. package/buckaroo_js/components/utils.js +0 -143
  164. package/buckaroo_js/components/utils.js.map +0 -1
  165. package/buckaroo_js/extension.d.ts +0 -2
  166. package/buckaroo_js/extension.d.ts.map +0 -1
  167. package/buckaroo_js/extension.js +0 -20
  168. package/buckaroo_js/extension.js.map +0 -1
  169. package/buckaroo_js/index.d.ts +0 -25
  170. package/buckaroo_js/index.d.ts.map +0 -1
  171. package/buckaroo_js/index.js +0 -46
  172. package/buckaroo_js/index.js.map +0 -1
  173. package/buckaroo_js/vendor/RechartExtra.d.ts +0 -38
  174. package/buckaroo_js/vendor/RechartExtra.d.ts.map +0 -1
  175. package/buckaroo_js/vendor/RechartExtra.js +0 -17
  176. package/buckaroo_js/vendor/RechartExtra.js.map +0 -1
  177. package/buckaroo_js/vendor/RechartTooltip.d.ts +0 -82
  178. package/buckaroo_js/vendor/RechartTooltip.d.ts.map +0 -1
  179. package/buckaroo_js/vendor/RechartTooltip.js +0 -231
  180. package/buckaroo_js/vendor/RechartTooltip.js.map +0 -1
  181. package/codecov.yml +0 -16
  182. package/eslint.config.mjs +0 -88
  183. package/examples/App.tsx +0 -160
  184. package/examples/CodeBlock.tsx +0 -27
  185. package/examples/CodePenButton.tsx +0 -72
  186. package/examples/ReadmeBlock.tsx +0 -11
  187. package/examples/app.css +0 -29
  188. package/examples/ex/ColumnsEditorEx.tsx +0 -5
  189. package/examples/ex/CommandViewerEx.tsx +0 -18
  190. package/examples/ex/DFViewerEx.tsx +0 -3
  191. package/examples/ex/DFViewerEx_large.tsx +0 -266
  192. package/examples/ex/DFViewerEx_real_summary.tsx +0 -18
  193. package/examples/ex/DFViewerEx_short_data.tsx +0 -22
  194. package/examples/ex/DFViewerEx_string_index.tsx +0 -1012
  195. package/examples/ex/HistogramEx.tsx +0 -66
  196. package/examples/ex/StatusBarEx.tsx +0 -46
  197. package/examples/ex/WidgetDCFCellEx.tsx +0 -6
  198. package/examples/example.css +0 -20
  199. package/examples/index-iframe.hnottml +0 -24
  200. package/examples/index-react18.tsx +0 -8
  201. package/examples/index.html +0 -20
  202. package/examples/jsx-loader.ts +0 -16
  203. package/examples/tsconfig.json +0 -31
  204. package/index.d.ts +0 -2
  205. package/index.d.ts.map +0 -1
  206. package/index.js +0 -7
  207. package/index.js.map +0 -1
  208. package/jest.config.js +0 -24
  209. package/screen-animation.gif +0 -0
  210. package/src/buckaroo_js/baked_data/colorMap.ts +0 -523
  211. package/src/buckaroo_js/baked_data/staticData.ts +0 -503
  212. package/src/buckaroo_js/components/ColumnsEditor.tsx +0 -66
  213. package/src/buckaroo_js/components/CommandUtils.ts +0 -40
  214. package/src/buckaroo_js/components/DCFCell.tsx +0 -175
  215. package/src/buckaroo_js/components/DFViewerParts/DFViewer.tsx +0 -215
  216. package/src/buckaroo_js/components/DFViewerParts/DFWhole.ts +0 -190
  217. package/src/buckaroo_js/components/DFViewerParts/Displayer.ts +0 -215
  218. package/src/buckaroo_js/components/DFViewerParts/HistogramCell.tsx +0 -251
  219. package/src/buckaroo_js/components/DFViewerParts/SeriesSummaryTooltip.tsx +0 -20
  220. package/src/buckaroo_js/components/DFViewerParts/gridUtils.ts +0 -290
  221. package/src/buckaroo_js/components/DependentTabs.tsx +0 -134
  222. package/src/buckaroo_js/components/OperationDetail.tsx +0 -203
  223. package/src/buckaroo_js/components/OperationUtils.ts +0 -33
  224. package/src/buckaroo_js/components/Operations.tsx +0 -243
  225. package/src/buckaroo_js/components/StatusBar.tsx +0 -190
  226. package/src/buckaroo_js/components/WidgetTypes.tsx +0 -42
  227. package/src/buckaroo_js/components/bakedOperationDefaults.ts +0 -14
  228. package/src/buckaroo_js/components/utils.ts +0 -60
  229. package/src/buckaroo_js/extension.ts +0 -15
  230. package/src/buckaroo_js/index.ts +0 -34
  231. package/src/buckaroo_js/style/dcf-npm.css +0 -244
  232. package/src/buckaroo_js/style/icons/arrow-down-short-dark.svg +0 -4
  233. package/src/buckaroo_js/style/icons/arrow-down-short.svg +0 -4
  234. package/src/buckaroo_js/style/icons/arrow-up-short-dark.svg +0 -4
  235. package/src/buckaroo_js/style/icons/arrow-up-short.svg +0 -4
  236. package/src/buckaroo_js/style/icons/filter-dark.svg +0 -3
  237. package/src/buckaroo_js/style/icons/filter.svg +0 -3
  238. package/src/buckaroo_js/vendor/RechartExtra.ts +0 -60
  239. package/src/buckaroo_js/vendor/RechartTooltip.tsx +0 -356
  240. package/src/index.tsx +0 -3
  241. package/tsconfig.json +0 -41
  242. package/webpack.config.ts +0 -98
@@ -1,520 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BLUE_TO_YELLOW = exports.DIVERGING_RED_WHITE_BLUE = void 0;
4
- exports.DIVERGING_RED_WHITE_BLUE = [
5
- '#e65036',
6
- '#e65138',
7
- '#e75339',
8
- '#e7553a',
9
- '#e8563c',
10
- '#e8583d',
11
- '#e9593f',
12
- '#e95b40',
13
- '#e95c41',
14
- '#ea5e43',
15
- '#ea5f44',
16
- '#eb6046',
17
- '#eb6247',
18
- '#ec6349',
19
- '#ec654a',
20
- '#ec664b',
21
- '#ed684d',
22
- '#ed694e',
23
- '#ee6a50',
24
- '#ee6c51',
25
- '#ee6d52',
26
- '#ef6f54',
27
- '#ef7055',
28
- '#ef7157',
29
- '#f07358',
30
- '#f0745a',
31
- '#f1765b',
32
- '#f1775d',
33
- '#f1785e',
34
- '#f27a5f',
35
- '#f27b61',
36
- '#f27c62',
37
- '#f37e64',
38
- '#f37f65',
39
- '#f38067',
40
- '#f48268',
41
- '#f4836a',
42
- '#f4846b',
43
- '#f5866c',
44
- '#f5876e',
45
- '#f5886f',
46
- '#f58a71',
47
- '#f68b72',
48
- '#f68c74',
49
- '#f68d75',
50
- '#f78f77',
51
- '#f79078',
52
- '#f7917a',
53
- '#f7937b',
54
- '#f8947d',
55
- '#f8957e',
56
- '#f89780',
57
- '#f89881',
58
- '#f99983',
59
- '#f99a84',
60
- '#f99c86',
61
- '#f99d87',
62
- '#f99e89',
63
- '#faa08a',
64
- '#faa18c',
65
- '#faa28d',
66
- '#faa38f',
67
- '#faa590',
68
- '#fba692',
69
- '#fba793',
70
- '#fba995',
71
- '#fbaa96',
72
- '#fbab98',
73
- '#fbac99',
74
- '#fcae9b',
75
- '#fcaf9c',
76
- '#fcb09e',
77
- '#fcb19f',
78
- '#fcb3a1',
79
- '#fcb4a2',
80
- '#fcb5a4',
81
- '#fcb7a5',
82
- '#fdb8a7',
83
- '#fdb9a8',
84
- '#fdbaaa',
85
- '#fdbcac',
86
- '#fdbdad',
87
- '#fdbeaf',
88
- '#fdbfb0',
89
- '#fdc1b2',
90
- '#fdc2b3',
91
- '#fdc3b5',
92
- '#fdc4b6',
93
- '#fdc6b8',
94
- '#fdc7ba',
95
- '#fdc8bb',
96
- '#fdcabd',
97
- '#fdcbbe',
98
- '#fdccc0',
99
- '#fdcdc1',
100
- '#fdcfc3',
101
- '#fdd0c5',
102
- '#fdd1c6',
103
- '#fdd2c8',
104
- '#fdd4c9',
105
- '#fdd5cb',
106
- '#fdd6cc',
107
- '#fdd7ce',
108
- '#fdd9d0',
109
- '#fddad1',
110
- '#fddbd3',
111
- '#fddcd4',
112
- '#fdded6',
113
- '#fcdfd8',
114
- '#fce0d9',
115
- '#fce1db',
116
- '#fce3dc',
117
- '#fce4de',
118
- '#fce5e0',
119
- '#fce7e1',
120
- '#fce8e3',
121
- '#fbe9e5',
122
- '#fbeae6',
123
- '#fbece8',
124
- '#fbede9',
125
- '#fbeeeb',
126
- '#faefed',
127
- '#faf1ee',
128
- '#faf2f0',
129
- '#faf3f2',
130
- '#f9f4f3',
131
- '#f9f5f5',
132
- '#f8f6f6',
133
- '#f7f6f7',
134
- '#f6f6f8',
135
- '#f5f5f9',
136
- '#f4f4f9',
137
- '#f3f3f9',
138
- '#f1f2f9',
139
- '#f0f1f9',
140
- '#eff0f9',
141
- '#eeeffa',
142
- '#edeefa',
143
- '#ecedfa',
144
- '#eaecfa',
145
- '#e9ebfa',
146
- '#e8eafa',
147
- '#e7e9fa',
148
- '#e6e8fa',
149
- '#e5e7fa',
150
- '#e3e6fa',
151
- '#e2e5fa',
152
- '#e1e4fa',
153
- '#e0e3fa',
154
- '#dfe2fb',
155
- '#dde1fb',
156
- '#dce0fb',
157
- '#dbdffb',
158
- '#dadefb',
159
- '#d9ddfb',
160
- '#d7dcfb',
161
- '#d6dbfb',
162
- '#d5dafb',
163
- '#d4d9fb',
164
- '#d3d8fb',
165
- '#d1d7fb',
166
- '#d0d6fb',
167
- '#cfd5fb',
168
- '#ced4fb',
169
- '#cdd3fc',
170
- '#cbd2fc',
171
- '#cad1fc',
172
- '#c9d0fc',
173
- '#c8cffc',
174
- '#c6cefc',
175
- '#c5cdfc',
176
- '#c4ccfc',
177
- '#c3cbfc',
178
- '#c1cafc',
179
- '#c0c9fc',
180
- '#bfc8fc',
181
- '#bdc7fc',
182
- '#bcc7fc',
183
- '#bbc6fc',
184
- '#bac5fc',
185
- '#b8c4fc',
186
- '#b7c3fc',
187
- '#b6c2fc',
188
- '#b4c1fd',
189
- '#b3c0fd',
190
- '#b2bffd',
191
- '#b0befd',
192
- '#afbdfd',
193
- '#aebcfd',
194
- '#acbbfd',
195
- '#abbafd',
196
- '#aab9fd',
197
- '#a8b8fd',
198
- '#a7b7fd',
199
- '#a5b6fd',
200
- '#a4b5fd',
201
- '#a3b4fd',
202
- '#a1b3fd',
203
- '#a0b2fd',
204
- '#9eb2fd',
205
- '#9db1fd',
206
- '#9bb0fd',
207
- '#9aaffd',
208
- '#99aefd',
209
- '#97adfd',
210
- '#96acfd',
211
- '#94abfd',
212
- '#93aafd',
213
- '#91a9fd',
214
- '#90a8fd',
215
- '#8ea7fd',
216
- '#8ca6fd',
217
- '#8ba5fe',
218
- '#89a4fe',
219
- '#88a4fe',
220
- '#86a3fe',
221
- '#84a2fe',
222
- '#83a1fe',
223
- '#81a0fe',
224
- '#809ffe',
225
- '#7e9efe',
226
- '#7c9dfe',
227
- '#7a9cfe',
228
- '#799bfe',
229
- '#779afe',
230
- '#759afe',
231
- '#7399fe',
232
- '#7198fe',
233
- '#7097fe',
234
- '#6e96fe',
235
- '#6c95fe',
236
- '#6a94fe',
237
- '#6893fe',
238
- '#6692fe',
239
- '#6491fe',
240
- '#6291fe',
241
- '#5f90fe',
242
- '#5d8ffe',
243
- '#5b8efe',
244
- '#598dfe',
245
- '#568cfe',
246
- '#548bfe',
247
- '#518afe',
248
- '#4f8afe',
249
- '#4c89fe',
250
- '#4988fe',
251
- '#4787fe',
252
- '#4486fe',
253
- '#4085fe',
254
- '#3d84fe',
255
- '#3a83fe',
256
- '#3683fe',
257
- '#3282fe',
258
- '#2e81fe',
259
- '#2980fe',
260
- '#247ffe'
261
- ];
262
- exports.BLUE_TO_YELLOW = [
263
- '#0488fc',
264
- '#1089fb',
265
- '#1789fb',
266
- '#1d89fa',
267
- '#228afa',
268
- '#268af9',
269
- '#2a8af9',
270
- '#2e8af8',
271
- '#318bf7',
272
- '#348bf7',
273
- '#378bf6',
274
- '#3a8cf6',
275
- '#3c8cf5',
276
- '#3f8cf5',
277
- '#418df4',
278
- '#438df4',
279
- '#458df3',
280
- '#488df2',
281
- '#4a8ef2',
282
- '#4c8ef1',
283
- '#4d8ef1',
284
- '#4f8ff0',
285
- '#518ff0',
286
- '#538fef',
287
- '#5490ee',
288
- '#5690ee',
289
- '#5890ed',
290
- '#5991ed',
291
- '#5b91ec',
292
- '#5c91ec',
293
- '#5e92eb',
294
- '#5f92ea',
295
- '#6192ea',
296
- '#6292e9',
297
- '#6393e9',
298
- '#6593e8',
299
- '#6693e8',
300
- '#6794e7',
301
- '#6994e6',
302
- '#6a94e6',
303
- '#6b95e5',
304
- '#6c95e5',
305
- '#6e95e4',
306
- '#6f96e4',
307
- '#7096e3',
308
- '#7196e3',
309
- '#7297e2',
310
- '#7397e1',
311
- '#7497e1',
312
- '#7698e0',
313
- '#7798e0',
314
- '#7898df',
315
- '#7999df',
316
- '#7a99de',
317
- '#7b99dd',
318
- '#7c9add',
319
- '#7d9adc',
320
- '#7e9adc',
321
- '#7f9bdb',
322
- '#809bdb',
323
- '#819bda',
324
- '#829cd9',
325
- '#839cd9',
326
- '#849cd8',
327
- '#849dd8',
328
- '#859dd7',
329
- '#869dd7',
330
- '#879ed6',
331
- '#889ed5',
332
- '#899ed5',
333
- '#8a9fd4',
334
- '#8b9fd4',
335
- '#8c9fd3',
336
- '#8ca0d3',
337
- '#8da0d2',
338
- '#8ea0d1',
339
- '#8fa1d1',
340
- '#90a1d0',
341
- '#91a1d0',
342
- '#91a2cf',
343
- '#92a2ce',
344
- '#93a2ce',
345
- '#94a3cd',
346
- '#95a3cd',
347
- '#95a3cc',
348
- '#96a4cc',
349
- '#97a4cb',
350
- '#98a4ca',
351
- '#98a5ca',
352
- '#99a5c9',
353
- '#9aa5c9',
354
- '#9ba6c8',
355
- '#9ba6c8',
356
- '#9ca6c7',
357
- '#9da7c6',
358
- '#9ea7c6',
359
- '#9ea7c5',
360
- '#9fa8c5',
361
- '#a0a8c4',
362
- '#a0a9c3',
363
- '#a1a9c3',
364
- '#a2a9c2',
365
- '#a2aac2',
366
- '#a3aac1',
367
- '#a4aac1',
368
- '#a4abc0',
369
- '#a5abbf',
370
- '#a6abbf',
371
- '#a6acbe',
372
- '#a7acbe',
373
- '#a8acbd',
374
- '#a8adbc',
375
- '#a9adbc',
376
- '#aaadbb',
377
- '#aaaebb',
378
- '#abaeba',
379
- '#acafb9',
380
- '#acafb9',
381
- '#adafb8',
382
- '#adb0b8',
383
- '#aeb0b7',
384
- '#afb0b7',
385
- '#afb1b6',
386
- '#b0b1b5',
387
- '#b1b1b5',
388
- '#b1b2b4',
389
- '#b2b2b4',
390
- '#b2b2b3',
391
- '#b3b3b2',
392
- '#b4b3b2',
393
- '#b4b3b1',
394
- '#b5b4b1',
395
- '#b6b4b0',
396
- '#b7b4af',
397
- '#b7b5af',
398
- '#b8b5ae',
399
- '#b9b5ad',
400
- '#bab6ad',
401
- '#bab6ac',
402
- '#bbb6ac',
403
- '#bcb7ab',
404
- '#bcb7aa',
405
- '#bdb7aa',
406
- '#beb8a9',
407
- '#beb8a8',
408
- '#bfb8a8',
409
- '#c0b9a7',
410
- '#c0b9a7',
411
- '#c1b9a6',
412
- '#c2baa5',
413
- '#c2baa5',
414
- '#c3baa4',
415
- '#c4bba3',
416
- '#c4bba3',
417
- '#c5bba2',
418
- '#c6bca2',
419
- '#c6bca1',
420
- '#c7bca0',
421
- '#c8bca0',
422
- '#c8bd9f',
423
- '#c9bd9e',
424
- '#cabd9e',
425
- '#cabe9d',
426
- '#cbbe9c',
427
- '#ccbe9c',
428
- '#ccbf9b',
429
- '#cdbf9b',
430
- '#cdbf9a',
431
- '#cec099',
432
- '#cfc099',
433
- '#cfc098',
434
- '#d0c197',
435
- '#d1c197',
436
- '#d1c196',
437
- '#d2c295',
438
- '#d2c295',
439
- '#d3c294',
440
- '#d4c393',
441
- '#d4c393',
442
- '#d5c392',
443
- '#d5c491',
444
- '#d6c491',
445
- '#d7c490',
446
- '#d7c58f',
447
- '#d8c58f',
448
- '#d8c58e',
449
- '#d9c68d',
450
- '#dac68d',
451
- '#dac68c',
452
- '#dbc78b',
453
- '#dbc78b',
454
- '#dcc78a',
455
- '#dcc889',
456
- '#ddc889',
457
- '#dec888',
458
- '#dec987',
459
- '#dfc987',
460
- '#dfc986',
461
- '#e0ca85',
462
- '#e0ca85',
463
- '#e1ca84',
464
- '#e2cb83',
465
- '#e2cb83',
466
- '#e3cc82',
467
- '#e3cc81',
468
- '#e4cc80',
469
- '#e4cd80',
470
- '#e5cd7f',
471
- '#e6cd7e',
472
- '#e6ce7e',
473
- '#e7ce7d',
474
- '#e7ce7c',
475
- '#e8cf7b',
476
- '#e8cf7b',
477
- '#e9cf7a',
478
- '#e9d079',
479
- '#ead078',
480
- '#ead078',
481
- '#ebd177',
482
- '#ecd176',
483
- '#ecd176',
484
- '#edd275',
485
- '#edd274',
486
- '#eed273',
487
- '#eed373',
488
- '#efd372',
489
- '#efd371',
490
- '#f0d470',
491
- '#f0d46f',
492
- '#f1d46f',
493
- '#f1d56e',
494
- '#f2d56d',
495
- '#f2d56c',
496
- '#f3d66c',
497
- '#f3d66b',
498
- '#f4d66a',
499
- '#f5d769',
500
- '#f5d768',
501
- '#f6d868',
502
- '#f6d867',
503
- '#f7d866',
504
- '#f7d965',
505
- '#f8d964',
506
- '#f8d963',
507
- '#f9da63',
508
- '#f9da62',
509
- '#fada61',
510
- '#fadb60',
511
- '#fbdb5f',
512
- '#fbdb5e',
513
- '#fcdc5d',
514
- '#fcdc5d',
515
- '#fddc5c',
516
- '#fddd5b',
517
- '#fedd5a',
518
- '#fedd59'
519
- ];
520
- //# sourceMappingURL=colorMap.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"colorMap.js","sourceRoot":"","sources":["../../src/buckaroo_js/baked_data/colorMap.ts"],"names":[],"mappings":";;;AAKa,QAAA,wBAAwB,GAAG;IACpC,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;CACZ,CAAC;AAGW,QAAA,cAAc,GAAG;IAC1B,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;CACZ,CAAC"}
@@ -1,124 +0,0 @@
1
- import { OperationDefaultArgs, Operation } from '../components/OperationUtils';
2
- import { CommandConfigT } from '../components/CommandUtils';
3
- import { DFData, DFViewerConfig, DFWhole } from '../components/DFViewerParts/DFWhole';
4
- export declare const bakedOperationDefaults: OperationDefaultArgs;
5
- export declare const bakedCommandConfig: CommandConfigT;
6
- export declare const bakedOperations: Operation[];
7
- export declare const histograms: {
8
- num_histo: {
9
- name: string;
10
- population: number;
11
- }[];
12
- bool_histo: ({
13
- name: string;
14
- false: number;
15
- true?: undefined;
16
- NA?: undefined;
17
- } | {
18
- name: string;
19
- true: number;
20
- false?: undefined;
21
- NA?: undefined;
22
- } | {
23
- name: string;
24
- NA: number;
25
- false?: undefined;
26
- true?: undefined;
27
- })[];
28
- NA_Only: {
29
- name: string;
30
- NA: number;
31
- }[];
32
- simple_catgeorical: {
33
- name: number;
34
- cat_pop: number;
35
- }[];
36
- categorical_histo: ({
37
- name: string;
38
- cat_pop: number;
39
- unique?: undefined;
40
- NA?: undefined;
41
- } | {
42
- name: string;
43
- unique: number;
44
- cat_pop?: undefined;
45
- NA?: undefined;
46
- } | {
47
- name: string;
48
- NA: number;
49
- cat_pop?: undefined;
50
- unique?: undefined;
51
- })[];
52
- categorical_histo_lt: ({
53
- name: string;
54
- cat_pop: number;
55
- NA?: undefined;
56
- unique?: undefined;
57
- longtail?: undefined;
58
- } | {
59
- name: string;
60
- NA: number;
61
- cat_pop?: undefined;
62
- unique?: undefined;
63
- longtail?: undefined;
64
- } | {
65
- name: string;
66
- unique: number;
67
- longtail: number;
68
- cat_pop?: undefined;
69
- NA?: undefined;
70
- })[];
71
- all_unique: {
72
- name: string;
73
- unique: number;
74
- }[];
75
- unique_na: ({
76
- name: string;
77
- unique: number;
78
- NA?: undefined;
79
- } | {
80
- name: string;
81
- NA: number;
82
- unique?: undefined;
83
- })[];
84
- unique_continuous: ({
85
- name: string;
86
- population: number;
87
- unique?: undefined;
88
- } | {
89
- name: string;
90
- unique: number;
91
- population?: undefined;
92
- })[];
93
- unique_continuous_scaled: ({
94
- name: string;
95
- population: number;
96
- unique?: undefined;
97
- } | {
98
- name: string;
99
- unique: number;
100
- population?: undefined;
101
- })[];
102
- unique_continuous_scaled_50: ({
103
- name: string;
104
- population: number;
105
- unique?: undefined;
106
- } | {
107
- name: string;
108
- unique: number;
109
- population?: undefined;
110
- })[];
111
- start_station_categorical: {
112
- name: string;
113
- cat_pop: number;
114
- }[];
115
- };
116
- export declare const smileyPNGString = "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAApgAAAKYB3X3/OAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAANCSURBVEiJtZZPbBtFFMZ/M7ubXdtdb1xSFyeilBapySVU8h8OoFaooFSqiihIVIpQBKci6KEg9Q6H9kovIHoCIVQJJCKE1ENFjnAgcaSGC6rEnxBwA04Tx43t2FnvDAfjkNibxgHxnWb2e/u992bee7tCa00YFsffekFY+nUzFtjW0LrvjRXrCDIAaPLlW0nHL0SsZtVoaF98mLrx3pdhOqLtYPHChahZcYYO7KvPFxvRl5XPp1sN3adWiD1ZAqD6XYK1b/dvE5IWryTt2udLFedwc1+9kLp+vbbpoDh+6TklxBeAi9TL0taeWpdmZzQDry0AcO+jQ12RyohqqoYoo8RDwJrU+qXkjWtfi8Xxt58BdQuwQs9qC/afLwCw8tnQbqYAPsgxE1S6F3EAIXux2oQFKm0ihMsOF71dHYx+f3NND68ghCu1YIoePPQN1pGRABkJ6Bus96CutRZMydTl+TvuiRW1m3n0eDl0vRPcEysqdXn+jsQPsrHMquGeXEaY4Yk4wxWcY5V/9scqOMOVUFthatyTy8QyqwZ+kDURKoMWxNKr2EeqVKcTNOajqKoBgOE28U4tdQl5p5bwCw7BWquaZSzAPlwjlithJtp3pTImSqQRrb2Z8PHGigD4RZuNX6JYj6wj7O4TFLbCO/Mn/m8R+h6rYSUb3ekokRY6f/YukArN979jcW+V/S8g0eT/N3VN3kTqWbQ428m9/8k0P/1aIhF36PccEl6EhOcAUCrXKZXXWS3XKd2vc/TRBG9O5ELC17MmWubD2nKhUKZa26Ba2+D3P+4/MNCFwg59oWVeYhkzgN/JDR8deKBoD7Y+ljEjGZ0sosXVTvbc6RHirr2reNy1OXd6pJsQ+gqjk8VWFYmHrwBzW/n+uMPFiRwHB2I7ih8ciHFxIkd/3Omk5tCDV1t+2nNu5sxxpDFNx+huNhVT3/zMDz8usXC3ddaHBj1GHj/As08fwTS7Kt1HBTmyN29vdwAw+/wbwLVOJ3uAD1wi/dUH7Qei66PfyuRj4Ik9is+hglfbkbfR3cnZm7chlUWLdwmprtCohX4HUtlOcQjLYCu+fzGJH2QRKvP3UNz8bWk1qMxjGTOMThZ3kvgLI5AzFfo379UAAAAASUVORK5CYII=";
117
- export declare const foo: DFWhole;
118
- export declare const stringIndexDf: DFWhole;
119
- export declare const tableDf: DFWhole;
120
- export declare const dfviewer_config_no_pinned: DFViewerConfig;
121
- export declare const summaryDfForTableDf: DFData;
122
- export declare const realSummaryTableData: DFData;
123
- export declare const realSummaryConfig: DFViewerConfig;
124
- //# sourceMappingURL=staticData.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"staticData.d.ts","sourceRoot":"","sources":["../../src/buckaroo_js/baked_data/staticData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,oBAAoB,EAAE,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAE7E,OAAO,EAAQ,cAAc,EAAgB,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAC,MAAM,qCAAqC,CAAC;AAEpF,eAAO,MAAM,sBAAsB,EAAE,oBAMpC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,cAGhC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,SAAS,EAItC,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuGtB,CAAC;AAEF,eAAO,MAAM,eAAe,6wCACkvC,CAAC;AAG/wC,eAAO,MAAM,GAAG,EAAE,OAgGjB,CAAC;AACF,eAAO,MAAM,aAAa,SAAM,CAAC;AAEjC,eAAO,MAAM,OAAO,EAAE,OAgJrB,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,cASvC,CAAC;AAGF,eAAO,MAAM,mBAAmB,EAAE,MAqCjC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAQlC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,cA+D/B,CAAC"}