@perspective-dev/viewer 4.2.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 (240) 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 -0
  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/extensions.d.ts +32 -1
  23. package/dist/esm/perspective-viewer.d.ts +1 -0
  24. package/dist/esm/perspective-viewer.inline.js +2 -2
  25. package/dist/esm/perspective-viewer.inline.js.map +4 -4
  26. package/dist/esm/perspective-viewer.js +2 -2
  27. package/dist/esm/perspective-viewer.js.map +4 -4
  28. package/dist/esm/ts-rs/GroupRollupMode.d.ts +1 -0
  29. package/dist/esm/ts-rs/ViewerConfigUpdate.d.ts +2 -0
  30. package/dist/wasm/perspective-viewer.d.ts +57 -53
  31. package/dist/wasm/perspective-viewer.js +197 -164
  32. package/dist/wasm/perspective-viewer.wasm +0 -0
  33. package/dist/wasm/perspective-viewer.wasm.d.ts +17 -18
  34. package/package.json +9 -6
  35. package/src/{less/aggregate-selector.less → css/aggregate-selector.css} +23 -20
  36. package/src/css/column-dropdown.css +109 -0
  37. package/src/{less/column-selector.less → css/column-selector.css} +161 -159
  38. package/src/{less/column-settings-panel.less → css/column-settings-panel.css} +69 -59
  39. package/src/{less/column-style.less → css/column-style.css} +52 -66
  40. package/src/{less/column-symbol-attributes.less → css/column-symbol-attributes.css} +15 -14
  41. package/src/css/config-selector.css +441 -0
  42. package/src/{less/containers/dropdown-menu.less → css/containers/dropdown-menu.css} +20 -19
  43. package/src/{less/containers/pairs-list.less → css/containers/pairs-list.css} +13 -12
  44. package/src/{themes/variables.less → css/containers/scroll-panel.css} +25 -22
  45. package/src/{less/containers/split-panel.less → css/containers/split-panel.css} +15 -14
  46. package/src/{less/containers/tabs.less → css/containers/tabs.css} +17 -19
  47. package/src/css/dom/checkbox.css +102 -0
  48. package/src/css/dom/scrollbar.css +35 -0
  49. package/src/{less/dom/select.less → css/dom/select.css} +17 -18
  50. package/src/{less/empty-column.less → css/empty-column.css} +19 -18
  51. package/src/{less/expression-editor.less → css/expression-editor.css} +19 -18
  52. package/src/{less/filter-dropdown.less → css/filter-dropdown.css} +12 -11
  53. package/src/{less/filter-item.less → css/filter-item.css} +16 -15
  54. package/src/{less/form/code-editor.less → css/form/code-editor.css} +26 -30
  55. package/src/{less/form/debug.less → css/form/debug.css} +19 -18
  56. package/src/{less/function-dropdown.less → css/function-dropdown.css} +12 -11
  57. package/src/css/plugin-selector.css +261 -0
  58. package/src/{less/render-warning.less → css/render-warning.css} +18 -17
  59. package/src/{less/status-bar.less → css/status-bar.css} +156 -144
  60. package/src/css/type-icon.css +116 -0
  61. package/src/{less/viewer.less → css/viewer.css} +112 -146
  62. package/src/rust/components/column_dropdown.rs +229 -119
  63. package/src/rust/components/column_selector/active_column.rs +81 -62
  64. package/src/rust/components/column_selector/add_expression_button.rs +1 -0
  65. package/src/rust/components/column_selector/aggregate_selector.rs +25 -15
  66. package/src/rust/components/column_selector/config_selector.rs +374 -185
  67. package/src/rust/components/column_selector/empty_column.rs +2 -2
  68. package/src/rust/components/column_selector/expr_edit_button.rs +8 -2
  69. package/src/rust/components/column_selector/filter_column.rs +37 -26
  70. package/src/rust/components/column_selector/inactive_column.rs +41 -29
  71. package/src/rust/components/column_selector/invalid_column.rs +7 -18
  72. package/src/rust/components/column_selector/pivot_column.rs +21 -10
  73. package/src/rust/components/column_selector/sort_column.rs +23 -13
  74. package/src/rust/components/column_selector.rs +189 -100
  75. package/src/rust/components/column_settings_sidebar/style_tab/symbol/row_selector.rs +1 -1
  76. package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs.rs +3 -2
  77. package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs_item.rs +3 -2
  78. package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_selector.rs +2 -3
  79. package/src/rust/components/column_settings_sidebar/style_tab/symbol.rs +7 -1
  80. package/src/rust/components/column_settings_sidebar/style_tab.rs +153 -112
  81. package/src/rust/components/column_settings_sidebar.rs +91 -53
  82. package/src/rust/components/containers/dragdrop_list.rs +29 -7
  83. package/src/rust/components/containers/scroll_panel.rs +8 -1
  84. package/src/rust/components/containers/select.rs +3 -3
  85. package/src/rust/components/containers/sidebar_close_button.rs +1 -1
  86. package/src/rust/components/containers/split_panel.rs +3 -2
  87. package/src/rust/components/containers/tab_list.rs +1 -1
  88. package/src/rust/components/copy_dropdown.rs +7 -28
  89. package/src/rust/components/datetime_column_style/custom.rs +2 -2
  90. package/src/rust/components/datetime_column_style/simple.rs +2 -2
  91. package/src/rust/components/datetime_column_style.rs +4 -2
  92. package/src/rust/components/editable_header.rs +7 -4
  93. package/src/rust/components/empty_row.rs +1 -1
  94. package/src/rust/components/export_dropdown.rs +4 -30
  95. package/src/rust/components/expression_editor.rs +19 -10
  96. package/src/rust/components/filter_dropdown.rs +246 -102
  97. package/src/rust/components/font_loader.rs +11 -28
  98. package/src/rust/components/form/code_editor.rs +17 -2
  99. package/src/rust/components/form/color_range_selector.rs +19 -6
  100. package/src/rust/components/form/debug.rs +30 -13
  101. package/src/rust/components/function_dropdown.rs +186 -113
  102. package/src/rust/components/main_panel.rs +71 -89
  103. package/src/rust/components/mod.rs +1 -1
  104. package/src/rust/components/modal.rs +7 -1
  105. package/src/rust/components/number_column_style.rs +22 -7
  106. package/src/rust/components/plugin_selector.rs +34 -92
  107. package/src/rust/components/portal.rs +274 -0
  108. package/src/rust/components/render_warning.rs +72 -123
  109. package/src/rust/components/settings_panel.rs +115 -11
  110. package/src/rust/components/status_bar.rs +222 -98
  111. package/src/rust/components/status_bar_counter.rs +8 -20
  112. package/src/rust/components/status_indicator.rs +64 -111
  113. package/src/rust/components/string_column_style.rs +2 -2
  114. package/src/rust/components/style/style_cache.rs +5 -1
  115. package/src/rust/components/viewer.rs +391 -39
  116. package/src/rust/custom_elements/copy_dropdown.rs +102 -21
  117. package/src/rust/custom_elements/export_dropdown.rs +102 -20
  118. package/src/rust/custom_elements/mod.rs +0 -7
  119. package/src/rust/custom_elements/modal.rs +7 -103
  120. package/src/rust/custom_elements/viewer.rs +99 -35
  121. package/src/rust/custom_events.rs +23 -2
  122. package/src/rust/dragdrop.rs +149 -10
  123. package/src/{less/containers/scroll-panel.less → rust/engines.rs} +15 -13
  124. package/src/rust/js/plugin.rs +20 -1
  125. package/src/rust/lib.rs +5 -4
  126. package/src/rust/presentation/props.rs +39 -0
  127. package/src/rust/presentation/sheets.rs +3 -3
  128. package/src/rust/presentation.rs +44 -8
  129. package/src/rust/renderer/limits.rs +32 -3
  130. package/src/{less/dom/scrollbar.less → rust/renderer/props.rs} +18 -19
  131. package/src/rust/renderer/registry.rs +8 -1
  132. package/src/rust/renderer.rs +83 -9
  133. package/src/rust/session/column_defaults_update.rs +18 -0
  134. package/src/rust/session/metadata.rs +23 -2
  135. package/src/rust/session/props.rs +178 -0
  136. package/src/rust/session/replace_expression_update.rs +1 -0
  137. package/src/rust/session.rs +124 -117
  138. package/src/rust/tasks/column_locator.rs +133 -0
  139. package/src/rust/{model → tasks}/columns_iter_set.rs +14 -23
  140. package/src/rust/{model → tasks}/edit_expression.rs +34 -10
  141. package/src/rust/{model → tasks}/eject.rs +2 -2
  142. package/src/rust/{model → tasks}/get_viewer_config.rs +0 -11
  143. package/src/rust/{model → tasks}/intersection_observer.rs +22 -4
  144. package/src/{less/containers/radio-list.less → rust/tasks/is_invalid_drop.rs} +21 -14
  145. package/src/rust/tasks/mod.rs +52 -0
  146. package/src/rust/{model → tasks}/plugin_column_styles.rs +69 -46
  147. package/src/rust/{model → tasks}/resize_observer.rs +39 -6
  148. package/src/rust/{model → tasks}/send_plugin_config.rs +1 -1
  149. package/src/rust/tasks/structural.rs +53 -0
  150. package/src/rust/utils/mod.rs +4 -0
  151. package/src/rust/utils/modal_position.rs +110 -0
  152. package/src/rust/utils/ptr_eq_rc.rs +74 -0
  153. package/src/rust/utils/pubsub.rs +11 -1
  154. package/src/svg/bg-pattern.png +0 -0
  155. package/src/svg/close-icon.svg +1 -1
  156. package/src/svg/expression.svg +1 -1
  157. package/src/svg/mega-menu-icons-candlestick.svg +1 -1
  158. package/src/svg/mega-menu-icons-datagrid.svg +1 -2
  159. package/src/svg/mega-menu-icons-heatmap.svg +1 -1
  160. package/src/svg/mega-menu-icons-map-scatter.svg +1 -1
  161. package/src/svg/mega-menu-icons-ohlc.svg +1 -1
  162. package/src/svg/mega-menu-icons-sunburst.svg +1 -1
  163. package/src/svg/mega-menu-icons-treemap.svg +1 -1
  164. package/src/svg/mega-menu-icons-x-bar.svg +1 -1
  165. package/src/svg/mega-menu-icons-x-y-line.svg +1 -1
  166. package/src/svg/mega-menu-icons-x-y-scatter.svg +1 -1
  167. package/src/svg/mega-menu-icons-y-area.svg +1 -1
  168. package/src/svg/mega-menu-icons-y-bar.svg +1 -1
  169. package/src/svg/mega-menu-icons-y-line.svg +1 -1
  170. package/src/svg/mega-menu-icons-y-scatter.svg +1 -1
  171. package/src/svg/radio-hover.svg +1 -1
  172. package/src/svg/radio-off.svg +1 -1
  173. package/src/svg/radio-on.svg +1 -1
  174. package/src/themes/botanical.css +157 -0
  175. package/src/themes/defaults.css +139 -0
  176. package/src/themes/dracula.css +233 -0
  177. package/src/themes/gruvbox-dark.css +255 -0
  178. package/src/themes/gruvbox.css +134 -0
  179. package/src/themes/icons.css +124 -0
  180. package/src/themes/intl/de.css +102 -0
  181. package/src/themes/intl/es.css +102 -0
  182. package/src/themes/intl/fr.css +102 -0
  183. package/src/themes/intl/ja.css +102 -0
  184. package/src/themes/intl/pt.css +102 -0
  185. package/src/themes/intl/zh.css +102 -0
  186. package/src/themes/intl.css +102 -0
  187. package/src/themes/monokai.css +233 -0
  188. package/src/themes/pro-dark.css +158 -0
  189. package/src/themes/{themes.less → pro.css} +17 -20
  190. package/src/themes/solarized-dark.css +135 -0
  191. package/src/themes/solarized.css +95 -0
  192. package/src/themes/themes.css +22 -0
  193. package/src/themes/vaporwave.css +256 -0
  194. package/src/ts/extensions.ts +73 -2
  195. package/src/ts/perspective-viewer.ts +1 -0
  196. package/src/ts/ts-rs/GroupRollupMode.ts +3 -0
  197. package/src/ts/ts-rs/ViewerConfigUpdate.ts +2 -1
  198. package/tsconfig.json +1 -0
  199. package/dist/css/variables.css +0 -0
  200. package/src/less/column-dropdown.less +0 -95
  201. package/src/less/config-selector.less +0 -363
  202. package/src/less/dom/checkbox.less +0 -100
  203. package/src/less/plugin-selector.less +0 -183
  204. package/src/less/type-icon.less +0 -68
  205. package/src/rust/components/error_message.rs +0 -56
  206. package/src/rust/custom_elements/column_dropdown.rs +0 -123
  207. package/src/rust/custom_elements/filter_dropdown.rs +0 -179
  208. package/src/rust/custom_elements/function_dropdown.rs +0 -115
  209. package/src/rust/model/column_locator.rs +0 -82
  210. package/src/rust/model/is_invalid_drop.rs +0 -36
  211. package/src/rust/model/mod.rs +0 -100
  212. package/src/rust/model/reset_all.rs +0 -38
  213. package/src/rust/model/structural.rs +0 -244
  214. package/src/themes/dracula.less +0 -101
  215. package/src/themes/gruvbox-dark.less +0 -116
  216. package/src/themes/gruvbox.less +0 -152
  217. package/src/themes/icons.less +0 -130
  218. package/src/themes/intl/de.less +0 -102
  219. package/src/themes/intl/es.less +0 -102
  220. package/src/themes/intl/fr.less +0 -102
  221. package/src/themes/intl/ja.less +0 -102
  222. package/src/themes/intl/pt.less +0 -102
  223. package/src/themes/intl/zh.less +0 -102
  224. package/src/themes/intl.less +0 -102
  225. package/src/themes/monokai.less +0 -107
  226. package/src/themes/pro-dark.less +0 -147
  227. package/src/themes/pro.less +0 -186
  228. package/src/themes/solarized-dark.less +0 -78
  229. package/src/themes/solarized.less +0 -102
  230. package/src/themes/vaporwave.less +0 -145
  231. /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline0.js +0 -0
  232. /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline1.js +0 -0
  233. /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline2.js +0 -0
  234. /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline3.js +0 -0
  235. /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline4.js +0 -0
  236. /package/src/rust/{model → tasks}/copy_export.rs +0 -0
  237. /package/src/rust/{model → tasks}/export_app.rs +0 -0
  238. /package/src/rust/{model → tasks}/export_method.rs +0 -0
  239. /package/src/rust/{model → tasks}/restore_and_render.rs +0 -0
  240. /package/src/rust/{model → tasks}/update_and_render.rs +0 -0
