Browse Source

exposed TimelineTimeChangedEvent

Ievgen Naida 5 years ago
parent
commit
b9b056916d

+ 2 - 0
lib/animation-timeline.d.ts

@@ -19,12 +19,14 @@ export { TimelineSelectedEvent } from './utils/events/timelineSelectedEvent';
 export { TimelineScrollEvent } from './utils/events/timelineScrollEvent';
 export { TimelineScrollEvent } from './utils/events/timelineScrollEvent';
 export { TimelineClickEvent } from './utils/events/timelineClickEvent';
 export { TimelineClickEvent } from './utils/events/timelineClickEvent';
 export { TimelineDragEvent } from './utils/events/timelineDragEvent';
 export { TimelineDragEvent } from './utils/events/timelineDragEvent';
+export { TimelineTimeChangedEvent } from './utils/events/timelineTimeChangedEvent';
 export { TimelineEvents } from './enums/timelineEvents';
 export { TimelineEvents } from './enums/timelineEvents';
 export { TimelineKeyframeShape } from './enums/timelineKeyframeShape';
 export { TimelineKeyframeShape } from './enums/timelineKeyframeShape';
 export { TimelineInteractionMode } from './enums/timelineInteractionMode';
 export { TimelineInteractionMode } from './enums/timelineInteractionMode';
 export { TimelineElementType } from './enums/timelineElementType';
 export { TimelineElementType } from './enums/timelineElementType';
 export { TimelineCursorType } from './enums/timelineCursorType';
 export { TimelineCursorType } from './enums/timelineCursorType';
 export { TimelineCapShape } from './enums/timelineCapShape';
 export { TimelineCapShape } from './enums/timelineCapShape';
+export { TimelineEventSource } from './enums/timelineEventSource';
 export { defaultTimelineOptions } from './settings/defaults';
 export { defaultTimelineOptions } from './settings/defaults';
 export { defaultTimelineKeyframeStyle } from './settings/defaults';
 export { defaultTimelineKeyframeStyle } from './settings/defaults';
 export { defaultTimelineRowStyle } from './settings/defaults';
 export { defaultTimelineRowStyle } from './settings/defaults';

+ 4 - 0
lib/animation-timeline.js

