2026-01-23 17:23:52 +03:00
|
|
|
// Timestamp Section Component
|
|
|
|
|
// Reusable for both global and camera-level timestamp_style settings
|
|
|
|
|
|
2026-01-23 19:04:50 +03:00
|
|
|
import { createConfigSection } from "./BaseSection";
|
2026-01-23 17:23:52 +03:00
|
|
|
|
|
|
|
|
export const TimestampSection = createConfigSection({
|
|
|
|
|
sectionPath: "timestamp_style",
|
2026-01-23 19:04:50 +03:00
|
|
|
i18nNamespace: "config/timestamp_style",
|
|
|
|
|
defaultConfig: {
|
2026-01-29 19:07:31 +03:00
|
|
|
fieldOrder: ["position", "format", "color", "thickness"],
|
2026-01-29 23:58:13 +03:00
|
|
|
hiddenFields: ["effect", "enabled_in_config"],
|
2026-01-29 19:07:31 +03:00
|
|
|
advancedFields: [],
|
2026-01-23 19:04:50 +03:00
|
|
|
},
|
2026-01-23 17:23:52 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default TimestampSection;
|