@@ -0,0 +1,441 @@
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
+
14
+ :host {
15
+ #top_panel.dragdrop-highlight {
16
+ .psp-text-field {
17
+ border-bottom-color: var(--psp--color) !important;
18
+ }
19
+
20
+ .pivot-column-border {
21
+ border-color: var(--psp--color) !important;
22
+ }
23
+ }
24
+
25
+ #top_panel.group-rollup-mode-total {
26
+ #group_by {
27
+ width: 100%;
28
+ /* height: 26px; */
29
+ .pivot-column {
30
+ .pivot-column-total {
31
+ min-height: 24px;
32
+ margin-bottom: 4px;
33
+ &:before {
34
+ background-color: var(--psp--background-color);
35
+ }
36
+ }
37
+
38
+ .column_name {
39
+ color: var(--psp-inactive--color);
40
+ }
41
+
42
+ .type-icon {
43
+ background-color: var(--psp-inactive--color);
44
+ }
45
+
46
+ &:hover .pivot-column-border {
47
+ border-color: var(--psp-inactive--color, #ababab);
48
+ }
49
+
50
+ /* input { */
51
+ /* background-color: var(--psp--background-color); */
52
+ /* pointer-events: none; */
53
+ /* border: 1px solid var(--psp-inactive--color); */
54
+ /* color: var(--psp-inactive--color) !important; */
55
+ /* // &:placeholder { */
56
+
57
+ /* // } */
58
+ /* } */
59
+ }
60
+ }
61
+ }
62
+
63
+ #top_panel {
64
+ display: flex;
65
+ flex-direction: column;
66
+ justify-content: stretch;
67
+ padding: 0px 0px 12px 0px;
68
+ max-width: 1000px;
69
+ z-index: 1;
70
+
71
+ .row_close {
72
+ margin: 0 6.5px 4px 6.5px;
73
+ cursor: pointer;
74
+ height: 14px;
75
+ display: inline-block;
76
+ background-repeat: no-repeat;
77
+ background-color: var(--psp--color);
78
+ -webkit-mask-size: cover;
79
+ mask-size: cover;
80
+ -webkit-mask-image: var(--psp-icon--checkbox-on--mask-image);
81
+ mask-image: var(--psp-icon--checkbox-on--mask-image);
82
+
83
+ &:before {
84
+ line-height: 0;
85
+ content: var(--psp-icon--checkbox-on--mask-image);
86
+ visibility: hidden;
87
+ }
88
+
89
+ &:hover {
90
+ -webkit-mask-image: var(--psp-icon--checkbox-hover--mask-image);
91
+ mask-image: var(--psp-icon--checkbox-hover--mask-image);
92
+ }
93
+ }
94
+
95
+ .pivot-column {
96
+ display: inline-flex;
97
+ align-items: center;
98
+ min-height: 28px;
99
+ position: relative;
100
+
101
+ .pivot-column-border {
102
+ flex: 1 1 auto;
103
+ overflow: hidden;
104
+ background-color: var(--psp--background-color);
105
+ border: 1px solid var(--psp-inactive--color, #ababab);
106
+ border-radius: 2px;
107
+ display: flex;
108
+ align-items: center;
109
+ position: relative;
110
+ padding-right: 8px;
111
+
112
+ .column_name {
113
+ display: block;
114
+ }
115
+
116
+ .input-sizer {
117
+ flex: 1 100000 auto;
118
+ }
119
+ }
120
+
121
+ &:hover .pivot-column-border {
122
+ border-color: var(--psp--color);
123
+ }
124
+
125
+ .pivot-column-draggable {
126
+ position: relative;
127
+ width: calc(100% - 27px);
128
+ min-height: 28px;
129
+ padding-bottom: 4px;
130
+ display: flex;
131
+ align-items: stretch;
132
+ cursor: move;
133
+ }
134
+
135
+ &:not(.column-empty) .pivot-column-border > .drag-handle {
136
+ flex: 0 0 auto;
137
+ margin: 0px 0 0 6px;
138
+ background-repeat: no-repeat;
139
+ background-color: var(--psp--color);
140
+ display: inline-block;
141
+ -webkit-mask-size: cover;
142
+ mask-size: cover;
143
+ -webkit-mask-image: var(
144
+ --psp-icon--psp-icon--column-drag-handle--mask-image
145
+ );
146
+ mask-image: var(
147
+ --psp-icon--psp-icon--column-drag-handle--mask-image
148
+ );
149
+
150
+ &:before {
151
+ content: var(
152
+ --psp-icon--psp-icon--column-drag-handle--mask-image
153
+ );
154
+ visibility: hidden;
155
+ }
156
+ }
157
+
158
+ span {
159
+ white-space: nowrap;
160
+ }
161
+
162
+ span:first-child {
163
+ text-overflow: ellipsis;
164
+ /* max-width: 250px; */
165
+ overflow: hidden;
166
+ }
167
+
168
+ /* Column is being dragged-over, e.g. this is the drop indicator. */
169
+ & .config-drop {
170
+ background-color: var(--psp-placeholder--background);
171
+ margin-right: 7px;
172
+ margin-bottom: 4px;
173
+ border: 1px solid var(--psp--color);
174
+ border-radius: 2px;
175
+ overflow: visible;
176
+ flex: 1 1 auto;
177
+ align-self: stretch;
178
+ position: relative;
179
+ &:before {
180
+ content: " ";
181
+ position: absolute;
182
+ z-index: -1;
183
+ top: 5px;
184
+ left: 5px;
185
+ right: 5px;
186
+ bottom: 5px;
187
+ border-radius: 2px;
188
+ background-color: var(--psp--color);
189
+ opacity: 0.3;
190
+ }
191
+
192
+ & > * {
193
+ color: transparent;
194
+ }
195
+ }
196
+ }
197
+
198
+ label.pivot-selector-label {
199
+ pointer-events: none;
200
+ }
201
+
202
+ #group_by label.pivot-selector-label:before {
203
+ content: var(--psp-label--group-by--content, "Group By");
204
+ }
205
+
206
+ #split_by label.pivot-selector-label:before {
207
+ content: var(--psp-label--split-by--content, "Split By");
208
+ }
209
+
210
+ #sort label.pivot-selector-label:before {
211
+ content: var(--psp-label--sort--content, "Order By");
212
+ }
213
+
214
+ #filter label.pivot-selector-label:before {
215
+ content: var(--psp-label--filter--content, "Where");
216
+ }
217
+
218
+ .rrow {
219
+ display: flex;
220
+ min-height: 24px;
221
+ align-items: center;
222
+ list-style: none;
223
+ padding: 24px 0px 12px 0px;
224
+
225
+ span[draggable] {
226
+ cursor: move;
227
+ }
228
+ }
229
+
230
+ .rrow > div {
231
+ display: flex;
232
+ min-height: 24px;
233
+ flex-direction: column;
234
+ justify-content: flex-end;
235
+ }
236
+
237
+ .rrow > * {
238
+ width: 100%;
239
+ padding: 0;
240
+ margin: 0px 0px -12px 0px;
241
+ }
242
+
243
+ .psp-text-field ul {
244
+ min-height: 20px;
245
+ }
246
+
247
+ .psp-text-field {
248
+ position: relative;
249
+ border-width: 0;
250
+ border-style: solid;
251
+ display: flex;
252
+ flex-direction: column;
253
+ justify-content: flex-end;
254
+ min-height: 24px;
255
+ background-size: 100% 200%;
256
+ }
257
+
258
+ .psp-text-field > .psp-text-field__input {
259
+ flex-direction: column;
260
+ justify-content: stretch;
261
+ border: 0px;
262
+ line-height: 20px;
263
+ vertical-align: bottom;
264
+ padding-bottom: 0px;
265
+ display: none;
266
+ margin: 0;
267
+ padding: 0 0 0 0;
268
+ min-height: 26px;
269
+ }
270
+
271
+ .psp-text-field__input + label {
272
+ width: 0px;
273
+ height: 20px;
274
+ line-height: 17px;
275
+ box-sizing: border-box;
276
+ white-space: nowrap;
277
+ padding: 0px;
278
+ font-size: var(--label--font-size, 0.75em);
279
+ display: inline-block;
280
+ }
281
+
282
+ .psp-text-field__input {
283
+ display: flex !important;
284
+ }
285
+
286
+ .psp-text-field__input + label {
287
+ position: absolute;
288
+ top: 0px;
289
+ margin: var(--column-drop-label--margin, -16px 0px 0px 0px);
290
+ font-size: var(--label--font-size, 0.75em);
291
+ display: inline-block;
292
+ }
293
+
294
+ .pivot_controls {
295
+ display: flex;
296
+ justify-content: flex-end;
297
+ height: 15px;
298
+ margin-bottom: -24px;
299
+ margin-right: 28px;
300
+ margin-top: 9px;
301
+ select:hover {
302
+ color: var(--psp--color, inherit);
303
+ }
304
+ }
305
+
306
+ .group_rollup_wrapper {
307
+ margin-bottom: -30px;
308
+ flex: 0 1 auto;
309
+ color: var(--psp-inactive--color);
310
+ padding-top: 15px;
311
+ font-size: var(--label--font-size, 0.75em);
312
+ select {
313
+ font-size: var(--label--font-size);
314
+ }
315
+ }
316
+
317
+ #transpose_button {
318
+ cursor: pointer;
319
+ flex-grow: 0;
320
+ font-family: inherit;
321
+ font-size: var(--label--font-size, 0.75em);
322
+ user-select: none;
323
+ padding: 0;
324
+ align-self: center;
325
+ /* margin-bottom: -23px; */
326
+ /* margin-top: 11.5px; */
327
+ /* align-self: flex-end; */
328
+ z-index: 1;
329
+ min-height: 0px;
330
+ /* margin-right: 30px; */
331
+
332
+ &:hover:before {
333
+ color: var(--psp--color, inherit);
334
+ }
335
+
336
+ &:before {
337
+ font-family: var(--psp-button--font-family, inherit);
338
+ color: var(--psp-inactive--color, #666);
339
+ content: var(--psp-label--transpose-button--content, "Swap");
340
+ }
341
+ }
342
+ }
343
+
344
+ .sort-icon {
345
+ display: inline-flex;
346
+ margin-left: auto;
347
+ /* margin-right: 8px; */
348
+ cursor: pointer;
349
+ font-family: var(--psp-button--font-family, inherit);
350
+ background-repeat: no-repeat;
351
+ background-color: var(--psp--color);
352
+ -webkit-mask-size: cover;
353
+ mask-size: cover;
354
+
355
+ &:hover {
356
+ opacity: 1;
357
+ color: var(--psp-active--color, inherit);
358
+ }
359
+
360
+ &.desc {
361
+ -webkit-mask-image: var(--psp-icon--sort-desc--mask-image);
362
+ mask-image: var(--psp-icon--sort-desc--mask-image);
363
+ &:before {
364
+ content: var(--psp-icon--sort-desc--mask-image);
365
+ visibility: hidden;
366
+ }
367
+ }
368
+
369
+ &.asc {
370
+ -webkit-mask-image: var(--psp-icon--sort-asc--mask-image);
371
+ mask-image: var(--psp-icon--sort-asc--mask-image);
372
+ &:before {
373
+ content: var(--psp-icon--sort-asc--mask-image);
374
+ visibility: hidden;
375
+ }
376
+ }
377
+
378
+ &.none {
379
+ -webkit-mask-image: var(--psp-icon--sort-none--mask-image);
380
+ mask-image: var(--psp-icon--sort-none--mask-image);
381
+ &:before {
382
+ content: var(--psp-icon--sort-none--mask-image);
383
+ visibility: hidden;
384
+ }
385
+ }
386
+
387
+ &.asc.abs {
388
+ -webkit-mask-image: var(--psp-icon--sort-abs-asc--mask-image);
389
+ mask-image: var(--psp-icon--sort-abs-asc--mask-image);
390
+ &:before {
391
+ content: var(--psp-icon--sort-abs-asc--mask-image);
392
+ visibility: hidden;
393
+ }
394
+ }
395
+
396
+ &.desc.abs {
397
+ -webkit-mask-image: var(--psp-icon--sort-abs-desc--mask-image);
398
+ mask-image: var(--psp-icon--sort-abs-desc--mask-image);
399
+ &:before {
400
+ content: var(--psp-icon--sort-abs-desc--mask-image);
401
+ visibility: hidden;
402
+ }
403
+ }
404
+
405
+ &.col.asc {
406
+ -webkit-mask-image: var(--psp-icon--sort-col-asc--mask-image);
407
+ mask-image: var(--psp-icon--sort-col-asc--mask-image);
408
+ &:before {
409
+ content: var(--psp-icon--sort-col-asc--mask-image);
410
+ visibility: hidden;
411
+ }
412
+ }
413
+
414
+ &.col.desc {
415
+ -webkit-mask-image: var(--psp-icon--sort-col-desc--mask-image);
416
+ mask-image: var(--psp-icon--sort-col-desc--mask-image);
417
+ &:before {
418
+ content: var(--psp-icon--sort-col-desc--mask-image);
419
+ visibility: hidden;
420
+ }
421
+ }
422
+
423
+ &.col.asc.abs {
424
+ -webkit-mask-image: var(--psp-icon--sort-abs-col-asc--mask-image);
425
+ mask-image: var(--psp-icon--sort-abs-col-asc--mask-image);
426
+ &:before {
427
+ content: var(--psp-icon--sort-abs-col-asc--mask-image);
428
+ visibility: hidden;
429
+ }
430
+ }
431
+
432
+ &.col.desc.abs {
433
+ -webkit-mask-image: var(--psp-icon--sort-abs-col-desc--mask-image);
434
+ mask-image: var(--psp-icon--sort-abs-col-desc--mask-image);
435
+ &:before {
436
+ content: var(--psp-icon--sort-abs-col-desc--mask-image);
437
+ visibility: hidden;
438
+ }
439
+ }
440
+ }
441
+ }
@@ -1,14 +1,15 @@
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
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
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
+ */
12
13
 
