@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.
- package/dist/cdn/perspective-viewer.js +2 -2
- package/dist/cdn/perspective-viewer.js.map +4 -4
- package/dist/css/botanical.css +1 -1
- package/dist/css/dracula.css +1 -1
- package/dist/css/gruvbox-dark.css +1 -1
- package/dist/css/gruvbox.css +1 -1
- package/dist/css/icons.css +1 -1
- package/dist/css/intl/de.css +1 -1
- package/dist/css/intl/es.css +1 -1
- package/dist/css/intl/fr.css +1 -1
- package/dist/css/intl/ja.css +1 -1
- package/dist/css/intl/pt.css +1 -1
- package/dist/css/intl/zh.css +1 -1
- package/dist/css/intl.css +1 -1
- package/dist/css/monokai.css +1 -1
- package/dist/css/pro-dark.css +1 -1
- package/dist/css/pro.css +1 -1
- package/dist/css/solarized-dark.css +1 -1
- package/dist/css/solarized.css +1 -1
- package/dist/css/themes.css +1 -1
- package/dist/css/vaporwave.css +1 -1
- package/dist/esm/perspective-viewer.inline.js +2 -2
- package/dist/esm/perspective-viewer.inline.js.map +4 -4
- package/dist/esm/perspective-viewer.js +2 -2
- package/dist/esm/perspective-viewer.js.map +4 -4
- package/dist/wasm/perspective-viewer.d.ts +57 -53
- package/dist/wasm/perspective-viewer.js +190 -165
- package/dist/wasm/perspective-viewer.wasm +0 -0
- package/dist/wasm/perspective-viewer.wasm.d.ts +17 -18
- package/package.json +7 -5
- package/src/{less/aggregate-selector.less → css/aggregate-selector.css} +23 -20
- package/src/css/column-dropdown.css +109 -0
- package/src/{less/column-selector.less → css/column-selector.css} +160 -158
- package/src/{less/column-settings-panel.less → css/column-settings-panel.css} +69 -59
- package/src/{less/column-style.less → css/column-style.css} +52 -66
- package/src/{less/column-symbol-attributes.less → css/column-symbol-attributes.css} +15 -14
- package/src/{less/config-selector.less → css/config-selector.css} +151 -135
- package/src/{less/containers/dropdown-menu.less → css/containers/dropdown-menu.css} +20 -19
- package/src/{less/containers/pairs-list.less → css/containers/pairs-list.css} +13 -12
- package/src/{themes/variables.less → css/containers/scroll-panel.css} +25 -22
- package/src/{less/containers/split-panel.less → css/containers/split-panel.css} +15 -14
- package/src/{less/containers/tabs.less → css/containers/tabs.css} +17 -19
- package/src/css/dom/checkbox.css +102 -0
- package/src/css/dom/scrollbar.css +35 -0
- package/src/{less/dom/select.less → css/dom/select.css} +17 -18
- package/src/{less/empty-column.less → css/empty-column.css} +19 -18
- package/src/{less/expression-editor.less → css/expression-editor.css} +19 -18
- package/src/{less/filter-dropdown.less → css/filter-dropdown.css} +12 -11
- package/src/{less/filter-item.less → css/filter-item.css} +16 -15
- package/src/{less/form/code-editor.less → css/form/code-editor.css} +26 -30
- package/src/{less/form/debug.less → css/form/debug.css} +19 -18
- package/src/{less/function-dropdown.less → css/function-dropdown.css} +12 -11
- package/src/css/plugin-selector.css +261 -0
- package/src/{less/render-warning.less → css/render-warning.css} +18 -17
- package/src/{less/status-bar.less → css/status-bar.css} +156 -144
- package/src/css/type-icon.css +116 -0
- package/src/{less/viewer.less → css/viewer.css} +112 -146
- package/src/rust/components/column_dropdown.rs +229 -119
- package/src/rust/components/column_selector/active_column.rs +81 -62
- package/src/rust/components/column_selector/add_expression_button.rs +1 -0
- package/src/rust/components/column_selector/aggregate_selector.rs +25 -15
- package/src/rust/components/column_selector/config_selector.rs +315 -199
- package/src/rust/components/column_selector/empty_column.rs +2 -2
- package/src/rust/components/column_selector/expr_edit_button.rs +8 -2
- package/src/rust/components/column_selector/filter_column.rs +37 -26
- package/src/rust/components/column_selector/inactive_column.rs +41 -29
- package/src/rust/components/column_selector/invalid_column.rs +7 -18
- package/src/rust/components/column_selector/pivot_column.rs +11 -5
- package/src/rust/components/column_selector/sort_column.rs +23 -13
- package/src/rust/components/column_selector.rs +163 -84
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/row_selector.rs +1 -1
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs.rs +3 -2
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs_item.rs +3 -2
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_selector.rs +2 -3
- package/src/rust/components/column_settings_sidebar/style_tab/symbol.rs +7 -1
- package/src/rust/components/column_settings_sidebar/style_tab.rs +153 -112
- package/src/rust/components/column_settings_sidebar.rs +91 -53
- package/src/rust/components/containers/dragdrop_list.rs +2 -1
- package/src/rust/components/containers/sidebar_close_button.rs +1 -1
- package/src/rust/components/containers/split_panel.rs +1 -0
- package/src/rust/components/containers/tab_list.rs +1 -1
- package/src/rust/components/copy_dropdown.rs +7 -28
- package/src/rust/components/datetime_column_style/custom.rs +2 -2
- package/src/rust/components/datetime_column_style/simple.rs +2 -2
- package/src/rust/components/datetime_column_style.rs +4 -2
- package/src/rust/components/editable_header.rs +7 -4
- package/src/rust/components/empty_row.rs +1 -1
- package/src/rust/components/export_dropdown.rs +4 -30
- package/src/rust/components/expression_editor.rs +19 -10
- package/src/rust/components/filter_dropdown.rs +246 -102
- package/src/rust/components/font_loader.rs +11 -28
- package/src/rust/components/form/code_editor.rs +17 -2
- package/src/rust/components/form/color_range_selector.rs +19 -6
- package/src/rust/components/form/debug.rs +30 -13
- package/src/rust/components/function_dropdown.rs +186 -113
- package/src/rust/components/main_panel.rs +71 -89
- package/src/rust/components/mod.rs +1 -1
- package/src/rust/components/modal.rs +7 -1
- package/src/rust/components/number_column_style.rs +22 -7
- package/src/rust/components/plugin_selector.rs +34 -102
- package/src/rust/components/portal.rs +274 -0
- package/src/rust/components/render_warning.rs +72 -123
- package/src/rust/components/settings_panel.rs +115 -11
- package/src/rust/components/status_bar.rs +222 -98
- package/src/rust/components/status_bar_counter.rs +8 -20
- package/src/rust/components/status_indicator.rs +64 -114
- package/src/rust/components/string_column_style.rs +2 -2
- package/src/rust/components/style/style_cache.rs +5 -1
- package/src/rust/components/viewer.rs +391 -39
- package/src/rust/custom_elements/copy_dropdown.rs +102 -21
- package/src/rust/custom_elements/export_dropdown.rs +102 -20
- package/src/rust/custom_elements/mod.rs +0 -7
- package/src/rust/custom_elements/modal.rs +7 -103
- package/src/rust/custom_elements/viewer.rs +99 -35
- package/src/rust/custom_events.rs +23 -2
- package/src/rust/dragdrop.rs +149 -10
- package/src/{less/containers/scroll-panel.less → rust/engines.rs} +15 -13
- package/src/rust/js/plugin.rs +1 -1
- package/src/rust/lib.rs +5 -4
- package/src/rust/presentation/props.rs +39 -0
- package/src/rust/presentation/sheets.rs +3 -3
- package/src/rust/presentation.rs +44 -8
- package/src/rust/renderer/limits.rs +32 -3
- package/src/{less/dom/scrollbar.less → rust/renderer/props.rs} +18 -19
- package/src/rust/renderer.rs +83 -9
- package/src/rust/session/column_defaults_update.rs +1 -1
- package/src/rust/session/metadata.rs +23 -2
- package/src/rust/session/props.rs +178 -0
- package/src/rust/session.rs +124 -117
- package/src/rust/tasks/column_locator.rs +133 -0
- package/src/rust/{model → tasks}/columns_iter_set.rs +14 -23
- package/src/rust/{model → tasks}/edit_expression.rs +34 -10
- package/src/rust/{model → tasks}/eject.rs +2 -2
- package/src/rust/{model → tasks}/get_viewer_config.rs +0 -11
- package/src/rust/{model → tasks}/intersection_observer.rs +19 -3
- package/src/{less/containers/radio-list.less → rust/tasks/is_invalid_drop.rs} +21 -14
- package/src/rust/tasks/mod.rs +52 -0
- package/src/rust/{model → tasks}/plugin_column_styles.rs +69 -46
- package/src/rust/{model → tasks}/resize_observer.rs +39 -6
- package/src/rust/{model → tasks}/send_plugin_config.rs +1 -1
- package/src/rust/tasks/structural.rs +53 -0
- package/src/rust/utils/mod.rs +4 -0
- package/src/rust/utils/modal_position.rs +110 -0
- package/src/rust/utils/ptr_eq_rc.rs +74 -0
- package/src/rust/utils/pubsub.rs +11 -1
- package/src/svg/bg-pattern.png +0 -0
- package/src/svg/close-icon.svg +1 -1
- package/src/svg/expression.svg +1 -1
- package/src/svg/mega-menu-icons-candlestick.svg +1 -1
- package/src/svg/mega-menu-icons-datagrid.svg +1 -2
- package/src/svg/mega-menu-icons-heatmap.svg +1 -1
- package/src/svg/mega-menu-icons-map-scatter.svg +1 -1
- package/src/svg/mega-menu-icons-ohlc.svg +1 -1
- package/src/svg/mega-menu-icons-sunburst.svg +1 -1
- package/src/svg/mega-menu-icons-treemap.svg +1 -1
- package/src/svg/mega-menu-icons-x-bar.svg +1 -1
- package/src/svg/mega-menu-icons-x-y-line.svg +1 -1
- package/src/svg/mega-menu-icons-x-y-scatter.svg +1 -1
- package/src/svg/mega-menu-icons-y-area.svg +1 -1
- package/src/svg/mega-menu-icons-y-bar.svg +1 -1
- package/src/svg/mega-menu-icons-y-line.svg +1 -1
- package/src/svg/mega-menu-icons-y-scatter.svg +1 -1
- package/src/svg/radio-hover.svg +1 -1
- package/src/svg/radio-off.svg +1 -1
- package/src/svg/radio-on.svg +1 -1
- package/src/themes/botanical.css +157 -0
- package/src/themes/defaults.css +139 -0
- package/src/themes/dracula.css +233 -0
- package/src/themes/gruvbox-dark.css +255 -0
- package/src/themes/gruvbox.css +134 -0
- package/src/themes/icons.css +124 -0
- package/src/themes/intl/de.css +102 -0
- package/src/themes/intl/es.css +102 -0
- package/src/themes/intl/fr.css +102 -0
- package/src/themes/intl/ja.css +102 -0
- package/src/themes/intl/pt.css +102 -0
- package/src/themes/intl/zh.css +102 -0
- package/src/themes/intl.css +102 -0
- package/src/themes/monokai.css +233 -0
- package/src/themes/pro-dark.css +158 -0
- package/src/themes/{themes.less → pro.css} +17 -21
- package/src/themes/solarized-dark.css +135 -0
- package/src/themes/solarized.css +95 -0
- package/src/themes/themes.css +22 -0
- package/src/themes/vaporwave.css +256 -0
- package/dist/css/variables.css +0 -0
- package/src/less/column-dropdown.less +0 -95
- package/src/less/dom/checkbox.less +0 -100
- package/src/less/plugin-selector.less +0 -183
- package/src/less/type-icon.less +0 -68
- package/src/rust/components/error_message.rs +0 -56
- package/src/rust/custom_elements/column_dropdown.rs +0 -123
- package/src/rust/custom_elements/filter_dropdown.rs +0 -179
- package/src/rust/custom_elements/function_dropdown.rs +0 -115
- package/src/rust/model/column_locator.rs +0 -82
- package/src/rust/model/is_invalid_drop.rs +0 -36
- package/src/rust/model/mod.rs +0 -100
- package/src/rust/model/reset_all.rs +0 -38
- package/src/rust/model/structural.rs +0 -244
- package/src/themes/botanical.less +0 -142
- package/src/themes/dracula.less +0 -101
- package/src/themes/gruvbox-dark.less +0 -116
- package/src/themes/gruvbox.less +0 -152
- package/src/themes/icons.less +0 -130
- package/src/themes/intl/de.less +0 -102
- package/src/themes/intl/es.less +0 -102
- package/src/themes/intl/fr.less +0 -102
- package/src/themes/intl/ja.less +0 -102
- package/src/themes/intl/pt.less +0 -102
- package/src/themes/intl/zh.less +0 -102
- package/src/themes/intl.less +0 -102
- package/src/themes/monokai.less +0 -107
- package/src/themes/pro-dark.less +0 -147
- package/src/themes/pro.less +0 -186
- package/src/themes/solarized-dark.less +0 -78
- package/src/themes/solarized.less +0 -102
- package/src/themes/vaporwave.less +0 -145
- /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline0.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline1.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline2.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline3.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-d729f682ba5c19df → perspective-viewer-68fef752754ffbc6}/inline4.js +0 -0
- /package/src/rust/{model → tasks}/copy_export.rs +0 -0
- /package/src/rust/{model → tasks}/export_app.rs +0 -0
- /package/src/rust/{model → tasks}/export_method.rs +0 -0
- /package/src/rust/{model → tasks}/restore_and_render.rs +0 -0
- /package/src/rust/{model → tasks}/update_and_render.rs +0 -0
package/src/themes/pro-dark.less
DELETED
|
@@ -1,147 +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 "icons.less";
|
|
14
|
-
@import "intl.less";
|
|
15
|
-
|
|
16
|
-
@import url("ref://pro.less");
|
|
17
|
-
|
|
18
|
-
// Register theme for auto-detection
|
|
19
|
-
perspective-viewer,
|
|
20
|
-
perspective-viewer[theme="Pro Dark"] {
|
|
21
|
-
--theme-name: "Pro Dark";
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
perspective-viewer[theme="Pro Dark"] {
|
|
25
|
-
@include perspective-viewer-pro-dark;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
perspective-copy-menu[theme="Pro Dark"],
|
|
29
|
-
perspective-export-menu[theme="Pro Dark"],
|
|
30
|
-
perspective-dropdown[theme="Pro Dark"],
|
|
31
|
-
perspective-date-column-style[theme="Pro Dark"],
|
|
32
|
-
perspective-datetime-column-style[theme="Pro Dark"],
|
|
33
|
-
perspective-number-column-style[theme="Pro Dark"],
|
|
34
|
-
perspective-string-column-style[theme="Pro Dark"] {
|
|
35
|
-
@include perspective-modal-pro-dark;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
@mixin perspective-viewer-pro-dark {
|
|
39
|
-
@include perspective-viewer-pro;
|
|
40
|
-
@include perspective-viewer-pro-dark--colors;
|
|
41
|
-
@include perspective-viewer-pro-dark--datagrid;
|
|
42
|
-
@include perspective-viewer-pro-dark--d3fc;
|
|
43
|
-
@include perspective-viewer-pro-dark--openlayers;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
@mixin perspective-modal-pro-dark {
|
|
47
|
-
@include perspective-modal-pro;
|
|
48
|
-
@include perspective-viewer-pro-dark--colors;
|
|
49
|
-
|
|
50
|
-
background-color: #242526;
|
|
51
|
-
border: 1px solid #4c505b;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
@mixin perspective-viewer-pro-dark--colors {
|
|
55
|
-
background-color: #242526;
|
|
56
|
-
color: white;
|
|
57
|
-
--icon--color: white;
|
|
58
|
-
--active--color: #2770a9;
|
|
59
|
-
--error--color: #ff9485;
|
|
60
|
-
--inactive--color: #61656e;
|
|
61
|
-
--inactive--border-color: #4c505b;
|
|
62
|
-
--plugin--background: #242526;
|
|
63
|
-
--modal-target--background: rgba(255, 255, 255, 0.05);
|
|
64
|
-
--active--background: rgba(39, 113, 170, 0.5);
|
|
65
|
-
--expression--operator-color: #c5c9d0;
|
|
66
|
-
--expression--function-color: #22a0ce;
|
|
67
|
-
--expression--error-color: rgb(255, 136, 136);
|
|
68
|
-
--calendar--filter: invert(1);
|
|
69
|
-
--warning--color: #242526;
|
|
70
|
-
--warning--background: var(--icon--color);
|
|
71
|
-
|
|
72
|
-
--select-arrow--background-image: var(
|
|
73
|
-
--select-arrow-light--background-image
|
|
74
|
-
);
|
|
75
|
-
|
|
76
|
-
--select-arrow--hover--background-image: var(
|
|
77
|
-
--select-arrow-dark--background-image
|
|
78
|
-
);
|
|
79
|
-
|
|
80
|
-
// Syntax
|
|
81
|
-
--code-editor-symbol--color: white;
|
|
82
|
-
--code-editor-literal--color: #7dc3f0;
|
|
83
|
-
--code-editor-operator--color: rgb(23, 166, 123);
|
|
84
|
-
--code-editor-comment--color: rgb(204, 120, 48);
|
|
85
|
-
--code-editor-column--color: #e18ee1;
|
|
86
|
-
// --code-editor-unknown--color: rgb(204, 120, 48);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
@mixin perspective-viewer-pro-dark--openlayers {
|
|
90
|
-
--map-tile-url: "http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";
|
|
91
|
-
--map-attribution--filter: invert(1) hue-rotate(180deg);
|
|
92
|
-
--map-element-background: #212c2f;
|
|
93
|
-
--map-category-1: rgb(71, 120, 194);
|
|
94
|
-
--map-category-2: rgb(204, 120, 48);
|
|
95
|
-
--map-category-3: rgb(158, 84, 192);
|
|
96
|
-
--map-category-4: rgb(51, 150, 153);
|
|
97
|
-
--map-category-5: rgb(102, 114, 143);
|
|
98
|
-
--map-category-6: rgb(211, 103, 189);
|
|
99
|
-
--map-category-7: rgb(109, 124, 77);
|
|
100
|
-
--map-category-8: rgb(221, 99, 103);
|
|
101
|
-
--map-category-9: rgb(120, 104, 206);
|
|
102
|
-
--map-category-10: rgb(23, 166, 123);
|
|
103
|
-
--map-gradient: linear-gradient(#dd6367 0%, #242526 50%, #3289c8 100%);
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
@mixin perspective-viewer-pro-dark--datagrid {
|
|
107
|
-
--rt-pos-cell--color: #7dc3f0;
|
|
108
|
-
--rt-neg-cell--color: #ff9485;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
@mixin perspective-viewer-pro-dark--d3fc {
|
|
112
|
-
--d3fc-legend--text: #c5c9d0;
|
|
113
|
-
--d3fc-treedata--labels: white;
|
|
114
|
-
--d3fc-treedata--hover-highlight: white;
|
|
115
|
-
--d3fc-tooltip--color: white;
|
|
116
|
-
--d3fc-axis-ticks--color: #c5c9d0;
|
|
117
|
-
--d3fc-axis--lines: #61656e;
|
|
118
|
-
--d3fc-gridline--color: #3b3f46;
|
|
119
|
-
--d3fc-tooltip--background: rgba(42, 44, 47, 1);
|
|
120
|
-
--d3fc-tooltip--border-color: #242526;
|
|
121
|
-
--d3fc-legend--background: var(--plugin--background);
|
|
122
|
-
|
|
123
|
-
--d3fc-series: rgb(71, 120, 194);
|
|
124
|
-
--d3fc-series-1: rgb(71, 120, 194);
|
|
125
|
-
--d3fc-series-2: rgb(204, 120, 48);
|
|
126
|
-
--d3fc-series-3: rgb(158, 84, 192);
|
|
127
|
-
--d3fc-series-4: rgb(51, 150, 153);
|
|
128
|
-
--d3fc-series-5: rgb(102, 114, 143);
|
|
129
|
-
--d3fc-series-6: rgb(211, 103, 189);
|
|
130
|
-
--d3fc-series-7: rgb(109, 124, 77);
|
|
131
|
-
--d3fc-series-8: rgb(221, 99, 103);
|
|
132
|
-
--d3fc-series-9: rgb(120, 104, 206);
|
|
133
|
-
--d3fc-series-10: rgb(23, 166, 123);
|
|
134
|
-
|
|
135
|
-
--d3fc-full--gradient: linear-gradient(
|
|
136
|
-
#dd6367 0%,
|
|
137
|
-
#242526 50%,
|
|
138
|
-
#3289c8 100%
|
|
139
|
-
);
|
|
140
|
-
|
|
141
|
-
--d3fc-positive--gradient: linear-gradient(#242526 0%, #3289c8 100%);
|
|
142
|
-
--d3fc-negative--gradient: linear-gradient(#dd6367 0%, #242526 100%);
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
// :host select {
|
|
146
|
-
// background-image: url("../svg/dropdown-selector.svg");
|
|
147
|
-
// }
|
package/src/themes/pro.less
DELETED
|
@@ -1,186 +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 "icons.less";
|
|
14
|
-
@import "intl.less";
|
|
15
|
-
|
|
16
|
-
// Register theme for auto-detection
|
|
17
|
-
perspective-viewer,
|
|
18
|
-
perspective-viewer[theme="Pro Light"] {
|
|
19
|
-
--theme-name: "Pro Light";
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
perspective-viewer[theme="Pro Light"] {
|
|
23
|
-
@include perspective-viewer-pro;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
perspective-copy-menu[theme="Pro Light"],
|
|
27
|
-
perspective-export-menu[theme="Pro Light"],
|
|
28
|
-
perspective-dropdown[theme="Pro Light"],
|
|
29
|
-
perspective-date-column-style[theme="Pro Light"],
|
|
30
|
-
perspective-datetime-column-style[theme="Pro Light"],
|
|
31
|
-
perspective-number-column-style[theme="Pro Light"],
|
|
32
|
-
perspective-string-column-style[theme="Pro Light"] {
|
|
33
|
-
@include perspective-modal-pro;
|
|
34
|
-
background-color: white;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@mixin perspective-viewer-pro {
|
|
38
|
-
@include perspective-viewer-pro--dimensions;
|
|
39
|
-
@include perspective-viewer-pro--colors;
|
|
40
|
-
@include perspective-viewer-pro--fonts;
|
|
41
|
-
@include perspective-viewer-pro--d3fc;
|
|
42
|
-
@include perspective-viewer-pro--datagrid;
|
|
43
|
-
@include perspective-viewer-pro--openlayers;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
@mixin perspective-modal-pro {
|
|
47
|
-
font-family: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo",
|
|
48
|
-
"Consolas", "Liberation Mono", monospace;
|
|
49
|
-
background-color: white;
|
|
50
|
-
border: 1px solid var(--inactive--color);
|
|
51
|
-
border-radius: 0 0 2px 2px;
|
|
52
|
-
--column-style-pos-color--content: "+";
|
|
53
|
-
--column-style-neg-color--content: "-";
|
|
54
|
-
--save-button-icon--content: "save";
|
|
55
|
-
--reset-button-icon--content: "refresh";
|
|
56
|
-
|
|
57
|
-
@include perspective-viewer-pro--fonts;
|
|
58
|
-
@include perspective-viewer-pro--colors;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@mixin perspective-viewer-pro--dimensions {
|
|
62
|
-
--button--font-size: 16px;
|
|
63
|
-
--config-button--padding: 15px 8px 6px 8px;
|
|
64
|
-
--column-drop-label--font-size: 8px;
|
|
65
|
-
--column-drop-container--padding: 0px;
|
|
66
|
-
--column-selector--width: 20px;
|
|
67
|
-
--column-selector--font-size: 16px;
|
|
68
|
-
|
|
69
|
-
// 3 char width in 'Roboto Mono'
|
|
70
|
-
--column_type--width: 25px;
|
|
71
|
-
|
|
72
|
-
--select--padding: 0px;
|
|
73
|
-
--top-panel-row--display: inline-flex;
|
|
74
|
-
--button--min-width: 33px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
@mixin perspective-viewer-pro--colors {
|
|
78
|
-
color: #161616;
|
|
79
|
-
background-color: transparent;
|
|
80
|
-
--icon--color: #161616;
|
|
81
|
-
--inactive--color: #ababab;
|
|
82
|
-
--inactive--border-color: #dadada;
|
|
83
|
-
|
|
84
|
-
--root--background: #ffffff;
|
|
85
|
-
--active--color: #2670a9;
|
|
86
|
-
--error--color: #ff471e;
|
|
87
|
-
--plugin--background: #ffffff;
|
|
88
|
-
--overflow-hint-icon--color: rgba(0, 0, 0, 0.2);
|
|
89
|
-
--select--background-color: none;
|
|
90
|
-
--column-drop-container--background: none;
|
|
91
|
-
--warning--background: #042121;
|
|
92
|
-
--warning--color: #fdfffd;
|
|
93
|
-
|
|
94
|
-
--select-arrow--background-image: var(
|
|
95
|
-
--select-arrow-dark--background-image
|
|
96
|
-
);
|
|
97
|
-
|
|
98
|
-
--select-arrow--hover--background-image: var(
|
|
99
|
-
--select-arrow-light--background-image
|
|
100
|
-
);
|
|
101
|
-
|
|
102
|
-
// TODO deprecate me
|
|
103
|
-
--overflow-hint-icon--color: #fdfffd;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
@mixin perspective-viewer-pro--fonts {
|
|
107
|
-
font-family: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo",
|
|
108
|
-
"Consolas", "Liberation Mono", monospace;
|
|
109
|
-
--interface-monospace--font-family: "ui-monospace", "SFMono-Regular",
|
|
110
|
-
"SF Mono", "Menlo", "Consolas", "Liberation Mono", monospace;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
@mixin perspective-viewer-pro--d3fc {
|
|
114
|
-
--d3fc-y1-label--content: "arrow_upward";
|
|
115
|
-
--d3fc-y2-label--content: "arrow_downward";
|
|
116
|
-
--d3fc-treedata-axis--lines: none;
|
|
117
|
-
--d3fc-tooltip--background--color: rgba(155, 155, 155, 0.8);
|
|
118
|
-
--d3fc-tooltip--color: #161616;
|
|
119
|
-
--d3fc-tooltip--border-color: #fff;
|
|
120
|
-
--d3fc-tooltip--box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
|
|
121
|
-
--d3fc-gridline--color: #eaedef;
|
|
122
|
-
--d3fc-axis-ticks--color: #161616;
|
|
123
|
-
--d3fc-axis--lines: #c5c9d0;
|
|
124
|
-
--d3fc-legend--background: var(--plugin--background);
|
|
125
|
-
--d3fc-series: rgba(31, 119, 180, 0.8);
|
|
126
|
-
--d3fc-series-1: #0366d6;
|
|
127
|
-
--d3fc-series-2: #ff7f0e;
|
|
128
|
-
--d3fc-series-3: #2ca02c;
|
|
129
|
-
--d3fc-series-4: #d62728;
|
|
130
|
-
--d3fc-series-5: #9467bd;
|
|
131
|
-
--d3fc-series-6: #8c564b;
|
|
132
|
-
--d3fc-series-7: #e377c2;
|
|
133
|
-
--d3fc-series-8: #7f7f7f;
|
|
134
|
-
--d3fc-series-9: #bcbd22;
|
|
135
|
-
--d3fc-series-10: #17becf;
|
|
136
|
-
--d3fc-full--gradient: linear-gradient(
|
|
137
|
-
#4d342f 0%,
|
|
138
|
-
#e4521b 22.5%,
|
|
139
|
-
#feeb65 42.5%,
|
|
140
|
-
#f0f0f0 50%,
|
|
141
|
-
#dcedc8 57.5%,
|
|
142
|
-
#42b3d5 67.5%,
|
|
143
|
-
#1a237e 100%
|
|
144
|
-
);
|
|
145
|
-
--d3fc-positive--gradient: linear-gradient(
|
|
146
|
-
#f0f0f0 0%,
|
|
147
|
-
#dcedc8 10%,
|
|
148
|
-
#42b3d5 50%,
|
|
149
|
-
#1a237e 100%
|
|
150
|
-
);
|
|
151
|
-
--d3fc-negative--gradient: linear-gradient(
|
|
152
|
-
#4d342f 0%,
|
|
153
|
-
#e4521b 50%,
|
|
154
|
-
#feeb65 90%,
|
|
155
|
-
#f0f0f0 100%
|
|
156
|
-
);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
@mixin perspective-viewer-pro--openlayers {
|
|
160
|
-
--map-tile-url: "http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";
|
|
161
|
-
--map-element-background: #fff;
|
|
162
|
-
--map-category-1: #0366d6;
|
|
163
|
-
--map-category-2: #ff7f0e;
|
|
164
|
-
--map-category-3: #2ca02c;
|
|
165
|
-
--map-category-4: #d62728;
|
|
166
|
-
--map-category-5: #9467bd;
|
|
167
|
-
--map-category-6: #8c564b;
|
|
168
|
-
--map-category-7: #e377c2;
|
|
169
|
-
--map-category-8: #7f7f7f;
|
|
170
|
-
--map-category-9: #bcbd22;
|
|
171
|
-
--map-category-10: #17becf;
|
|
172
|
-
--map-gradient: linear-gradient(
|
|
173
|
-
#4d342f 0%,
|
|
174
|
-
#e4521b 22.5%,
|
|
175
|
-
#feeb65 42.5%,
|
|
176
|
-
#f0f0f0 50%,
|
|
177
|
-
#dcedc8 57.5%,
|
|
178
|
-
#42b3d5 67.5%,
|
|
179
|
-
#1a237e 100%
|
|
180
|
-
);
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
@mixin perspective-viewer-pro--datagrid {
|
|
184
|
-
--rt-pos-cell--color: #338dcd;
|
|
185
|
-
--rt-neg-cell--color: #ff471e;
|
|
186
|
-
}
|
|
@@ -1,78 +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 "icons.less";
|
|
14
|
-
|
|
15
|
-
@import url("ref://pro-dark.less");
|
|
16
|
-
@import url("ref://solarized.less");
|
|
17
|
-
|
|
18
|
-
perspective-viewer,
|
|
19
|
-
perspective-viewer[theme="Solarized Dark"] {
|
|
20
|
-
--theme-name: "Solarized Dark";
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
perspective-viewer[theme="Solarized Dark"] {
|
|
24
|
-
@include perspective-viewer-pro-dark--colors;
|
|
25
|
-
@include perspective-viewer-solarized;
|
|
26
|
-
@include perspective-viewer-solarized-dark--colors;
|
|
27
|
-
// @include perspective-viewer-solarized-dark--datagrid;
|
|
28
|
-
@include perspective-viewer-solarized-dark--d3fc;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
perspective-copy-menu[theme="Solarized Dark"],
|
|
32
|
-
perspective-export-menu[theme="Solarized Dark"],
|
|
33
|
-
perspective-dropdown[theme="Solarized Dark"],
|
|
34
|
-
perspective-date-column-style[theme="Solarized Dark"],
|
|
35
|
-
perspective-datetime-column-style[theme="Solarized Dark"],
|
|
36
|
-
perspective-number-column-style[theme="Solarized Dark"],
|
|
37
|
-
perspective-string-column-style[theme="Solarized Dark"] {
|
|
38
|
-
@include perspective-modal-solarized;
|
|
39
|
-
@include perspective-viewer-solarized-dark--colors;
|
|
40
|
-
background-color: #073642;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@mixin perspective-viewer-solarized-dark--colors {
|
|
44
|
-
color: #93a1a1;
|
|
45
|
-
background-color: #002b36;
|
|
46
|
-
|
|
47
|
-
--inactive--color: #586e75;
|
|
48
|
-
--inactive--border-color: var(--inactive--color);
|
|
49
|
-
--plugin--background: #073642;
|
|
50
|
-
|
|
51
|
-
--select-arrow--background-image: var(
|
|
52
|
-
--select-arrow-light--background-image
|
|
53
|
-
);
|
|
54
|
-
|
|
55
|
-
--select-arrow--hover--background-image: var(
|
|
56
|
-
--select-arrow-dark--background-image
|
|
57
|
-
);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
// @mixin perspective-viewer-solarized-dark--datagrid {}
|
|
61
|
-
|
|
62
|
-
@mixin perspective-viewer-solarized-dark--d3fc {
|
|
63
|
-
--d3fc-treedata--labels: white;
|
|
64
|
-
--d3fc-treedata--hover-highlight: white;
|
|
65
|
-
--d3fc-axis-ticks--color: #93a1a1;
|
|
66
|
-
--d3fc-axis--lines: #93a1a1;
|
|
67
|
-
--d3fc-gridline--color: #002b36;
|
|
68
|
-
--d3fc-legend--text: #93a1a1;
|
|
69
|
-
|
|
70
|
-
--d3fc-full--gradient: linear-gradient(
|
|
71
|
-
#cb4b16 0%,
|
|
72
|
-
#073642 50%,
|
|
73
|
-
#268bd2 100%
|
|
74
|
-
);
|
|
75
|
-
|
|
76
|
-
// --d3fc-positive--gradient: linear-gradient(#073642 0%, #268bd2 100%);
|
|
77
|
-
--d3fc-negative--gradient: linear-gradient(#cb4b16 0%, #073642 100%);
|
|
78
|
-
}
|
|
@@ -1,102 +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 "icons.less";
|
|
14
|
-
|
|
15
|
-
@import url("ref://pro.less");
|
|
16
|
-
|
|
17
|
-
perspective-viewer,
|
|
18
|
-
perspective-viewer[theme="Solarized"] {
|
|
19
|
-
--theme-name: "Solarized";
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
perspective-viewer[theme="Solarized"] {
|
|
23
|
-
@include perspective-viewer-solarized;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
perspective-copy-menu[theme="Solarized"],
|
|
27
|
-
perspective-export-menu[theme="Solarized"],
|
|
28
|
-
perspective-dropdown[theme="Solarized"],
|
|
29
|
-
perspective-date-column-style[theme="Solarized"],
|
|
30
|
-
perspective-datetime-column-style[theme="Solarized"],
|
|
31
|
-
perspective-number-column-style[theme="Solarized"],
|
|
32
|
-
perspective-string-column-style[theme="Solarized"] {
|
|
33
|
-
@include perspective-modal-solarized;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@mixin perspective-modal-solarized {
|
|
37
|
-
@include perspective-modal-pro;
|
|
38
|
-
@include perspective-viewer-solarized--colors;
|
|
39
|
-
|
|
40
|
-
background-color: #fdf6e3;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@mixin perspective-viewer-solarized {
|
|
44
|
-
@include perspective-viewer-pro;
|
|
45
|
-
@include perspective-viewer-solarized--colors;
|
|
46
|
-
@include perspective-viewer-solarized--datagrid;
|
|
47
|
-
@include perspective-viewer-solarized--d3fc;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@mixin perspective-viewer-solarized--colors {
|
|
51
|
-
color: #586e75;
|
|
52
|
-
background-color: #eee8d5;
|
|
53
|
-
--icon--color: #586e75;
|
|
54
|
-
--active--color: #268bd2;
|
|
55
|
-
--error--color: #cb4b16;
|
|
56
|
-
--inactive--color: #93a1a1;
|
|
57
|
-
--inactive--border-color: var(--inactive--color);
|
|
58
|
-
--plugin--background: #fdf6e3;
|
|
59
|
-
|
|
60
|
-
// Column type indicators
|
|
61
|
-
--float--column-type--color: #268bd2;
|
|
62
|
-
--string--column-type--color: #cb4b16;
|
|
63
|
-
--date--column-type--color: #2aa198;
|
|
64
|
-
--boolean--column-type--color: #b58900;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@mixin perspective-viewer-solarized--datagrid {
|
|
68
|
-
--rt-pos-cell--color: #268bd2 !important;
|
|
69
|
-
--rt-neg-cell--color: #cb4b16 !important;
|
|
70
|
-
--rt-hover--border-color: #ccc;
|
|
71
|
-
--rt--border-color: #93a1a1;
|
|
72
|
-
}
|
|
73
|
-
x {
|
|
74
|
-
color: #cb4b16;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
@mixin perspective-viewer-solarized--d3fc {
|
|
78
|
-
--d3fc-treedata--labels: black;
|
|
79
|
-
--d3fc-treedata--hover-highlight: black;
|
|
80
|
-
|
|
81
|
-
--d3fc-axis-ticks--color: #586e75;
|
|
82
|
-
--d3fc-gridline--color: #eee8d5;
|
|
83
|
-
--d3fc-series: #268bd2;
|
|
84
|
-
--d3fc-series-1: #268bd2;
|
|
85
|
-
--d3fc-series-2: #cb4b16;
|
|
86
|
-
--d3fc-series-3: #b58900;
|
|
87
|
-
--d3fc-series-4: #859900;
|
|
88
|
-
--d3fc-series-5: #2aa198;
|
|
89
|
-
|
|
90
|
-
--d3fc-series-6: #6c71c4;
|
|
91
|
-
--d3fc-series-7: #d33682;
|
|
92
|
-
|
|
93
|
-
--d3fc-positive--gradient: linear-gradient(
|
|
94
|
-
#268bd2 0%,
|
|
95
|
-
#2aa198,
|
|
96
|
-
#859900,
|
|
97
|
-
#b58900,
|
|
98
|
-
#cb4b16,
|
|
99
|
-
#dc322f,
|
|
100
|
-
#d33682 100%
|
|
101
|
-
);
|
|
102
|
-
}
|
|
@@ -1,145 +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 "icons.less";
|
|
14
|
-
|
|
15
|
-
@import url("ref://pro-dark.less");
|
|
16
|
-
|
|
17
|
-
perspective-viewer,
|
|
18
|
-
perspective-viewer[theme="Vaporwave"] {
|
|
19
|
-
--theme-name: "Vaporwave";
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
perspective-viewer[theme="Vaporwave"] {
|
|
23
|
-
@include perspective-viewer-pro-dark;
|
|
24
|
-
@include perspective-viewer-vaporwave--colors;
|
|
25
|
-
@include perspective-viewer-vaporwave--animation;
|
|
26
|
-
@include perspective-viewer-vaporwave--fonts;
|
|
27
|
-
@include perspective-viewer-vaporwave--datagrid;
|
|
28
|
-
@include perspective-viewer-vaporwave--d3fc;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
perspective-copy-menu[theme="Vaporwave"],
|
|
32
|
-
perspective-export-menu[theme="Vaporwave"],
|
|
33
|
-
perspective-dropdown[theme="Vaporwave"],
|
|
34
|
-
perspective-date-column-style[theme="Vaporwave"],
|
|
35
|
-
perspective-datetime-column-style[theme="Vaporwave"],
|
|
36
|
-
perspective-number-column-style[theme="Vaporwave"],
|
|
37
|
-
perspective-string-column-style[theme="Vaporwave"] {
|
|
38
|
-
@include perspective-modal-pro-dark;
|
|
39
|
-
@include perspective-viewer-vaporwave--colors;
|
|
40
|
-
|
|
41
|
-
background-color: #07081d;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
@mixin perspective-viewer-vaporwave--colors {
|
|
45
|
-
color: #49acff;
|
|
46
|
-
background-color: rgb(7, 8, 29) !important;
|
|
47
|
-
--icon--color: #49acff;
|
|
48
|
-
--inactive--color: rgb(19, 33, 50) !important;
|
|
49
|
-
--inactive--border-color: var(--inactive--color);
|
|
50
|
-
--plugin--background: rgb(7, 8, 29) !important;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@mixin perspective-viewer-vaporwave--animation {
|
|
54
|
-
--status-icon-updating-keyframes-start--filter: opacity(1);
|
|
55
|
-
--status-icon-updating-keyframes-end--filter: opacity(0);
|
|
56
|
-
--status-icon-updating-keyframes-start--transform: scale(1);
|
|
57
|
-
--status-icon-updating-keyframes-end--transform: scale(0.5);
|
|
58
|
-
--status-icon-keyframes-start--transform: scale(1.25);
|
|
59
|
-
--status-icon-keyframes-end--transform: scale(1);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@mixin perspective-viewer-vaporwave--datagrid {
|
|
63
|
-
--pp-color-1: #092132;
|
|
64
|
-
--pp-color-2: #42b6e6;
|
|
65
|
-
--rt-pos-cell--color: #42b6e6 !important;
|
|
66
|
-
--rt-hover--border-color: var(--pp-color-1) !important;
|
|
67
|
-
|
|
68
|
-
// FIXME: broken in shadow DOM. Can be fixed with a new custom property allowing empty header cell backgrounds
|
|
69
|
-
// to be styled
|
|
70
|
-
regular-table table tbody th:empty {
|
|
71
|
-
background: linear-gradient(
|
|
72
|
-
to right,
|
|
73
|
-
transparent 9px,
|
|
74
|
-
rgb(19, 33, 50) 10px,
|
|
75
|
-
transparent 11px
|
|
76
|
-
);
|
|
77
|
-
background-repeat: no-repeat;
|
|
78
|
-
background-position: 0px -10px;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@mixin perspective-viewer-vaporwave--d3fc {
|
|
83
|
-
--d3fc-axis-ticks--color: #49acff;
|
|
84
|
-
--d3fc-gridline--color: rgb(19, 33, 50);
|
|
85
|
-
--d3fc-series: #01cdfe;
|
|
86
|
-
--d3fc-series-1: #01cdfe;
|
|
87
|
-
--d3fc-series-2: #ff71ce;
|
|
88
|
-
--d3fc-series-3: #05ffa1;
|
|
89
|
-
--d3fc-series-4: #b967ff;
|
|
90
|
-
--d3fc-series-5: #fffb96;
|
|
91
|
-
|
|
92
|
-
--d3fc-series-6: hsl(192, 99%, 25%);
|
|
93
|
-
--d3fc-series-7: hsl(321, 100%, 36%);
|
|
94
|
-
--d3fc-series-8: hsl(192, 99%, 25%);
|
|
95
|
-
--d3fc-series-9: hsl(157, 100%, 25%);
|
|
96
|
-
--d3fc-series-10: hsl(272, 100%, 35%);
|
|
97
|
-
|
|
98
|
-
--d3fc-negative--gradient: linear-gradient(
|
|
99
|
-
#f3d431,
|
|
100
|
-
#efb92d,
|
|
101
|
-
#ed9c25,
|
|
102
|
-
#eb7e20,
|
|
103
|
-
#e75d1e,
|
|
104
|
-
#d14632,
|
|
105
|
-
#b03e38,
|
|
106
|
-
#8c3a36,
|
|
107
|
-
#643633,
|
|
108
|
-
#07081d
|
|
109
|
-
) !important;
|
|
110
|
-
|
|
111
|
-
--d3fc-positive--gradient: linear-gradient(
|
|
112
|
-
#07081d,
|
|
113
|
-
#2e4463,
|
|
114
|
-
#1e588a,
|
|
115
|
-
#086da7,
|
|
116
|
-
#0082b9,
|
|
117
|
-
#039ac7,
|
|
118
|
-
#12b1d4,
|
|
119
|
-
#2bc8e2,
|
|
120
|
-
#3ddff0,
|
|
121
|
-
#61f4fb
|
|
122
|
-
) !important;
|
|
123
|
-
|
|
124
|
-
--d3fc-full--gradient: linear-gradient(
|
|
125
|
-
#f3d431,
|
|
126
|
-
#efb92d,
|
|
127
|
-
#ed9c25,
|
|
128
|
-
#eb7e20,
|
|
129
|
-
#e75d1e,
|
|
130
|
-
#d14632,
|
|
131
|
-
#b03e38,
|
|
132
|
-
#8c3a36,
|
|
133
|
-
#643633,
|
|
134
|
-
#07081d,
|
|
135
|
-
#2e4463,
|
|
136
|
-
#1e588a,
|
|
137
|
-
#086da7,
|
|
138
|
-
#0082b9,
|
|
139
|
-
#039ac7,
|
|
140
|
-
#12b1d4,
|
|
141
|
-
#2bc8e2,
|
|
142
|
-
#3ddff0,
|
|
143
|
-
#61f4fb
|
|
144
|
-
) !important;
|
|
145
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|