Internal API called by Deck when the widget is first added to a Deck instance
(params: {deck: Deck<any>; viewId: string | null})
| 146 | |
| 147 | /** Internal API called by Deck when the widget is first added to a Deck instance */ |
| 148 | _onAdd(params: {deck: Deck<any>; viewId: string | null}): HTMLDivElement { |
| 149 | return this.onAdd(params) ?? this.onCreateRootElement(); |
| 150 | } |
| 151 | |
| 152 | /** Overridable by subclass - called when the widget is first added to a Deck instance |
| 153 | * @returns an optional UI element that should be appended to the Deck container |
nothing calls this directly
no test coverage detected
searching dependent graphs…