You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/8.references/6.hub-api.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,7 @@ The built-in variants of the open dock union (`DevframeDockEntryRegistry`, `@dev
137
137
138
138
| Type | The hub UI provider renders |
139
139
|---|---|
140
-
|`iframe`| the entry's `url` in a kept-alive iframe (per `frameId` when shared); honor `subTabs` soft nav |
140
+
|`iframe`| the entry's `url` in a kept-alive iframe (per `frameId` when shared); honor `subTabs` soft nav; show the existing address bar with `addressBar: true`, or configure Back, Reload, and Open externally by passing an `addressBar` object|
141
141
|`action`| a dock-rail button; activating runs its client script |
142
142
|`custom-render`| a container its client script mounts into |
143
143
|`launcher`| a launch call-to-action reflecting `launcher.status`|
/** Request the address bar for this iframe dock. Pass an object to configure its controls. The user's global always-show setting forces it on for every iframe. */
213
+
addressBar?: boolean|{
214
+
/** Override Back visibility. Cross-origin history access may still be blocked by the browser. */
215
+
back?: boolean
216
+
/** Override Reload visibility. */
217
+
reload?: boolean
218
+
/** Override Open externally visibility. */
219
+
openExternal?: boolean
220
+
}
212
221
/**
213
222
* The id of the iframe, if multiple tabs is assigned with the same id, the iframe will be shared.
0 commit comments