Use optimized `<For>` with object records
mainWhen using the <For> component in React, you can pass the optimized prop to improve performance. If the each prop is an observable object record (e.g., Record<string, T>), setting optimized ensures that the component correctly reacts to key membership changes, such as inserting new keys or deleting existing ones.
Previously, optimized object records might not have re-rendered when keys were added or removed; with the current implementation, <For each={record$} optimized> will correctly update when record keys are inserted, deleted, or replaced by a same-size key set, while still suppressing unnecessary renders for nested field updates.