wxt 0.18.4 → 0.18.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { a as ContentScriptContext } from './index-CiL7hzu6.js';
1
+ import { a as ContentScriptContext } from './index-Bk-a0SkY.js';
2
2
  import 'webextension-polyfill';
3
3
 
4
4
  interface IntegratedContentScriptUi<TMounted> extends ContentScriptUi<TMounted> {
@@ -179,13 +179,13 @@ interface ContentScriptAnchoredOptions {
179
179
  /**
180
180
  * Create a content script UI without any isolation.
181
181
  *
182
- * @see https://wxt.dev/guide/content-script-ui.html#integrated
182
+ * @see https://wxt.dev/guide/key-concepts/content-script-ui.html#integrated
183
183
  */
184
184
  declare function createIntegratedUi<TMounted>(ctx: ContentScriptContext, options: IntegratedContentScriptUiOptions<TMounted>): IntegratedContentScriptUi<TMounted>;
185
185
  /**
186
186
  * Create a content script UI using an iframe.
187
187
  *
188
- * @see https://wxt.dev/guide/content-script-ui.html#iframe
188
+ * @see https://wxt.dev/guide/key-concepts/content-script-ui.html#iframe
189
189
  */
190
190
  declare function createIframeUi<TMounted>(ctx: ContentScriptContext, options: IframeContentScriptUiOptions<TMounted>): IframeContentScriptUi<TMounted>;
191
191
  /**
@@ -193,7 +193,7 @@ declare function createIframeUi<TMounted>(ctx: ContentScriptContext, options: If
193
193
  *
194
194
  * > This function is async because it has to load the CSS via a network call.
195
195
  *
196
- * @see https://wxt.dev/guide/content-script-ui.html#shadowroot
196
+ * @see https://wxt.dev/guide/key-concepts/content-script-ui.html#shadowroot
197
197
  */
198
198
  declare function createShadowRootUi<TMounted>(ctx: ContentScriptContext, options: ShadowRootContentScriptUiOptions<TMounted>): Promise<ShadowRootContentScriptUi<TMounted>>;
199
199