Bundled output for commit 2e76a8ecb59549532ea12c22766e3a758f9828bd

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

[skip ci]
This commit is contained in:
flarum-bot 2023-04-16 20:54:45 +00:00
parent 2e76a8ecb5
commit 176b5540d8
10 changed files with 37 additions and 9 deletions

View File

@ -3,7 +3,18 @@ export default class TagsPage extends Page<import("flarum/common/components/Page
oninit(vnode: any): void;
tags: any[] | import("../../common/models/Tag").default[] | undefined;
loading: boolean | undefined;
view(): JSX.Element;
oncreate(vnode: any): void;
view(): JSX.Element;
pageContent(): ItemList<any>;
mainContent(): ItemList<any>;
content(): JSX.Element;
contentItems(): ItemList<any>;
hero(): import("mithril").Vnode<{}, {}>;
sidebar(): JSX.Element;
sidebarItems(): ItemList<import("mithril").Children>;
tagTileListView(pinned: any): JSX.Element;
tagTileView(tag: any): JSX.Element;
cloudView(cloud: any): JSX.Element;
}
import Page from "flarum/common/components/Page";
import ItemList from "flarum/common/utils/ItemList";

2
extensions/tags/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
extensions/tags/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

View File

@ -1,8 +1,9 @@
/// <reference path="../../@types/translator-icu-rich.d.ts" />
import Modal, { IInternalModalAttrs } from '../../common/components/Modal';
import Stream from '../../common/utils/Stream';
import Mithril from 'mithril';
import type Mithril from 'mithril';
import RequestError from '../../common/utils/RequestError';
import ItemList from '../../common/utils/ItemList';
/**
* The `ChangeEmailModal` component shows a modal dialog which allows the user
* to change their email address.
@ -24,6 +25,10 @@ export default class ChangeEmailModal<CustomAttrs extends IInternalModalAttrs =
className(): string;
title(): import("@askvortsov/rich-icu-message-formatter").NestedStringArray;
content(): JSX.Element;
fields(): ItemList<Mithril.Children>;
onsubmit(e: SubmitEvent): void;
requestAttributes(): {
email: string;
};
onerror(error: RequestError): void;
}

View File

@ -1,6 +1,7 @@
/// <reference path="../../@types/translator-icu-rich.d.ts" />
/// <reference types="mithril" />
import Modal, { IInternalModalAttrs } from '../../common/components/Modal';
import Mithril from 'mithril';
import ItemList from '../../common/utils/ItemList';
/**
* The `ChangePasswordModal` component shows a modal dialog which allows the
* user to send themself a password reset email.
@ -9,5 +10,9 @@ export default class ChangePasswordModal<CustomAttrs extends IInternalModalAttrs
className(): string;
title(): import("@askvortsov/rich-icu-message-formatter").NestedStringArray;
content(): JSX.Element;
fields(): ItemList<Mithril.Children>;
onsubmit(e: SubmitEvent): void;
requestBody(): {
email: string | undefined;
};
}

View File

@ -24,6 +24,13 @@ export default class DiscussionListItem<CustomAttrs extends IDiscussionListItemA
className: string;
};
view(): JSX.Element;
controlsView(controls: Mithril.ChildArray): Mithril.Children;
slidableUnderneathView(): Mithril.Children;
contentView(): Mithril.Children;
authorAvatarView(): Mithril.Children;
badgesView(): Mithril.Children;
mainView(): Mithril.Children;
getJumpTo(): number;
oncreate(vnode: Mithril.VnodeDOM<CustomAttrs, this>): void;
onbeforeupdate(vnode: Mithril.VnodeDOM<CustomAttrs, this>): boolean;
/**

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