1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 00:47:00 +02:00

Bundled output for commit b02f8190ea

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot
2024-05-03 13:23:30 +00:00
parent b02f8190ea
commit d273b1920f
8 changed files with 24 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import type Mithril from 'mithril';
import ItemList from '../../common/utils/ItemList';
export default class AdvancedPage<CustomAttrs extends IPageAttrs = IPageAttrs> extends AdminPage<CustomAttrs> {
searchDriverOptions: Record<string, Record<string, string>>;
urlRequestedModalHasBeenShown: boolean;
oninit(vnode: Mithril.Vnode<CustomAttrs, this>): void;
headerInfo(): {
className: string;

View File

@@ -0,0 +1,17 @@
import Modal, { IDismissibleOptions, type IInternalModalAttrs } from '../../common/components/Modal';
import Mithril from 'mithril';
export default class ExtensionBisect<CustomAttrs extends IInternalModalAttrs = IInternalModalAttrs> extends Modal<CustomAttrs> {
private result;
private bisecting;
protected static readonly isDismissibleViaCloseButton: boolean;
protected static readonly isDismissibleViaEscKey: boolean;
protected static readonly isDismissibleViaBackdropClick: boolean;
protected get dismissibleOptions(): IDismissibleOptions;
oninit(vnode: Mithril.Vnode<CustomAttrs, this>): void;
className(): string;
title(): Mithril.Children;
content(): Mithril.Children;
stepsLeft(): number;
submit(issue: boolean | null, end?: boolean): void;
hide(extension?: string): void;
}

View File

@@ -108,6 +108,7 @@ export interface ApplicationData {
csrfToken: string;
};
maintenanceMode?: MaintenanceMode;
bisecting?: boolean;
[key: string]: unknown;
}
/**

View File

@@ -70,5 +70,5 @@ export default abstract class Modal<ModalAttrs extends IInternalModalAttrs = IIn
* Sets `loading` to false and triggers a redraw.
*/
loaded(): void;
private get dismissibleOptions();
protected get dismissibleOptions(): IDismissibleOptions;
}

2
framework/core/js/dist/admin.js generated vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
framework/core/js/dist/forum.js generated vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long