Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/lit-dev-content/site/docs/v3/ssr/authoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,16 @@ Whether a method is called on the server is subject to change while Lit SSR is p
| Method | Called on server | Notes |
|-|-|-|
| `constructor()` | Yes ⚠️ | |
| `connectedCallback()` | No | |
| `connectedCallback()` | No ⚠️ | Called when `renderOptions.connectedCallback === true` |
| `disconnectedCallback()` | No | |
| `attributeChangedCallback()` | No | |
| `adoptedCallback()` | No | |
| `hasChanged()` | Yes ⚠️ | Called when property is set |
| `shouldUpdate()` | No | |
| `willUpdate()` | Yes ⚠️ | Called before `render()` |
| `update()` | No | |
| `update()` | Yes | |
| `render()` | Yes ⚠️ | |
| `firstUpdate()` | No | |
| `firstUpdated()` | No | |
| `updated()` | No | |

### ReactiveController
Expand Down
Loading