Files
frigate/web/src/components/config-form/theme/utils/index.ts
T

21 lines
456 B
TypeScript
Raw Normal View History

2026-02-27 09:55:36 -06:00
/**
* Config form theme utilities
*/
export {
buildTranslationPath,
2026-03-22 13:03:24 -05:00
resolveConfigTranslation,
2026-02-27 09:55:36 -06:00
getFilterObjectLabel,
humanizeKey,
getDomainFromNamespace,
} from "./i18n";
export { getOverrideAtPath, hasOverrideAtPath } from "./overrides";
export {
deepNormalizeValue,
normalizeFieldValue,
isSubtreeModified,
} from "./overrides";
export { getSizedFieldClassName } from "./fieldSizing";
2026-07-14 09:42:26 -05:00
export { getNumericInputMode } from "./inputMode";