tldraw/packages/validate
Steve Ruiz fd29006538
[feature] add meta property to records (#1627)
This PR adds a `meta` property to shapes and other records.

It adds it to:
- asset
- camera
- document
- instance
- instancePageState
- instancePresence
- page
- pointer
- rootShape

## Setting meta

This data can generally be added wherever you would normally update the
corresponding record.

An exception exists for shapes, which can be updated using a partial of
the `meta` in the same way that we update shapes with a partial of
`props`.

```ts
this.updateShapes([{
    id: myShape.id,
    type: "geo",
    meta: { 
      nemesis: "steve",
      special: true
    }
])
```

## `Editor.getInitialMetaForShape`

The `Editor.getInitialMetaForShape` method is kind of a hack to set the
initial meta property for newly created shapes. You can set it
externally. Escape hatch!

### Change Type

- [x] `minor` — New feature

### Test Plan

todo

- [ ] Unit Tests (todo)

### Release Notes

- todo
2023-06-28 14:24:05 +00:00
..
src [feature] add meta property to records (#1627) 2023-06-28 14:24:05 +00:00
api-extractor.json Rename tlvalidate to validate (#1508) 2023-06-03 08:27:44 +00:00
api-report.md [feature] add meta property to records (#1627) 2023-06-28 14:24:05 +00:00
CHANGELOG.md Update CHANGELOG.md [skip ci] 2023-06-28 11:53:57 +01:00
LICENSE Rename tlvalidate to validate (#1508) 2023-06-03 08:27:44 +00:00
package.json Update CHANGELOG.md [skip ci] 2023-06-28 11:53:57 +01:00
README.md Rename tlvalidate to validate (#1508) 2023-06-03 08:27:44 +00:00
tsconfig.json Rename tlvalidate to validate (#1508) 2023-06-03 08:27:44 +00:00

@tldraw/tlvalidate

License

The source code in this repository (as well as our 2.0+ distributions and releases) are currently licensed under Apache-2.0. These licenses are subject to change in our upcoming 2.0 release. If you are planning to use tldraw in a commercial product, please reach out at hello@tldraw.com.