@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.
- package/dist/cdn/perspective-viewer.js +2 -2
- package/dist/cdn/perspective-viewer.js.map +4 -4
- package/dist/css/botanical.css +1 -0
- 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/extensions.d.ts +32 -1
- package/dist/esm/perspective-viewer.d.ts +1 -0
- 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/esm/ts-rs/GroupRollupMode.d.ts +1 -0
- package/dist/esm/ts-rs/ViewerConfigUpdate.d.ts +2 -0
- package/dist/wasm/perspective-viewer.d.ts +57 -53
- package/dist/wasm/perspective-viewer.js +197 -164
- package/dist/wasm/perspective-viewer.wasm +0 -0
- package/dist/wasm/perspective-viewer.wasm.d.ts +17 -18
- package/package.json +9 -6
- 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} +161 -159
- 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/css/config-selector.css +441 -0
- 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 +374 -185
- 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 +21 -10
- package/src/rust/components/column_selector/sort_column.rs +23 -13
- package/src/rust/components/column_selector.rs +189 -100
- 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 +29 -7
- package/src/rust/components/containers/scroll_panel.rs +8 -1
- package/src/rust/components/containers/select.rs +3 -3
- package/src/rust/components/containers/sidebar_close_button.rs +1 -1
- package/src/rust/components/containers/split_panel.rs +3 -2
- 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 -92
- 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 -111
- 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 +20 -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/registry.rs +8 -1
- package/src/rust/renderer.rs +83 -9
- package/src/rust/session/column_defaults_update.rs +18 -0
- package/src/rust/session/metadata.rs +23 -2
- package/src/rust/session/props.rs +178 -0
- package/src/rust/session/replace_expression_update.rs +1 -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 +22 -4
- 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 -20
- 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/src/ts/extensions.ts +73 -2
- package/src/ts/perspective-viewer.ts +1 -0
- package/src/ts/ts-rs/GroupRollupMode.ts +3 -0
- package/src/ts/ts-rs/ViewerConfigUpdate.ts +2 -1
- package/tsconfig.json +1 -0
- package/dist/css/variables.css +0 -0
- package/src/less/column-dropdown.less +0 -95
- package/src/less/config-selector.less +0 -363
- 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/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-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline0.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline1.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline2.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → perspective-viewer-68fef752754ffbc6}/inline3.js +0 -0
- /package/dist/wasm/snippets/{perspective-viewer-1586156e058be573 → 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
|
@@ -0,0 +1,255 @@
|
|
|
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="Gruvbox Dark"] {
|
|
17
|
+
--psp-theme-name: "Gruvbox Dark";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
perspective-viewer[theme="Gruvbox Dark"] {
|
|
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-gruvbox-dark--colors */
|
|
113
|
+
--theme-bg0: #282828;
|
|
114
|
+
--theme-bg1: #3c3836;
|
|
115
|
+
--theme-bg2: #7c6f64;
|
|
116
|
+
|
|
117
|
+
--theme-gray: #928374;
|
|
118
|
+
|
|
119
|
+
--theme-fg0: #fbf1c7;
|
|
120
|
+
--theme-fg1: #ebdbb2;
|
|
121
|
+
--theme-fg2: #a89984;
|
|
122
|
+
|
|
123
|
+
--theme-red: #cc241d;
|
|
124
|
+
--theme-green: #98871a;
|
|
125
|
+
--theme-yellow: #d79921;
|
|
126
|
+
--theme-blue: #458588;
|
|
127
|
+
--theme-purple: #b16286;
|
|
128
|
+
--theme-aqua: #689d5a;
|
|
129
|
+
--theme-orange: #d65d0e;
|
|
130
|
+
|
|
131
|
+
--theme-alt-red: #fb4934;
|
|
132
|
+
--theme-alt-green: #b8bb26;
|
|
133
|
+
--theme-alt-yellow: #fabd2f;
|
|
134
|
+
--theme-alt-blue: #83a598;
|
|
135
|
+
--theme-alt-purple: #d3869b;
|
|
136
|
+
--theme-alt-aqua: #8ec07c;
|
|
137
|
+
--theme-alt-orange: #fe8019;
|
|
138
|
+
|
|
139
|
+
color: var(--theme-fg0);
|
|
140
|
+
background-color: var(--theme-bg0);
|
|
141
|
+
--psp--color: var(--theme-fg1);
|
|
142
|
+
--psp-inactive--color: var(--theme-fg2);
|
|
143
|
+
--psp-inactive--border-color: var(--theme-bg2);
|
|
144
|
+
--psp--background-color: var(--theme-bg1);
|
|
145
|
+
--psp-status-icon--connected--color: var(--theme-aqua);
|
|
146
|
+
--psp-status-icon--initializing--color: var(--theme-yellow);
|
|
147
|
+
--psp-status-icon--psp-error--color: var(--theme-red);
|
|
148
|
+
|
|
149
|
+
/* perspective-viewer-gruvbox-dark--datagrid */
|
|
150
|
+
--psp-datagrid--pos-cell--color: var(--theme-alt-blue);
|
|
151
|
+
--psp-datagrid--neg-cell--color: var(--theme-alt-red);
|
|
152
|
+
|
|
153
|
+
/* perspective-viewer-gruvbox-dark--d3fc */
|
|
154
|
+
--psp-d3fc--axis-ticks--color: var(--theme-fg1);
|
|
155
|
+
--psp-d3fc--gridline--color: var(--theme-bg2);
|
|
156
|
+
--psp-d3fc--series--color: var(--theme-blue);
|
|
157
|
+
--psp-d3fc--series-1--color: var(--theme-blue);
|
|
158
|
+
--psp-d3fc--series-2--color: var(--theme-red);
|
|
159
|
+
--psp-d3fc--series-3--color: var(--theme-green);
|
|
160
|
+
--psp-d3fc--series-4--color: var(--theme-purple);
|
|
161
|
+
--psp-d3fc--series-5--color: var(--theme-aqua);
|
|
162
|
+
--psp-d3fc--series-6--color: var(--theme-alt-blue);
|
|
163
|
+
--psp-d3fc--series-7--color: var(--theme-alt-red);
|
|
164
|
+
--psp-d3fc--series-8--color: var(--theme-alt-green);
|
|
165
|
+
--psp-d3fc--series-9--color: var(--theme-alt-purple);
|
|
166
|
+
--psp-d3fc--series-10--color: var(--theme-alt-aqua);
|
|
167
|
+
|
|
168
|
+
--psp-d3fc--neg-gradient--background: linear-gradient(
|
|
169
|
+
var(--theme-bg0),
|
|
170
|
+
var(--theme-red),
|
|
171
|
+
var(--theme-alt-red)
|
|
172
|
+
) !important;
|
|
173
|
+
|
|
174
|
+
--psp-d3fc--pos-gradient--background: linear-gradient(
|
|
175
|
+
var(--theme-bg0),
|
|
176
|
+
var(--theme-blue),
|
|
177
|
+
var(--theme-alt-blue)
|
|
178
|
+
) !important;
|
|
179
|
+
|
|
180
|
+
--psp-d3fc--full-gradient--background: linear-gradient(
|
|
181
|
+
var(--theme-alt-red),
|
|
182
|
+
var(--theme-red),
|
|
183
|
+
var(--theme-bg0),
|
|
184
|
+
var(--theme-blue),
|
|
185
|
+
var(--theme-alt-blue)
|
|
186
|
+
) !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
perspective-copy-menu[theme="Gruvbox Dark"],
|
|
190
|
+
perspective-export-menu[theme="Gruvbox Dark"],
|
|
191
|
+
perspective-dropdown[theme="Gruvbox Dark"] {
|
|
192
|
+
/* perspective-viewer-pro-dark--colors (overrides) */
|
|
193
|
+
background-color: #242526;
|
|
194
|
+
color: white;
|
|
195
|
+
--psp--color: white;
|
|
196
|
+
--psp-active--color: #2770a9;
|
|
197
|
+
--psp-error--color: #ff9485;
|
|
198
|
+
--psp-inactive--color: #61656e;
|
|
199
|
+
--psp-inactive--border-color: #4c505b;
|
|
200
|
+
--psp--background-color: #242526;
|
|
201
|
+
--psp-active--background: rgba(39, 113, 170, 0.5);
|
|
202
|
+
--psp-expression--operator--color: #c5c9d0;
|
|
203
|
+
--psp-expression--function--color: #22a0ce;
|
|
204
|
+
--psp-expression--psp-error--color: rgb(255, 136, 136);
|
|
205
|
+
--psp-calendar--filter: invert(1);
|
|
206
|
+
--psp-warning--color: #242526;
|
|
207
|
+
--psp-warning--background: var(--psp--color);
|
|
208
|
+
--psp-icon--select-arrow--mask-image: var(
|
|
209
|
+
--psp-icon--select-arrow-light--mask-image
|
|
210
|
+
);
|
|
211
|
+
--psp-icon--select-arrow-hover--mask-image: var(
|
|
212
|
+
--psp-icon--select-arrow-dark--mask-image
|
|
213
|
+
);
|
|
214
|
+
--psp-code-editor--symbol--color: white;
|
|
215
|
+
--psp-code-editor--literal--color: #7dc3f0;
|
|
216
|
+
--psp-code-editor--operator--color: rgb(23, 166, 123);
|
|
217
|
+
--psp-code-editor--comment--color: rgb(204, 120, 48);
|
|
218
|
+
--psp-code-editor--column--color: #e18ee1;
|
|
219
|
+
|
|
220
|
+
border: 1px solid #4c505b;
|
|
221
|
+
|
|
222
|
+
/* perspective-viewer-gruvbox-dark--colors */
|
|
223
|
+
--theme-bg0: #282828;
|
|
224
|
+
--theme-bg1: #3c3836;
|
|
225
|
+
--theme-bg2: #7c6f64;
|
|
226
|
+
--theme-gray: #928374;
|
|
227
|
+
--theme-fg0: #fbf1c7;
|
|
228
|
+
--theme-fg1: #ebdbb2;
|
|
229
|
+
--theme-fg2: #a89984;
|
|
230
|
+
--theme-red: #cc241d;
|
|
231
|
+
--theme-green: #98871a;
|
|
232
|
+
--theme-yellow: #d79921;
|
|
233
|
+
--theme-blue: #458588;
|
|
234
|
+
--theme-purple: #b16286;
|
|
235
|
+
--theme-aqua: #689d5a;
|
|
236
|
+
--theme-orange: #d65d0e;
|
|
237
|
+
--theme-alt-red: #fb4934;
|
|
238
|
+
--theme-alt-green: #b8bb26;
|
|
239
|
+
--theme-alt-yellow: #fabd2f;
|
|
240
|
+
--theme-alt-blue: #83a598;
|
|
241
|
+
--theme-alt-purple: #d3869b;
|
|
242
|
+
--theme-alt-aqua: #8ec07c;
|
|
243
|
+
--theme-alt-orange: #fe8019;
|
|
244
|
+
|
|
245
|
+
color: var(--theme-fg0);
|
|
246
|
+
--psp--color: var(--theme-fg1);
|
|
247
|
+
--psp-inactive--color: var(--theme-fg2);
|
|
248
|
+
--psp-inactive--border-color: var(--theme-bg2);
|
|
249
|
+
--psp--background-color: var(--theme-bg1);
|
|
250
|
+
--psp-status-icon--connected--color: var(--theme-aqua);
|
|
251
|
+
--psp-status-icon--initializing--color: var(--theme-yellow);
|
|
252
|
+
--psp-status-icon--psp-error--color: var(--theme-red);
|
|
253
|
+
|
|
254
|
+
background-color: var(--theme-bg0);
|
|
255
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
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="Gruvbox Light"] {
|
|
17
|
+
--psp-theme-name: "Gruvbox Light";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
perspective-viewer[theme="Gruvbox Light"] {
|
|
21
|
+
/* perspective-viewer-gruvbox-light--colors */
|
|
22
|
+
--theme-fg0: #282828;
|
|
23
|
+
--theme-fg1: #3c3836;
|
|
24
|
+
--theme-fg2: #7c6f64;
|
|
25
|
+
|
|
26
|
+
--theme-gray: #928374;
|
|
27
|
+
|
|
28
|
+
--theme-bg0: #fbf1c7;
|
|
29
|
+
--theme-bg1: #ebdbb2;
|
|
30
|
+
--theme-bg2: #a89984;
|
|
31
|
+
|
|
32
|
+
--theme-red: #cc241d;
|
|
33
|
+
--theme-green: #98871a;
|
|
34
|
+
--theme-yellow: #d79921;
|
|
35
|
+
--theme-blue: #458588;
|
|
36
|
+
--theme-purple: #b16286;
|
|
37
|
+
--theme-aqua: #689d5a;
|
|
38
|
+
--theme-orange: #d65d0e;
|
|
39
|
+
|
|
40
|
+
--theme-alt-red: #9d0006;
|
|
41
|
+
--theme-alt-green: #79740e;
|
|
42
|
+
--theme-alt-yellow: #b57614;
|
|
43
|
+
--theme-alt-blue: #076678;
|
|
44
|
+
--theme-alt-purple: #8f3f71;
|
|
45
|
+
--theme-alt-aqua: #427b58;
|
|
46
|
+
--theme-alt-orange: #af3a03;
|
|
47
|
+
|
|
48
|
+
color: var(--theme-fg1);
|
|
49
|
+
background-color: var(--theme-bg1);
|
|
50
|
+
--psp--color: var(--theme-fg0);
|
|
51
|
+
--psp-inactive--color: var(--theme-fg2);
|
|
52
|
+
--psp-inactive--border-color: var(--theme-bg2);
|
|
53
|
+
--psp--background-color: var(--theme-bg0);
|
|
54
|
+
--psp-status-icon--connected--color: var(--theme-aqua);
|
|
55
|
+
--psp-status-icon--initializing--color: var(--theme-yellow);
|
|
56
|
+
--psp-status-icon--psp-error--color: var(--theme-red);
|
|
57
|
+
|
|
58
|
+
/* perspective-viewer-gruvbox-light--datagrid */
|
|
59
|
+
--psp-datagrid--pos-cell--color: var(--theme-blue);
|
|
60
|
+
--psp-datagrid--neg-cell--color: var(--theme-red);
|
|
61
|
+
|
|
62
|
+
/* perspective-viewer-gruvbox-light--d3fc */
|
|
63
|
+
--psp-d3fc--axis-ticks--color: var(--theme-fg1);
|
|
64
|
+
--psp-d3fc--gridline--color: var(--theme-bg2);
|
|
65
|
+
--psp-d3fc--series--color: var(--theme-blue);
|
|
66
|
+
--psp-d3fc--series-1--color: var(--theme-blue);
|
|
67
|
+
--psp-d3fc--series-2--color: var(--theme-red);
|
|
68
|
+
--psp-d3fc--series-3--color: var(--theme-green);
|
|
69
|
+
--psp-d3fc--series-4--color: var(--theme-purple);
|
|
70
|
+
--psp-d3fc--series-5--color: var(--theme-aqua);
|
|
71
|
+
--psp-d3fc--series-6--color: var(--theme-alt-blue);
|
|
72
|
+
--psp-d3fc--series-7--color: var(--theme-alt-red);
|
|
73
|
+
--psp-d3fc--series-8--color: var(--theme-alt-green);
|
|
74
|
+
--psp-d3fc--series-9--color: var(--theme-alt-purple);
|
|
75
|
+
--psp-d3fc--series-10--color: var(--theme-alt-aqua);
|
|
76
|
+
|
|
77
|
+
--psp-d3fc--neg-gradient--background: linear-gradient(
|
|
78
|
+
var(--theme-bg1),
|
|
79
|
+
var(--theme-red),
|
|
80
|
+
var(--theme-alt-red)
|
|
81
|
+
) !important;
|
|
82
|
+
|
|
83
|
+
--psp-d3fc--pos-gradient--background: linear-gradient(
|
|
84
|
+
var(--theme-bg1),
|
|
85
|
+
var(--theme-blue),
|
|
86
|
+
var(--theme-alt-blue)
|
|
87
|
+
) !important;
|
|
88
|
+
|
|
89
|
+
--psp-d3fc--full-gradient--background: linear-gradient(
|
|
90
|
+
var(--theme-alt-red),
|
|
91
|
+
var(--theme-red),
|
|
92
|
+
var(--theme-bg1),
|
|
93
|
+
var(--theme-blue),
|
|
94
|
+
var(--theme-alt-blue)
|
|
95
|
+
) !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
perspective-copy-menu[theme="Gruvbox Light"],
|
|
99
|
+
perspective-export-menu[theme="Gruvbox Light"],
|
|
100
|
+
perspective-dropdown[theme="Gruvbox Light"] {
|
|
101
|
+
/* perspective-viewer-gruvbox-light--colors */
|
|
102
|
+
--theme-fg0: #282828;
|
|
103
|
+
--theme-fg1: #3c3836;
|
|
104
|
+
--theme-fg2: #7c6f64;
|
|
105
|
+
--theme-gray: #928374;
|
|
106
|
+
--theme-bg0: #fbf1c7;
|
|
107
|
+
--theme-bg1: #ebdbb2;
|
|
108
|
+
--theme-bg2: #a89984;
|
|
109
|
+
--theme-red: #cc241d;
|
|
110
|
+
--theme-green: #98871a;
|
|
111
|
+
--theme-yellow: #d79921;
|
|
112
|
+
--theme-blue: #458588;
|
|
113
|
+
--theme-purple: #b16286;
|
|
114
|
+
--theme-aqua: #689d5a;
|
|
115
|
+
--theme-orange: #d65d0e;
|
|
116
|
+
--theme-alt-red: #9d0006;
|
|
117
|
+
--theme-alt-green: #79740e;
|
|
118
|
+
--theme-alt-yellow: #b57614;
|
|
119
|
+
--theme-alt-blue: #076678;
|
|
120
|
+
--theme-alt-purple: #8f3f71;
|
|
121
|
+
--theme-alt-aqua: #427b58;
|
|
122
|
+
--theme-alt-orange: #af3a03;
|
|
123
|
+
|
|
124
|
+
color: var(--theme-fg1);
|
|
125
|
+
--psp--color: var(--theme-fg0);
|
|
126
|
+
--psp-inactive--color: var(--theme-fg2);
|
|
127
|
+
--psp-inactive--border-color: var(--theme-bg2);
|
|
128
|
+
--psp--background-color: var(--theme-bg0);
|
|
129
|
+
--psp-status-icon--connected--color: var(--theme-aqua);
|
|
130
|
+
--psp-status-icon--initializing--color: var(--theme-yellow);
|
|
131
|
+
--psp-status-icon--psp-error--color: var(--theme-red);
|
|
132
|
+
|
|
133
|
+
background-color: var(--theme-bg0);
|
|
134
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
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
|
+
perspective-viewer,
|
|
14
|
+
perspective-workspace,
|
|
15
|
+
perspective-copy-menu,
|
|
16
|
+
perspective-export-menu,
|
|
17
|
+
perspective-dropdown,
|
|
18
|
+
perspective-date-column-style,
|
|
19
|
+
perspective-datetime-column-style,
|
|
20
|
+
perspective-number-column-style,
|
|
21
|
+
perspective-string-column-style {
|
|
22
|
+
/* Icons */
|
|
23
|
+
--psp-column-type--integer--mask-image: url("../svg/number-type.svg");
|
|
24
|
+
--psp-column-type--float--mask-image: var(
|
|
25
|
+
--psp-column-type--integer--mask-image
|
|
26
|
+
);
|
|
27
|
+
--psp-column-type--string--mask-image: url("../svg/string-type.svg");
|
|
28
|
+
--psp-column-type--date--mask-image: url("../svg/date-type.svg");
|
|
29
|
+
--psp-column-type--boolean--mask-image: url("../svg/boolean-type.svg");
|
|
30
|
+
--psp-column-type--datetime--mask-image: var(
|
|
31
|
+
--psp-column-type--date--mask-image
|
|
32
|
+
);
|
|
33
|
+
--psp-icon--column-drag-handle--mask-image: url("../svg/drag-handle.svg");
|
|
34
|
+
--psp-icon--radio-on--mask-image: url("../svg/radio-on.svg");
|
|
35
|
+
--psp-icon--radio-hover--mask-image: url("../svg/radio-hover.svg");
|
|
36
|
+
--psp-icon--radio-off--mask-image: url("../svg/radio-off.svg");
|
|
37
|
+
--psp-icon--checkbox-on--mask-image: url("../svg/checkbox-on.svg");
|
|
38
|
+
--psp-icon--checkbox-hover--mask-image: url("../svg/checkbox-hover.svg");
|
|
39
|
+
--psp-icon--checkbox-off--mask-image: url("../svg/checkbox-off.svg");
|
|
40
|
+
--psp-icon--column-settings--mask-image: url("../svg/column-settings-icon.svg");
|
|
41
|
+
--psp-icon--sort-asc--mask-image: url("../svg/sort-asc-icon.svg");
|
|
42
|
+
--psp-icon--sort-desc--mask-image: url("../svg/sort-desc-icon.svg");
|
|
43
|
+
--psp-icon--sort-col-asc--mask-image: url("../svg/sort-col-asc-icon.svg");
|
|
44
|
+
--psp-icon--sort-col-desc--mask-image: url("../svg/sort-col-desc-icon.svg");
|
|
45
|
+
--psp-icon--sort-abs-asc--mask-image: url("../svg/sort-abs-asc-icon.svg");
|
|
46
|
+
--psp-icon--sort-abs-desc--mask-image: url("../svg/sort-abs-desc-icon.svg");
|
|
47
|
+
--psp-icon--sort-abs-col-asc--mask-image: url("../svg/sort-abs-col-asc-icon.svg");
|
|
48
|
+
--psp-icon--sort-abs-col-desc--mask-image: url("../svg/sort-abs-col-desc-icon.svg");
|
|
49
|
+
--psp-icon--sort-none--mask-image: url("../svg/sort-none-icon.svg");
|
|
50
|
+
--psp-icon--add-expression--mask-image: url("../svg/expression.svg");
|
|
51
|
+
--psp-icon--close--mask-image: url("../svg/close-icon.svg");
|
|
52
|
+
--psp-label--inactive-column-selector--content: url("../svg/checkbox-unchecked-icon.svg");
|
|
53
|
+
--psp-label--active-column-selector--content: url("../svg/checkbox-checked-icon.svg");
|
|
54
|
+
--psp-icon--select-arrow-light--mask-image: url("../svg/dropdown-selector-light.svg");
|
|
55
|
+
--psp-icon--select-arrow-dark--mask-image: url("../svg/dropdown-selector.svg");
|
|
56
|
+
--psp-icon-overflow-hint--content: "!";
|
|
57
|
+
--psp-label--reset-button-icon--content: "refresh";
|
|
58
|
+
--psp-label--save-button-icon--content: "save";
|
|
59
|
+
|
|
60
|
+
--psp-icon--updating--mask-image: url("../svg/updating.gif");
|
|
61
|
+
--psp-icon--downloading--mask-image: url("../svg/downloading.gif");
|
|
62
|
+
--psp-icon--status-ok--mask-image: url(../svg/status_ok.svg);
|
|
63
|
+
--psp-icon--export--mask-image: url("../svg/export-icon.svg");
|
|
64
|
+
--psp-icon--free-scroll--mask-image: url("../svg/free-scroll-icon.svg");
|
|
65
|
+
--psp-icon--reset--mask-image: url("../svg/revert-icon.svg");
|
|
66
|
+
--psp-icon--copy--mask-image: url("../svg/duplicate-icon.svg");
|
|
67
|
+
--psp-icon--theme--mask-image: url("../svg/theme-icon.svg");
|
|
68
|
+
|
|
69
|
+
--psp-icon--drawer-tab--mask-image: url(../svg/drawer-tab.svg);
|
|
70
|
+
--psp-icon--drawer-tab-hover--mask-image: url(../svg/drawer-tab-hover.svg);
|
|
71
|
+
--psp-icon--drawer-tab-inverted--mask-image: url(../svg/drawer-tab-invert.svg);
|
|
72
|
+
--psp-icon--drawer-tab-inverted-hover--mask-image: url(../svg/drawer-tab-invert-hover.svg);
|
|
73
|
+
|
|
74
|
+
--psp-sidebar--background: var(--psp--background-color)
|
|
75
|
+
url(../svg/bg-pattern.png);
|
|
76
|
+
|
|
77
|
+
/* Plugin Selector */
|
|
78
|
+
--psp-plugin-selector--candlestick--content: url(../svg/mega-menu-icons-candlestick.svg);
|
|
79
|
+
--psp-plugin-selector--heatmap--content: url(../svg/mega-menu-icons-heatmap.svg);
|
|
80
|
+
--psp-plugin-selector--map-scatter--content: url(../svg/mega-menu-icons-map-scatter.svg);
|
|
81
|
+
--psp-plugin-selector--ohlc--content: url(../svg/mega-menu-icons-ohlc.svg);
|
|
82
|
+
--psp-plugin-selector--sunburst--content: url(../svg/mega-menu-icons-sunburst.svg);
|
|
83
|
+
--psp-plugin-selector--treemap--content: url(../svg/mega-menu-icons-treemap.svg);
|
|
84
|
+
--psp-plugin-selector--x-bar--content: url(../svg/mega-menu-icons-x-bar.svg);
|
|
85
|
+
--psp-plugin-selector--x-y-line--content: url(../svg/mega-menu-icons-x-y-line.svg);
|
|
86
|
+
--psp-plugin-selector--x-y-scatter--content: url(../svg/mega-menu-icons-x-y-scatter.svg);
|
|
87
|
+
--psp-plugin-selector--y-area--content: url(../svg/mega-menu-icons-y-area.svg);
|
|
88
|
+
--psp-plugin-selector--y-bar--content: url(../svg/mega-menu-icons-y-bar.svg);
|
|
89
|
+
--psp-plugin-selector--y-line--content: url(../svg/mega-menu-icons-y-line.svg);
|
|
90
|
+
--psp-plugin-selector--y-scatter--content: url(../svg/mega-menu-icons-y-scatter.svg);
|
|
91
|
+
--psp-plugin-selector--datagrid--content: url(../svg/mega-menu-icons-datagrid.svg);
|
|
92
|
+
|
|
93
|
+
/* Colors */
|
|
94
|
+
color: #161616;
|
|
95
|
+
background-color: transparent;
|
|
96
|
+
--psp--color: #161616;
|
|
97
|
+
--psp-inactive--color: #ababab;
|
|
98
|
+
--psp-inactive--border-color: #dadada;
|
|
99
|
+
|
|
100
|
+
--psp-active--color: #2670a9;
|
|
101
|
+
--psp-error--color: #ff471e;
|
|
102
|
+
--psp--background-color: #ffffff;
|
|
103
|
+
--psp-icon-overflow-hint--color: rgba(0, 0, 0, 0.2);
|
|
104
|
+
--psp-select--background-color: none;
|
|
105
|
+
--psp-warning--background: #042121;
|
|
106
|
+
--psp-warning--color: #fdfffd;
|
|
107
|
+
|
|
108
|
+
/* TODO deprecate me */
|
|
109
|
+
--psp-icon-overflow-hint--color: #fdfffd;
|
|
110
|
+
|
|
111
|
+
/* Datagrid */
|
|
112
|
+
/* `regular-table` icons */
|
|
113
|
+
--psp-label--column-style-open-button--content: "style";
|
|
114
|
+
--psp-label--column-style-close-button--content: ">\00a0 style";
|
|
115
|
+
--psp-label--tree-collapse--content: "-";
|
|
116
|
+
--psp-label--tree-expand--content: "+";
|
|
117
|
+
--psp-toolbar-scroll-lock--content: url("../svg/free-scroll-icon.svg");
|
|
118
|
+
--psp-toolbar-scroll-lock-active--content: url("../svg/align-scroll-icon.svg");
|
|
119
|
+
--psp-toolbar-edit-mode-read-only--content: url("../svg/read-only-icon.svg");
|
|
120
|
+
--psp-toolbar-edit-mode-edit--content: url("../svg/editable-icon.svg");
|
|
121
|
+
--psp-toolbar-edit-mode-select-row--content: url("../svg/datagrid-select-row.svg");
|
|
122
|
+
--psp-toolbar-edit-mode-select-column--content: url("../svg/datagrid-select-column.svg");
|
|
123
|
+
--psp-toolbar-edit-mode-select-region--content: url("../svg/datagrid-select-region.svg");
|
|
124
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
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
|
+
perspective-viewer,
|
|
14
|
+
perspective-dropdown {
|
|
15
|
+
/* Config */
|
|
16
|
+
--psp-label--group-by--content: "Gruppiere nach";
|
|
17
|
+
--psp-label--split-by--content: "Geteilt nach";
|
|
18
|
+
--psp-label--sort--content: "Sortieren nach";
|
|
19
|
+
--psp-label--filter--content: "Wo";
|
|
20
|
+
--psp-label--transpose-button--content: "Tauschen";
|
|
21
|
+
--psp-label--config-button--content: "Konfigurieren";
|
|
22
|
+
--psp-label--all-columns--content: "Alle Spalten";
|
|
23
|
+
--psp-label--untitled--content: "Ohne Titel";
|
|
24
|
+
|
|
25
|
+
/* Plugin names */
|
|
26
|
+
--psp-plugin-name--datagrid--content: "Datengitter";
|
|
27
|
+
--psp-plugin-name--treemap--content: "Baumkarte";
|
|
28
|
+
--psp-plugin-name--sunburst--content: "Sonnendurchbruch";
|
|
29
|
+
--psp-plugin-name--heatmap--content: "Heatmap";
|
|
30
|
+
--psp-plugin-name--x-bar--content: "X-Bar";
|
|
31
|
+
--psp-plugin-name--y-bar--content: "Und Bar";
|
|
32
|
+
--psp-plugin-name--y-line--content: "und Linie";
|
|
33
|
+
--psp-plugin-name--x-y-line--content: "X/Y-Linie";
|
|
34
|
+
--psp-plugin-name--x-y-scatter--content: "X/Y-Streuung";
|
|
35
|
+
--psp-plugin-name--y-scatter--content: "Y-Scatter";
|
|
36
|
+
--psp-plugin-name--y-area--content: "und Bereich";
|
|
37
|
+
--psp-plugin-name--ohlc--content: "Autsch";
|
|
38
|
+
--psp-plugin-name--candlestick--content: "Leuchter";
|
|
39
|
+
|
|
40
|
+
/* Column Selector names */
|
|
41
|
+
--psp-label--column-columns--content: "Säulen";
|
|
42
|
+
--psp-label--column-x-axis--content: "X-Achse";
|
|
43
|
+
--psp-label--column-y-axis--content: "Y-Achse";
|
|
44
|
+
--psp-label--column-color--content: "Farbe";
|
|
45
|
+
--psp-label--column-size--content: "Größe";
|
|
46
|
+
--psp-label--column-symbol--content: "Symbol";
|
|
47
|
+
--psp-label--column-label--content: "Etikett";
|
|
48
|
+
--psp-label--column-tooltip--content: "Tooltip";
|
|
49
|
+
--psp-label--add-expression-button--content: "Neue Spalte";
|
|
50
|
+
|
|
51
|
+
/* Toolbar */
|
|
52
|
+
--psp-label--no-results--content: "Ungültige Spalte";
|
|
53
|
+
--psp-datagrid--column-edit-button--content: "Bearbeiten";
|
|
54
|
+
--psp-label--copy-button--content: "Kopieren";
|
|
55
|
+
--psp-label--export-button--content: "Export";
|
|
56
|
+
--psp-label--reset-button--content: "Zurücksetzen";
|
|
57
|
+
--psp-label--edit-mode-read-only--content: "Read Only";
|
|
58
|
+
--psp-label--edit-mode-edit--content: "Text Edit";
|
|
59
|
+
--psp-label--edit-mode-select-row--content: "Select Row";
|
|
60
|
+
--psp-label--edit-mode-select-column--content: "Select Column";
|
|
61
|
+
--psp-label--edit-mode-select-region--content: "Select Region";
|
|
62
|
+
--psp-label--scroll-lock-toggle--content: "Kostenlose Schriftrolle";
|
|
63
|
+
--psp-label--scroll-lock-alt-toggle--content: "Bildlauf ausrichten";
|
|
64
|
+
|
|
65
|
+
/* Column Settings */
|
|
66
|
+
--psp-label--color--content: "Farbe";
|
|
67
|
+
--psp-label--format--content: "Format";
|
|
68
|
+
--psp-label--timezone--content: "Zeitzone";
|
|
69
|
+
--psp-label--date-style--content: "Datumsstil";
|
|
70
|
+
--psp-label--time-style--content: "Zeitstil";
|
|
71
|
+
--psp-label--foreground--content: "Vordergrund";
|
|
72
|
+
--psp-label--background--content: "Hintergrund";
|
|
73
|
+
--psp-label--series--content: "Serie";
|
|
74
|
+
--psp-label--color-range--content: "Farbspektrum";
|
|
75
|
+
--psp-label--style--content: "Stil";
|
|
76
|
+
--psp-label--minimum-integer-digits--content: "Mindestanzahl ganzzahliger Ziffern";
|
|
77
|
+
--psp-label--rounding-increment--content: "Rundungsinkrement";
|
|
78
|
+
--psp-label--notation--content: "Notation";
|
|
79
|
+
--psp-label--use-grouping--content: "Verwenden Sie Gruppierung";
|
|
80
|
+
--psp-label--sign-display--content: "Schilderanzeige";
|
|
81
|
+
--psp-label--max-value--content: "Maximaler Wert";
|
|
82
|
+
--psp-label--rounding-priority--content: "Rundungspriorität";
|
|
83
|
+
--psp-label--rounding-mode--content: "Rundungsmodus";
|
|
84
|
+
--psp-label--trailing-zero-display--content: "Anzeige der nachgestellten Null";
|
|
85
|
+
--psp-label--fractional-digits--content: "Bruchstellen";
|
|
86
|
+
--psp-label--significant-digits--content: "Wichtige Ziffer";
|
|
87
|
+
--psp-label--year--content: "Jahr";
|
|
88
|
+
--psp-label--month--content: "Monat";
|
|
89
|
+
--psp-label--day--content: "Tag";
|
|
90
|
+
--psp-label--weekday--content: "Wochentag";
|
|
91
|
+
--psp-label--hour--content: "Stunde";
|
|
92
|
+
--psp-label--minute--content: "Minute";
|
|
93
|
+
--psp-label--second--content: "Zweite";
|
|
94
|
+
--psp-label--fractional-seconds--content: "Sekundenbruchteile";
|
|
95
|
+
--psp-label--hours--content: "12/24 Stunden";
|
|
96
|
+
--psp-label--aggregate-depth--content: "Gesamttiefe";
|
|
97
|
+
|
|
98
|
+
/* Tabs */
|
|
99
|
+
--psp-label--style-tab--content: "Stil";
|
|
100
|
+
--psp-label--attributes-tab--content: "Attribute";
|
|
101
|
+
--psp-label--debug-tab--content: "Debug JSON";
|
|
102
|
+
}
|