@@ -208,12 +208,14 @@ __webpack_require__.d(__webpack_exports__, "TimelineSelectedEvent", function() {
 __webpack_require__.d(__webpack_exports__, "TimelineScrollEvent", function() { return /* reexport */ timelineScrollEvent["TimelineScrollEvent"]; });
 __webpack_require__.d(__webpack_exports__, "TimelineScrollEvent", function() { return /* reexport */ timelineScrollEvent["TimelineScrollEvent"]; });
 __webpack_require__.d(__webpack_exports__, "TimelineClickEvent", function() { return /* reexport */ TimelineClickEvent; });
 __webpack_require__.d(__webpack_exports__, "TimelineClickEvent", function() { return /* reexport */ TimelineClickEvent; });
 __webpack_require__.d(__webpack_exports__, "TimelineDragEvent", function() { return /* reexport */ TimelineDragEvent; });
 __webpack_require__.d(__webpack_exports__, "TimelineDragEvent", function() { return /* reexport */ TimelineDragEvent; });
+__webpack_require__.d(__webpack_exports__, "TimelineTimeChangedEvent", function() { return /* reexport */ timelineTimeChangedEvent_TimelineTimeChangedEvent; });
 __webpack_require__.d(__webpack_exports__, "TimelineEvents", function() { return /* reexport */ TimelineEvents; });
 __webpack_require__.d(__webpack_exports__, "TimelineEvents", function() { return /* reexport */ TimelineEvents; });
 __webpack_require__.d(__webpack_exports__, "TimelineKeyframeShape", function() { return /* reexport */ TimelineKeyframeShape; });
 __webpack_require__.d(__webpack_exports__, "TimelineKeyframeShape", function() { return /* reexport */ TimelineKeyframeShape; });
 __webpack_require__.d(__webpack_exports__, "TimelineInteractionMode", function() { return /* reexport */ TimelineInteractionMode; });
 __webpack_require__.d(__webpack_exports__, "TimelineInteractionMode", function() { return /* reexport */ TimelineInteractionMode; });
 __webpack_require__.d(__webpack_exports__, "TimelineElementType", function() { return /* reexport */ TimelineElementType; });
 __webpack_require__.d(__webpack_exports__, "TimelineElementType", function() { return /* reexport */ TimelineElementType; });
 __webpack_require__.d(__webpack_exports__, "TimelineCursorType", function() { return /* reexport */ TimelineCursorType; });
 __webpack_require__.d(__webpack_exports__, "TimelineCursorType", function() { return /* reexport */ TimelineCursorType; });
 __webpack_require__.d(__webpack_exports__, "TimelineCapShape", function() { return /* reexport */ TimelineCapShape; });
 __webpack_require__.d(__webpack_exports__, "TimelineCapShape", function() { return /* reexport */ TimelineCapShape; });
+__webpack_require__.d(__webpack_exports__, "TimelineEventSource", function() { return /* reexport */ TimelineEventSource; });
 __webpack_require__.d(__webpack_exports__, "defaultTimelineOptions", function() { return /* reexport */ defaultTimelineOptions; });
 __webpack_require__.d(__webpack_exports__, "defaultTimelineOptions", function() { return /* reexport */ defaultTimelineOptions; });
 __webpack_require__.d(__webpack_exports__, "defaultTimelineKeyframeStyle", function() { return /* reexport */ defaultTimelineKeyframeStyle; });
 __webpack_require__.d(__webpack_exports__, "defaultTimelineKeyframeStyle", function() { return /* reexport */ defaultTimelineKeyframeStyle; });
 __webpack_require__.d(__webpack_exports__, "defaultTimelineRowStyle", function() { return /* reexport */ defaultTimelineRowStyle; });
 __webpack_require__.d(__webpack_exports__, "defaultTimelineRowStyle", function() { return /* reexport */ defaultTimelineRowStyle; });
@@ -3519,6 +3521,8 @@ var timelineScrollEvent = __webpack_require__(13);
 
 
 
 
 
 
+
+
 
 
 
 
 
 

File diff suppressed because it is too large
+ 0 - 0
lib/animation-timeline.min.js


+ 2 - 1
src/animation-timeline.ts

@@ -25,7 +25,7 @@ export { TimelineSelectedEvent } from './utils/events/timelineSelectedEvent';
 export { TimelineScrollEvent } from './utils/events/timelineScrollEvent';
 export { TimelineScrollEvent } from './utils/events/timelineScrollEvent';
 export { TimelineClickEvent } from './utils/events/timelineClickEvent';
 export { TimelineClickEvent } from './utils/events/timelineClickEvent';
 export { TimelineDragEvent } from './utils/events/timelineDragEvent';
 export { TimelineDragEvent } from './utils/events/timelineDragEvent';
-
+export { TimelineTimeChangedEvent } from './utils/events/timelineTimeChangedEvent';
 export { TimelineEvents } from './enums/timelineEvents';
 export { TimelineEvents } from './enums/timelineEvents';
 
 
 export { TimelineKeyframeShape } from './enums/timelineKeyframeShape';
 export { TimelineKeyframeShape } from './enums/timelineKeyframeShape';
@@ -33,6 +33,7 @@ export { TimelineInteractionMode } from './enums/timelineInteractionMode';
 export { TimelineElementType } from './enums/timelineElementType';
 export { TimelineElementType } from './enums/timelineElementType';
 export { TimelineCursorType } from './enums/timelineCursorType';
 export { TimelineCursorType } from './enums/timelineCursorType';
 export { TimelineCapShape } from './enums/timelineCapShape';
 export { TimelineCapShape } from './enums/timelineCapShape';
+export { TimelineEventSource } from './enums/timelineEventSource';
 
 
 // private defaults are exposed:
 // private defaults are exposed:
 export { defaultTimelineOptions } from './settings/defaults';
 export { defaultTimelineOptions } from './settings/defaults';

Some files were not shown because too many files changed in this diff