Andriy Kurilin

Results 4 issues of Andriy Kurilin

Raw object has __schema_format__ class-level property that is used while constucting jsonschema. Making it configurable while describing an obj allows to avoid constructing empty python classes that overrides just one...

This PR introduces new theme config option 'nav_bar_display_parents' that takes control of diplaying links to parent documents (in terms of TOC) at navigation bar. Changes to default behavior: * nothing...

**Minimal reproduction code** ```typescript import { types } from 'mobx-state-tree'; export const ErrorStore = types .model('ErrorStore', { value: '', }) .actions((self) => ({ set(value: string) { self.value = value; },...

Typescript