@perspective-dev/viewer 4.3.0 → 4.4.0

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 (227) hide show
  1. package/dist/cdn/perspective-viewer.js +2 -2
  2. package/dist/cdn/perspective-viewer.js.map +4 -4
  3. package/dist/css/botanical.css +1 -1
  4. package/dist/css/dracula.css +1 -1
  5. package/dist/css/gruvbox-dark.css +1 -1
  6. package/dist/css/gruvbox.css +1 -1
  7. package/dist/css/icons.css +1 -1
  8. package/dist/css/intl/de.css +1 -1
  9. package/dist/css/intl/es.css +1 -1
  10. package/dist/css/intl/fr.css +1 -1
  11. package/dist/css/intl/ja.css +1 -1
  12. package/dist/css/intl/pt.css +1 -1
  13. package/dist/css/intl/zh.css +1 -1
  14. package/dist/css/intl.css +1 -1
  15. package/dist/css/monokai.css +1 -1
  16. package/dist/css/pro-dark.css +1 -1
  17. package/dist/css/pro.css +1 -1
  18. package/dist/css/solarized-dark.css +1 -1
  19. package/dist/css/solarized.css +1 -1
  20. package/dist/css/themes.css +1 -1
  21. package/dist/css/vaporwave.css +1 -1
  22. package/dist/esm/perspective-viewer.inline.js +2 -2
  23. package/dist/esm/perspective-viewer.inline.js.map +4 -4
  24. package/dist/esm/perspective-viewer.js +2 -2
  25. package/dist/esm/perspective-viewer.js.map +4 -4
  26. package/dist/wasm/perspective-viewer.d.ts +57 -53
  27. package/dist/wasm/perspective-viewer.js +190 -165
  28. package/dist/wasm/perspective-viewer.wasm +0 -0
  29. package/dist/wasm/perspective-viewer.wasm.d.ts +17 -18
  30. package/package.json +7 -5
  31. package/src/{less/aggregate-selector.less → css/aggregate-selector.css} +23 -20
  32. package/src/css/column-dropdown.css +109 -0
  33. package/src/{less/column-selector.less → css/column-selector.css} +160 -158
  34. package/src/{less/column-settings-panel.less → css/column-settings-panel.css} +69 -59
  35. package/src/{less/column-style.less → css/column-style.css} +52 -66
  36. package/src/{less/column-symbol-attributes.less → css/column-symbol-attributes.css} +15 -14
  37. package/src/{less/config-selector.less → css/config-selector.css} +151 -135
  38. package/src/{less/containers/dropdown-menu.less → css/containers/dropdown-menu.css} +20 -19
  39. package/src/{less/containers/pairs-list.less → css/containers/pairs-list.css} +13 -12
  40. package/src/{themes/variables.less → css/containers/scroll-panel.css} +25 -22
  41. package/src/{less/containers/split-panel.less → css/containers/split-panel.css} +15 -14
  42. package/src/{less/containers/tabs.less → css/containers/tabs.css} +17 -19
  43. package/src/css/dom/checkbox.css +102 -0
  44. package/src/css/dom/scrollbar.css +35 -0
  45. package/src/{less/dom/select.less → css/dom/select.css} +17 -18
  46. package/src/{less/empty-column.less → css/empty-column.css} +19 -18
  47. package/src/{less/expression-editor.less → css/expression-editor.css} +19 -18
  48. package/src/{less/filter-dropdown.less → css/filter-dropdown.css} +12 -11
  49. package/src/{less/filter-item.less → css/filter-item.css} +16 -15
  50. package/src/{less/form/code-editor.less → css/form/code-editor.css} +26 -30
  51. package/src/{less/form/debug.less → css/form/debug.css} +19 -18
  52. package/src/{less/function-dropdown.less → css/function-dropdown.css} +12 -11
  53. package/src/css/plugin-selector.css +261 -0
  54. package/src/{less/render-warning.less → css/render-warning.css} +18 -17
  55. package/src/{less/status-bar.less → css/status-bar.css} +156 -144
  56. package/src/css/type-icon.css +116 -0
  57. package/src/{less/viewer.less → css/viewer.css} +112 -146
  58. package/src/rust/components/column_dropdown.rs +229 -119
  59. package/src/rust/components/column_selector/active_column.rs +81 -62
  60. package/src/rust/components/column_selector/add_expression_button.rs +1 -0
  61. package/src/rust/components/column_selector/aggregate_selector.rs +25 -15
  62. package/src/rust/components/column_selector/config_selector.rs +315 -199
  63. package/src/rust/components/column_selector/empty_column.rs +2 -2
  64. package/src/rust/components/column_selector/expr_edit_button.rs +8 -2
  65. package/src/rust/components/column_selector/filter_column.rs +37 -26
  66. package/src/rust/components/column_selector/inactive_column.rs +41 -29
  67. package/src/rust/components/column_selector/invalid_column.rs +7 -18
  68. package/src/rust/components/column_selector/pivot_column.rs +11 -5
  69. package/src/rust/components/column_selector/sort_column.rs +23 -13
  70. package/src/rust/components/column_selector.rs +163 -84
  71. package/src/rust/components/column_settings_sidebar/style_tab/symbol/row_selector.rs +1 -1
  72. package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs.rs +3 -2
  73. package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs_item.rs +3 -2
  74. package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_selector.rs +2 -3
  75. package/src/rust/components/column_settings_sidebar/style_tab/symbol.rs +7 -1
  76. package/src/rust/components/column_settings_sidebar/style_tab.rs +153 -112
  77. package/src/rust/components/column_settings_sidebar.rs +91 -53
  78. package/src/rust/components/containers/dragdrop_list.rs +2 -1
  79. package/src/rust/components/containers/sidebar_close_button.rs +1 -1
  80. package/src/rust/components/containers/split_panel.rs +1 -0
  81. package/src/rust/components/containers/tab_list.rs +1 -1
  82. package/src/rust/components/copy_dropdown.rs +7 -28
  83. package/src/rust/components/datetime_column_style/custom.rs +2 -2
  84. package/src/rust/components/datetime_column_style/simple.rs +2 -2
  85. package/src/rust/components/datetime_column_style.rs +4 -2
  86. package/src/rust/components/editable_header.rs +7 -4
  87. package/src/rust/components/empty_row.rs +1 -1
  88. package/src/rust/components/export_dropdown.rs +4 -30
  89. package/src/rust/components/expression_editor.rs +19 -10
  90. package/src/rust/components/filter_dropdown.rs +246 -102
  91. package/src/rust/components/font_loader.rs +11 -28
  92. package/src/rust/components/form/code_editor.rs +17 -2
  93. package/src/rust/components/form/color_range_selector.rs +19 -6
  94. package/src/rust/components/form/debug.rs +30 -13
  95. package/src/rust/components/function_dropdown.rs +186 -113
  96. package/src/rust/components/main_panel.rs +71 -89
  97. package/src/rust/components/mod.rs +1 -1
  98. package/src/rust/components/modal.rs +7 -1
  99. package/src/rust/components/number_column_style.rs +22 -7
  100. package/src/rust/components/plugin_selector.rs +34 -102
  101. package/src/rust/components/portal.rs +274 -0
  102. package/src/rust/components/render_warning.rs +72 -123
  103. package/src/rust/components/settings_panel.rs +115 -11
  104. package/src/rust/components/status_bar.rs +222 -98
  105. package/src/rust/components/status_bar_counter.rs +8 -20
  106. package/src/rust/components/status_indicator.rs +64 -114
  107. package/src/rust/components/string_column_style.rs +2 -2
  108. package/src/rust/components/style/style_cache.rs +5 -1
  109. package/src/rust/components/viewer.rs +391 -39
  110. package/src/rust/custom_elements/copy_dropdown.rs +102 -21
  111. package/src/rust/custom_elements/export_dropdown.rs +102 -20
  112. package/src/rust/custom_elements/mod.rs +0 -7
  113. package/src/rust/custom_elements/modal.rs +7 -103
  114. package/src/rust/custom_elements/viewer.rs +99 -35
  115. package/src/rust/custom_events.rs +23 -2
  116. package/src/rust/dragdrop.rs +149 -10
  117. package/src/{less/containers/scroll-panel.less → rust/engines.rs} +15 -13
  118. package/src/rust/js/plugin.rs +1 -1
  119. package/src/rust/lib.rs +5 -4
  120. package/src/rust/presentation/props.rs +39 -0
  121. package/src/rust/presentation/sheets.rs +3 -3
  122. package/src/rust/presentation.rs +44 -8
  123. package/src/rust/renderer/limits.rs +32 -3
  124. package/src/{less/dom/scrollbar.less → rust/renderer/props.rs} +18 -19
  125. package/src/rust/renderer.rs +83 -9
  126. package/src/rust/session/column_defaults_update.rs +1 -1
  127. package/src/rust/session/metadata.rs +23 -2
  128. package/src/rust/session/props.rs +178 -0
  129. package/src/rust/session.rs +124 -117
  130. package/src/rust/tasks/column_locator.rs +133 -0
  131. package/src/rust/{model → tasks}/columns_iter_set.rs +14 -23
  132. package/src/rust/{model → tasks}/edit_expression.rs +34 -10
  133. package/src/rust/{model → tasks}/eject.rs +2 -2
  134. package/src/rust/{model → tasks}/get_viewer_config.rs +0 -11
  135. package/src/rust/{model → tasks}/intersection_observer.rs +19 -3
  136. package/src/{less/containers/radio-list.less → rust/tasks/is_invalid_drop.rs} +21 -14
  137. package/src/rust/tasks/mod.rs +52 -0
  138. package/src/rust/{model → tasks}/plugin_column_styles.rs +69 -46
  139. package/src/rust/{model → tasks}/resize_observer.rs +39 -6
  140. package/src/rust/{model → tasks}/send_plugin_config.rs +1 -1
  141. package/src/rust/tasks/structural.rs +53 -0
  142. package/src/rust/utils/mod.rs +4 -0
  143. package/src/rust/utils/modal_position.rs +110 -0
  144. package/src/rust/utils/ptr_eq_rc.rs +74 -0
  145. package/src/rust/utils/pubsub.rs +11 -1
  146. package/src/svg/bg-pattern.png +0 -0
  147. package/src/svg/close-icon.svg +1 -1
  148. package/src/svg/expression.svg +1 -1
  149. package/src/svg/mega-menu-icons-candlestick.svg +1 -1
  150. package/src/svg/mega-menu-icons-datagrid.svg +1 -2
  151. package/src/svg/mega-menu-icons-heatmap.svg +1 -1
  152. package/src/svg/mega-menu-icons-map-scatter.svg +1 -1
  153. package/src/svg/mega-menu-icons-ohlc.svg +1 -1
  154. package/src/svg/mega-menu-icons-sunburst.svg +1 -1
  155. package/src/svg/mega-menu-icons-treemap.svg +1 -1
  156. package/src/svg/mega-menu-icons-x-bar.svg +1 -1
  157. package/src/svg/mega-menu-icons-x-y-line.svg +1 -1
  158. package/src/svg/mega-menu-icons-x-y-scatter.svg +1 -1
  159. package/src/svg/mega-menu-icons-y-area.svg +1 -1
  160. package/src/svg/mega-menu-icons-y-bar.svg +1 -1
  161. package/src/svg/mega-menu-icons-y-line.svg +1 -1
  162. package/src/svg/mega-menu-icons-y-scatter.svg +1 -1
  163. package/src/svg/radio-hover.svg +1 -1
  164. package/src/svg/radio-off.svg +1 -1
  165. package/src/svg/radio-on.svg +1 -1
  166. package/src/themes/botanical.css +157 -0
  167. package/src/themes/defaults.css +139 -0
  168. package/src/themes/dracula.css +233 -0
  169. package/src/themes/gruvbox-dark.css +255 -0
  170. package/src/themes/gruvbox.css +134 -0
  171. package/src/themes/icons.css +124 -0
  172. package/src/themes/intl/de.css +102 -0
  173. package/src/themes/intl/es.css +102 -0
  174. package/src/themes/intl/fr.css +102 -0
  175. package/src/themes/intl/ja.css +102 -0
  176. package/src/themes/intl/pt.css +102 -0
  177. package/src/themes/intl/zh.css +102 -0
  178. package/src/themes/intl.css +102 -0
  179. package/src/themes/monokai.css +233 -0
  180. package/src/themes/pro-dark.css +158 -0
  181. package/src/themes/{themes.less → pro.css} +17 -21
  182. package/src/themes/solarized-dark.css +135 -0
  183. package/src/themes/solarized.css +95 -0
  184. package/src/themes/themes.css +22 -0
  185. package/src/themes/vaporwave.css +256 -0
  186. package/dist/css/variables.css +0 -0
  187. package/src/less/column-dropdown.less +0 -95
  188. package/src/less/dom/checkbox.less +0 -100
  189. package/src/less/plugin-selector.less +0 -183
  190. package/src/less/type-icon.less +0 -68
  191. package/src/rust/components/error_message.rs +0 -56
  192. package/src/rust/custom_elements/column_dropdown.rs +0 -123
  193. package/src/rust/custom_elements/filter_dropdown.rs +0 -179
  194. package/src/rust/custom_elements/function_dropdown.rs +0 -115
  195. package/src/rust/model/column_locator.rs +0 -82
  196. package/src/rust/model/is_invalid_drop.rs +0 -36
  197. package/src/rust/model/mod.rs +0 -100
  198. package/src/rust/model/reset_all.rs +0 -38
  199. package/src/rust/model/structural.rs +0 -244
  200. package/src/themes/botanical.less +0 -142
  201. package/src/themes/dracula.less +0 -101
  202. package/src/themes/gruvbox-dark.less +0 -116
  203. package/src/themes/gruvbox.less +0 -152
  204. package/src/themes/icons.less +0 -130
  205. package/src/themes/intl/de.less +0 -102
  206. package/src/themes/intl/es.less +0 -102
  207. package/src/themes/intl/fr.less +0 -102
  208. package/src/themes/intl/ja.less +0 -102
  209. package/src/themes/intl/pt.less +0 -102
  210. package/src/themes/intl/zh.less +0 -102
  211. package/src/themes/intl.less +0 -102
  212. package/src/themes/monokai.less +0 -107
  213. package/src/themes/pro-dark.less +0 -147
  214. package/src/themes/pro.less +0 -186
  215. package/src/themes/solarized-dark.less +0 -78
  216. package/src/themes/solarized.less +0 -102
  217. package/src/themes/vaporwave.less +0 -145
  218. /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline0.js +0 -0
  219. /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline1.js +0 -0
  220. /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline2.js +0 -0
  221. /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline3.js +0 -0
  222. /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline4.js +0 -0
  223. /package/src/rust/{model → tasks}/copy_export.rs +0 -0
  224. /package/src/rust/{model → tasks}/export_app.rs +0 -0
  225. /package/src/rust/{model → tasks}/export_method.rs +0 -0
  226. /package/src/rust/{model → tasks}/restore_and_render.rs +0 -0
  227. /package/src/rust/{model → tasks}/update_and_render.rs +0 -0
