@linker-design-plus/timeline-track 2.0.11 → 2.0.13
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/README.md +21 -1
- package/dist/assets/AlibabaPuHuiTi-3-55-Regular.woff2 +0 -0
- package/dist/components/panel/ClipConfigPanel.d.ts +58 -1
- package/dist/components/panel/ClipConfigPanelRenderer.d.ts +50 -2
- package/dist/components/panel/TrackInfoPanelRenderer.d.ts +3 -0
- package/dist/components/track/Track.d.ts +4 -0
- package/dist/core/controllers/index.d.ts +1 -0
- package/dist/core/controllers/previewBackend.d.ts +2 -1
- package/dist/core/controllers/timelineClipConfigController.d.ts +5 -1
- package/dist/core/controllers/timelineKeyboardShortcutsController.d.ts +29 -0
- package/dist/core/controllers/timelinePreviewSession.d.ts +32 -1
- package/dist/core/facade/timelineManager.d.ts +16 -2
- package/dist/core/models/constants.d.ts +1 -0
- package/dist/core/models/types.d.ts +80 -10
- package/dist/core/testing/konva-test-stub.d.ts +2 -0
- package/dist/core/theme/colorTokens.d.ts +6 -9
- package/dist/index.cjs.js +272 -68
- package/dist/index.es.js +4006 -2597
- package/dist/utils/rendering/KonvaUtils.d.ts +2 -2
- package/dist/utils/rendering/clipCoverRenderer.d.ts +1 -0
- package/dist/utils/rendering/clipVisualRenderer.d.ts +2 -2
- package/dist/utils/svgIcon.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4,10 +4,12 @@ export declare const SHARED_COLOR_TOKENS: {
|
|
|
4
4
|
readonly black: "#000000";
|
|
5
5
|
readonly panelSurface: "#0f0f0f";
|
|
6
6
|
readonly panelSurfaceAlt: "#1e1e1e";
|
|
7
|
-
readonly audioTrackSurface: "#252525";
|
|
8
7
|
readonly buttonSurface: "#2a2a2a";
|
|
9
8
|
readonly inputSurface: "#2d2d2d";
|
|
10
9
|
readonly clipSurface: "#2e2e2e";
|
|
10
|
+
readonly videoClipBackground: "#1e5679";
|
|
11
|
+
readonly textClipBackground: "#604c32";
|
|
12
|
+
readonly audioClipBackground: "#254428";
|
|
11
13
|
readonly selectedTrackSurface: "#292929";
|
|
12
14
|
readonly borderStrong: "#333333";
|
|
13
15
|
readonly borderMedium: "#444444";
|
|
@@ -19,9 +21,10 @@ export declare const SHARED_COLOR_TOKENS: {
|
|
|
19
21
|
readonly textHint: "#999999";
|
|
20
22
|
readonly textAudio: "#d0d0d0";
|
|
21
23
|
readonly textInactive: "#b5b6bf";
|
|
24
|
+
readonly audioClipAccent: "#b8b8c0";
|
|
22
25
|
readonly accentFocus: "#409eff";
|
|
23
|
-
readonly accentSelectedFill: "#b5baff";
|
|
24
26
|
readonly accentSelectedBorder: "#50E3C2";
|
|
27
|
+
readonly clipSelectedBorder: "#ffffff";
|
|
25
28
|
readonly accentSelectionBox: "#5082e6";
|
|
26
29
|
readonly accentAction: "#4c8dff";
|
|
27
30
|
readonly accentDanger: "#dc3545";
|
|
@@ -61,14 +64,8 @@ export declare const TIMELINE_DEFAULT_THEME_COLORS: {
|
|
|
61
64
|
readonly clipName: "#ffffff";
|
|
62
65
|
readonly clipDuration: "#cccccc";
|
|
63
66
|
readonly clipHandle: "#ffffff";
|
|
64
|
-
readonly
|
|
65
|
-
readonly clipSelectedBorder: "#50E3C2";
|
|
66
|
-
readonly clipSelectedName: "#ffffff";
|
|
67
|
-
readonly clipSelectedDuration: "#ffffff";
|
|
68
|
-
readonly clipSelectedHandle: "#ffffff";
|
|
69
|
-
readonly clipSelectedCoverBackground: "#444444";
|
|
67
|
+
readonly clipSelectedBorder: "#ffffff";
|
|
70
68
|
readonly clipCoverBackground: "#333333";
|
|
71
|
-
readonly audioClipBackground: "#252525";
|
|
72
69
|
readonly audioClipText: "#d0d0d0";
|
|
73
70
|
readonly audioClipAccent: "#b8b8c0";
|
|
74
71
|
readonly playhead: "#ffffff";
|