1
0
mirror of https://github.com/flarum/core.git synced 2025-09-05 21:53:04 +02:00

Bundled output for commit a53a0db2b7

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

[skip ci]
This commit is contained in:
flarum-bot
2022-12-12 09:48:42 +00:00
parent a53a0db2b7
commit 0eff1f6b2d
28 changed files with 155 additions and 64 deletions

View File

@@ -46,6 +46,7 @@ declare const _default: {
one(event: string, handler: Function): void;
off(event: string, handler: Function): void;
};
'utils/KeyboardNavigatable': typeof import("../common/utils/KeyboardNavigatable").default;
'utils/liveHumanTimes': typeof import("../common/utils/liveHumanTimes").default;
'utils/ItemList': typeof import("../common/utils/ItemList").default;
'utils/mixin': typeof import("../common/utils/mixin").default;

View File

@@ -1,6 +1,7 @@
import Session from './Session';
import Store from './Store';
import BasicEditorDriver from './utils/BasicEditorDriver';
import KeyboardNavigatable from './utils/KeyboardNavigatable';
import liveHumanTimes from './utils/liveHumanTimes';
import ItemList from './utils/ItemList';
import mixin from './utils/mixin';
@@ -95,6 +96,7 @@ declare const _default: {
one(event: string, handler: Function): void;
off(event: string, handler: Function): void;
};
'utils/KeyboardNavigatable': typeof KeyboardNavigatable;
'utils/liveHumanTimes': typeof liveHumanTimes;
'utils/ItemList': typeof ItemList;
'utils/mixin': typeof mixin;

View File

@@ -22,7 +22,7 @@ export interface IDismissibleOptions {
* The `Modal` component displays a modal dialog, wrapped in a form. Subclasses
* should implement the `className`, `title`, and `content` methods.
*/
export default abstract class Modal<ModalAttrs extends IInternalModalAttrs = IInternalModalAttrs> extends Component<ModalAttrs> {
export default abstract class Modal<ModalAttrs extends IInternalModalAttrs = IInternalModalAttrs, CustomState = undefined> extends Component<ModalAttrs, CustomState> {
/**
* Determine whether or not the modal should be dismissible via an 'x' button.
*

View File

@@ -1,5 +1,5 @@
/// <reference types="mithril" />
import KeyboardNavigatable from './utils/KeyboardNavigatable';
import KeyboardNavigatable from '../common/utils/KeyboardNavigatable';
import slidable from './utils/slidable';
import History from './utils/History';
import alertEmailConfirmation from './utils/alertEmailConfirmation';
@@ -82,6 +82,7 @@ declare const _default: {
one(event: string, handler: Function): void;
off(event: string, handler: Function): void;
};
'utils/KeyboardNavigatable': typeof KeyboardNavigatable;
'utils/liveHumanTimes': typeof import("../common/utils/liveHumanTimes").default;
'utils/ItemList': typeof import("../common/utils/ItemList").default;
'utils/mixin': typeof import("../common/utils/mixin").default;

View File

@@ -1,6 +1,6 @@
import Component, { ComponentAttrs } from '../../common/Component';
import ItemList from '../../common/utils/ItemList';
import KeyboardNavigatable from '../utils/KeyboardNavigatable';
import KeyboardNavigatable from '../../common/utils/KeyboardNavigatable';
import SearchState from '../states/SearchState';
import type Mithril from 'mithril';
/**

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