@rubin-epo/epo-widget-lib 0.10.4 → 1.0.0-beta.2
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/IsochronePlot.js +7 -7
- package/dist/SupernovaThreeVector.cjs +1 -1
- package/dist/SupernovaThreeVector.js +66 -66
- package/dist/atomic/Blinker/Blinker.cjs +1 -1
- package/dist/atomic/Blinker/Blinker.d.ts +2 -1
- package/dist/atomic/Blinker/Blinker.js +43 -41
- package/dist/charts/Base/styles.cjs +5 -3
- package/dist/charts/Base/styles.js +12 -10
- package/dist/charts/Readout/index.cjs +1 -1
- package/dist/charts/Readout/index.js +6 -5
- package/dist/charts/ScatterPlot/index.cjs +1 -1
- package/dist/charts/ScatterPlot/index.js +77 -77
- package/dist/charts/ScatterPlot/styles.cjs +3 -4
- package/dist/charts/ScatterPlot/styles.js +5 -6
- package/dist/lib/utils.cjs +1 -1
- package/dist/lib/utils.js +18 -16
- package/dist/localeStrings/en/epo-widget-lib.json +6 -6
- package/dist/widgets/LightCurvePlot/Plot/index.cjs +1 -1
- package/dist/widgets/LightCurvePlot/Plot/index.js +53 -68
- package/dist/widgets/LightCurvePlot/PlotWithCurve/MagnitudeSlider/index.cjs +1 -1
- package/dist/widgets/LightCurvePlot/PlotWithCurve/MagnitudeSlider/index.js +1 -1
- package/dist/widgets/LightCurvePlot/PlotWithCurve/index.cjs +1 -1
- package/dist/widgets/LightCurvePlot/PlotWithCurve/index.js +94 -80
- package/dist/widgets/SourceSelector/SourceSelector.cjs +1 -1
- package/dist/widgets/SourceSelector/SourceSelector.js +37 -39
- package/dist/widgets/SourceSelector/styles.d.ts +1 -0
- package/dist/widgets/SupernovaThreeVector/Histogram/index.cjs +1 -1
- package/dist/widgets/SupernovaThreeVector/Histogram/index.js +43 -43
- package/dist/widgets/SupernovaThreeVector/Skymap/index.cjs +1 -1
- package/dist/widgets/SupernovaThreeVector/Skymap/index.js +3 -2
- package/dist/widgets/SupernovaThreeVector/styles.cjs +6 -7
- package/dist/widgets/SupernovaThreeVector/styles.js +11 -12
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import e from "styled-components";
|
|
3
3
|
import { token as t } from "@rubin-epo/epo-react-lib/styles";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
4
|
+
import r from "../../layout/AspectRatio/index.js";
|
|
5
|
+
import i from "../../atomic/Button/patterns/Reset.js";
|
|
6
6
|
import n from "./Histogram/index.js";
|
|
7
7
|
import o from "./Skymap/index.js";
|
|
8
|
-
const
|
|
8
|
+
const g = e(r)`
|
|
9
9
|
container-type: inline-size;
|
|
10
|
-
`,
|
|
10
|
+
`, l = e.div`
|
|
11
11
|
--three-vector-gap: calc(var(--PADDING_SMALL, 20px) / 2);
|
|
12
12
|
|
|
13
13
|
display: grid;
|
|
@@ -40,17 +40,16 @@ const l = e(i)`
|
|
|
40
40
|
container-type: inline-size;
|
|
41
41
|
grid-area: histogram;
|
|
42
42
|
`, h = e(n)`
|
|
43
|
-
font-size: 0.
|
|
44
|
-
overflow: visible;
|
|
43
|
+
font-size: 0.75em;
|
|
45
44
|
|
|
46
45
|
@container (
|
|
47
46
|
min-width: ${t("BREAK_PHABLET_MIN")}
|
|
48
47
|
) {
|
|
49
48
|
font-size: 1em;
|
|
50
49
|
}
|
|
51
|
-
`,
|
|
50
|
+
`, A = e.div`
|
|
52
51
|
grid-area: slider;
|
|
53
|
-
`,
|
|
52
|
+
`, v = e(i)`
|
|
54
53
|
grid-area: reset;
|
|
55
54
|
`, B = e.div`
|
|
56
55
|
display: flex;
|
|
@@ -86,10 +85,10 @@ export {
|
|
|
86
85
|
E as ChartTitle,
|
|
87
86
|
h as Histogram,
|
|
88
87
|
f as HistogramContainer,
|
|
89
|
-
|
|
88
|
+
v as ResetButton,
|
|
90
89
|
y as Skymap,
|
|
91
90
|
B as SkymapContainer,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
91
|
+
A as SliderContainer,
|
|
92
|
+
g as ThreeVectorContainer,
|
|
93
|
+
l as ThreeVectorLayout
|
|
95
94
|
};
|
package/package.json
CHANGED