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: {
|
|
|
|
|
fieldOrder: ["position", "format", "color", "thickness", "effect"],
|
|
|
|
|
fieldGroups: {
|
|
|
|
|
appearance: ["color", "thickness", "effect"],
|
|
|
|
|
},
|
|
|
|
|
hiddenFields: ["enabled_in_config"],
|
|
|
|
|
advancedFields: ["thickness", "effect"],
|
|
|
|
|
},
|
2026-01-23 17:23:52 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default TimestampSection;
|