@rubin-epo/epo-widget-lib 0.9.3 → 0.9.5
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/atomic/Blinker/Blinker.cjs +1 -1
- package/dist/atomic/Blinker/Blinker.js +12 -11
- package/dist/atomic/Blinker/Controls/styles.d.ts +2 -2
- package/dist/atomic/Blinker/styles.cjs +8 -13
- package/dist/atomic/Blinker/styles.d.ts +281 -0
- package/dist/atomic/Blinker/styles.js +10 -17
- package/dist/atomic/ElapsedTime/styles.d.ts +12 -12
- package/dist/atomic/LiveRegion/styles.d.ts +2 -2
- package/dist/atomic/PlaybackControl/styles.d.ts +4 -4
- package/dist/charts/Base/index.cjs +1 -1
- package/dist/charts/Base/index.js +30 -34
- package/dist/charts/Base/styles.cjs +36 -17
- package/dist/charts/Base/styles.d.ts +2045 -685
- package/dist/charts/Base/styles.js +45 -20
- package/dist/charts/Tooltip/styles.d.ts +4 -4
- package/dist/charts/styles.d.ts +12 -12
- package/dist/styles/svg.d.ts +2 -2
- package/dist/widgets/CameraFilter/styles.d.ts +32 -32
- package/dist/widgets/ColorTool/Actions/styles.d.ts +2 -2
- package/dist/widgets/ColorTool/styles.d.ts +12 -12
- package/dist/widgets/FilterTool/styles.d.ts +18 -18
- package/dist/widgets/LightCurvePlot/A11Y/LightCurveLabel/styles.d.ts +2 -2
- package/dist/widgets/LightCurvePlot/DM15Display/styles.d.ts +6 -6
- package/dist/widgets/LightCurvePlot/MagnitudeSlider/index.cjs +1 -1
- package/dist/widgets/LightCurvePlot/MagnitudeSlider/index.js +22 -31
- package/dist/widgets/LightCurvePlot/MagnitudeSlider/styles.cjs +7 -8
- package/dist/widgets/LightCurvePlot/MagnitudeSlider/styles.js +8 -9
- package/dist/widgets/LightCurvePlot/PlotWithCurve/index.cjs +1 -1
- package/dist/widgets/LightCurvePlot/PlotWithCurve/index.js +14 -14
- package/dist/widgets/LightCurvePlot/PlotWithCurve/styles.cjs +4 -3
- package/dist/widgets/LightCurvePlot/PlotWithCurve/styles.d.ts +10 -10
- package/dist/widgets/LightCurvePlot/PlotWithCurve/styles.js +2 -1
- package/dist/widgets/LightCurvePlot/ScatterPlot/index.cjs +1 -1
- package/dist/widgets/LightCurvePlot/ScatterPlot/index.d.ts +2 -1
- package/dist/widgets/LightCurvePlot/ScatterPlot/index.js +161 -145
- package/dist/widgets/LightCurvePlot/ScatterPlot/styles.cjs +25 -11
- package/dist/widgets/LightCurvePlot/ScatterPlot/styles.d.ts +546 -2
- package/dist/widgets/LightCurvePlot/ScatterPlot/styles.js +25 -9
- package/dist/widgets/SourceSelector/SelectionList/styles.d.ts +6 -6
- package/dist/widgets/SupernovaThreeVector/Histogram/styles.d.ts +2 -2
- package/dist/widgets/SupernovaThreeVector/Skymap/styles.d.ts +14 -14
- package/package.json +1 -1
|
@@ -1,44 +1,69 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import e from "styled-components";
|
|
3
|
-
const
|
|
3
|
+
const i = e.div`
|
|
4
4
|
--label-height: 3em;
|
|
5
5
|
--label-gutter: calc(var(--label-height) / 2);
|
|
6
6
|
|
|
7
7
|
display: grid;
|
|
8
|
-
grid-template-columns:
|
|
9
|
-
grid-template-rows:
|
|
8
|
+
grid-template-columns: min-content 1fr min-content;
|
|
9
|
+
grid-template-rows: min-content 1fr min-content;
|
|
10
10
|
grid-template-areas:
|
|
11
|
-
"title title
|
|
12
|
-
"vertical-label chart
|
|
13
|
-
". horizontal-label
|
|
11
|
+
"title title title"
|
|
12
|
+
"vertical-label chart filler"
|
|
13
|
+
". horizontal-label filler";
|
|
14
|
+
/* for Safari */
|
|
15
|
+
align-items: center;
|
|
14
16
|
width: 100%;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
grid-area: horizontal-label;
|
|
17
|
+
`;
|
|
18
|
+
e.div`
|
|
18
19
|
place-self: center;
|
|
19
20
|
align-self: center;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
`;
|
|
22
|
+
e.div`
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
23
25
|
place-self: center;
|
|
24
26
|
align-self: center;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
`;
|
|
28
|
+
const a = e.div`
|
|
29
|
+
grid-area: filler;
|
|
30
|
+
width: var(--label-height);
|
|
31
|
+
`, l = e.svg`
|
|
28
32
|
grid-area: chart;
|
|
29
33
|
max-width: 100%;
|
|
34
|
+
max-height: 100%;
|
|
30
35
|
aspect-ratio: var(--aspect-ratio);
|
|
31
|
-
`,
|
|
36
|
+
`, r = e.div`
|
|
32
37
|
display: flex;
|
|
33
38
|
align-items: center;
|
|
34
39
|
grid-area: title;
|
|
40
|
+
height: var(--label-height);
|
|
35
41
|
padding-inline: var(--label-gutter);
|
|
42
|
+
`, n = e.h3`
|
|
36
43
|
margin: 0;
|
|
44
|
+
`, c = e.div`
|
|
45
|
+
width: var(--label-height);
|
|
46
|
+
writing-mode: vertical-rl;
|
|
47
|
+
transform: rotate(180deg);
|
|
48
|
+
grid-area: vertical-label;
|
|
49
|
+
`, g = e.div`
|
|
50
|
+
height: var(--label-height);
|
|
51
|
+
grid-area: horizontal-label;
|
|
52
|
+
`, o = e.span`
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
justify-content: center;
|
|
56
|
+
height: 100%;
|
|
57
|
+
width: 100%;
|
|
58
|
+
font-size: 80%;
|
|
37
59
|
`;
|
|
38
60
|
export {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
61
|
+
i as ChartContainer,
|
|
62
|
+
a as Filler,
|
|
63
|
+
g as HorizontalLabelWrapper,
|
|
64
|
+
o as Label,
|
|
65
|
+
l as SVG,
|
|
42
66
|
n as Title,
|
|
43
|
-
r as
|
|
67
|
+
r as TitleWrapper,
|
|
68
|
+
c as VerticalLabelWrapper
|
|
44
69
|
};
|
|
@@ -19,7 +19,7 @@ export declare const Tooltip: import("styled-components").IStyledComponent<"web"
|
|
|
19
19
|
accessKey?: string | undefined;
|
|
20
20
|
autoFocus?: boolean | undefined;
|
|
21
21
|
className?: string | undefined;
|
|
22
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
22
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
23
23
|
contextMenu?: string | undefined;
|
|
24
24
|
dir?: string | undefined;
|
|
25
25
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -74,7 +74,7 @@ export declare const Tooltip: import("styled-components").IStyledComponent<"web"
|
|
|
74
74
|
"aria-colindextext"?: string | undefined;
|
|
75
75
|
"aria-colspan"?: number | undefined;
|
|
76
76
|
"aria-controls"?: string | undefined;
|
|
77
|
-
"aria-current"?: boolean | "
|
|
77
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
78
78
|
"aria-describedby"?: string | undefined;
|
|
79
79
|
"aria-description"?: string | undefined;
|
|
80
80
|
"aria-details"?: string | undefined;
|
|
@@ -291,7 +291,7 @@ export declare const Arrow: import("styled-components").IStyledComponent<"web",
|
|
|
291
291
|
accessKey?: string | undefined;
|
|
292
292
|
autoFocus?: boolean | undefined;
|
|
293
293
|
className?: string | undefined;
|
|
294
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
294
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
295
295
|
contextMenu?: string | undefined;
|
|
296
296
|
dir?: string | undefined;
|
|
297
297
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -346,7 +346,7 @@ export declare const Arrow: import("styled-components").IStyledComponent<"web",
|
|
|
346
346
|
"aria-colindextext"?: string | undefined;
|
|
347
347
|
"aria-colspan"?: number | undefined;
|
|
348
348
|
"aria-controls"?: string | undefined;
|
|
349
|
-
"aria-current"?: boolean | "
|
|
349
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
350
350
|
"aria-describedby"?: string | undefined;
|
|
351
351
|
"aria-description"?: string | undefined;
|
|
352
352
|
"aria-details"?: string | undefined;
|
package/dist/charts/styles.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare const BaseLine: import("styled-components").IStyledComponent<"web
|
|
|
19
19
|
accentHeight?: string | number | undefined;
|
|
20
20
|
accumulate?: "none" | "sum" | undefined;
|
|
21
21
|
additive?: "replace" | "sum" | undefined;
|
|
22
|
-
alignmentBaseline?: "
|
|
22
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
23
23
|
allowReorder?: "yes" | "no" | undefined;
|
|
24
24
|
alphabetic?: string | number | undefined;
|
|
25
25
|
amplitude?: string | number | undefined;
|
|
@@ -270,7 +270,7 @@ export declare const BaseLine: import("styled-components").IStyledComponent<"web
|
|
|
270
270
|
"aria-colindextext"?: string | undefined;
|
|
271
271
|
"aria-colspan"?: number | undefined;
|
|
272
272
|
"aria-controls"?: string | undefined;
|
|
273
|
-
"aria-current"?: boolean | "
|
|
273
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
274
274
|
"aria-describedby"?: string | undefined;
|
|
275
275
|
"aria-description"?: string | undefined;
|
|
276
276
|
"aria-details"?: string | undefined;
|
|
@@ -501,7 +501,7 @@ export declare const Guide: import("styled-components").IStyledComponent<"web",
|
|
|
501
501
|
accentHeight?: string | number | undefined;
|
|
502
502
|
accumulate?: "none" | "sum" | undefined;
|
|
503
503
|
additive?: "replace" | "sum" | undefined;
|
|
504
|
-
alignmentBaseline?: "
|
|
504
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
505
505
|
allowReorder?: "yes" | "no" | undefined;
|
|
506
506
|
alphabetic?: string | number | undefined;
|
|
507
507
|
amplitude?: string | number | undefined;
|
|
@@ -752,7 +752,7 @@ export declare const Guide: import("styled-components").IStyledComponent<"web",
|
|
|
752
752
|
"aria-colindextext"?: string | undefined;
|
|
753
753
|
"aria-colspan"?: number | undefined;
|
|
754
754
|
"aria-controls"?: string | undefined;
|
|
755
|
-
"aria-current"?: boolean | "
|
|
755
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
756
756
|
"aria-describedby"?: string | undefined;
|
|
757
757
|
"aria-description"?: string | undefined;
|
|
758
758
|
"aria-details"?: string | undefined;
|
|
@@ -983,7 +983,7 @@ export declare const Tick: import("styled-components").IStyledComponent<"web", {
|
|
|
983
983
|
accentHeight?: string | number | undefined;
|
|
984
984
|
accumulate?: "none" | "sum" | undefined;
|
|
985
985
|
additive?: "replace" | "sum" | undefined;
|
|
986
|
-
alignmentBaseline?: "
|
|
986
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
987
987
|
allowReorder?: "yes" | "no" | undefined;
|
|
988
988
|
alphabetic?: string | number | undefined;
|
|
989
989
|
amplitude?: string | number | undefined;
|
|
@@ -1234,7 +1234,7 @@ export declare const Tick: import("styled-components").IStyledComponent<"web", {
|
|
|
1234
1234
|
"aria-colindextext"?: string | undefined;
|
|
1235
1235
|
"aria-colspan"?: number | undefined;
|
|
1236
1236
|
"aria-controls"?: string | undefined;
|
|
1237
|
-
"aria-current"?: boolean | "
|
|
1237
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1238
1238
|
"aria-describedby"?: string | undefined;
|
|
1239
1239
|
"aria-description"?: string | undefined;
|
|
1240
1240
|
"aria-details"?: string | undefined;
|
|
@@ -1465,7 +1465,7 @@ export declare const Bar: import("styled-components").IStyledComponent<"web", {
|
|
|
1465
1465
|
accentHeight?: string | number | undefined;
|
|
1466
1466
|
accumulate?: "none" | "sum" | undefined;
|
|
1467
1467
|
additive?: "replace" | "sum" | undefined;
|
|
1468
|
-
alignmentBaseline?: "
|
|
1468
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
1469
1469
|
allowReorder?: "yes" | "no" | undefined;
|
|
1470
1470
|
alphabetic?: string | number | undefined;
|
|
1471
1471
|
amplitude?: string | number | undefined;
|
|
@@ -1716,7 +1716,7 @@ export declare const Bar: import("styled-components").IStyledComponent<"web", {
|
|
|
1716
1716
|
"aria-colindextext"?: string | undefined;
|
|
1717
1717
|
"aria-colspan"?: number | undefined;
|
|
1718
1718
|
"aria-controls"?: string | undefined;
|
|
1719
|
-
"aria-current"?: boolean | "
|
|
1719
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1720
1720
|
"aria-describedby"?: string | undefined;
|
|
1721
1721
|
"aria-description"?: string | undefined;
|
|
1722
1722
|
"aria-details"?: string | undefined;
|
|
@@ -1947,7 +1947,7 @@ export declare const XLabel: import("styled-components").IStyledComponent<"web",
|
|
|
1947
1947
|
accentHeight?: string | number | undefined;
|
|
1948
1948
|
accumulate?: "none" | "sum" | undefined;
|
|
1949
1949
|
additive?: "replace" | "sum" | undefined;
|
|
1950
|
-
alignmentBaseline?: "
|
|
1950
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
1951
1951
|
allowReorder?: "yes" | "no" | undefined;
|
|
1952
1952
|
alphabetic?: string | number | undefined;
|
|
1953
1953
|
amplitude?: string | number | undefined;
|
|
@@ -2198,7 +2198,7 @@ export declare const XLabel: import("styled-components").IStyledComponent<"web",
|
|
|
2198
2198
|
"aria-colindextext"?: string | undefined;
|
|
2199
2199
|
"aria-colspan"?: number | undefined;
|
|
2200
2200
|
"aria-controls"?: string | undefined;
|
|
2201
|
-
"aria-current"?: boolean | "
|
|
2201
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2202
2202
|
"aria-describedby"?: string | undefined;
|
|
2203
2203
|
"aria-description"?: string | undefined;
|
|
2204
2204
|
"aria-details"?: string | undefined;
|
|
@@ -2429,7 +2429,7 @@ export declare const YLabel: import("styled-components").IStyledComponent<"web",
|
|
|
2429
2429
|
accentHeight?: string | number | undefined;
|
|
2430
2430
|
accumulate?: "none" | "sum" | undefined;
|
|
2431
2431
|
additive?: "replace" | "sum" | undefined;
|
|
2432
|
-
alignmentBaseline?: "
|
|
2432
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
2433
2433
|
allowReorder?: "yes" | "no" | undefined;
|
|
2434
2434
|
alphabetic?: string | number | undefined;
|
|
2435
2435
|
amplitude?: string | number | undefined;
|
|
@@ -2680,7 +2680,7 @@ export declare const YLabel: import("styled-components").IStyledComponent<"web",
|
|
|
2680
2680
|
"aria-colindextext"?: string | undefined;
|
|
2681
2681
|
"aria-colspan"?: number | undefined;
|
|
2682
2682
|
"aria-controls"?: string | undefined;
|
|
2683
|
-
"aria-current"?: boolean | "
|
|
2683
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2684
2684
|
"aria-describedby"?: string | undefined;
|
|
2685
2685
|
"aria-description"?: string | undefined;
|
|
2686
2686
|
"aria-details"?: string | undefined;
|
package/dist/styles/svg.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare const Container: import("styled-components").IStyledComponent<"we
|
|
|
8
8
|
accessKey?: string | undefined;
|
|
9
9
|
autoFocus?: boolean | undefined;
|
|
10
10
|
className?: string | undefined;
|
|
11
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
11
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
12
12
|
contextMenu?: string | undefined;
|
|
13
13
|
dir?: string | undefined;
|
|
14
14
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const Container: import("styled-components").IStyledComponent<"we
|
|
|
63
63
|
"aria-colindextext"?: string | undefined;
|
|
64
64
|
"aria-colspan"?: number | undefined;
|
|
65
65
|
"aria-controls"?: string | undefined;
|
|
66
|
-
"aria-current"?: boolean | "
|
|
66
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
67
67
|
"aria-describedby"?: string | undefined;
|
|
68
68
|
"aria-description"?: string | undefined;
|
|
69
69
|
"aria-details"?: string | undefined;
|
|
@@ -8,7 +8,7 @@ export declare const FilterContainer: import("styled-components").IStyledCompone
|
|
|
8
8
|
accessKey?: string | undefined;
|
|
9
9
|
autoFocus?: boolean | undefined;
|
|
10
10
|
className?: string | undefined;
|
|
11
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
11
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
12
12
|
contextMenu?: string | undefined;
|
|
13
13
|
dir?: string | undefined;
|
|
14
14
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const FilterContainer: import("styled-components").IStyledCompone
|
|
|
63
63
|
"aria-colindextext"?: string | undefined;
|
|
64
64
|
"aria-colspan"?: number | undefined;
|
|
65
65
|
"aria-controls"?: string | undefined;
|
|
66
|
-
"aria-current"?: boolean | "
|
|
66
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
67
67
|
"aria-describedby"?: string | undefined;
|
|
68
68
|
"aria-description"?: string | undefined;
|
|
69
69
|
"aria-details"?: string | undefined;
|
|
@@ -280,7 +280,7 @@ export declare const FilterTitle: import("styled-components").IStyledComponent<"
|
|
|
280
280
|
accessKey?: string | undefined;
|
|
281
281
|
autoFocus?: boolean | undefined;
|
|
282
282
|
className?: string | undefined;
|
|
283
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
283
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
284
284
|
contextMenu?: string | undefined;
|
|
285
285
|
dir?: string | undefined;
|
|
286
286
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -335,7 +335,7 @@ export declare const FilterTitle: import("styled-components").IStyledComponent<"
|
|
|
335
335
|
"aria-colindextext"?: string | undefined;
|
|
336
336
|
"aria-colspan"?: number | undefined;
|
|
337
337
|
"aria-controls"?: string | undefined;
|
|
338
|
-
"aria-current"?: boolean | "
|
|
338
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
339
339
|
"aria-describedby"?: string | undefined;
|
|
340
340
|
"aria-description"?: string | undefined;
|
|
341
341
|
"aria-details"?: string | undefined;
|
|
@@ -561,7 +561,7 @@ export declare const FilterTable: import("styled-components").IStyledComponent<"
|
|
|
561
561
|
accessKey?: string | undefined;
|
|
562
562
|
autoFocus?: boolean | undefined;
|
|
563
563
|
className?: string | undefined;
|
|
564
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
564
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
565
565
|
contextMenu?: string | undefined;
|
|
566
566
|
dir?: string | undefined;
|
|
567
567
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -616,7 +616,7 @@ export declare const FilterTable: import("styled-components").IStyledComponent<"
|
|
|
616
616
|
"aria-colindextext"?: string | undefined;
|
|
617
617
|
"aria-colspan"?: number | undefined;
|
|
618
618
|
"aria-controls"?: string | undefined;
|
|
619
|
-
"aria-current"?: boolean | "
|
|
619
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
620
620
|
"aria-describedby"?: string | undefined;
|
|
621
621
|
"aria-description"?: string | undefined;
|
|
622
622
|
"aria-details"?: string | undefined;
|
|
@@ -833,7 +833,7 @@ export declare const FilterRanges: import("styled-components").IStyledComponent<
|
|
|
833
833
|
accessKey?: string | undefined;
|
|
834
834
|
autoFocus?: boolean | undefined;
|
|
835
835
|
className?: string | undefined;
|
|
836
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
836
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
837
837
|
contextMenu?: string | undefined;
|
|
838
838
|
dir?: string | undefined;
|
|
839
839
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -888,7 +888,7 @@ export declare const FilterRanges: import("styled-components").IStyledComponent<
|
|
|
888
888
|
"aria-colindextext"?: string | undefined;
|
|
889
889
|
"aria-colspan"?: number | undefined;
|
|
890
890
|
"aria-controls"?: string | undefined;
|
|
891
|
-
"aria-current"?: boolean | "
|
|
891
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
892
892
|
"aria-describedby"?: string | undefined;
|
|
893
893
|
"aria-description"?: string | undefined;
|
|
894
894
|
"aria-details"?: string | undefined;
|
|
@@ -1105,7 +1105,7 @@ export declare const FilterNames: import("styled-components").IStyledComponent<"
|
|
|
1105
1105
|
accessKey?: string | undefined;
|
|
1106
1106
|
autoFocus?: boolean | undefined;
|
|
1107
1107
|
className?: string | undefined;
|
|
1108
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1108
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1109
1109
|
contextMenu?: string | undefined;
|
|
1110
1110
|
dir?: string | undefined;
|
|
1111
1111
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1160,7 +1160,7 @@ export declare const FilterNames: import("styled-components").IStyledComponent<"
|
|
|
1160
1160
|
"aria-colindextext"?: string | undefined;
|
|
1161
1161
|
"aria-colspan"?: number | undefined;
|
|
1162
1162
|
"aria-controls"?: string | undefined;
|
|
1163
|
-
"aria-current"?: boolean | "
|
|
1163
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1164
1164
|
"aria-describedby"?: string | undefined;
|
|
1165
1165
|
"aria-description"?: string | undefined;
|
|
1166
1166
|
"aria-details"?: string | undefined;
|
|
@@ -1386,7 +1386,7 @@ export declare const FilterRange: import("styled-components").IStyledComponent<"
|
|
|
1386
1386
|
accessKey?: string | undefined;
|
|
1387
1387
|
autoFocus?: boolean | undefined;
|
|
1388
1388
|
className?: string | undefined;
|
|
1389
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1389
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1390
1390
|
contextMenu?: string | undefined;
|
|
1391
1391
|
dir?: string | undefined;
|
|
1392
1392
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1441,7 +1441,7 @@ export declare const FilterRange: import("styled-components").IStyledComponent<"
|
|
|
1441
1441
|
"aria-colindextext"?: string | undefined;
|
|
1442
1442
|
"aria-colspan"?: number | undefined;
|
|
1443
1443
|
"aria-controls"?: string | undefined;
|
|
1444
|
-
"aria-current"?: boolean | "
|
|
1444
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1445
1445
|
"aria-describedby"?: string | undefined;
|
|
1446
1446
|
"aria-description"?: string | undefined;
|
|
1447
1447
|
"aria-details"?: string | undefined;
|
|
@@ -1658,7 +1658,7 @@ export declare const Wavelength: import("styled-components").IStyledComponent<"w
|
|
|
1658
1658
|
accessKey?: string | undefined;
|
|
1659
1659
|
autoFocus?: boolean | undefined;
|
|
1660
1660
|
className?: string | undefined;
|
|
1661
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1661
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1662
1662
|
contextMenu?: string | undefined;
|
|
1663
1663
|
dir?: string | undefined;
|
|
1664
1664
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1713,7 +1713,7 @@ export declare const Wavelength: import("styled-components").IStyledComponent<"w
|
|
|
1713
1713
|
"aria-colindextext"?: string | undefined;
|
|
1714
1714
|
"aria-colspan"?: number | undefined;
|
|
1715
1715
|
"aria-controls"?: string | undefined;
|
|
1716
|
-
"aria-current"?: boolean | "
|
|
1716
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1717
1717
|
"aria-describedby"?: string | undefined;
|
|
1718
1718
|
"aria-description"?: string | undefined;
|
|
1719
1719
|
"aria-details"?: string | undefined;
|
|
@@ -1936,7 +1936,7 @@ export declare const FilterName: import("styled-components").IStyledComponent<"w
|
|
|
1936
1936
|
accessKey?: string | undefined;
|
|
1937
1937
|
autoFocus?: boolean | undefined;
|
|
1938
1938
|
className?: string | undefined;
|
|
1939
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1939
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1940
1940
|
contextMenu?: string | undefined;
|
|
1941
1941
|
dir?: string | undefined;
|
|
1942
1942
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1991,7 +1991,7 @@ export declare const FilterName: import("styled-components").IStyledComponent<"w
|
|
|
1991
1991
|
"aria-colindextext"?: string | undefined;
|
|
1992
1992
|
"aria-colspan"?: number | undefined;
|
|
1993
1993
|
"aria-controls"?: string | undefined;
|
|
1994
|
-
"aria-current"?: boolean | "
|
|
1994
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1995
1995
|
"aria-describedby"?: string | undefined;
|
|
1996
1996
|
"aria-description"?: string | undefined;
|
|
1997
1997
|
"aria-details"?: string | undefined;
|
|
@@ -2208,7 +2208,7 @@ export declare const SelectContainer: import("styled-components").IStyledCompone
|
|
|
2208
2208
|
accessKey?: string | undefined;
|
|
2209
2209
|
autoFocus?: boolean | undefined;
|
|
2210
2210
|
className?: string | undefined;
|
|
2211
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
2211
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
2212
2212
|
contextMenu?: string | undefined;
|
|
2213
2213
|
dir?: string | undefined;
|
|
2214
2214
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -2263,7 +2263,7 @@ export declare const SelectContainer: import("styled-components").IStyledCompone
|
|
|
2263
2263
|
"aria-colindextext"?: string | undefined;
|
|
2264
2264
|
"aria-colspan"?: number | undefined;
|
|
2265
2265
|
"aria-controls"?: string | undefined;
|
|
2266
|
-
"aria-current"?: boolean | "
|
|
2266
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2267
2267
|
"aria-describedby"?: string | undefined;
|
|
2268
2268
|
"aria-description"?: string | undefined;
|
|
2269
2269
|
"aria-details"?: string | undefined;
|
|
@@ -2482,7 +2482,7 @@ export declare const SelectLabel: import("styled-components").IStyledComponent<"
|
|
|
2482
2482
|
accessKey?: string | undefined;
|
|
2483
2483
|
autoFocus?: boolean | undefined;
|
|
2484
2484
|
className?: string | undefined;
|
|
2485
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
2485
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
2486
2486
|
contextMenu?: string | undefined;
|
|
2487
2487
|
dir?: string | undefined;
|
|
2488
2488
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -2537,7 +2537,7 @@ export declare const SelectLabel: import("styled-components").IStyledComponent<"
|
|
|
2537
2537
|
"aria-colindextext"?: string | undefined;
|
|
2538
2538
|
"aria-colspan"?: number | undefined;
|
|
2539
2539
|
"aria-controls"?: string | undefined;
|
|
2540
|
-
"aria-current"?: boolean | "
|
|
2540
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
2541
2541
|
"aria-describedby"?: string | undefined;
|
|
2542
2542
|
"aria-description"?: string | undefined;
|
|
2543
2543
|
"aria-details"?: string | undefined;
|
|
@@ -2765,7 +2765,7 @@ export declare const SpectrumLabel: import("styled-components").IStyledComponent
|
|
|
2765
2765
|
accentHeight?: string | number | undefined;
|
|
2766
2766
|
accumulate?: "none" | "sum" | undefined;
|
|
2767
2767
|
additive?: "replace" | "sum" | undefined;
|
|
2768
|
-
alignmentBaseline?: "
|
|
2768
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
2769
2769
|
allowReorder?: "yes" | "no" | undefined;
|
|
2770
2770
|
alphabetic?: string | number | undefined;
|
|
2771
2771
|
amplitude?: string | number | undefined;
|
|
@@ -3016,7 +3016,7 @@ export declare const SpectrumLabel: import("styled-components").IStyledComponent
|
|
|
3016
3016
|
"aria-colindextext"?: string | undefined;
|
|
3017
3017
|
"aria-colspan"?: number | undefined;
|
|
3018
3018
|
"aria-controls"?: string | undefined;
|
|
3019
|
-
"aria-current"?: boolean | "
|
|
3019
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
3020
3020
|
"aria-describedby"?: string | undefined;
|
|
3021
3021
|
"aria-description"?: string | undefined;
|
|
3022
3022
|
"aria-details"?: string | undefined;
|
|
@@ -3247,7 +3247,7 @@ export declare const ColorName: import("styled-components").IStyledComponent<"we
|
|
|
3247
3247
|
accentHeight?: string | number | undefined;
|
|
3248
3248
|
accumulate?: "none" | "sum" | undefined;
|
|
3249
3249
|
additive?: "replace" | "sum" | undefined;
|
|
3250
|
-
alignmentBaseline?: "
|
|
3250
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
3251
3251
|
allowReorder?: "yes" | "no" | undefined;
|
|
3252
3252
|
alphabetic?: string | number | undefined;
|
|
3253
3253
|
amplitude?: string | number | undefined;
|
|
@@ -3498,7 +3498,7 @@ export declare const ColorName: import("styled-components").IStyledComponent<"we
|
|
|
3498
3498
|
"aria-colindextext"?: string | undefined;
|
|
3499
3499
|
"aria-colspan"?: number | undefined;
|
|
3500
3500
|
"aria-controls"?: string | undefined;
|
|
3501
|
-
"aria-current"?: boolean | "
|
|
3501
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
3502
3502
|
"aria-describedby"?: string | undefined;
|
|
3503
3503
|
"aria-description"?: string | undefined;
|
|
3504
3504
|
"aria-details"?: string | undefined;
|
|
@@ -3729,7 +3729,7 @@ export declare const ColorSpectrum: import("styled-components").IStyledComponent
|
|
|
3729
3729
|
accentHeight?: string | number | undefined;
|
|
3730
3730
|
accumulate?: "none" | "sum" | undefined;
|
|
3731
3731
|
additive?: "replace" | "sum" | undefined;
|
|
3732
|
-
alignmentBaseline?: "
|
|
3732
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
3733
3733
|
allowReorder?: "yes" | "no" | undefined;
|
|
3734
3734
|
alphabetic?: string | number | undefined;
|
|
3735
3735
|
amplitude?: string | number | undefined;
|
|
@@ -3980,7 +3980,7 @@ export declare const ColorSpectrum: import("styled-components").IStyledComponent
|
|
|
3980
3980
|
"aria-colindextext"?: string | undefined;
|
|
3981
3981
|
"aria-colspan"?: number | undefined;
|
|
3982
3982
|
"aria-controls"?: string | undefined;
|
|
3983
|
-
"aria-current"?: boolean | "
|
|
3983
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
3984
3984
|
"aria-describedby"?: string | undefined;
|
|
3985
3985
|
"aria-description"?: string | undefined;
|
|
3986
3986
|
"aria-details"?: string | undefined;
|
|
@@ -4211,7 +4211,7 @@ export declare const ColorSpectrumUnit: import("styled-components").IStyledCompo
|
|
|
4211
4211
|
accentHeight?: string | number | undefined;
|
|
4212
4212
|
accumulate?: "none" | "sum" | undefined;
|
|
4213
4213
|
additive?: "replace" | "sum" | undefined;
|
|
4214
|
-
alignmentBaseline?: "
|
|
4214
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "middle" | "baseline" | "before-edge" | "text-before-edge" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
4215
4215
|
allowReorder?: "yes" | "no" | undefined;
|
|
4216
4216
|
alphabetic?: string | number | undefined;
|
|
4217
4217
|
amplitude?: string | number | undefined;
|
|
@@ -4462,7 +4462,7 @@ export declare const ColorSpectrumUnit: import("styled-components").IStyledCompo
|
|
|
4462
4462
|
"aria-colindextext"?: string | undefined;
|
|
4463
4463
|
"aria-colspan"?: number | undefined;
|
|
4464
4464
|
"aria-controls"?: string | undefined;
|
|
4465
|
-
"aria-current"?: boolean | "
|
|
4465
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
4466
4466
|
"aria-describedby"?: string | undefined;
|
|
4467
4467
|
"aria-description"?: string | undefined;
|
|
4468
4468
|
"aria-details"?: string | undefined;
|
|
@@ -4682,7 +4682,7 @@ export declare const CondensedRangeRow: import("styled-components").IStyledCompo
|
|
|
4682
4682
|
accessKey?: string | undefined;
|
|
4683
4683
|
autoFocus?: boolean | undefined;
|
|
4684
4684
|
className?: string | undefined;
|
|
4685
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
4685
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
4686
4686
|
contextMenu?: string | undefined;
|
|
4687
4687
|
dir?: string | undefined;
|
|
4688
4688
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -4737,7 +4737,7 @@ export declare const CondensedRangeRow: import("styled-components").IStyledCompo
|
|
|
4737
4737
|
"aria-colindextext"?: string | undefined;
|
|
4738
4738
|
"aria-colspan"?: number | undefined;
|
|
4739
4739
|
"aria-controls"?: string | undefined;
|
|
4740
|
-
"aria-current"?: boolean | "
|
|
4740
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
4741
4741
|
"aria-describedby"?: string | undefined;
|
|
4742
4742
|
"aria-description"?: string | undefined;
|
|
4743
4743
|
"aria-details"?: string | undefined;
|
|
@@ -4955,7 +4955,7 @@ export declare const CondensedRange: import("styled-components").IStyledComponen
|
|
|
4955
4955
|
accessKey?: string | undefined;
|
|
4956
4956
|
autoFocus?: boolean | undefined;
|
|
4957
4957
|
className?: string | undefined;
|
|
4958
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
4958
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
4959
4959
|
contextMenu?: string | undefined;
|
|
4960
4960
|
dir?: string | undefined;
|
|
4961
4961
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -5010,7 +5010,7 @@ export declare const CondensedRange: import("styled-components").IStyledComponen
|
|
|
5010
5010
|
"aria-colindextext"?: string | undefined;
|
|
5011
5011
|
"aria-colspan"?: number | undefined;
|
|
5012
5012
|
"aria-controls"?: string | undefined;
|
|
5013
|
-
"aria-current"?: boolean | "
|
|
5013
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
5014
5014
|
"aria-describedby"?: string | undefined;
|
|
5015
5015
|
"aria-description"?: string | undefined;
|
|
5016
5016
|
"aria-details"?: string | undefined;
|
|
@@ -8,7 +8,7 @@ export declare const Actions: import("styled-components").IStyledComponent<"web"
|
|
|
8
8
|
accessKey?: string | undefined;
|
|
9
9
|
autoFocus?: boolean | undefined;
|
|
10
10
|
className?: string | undefined;
|
|
11
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
11
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
12
12
|
contextMenu?: string | undefined;
|
|
13
13
|
dir?: string | undefined;
|
|
14
14
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const Actions: import("styled-components").IStyledComponent<"web"
|
|
|
63
63
|
"aria-colindextext"?: string | undefined;
|
|
64
64
|
"aria-colspan"?: number | undefined;
|
|
65
65
|
"aria-controls"?: string | undefined;
|
|
66
|
-
"aria-current"?: boolean | "
|
|
66
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
67
67
|
"aria-describedby"?: string | undefined;
|
|
68
68
|
"aria-description"?: string | undefined;
|
|
69
69
|
"aria-details"?: string | undefined;
|