Skip to content

Commit 15c970b

Browse files
SpikatrixGurinderRawala
authored andcommitted
Adhoc filter fix, update sankey plugin (#106)
* Adhoc filter style fix * Update sankey plugin
1 parent 931022c commit 15c970b

File tree

6 files changed

+1364
-28
lines changed

6 files changed

+1364
-28
lines changed

packages/grafana-ui/src/themes/mixins.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ export function mediaUp(breakpoint: string) {
3939
return `only screen and (min-width: ${breakpoint})`;
4040
}
4141

42-
// const isGrafanaTheme2 = (theme: GrafanaTheme | GrafanaTheme2): theme is GrafanaTheme2 => theme.hasOwnProperty('v1');
42+
const isGrafanaTheme2 = (theme: GrafanaTheme | GrafanaTheme2): theme is GrafanaTheme2 => theme.hasOwnProperty('v1');
4343
export const focusCss = (theme: GrafanaTheme | GrafanaTheme2) => {
44-
/* const isTheme2 = isGrafanaTheme2(theme);
44+
const isTheme2 = isGrafanaTheme2(theme);
4545
const firstColor = isTheme2 ? theme.colors.background.canvas : theme.colors.bodyBg;
4646
const secondColor = isTheme2 ? theme.colors.primary.main : theme.colors.formFocusOutline;
47-
box-shadow: 0 0 0 2px ${firstColor}, 0 0 0px 4px ${secondColor}; */
4847

4948
return `
5049
outline: 2px dotted transparent;
5150
outline-offset: 2px;
51+
box-shadow: 0 0 0 2px ${firstColor}, 0 0 0px 4px ${secondColor};
5252
transition-property: outline, outline-offset, box-shadow;
5353
transition-duration: 0.2s;
5454
transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);`;

public/app/plugins/panel/sankey-panel-0.5.0/logo.svg

-20
This file was deleted.

public/app/plugins/panel/sankey-panel-0.5.0/module.js

+1,358-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app/plugins/panel/sankey-panel-0.5.0/module.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app/plugins/panel/sankey-panel-0.5.0/plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
],
2626
"screenshots": [],
2727
"version": "1.0.0",
28-
"updated": "2023-01-05"
28+
"updated": "2023-10-19"
2929
},
3030
"dependencies": {
3131
"grafanaVersion": "7.0.x",

public/microfrontends/fn_dashboard/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<script
2929
nonce=""
30-
src="../../../public/build/fn_dashboard.42490cab91c30eb42a0e.js"
30+
src="../../../public/build/fn_dashboard.7c71b58078a7ba2cbcd0.js"
3131
type="text/javascript"
3232
></script>
3333

0 commit comments

Comments
 (0)