mirror of
https://github.com/flarum/core.git
synced 2025-08-07 08:56:38 +02:00
Bundled output for commit 5076da9b38
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
This commit is contained in:
1
framework/core/js/dist-typings/admin/compat.d.ts
generated
vendored
1
framework/core/js/dist-typings/admin/compat.d.ts
generated
vendored
@@ -123,6 +123,7 @@ declare const _default: {
|
|||||||
'components/Tooltip': typeof import("../common/components/Tooltip").default;
|
'components/Tooltip': typeof import("../common/components/Tooltip").default;
|
||||||
'components/EditUserModal': typeof import("../common/components/EditUserModal").default;
|
'components/EditUserModal': typeof import("../common/components/EditUserModal").default;
|
||||||
'components/LabelValue': typeof import("../common/components/LabelValue").default;
|
'components/LabelValue': typeof import("../common/components/LabelValue").default;
|
||||||
|
'components/IPAddress': typeof import("../common/components/IPAddress").default;
|
||||||
Model: typeof import("../common/Model").default;
|
Model: typeof import("../common/Model").default;
|
||||||
Application: typeof import("../common/Application").default;
|
Application: typeof import("../common/Application").default;
|
||||||
'helpers/fullTime': typeof import("../common/helpers/fullTime").default;
|
'helpers/fullTime': typeof import("../common/helpers/fullTime").default;
|
||||||
|
2
framework/core/js/dist-typings/common/compat.d.ts
generated
vendored
2
framework/core/js/dist-typings/common/compat.d.ts
generated
vendored
@@ -87,6 +87,7 @@ import AlertManagerState from './states/AlertManagerState';
|
|||||||
import ModalManagerState from './states/ModalManagerState';
|
import ModalManagerState from './states/ModalManagerState';
|
||||||
import PageState from './states/PageState';
|
import PageState from './states/PageState';
|
||||||
import LabelValue from './components/LabelValue';
|
import LabelValue from './components/LabelValue';
|
||||||
|
import IPAddress from './components/IPAddress';
|
||||||
declare const _default: {
|
declare const _default: {
|
||||||
extenders: {
|
extenders: {
|
||||||
Model: typeof import("./extenders/Model").default;
|
Model: typeof import("./extenders/Model").default;
|
||||||
@@ -176,6 +177,7 @@ declare const _default: {
|
|||||||
'components/Tooltip': typeof Tooltip;
|
'components/Tooltip': typeof Tooltip;
|
||||||
'components/EditUserModal': typeof EditUserModal;
|
'components/EditUserModal': typeof EditUserModal;
|
||||||
'components/LabelValue': typeof LabelValue;
|
'components/LabelValue': typeof LabelValue;
|
||||||
|
'components/IPAddress': typeof IPAddress;
|
||||||
Model: typeof Model;
|
Model: typeof Model;
|
||||||
Application: typeof Application;
|
Application: typeof Application;
|
||||||
'helpers/fullTime': typeof fullTime;
|
'helpers/fullTime': typeof fullTime;
|
||||||
|
21
framework/core/js/dist-typings/common/components/IPAddress.d.ts
generated
vendored
Normal file
21
framework/core/js/dist-typings/common/components/IPAddress.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import Component, { ComponentAttrs } from '../Component';
|
||||||
|
import type Mithril from 'mithril';
|
||||||
|
import ItemList from '../utils/ItemList';
|
||||||
|
export interface IIPAddressAttrs extends ComponentAttrs {
|
||||||
|
ip: string | undefined | null;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A component to wrap an IP address for display.
|
||||||
|
* Designed to be customizable for different use cases.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* <IPAddress ip="127.0.0.1" />
|
||||||
|
* @example
|
||||||
|
* <IPAddress ip={post.data.attributes.ipAddress} />
|
||||||
|
*/
|
||||||
|
export default class IPAddress<CustomAttrs extends IIPAddressAttrs = IIPAddressAttrs> extends Component<CustomAttrs> {
|
||||||
|
ip: string;
|
||||||
|
oninit(vnode: Mithril.Vnode<CustomAttrs, this>): void;
|
||||||
|
view(): JSX.Element;
|
||||||
|
viewItems(): ItemList<Mithril.Children>;
|
||||||
|
}
|
1
framework/core/js/dist-typings/forum/compat.d.ts
generated
vendored
1
framework/core/js/dist-typings/forum/compat.d.ts
generated
vendored
@@ -162,6 +162,7 @@ declare const _default: {
|
|||||||
'components/Tooltip': typeof import("../common/components/Tooltip").default;
|
'components/Tooltip': typeof import("../common/components/Tooltip").default;
|
||||||
'components/EditUserModal': typeof import("../common/components/EditUserModal").default;
|
'components/EditUserModal': typeof import("../common/components/EditUserModal").default;
|
||||||
'components/LabelValue': typeof import("../common/components/LabelValue").default;
|
'components/LabelValue': typeof import("../common/components/LabelValue").default;
|
||||||
|
'components/IPAddress': typeof import("../common/components/IPAddress").default;
|
||||||
Model: typeof import("../common/Model").default;
|
Model: typeof import("../common/Model").default;
|
||||||
Application: typeof import("../common/Application").default;
|
Application: typeof import("../common/Application").default;
|
||||||
'helpers/fullTime': typeof import("../common/helpers/fullTime").default;
|
'helpers/fullTime': typeof import("../common/helpers/fullTime").default;
|
||||||
|
2
framework/core/js/dist/admin.js
generated
vendored
2
framework/core/js/dist/admin.js
generated
vendored
File diff suppressed because one or more lines are too long
2
framework/core/js/dist/admin.js.map
generated
vendored
2
framework/core/js/dist/admin.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
framework/core/js/dist/forum.js
generated
vendored
2
framework/core/js/dist/forum.js
generated
vendored
File diff suppressed because one or more lines are too long
2
framework/core/js/dist/forum.js.map
generated
vendored
2
framework/core/js/dist/forum.js.map
generated
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user