@@ -0,0 +1,22 @@
1
+ /* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
2
+ * ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
3
+ * ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
4
+ * ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
5
+ * ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
6
+ * ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
7
+ * ┃ Copyright (c) 2017, the Perspective Authors. ┃
8
+ * ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
9
+ * ┃ This file is part of the Perspective library, distributed under the terms ┃
10
+ * ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
+ * ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ */
12
+
13
+ @import "./pro.css";
14
+ @import "./pro-dark.css";
15
+ @import "./monokai.css";
16
+ @import "./solarized.css";
17
+ @import "./solarized-dark.css";
18
+ @import "./vaporwave.css";
19
+ @import "./gruvbox.css";
20
+ @import "./gruvbox-dark.css";
21
+ @import "./dracula.css";
22
+ @import "./botanical.css";
@@ -0,0 +1,256 @@
1
+ /* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
2
+ * ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
3
+ * ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
4
+ * ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
5
+ * ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
6
+ * ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
7
+ * ┃ Copyright (c) 2017, the Perspective Authors. ┃
8
+ * ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
9
+ * ┃ This file is part of the Perspective library, distributed under the terms ┃
10
+ * ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
+ * ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ */
12
+
13
+ @import "./defaults.css";
14
+
15
+ perspective-viewer,
16
+ perspective-viewer[theme="Vaporwave"] {
17
+ --psp-theme-name: "Vaporwave";
18
+ }
19
+
20
+ perspective-viewer[theme="Vaporwave"] {
21
+ /* perspective-viewer-pro-dark--colors (overrides) */
22
+ background-color: #242526;
23
+ color: white;
24
+ --psp--color: white;
25
+ --psp-active--color: #2770a9;
26
+ --psp-error--color: #ff9485;
27
+ --psp-inactive--color: #61656e;
28
+ --psp-inactive--border-color: #4c505b;
29
+ --psp--background-color: #242526;
30
+ --psp-active--background: rgba(39, 113, 170, 0.5);
31
+ --psp-expression--operator--color: #c5c9d0;
32
+ --psp-expression--function--color: #22a0ce;
33
+ --psp-expression--psp-error--color: rgb(255, 136, 136);
34
+ --psp-calendar--filter: invert(1);
35
+ --psp-warning--color: #242526;
36
+ --psp-warning--background: var(--psp--color);
37
+
38
+ --psp-icon--select-arrow--mask-image: var(
39
+ --psp-icon--select-arrow-light--mask-image
40
+ );
41
+
42
+ --psp-icon--select-arrow-hover--mask-image: var(
43
+ --psp-icon--select-arrow-dark--mask-image
44
+ );
45
+
46
+ --psp-code-editor--symbol--color: white;
47
+ --psp-code-editor--literal--color: #7dc3f0;
48
+ --psp-code-editor--operator--color: rgb(23, 166, 123);
49
+ --psp-code-editor--comment--color: rgb(204, 120, 48);
50
+ --psp-code-editor--column--color: #e18ee1;
51
+
52
+ /* perspective-viewer-pro-dark--datagrid */
53
+ --psp-datagrid--pos-cell--color: #7dc3f0;
54
+ --psp-datagrid--neg-cell--color: #ff9485;
55
+
56
+ /* perspective-viewer-pro-dark--d3fc (overrides) */
57
+ --psp-d3fc--legend--color: #c5c9d0;
58
+ --psp-d3fc--treemap--labels: white;
59
+ --psp-d3fc--treemap--hover-highlight: white;
60
+ --psp-d3fc--tooltip--color: white;
61
+ --psp-d3fc--axis-ticks--color: #c5c9d0;
62
+ --psp-d3fc--axis-lines--color: #61656e;
63
+ --psp-d3fc--gridline--color: #3b3f46;
64
+ --psp-d3fc--tooltip--background: rgba(42, 44, 47, 1);
65
+ --psp-d3fc--tooltip--border-color: #242526;
66
+ --psp-d3fc--legend--background: var(--psp--background-color);
67
+ --psp-d3fc--series--color: rgb(71, 120, 194);
68
+ --psp-d3fc--series-1--color: rgb(71, 120, 194);
69
+ --psp-d3fc--series-2--color: rgb(204, 120, 48);
70
+ --psp-d3fc--series-3--color: rgb(158, 84, 192);
71
+ --psp-d3fc--series-4--color: rgb(51, 150, 153);
72
+ --psp-d3fc--series-5--color: rgb(102, 114, 143);
73
+ --psp-d3fc--series-6--color: rgb(211, 103, 189);
74
+ --psp-d3fc--series-7--color: rgb(109, 124, 77);
75
+ --psp-d3fc--series-8--color: rgb(221, 99, 103);
76
+ --psp-d3fc--series-9--color: rgb(120, 104, 206);
77
+ --psp-d3fc--series-10--color: rgb(23, 166, 123);
78
+ --psp-d3fc--full-gradient--background: linear-gradient(
79
+ #dd6367 0%,
80
+ #242526 50%,
81
+ #3289c8 100%
82
+ );
83
+ --psp-d3fc--pos-gradient--background: linear-gradient(
84
+ #242526 0%,
85
+ #3289c8 100%
86
+ );
87
+ --psp-d3fc--neg-gradient--background: linear-gradient(
88
+ #dd6367 0%,
89
+ #242526 100%
90
+ );
91
+
92
+ /* perspective-viewer-pro-dark--openlayers (overrides) */
93
+ --psp-openlayers--tile-url: "http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";
94
+ --psp-openlayers--attribution--filter: invert(1) hue-rotate(180deg);
95
+ --psp-openlayers--element--background: #212c2f;
96
+ --psp-openlayers--category-1--color: rgb(71, 120, 194);
97
+ --psp-openlayers--category-2--color: rgb(204, 120, 48);
98
+ --psp-openlayers--category-3--color: rgb(158, 84, 192);
99
+ --psp-openlayers--category-4--color: rgb(51, 150, 153);
100
+ --psp-openlayers--category-5--color: rgb(102, 114, 143);
101
+ --psp-openlayers--category-6--color: rgb(211, 103, 189);
102
+ --psp-openlayers--category-7--color: rgb(109, 124, 77);
103
+ --psp-openlayers--category-8--color: rgb(221, 99, 103);
104
+ --psp-openlayers--category-9--color: rgb(120, 104, 206);
105
+ --psp-openlayers--category-10--color: rgb(23, 166, 123);
106
+ --psp-openlayers--gradient--background: linear-gradient(
107
+ #dd6367 0%,
108
+ #242526 50%,
109
+ #3289c8 100%
110
+ );
111
+
112
+ /* perspective-viewer-vaporwave--colors */
113
+ color: #49acff;
114
+ background-color: rgb(7, 8, 29) !important;
115
+ --psp--color: #49acff;
116
+ --psp-inactive--color: rgb(19, 33, 50) !important;
117
+ --psp-inactive--border-color: var(--psp-inactive--color);
118
+ --psp--background-color: rgb(7, 8, 29) !important;
119
+
120
+ /* perspective-viewer-vaporwave--animation */
121
+ --psp-status-icon--updating-keyframes-start--filter: opacity(1);
122
+ --psp-status-icon--updating-keyframes-end--filter: opacity(0);
123
+ --psp-status-icon--updating-keyframes-start--transform: scale(1);
124
+ --psp-status-icon--updating-keyframes-end--transform: scale(0.5);
125
+ --psp-status-icon--keyframes-start--transform: scale(1.25);
126
+ --psp-status-icon--keyframes-end--transform: scale(1);
127
+
128
+ /* perspective-viewer-vaporwave--datagrid */
129
+ --pp-color-1: #092132;
130
+ --pp-color-2: #42b6e6;
131
+ --psp-datagrid--pos-cell--color: #42b6e6 !important;
132
+ --psp-datagrid--hover--border-color: var(--pp-color-1) !important;
133
+
134
+ /* FIXME: broken in shadow DOM */
135
+ regular-table table tbody th:empty {
136
+ background: linear-gradient(
137
+ to right,
138
+ transparent 9px,
139
+ rgb(19, 33, 50) 10px,
140
+ transparent 11px
141
+ );
142
+ background-repeat: no-repeat;
143
+ background-position: 0px -10px;
144
+ }
145
+
146
+ /* perspective-viewer-vaporwave--d3fc */
147
+ --psp-d3fc--axis-ticks--color: #49acff;
148
+ --psp-d3fc--gridline--color: rgb(19, 33, 50);
149
+ --psp-d3fc--series--color: #01cdfe;
150
+ --psp-d3fc--series-1--color: #01cdfe;
151
+ --psp-d3fc--series-2--color: #ff71ce;
152
+ --psp-d3fc--series-3--color: #05ffa1;
153
+ --psp-d3fc--series-4--color: #b967ff;
154
+ --psp-d3fc--series-5--color: #fffb96;
155
+
156
+ --psp-d3fc--series-6--color: hsl(192, 99%, 25%);
157
+ --psp-d3fc--series-7--color: hsl(321, 100%, 36%);
158
+ --psp-d3fc--series-8--color: hsl(192, 99%, 25%);
159
+ --psp-d3fc--series-9--color: hsl(157, 100%, 25%);
160
+ --psp-d3fc--series-10--color: hsl(272, 100%, 35%);
161
+
162
+ --psp-d3fc--neg-gradient--background: linear-gradient(
163
+ #f3d431,
164
+ #efb92d,
165
+ #ed9c25,
166
+ #eb7e20,
167
+ #e75d1e,
168
+ #d14632,
169
+ #b03e38,
170
+ #8c3a36,
171
+ #643633,
172
+ #07081d
173
+ ) !important;
174
+
175
+ --psp-d3fc--pos-gradient--background: linear-gradient(
176
+ #07081d,
177
+ #2e4463,
178
+ #1e588a,
179
+ #086da7,
180
+ #0082b9,
181
+ #039ac7,
182
+ #12b1d4,
183
+ #2bc8e2,
184
+ #3ddff0,
185
+ #61f4fb
186
+ ) !important;
187
+
188
+ --psp-d3fc--full-gradient--background: linear-gradient(
189
+ #f3d431,
190
+ #efb92d,
191
+ #ed9c25,
192
+ #eb7e20,
193
+ #e75d1e,
194
+ #d14632,
195
+ #b03e38,
196
+ #8c3a36,
197
+ #643633,
198
+ #07081d,
199
+ #2e4463,
200
+ #1e588a,
201
+ #086da7,
202
+ #0082b9,
203
+ #039ac7,
204
+ #12b1d4,
205
+ #2bc8e2,
206
+ #3ddff0,
207
+ #61f4fb
208
+ ) !important;
209
+ }
210
+
211
+ perspective-copy-menu[theme="Vaporwave"],
212
+ perspective-export-menu[theme="Vaporwave"],
213
+ perspective-dropdown[theme="Vaporwave"],
214
+ perspective-date-column-style[theme="Vaporwave"],
215
+ perspective-datetime-column-style[theme="Vaporwave"],
216
+ perspective-number-column-style[theme="Vaporwave"],
217
+ perspective-string-column-style[theme="Vaporwave"] {
218
+ /* perspective-viewer-pro-dark--colors (overrides) */
219
+ background-color: #242526;
220
+ color: white;
221
+ --psp--color: white;
222
+ --psp-active--color: #2770a9;
223
+ --psp-error--color: #ff9485;
224
+ --psp-inactive--color: #61656e;
225
+ --psp-inactive--border-color: #4c505b;
226
+ --psp--background-color: #242526;
227
+ --psp-active--background: rgba(39, 113, 170, 0.5);
228
+ --psp-expression--operator--color: #c5c9d0;
229
+ --psp-expression--function--color: #22a0ce;
230
+ --psp-expression--psp-error--color: rgb(255, 136, 136);
231
+ --psp-calendar--filter: invert(1);
232
+ --psp-warning--color: #242526;
233
+ --psp-warning--background: var(--psp--color);
234
+ --psp-icon--select-arrow--mask-image: var(
235
+ --psp-icon--select-arrow-light--mask-image
236
+ );
237
+ --psp-icon--select-arrow-hover--mask-image: var(
238
+ --psp-icon--select-arrow-dark--mask-image
239
+ );
240
+ --psp-code-editor--symbol--color: white;
241
+ --psp-code-editor--literal--color: #7dc3f0;
242
+ --psp-code-editor--operator--color: rgb(23, 166, 123);
243
+ --psp-code-editor--comment--color: rgb(204, 120, 48);
244
+ --psp-code-editor--column--color: #e18ee1;
245
+
246
+ border: 1px solid #4c505b;
247
+
248
+ /* perspective-viewer-vaporwave--colors */
249
+ color: #49acff;
250
+ --psp--color: #49acff;
251
+ --psp-inactive--color: rgb(19, 33, 50) !important;
252
+ --psp-inactive--border-color: var(--psp-inactive--color);
253
+ --psp--background-color: rgb(7, 8, 29) !important;
254
+
255
+ background-color: #07081d;
256
+ }
File without changes
@@ -1,95 +0,0 @@
1
- // ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
2
- // ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
3
- // ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
4
- // ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
5
- // ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
6
- // ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
7
- // ┃ Copyright (c) 2017, the Perspective Authors. ┃
8
- // ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
9
- // ┃ This file is part of the Perspective library, distributed under the terms ┃
10
- // ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
-
13
- @import "dom/scrollbar.less";
14
-
15
- @mixin icon {
16
- background-repeat: no-repeat;
17
- background-color: var(--icon--color);
18
- content: "";
19
- display: inline-block;
20
- -webkit-mask-size: cover;
21
- mask-size: cover;
22
- }
23
-
24
- :host {
25
- box-sizing: border-box;
26
- position: fixed;
27
- z-index: 10000;
28
- outline: none;
29
- font-size: 0.75em;
30
- border: inherit;
31
- // box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
32
- user-select: none;
33
- background-color: var(--icon--color, #fff) !important;
34
- color: var(--plugin--background, #333) !important;
35
- // padding: 6px 8px;
36
- border: 1px solid var(--icon--color) !important;
37
- max-width: 300px;
38
- overflow: hidden;
39
- max-height: 600px;
40
- overflow: auto;
41
- @include scrollbar;
42
-
43
- display: flex;
44
- flex-direction: column;
45
-
46
- .selected {
47
- background-color: var(--plugin--background) !important;
48
- color: var(--icon--color) !important;
49
- }
50
-
51
- span {
52
- cursor: pointer;
53
- padding: 4px 5px;
54
- }
55
-
56
- .no-results {
57
- padding: 3px 24px 6px 11px;
58
- color: var(--error--color);
59
- font-size: 8px;
60
- }
61
-
62
- .no-results:before {
63
- content: var(--no-results--content, "Invalid Column");
64
- }
65
-
66
- #add-expression {
67
- &:before {
68
- @include icon;
69
- width: 14px;
70
- height: 12px;
71
- margin-right: 5px;
72
- -webkit-mask-image: var(--add-expression-icon--mask-image);
73
- mask-image: var(--add-expression-icon--mask-image);
74
- }
75
- }
76
- }
77
-
78
- :host(:hover) {
79
- .selected {
80
- background-color: var(--icon--color, #fff) !important;
81
- color: var(--plugin--background, #333) !important;
82
- }
83
-
84
- span:hover,
85
- span.selected:hover {
86
- background-color: var(--plugin--background) !important;
87
- color: var(--icon--color) !important;
88
- }
89
- }
90
-
91
- :host(.no-results) {
92
- overflow: hidden;
93
- background-color: transparent !important;
94
- border: none !important;
95
- }
@@ -1,100 +0,0 @@
1
- // ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
2
- // ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
3
- // ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
4
- // ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
5
- // ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
6
- // ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
7
- // ┃ Copyright (c) 2017, the Perspective Authors. ┃
8
- // ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
9
- // ┃ This file is part of the Perspective library, distributed under the terms ┃
10
- // ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
-
13
- @mixin icon {
14
- background-repeat: no-repeat;
15
- background-color: var(--icon--color);
16
- content: "";
17
- display: inline-block;
18
- -webkit-mask-size: cover;
19
- mask-size: cover;
20
- }
21
-
22
- :host {
23
- input[type="checkbox"].alternate {
24
- appearance: none;
25
- height: 14px;
26
- width: 14px;
27
- padding: 0px;
28
- cursor: pointer;
29
- outline: none;
30
- margin: 0 5px;
31
-
32
- &:before {
33
- @include icon;
34
- width: 14px;
35
- height: 14px;
36
- font-family: var(--button--font-family, inherit);
37
- background-color: var(--icon--color, #ccc);
38
- -webkit-mask-image: var(--inactive-column-selector--content, none);
39
- mask-image: var(--inactive-column-selector--content, none);
40
- }
41
-
42
- &:hover {
43
- border-radius: 2px;
44
- outline: 1px solid var(--icon--color);
45
- }
46
-
47
- &:checked:hover {
48
- background-color: var(--icon--color, #ccc);
49
- &:before {
50
- background-color: var(--plugin--background, #ccc);
51
- }
52
- }
53
-
54
- &:checked:before {
55
- -webkit-mask-image: var(--active-column-selector--content, none);
56
- mask-image: var(--active-column-selector--content, none);
57
- }
58
- }
59
-
60
- input[type="checkbox"] {
61
- float: left;
62
- appearance: none;
63
- height: 14px;
64
- width: 14px;
65
- padding: 0px;
66
- cursor: pointer;
67
- outline: none;
68
- margin: 0 5px 0 0;
69
-
70
- &:checked:before {
71
- -webkit-mask-image: var(--column-checkbox-on--mask-image);
72
- mask-image: var(--column-checkbox-on--mask-image);
73
- }
74
-
75
- &[disabled]:before {
76
- opacity: 0.2s;
77
- }
78
-
79
- &:before {
80
- @include icon;
81
- height: 13px;
82
- width: 13px;
83
- -webkit-mask-image: var(--column-checkbox-off--mask-image);
84
- mask-image: var(--column-checkbox-off--mask-image);
85
- }
86
-
87
- &:hover {
88
- background-color: transparent;
89
- }
90
-
91
- &:hover:before {
92
- -webkit-mask-image: var(--column-checkbox-hover--mask-image);
93
- mask-image: var(--column-checkbox-hover--mask-image);
94
- }
95
- }
96
-
97
- input[type="checkbox"]:not(:disabled) {
98
- cursor: pointer;
99
- }
100
- }
@@ -1,183 +0,0 @@
1
- // ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
2
- // ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
3
- // ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
4
- // ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
5
- // ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
6
- // ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
7
- // ┃ Copyright (c) 2017, the Perspective Authors. ┃
8
- // ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
9
- // ┃ This file is part of the Perspective library, distributed under the terms ┃
10
- // ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
-
13
- @import "dom/scrollbar.less";
14
-
15
- :host {
16
- #settings_panel {
17
- #plugin_selector_container.open ~ * {
18
- opacity: 0;
19
- }
20
-
21
- #plugin_selector_container {
22
- min-height: var(
23
- --plugin-selector--height,
24
- var(--status-bar--height, 48px)
25
- );
26
- display: flex;
27
- white-space: nowrap;
28
- flex-direction: column;
29
- flex: 0 0 auto;
30
-
31
- // Overflow the padding bounds of the container
32
- // TODO these bounds exist to protext the resizer and scrollbar (left &
33
- // right resp) but we really should find a way to remove it and delegate
34
- // to sub-containers.
35
- margin: 0 0px 0 -9px;
36
-
37
- #plugin_selector_border {
38
- height: 2px;
39
- min-height: 2px;
40
- width: 100%;
41
- background-color: var(--inactive--color, #6e6e6e);
42
- margin-top: 2px;
43
- }
44
-
45
- .plugin-selector-options {
46
- overflow-y: auto;
47
- @include scrollbar;
48
- }
49
-
50
- &.open {
51
- position: absolute;
52
- margin: 0;
53
- top: 0;
54
- left: 0;
55
- right: 0;
56
- bottom: 0;
57
-
58
- // This element is first in the container but visually "overlaps"
59
- // when expanded
60
- z-index: 3;
61
- color: var(--icon--color, #042121);
62
- // background: var(--plugin--background);
63
-
64
- .plugin-select-item {
65
- padding-left: 8px;
66
- }
67
- }
68
-
69
- .plugin-select-item-name {
70
- padding-left: 10px;
71
- font-size: 1.33333em;
72
- }
73
-
74
- .plugin-select-item-name:before {
75
- // This value is set in a `style` tag from Yew!
76
- content: var(--default-column-title);
77
- }
78
-
79
- .plugin-select-item {
80
- // width: 48px;
81
- padding-left: 9px;
82
- height: var(
83
- --plugin-selector--height,
84
- var(--status-bar--height, 48px)
85
- );
86
- min-height: var(
87
- --plugin-selector--height,
88
- var(--status-bar--height, 48px)
89
- );
90
- display: flex;
91
- align-items: center;
92
- border-bottom: 1px solid transparent;
93
- box-shadow: 0px 1px var(--inactive--color, #6e6e6e);
94
- cursor: pointer;
95
- }
96
-
97
- // Hadn't seen this technique before, makes sizing/positioning these
98
- // trivial. There's some indication this doesn't work on non-chrome
99
- // https://stackoverflow.com/questions/36259410/how-to-set-size-of-svg-image-in-before-pseudo-class
100
- // https://stackoverflow.com/questions/21509982/change-svg-fill-color-in-before-or-after-css
101
- .plugin-select-item:before {
102
- content: "";
103
- display: inline-block;
104
- height: 35px;
105
- width: 40px;
106
- -webkit-mask-size: cover;
107
- mask-size: cover;
108
- background-repeat: no-repeat;
109
- background-color: var(--icon--color);
110
- }
111
-
112
- .plugin-select-item:hover {
113
- background-color: var(--icon--color, #042121);
114
- color: var(--plugin--background, #fdfffd);
115
- }
116
-
117
- .plugin-select-item:hover:before {
118
- background-color: var(--plugin--background, #fdfffd);
119
- }
120
-
121
- .plugin-select-item[data-plugin="Candlestick"]:before {
122
- // mask-image: var(--plugin-selector-candlestick--content);
123
- -webkit-mask-image: var(--plugin-selector-candlestick--content);
124
- }
125
-
126
- .plugin-select-item[data-plugin="Heatmap"]:before {
127
- -webkit-mask-image: var(--plugin-selector-heatmap--content);
128
- }
129
-
130
- .plugin-select-item[data-plugin="Map Scatter"]:before {
131
- -webkit-mask-image: var(--plugin-selector-map-scatter--content);
132
- }
133
-
134
- .plugin-select-item[data-plugin="OHLC"]:before {
135
- -webkit-mask-image: var(--plugin-selector-ohlc--content);
136
- }
137
-
138
- .plugin-select-item[data-plugin="Sunburst"]:before {
139
- -webkit-mask-image: var(--plugin-selector-sunburst--content);
140
- }
141
-
142
- .plugin-select-item[data-plugin="Treemap"]:before {
143
- -webkit-mask-image: var(--plugin-selector-treemap--content);
144
- }
145
-
146
- .plugin-select-item[data-plugin="X Bar"]:before {
147
- -webkit-mask-image: var(--plugin-selector-x-bar--content);
148
- }
149
-
150
- .plugin-select-item[data-plugin="X/Y Line"]:before {
151
- -webkit-mask-image: var(--plugin-selector-x-y-line--content);
152
- }
153
-
154
- .plugin-select-item[data-plugin="X/Y Scatter"]:before {
155
- -webkit-mask-image: var(--plugin-selector-x-y-scatter--content);
156
- }
157
-
158
- .plugin-select-item[data-plugin="Y Area"]:before {
159
- -webkit-mask-image: var(--plugin-selector-y-area--content);
160
- }
161
-
162
- .plugin-select-item[data-plugin="Y Bar"]:before {
163
- -webkit-mask-image: var(--plugin-selector-y-bar--content);
164
- }
165
-
166
- .plugin-select-item[data-plugin="Y Line"]:before {
167
- -webkit-mask-image: var(--plugin-selector-y-line--content);
168
- }
169
-
170
- .plugin-select-item[data-plugin="Y Scatter"]:before {
171
- -webkit-mask-image: var(--plugin-selector-y-scatter--content);
172
- }
173
-
174
- .plugin-select-item[data-plugin="Datagrid"]:before {
175
- -webkit-mask-image: var(--plugin-selector-datagrid--content);
176
- }
177
- }
178
-
179
- #plugin_selector {
180
- flex-grow: 1;
181
- }
182
- }
183
- }