0.4.2 • Published 10 months ago

@divkitframework/visual-editor v0.4.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

DivKit Visual Editor

Install

npm i @divkitframework/visual-editor

Render editor

import '@divkitframework/visual-editor/dist/divkit-editor.css';
import { DivProEditor } from '@divkitframework/visual-editor';

const instance = DivProEditor.init({
    renderTo: document.body,
    value: JSON.stringify({
        "card": {
            "log_id": "test",
            "states": [{
                "state_id": 0,
                "div": {
                    "type": "container",
                    "orientation": "overlap",
                    "items": [{
                        "type": "text",
                        "text": "Hello world"
                    }]
                }
            }]
        }
    })
});

// ...

instance.getValue();
0.4.2

10 months ago

0.4.1

10 months ago

0.4.0

10 months ago