@kteneyck/cesium-timeline-core 0.2.0 → 0.3.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/index.d.ts +10 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,10 +36,14 @@ export declare interface ControlsBaseProps {
|
|
|
36
36
|
onResetSpeed: () => void;
|
|
37
37
|
/** Whether the needle is near the current wall-clock time (within 10 s). */
|
|
38
38
|
isLive: boolean;
|
|
39
|
-
/** Whether to
|
|
39
|
+
/** Whether to enable the ⏮ jump-to-start button (true when startTime prop was provided). */
|
|
40
40
|
hasStartTime: boolean;
|
|
41
|
-
/** Whether to
|
|
41
|
+
/** Whether to enable the ⏭ jump-to-end button (true when endTime prop was provided). */
|
|
42
42
|
hasEndTime: boolean;
|
|
43
|
+
/** Whether to show the ⏮ jump-to-start button at all. @default true */
|
|
44
|
+
showJumpToStart?: boolean;
|
|
45
|
+
/** Whether to show the ⏭ jump-to-end button at all. @default true */
|
|
46
|
+
showJumpToEnd?: boolean;
|
|
43
47
|
/** Resolved theme object applied to control bar elements. */
|
|
44
48
|
theme: TimelineTheme;
|
|
45
49
|
/** Whether swim lanes are currently visible. When defined, the chevron toggle is rendered. */
|
|
@@ -293,6 +297,10 @@ export declare interface TimelineBaseProps {
|
|
|
293
297
|
showLabels?: boolean;
|
|
294
298
|
/** Whether to render the transport control bar above the canvas. @default true */
|
|
295
299
|
showControls?: boolean;
|
|
300
|
+
/** Whether to show the ⏮ jump-to-start button in the control bar. @default true */
|
|
301
|
+
showJumpToStart?: boolean;
|
|
302
|
+
/** Whether to show the ⏭ jump-to-end button in the control bar. @default true */
|
|
303
|
+
showJumpToEnd?: boolean;
|
|
296
304
|
/** When `true`, ticks snap to round time boundaries during scrub. */
|
|
297
305
|
snapToTicks?: boolean;
|
|
298
306
|
/** Whether the user can scrub / drag the timeline. @default true */
|