File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -214,13 +214,6 @@ of the framework and defines all key rules of operation. Whenever a developer ne
214214they access the ` getComponent() ` and ` getMediator() ` methods — this immediately signals that the extension is being
215215used. Following this principle ensures that MVVM principles are never violated and that the framework is used correctly.
216216
217- In addition to the four classes, a component may include a ` ComponentHistory ` . The ` ComponentHistory ` enables the
218- preservation of the component’s state across its lifecycle. Data exchange occurs exclusively between the
219- ` ComponentViewModel ` and the ` ComponentHistory ` . When the component’s state transitions to ` INITIALIZING ` , data is
220- restored from the ` ComponentHistory ` to the ` ComponentViewModel ` . Conversely, when the state transitions to
221- ` DEINITIALIZED ` , data from the ` ComponentViewModel ` is saved back to the ` ComponentHistory ` . The volume of state
222- information that is restored and persisted is defined by the ` HistoryPolicy ` enum.
223-
224217In addition to the four main classes, a component may include a ` ComponentHistory ` , which preserves the component’s
225218state across its lifecycle. In the default implementation, the ` ComponentHistory ` instance is lazily provided via a
226219` HistoryProvider ` that is set before initialization. During the ` preInitialize() ` phase, the provider’s ` provide() `
You can’t perform that action at this time.
0 commit comments