@rubin-epo/epo-widget-lib 0.9.4 → 0.9.6
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/styles.d.ts +20 -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/PlotWithCurve/styles.d.ts +10 -10
- package/dist/widgets/LightCurvePlot/ScatterPlot/styles.d.ts +6 -6
- package/dist/widgets/SourceSelector/SelectionList/styles.d.ts +6 -6
- package/dist/widgets/SourceSelector/SourceSelector.cjs +1 -1
- package/dist/widgets/SourceSelector/SourceSelector.js +59 -51
- package/dist/widgets/SourceSelector/styles.cjs +4 -10
- package/dist/widgets/SourceSelector/styles.js +9 -17
- 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 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const l=require("react/jsx-runtime"),f=require("react"),A=require("../../lib/utils.cjs"),M=require("../../hooks/useInterval.cjs"),
|
|
1
|
+
"use client";"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const l=require("react/jsx-runtime"),f=require("react"),A=require("../../lib/utils.cjs"),M=require("../../hooks/useInterval.cjs"),N=require("../ImageStack/index.cjs"),B=require("./styles.cjs"),h=({images:t=[],activeIndex:o=0,autoplay:g=!0,loop:p=!0,interval:q=200,blinkCallback:n,loadedCallback:i,className:y,showControls:S=!0,children:j})=>{const[u,c]=f.useState(g),[a,v]=f.useState(!1),s=t.length>1,d=(e=0)=>{const m=t.length-1;return A.getClampedArrayIndex(o+e,m)},x=()=>{if(s){const e=d(1);p===!1&&e===t.length-1&&r(),n&&n(e)}},r=()=>{c(!1)},k=()=>{c(e=>!e)},I=()=>{r(),x()},P=()=>{r(),n&&n(d(-1))};return M.default(x,s&&a&&u?q:null),l.jsxs(B.BlinkerContainer,{className:y,children:[l.jsx(N.default,{loadCallback:()=>{v(!0),i&&i()},visible:o,images:t}),j,s&&S&&l.jsx(B.BlinkerControls,{isDisabled:!a,playing:u,handleStartStop:k,handleNext:I,handlePrevious:P})]})};h.displayName="Atomic.Blinker";const _=h;exports.default=_;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as N, jsx as f } from "react/jsx-runtime";
|
|
3
|
-
import { useState as
|
|
3
|
+
import { useState as p } from "react";
|
|
4
4
|
import { getClampedArrayIndex as P } from "../../lib/utils.js";
|
|
5
5
|
import D from "../../hooks/useInterval.js";
|
|
6
|
-
import
|
|
7
|
-
|
|
6
|
+
import L from "../ImageStack/index.js";
|
|
7
|
+
import { BlinkerContainer as $, BlinkerControls as q } from "./styles.js";
|
|
8
|
+
const u = ({
|
|
8
9
|
images: e = [],
|
|
9
10
|
activeIndex: s = 0,
|
|
10
11
|
autoplay: B = !0,
|
|
@@ -16,10 +17,10 @@ const p = ({
|
|
|
16
17
|
showControls: k = !0,
|
|
17
18
|
children: y
|
|
18
19
|
}) => {
|
|
19
|
-
const [i, a] =
|
|
20
|
+
const [i, a] = p(B), [c, I] = p(!1), o = e.length > 1, d = (t = 0) => {
|
|
20
21
|
const A = e.length - 1;
|
|
21
22
|
return P(s + t, A);
|
|
22
|
-
},
|
|
23
|
+
}, m = () => {
|
|
23
24
|
if (o) {
|
|
24
25
|
const t = d(1);
|
|
25
26
|
x === !1 && t === e.length - 1 && r(), n && n(t);
|
|
@@ -29,13 +30,13 @@ const p = ({
|
|
|
29
30
|
}, S = () => {
|
|
30
31
|
a((t) => !t);
|
|
31
32
|
}, j = () => {
|
|
32
|
-
r(),
|
|
33
|
+
r(), m();
|
|
33
34
|
}, v = () => {
|
|
34
35
|
r(), n && n(d(-1));
|
|
35
36
|
};
|
|
36
|
-
return D(
|
|
37
|
+
return D(m, o && c && i ? h : null), /* @__PURE__ */ N($, { className: g, children: [
|
|
37
38
|
/* @__PURE__ */ f(
|
|
38
|
-
|
|
39
|
+
L,
|
|
39
40
|
{
|
|
40
41
|
loadCallback: () => {
|
|
41
42
|
I(!0), l && l();
|
|
@@ -57,8 +58,8 @@ const p = ({
|
|
|
57
58
|
)
|
|
58
59
|
] });
|
|
59
60
|
};
|
|
60
|
-
|
|
61
|
-
const
|
|
61
|
+
u.displayName = "Atomic.Blinker";
|
|
62
|
+
const H = u;
|
|
62
63
|
export {
|
|
63
|
-
|
|
64
|
+
H as default
|
|
64
65
|
};
|
|
@@ -8,7 +8,7 @@ export declare const ControlsContainer: import("styled-components").IStyledCompo
|
|
|
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 ControlsContainer: import("styled-components").IStyledCompo
|
|
|
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;
|
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
justify-items: center;
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("styled-components"),n=require("./Controls/Controls.cjs"),l=t=>t&&t.__esModule?t:{default:t},e=l(o),i=e.default.div`
|
|
2
|
+
aspect-ratio: 1;
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: center;
|
|
6
5
|
position: relative;
|
|
7
6
|
height: 100%;
|
|
8
|
-
`,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
aspect-ratio: 1;
|
|
13
|
-
grid-row: 1;
|
|
14
|
-
width: 100%;
|
|
15
|
-
`;exports.BlinkerContainer=l;exports.BlinkerControls=s;exports.BlinkerImages=a;
|
|
7
|
+
`,r=e.default(n.default)`
|
|
8
|
+
position: absolute;
|
|
9
|
+
bottom: var(--PADDING_SMALL, 20px);
|
|
10
|
+
`;exports.BlinkerContainer=i;exports.BlinkerControls=r;
|
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const BlinkerContainer: import("styled-components").IStyledComponent<"web", {
|
|
3
|
+
ref?: import("react").LegacyRef<HTMLDivElement> | undefined;
|
|
4
|
+
key?: import("react").Key | null | undefined;
|
|
5
|
+
defaultChecked?: boolean | undefined;
|
|
6
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
7
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
8
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
9
|
+
accessKey?: string | undefined;
|
|
10
|
+
autoFocus?: boolean | undefined;
|
|
11
|
+
className?: string | undefined;
|
|
12
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
13
|
+
contextMenu?: string | undefined;
|
|
14
|
+
dir?: string | undefined;
|
|
15
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
16
|
+
hidden?: boolean | undefined;
|
|
17
|
+
id?: string | undefined;
|
|
18
|
+
lang?: string | undefined;
|
|
19
|
+
nonce?: string | undefined;
|
|
20
|
+
placeholder?: string | undefined;
|
|
21
|
+
slot?: string | undefined;
|
|
22
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
23
|
+
style?: import("react").CSSProperties | undefined;
|
|
24
|
+
tabIndex?: number | undefined;
|
|
25
|
+
title?: string | undefined;
|
|
26
|
+
translate?: "yes" | "no" | undefined;
|
|
27
|
+
radioGroup?: string | undefined;
|
|
28
|
+
role?: import("react").AriaRole | undefined;
|
|
29
|
+
about?: string | undefined;
|
|
30
|
+
content?: string | undefined;
|
|
31
|
+
datatype?: string | undefined;
|
|
32
|
+
inlist?: any;
|
|
33
|
+
prefix?: string | undefined;
|
|
34
|
+
property?: string | undefined;
|
|
35
|
+
rel?: string | undefined;
|
|
36
|
+
resource?: string | undefined;
|
|
37
|
+
rev?: string | undefined;
|
|
38
|
+
typeof?: string | undefined;
|
|
39
|
+
vocab?: string | undefined;
|
|
40
|
+
autoCapitalize?: string | undefined;
|
|
41
|
+
autoCorrect?: string | undefined;
|
|
42
|
+
autoSave?: string | undefined;
|
|
43
|
+
color?: string | undefined;
|
|
44
|
+
itemProp?: string | undefined;
|
|
45
|
+
itemScope?: boolean | undefined;
|
|
46
|
+
itemType?: string | undefined;
|
|
47
|
+
itemID?: string | undefined;
|
|
48
|
+
itemRef?: string | undefined;
|
|
49
|
+
results?: number | undefined;
|
|
50
|
+
security?: string | undefined;
|
|
51
|
+
unselectable?: "on" | "off" | undefined;
|
|
52
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
|
+
is?: string | undefined;
|
|
54
|
+
children?: import("react").ReactNode;
|
|
55
|
+
"aria-activedescendant"?: string | undefined;
|
|
56
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
57
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
58
|
+
"aria-braillelabel"?: string | undefined;
|
|
59
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
60
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
61
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
62
|
+
"aria-colcount"?: number | undefined;
|
|
63
|
+
"aria-colindex"?: number | undefined;
|
|
64
|
+
"aria-colindextext"?: string | undefined;
|
|
65
|
+
"aria-colspan"?: number | undefined;
|
|
66
|
+
"aria-controls"?: string | undefined;
|
|
67
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
68
|
+
"aria-describedby"?: string | undefined;
|
|
69
|
+
"aria-description"?: string | undefined;
|
|
70
|
+
"aria-details"?: string | undefined;
|
|
71
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
72
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
73
|
+
"aria-errormessage"?: string | undefined;
|
|
74
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
"aria-flowto"?: string | undefined;
|
|
76
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
77
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
78
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
79
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
80
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
81
|
+
"aria-label"?: string | undefined;
|
|
82
|
+
"aria-labelledby"?: string | undefined;
|
|
83
|
+
"aria-level"?: number | undefined;
|
|
84
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
85
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
86
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
88
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
89
|
+
"aria-owns"?: string | undefined;
|
|
90
|
+
"aria-placeholder"?: string | undefined;
|
|
91
|
+
"aria-posinset"?: number | undefined;
|
|
92
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
93
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
94
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
95
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
96
|
+
"aria-roledescription"?: string | undefined;
|
|
97
|
+
"aria-rowcount"?: number | undefined;
|
|
98
|
+
"aria-rowindex"?: number | undefined;
|
|
99
|
+
"aria-rowindextext"?: string | undefined;
|
|
100
|
+
"aria-rowspan"?: number | undefined;
|
|
101
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
102
|
+
"aria-setsize"?: number | undefined;
|
|
103
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
104
|
+
"aria-valuemax"?: number | undefined;
|
|
105
|
+
"aria-valuemin"?: number | undefined;
|
|
106
|
+
"aria-valuenow"?: number | undefined;
|
|
107
|
+
"aria-valuetext"?: string | undefined;
|
|
108
|
+
dangerouslySetInnerHTML?: {
|
|
109
|
+
__html: string | TrustedHTML;
|
|
110
|
+
} | undefined;
|
|
111
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
112
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
113
|
+
onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
114
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
115
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
116
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
117
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
118
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
119
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
120
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
121
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
122
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
123
|
+
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
124
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
125
|
+
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
126
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
127
|
+
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
128
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
129
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
130
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
131
|
+
onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
132
|
+
onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
133
|
+
onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
134
|
+
onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
135
|
+
onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
136
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
137
|
+
onInvalid?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
138
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
139
|
+
onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
140
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
141
|
+
onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
142
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
143
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
144
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
145
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
146
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
147
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
148
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
149
|
+
onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
150
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
151
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
152
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
153
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
154
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
155
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
156
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
157
|
+
onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
158
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
159
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
160
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
161
|
+
onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
162
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
163
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
164
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
165
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
166
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
167
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
168
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
169
|
+
onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
170
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
171
|
+
onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
172
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
173
|
+
onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
174
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
175
|
+
onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
176
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
177
|
+
onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
178
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
179
|
+
onResize?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
180
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
181
|
+
onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
182
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
183
|
+
onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
184
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
185
|
+
onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
186
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
187
|
+
onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
188
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
189
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
190
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
191
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
192
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
193
|
+
onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
194
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
195
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
196
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
197
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
198
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
199
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
200
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
201
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
202
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
203
|
+
onDrag?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
204
|
+
onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
205
|
+
onDragEnd?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
206
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
207
|
+
onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
208
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
209
|
+
onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
210
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
211
|
+
onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
212
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
213
|
+
onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
214
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
215
|
+
onDragStart?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
216
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
217
|
+
onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
218
|
+
onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
219
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
220
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
221
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
222
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
223
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
224
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
225
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
226
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
227
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
228
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
229
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
230
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
231
|
+
onSelect?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
232
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
233
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
234
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
235
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
236
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
237
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
238
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
239
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
240
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
241
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
242
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
243
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
244
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
245
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
246
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
247
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
248
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
249
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
250
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
251
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
252
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
253
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
254
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
255
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
256
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
257
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
258
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
259
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
260
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
261
|
+
onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
262
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
263
|
+
onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
264
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
265
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
266
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
267
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
268
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
269
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
270
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
271
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
272
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
273
|
+
}>;
|
|
274
|
+
export declare const BlinkerControls: import("styled-components").IStyledComponent<"web", {
|
|
275
|
+
playing: boolean;
|
|
276
|
+
handleStartStop: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
277
|
+
handleNext: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
278
|
+
handlePrevious: import("react").MouseEventHandler<HTMLButtonElement>;
|
|
279
|
+
className?: string | undefined;
|
|
280
|
+
isDisabled?: boolean | undefined;
|
|
281
|
+
}> & import("react").FunctionComponent<import("./Controls/Controls").ControlsProps>;
|
|
@@ -1,24 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import t from "styled-components";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
display:
|
|
7
|
-
|
|
8
|
-
grid-template-rows: 1fr min-content;
|
|
9
|
-
justify-items: center;
|
|
3
|
+
import o from "./Controls/Controls.js";
|
|
4
|
+
const n = t.div`
|
|
5
|
+
aspect-ratio: 1;
|
|
6
|
+
display: flex;
|
|
7
|
+
justify-content: center;
|
|
10
8
|
position: relative;
|
|
11
9
|
height: 100%;
|
|
12
|
-
`,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
`, a = t(i)`
|
|
16
|
-
aspect-ratio: 1;
|
|
17
|
-
grid-row: 1;
|
|
18
|
-
width: 100%;
|
|
10
|
+
`, r = t(o)`
|
|
11
|
+
position: absolute;
|
|
12
|
+
bottom: var(--PADDING_SMALL, 20px);
|
|
19
13
|
`;
|
|
20
14
|
export {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
a as BlinkerImages
|
|
15
|
+
n as BlinkerContainer,
|
|
16
|
+
r as BlinkerControls
|
|
24
17
|
};
|
|
@@ -8,7 +8,7 @@ export declare const ElapsedTimeContainer: import("styled-components").IStyledCo
|
|
|
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 ElapsedTimeContainer: import("styled-components").IStyledCo
|
|
|
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 Header: import("styled-components").IStyledComponent<"web",
|
|
|
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 Header: import("styled-components").IStyledComponent<"web",
|
|
|
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;
|
|
@@ -553,7 +553,7 @@ export declare const Time: import("styled-components").IStyledComponent<"web", {
|
|
|
553
553
|
accessKey?: string | undefined;
|
|
554
554
|
autoFocus?: boolean | undefined;
|
|
555
555
|
className?: string | undefined;
|
|
556
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
556
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
557
557
|
contextMenu?: string | undefined;
|
|
558
558
|
dir?: string | undefined;
|
|
559
559
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -608,7 +608,7 @@ export declare const Time: import("styled-components").IStyledComponent<"web", {
|
|
|
608
608
|
"aria-colindextext"?: string | undefined;
|
|
609
609
|
"aria-colspan"?: number | undefined;
|
|
610
610
|
"aria-controls"?: string | undefined;
|
|
611
|
-
"aria-current"?: boolean | "
|
|
611
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
612
612
|
"aria-describedby"?: string | undefined;
|
|
613
613
|
"aria-description"?: string | undefined;
|
|
614
614
|
"aria-details"?: string | undefined;
|
|
@@ -825,7 +825,7 @@ export declare const Interval: import("styled-components").IStyledComponent<"web
|
|
|
825
825
|
accessKey?: string | undefined;
|
|
826
826
|
autoFocus?: boolean | undefined;
|
|
827
827
|
className?: string | undefined;
|
|
828
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
828
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
829
829
|
contextMenu?: string | undefined;
|
|
830
830
|
dir?: string | undefined;
|
|
831
831
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -880,7 +880,7 @@ export declare const Interval: import("styled-components").IStyledComponent<"web
|
|
|
880
880
|
"aria-colindextext"?: string | undefined;
|
|
881
881
|
"aria-colspan"?: number | undefined;
|
|
882
882
|
"aria-controls"?: string | undefined;
|
|
883
|
-
"aria-current"?: boolean | "
|
|
883
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
884
884
|
"aria-describedby"?: string | undefined;
|
|
885
885
|
"aria-description"?: string | undefined;
|
|
886
886
|
"aria-details"?: string | undefined;
|
|
@@ -1097,7 +1097,7 @@ export declare const Number: import("styled-components").IStyledComponent<"web",
|
|
|
1097
1097
|
accessKey?: string | undefined;
|
|
1098
1098
|
autoFocus?: boolean | undefined;
|
|
1099
1099
|
className?: string | undefined;
|
|
1100
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1100
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1101
1101
|
contextMenu?: string | undefined;
|
|
1102
1102
|
dir?: string | undefined;
|
|
1103
1103
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1152,7 +1152,7 @@ export declare const Number: import("styled-components").IStyledComponent<"web",
|
|
|
1152
1152
|
"aria-colindextext"?: string | undefined;
|
|
1153
1153
|
"aria-colspan"?: number | undefined;
|
|
1154
1154
|
"aria-controls"?: string | undefined;
|
|
1155
|
-
"aria-current"?: boolean | "
|
|
1155
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1156
1156
|
"aria-describedby"?: string | undefined;
|
|
1157
1157
|
"aria-description"?: string | undefined;
|
|
1158
1158
|
"aria-details"?: string | undefined;
|
|
@@ -1369,7 +1369,7 @@ export declare const Step: import("styled-components").IStyledComponent<"web", {
|
|
|
1369
1369
|
accessKey?: string | undefined;
|
|
1370
1370
|
autoFocus?: boolean | undefined;
|
|
1371
1371
|
className?: string | undefined;
|
|
1372
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
1372
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
1373
1373
|
contextMenu?: string | undefined;
|
|
1374
1374
|
dir?: string | undefined;
|
|
1375
1375
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1424,7 +1424,7 @@ export declare const Step: import("styled-components").IStyledComponent<"web", {
|
|
|
1424
1424
|
"aria-colindextext"?: string | undefined;
|
|
1425
1425
|
"aria-colspan"?: number | undefined;
|
|
1426
1426
|
"aria-controls"?: string | undefined;
|
|
1427
|
-
"aria-current"?: boolean | "
|
|
1427
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
1428
1428
|
"aria-describedby"?: string | undefined;
|
|
1429
1429
|
"aria-description"?: string | undefined;
|
|
1430
1430
|
"aria-details"?: string | undefined;
|
|
@@ -8,7 +8,7 @@ export declare const OffscreenLabel: import("styled-components").IStyledComponen
|
|
|
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 OffscreenLabel: import("styled-components").IStyledComponen
|
|
|
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 IconContainer: import("styled-components").IStyledComponent
|
|
|
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 IconContainer: import("styled-components").IStyledComponent
|
|
|
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;
|
|
@@ -290,7 +290,7 @@ export declare const PlaybackButton: import("styled-components").IStyledComponen
|
|
|
290
290
|
accessKey?: string | undefined;
|
|
291
291
|
autoFocus?: boolean | undefined;
|
|
292
292
|
className?: string | undefined;
|
|
293
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
293
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
294
294
|
contextMenu?: string | undefined;
|
|
295
295
|
dir?: string | undefined;
|
|
296
296
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -345,7 +345,7 @@ export declare const PlaybackButton: import("styled-components").IStyledComponen
|
|
|
345
345
|
"aria-colindextext"?: string | undefined;
|
|
346
346
|
"aria-colspan"?: number | undefined;
|
|
347
347
|
"aria-controls"?: string | undefined;
|
|
348
|
-
"aria-current"?: boolean | "
|
|
348
|
+
"aria-current"?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date" | undefined;
|
|
349
349
|
"aria-describedby"?: string | undefined;
|
|
350
350
|
"aria-description"?: string | undefined;
|
|
351
351
|
"aria-details"?: string | undefined;
|