- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import type {CodeKeywordDefinition} from "../../types"
|
|
import {validateSchemaDeps} from "./dependencies"
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
keyword: "dependentSchemas",
|
|
type: "object",
|
|
schemaType: "object",
|
|
code: (cxt) => validateSchemaDeps(cxt),
|
|
}
|
|
|
|
export default def
|