Skip to content

Commit 5985df5

Browse files
committedMar 13, 2025
stub out guide
1 parent 4a764ce commit 5985df5

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
 

‎guides/reactive-data/legacy/overview.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,12 @@
44

55
---
66

7+
🚧 This guide is under active construction, it will talk about the below points 🚧
8+
9+
In LegacyMode records are:
10+
11+
- mutable
12+
- local changes immediately reflect app wide
13+
- all the APIs of Model (references, state props, currentState, methods etc)
14+
- limited reactivity for fields (same as Model)
15+
- requires continued use of the `model` and `legacy-compat` packages (though most imports from them can be removed)

‎guides/reactive-data/polaris/overview.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,14 @@
44

55
---
66

7+
🚧 This guide is under active construction, it will talk about the below points 🚧
8+
9+
In PolarisMode records are:
10+
11+
- immutable (unless creating or checking out for editing)
12+
- local changes only show where you want them to on the editable version
13+
- none of the APIs of Model (references, state props, currentState, methods etc)
14+
- deep reactivity for fields
15+
- advanced derivations, aliasing and transformations
16+
- [currently] limited support for relationships
17+
- no promise proxies for relationships

0 commit comments

Comments
 (0)