Slate
ExamplesGitHubSlack
v0.47
v0.47
  • Introduction
  • Walkthroughs
    • Installing Slate
    • Adding Event Handlers
    • Defining Custom Block Nodes
    • Applying Custom Formatting
    • Using Plugins
    • Saving to a Database
    • Saving and Loading HTML Content
  • Guides
    • Commands & Queries
    • Data Model
    • Plugins
    • Rendering
    • Schemas
  • General
    • Plugins
    • Resources
    • Contributing
    • Changelog
    • FAQ
    • Glossary
  • Slate Core
    • Block
    • Commands
    • Data
    • Decoration
    • Document
    • Editor
    • Inline
    • Mark
    • Node
    • Operation
    • Plugins
    • Point
    • Range
    • Schema
    • Selection
    • Text
    • Utils
    • Value
  • Slate React
    • Editor
    • Plugins
    • Rendering
    • Utils
  • Other Packages
    • slate-html-serializer
    • slate-hyperscript
    • slate-plain-serializer
    • slate-prop-types
Powered by GitBook
On this page
  • Static Methods
  • Data.create
  • Data.fromJSON
  1. Slate Core

Data

PreviousCommandsNextDecoration

Last updated 5 years ago

import { Data } from 'slate'

Data is simply a thin wrapper around , so that you don't need to ever depend on Immutable directly, and for future compatibility.

A data object can have any properties associated with it.

Static Methods

Data.create

Data.create(properties: Object) => Data

Create a data object from a plain JavaScript object of properties.

Data.fromJSON

Data.fromJSON(object: Object) => Data

Create a data object from a JSON object.

Immutable.Map