13
14
  :host {
14
15
  position: fixed;
@@ -26,23 +27,23 @@
26
27
  min-width: 80px;
27
28
 
28
29
  code {
29
- font-family: var(--interface-monospace--font-family), monospace;
30
+ font-family: var(--psp-interface-monospace--font-family), monospace;
30
31
  }
31
32
 
32
33
  input {
33
34
  margin: 0;
34
35
  padding: 0;
35
36
  border: none;
36
- border-bottom: 1px solid var(--inactive--color, #ccc);
37
+ border-bottom: 1px solid var(--psp-inactive--color, #ccc);
37
38
  background: transparent;
38
- font-family: var(--interface-monospace--font-family), monospace;
39
+ font-family: var(--psp-interface-monospace--font-family), monospace;
39
40
  color: inherit;
40
41
  outline: none;
41
42
  }
42
43
 
43
44
  .invalid {
44
- color: var(--error--color, #ff0000);
45
- border-color: var(--error--color, #ff0000);
45
+ color: var(--psp-error--color, #ff0000);
46
+ border-color: var(--psp-error--color, #ff0000);
46
47
  }
47
48
 
48
49
  .selected {
@@ -50,7 +51,7 @@
50
51
  }
51
52
 
52
53
  .dropdown-group-label {
53
- color: var(--inactive--color);
54
+ color: var(--psp-inactive--color);
54
55
 
55
56
  &:not(:first-of-type) {
56
57
  margin-top: 16px;
@@ -88,7 +89,7 @@
88
89
  }
89
90
 
90
91
  .dropdown-group-container span:hover {
91
- background-color: var(--icon--color);
92
- color: var(--plugin--background);
92
+ background-color: var(--psp--color);
93
+ color: var(--psp--background-color);
93
94
  }
94
95
  }
@@ -1,14 +1,15 @@
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
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
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
+ */
12
13
 
13
14
  .pairs-list {
14
15
  ul {
@@ -24,7 +25,7 @@
24
25
  flex-direction: row;
25
26
  align-items: center;
26
27
  justify-content: space-between;
27
- border-bottom: solid 1px var(--inactive--border-color);
28
+ border-bottom: solid 1px var(--psp-inactive--border-color);
28
29
  margin-bottom: 12px;
29
30
  }
30
31
 
@@ -1,24 +1,27 @@
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
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
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
+ */
12
13
 
13
- @green50: #70c77f;
14
+ :host {
15
+ .scroll-panel-container {
16
+ width: 100%;
17
+ }
14
18
 
15
- @grey20: #eaedef;
16
- @grey60: #c5c9d0;
17
- @grey200: #61656e;
18
- @grey300: #4c505b;
19
- @grey400: #44484f;
20
- @grey500: #3b3f46;
21
- @grey600: #2f3136;
22
- @grey700: #2a2c2f;
23
- @grey800: #242526;
24
- @grey900: #161616;
19
+ .scroll-panel-auto-width {
20
+ height: 1px;
21
+ margin-top: -1px;
22
+ }
23
+
24
+ .scroll-panel-content {
25
+ position: relative;
26
+ }
27
+ }
@@ -1,14 +1,15 @@
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
- // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
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
+ */
12
13
 
13
14
  :host {
14
15
  #modal_panel.split-panel.orient-reverse
@@ -54,7 +55,7 @@
54
55
  flex: 0 0 auto;
55
56
  }
56
57
 
57
- // The thing you click to drag the panel size.
58
+ /* The thing you click to drag the panel size. */
58
59
  .split-panel-divider {
59
60
  flex: 0 0 6px;
60
61
  transition: background-color 0.2s ease-out;
@@ -66,8 +67,8 @@
66
67
  }
67
68
  }
68
69
 
69
- // Make the elements embedded in each child stretch to fill the
70
- // container
70
+ /* Make the elements embedded in each child stretch to fill the */
71
+ /* container */
71
72
  .split-panel-child {
72
73
  position: relative;
73
74
  display: flex;