mirror of
https://github.com/Lightcord/Lightcord.git
synced 2025-04-12 00:55:40 +02:00
click to show changes
tabs fix (I fixed network, open tab and other things) travis prerelease Getting rid of the remote module (partially). Still have a lot of work. Updating native modules. partially updating to match version 0.0.308. Still need more changes.
This commit is contained in:
parent
01ac967eb3
commit
b8af18aef6
@ -32,6 +32,10 @@ jobs:
|
||||
prerelease: true
|
||||
api_key: "$GH_TOKEN"
|
||||
skip_cleanup: true
|
||||
#file:
|
||||
file:
|
||||
- builds/lightcord-win32-ia32.zip
|
||||
- builds/lightcord-win32.exe
|
||||
- builds/lightcord-linux-x64.zip
|
||||
- builds/lightcord-darwin-x64.zip
|
||||
on:
|
||||
tags: true
|
||||
|
80
BetterDiscordApp/dist/index.js
vendored
80
BetterDiscordApp/dist/index.js
vendored
File diff suppressed because one or more lines are too long
2
BetterDiscordApp/dist/index.min.js
vendored
2
BetterDiscordApp/dist/index.min.js
vendored
File diff suppressed because one or more lines are too long
2
BetterDiscordApp/dist/index.min.js.map
vendored
2
BetterDiscordApp/dist/index.min.js.map
vendored
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
||||
export const minimumDiscordVersion = "0.0.307";
|
||||
export const currentDiscordVersion = (window.DiscordNative && window.DiscordNative.remoteApp && window.DiscordNative.remoteApp.getVersion && window.DiscordNative.remoteApp.getVersion()) || "0.0.307";
|
||||
export const minimumDiscordVersion = "0.0.308";
|
||||
export const currentDiscordVersion = (window.DiscordNative && window.DiscordNative.remoteApp && window.DiscordNative.remoteApp.getVersion && window.DiscordNative.remoteApp.getVersion()) || "0.0.308";
|
||||
export const minSupportedVersion = "0.3.0";
|
||||
export const bbdVersion = "0.3.5";
|
||||
export const bbdChangelog = {
|
||||
|
@ -4,11 +4,12 @@ import themeModule from "./themeModule";
|
||||
import Utils from "./utils";
|
||||
import dataStore from "./dataStore";
|
||||
import { encryptSettingsCache, decryptSettingsCache, processFile } from "./pluginCertifier";
|
||||
import * as electron from "electron"
|
||||
|
||||
const path = require("path");
|
||||
const fs = require("fs");
|
||||
const Module = require("module").Module;
|
||||
Module.globalPaths.push(path.resolve(require("electron").remote.app.getAppPath(), "node_modules"));
|
||||
Module.globalPaths.push(path.resolve(electron.ipcRenderer.sendSync("LIGHTCORD_GET_APP_PATH"), "node_modules"));
|
||||
class MetaError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
@ -260,9 +261,9 @@ export default new class ContentManager {
|
||||
}
|
||||
}
|
||||
|
||||
try {window.require(path.resolve(baseFolder, filename));}
|
||||
try {__non_webpack_require__(path.resolve(baseFolder, filename));}
|
||||
catch (error) {return {name: filename, file: filename, message: "Could not be compiled.", error: {message: error.message, stack: error.stack}};}
|
||||
const content = window.require(path.resolve(baseFolder, filename));
|
||||
const content = __non_webpack_require__(path.resolve(baseFolder, filename));
|
||||
if(!content.name)return {name: filename, file: filename, message: "Cannot escape the ID.", error: new Error("Cannot read property 'replace' of undefined")}
|
||||
content.id = Utils.escapeID(content.name);
|
||||
//if(!id)return {name: filename, file: filename, message: "Invalid ID", error: new Error("Please fix the name of "+filename+". BetterDiscord can't escape an ID.")}
|
||||
@ -286,7 +287,7 @@ export default new class ContentManager {
|
||||
const isPlugin = type === "plugin";
|
||||
const baseFolder = isPlugin ? this.pluginsFolder : this.themesFolder;
|
||||
try {
|
||||
delete window.require.cache[window.require.resolve(path.resolve(baseFolder, filename))];
|
||||
delete __non_webpack_require__.cache[__non_webpack_require__.resolve(path.resolve(baseFolder, filename))];
|
||||
}
|
||||
catch (err) {return {name: filename, file: filename, message: "Could not be unloaded.", error: {message: err.message, stack: err.stack}};}
|
||||
}
|
||||
@ -294,7 +295,7 @@ export default new class ContentManager {
|
||||
isLoaded(filename, type) {
|
||||
const isPlugin = type === "plugin";
|
||||
const baseFolder = isPlugin ? this.pluginsFolder : this.themesFolder;
|
||||
try {window.require.cache[window.require.resolve(path.resolve(baseFolder, filename))];}
|
||||
try {__non_webpack_require__.cache[__non_webpack_require__.resolve(path.resolve(baseFolder, filename))];}
|
||||
catch (err) {return false;}
|
||||
return true;
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ import LightcordLogo from "../svg/Lightcord";
|
||||
import PluginCertifier from "./pluginCertifier";
|
||||
import distant, { uuidv4 } from "./distant";
|
||||
import EmojiModule from "./emojiModule"
|
||||
import {remote as electron} from "electron"
|
||||
import * as electron from "electron"
|
||||
import v2 from "./v2";
|
||||
import contentManager from "./contentManager";
|
||||
|
||||
@ -232,11 +232,6 @@ Core.prototype.injectExternals = async function() {
|
||||
|
||||
Core.prototype.initSettings = function () {
|
||||
DataStore.initialize();
|
||||
if(!DataStore.getSettingGroup("lightcord-settings")){
|
||||
for(let key in lightcordSettings){
|
||||
delete lightcordSettings[key]
|
||||
}
|
||||
}
|
||||
if(!DataStore.getSettingGroup("rpc")){
|
||||
Object.assign(settingsRPC, defaultRPC);
|
||||
}
|
||||
@ -380,8 +375,9 @@ Core.prototype.patchSocial = function() {
|
||||
]
|
||||
|
||||
const versionHash = `(${bdConfig.hash ? bdConfig.hash.substring(0, 7) : bdConfig.branch})`;
|
||||
const buildInfo = electron.ipcRenderer.sendSync("LIGHTCORD_GET_BUILD_INFOS")
|
||||
const additional = [
|
||||
BDV2.react.createElement("div", {className: `${classNameColorMuted} ${sizes.size12}`}, `Lightcord ${electron.getGlobal("BuildInfo").version} `, BDV2.react.createElement("span", {className: classNameVersionHash+" da-versionHash"}, `(${(electron.getGlobal("BuildInfo").commit || "Unknown").slice(0, 7)})`)),
|
||||
BDV2.react.createElement("div", {className: `${classNameColorMuted} ${sizes.size12}`}, `Lightcord ${buildInfo.version} `, BDV2.react.createElement("span", {className: classNameVersionHash+" da-versionHash"}, `(${(buildInfo.commit || "Unknown").slice(0, 7)})`)),
|
||||
BDV2.react.createElement("div", {className: `${classNameColorMuted} ${sizes.size12}`}, `BBD ${bbdVersion} `, BDV2.react.createElement("span", {className: classNameVersionHash+" da-versionHash"}, versionHash))
|
||||
]
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
const __non_webpack_require__ = window.require
|
||||
|
||||
import Utils from "./utils";
|
||||
import ContentManager from "./contentManager";
|
||||
|
||||
@ -40,15 +38,6 @@ export default new class DataStore {
|
||||
|
||||
get injectionPath() {
|
||||
return this._injectionPath = null;
|
||||
if (this._injectionPath) return this._injectionPath;
|
||||
const electron = require("electron").remote.app;
|
||||
const base = electron.getAppPath();
|
||||
const roamingBase = electron.getPath("userData");
|
||||
const roamingLocation = path.resolve(roamingBase, electron.getVersion(), "modules", "discord_desktop_core", "injector");
|
||||
const location = path.resolve(base, "..", "app");
|
||||
const realLocation = fs.existsSync(location) ? location : fs.existsSync(roamingLocation) ? roamingLocation : null;
|
||||
if (!realLocation) return this._injectionPath = null;
|
||||
return this._injectionPath = realLocation;
|
||||
}
|
||||
|
||||
get configFile() {return this._configFile || (this._configFile = path.resolve(this.injectionPath, "betterdiscord", "config.json"));}
|
||||
|
@ -104,7 +104,7 @@ export function checkHash(hash, data, filename, resultCallback, removeCallback){
|
||||
if(!cache[hash]){
|
||||
nodeFetch("https://cdn.jsdelivr.net/gh/Lightcord/filehashes@master/hashes/"+hash, { // Using node-fetch to bypass cors
|
||||
headers: {
|
||||
"User-Agent": electron.remote.getCurrentWebContents().userAgent // have to set user-agent
|
||||
"User-Agent": electron.ipcRenderer.sendSync("LIGHTCORD_GET_USER_AGENT") // have to set user-agent
|
||||
}
|
||||
}).then(async res => {
|
||||
if(res.status !== 200){
|
||||
@ -170,7 +170,7 @@ export function processAttachment(attachment, id){
|
||||
|
||||
nodeFetch(attachment.url, {
|
||||
headers: {
|
||||
"User-Agent": electron.remote.getCurrentWebContents().userAgent
|
||||
"User-Agent": electron.ipcRenderer.sendSync("LIGHTCORD_GET_USER_AGENT")
|
||||
}
|
||||
}).then(res => {
|
||||
if(res.status !== 200)throw new Error("File doesn't exist.")
|
||||
@ -234,7 +234,7 @@ function renderToElements(id, result, filename){
|
||||
danger: true,
|
||||
onCancel: () => {},
|
||||
onConfirm: () => {
|
||||
electron.remote.shell.openExternal(child.href)
|
||||
electron.ipcRenderer.sendSync("LIGHTCORD_OPEN_EXTERNAL", child.href)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
@ -202,8 +202,7 @@ export default new class V2_SettingsPanel {
|
||||
else CustomRichPresence.disable()
|
||||
}
|
||||
if (id === "lightcord-3") {
|
||||
if (enabled) remote.getCurrentWindow().setAlwaysOnTop(true)
|
||||
else remote.getCurrentWindow().setAlwaysOnTop(false)
|
||||
ipcRenderer.sendSync("LIGHTCORD_SET_ALWAYS_ON_TOP", enabled)
|
||||
}
|
||||
if (id === "lightcord-4") {
|
||||
if(enabled){
|
||||
@ -227,11 +226,10 @@ export default new class V2_SettingsPanel {
|
||||
}
|
||||
}
|
||||
if (id === "lightcord-8"){
|
||||
let appSettings = remote.getGlobal("appSettings")
|
||||
let appSettings = window.Lightcord.Api.settings
|
||||
appSettings.set("isTabs", enabled)
|
||||
appSettings.save()
|
||||
remote.app.relaunch()
|
||||
remote.app.exit()
|
||||
DiscordNative.app.relaunch()
|
||||
}
|
||||
if (id === "lightcord-9") {
|
||||
popoutWindow[enabled ? "enable" : "disable"]()
|
||||
@ -241,7 +239,7 @@ export default new class V2_SettingsPanel {
|
||||
return
|
||||
}
|
||||
if (id === "no_window_bound"){
|
||||
let appSettings = remote.getGlobal("appSettings")
|
||||
let appSettings = window.Lightcord.Api.settings
|
||||
appSettings.set("NO_WINDOWS_BOUND", enabled)
|
||||
|
||||
appSettings.delete("IS_MAXIMIZED")
|
||||
@ -249,15 +247,13 @@ export default new class V2_SettingsPanel {
|
||||
appSettings.delete("WINDOW_BOUNDS")
|
||||
|
||||
appSettings.save()
|
||||
remote.app.relaunch()
|
||||
remote.app.exit()
|
||||
DiscordNative.app.relaunch()
|
||||
}
|
||||
if (id === "enable_glasstron"){
|
||||
let appSettings = remote.getGlobal("appSettings")
|
||||
let appSettings = window.Lightcord.Api.settings
|
||||
appSettings.set("GLASSTRON", enabled)
|
||||
appSettings.save()
|
||||
remote.app.relaunch()
|
||||
remote.app.exit()
|
||||
DiscordNative.app.relaunch()
|
||||
}
|
||||
|
||||
this.saveSettings();
|
||||
@ -275,7 +271,7 @@ export default new class V2_SettingsPanel {
|
||||
if (settingsCookie["lightcord-1"]) window.Lightcord.Settings.devMode = true
|
||||
if (settingsCookie["lightcord-2"]) window.Lightcord.Settings.callRingingBeat = true
|
||||
if (settingsCookie["lightcord-presence-1"]) CustomRichPresence.enable()
|
||||
if (settingsCookie["lightcord-3"]) remote.getCurrentWindow().setAlwaysOnTop(true)
|
||||
if (settingsCookie["lightcord-3"]) ipcRenderer.sendSync("LIGHTCORD_SET_ALWAYS_ON_TOP", true)
|
||||
if (settingsCookie["lightcord-4"]) AntiAdDM.enable()
|
||||
if (settingsCookie["lightcord-6"]) blurPrivate.enable()
|
||||
if (settingsCookie["lightcord-7"]) disableTyping.enable()
|
||||
@ -295,14 +291,11 @@ export default new class V2_SettingsPanel {
|
||||
saveSettings() {
|
||||
DataStore.setSettingGroup("settings", settingsCookie);
|
||||
DataStore.setSettingGroup("rpc", settingsRPC);
|
||||
DataStore.setSettingGroup("lightcord-settings", lightcordSettings);
|
||||
}
|
||||
|
||||
loadSettings() {
|
||||
Object.assign(settingsCookie, DataStore.getSettingGroup("settings"));
|
||||
Object.assign(settingsRPC, DataStore.getSettingGroup("rpc"));
|
||||
console.log(lightcordSettings, DataStore.getSettingGroup("lightcord-settings"))
|
||||
Object.assign(lightcordSettings, DataStore.getSettingGroup("lightcord-settings"));
|
||||
}
|
||||
|
||||
renderSidebar(sidebar) {
|
||||
@ -314,7 +307,7 @@ export default new class V2_SettingsPanel {
|
||||
}
|
||||
|
||||
lightcordComponent(sidebar, forceUpdate) {
|
||||
let appSettings = remote.getGlobal("appSettings")
|
||||
let appSettings = window.Lightcord.Api.settings
|
||||
return [
|
||||
this.lightcordSettings.map((section, i) => {
|
||||
return [
|
||||
@ -406,11 +399,9 @@ export default new class V2_SettingsPanel {
|
||||
size: "medium",
|
||||
hoverColor: "red",
|
||||
onClick(){
|
||||
console.log("Should relaunch")
|
||||
remote.app.relaunch({
|
||||
ipcRenderer.sendSync("LIGHTCORD_RELAUNCH_APP", {
|
||||
args: remote.process.argv.slice(1).concat(["--disable-betterdiscord"])
|
||||
})
|
||||
remote.app.quit()
|
||||
},
|
||||
wrapper: true
|
||||
}, "Relaunch without BetterDiscord"),
|
||||
|
@ -123,7 +123,7 @@ export default class V2C_PublicServers extends BDV2.reactComponent {
|
||||
options.x = Math.round(window.screenX + window.innerWidth / 2 - options.width / 2);
|
||||
options.y = Math.round(window.screenY + window.innerHeight / 2 - options.height / 2);
|
||||
|
||||
const win = self.joinWindow = new (window.require("electron").remote.BrowserWindow)(options);
|
||||
const win = self.joinWindow = new (require("electron").remote.BrowserWindow)(options);
|
||||
const url = "https://auth.discordservers.com/connect?scopes=guilds.join&previousUrl=https://auth.discordservers.com/info";
|
||||
win.webContents.on("did-navigate", (event, url) => {
|
||||
if (url != "https://auth.discordservers.com/info") return;
|
||||
|
File diff suppressed because one or more lines are too long
@ -251,6 +251,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -537,8 +539,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -569,7 +571,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -580,7 +582,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -598,7 +600,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -609,7 +611,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -641,7 +643,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -657,7 +659,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L16">lightcordapi/src/components/general/AlertBox.tsx:16</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L16">LightcordApi/src/components/general/AlertBox.tsx:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -670,7 +672,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L54">lightcordapi/src/components/general/AlertBox.tsx:54</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L54">LightcordApi/src/components/general/AlertBox.tsx:54</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -697,7 +699,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -732,7 +734,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -768,7 +770,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -798,7 +800,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -818,7 +820,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -851,7 +853,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -874,7 +876,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -908,7 +910,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -929,7 +931,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -964,7 +966,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -997,7 +999,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1033,7 +1035,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1048,7 +1050,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L22">lightcordapi/src/components/general/AlertBox.tsx:22</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L22">LightcordApi/src/components/general/AlertBox.tsx:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1089,7 +1091,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1126,7 +1128,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1143,7 +1145,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L13">lightcordapi/src/components/general/AlertBox.tsx:13</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L13">LightcordApi/src/components/general/AlertBox.tsx:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1153,13 +1155,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"info"</span><span class="tsd-signature-symbol"> = "info"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L12">lightcordapi/src/components/general/AlertBox.tsx:12</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L12">LightcordApi/src/components/general/AlertBox.tsx:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L11">lightcordapi/src/components/general/AlertBox.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L11">LightcordApi/src/components/general/AlertBox.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1173,7 +1175,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">info<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "You can insert markdown (as string) or normal react childs"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L80">lightcordapi/src/components/general/AlertBox.tsx:80</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L80">LightcordApi/src/components/general/AlertBox.tsx:80</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1183,13 +1185,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">warn<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "All string will be interpreted as markdown. If you want raw string, pass an array with the string inside."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L81">lightcordapi/src/components/general/AlertBox.tsx:81</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L81">LightcordApi/src/components/general/AlertBox.tsx:81</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L79">lightcordapi/src/components/general/AlertBox.tsx:79</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L79">LightcordApi/src/components/general/AlertBox.tsx:79</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -248,6 +248,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -519,8 +521,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -551,7 +553,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -562,7 +564,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -580,7 +582,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -591,7 +593,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -623,7 +625,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -639,7 +641,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L15">lightcordapi/src/components/general/CodeBlock.tsx:15</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L15">LightcordApi/src/components/general/CodeBlock.tsx:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -652,7 +654,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L46">lightcordapi/src/components/general/CodeBlock.tsx:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L46">LightcordApi/src/components/general/CodeBlock.tsx:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -679,7 +681,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -714,7 +716,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -750,7 +752,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -780,7 +782,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -800,7 +802,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -833,7 +835,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -856,7 +858,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -890,7 +892,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -911,7 +913,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -946,7 +948,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -979,7 +981,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1015,7 +1017,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1030,7 +1032,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L25">lightcordapi/src/components/general/CodeBlock.tsx:25</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L25">LightcordApi/src/components/general/CodeBlock.tsx:25</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1071,7 +1073,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1108,7 +1110,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1125,7 +1127,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">content<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L12">lightcordapi/src/components/general/CodeBlock.tsx:12</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L12">LightcordApi/src/components/general/CodeBlock.tsx:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1135,13 +1137,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">language<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "plaintext"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L11">lightcordapi/src/components/general/CodeBlock.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L11">LightcordApi/src/components/general/CodeBlock.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L10">lightcordapi/src/components/general/CodeBlock.tsx:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L10">LightcordApi/src/components/general/CodeBlock.tsx:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -254,6 +254,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -503,7 +505,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L14">lightcordapi/src/components/general/ErrorCatcher.tsx:14</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L14">LightcordApi/src/components/general/ErrorCatcher.tsx:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -534,7 +536,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -545,7 +547,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -563,7 +565,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -574,7 +576,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -606,7 +608,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -622,7 +624,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> <span class="tsd-signature-symbol">[]</span></h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L27">lightcordapi/src/components/general/ErrorCatcher.tsx:27</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L27">LightcordApi/src/components/general/ErrorCatcher.tsx:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -635,7 +637,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L81">lightcordapi/src/components/general/ErrorCatcher.tsx:81</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L81">LightcordApi/src/components/general/ErrorCatcher.tsx:81</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -648,7 +650,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <a href="_components_general_errorcatcher_.errorcatcher.html" class="tsd-signature-type">ErrorCatcher</a></h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L23">lightcordapi/src/components/general/ErrorCatcher.tsx:23</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L23">LightcordApi/src/components/general/ErrorCatcher.tsx:23</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -675,7 +677,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -710,7 +712,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -746,7 +748,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -770,7 +772,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L74">lightcordapi/src/components/general/ErrorCatcher.tsx:74</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L74">LightcordApi/src/components/general/ErrorCatcher.tsx:74</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -790,7 +792,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -823,7 +825,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -846,7 +848,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -880,7 +882,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -901,7 +903,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -936,7 +938,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -969,7 +971,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1005,7 +1007,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1022,7 +1024,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L37">lightcordapi/src/components/general/ErrorCatcher.tsx:37</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L37">LightcordApi/src/components/general/ErrorCatcher.tsx:37</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1063,7 +1065,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1100,7 +1102,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1117,13 +1119,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L34">lightcordapi/src/components/general/ErrorCatcher.tsx:34</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L34">LightcordApi/src/components/general/ErrorCatcher.tsx:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L33">lightcordapi/src/components/general/ErrorCatcher.tsx:33</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L33">LightcordApi/src/components/general/ErrorCatcher.tsx:33</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -266,6 +266,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -525,7 +527,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L27">lightcordapi/src/components/general/Flex.tsx:27</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L27">LightcordApi/src/components/general/Flex.tsx:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -556,7 +558,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -567,7 +569,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -585,7 +587,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -596,7 +598,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -628,7 +630,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -644,7 +646,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L32">lightcordapi/src/components/general/Flex.tsx:32</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L32">LightcordApi/src/components/general/Flex.tsx:32</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -674,7 +676,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L52">lightcordapi/src/components/general/Flex.tsx:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L52">LightcordApi/src/components/general/Flex.tsx:52</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -687,7 +689,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L80">lightcordapi/src/components/general/Flex.tsx:80</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L80">LightcordApi/src/components/general/Flex.tsx:80</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -711,7 +713,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L44">lightcordapi/src/components/general/Flex.tsx:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L44">LightcordApi/src/components/general/Flex.tsx:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -741,7 +743,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L62">lightcordapi/src/components/general/Flex.tsx:62</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L62">LightcordApi/src/components/general/Flex.tsx:62</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -765,7 +767,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L72">lightcordapi/src/components/general/Flex.tsx:72</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L72">LightcordApi/src/components/general/Flex.tsx:72</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -792,7 +794,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -827,7 +829,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -863,7 +865,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -893,7 +895,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -913,7 +915,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -946,7 +948,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -969,7 +971,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1003,7 +1005,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1024,7 +1026,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1059,7 +1061,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1092,7 +1094,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1128,7 +1130,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1143,7 +1145,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L36">lightcordapi/src/components/general/Flex.tsx:36</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L36">LightcordApi/src/components/general/Flex.tsx:36</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1184,7 +1186,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1221,7 +1223,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -251,6 +251,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -497,8 +499,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -529,7 +531,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -540,7 +542,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -558,7 +560,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -569,7 +571,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -601,7 +603,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -617,7 +619,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L100">lightcordapi/src/components/general/Flex.tsx:100</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L100">LightcordApi/src/components/general/Flex.tsx:100</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -644,7 +646,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -679,7 +681,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -715,7 +717,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -745,7 +747,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -765,7 +767,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -798,7 +800,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -821,7 +823,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -855,7 +857,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -876,7 +878,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -911,7 +913,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -944,7 +946,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -980,7 +982,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -995,7 +997,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L104">lightcordapi/src/components/general/Flex.tsx:104</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L104">LightcordApi/src/components/general/Flex.tsx:104</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1036,7 +1038,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1073,7 +1075,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -248,6 +248,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -497,7 +499,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L11">lightcordapi/src/components/general/SettingsTitle.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L11">LightcordApi/src/components/general/SettingsTitle.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -528,7 +530,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -539,7 +541,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -557,7 +559,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -568,7 +570,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -600,7 +602,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -616,7 +618,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L16">lightcordapi/src/components/general/SettingsTitle.tsx:16</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L16">LightcordApi/src/components/general/SettingsTitle.tsx:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -629,7 +631,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L40">lightcordapi/src/components/general/SettingsTitle.tsx:40</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L40">LightcordApi/src/components/general/SettingsTitle.tsx:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -656,7 +658,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -691,7 +693,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -727,7 +729,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -757,7 +759,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -777,7 +779,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -810,7 +812,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -833,7 +835,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -867,7 +869,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -888,7 +890,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -923,7 +925,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -956,7 +958,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -992,7 +994,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1007,7 +1009,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L22">lightcordapi/src/components/general/SettingsTitle.tsx:22</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L22">LightcordApi/src/components/general/SettingsTitle.tsx:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1048,7 +1050,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1085,7 +1087,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1102,7 +1104,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = [""]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L36">lightcordapi/src/components/general/SettingsTitle.tsx:36</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L36">LightcordApi/src/components/general/SettingsTitle.tsx:36</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1112,13 +1114,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L37">lightcordapi/src/components/general/SettingsTitle.tsx:37</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L37">LightcordApi/src/components/general/SettingsTitle.tsx:37</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L35">lightcordapi/src/components/general/SettingsTitle.tsx:35</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L35">LightcordApi/src/components/general/SettingsTitle.tsx:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -248,6 +248,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -519,8 +521,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -551,7 +553,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -562,7 +564,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -580,7 +582,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -591,7 +593,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -623,7 +625,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -639,7 +641,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L17">lightcordapi/src/components/general/SettingSubTitle.tsx:17</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L17">LightcordApi/src/components/general/SettingSubTitle.tsx:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -652,7 +654,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L42">lightcordapi/src/components/general/SettingSubTitle.tsx:42</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L42">LightcordApi/src/components/general/SettingSubTitle.tsx:42</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -679,7 +681,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -714,7 +716,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -750,7 +752,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -780,7 +782,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -800,7 +802,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -833,7 +835,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -856,7 +858,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -890,7 +892,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -911,7 +913,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -946,7 +948,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -979,7 +981,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1015,7 +1017,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1030,7 +1032,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L26">lightcordapi/src/components/general/SettingSubTitle.tsx:26</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L26">LightcordApi/src/components/general/SettingSubTitle.tsx:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1071,7 +1073,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1108,7 +1110,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1125,7 +1127,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L13">lightcordapi/src/components/general/SettingSubTitle.tsx:13</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L13">LightcordApi/src/components/general/SettingSubTitle.tsx:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1135,13 +1137,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L14">lightcordapi/src/components/general/SettingSubTitle.tsx:14</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L14">LightcordApi/src/components/general/SettingSubTitle.tsx:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L12">lightcordapi/src/components/general/SettingSubTitle.tsx:12</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L12">LightcordApi/src/components/general/SettingSubTitle.tsx:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -242,6 +242,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -459,7 +461,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L112">lightcordapi/src/components/general/Tabs.tsx:112</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L112">LightcordApi/src/components/general/Tabs.tsx:112</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -490,7 +492,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -501,7 +503,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -519,7 +521,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -530,7 +532,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -562,7 +564,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -589,7 +591,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -624,7 +626,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -660,7 +662,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -690,7 +692,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -710,7 +712,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -743,7 +745,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -766,7 +768,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -800,7 +802,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -821,7 +823,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -856,7 +858,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -889,7 +891,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -925,7 +927,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -940,7 +942,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L129">lightcordapi/src/components/general/Tabs.tsx:129</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L129">LightcordApi/src/components/general/Tabs.tsx:129</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -960,7 +962,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L123">lightcordapi/src/components/general/Tabs.tsx:123</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L123">LightcordApi/src/components/general/Tabs.tsx:123</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1001,7 +1003,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1038,7 +1040,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -257,6 +257,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -532,7 +534,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L22">lightcordapi/src/components/general/Tabs.tsx:22</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L22">LightcordApi/src/components/general/Tabs.tsx:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -563,7 +565,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -574,7 +576,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -592,7 +594,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -603,7 +605,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -613,7 +615,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">tabsElements<span class="tsd-signature-symbol">:</span> <a href="_components_general_tabs_.tab.html" class="tsd-signature-type">Tab</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L31">lightcordapi/src/components/general/Tabs.tsx:31</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L31">LightcordApi/src/components/general/Tabs.tsx:31</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -645,7 +647,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -661,7 +663,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Tabs["props"]["tabs"]</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L33">lightcordapi/src/components/general/Tabs.tsx:33</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L33">LightcordApi/src/components/general/Tabs.tsx:33</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -674,7 +676,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L63">lightcordapi/src/components/general/Tabs.tsx:63</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L63">LightcordApi/src/components/general/Tabs.tsx:63</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -701,7 +703,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -736,7 +738,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -772,7 +774,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -792,7 +794,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L37">lightcordapi/src/components/general/Tabs.tsx:37</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L37">LightcordApi/src/components/general/Tabs.tsx:37</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -822,7 +824,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -842,7 +844,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -875,7 +877,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -898,7 +900,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -932,7 +934,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -953,7 +955,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -988,7 +990,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1021,7 +1023,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1057,7 +1059,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1077,7 +1079,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L59">lightcordapi/src/components/general/Tabs.tsx:59</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L59">LightcordApi/src/components/general/Tabs.tsx:59</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1092,7 +1094,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L46">lightcordapi/src/components/general/Tabs.tsx:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L46">LightcordApi/src/components/general/Tabs.tsx:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1133,7 +1135,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1170,7 +1172,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1187,7 +1189,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">active<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L19">lightcordapi/src/components/general/Tabs.tsx:19</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L19">LightcordApi/src/components/general/Tabs.tsx:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1197,7 +1199,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L17">lightcordapi/src/components/general/Tabs.tsx:17</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L17">LightcordApi/src/components/general/Tabs.tsx:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1207,7 +1209,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L20">lightcordapi/src/components/general/Tabs.tsx:20</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L20">LightcordApi/src/components/general/Tabs.tsx:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1217,7 +1219,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L21">lightcordapi/src/components/general/Tabs.tsx:21</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L21">LightcordApi/src/components/general/Tabs.tsx:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1227,13 +1229,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">tabs<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = [{label: "No tabs was passed to <Tabs>.", id: "none"}]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L18">lightcordapi/src/components/general/Tabs.tsx:18</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L18">LightcordApi/src/components/general/Tabs.tsx:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L16">lightcordapi/src/components/general/Tabs.tsx:16</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L16">LightcordApi/src/components/general/Tabs.tsx:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -275,6 +275,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -574,8 +576,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -606,7 +608,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -617,7 +619,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -635,7 +637,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -646,7 +648,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -678,7 +680,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -688,7 +690,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">familys<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_general_text_.html#textfamily" class="tsd-signature-type">TextFamily</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["primary", "code"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L77">lightcordapi/src/components/general/Text.ts:77</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L77">LightcordApi/src/components/general/Text.ts:77</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -698,7 +700,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">sizes<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_general_text_.html#textsize" class="tsd-signature-type">TextSize</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["small", "medium", "medium_small", "medium_large", "large"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L76">lightcordapi/src/components/general/Text.ts:76</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L76">LightcordApi/src/components/general/Text.ts:76</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -708,7 +710,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">textCases<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_general_text_.html#textcase" class="tsd-signature-type">TextCase</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["lowercase", "uppercase"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L75">lightcordapi/src/components/general/Text.ts:75</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L75">LightcordApi/src/components/general/Text.ts:75</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -718,7 +720,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">weights<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_general_text_.html#textweight" class="tsd-signature-type">TextWeight</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["light", "normal", "medium", "semibold", "bold"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L71">lightcordapi/src/components/general/Text.ts:71</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L71">LightcordApi/src/components/general/Text.ts:71</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -734,7 +736,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L52">lightcordapi/src/components/general/Text.ts:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L52">LightcordApi/src/components/general/Text.ts:52</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -747,7 +749,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <a href="../modules/_components_general_text_.html#textcolor" class="tsd-signature-type">TextColor</a><span class="tsd-signature-symbol">[]</span></h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L72">lightcordapi/src/components/general/Text.ts:72</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L72">LightcordApi/src/components/general/Text.ts:72</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -774,7 +776,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -809,7 +811,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -845,7 +847,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -875,7 +877,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -895,7 +897,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -928,7 +930,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -951,7 +953,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -985,7 +987,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1006,7 +1008,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1041,7 +1043,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1074,7 +1076,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1110,7 +1112,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1125,7 +1127,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L18">lightcordapi/src/components/general/Text.ts:18</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L18">LightcordApi/src/components/general/Text.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1166,7 +1168,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1203,7 +1205,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1220,7 +1222,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L49">lightcordapi/src/components/general/Text.ts:49</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L49">LightcordApi/src/components/general/Text.ts:49</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1230,13 +1232,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">tag<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "div"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L48">lightcordapi/src/components/general/Text.ts:48</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L48">LightcordApi/src/components/general/Text.ts:48</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L47">lightcordapi/src/components/general/Text.ts:47</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L47">LightcordApi/src/components/general/Text.ts:47</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -248,6 +248,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -497,7 +499,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L10">lightcordapi/src/components/general/Title.tsx:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L10">LightcordApi/src/components/general/Title.tsx:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -528,7 +530,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -539,7 +541,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -557,7 +559,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -568,7 +570,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -600,7 +602,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -616,7 +618,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L15">lightcordapi/src/components/general/Title.tsx:15</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L15">LightcordApi/src/components/general/Title.tsx:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -629,7 +631,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L43">lightcordapi/src/components/general/Title.tsx:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L43">LightcordApi/src/components/general/Title.tsx:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -656,7 +658,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -691,7 +693,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -727,7 +729,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -757,7 +759,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -777,7 +779,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -810,7 +812,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -833,7 +835,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -867,7 +869,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -888,7 +890,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -923,7 +925,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -956,7 +958,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -992,7 +994,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1007,7 +1009,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L23">lightcordapi/src/components/general/Title.tsx:23</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L23">LightcordApi/src/components/general/Title.tsx:23</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1048,7 +1050,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1085,7 +1087,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1102,7 +1104,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L39">lightcordapi/src/components/general/Title.tsx:39</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L39">LightcordApi/src/components/general/Title.tsx:39</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1112,13 +1114,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L40">lightcordapi/src/components/general/Title.tsx:40</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L40">LightcordApi/src/components/general/Title.tsx:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L38">lightcordapi/src/components/general/Title.tsx:38</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L38">LightcordApi/src/components/general/Title.tsx:38</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -263,6 +263,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -532,7 +534,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L20">lightcordapi/src/components/general/Tooltip.ts:20</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L20">LightcordApi/src/components/general/Tooltip.ts:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -563,7 +565,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -574,7 +576,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -592,7 +594,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -603,7 +605,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -613,7 +615,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">Colors<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_general_tooltip_.html#tooltipcolor" class="tsd-signature-type">TooltipColor</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["black", "grey", "brand", "green", "yellow", "red"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L95">lightcordapi/src/components/general/Tooltip.ts:95</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L95">LightcordApi/src/components/general/Tooltip.ts:95</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -623,7 +625,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">Positions<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_general_tooltip_.html#tooltipposition" class="tsd-signature-type">TooltipPosition</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["top", "left", "right", "bottom"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L94">lightcordapi/src/components/general/Tooltip.ts:94</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L94">LightcordApi/src/components/general/Tooltip.ts:94</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -655,7 +657,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -671,7 +673,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L25">lightcordapi/src/components/general/Tooltip.ts:25</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L25">LightcordApi/src/components/general/Tooltip.ts:25</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -684,7 +686,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L56">lightcordapi/src/components/general/Tooltip.ts:56</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L56">LightcordApi/src/components/general/Tooltip.ts:56</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -711,7 +713,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -746,7 +748,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -782,7 +784,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -812,7 +814,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -832,7 +834,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -865,7 +867,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -888,7 +890,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -922,7 +924,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -943,7 +945,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -978,7 +980,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1011,7 +1013,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1047,7 +1049,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1062,7 +1064,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L31">lightcordapi/src/components/general/Tooltip.ts:31</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L31">LightcordApi/src/components/general/Tooltip.ts:31</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1103,7 +1105,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1140,7 +1142,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1157,7 +1159,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">children<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L50">lightcordapi/src/components/general/Tooltip.ts:50</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L50">LightcordApi/src/components/general/Tooltip.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1167,7 +1169,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">color<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"brand"</span><span class="tsd-signature-symbol"> = "brand"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L53">lightcordapi/src/components/general/Tooltip.ts:53</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L53">LightcordApi/src/components/general/Tooltip.ts:53</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1177,7 +1179,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">position<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"top"</span><span class="tsd-signature-symbol"> = "top"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L52">lightcordapi/src/components/general/Tooltip.ts:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L52">LightcordApi/src/components/general/Tooltip.ts:52</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1187,13 +1189,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "No text was passed to Tooltip"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L51">lightcordapi/src/components/general/Tooltip.ts:51</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L51">LightcordApi/src/components/general/Tooltip.ts:51</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L49">lightcordapi/src/components/general/Tooltip.ts:49</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L49">LightcordApi/src/components/general/Tooltip.ts:49</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -269,6 +269,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -524,7 +526,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L21">lightcordapi/src/components/inputs/Button.tsx:21</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L21">LightcordApi/src/components/inputs/Button.tsx:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -555,7 +557,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -566,7 +568,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -584,7 +586,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -595,7 +597,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -605,7 +607,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">Colors<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_inputs_button_.html#buttoncolor" class="tsd-signature-type">ButtonColor</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["brand", "grey", "red", "green", "yellow", "primary", "link", "white", "black", "transparent"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L30">lightcordapi/src/components/inputs/Button.tsx:30</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L30">LightcordApi/src/components/inputs/Button.tsx:30</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -615,7 +617,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">HoverColors<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_inputs_button_.html#buttonhovers" class="tsd-signature-type">ButtonHovers</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["default", ...Button.Colors]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L33">lightcordapi/src/components/inputs/Button.tsx:33</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L33">LightcordApi/src/components/inputs/Button.tsx:33</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -625,7 +627,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">Looks<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_inputs_button_.html#buttonlook" class="tsd-signature-type">ButtonLook</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["filled", "inverted", "outlined", "ghost", "link", "blank"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L31">lightcordapi/src/components/inputs/Button.tsx:31</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L31">LightcordApi/src/components/inputs/Button.tsx:31</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -635,7 +637,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">Sizes<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_inputs_button_.html#buttonsize" class="tsd-signature-type">ButtonSize</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["small", "medium", "large", "xlarge", "min", "max", "icon", "none"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L32">lightcordapi/src/components/inputs/Button.tsx:32</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L32">LightcordApi/src/components/inputs/Button.tsx:32</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -667,7 +669,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -683,7 +685,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L35">lightcordapi/src/components/inputs/Button.tsx:35</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L35">LightcordApi/src/components/inputs/Button.tsx:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -696,7 +698,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L170">lightcordapi/src/components/inputs/Button.tsx:170</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L170">LightcordApi/src/components/inputs/Button.tsx:170</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -723,7 +725,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -758,7 +760,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -794,7 +796,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -824,7 +826,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -844,7 +846,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -877,7 +879,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -900,7 +902,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -934,7 +936,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -955,7 +957,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -990,7 +992,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1023,7 +1025,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1059,7 +1061,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1074,7 +1076,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L44">lightcordapi/src/components/inputs/Button.tsx:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L44">LightcordApi/src/components/inputs/Button.tsx:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1115,7 +1117,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1152,7 +1154,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -245,6 +245,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -493,7 +495,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L47">lightcordapi/src/components/inputs/ColorPicker.tsx:47</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L47">LightcordApi/src/components/inputs/ColorPicker.tsx:47</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -509,7 +511,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L85">lightcordapi/src/components/inputs/ColorPicker.tsx:85</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L85">LightcordApi/src/components/inputs/ColorPicker.tsx:85</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -522,7 +524,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L157">lightcordapi/src/components/inputs/ColorPicker.tsx:157</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L157">LightcordApi/src/components/inputs/ColorPicker.tsx:157</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -549,7 +551,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -584,7 +586,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -620,7 +622,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -650,7 +652,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -670,7 +672,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -703,7 +705,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -726,7 +728,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -760,7 +762,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -781,7 +783,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -816,7 +818,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -852,7 +854,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -872,7 +874,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L68">lightcordapi/src/components/inputs/ColorPicker.tsx:68</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L68">LightcordApi/src/components/inputs/ColorPicker.tsx:68</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -886,7 +888,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L147">lightcordapi/src/components/inputs/ColorPicker.tsx:147</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L147">LightcordApi/src/components/inputs/ColorPicker.tsx:147</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -900,7 +902,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L91">lightcordapi/src/components/inputs/ColorPicker.tsx:91</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L91">LightcordApi/src/components/inputs/ColorPicker.tsx:91</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -937,7 +939,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -956,7 +958,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L58">lightcordapi/src/components/inputs/ColorPicker.tsx:58</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L58">LightcordApi/src/components/inputs/ColorPicker.tsx:58</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -973,7 +975,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">baseColors<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = Constants.baseColors</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L79">lightcordapi/src/components/inputs/ColorPicker.tsx:79</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L79">LightcordApi/src/components/inputs/ColorPicker.tsx:79</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -983,7 +985,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">customColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L78">lightcordapi/src/components/inputs/ColorPicker.tsx:78</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L78">LightcordApi/src/components/inputs/ColorPicker.tsx:78</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -993,7 +995,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">defaultColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = Constants.defaultColor</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L77">lightcordapi/src/components/inputs/ColorPicker.tsx:77</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L77">LightcordApi/src/components/inputs/ColorPicker.tsx:77</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1003,7 +1005,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L81">lightcordapi/src/components/inputs/ColorPicker.tsx:81</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L81">LightcordApi/src/components/inputs/ColorPicker.tsx:81</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1013,7 +1015,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L82">lightcordapi/src/components/inputs/ColorPicker.tsx:82</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L82">LightcordApi/src/components/inputs/ColorPicker.tsx:82</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1023,13 +1025,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L80">lightcordapi/src/components/inputs/ColorPicker.tsx:80</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L80">LightcordApi/src/components/inputs/ColorPicker.tsx:80</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L76">lightcordapi/src/components/inputs/ColorPicker.tsx:76</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L76">LightcordApi/src/components/inputs/ColorPicker.tsx:76</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1043,7 +1045,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">info<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "To convert hex colors to decimal, you can do `Lightcord.Api.Utils.HexColorToDecimal('#7289DA')` and go back with `Lightcord.Api.Utils.DecimalColorToHex(7506394)`"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L183">lightcordapi/src/components/inputs/ColorPicker.tsx:183</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L183">LightcordApi/src/components/inputs/ColorPicker.tsx:183</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1053,13 +1055,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">warn<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "The component may not appear instantly. The component needs to be loaded, so you could experience 50-300ms loading time depending on your internet connection."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L184">lightcordapi/src/components/inputs/ColorPicker.tsx:184</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L184">LightcordApi/src/components/inputs/ColorPicker.tsx:184</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L182">lightcordapi/src/components/inputs/ColorPicker.tsx:182</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L182">LightcordApi/src/components/inputs/ColorPicker.tsx:182</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -260,6 +260,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -542,7 +544,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L28">lightcordapi/src/components/inputs/ColorPicker.old.tsx:28</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L28">LightcordApi/src/components/inputs/ColorPicker.old.tsx:28</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -573,7 +575,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -584,7 +586,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -602,7 +604,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -613,7 +615,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -645,7 +647,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -661,7 +663,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L42">lightcordapi/src/components/inputs/ColorPicker.old.tsx:42</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L42">LightcordApi/src/components/inputs/ColorPicker.old.tsx:42</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -674,7 +676,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> <span class="tsd-signature-symbol">[]</span></h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L124">lightcordapi/src/components/inputs/ColorPicker.old.tsx:124</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L124">LightcordApi/src/components/inputs/ColorPicker.old.tsx:124</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -701,7 +703,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -736,7 +738,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -772,7 +774,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -802,7 +804,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -822,7 +824,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -855,7 +857,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -878,7 +880,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -912,7 +914,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -933,7 +935,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -968,7 +970,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1001,7 +1003,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1037,7 +1039,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1052,7 +1054,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L113">lightcordapi/src/components/inputs/ColorPicker.old.tsx:113</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L113">LightcordApi/src/components/inputs/ColorPicker.old.tsx:113</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1066,7 +1068,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L64">lightcordapi/src/components/inputs/ColorPicker.old.tsx:64</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L64">LightcordApi/src/components/inputs/ColorPicker.old.tsx:64</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1080,7 +1082,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L105">lightcordapi/src/components/inputs/ColorPicker.old.tsx:105</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L105">LightcordApi/src/components/inputs/ColorPicker.old.tsx:105</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1100,7 +1102,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L109">lightcordapi/src/components/inputs/ColorPicker.old.tsx:109</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L109">LightcordApi/src/components/inputs/ColorPicker.old.tsx:109</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1141,7 +1143,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1178,7 +1180,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1195,7 +1197,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">baseColors<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">true</span><span class="tsd-signature-symbol"> = true</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L39">lightcordapi/src/components/inputs/ColorPicker.old.tsx:39</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L39">LightcordApi/src/components/inputs/ColorPicker.old.tsx:39</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1205,7 +1207,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">customColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">true</span><span class="tsd-signature-symbol"> = true</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L38">lightcordapi/src/components/inputs/ColorPicker.old.tsx:38</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L38">LightcordApi/src/components/inputs/ColorPicker.old.tsx:38</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1215,7 +1217,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">defaultColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">true</span><span class="tsd-signature-symbol"> = true</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L37">lightcordapi/src/components/inputs/ColorPicker.old.tsx:37</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L37">LightcordApi/src/components/inputs/ColorPicker.old.tsx:37</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1225,7 +1227,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">inline<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L34">lightcordapi/src/components/inputs/ColorPicker.old.tsx:34</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L34">LightcordApi/src/components/inputs/ColorPicker.old.tsx:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1235,7 +1237,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">popout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L35">lightcordapi/src/components/inputs/ColorPicker.old.tsx:35</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L35">LightcordApi/src/components/inputs/ColorPicker.old.tsx:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1245,13 +1247,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">tooltip<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L36">lightcordapi/src/components/inputs/ColorPicker.old.tsx:36</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L36">LightcordApi/src/components/inputs/ColorPicker.old.tsx:36</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L33">lightcordapi/src/components/inputs/ColorPicker.old.tsx:33</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L33">LightcordApi/src/components/inputs/ColorPicker.old.tsx:33</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -275,6 +275,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -516,7 +518,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L341">lightcordapi/src/components/inputs/DateInput.tsx:341</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L341">LightcordApi/src/components/inputs/DateInput.tsx:341</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -547,7 +549,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -558,7 +560,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -576,7 +578,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -587,7 +589,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -619,7 +621,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -629,7 +631,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">displayName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "AnimatedCalendarPicker"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L341">lightcordapi/src/components/inputs/DateInput.tsx:341</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L341">LightcordApi/src/components/inputs/DateInput.tsx:341</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -645,7 +647,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L349">lightcordapi/src/components/inputs/DateInput.tsx:349</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L349">LightcordApi/src/components/inputs/DateInput.tsx:349</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -672,7 +674,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -707,7 +709,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -743,7 +745,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -773,7 +775,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -793,7 +795,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -826,7 +828,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -846,7 +848,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L355">lightcordapi/src/components/inputs/DateInput.tsx:355</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L355">LightcordApi/src/components/inputs/DateInput.tsx:355</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -866,7 +868,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L362">lightcordapi/src/components/inputs/DateInput.tsx:362</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L362">LightcordApi/src/components/inputs/DateInput.tsx:362</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -889,7 +891,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -923,7 +925,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -944,7 +946,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -979,7 +981,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1012,7 +1014,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1048,7 +1050,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1063,7 +1065,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L369">lightcordapi/src/components/inputs/DateInput.tsx:369</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L369">LightcordApi/src/components/inputs/DateInput.tsx:369</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1104,7 +1106,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1141,7 +1143,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -269,6 +269,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -527,8 +529,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -559,7 +561,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -570,7 +572,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -588,7 +590,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -599,7 +601,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -631,7 +633,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -641,7 +643,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">displayName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "CalendarPicker"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L429">lightcordapi/src/components/inputs/DateInput.tsx:429</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L429">LightcordApi/src/components/inputs/DateInput.tsx:429</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -668,7 +670,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -703,7 +705,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -739,7 +741,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -769,7 +771,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -789,7 +791,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -822,7 +824,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -845,7 +847,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -879,7 +881,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -900,7 +902,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -935,7 +937,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -968,7 +970,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1004,7 +1006,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1019,7 +1021,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L431">lightcordapi/src/components/inputs/DateInput.tsx:431</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L431">LightcordApi/src/components/inputs/DateInput.tsx:431</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1060,7 +1062,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1097,7 +1099,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1114,13 +1116,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Date</span><span class="tsd-signature-symbol"> = new Date()</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L427">lightcordapi/src/components/inputs/DateInput.tsx:427</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L427">LightcordApi/src/components/inputs/DateInput.tsx:427</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L426">lightcordapi/src/components/inputs/DateInput.tsx:426</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L426">LightcordApi/src/components/inputs/DateInput.tsx:426</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -299,6 +299,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -612,7 +614,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L46">lightcordapi/src/components/inputs/DateInput.tsx:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L46">LightcordApi/src/components/inputs/DateInput.tsx:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -643,7 +645,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -653,7 +655,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<div class="tsd-signature tsd-kind-icon">inputRef<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Component</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L66">lightcordapi/src/components/inputs/DateInput.tsx:66</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L66">LightcordApi/src/components/inputs/DateInput.tsx:66</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -664,7 +666,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -682,7 +684,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -693,7 +695,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -725,7 +727,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -741,7 +743,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L59">lightcordapi/src/components/inputs/DateInput.tsx:59</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L59">LightcordApi/src/components/inputs/DateInput.tsx:59</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -754,7 +756,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L226">lightcordapi/src/components/inputs/DateInput.tsx:226</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L226">LightcordApi/src/components/inputs/DateInput.tsx:226</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -781,7 +783,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -816,7 +818,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -852,7 +854,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -866,7 +868,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L79">lightcordapi/src/components/inputs/DateInput.tsx:79</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L79">LightcordApi/src/components/inputs/DateInput.tsx:79</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -896,7 +898,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -916,7 +918,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -937,7 +939,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L68">lightcordapi/src/components/inputs/DateInput.tsx:68</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L68">LightcordApi/src/components/inputs/DateInput.tsx:68</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -960,7 +962,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -994,7 +996,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1015,7 +1017,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1050,7 +1052,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1083,7 +1085,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1097,7 +1099,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L85">lightcordapi/src/components/inputs/DateInput.tsx:85</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L85">LightcordApi/src/components/inputs/DateInput.tsx:85</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1133,7 +1135,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1153,7 +1155,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L93">lightcordapi/src/components/inputs/DateInput.tsx:93</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L93">LightcordApi/src/components/inputs/DateInput.tsx:93</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1173,7 +1175,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L107">lightcordapi/src/components/inputs/DateInput.tsx:107</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L107">LightcordApi/src/components/inputs/DateInput.tsx:107</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1188,7 +1190,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L178">lightcordapi/src/components/inputs/DateInput.tsx:178</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L178">LightcordApi/src/components/inputs/DateInput.tsx:178</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1202,7 +1204,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L144">lightcordapi/src/components/inputs/DateInput.tsx:144</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L144">LightcordApi/src/components/inputs/DateInput.tsx:144</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1222,7 +1224,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L140">lightcordapi/src/components/inputs/DateInput.tsx:140</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L140">LightcordApi/src/components/inputs/DateInput.tsx:140</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1263,7 +1265,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1300,7 +1302,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1320,7 +1322,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L126">lightcordapi/src/components/inputs/DateInput.tsx:126</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L126">LightcordApi/src/components/inputs/DateInput.tsx:126</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1337,7 +1339,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">dateFormat<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = DateConstants.DATE_FORMAT</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L44">lightcordapi/src/components/inputs/DateInput.tsx:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L44">LightcordApi/src/components/inputs/DateInput.tsx:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1347,13 +1349,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">isModalInput<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">true</span><span class="tsd-signature-symbol"> = true</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L45">lightcordapi/src/components/inputs/DateInput.tsx:45</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L45">LightcordApi/src/components/inputs/DateInput.tsx:45</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L43">lightcordapi/src/components/inputs/DateInput.tsx:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L43">LightcordApi/src/components/inputs/DateInput.tsx:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1367,13 +1369,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">warn<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "This component is still `experimental`. Please report issues to [Lightcord's developers](https://github.com/Lightcord/Lightcord/issues)."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L223">lightcordapi/src/components/inputs/DateInput.tsx:223</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L223">LightcordApi/src/components/inputs/DateInput.tsx:223</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L222">lightcordapi/src/components/inputs/DateInput.tsx:222</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L222">LightcordApi/src/components/inputs/DateInput.tsx:222</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -266,6 +266,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -555,7 +557,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L70">lightcordapi/src/components/inputs/DateRange.tsx:70</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L70">LightcordApi/src/components/inputs/DateRange.tsx:70</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -586,7 +588,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -597,7 +599,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -615,7 +617,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -626,7 +628,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -658,7 +660,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -668,7 +670,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">displayName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "DateRange"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L70">lightcordapi/src/components/inputs/DateRange.tsx:70</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L70">LightcordApi/src/components/inputs/DateRange.tsx:70</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -684,7 +686,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L27">lightcordapi/src/components/inputs/DateRange.tsx:27</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L27">LightcordApi/src/components/inputs/DateRange.tsx:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -711,7 +713,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -746,7 +748,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -782,7 +784,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -812,7 +814,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -832,7 +834,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -853,7 +855,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L80">lightcordapi/src/components/inputs/DateRange.tsx:80</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L80">LightcordApi/src/components/inputs/DateRange.tsx:80</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -876,7 +878,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -910,7 +912,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -931,7 +933,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -966,7 +968,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -999,7 +1001,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1013,7 +1015,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L101">lightcordapi/src/components/inputs/DateRange.tsx:101</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L101">LightcordApi/src/components/inputs/DateRange.tsx:101</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1027,7 +1029,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L106">lightcordapi/src/components/inputs/DateRange.tsx:106</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L106">LightcordApi/src/components/inputs/DateRange.tsx:106</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1063,7 +1065,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1077,7 +1079,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L111">lightcordapi/src/components/inputs/DateRange.tsx:111</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L111">LightcordApi/src/components/inputs/DateRange.tsx:111</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1097,7 +1099,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L89">lightcordapi/src/components/inputs/DateRange.tsx:89</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L89">LightcordApi/src/components/inputs/DateRange.tsx:89</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1117,7 +1119,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L95">lightcordapi/src/components/inputs/DateRange.tsx:95</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L95">LightcordApi/src/components/inputs/DateRange.tsx:95</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1132,7 +1134,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L120">lightcordapi/src/components/inputs/DateRange.tsx:120</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L120">LightcordApi/src/components/inputs/DateRange.tsx:120</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1173,7 +1175,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1210,7 +1212,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1227,13 +1229,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">dateFormat<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = DateConstants.DATE_FORMAT</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L67">lightcordapi/src/components/inputs/DateRange.tsx:67</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L67">LightcordApi/src/components/inputs/DateRange.tsx:67</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L66">lightcordapi/src/components/inputs/DateRange.tsx:66</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L66">LightcordApi/src/components/inputs/DateRange.tsx:66</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1247,13 +1249,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">warn<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "This component is still `experimental`. Please report issues to [Lightcord's developers](https://github.com/Lightcord/Lightcord/issues)."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L153">lightcordapi/src/components/inputs/DateRange.tsx:153</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L153">LightcordApi/src/components/inputs/DateRange.tsx:153</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L152">lightcordapi/src/components/inputs/DateRange.tsx:152</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L152">LightcordApi/src/components/inputs/DateRange.tsx:152</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -257,6 +257,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -555,7 +557,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L44">lightcordapi/src/components/inputs/Dropdown.tsx:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L44">LightcordApi/src/components/inputs/Dropdown.tsx:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -586,7 +588,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -597,7 +599,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -615,7 +617,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -626,7 +628,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -658,7 +660,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -674,7 +676,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L82">lightcordapi/src/components/inputs/Dropdown.tsx:82</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L82">LightcordApi/src/components/inputs/Dropdown.tsx:82</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -687,7 +689,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L98">lightcordapi/src/components/inputs/Dropdown.tsx:98</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L98">LightcordApi/src/components/inputs/Dropdown.tsx:98</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -700,7 +702,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L102">lightcordapi/src/components/inputs/Dropdown.tsx:102</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L102">LightcordApi/src/components/inputs/Dropdown.tsx:102</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -727,7 +729,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -762,7 +764,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -798,7 +800,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -828,7 +830,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -848,7 +850,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -881,7 +883,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -904,7 +906,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -938,7 +940,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -959,7 +961,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -994,7 +996,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1027,7 +1029,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1063,7 +1065,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1083,7 +1085,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L74">lightcordapi/src/components/inputs/Dropdown.tsx:74</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L74">LightcordApi/src/components/inputs/Dropdown.tsx:74</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1098,7 +1100,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L88">lightcordapi/src/components/inputs/Dropdown.tsx:88</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L88">LightcordApi/src/components/inputs/Dropdown.tsx:88</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1139,7 +1141,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1176,7 +1178,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1193,7 +1195,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L54">lightcordapi/src/components/inputs/Dropdown.tsx:54</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L54">LightcordApi/src/components/inputs/Dropdown.tsx:54</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1203,7 +1205,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">clearable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L67">lightcordapi/src/components/inputs/Dropdown.tsx:67</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L67">LightcordApi/src/components/inputs/Dropdown.tsx:67</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1213,7 +1215,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">darkThemeColorOverrides<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L70">lightcordapi/src/components/inputs/Dropdown.tsx:70</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L70">LightcordApi/src/components/inputs/Dropdown.tsx:70</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1223,7 +1225,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L65">lightcordapi/src/components/inputs/Dropdown.tsx:65</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L65">LightcordApi/src/components/inputs/Dropdown.tsx:65</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1233,7 +1235,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">error<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L55">lightcordapi/src/components/inputs/Dropdown.tsx:55</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L55">LightcordApi/src/components/inputs/Dropdown.tsx:55</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1243,7 +1245,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">isMulti<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L71">lightcordapi/src/components/inputs/Dropdown.tsx:71</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L71">LightcordApi/src/components/inputs/Dropdown.tsx:71</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1253,7 +1255,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">lightThemeColorOverrides<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L69">lightcordapi/src/components/inputs/Dropdown.tsx:69</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L69">LightcordApi/src/components/inputs/Dropdown.tsx:69</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1263,7 +1265,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">multiValueRenderer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L61">lightcordapi/src/components/inputs/Dropdown.tsx:61</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L61">LightcordApi/src/components/inputs/Dropdown.tsx:61</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1273,7 +1275,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L63">lightcordapi/src/components/inputs/Dropdown.tsx:63</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L63">LightcordApi/src/components/inputs/Dropdown.tsx:63</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1283,7 +1285,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">optionRenderer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L62">lightcordapi/src/components/inputs/Dropdown.tsx:62</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L62">LightcordApi/src/components/inputs/Dropdown.tsx:62</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1293,7 +1295,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">options<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = [{value: "none","label": "No options - No options was passed to Dropdown. If you meant to put an empty dropdown, input an empty array."}]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L56">lightcordapi/src/components/inputs/Dropdown.tsx:56</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L56">LightcordApi/src/components/inputs/Dropdown.tsx:56</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1303,7 +1305,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">searchable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L66">lightcordapi/src/components/inputs/Dropdown.tsx:66</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L66">LightcordApi/src/components/inputs/Dropdown.tsx:66</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1313,7 +1315,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">styleOverrides<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L68">lightcordapi/src/components/inputs/Dropdown.tsx:68</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L68">LightcordApi/src/components/inputs/Dropdown.tsx:68</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1323,7 +1325,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L64">lightcordapi/src/components/inputs/Dropdown.tsx:64</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L64">LightcordApi/src/components/inputs/Dropdown.tsx:64</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1333,13 +1335,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">valueRenderer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L60">lightcordapi/src/components/inputs/Dropdown.tsx:60</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L60">LightcordApi/src/components/inputs/Dropdown.tsx:60</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L53">lightcordapi/src/components/inputs/Dropdown.tsx:53</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L53">LightcordApi/src/components/inputs/Dropdown.tsx:53</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -254,6 +254,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -528,7 +530,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L36">lightcordapi/src/components/inputs/RadioGroup.tsx:36</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L36">LightcordApi/src/components/inputs/RadioGroup.tsx:36</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -559,7 +561,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -570,7 +572,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -588,7 +590,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -599,7 +601,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -631,7 +633,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -647,7 +649,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L52">lightcordapi/src/components/inputs/RadioGroup.tsx:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L52">LightcordApi/src/components/inputs/RadioGroup.tsx:52</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -663,7 +665,7 @@ class Foo extends React.Component {
|
||||
</h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L69">lightcordapi/src/components/inputs/RadioGroup.tsx:69</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L69">LightcordApi/src/components/inputs/RadioGroup.tsx:69</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -676,7 +678,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L73">lightcordapi/src/components/inputs/RadioGroup.tsx:73</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L73">LightcordApi/src/components/inputs/RadioGroup.tsx:73</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -703,7 +705,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -738,7 +740,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -774,7 +776,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -804,7 +806,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -824,7 +826,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -857,7 +859,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -880,7 +882,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -914,7 +916,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -935,7 +937,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -970,7 +972,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1003,7 +1005,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1039,7 +1041,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1059,7 +1061,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L45">lightcordapi/src/components/inputs/RadioGroup.tsx:45</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L45">LightcordApi/src/components/inputs/RadioGroup.tsx:45</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1074,7 +1076,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L58">lightcordapi/src/components/inputs/RadioGroup.tsx:58</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L58">LightcordApi/src/components/inputs/RadioGroup.tsx:58</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1115,7 +1117,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1152,7 +1154,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1169,7 +1171,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L31">lightcordapi/src/components/inputs/RadioGroup.tsx:31</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L31">LightcordApi/src/components/inputs/RadioGroup.tsx:31</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1179,7 +1181,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">infoClassName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L34">lightcordapi/src/components/inputs/RadioGroup.tsx:34</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L34">LightcordApi/src/components/inputs/RadioGroup.tsx:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1189,7 +1191,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">itemType<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"bar"</span><span class="tsd-signature-symbol"> = "bar"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L33">lightcordapi/src/components/inputs/RadioGroup.tsx:33</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L33">LightcordApi/src/components/inputs/RadioGroup.tsx:33</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1199,7 +1201,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L35">lightcordapi/src/components/inputs/RadioGroup.tsx:35</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L35">LightcordApi/src/components/inputs/RadioGroup.tsx:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1209,7 +1211,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">options<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = [{value: "none",name: "No options",desc: "No options was passed to Choices. If you meant to display no options at all, please pass an empty array.",color: "#f04747"}]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L24">lightcordapi/src/components/inputs/RadioGroup.tsx:24</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L24">LightcordApi/src/components/inputs/RadioGroup.tsx:24</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1219,7 +1221,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"medium"</span><span class="tsd-signature-symbol"> = "medium"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L32">lightcordapi/src/components/inputs/RadioGroup.tsx:32</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L32">LightcordApi/src/components/inputs/RadioGroup.tsx:32</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1229,13 +1231,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L30">lightcordapi/src/components/inputs/RadioGroup.tsx:30</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L30">LightcordApi/src/components/inputs/RadioGroup.tsx:30</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L23">lightcordapi/src/components/inputs/RadioGroup.tsx:23</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L23">LightcordApi/src/components/inputs/RadioGroup.tsx:23</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -257,6 +257,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -549,7 +551,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L19">lightcordapi/src/components/inputs/Switch.tsx:19</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L19">LightcordApi/src/components/inputs/Switch.tsx:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -580,7 +582,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -591,7 +593,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -609,7 +611,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -620,7 +622,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -652,7 +654,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -668,7 +670,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L29">lightcordapi/src/components/inputs/Switch.tsx:29</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L29">LightcordApi/src/components/inputs/Switch.tsx:29</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -681,7 +683,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L53">lightcordapi/src/components/inputs/Switch.tsx:53</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L53">LightcordApi/src/components/inputs/Switch.tsx:53</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -694,7 +696,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L69">lightcordapi/src/components/inputs/Switch.tsx:69</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L69">LightcordApi/src/components/inputs/Switch.tsx:69</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -721,7 +723,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -756,7 +758,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -792,7 +794,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -822,7 +824,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -842,7 +844,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -875,7 +877,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -898,7 +900,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -932,7 +934,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -953,7 +955,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -988,7 +990,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1021,7 +1023,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1057,7 +1059,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1077,7 +1079,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L46">lightcordapi/src/components/inputs/Switch.tsx:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L46">LightcordApi/src/components/inputs/Switch.tsx:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1092,7 +1094,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L35">lightcordapi/src/components/inputs/Switch.tsx:35</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L35">LightcordApi/src/components/inputs/Switch.tsx:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1133,7 +1135,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1170,7 +1172,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1187,7 +1189,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L64">lightcordapi/src/components/inputs/Switch.tsx:64</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L64">LightcordApi/src/components/inputs/Switch.tsx:64</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1197,7 +1199,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L63">lightcordapi/src/components/inputs/Switch.tsx:63</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L63">LightcordApi/src/components/inputs/Switch.tsx:63</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1207,7 +1209,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">fill<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L61">lightcordapi/src/components/inputs/Switch.tsx:61</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L61">LightcordApi/src/components/inputs/Switch.tsx:61</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1217,7 +1219,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L58">lightcordapi/src/components/inputs/Switch.tsx:58</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L58">LightcordApi/src/components/inputs/Switch.tsx:58</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1227,7 +1229,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L59">lightcordapi/src/components/inputs/Switch.tsx:59</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L59">LightcordApi/src/components/inputs/Switch.tsx:59</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1237,7 +1239,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "default"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L65">lightcordapi/src/components/inputs/Switch.tsx:65</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L65">LightcordApi/src/components/inputs/Switch.tsx:65</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1247,7 +1249,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">style<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L66">lightcordapi/src/components/inputs/Switch.tsx:66</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L66">LightcordApi/src/components/inputs/Switch.tsx:66</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1257,7 +1259,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">theme<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "default"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L62">lightcordapi/src/components/inputs/Switch.tsx:62</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L62">LightcordApi/src/components/inputs/Switch.tsx:62</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1267,13 +1269,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L60">lightcordapi/src/components/inputs/Switch.tsx:60</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L60">LightcordApi/src/components/inputs/Switch.tsx:60</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L57">lightcordapi/src/components/inputs/Switch.tsx:57</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L57">LightcordApi/src/components/inputs/Switch.tsx:57</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1287,13 +1289,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">error<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "The `clear` option doesn't work well on light theme."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L99">lightcordapi/src/components/inputs/Switch.tsx:99</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L99">LightcordApi/src/components/inputs/Switch.tsx:99</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L98">lightcordapi/src/components/inputs/Switch.tsx:98</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L98">LightcordApi/src/components/inputs/Switch.tsx:98</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -266,6 +266,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -603,7 +605,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L26">lightcordapi/src/components/inputs/TextArea.tsx:26</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L26">LightcordApi/src/components/inputs/TextArea.tsx:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -634,7 +636,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -645,7 +647,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -663,7 +665,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -674,7 +676,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -706,7 +708,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -722,7 +724,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L40">lightcordapi/src/components/inputs/TextArea.tsx:40</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L40">LightcordApi/src/components/inputs/TextArea.tsx:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -735,7 +737,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L75">lightcordapi/src/components/inputs/TextArea.tsx:75</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L75">LightcordApi/src/components/inputs/TextArea.tsx:75</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -748,7 +750,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L98">lightcordapi/src/components/inputs/TextArea.tsx:98</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L98">LightcordApi/src/components/inputs/TextArea.tsx:98</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -775,7 +777,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -810,7 +812,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -846,7 +848,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -876,7 +878,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -896,7 +898,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -929,7 +931,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -952,7 +954,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -986,7 +988,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1007,7 +1009,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1042,7 +1044,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1075,7 +1077,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1111,7 +1113,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1134,7 +1136,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L57">lightcordapi/src/components/inputs/TextArea.tsx:57</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L57">LightcordApi/src/components/inputs/TextArea.tsx:57</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1157,7 +1159,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L46">lightcordapi/src/components/inputs/TextArea.tsx:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L46">LightcordApi/src/components/inputs/TextArea.tsx:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1180,7 +1182,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L53">lightcordapi/src/components/inputs/TextArea.tsx:53</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L53">LightcordApi/src/components/inputs/TextArea.tsx:53</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1200,7 +1202,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L61">lightcordapi/src/components/inputs/TextArea.tsx:61</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L61">LightcordApi/src/components/inputs/TextArea.tsx:61</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1215,7 +1217,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L65">lightcordapi/src/components/inputs/TextArea.tsx:65</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L65">LightcordApi/src/components/inputs/TextArea.tsx:65</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1256,7 +1258,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1293,7 +1295,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1310,7 +1312,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">autoFocus<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L83">lightcordapi/src/components/inputs/TextArea.tsx:83</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L83">LightcordApi/src/components/inputs/TextArea.tsx:83</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1320,7 +1322,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">autosize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L86">lightcordapi/src/components/inputs/TextArea.tsx:86</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L86">LightcordApi/src/components/inputs/TextArea.tsx:86</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1330,7 +1332,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L91">lightcordapi/src/components/inputs/TextArea.tsx:91</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L91">LightcordApi/src/components/inputs/TextArea.tsx:91</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1340,7 +1342,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L81">lightcordapi/src/components/inputs/TextArea.tsx:81</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L81">LightcordApi/src/components/inputs/TextArea.tsx:81</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1350,7 +1352,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">error<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L89">lightcordapi/src/components/inputs/TextArea.tsx:89</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L89">LightcordApi/src/components/inputs/TextArea.tsx:89</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1360,7 +1362,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">flex<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L85">lightcordapi/src/components/inputs/TextArea.tsx:85</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L85">LightcordApi/src/components/inputs/TextArea.tsx:85</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1370,7 +1372,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L92">lightcordapi/src/components/inputs/TextArea.tsx:92</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L92">LightcordApi/src/components/inputs/TextArea.tsx:92</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1380,7 +1382,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">maxLength<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L90">lightcordapi/src/components/inputs/TextArea.tsx:90</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L90">LightcordApi/src/components/inputs/TextArea.tsx:90</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1390,7 +1392,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L80">lightcordapi/src/components/inputs/TextArea.tsx:80</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L80">LightcordApi/src/components/inputs/TextArea.tsx:80</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1400,7 +1402,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onBlur<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L95">lightcordapi/src/components/inputs/TextArea.tsx:95</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L95">LightcordApi/src/components/inputs/TextArea.tsx:95</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1410,7 +1412,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L93">lightcordapi/src/components/inputs/TextArea.tsx:93</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L93">LightcordApi/src/components/inputs/TextArea.tsx:93</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1420,7 +1422,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onFocus<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L94">lightcordapi/src/components/inputs/TextArea.tsx:94</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L94">LightcordApi/src/components/inputs/TextArea.tsx:94</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1430,7 +1432,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">onKeyDown<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L96">lightcordapi/src/components/inputs/TextArea.tsx:96</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L96">LightcordApi/src/components/inputs/TextArea.tsx:96</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1440,7 +1442,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">placeholder<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L82">lightcordapi/src/components/inputs/TextArea.tsx:82</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L82">LightcordApi/src/components/inputs/TextArea.tsx:82</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1450,7 +1452,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">resizeable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L84">lightcordapi/src/components/inputs/TextArea.tsx:84</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L84">LightcordApi/src/components/inputs/TextArea.tsx:84</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1460,7 +1462,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">rows<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 3</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L87">lightcordapi/src/components/inputs/TextArea.tsx:87</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L87">LightcordApi/src/components/inputs/TextArea.tsx:87</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1470,13 +1472,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L88">lightcordapi/src/components/inputs/TextArea.tsx:88</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L88">LightcordApi/src/components/inputs/TextArea.tsx:88</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L79">lightcordapi/src/components/inputs/TextArea.tsx:79</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L79">LightcordApi/src/components/inputs/TextArea.tsx:79</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1490,13 +1492,13 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">warn<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "This should be used for multi line inputs."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L164">lightcordapi/src/components/inputs/TextArea.tsx:164</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L164">LightcordApi/src/components/inputs/TextArea.tsx:164</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L163">lightcordapi/src/components/inputs/TextArea.tsx:163</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L163">LightcordApi/src/components/inputs/TextArea.tsx:163</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -251,6 +251,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -533,7 +535,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L27">lightcordapi/src/components/inputs/TextInput.tsx:27</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L27">LightcordApi/src/components/inputs/TextInput.tsx:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -546,7 +548,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">hasSet<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L27">lightcordapi/src/components/inputs/TextInput.tsx:27</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L27">LightcordApi/src/components/inputs/TextInput.tsx:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -562,7 +564,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L56">lightcordapi/src/components/inputs/TextInput.tsx:56</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L56">LightcordApi/src/components/inputs/TextInput.tsx:56</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -575,7 +577,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L89">lightcordapi/src/components/inputs/TextInput.tsx:89</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L89">LightcordApi/src/components/inputs/TextInput.tsx:89</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -588,7 +590,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L101">lightcordapi/src/components/inputs/TextInput.tsx:101</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L101">LightcordApi/src/components/inputs/TextInput.tsx:101</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -615,7 +617,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -650,7 +652,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -686,7 +688,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -716,7 +718,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -736,7 +738,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -769,7 +771,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -792,7 +794,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -826,7 +828,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -847,7 +849,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -882,7 +884,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -918,7 +920,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -941,7 +943,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L76">lightcordapi/src/components/inputs/TextInput.tsx:76</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L76">LightcordApi/src/components/inputs/TextInput.tsx:76</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -964,7 +966,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L62">lightcordapi/src/components/inputs/TextInput.tsx:62</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L62">LightcordApi/src/components/inputs/TextInput.tsx:62</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -987,7 +989,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L72">lightcordapi/src/components/inputs/TextInput.tsx:72</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L72">LightcordApi/src/components/inputs/TextInput.tsx:72</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1001,7 +1003,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L80">lightcordapi/src/components/inputs/TextInput.tsx:80</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L80">LightcordApi/src/components/inputs/TextInput.tsx:80</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1021,7 +1023,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L93">lightcordapi/src/components/inputs/TextInput.tsx:93</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L93">LightcordApi/src/components/inputs/TextInput.tsx:93</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1058,7 +1060,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1075,7 +1077,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">className<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L48">lightcordapi/src/components/inputs/TextInput.tsx:48</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L48">LightcordApi/src/components/inputs/TextInput.tsx:48</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1085,7 +1087,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L43">lightcordapi/src/components/inputs/TextInput.tsx:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L43">LightcordApi/src/components/inputs/TextInput.tsx:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1095,7 +1097,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">error<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L46">lightcordapi/src/components/inputs/TextInput.tsx:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L46">LightcordApi/src/components/inputs/TextInput.tsx:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1105,7 +1107,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L50">lightcordapi/src/components/inputs/TextInput.tsx:50</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L50">LightcordApi/src/components/inputs/TextInput.tsx:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1115,7 +1117,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">inputClassName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L49">lightcordapi/src/components/inputs/TextInput.tsx:49</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L49">LightcordApi/src/components/inputs/TextInput.tsx:49</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1125,7 +1127,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">maxLength<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 999</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L47">lightcordapi/src/components/inputs/TextInput.tsx:47</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L47">LightcordApi/src/components/inputs/TextInput.tsx:47</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1135,7 +1137,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L41">lightcordapi/src/components/inputs/TextInput.tsx:41</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L41">LightcordApi/src/components/inputs/TextInput.tsx:41</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1145,7 +1147,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">onBlur<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L53">lightcordapi/src/components/inputs/TextInput.tsx:53</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L53">LightcordApi/src/components/inputs/TextInput.tsx:53</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1155,7 +1157,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">onChange<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L51">lightcordapi/src/components/inputs/TextInput.tsx:51</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L51">LightcordApi/src/components/inputs/TextInput.tsx:51</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1165,7 +1167,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">onFocus<span class="tsd-signature-symbol">:</span> <a href="../modules/_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L52">lightcordapi/src/components/inputs/TextInput.tsx:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L52">LightcordApi/src/components/inputs/TextInput.tsx:52</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1175,7 +1177,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">placeholder<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L44">lightcordapi/src/components/inputs/TextInput.tsx:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L44">LightcordApi/src/components/inputs/TextInput.tsx:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1185,7 +1187,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"default"</span><span class="tsd-signature-symbol"> = "default"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L42">lightcordapi/src/components/inputs/TextInput.tsx:42</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L42">LightcordApi/src/components/inputs/TextInput.tsx:42</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1195,13 +1197,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L45">lightcordapi/src/components/inputs/TextInput.tsx:45</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L45">LightcordApi/src/components/inputs/TextInput.tsx:45</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L40">lightcordapi/src/components/inputs/TextInput.tsx:40</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L40">LightcordApi/src/components/inputs/TextInput.tsx:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1215,13 +1217,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">warn<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "This should be used for single line inputs."</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L138">lightcordapi/src/components/inputs/TextInput.tsx:138</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L138">LightcordApi/src/components/inputs/TextInput.tsx:138</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L137">lightcordapi/src/components/inputs/TextInput.tsx:137</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L137">LightcordApi/src/components/inputs/TextInput.tsx:137</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -245,6 +245,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -505,8 +507,8 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:485</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:485</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -537,7 +539,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -548,7 +550,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -566,7 +568,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -577,7 +579,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -609,7 +611,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -619,7 +621,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">defaultProps<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_private_notices_.html#notice" class="tsd-signature-type">notice</a><span class="tsd-signature-symbol"> = defaultNotice</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L15">lightcordapi/src/components/private/Notice.tsx:15</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L15">LightcordApi/src/components/private/Notice.tsx:15</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -629,7 +631,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">displayName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "LightcordNotice"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L14">lightcordapi/src/components/private/Notice.tsx:14</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L14">LightcordApi/src/components/private/Notice.tsx:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -645,7 +647,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L17">lightcordapi/src/components/private/Notice.tsx:17</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L17">LightcordApi/src/components/private/Notice.tsx:17</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -672,7 +674,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -707,7 +709,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -743,7 +745,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -773,7 +775,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -793,7 +795,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -826,7 +828,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -849,7 +851,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:695</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:695</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -883,7 +885,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -904,7 +906,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:633</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:633</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -939,7 +941,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -972,7 +974,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1008,7 +1010,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1023,7 +1025,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L23">lightcordapi/src/components/private/Notice.tsx:23</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L23">LightcordApi/src/components/private/Notice.tsx:23</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1064,7 +1066,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1101,7 +1103,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -254,6 +254,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -499,7 +501,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_general_settingsubtitle_.settingsubtitle.html">SettingSubTitle</a>.<a href="_components_general_settingsubtitle_.settingsubtitle.html#constructor">constructor</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L9">lightcordapi/src/components/private/Notices.tsx:9</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L9">LightcordApi/src/components/private/Notices.tsx:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -530,7 +532,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#context">context</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:483</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:483</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -541,7 +543,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#props">props</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:508</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:508</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -559,7 +561,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#refs">refs</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:514</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:514</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -570,7 +572,7 @@ context!: React.ContextType<<span class="hljs-keyword">typeof</span> MyContex
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#state">state</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:509</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:509</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -602,7 +604,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#contexttype">contextType</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:465</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:465</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -612,7 +614,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">defaultProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L9">lightcordapi/src/components/private/Notices.tsx:9</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L9">LightcordApi/src/components/private/Notices.tsx:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -622,7 +624,7 @@ class Foo extends React.Component {
|
||||
<div class="tsd-signature tsd-kind-icon">displayName<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "LightcordNotices"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L8">lightcordapi/src/components/private/Notices.tsx:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L8">LightcordApi/src/components/private/Notices.tsx:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -638,7 +640,7 @@ class Foo extends React.Component {
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L34">lightcordapi/src/components/private/Notices.tsx:34</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L34">LightcordApi/src/components/private/Notices.tsx:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -665,7 +667,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:709</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:709</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -700,7 +702,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:741</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:741</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -736,7 +738,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:769</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:769</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -766,7 +768,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidcatch">componentDidCatch</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:638</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:638</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -786,7 +788,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidmount">componentDidMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:617</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:617</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -819,7 +821,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentdidupdate">componentDidUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:680</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:680</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -834,7 +836,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillmount">componentWillMount</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L20">lightcordapi/src/components/private/Notices.tsx:20</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L20">LightcordApi/src/components/private/Notices.tsx:20</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -868,7 +870,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:724</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:724</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -883,7 +885,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillunmount">componentWillUnmount</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L24">lightcordapi/src/components/private/Notices.tsx:24</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L24">LightcordApi/src/components/private/Notices.tsx:24</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -918,7 +920,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#componentwillupdate">componentWillUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:754</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:754</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -951,7 +953,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#forceupdate">forceUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:500</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:500</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -987,7 +989,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:674</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:674</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1001,7 +1003,7 @@ class Foo extends React.Component {
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L16">lightcordapi/src/components/private/Notices.tsx:16</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L16">LightcordApi/src/components/private/Notices.tsx:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1016,7 +1018,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides Component.render</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L28">lightcordapi/src/components/private/Notices.tsx:28</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L28">LightcordApi/src/components/private/Notices.tsx:28</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1057,7 +1059,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#setstate">setState</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:495</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:495</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1094,7 +1096,7 @@ class Foo extends React.Component {
|
||||
<aside class="tsd-sources">
|
||||
<p>Inherited from <a href="_components_inputs_button_.button.html">Button</a>.<a href="_components_inputs_button_.button.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
|
||||
<ul>
|
||||
<li>Defined in lightcordapi/node_modules/@types/react/index.d.ts:628</li>
|
||||
<li>Defined in LightcordApi/node_modules/@types/react/index.d.ts:628</li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -188,6 +188,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -249,7 +251,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L65">lightcordapi/src/modules/BDModules.ts:65</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L65">LightcordApi/src/modules/BDModules.ts:65</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -262,7 +264,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L34">lightcordapi/src/modules/BDModules.ts:34</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L34">LightcordApi/src/modules/BDModules.ts:34</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -288,7 +290,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L46">lightcordapi/src/modules/BDModules.ts:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L46">LightcordApi/src/modules/BDModules.ts:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -275,6 +275,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -557,7 +559,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L125">lightcordapi/src/modules/DiscordTools.ts:125</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L125">LightcordApi/src/modules/DiscordTools.ts:125</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -570,7 +572,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <a href="../modules/_components_private_notices_.html#notice" class="tsd-signature-type">notice</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L264">lightcordapi/src/modules/DiscordTools.ts:264</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L264">LightcordApi/src/modules/DiscordTools.ts:264</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -580,7 +582,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">nextTickRefresh<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L189">lightcordapi/src/modules/DiscordTools.ts:189</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L189">LightcordApi/src/modules/DiscordTools.ts:189</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -597,7 +599,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L183">lightcordapi/src/modules/DiscordTools.ts:183</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L183">LightcordApi/src/modules/DiscordTools.ts:183</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -632,8 +634,8 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L241">lightcordapi/src/modules/DiscordTools.ts:241</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L244">lightcordapi/src/modules/DiscordTools.ts:244</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L241">LightcordApi/src/modules/DiscordTools.ts:241</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L244">LightcordApi/src/modules/DiscordTools.ts:244</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -653,7 +655,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L204">lightcordapi/src/modules/DiscordTools.ts:204</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L204">LightcordApi/src/modules/DiscordTools.ts:204</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -673,7 +675,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L200">lightcordapi/src/modules/DiscordTools.ts:200</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L200">LightcordApi/src/modules/DiscordTools.ts:200</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -718,8 +720,8 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L250">lightcordapi/src/modules/DiscordTools.ts:250</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L253">lightcordapi/src/modules/DiscordTools.ts:253</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L250">LightcordApi/src/modules/DiscordTools.ts:250</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L253">LightcordApi/src/modules/DiscordTools.ts:253</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -739,7 +741,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L192">lightcordapi/src/modules/DiscordTools.ts:192</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L192">LightcordApi/src/modules/DiscordTools.ts:192</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -759,7 +761,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L196">lightcordapi/src/modules/DiscordTools.ts:196</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L196">LightcordApi/src/modules/DiscordTools.ts:196</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -780,8 +782,8 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L223">lightcordapi/src/modules/DiscordTools.ts:223</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L226">lightcordapi/src/modules/DiscordTools.ts:226</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L223">LightcordApi/src/modules/DiscordTools.ts:223</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L226">LightcordApi/src/modules/DiscordTools.ts:226</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -831,8 +833,8 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L232">lightcordapi/src/modules/DiscordTools.ts:232</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L235">lightcordapi/src/modules/DiscordTools.ts:235</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L232">LightcordApi/src/modules/DiscordTools.ts:232</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L235">LightcordApi/src/modules/DiscordTools.ts:235</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1073,10 +1075,10 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides EventEmitter.off</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L175">lightcordapi/src/modules/DiscordTools.ts:175</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L176">lightcordapi/src/modules/DiscordTools.ts:176</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L177">lightcordapi/src/modules/DiscordTools.ts:177</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L178">lightcordapi/src/modules/DiscordTools.ts:178</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L175">LightcordApi/src/modules/DiscordTools.ts:175</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L176">LightcordApi/src/modules/DiscordTools.ts:176</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L177">LightcordApi/src/modules/DiscordTools.ts:177</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L178">LightcordApi/src/modules/DiscordTools.ts:178</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1185,10 +1187,10 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides EventEmitter.on</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L146">lightcordapi/src/modules/DiscordTools.ts:146</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L150">lightcordapi/src/modules/DiscordTools.ts:150</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L154">lightcordapi/src/modules/DiscordTools.ts:154</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L155">lightcordapi/src/modules/DiscordTools.ts:155</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L146">LightcordApi/src/modules/DiscordTools.ts:146</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L150">LightcordApi/src/modules/DiscordTools.ts:150</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L154">LightcordApi/src/modules/DiscordTools.ts:154</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L155">LightcordApi/src/modules/DiscordTools.ts:155</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1297,10 +1299,10 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides EventEmitter.once</p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L162">lightcordapi/src/modules/DiscordTools.ts:162</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L166">lightcordapi/src/modules/DiscordTools.ts:166</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L170">lightcordapi/src/modules/DiscordTools.ts:170</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L171">lightcordapi/src/modules/DiscordTools.ts:171</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L162">LightcordApi/src/modules/DiscordTools.ts:162</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L166">LightcordApi/src/modules/DiscordTools.ts:166</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L170">LightcordApi/src/modules/DiscordTools.ts:170</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L171">LightcordApi/src/modules/DiscordTools.ts:171</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1422,7 +1424,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L259">lightcordapi/src/modules/DiscordTools.ts:259</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L259">LightcordApi/src/modules/DiscordTools.ts:259</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -1529,7 +1531,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L208">lightcordapi/src/modules/DiscordTools.ts:208</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L208">LightcordApi/src/modules/DiscordTools.ts:208</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -185,6 +185,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -264,7 +266,7 @@
|
||||
<aside class="tsd-sources">
|
||||
<p>Overrides <a href="_modules_webpackloader_.webpackloadererror.html">WebpackLoaderError</a>.<a href="_modules_webpackloader_.webpackloadererror.html#name">name</a></p>
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/Utils.ts#L174">lightcordapi/src/modules/Utils.ts:174</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/Utils.ts#L174">LightcordApi/src/modules/Utils.ts:174</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -185,6 +185,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -272,7 +274,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/WebpackLoader.ts#L51">lightcordapi/src/modules/WebpackLoader.ts:51</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/WebpackLoader.ts#L51">LightcordApi/src/modules/WebpackLoader.ts:51</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -148,6 +148,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -3316,6 +3318,9 @@
|
||||
<li class="tsd-kind-variable tsd-parent-kind-object-literal">
|
||||
<a href="modules/_index_.html#lightcordapi.webpackloader" class="tsd-kind-icon">Webpack<wbr>Loader</a>
|
||||
</li>
|
||||
<li class="tsd-kind-variable tsd-parent-kind-object-literal">
|
||||
<a href="modules/_index_.html#lightcordapi.settings" class="tsd-kind-icon">settings</a>
|
||||
</li>
|
||||
<li class="tsd-kind-variable tsd-parent-kind-object-literal">
|
||||
<a href="modules/_index_.html#lightcordapi.uuid" class="tsd-kind-icon">uuid</a>
|
||||
</li>
|
||||
@ -3535,7 +3540,7 @@
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="tsd-kind-function tsd-parent-kind-module">
|
||||
<li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
|
||||
<a href="modules/_modules_unfreeze_.html#unfreeze" class="tsd-kind-icon">unfreeze</a>
|
||||
</li>
|
||||
</ul>
|
||||
@ -3696,6 +3701,13 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tsd-navigation secondary">
|
||||
<ul>
|
||||
<li class="tsd-kind-module">
|
||||
<a href="modules/_modules_settings_.html" class="tsd-kind-icon">"modules/settings"</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tsd-navigation secondary">
|
||||
<ul>
|
||||
<li class="tsd-kind-module">
|
||||
|
@ -148,6 +148,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
@ -208,6 +208,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -291,7 +293,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L62">lightcordapi/src/index.ts:62</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L64">LightcordApi/src/index.ts:64</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -301,7 +303,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">BdApi<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof BdApi</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L68">lightcordapi/src/index.ts:68</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L70">LightcordApi/src/index.ts:70</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -311,7 +313,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">EDApi<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof BdApi</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L69">lightcordapi/src/index.ts:69</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L71">LightcordApi/src/index.ts:71</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -328,7 +330,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L58">lightcordapi/src/index.ts:58</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L60">LightcordApi/src/index.ts:60</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -338,7 +340,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">React<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof React</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L71">lightcordapi/src/index.ts:71</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L73">LightcordApi/src/index.ts:73</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -348,7 +350,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ReactDOM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof ReactDOM</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L70">lightcordapi/src/index.ts:70</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L72">LightcordApi/src/index.ts:72</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -193,6 +193,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -269,7 +271,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L107">lightcordapi/src/index.ts:107</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L109">LightcordApi/src/index.ts:109</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -286,7 +288,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L109">lightcordapi/src/index.ts:109</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L111">LightcordApi/src/index.ts:111</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -303,7 +305,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L89">lightcordapi/src/index.ts:89</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L91">LightcordApi/src/index.ts:91</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -320,7 +322,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L100">lightcordapi/src/index.ts:100</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L102">LightcordApi/src/index.ts:102</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -178,6 +178,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -219,7 +221,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">unfreeze<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/Unfreeze.ts#L21">lightcordapi/src/modules/Unfreeze.ts:21</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/Unfreeze.ts#L21">LightcordApi/src/modules/Unfreeze.ts:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
File diff suppressed because one or more lines are too long
@ -236,6 +236,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="../modules/_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -441,7 +443,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_computeOrderedActionHandlers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L47">lightcordapi/src/types/DiscordDispatcherTypes.ts:47</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L47">LightcordApi/src/types/DiscordDispatcherTypes.ts:47</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -451,7 +453,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_computeOrderedCallbackTokens<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L48">lightcordapi/src/types/DiscordDispatcherTypes.ts:48</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L48">LightcordApi/src/types/DiscordDispatcherTypes.ts:48</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -461,7 +463,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_currentDispatchActionType<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L8">lightcordapi/src/types/DiscordDispatcherTypes.ts:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L8">LightcordApi/src/types/DiscordDispatcherTypes.ts:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -471,7 +473,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_dependencyGraph<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L12">lightcordapi/src/types/DiscordDispatcherTypes.ts:12</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L12">LightcordApi/src/types/DiscordDispatcherTypes.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -481,7 +483,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_invalidateCaches<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L45">lightcordapi/src/types/DiscordDispatcherTypes.ts:45</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L45">LightcordApi/src/types/DiscordDispatcherTypes.ts:45</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -491,7 +493,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_lastID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L11">lightcordapi/src/types/DiscordDispatcherTypes.ts:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L11">LightcordApi/src/types/DiscordDispatcherTypes.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -501,7 +503,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_orderedActionHandlers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L9">lightcordapi/src/types/DiscordDispatcherTypes.ts:9</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L9">LightcordApi/src/types/DiscordDispatcherTypes.ts:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -511,7 +513,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_orderedCallbackTokens<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L10">lightcordapi/src/types/DiscordDispatcherTypes.ts:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L10">LightcordApi/src/types/DiscordDispatcherTypes.ts:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -521,7 +523,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_processWaitQueue<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L46">lightcordapi/src/types/DiscordDispatcherTypes.ts:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L46">LightcordApi/src/types/DiscordDispatcherTypes.ts:46</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -531,7 +533,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_processingWaitQueue<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L7">lightcordapi/src/types/DiscordDispatcherTypes.ts:7</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L7">LightcordApi/src/types/DiscordDispatcherTypes.ts:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -541,7 +543,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_subscriptions<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L5">lightcordapi/src/types/DiscordDispatcherTypes.ts:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L5">LightcordApi/src/types/DiscordDispatcherTypes.ts:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -551,7 +553,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_waitQueue<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span> <span class="tsd-signature-symbol">[]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L6">lightcordapi/src/types/DiscordDispatcherTypes.ts:6</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L6">LightcordApi/src/types/DiscordDispatcherTypes.ts:6</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -561,7 +563,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">addDependencies<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L44">lightcordapi/src/types/DiscordDispatcherTypes.ts:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L44">LightcordApi/src/types/DiscordDispatcherTypes.ts:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -597,7 +599,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L28">lightcordapi/src/types/DiscordDispatcherTypes.ts:28</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L28">LightcordApi/src/types/DiscordDispatcherTypes.ts:28</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -630,7 +632,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L22">lightcordapi/src/types/DiscordDispatcherTypes.ts:22</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L22">LightcordApi/src/types/DiscordDispatcherTypes.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -663,7 +665,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L26">lightcordapi/src/types/DiscordDispatcherTypes.ts:26</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L26">LightcordApi/src/types/DiscordDispatcherTypes.ts:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -677,7 +679,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L14">lightcordapi/src/types/DiscordDispatcherTypes.ts:14</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L14">LightcordApi/src/types/DiscordDispatcherTypes.ts:14</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -710,7 +712,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L18">lightcordapi/src/types/DiscordDispatcherTypes.ts:18</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L18">LightcordApi/src/types/DiscordDispatcherTypes.ts:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -736,7 +738,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L43">lightcordapi/src/types/DiscordDispatcherTypes.ts:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L43">LightcordApi/src/types/DiscordDispatcherTypes.ts:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -779,7 +781,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L32">lightcordapi/src/types/DiscordDispatcherTypes.ts:32</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L32">LightcordApi/src/types/DiscordDispatcherTypes.ts:32</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -833,7 +835,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L38">lightcordapi/src/types/DiscordDispatcherTypes.ts:38</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L38">LightcordApi/src/types/DiscordDispatcherTypes.ts:38</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -887,7 +889,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L42">lightcordapi/src/types/DiscordDispatcherTypes.ts:42</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L42">LightcordApi/src/types/DiscordDispatcherTypes.ts:42</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -924,7 +926,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/types/DiscordDispatcherTypes.ts#L36">lightcordapi/src/types/DiscordDispatcherTypes.ts:36</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/types/DiscordDispatcherTypes.ts#L36">LightcordApi/src/types/DiscordDispatcherTypes.ts:36</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -151,6 +151,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
@ -151,6 +151,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -191,7 +193,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">RadioGroupProxied<span class="tsd-signature-symbol">:</span> <a href="../classes/_components_inputs_radiogroup_.radiogroup.html" class="tsd-signature-type">RadioGroup</a><span class="tsd-signature-symbol"> & </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> = createProxyErrorCatcherClass(RadioGroup)</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/components.ts#L22">lightcordapi/src/components/components.ts:22</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/components.ts#L22">LightcordApi/src/components/components.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -320,7 +322,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AlertBoxProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L4">lightcordapi/src/components/general/AlertBox.tsx:4</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L4">LightcordApi/src/components/general/AlertBox.tsx:4</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -333,7 +335,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AlertBoxModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L9">lightcordapi/src/components/general/AlertBox.tsx:9</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L9">LightcordApi/src/components/general/AlertBox.tsx:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -343,7 +345,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/AlertBox.tsx#L84">lightcordapi/src/components/general/AlertBox.tsx:84</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/AlertBox.tsx#L84">LightcordApi/src/components/general/AlertBox.tsx:84</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -309,7 +311,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">CodeBlockProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L3">lightcordapi/src/components/general/CodeBlock.tsx:3</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L3">LightcordApi/src/components/general/CodeBlock.tsx:3</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -322,7 +324,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L67">lightcordapi/src/components/general/CodeBlock.tsx:67</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L67">LightcordApi/src/components/general/CodeBlock.tsx:67</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -332,7 +334,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">CodeBlockModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/CodeBlock.tsx#L8">lightcordapi/src/components/general/CodeBlock.tsx:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/CodeBlock.tsx#L8">LightcordApi/src/components/general/CodeBlock.tsx:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -322,7 +324,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ErrorCatcherProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L10">lightcordapi/src/components/general/ErrorCatcher.tsx:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L10">LightcordApi/src/components/general/ErrorCatcher.tsx:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -335,7 +337,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L92">lightcordapi/src/components/general/ErrorCatcher.tsx:92</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L92">LightcordApi/src/components/general/ErrorCatcher.tsx:92</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -345,7 +347,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ErrorCatcherModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L13">lightcordapi/src/components/general/ErrorCatcher.tsx:13</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L13">LightcordApi/src/components/general/ErrorCatcher.tsx:13</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -376,7 +378,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/ErrorCatcher.tsx#L94">lightcordapi/src/components/general/ErrorCatcher.tsx:94</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/ErrorCatcher.tsx#L94">LightcordApi/src/components/general/ErrorCatcher.tsx:94</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -176,6 +176,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -411,7 +413,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">FlexChildProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L92">lightcordapi/src/components/general/Flex.tsx:92</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L92">LightcordApi/src/components/general/Flex.tsx:92</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -421,7 +423,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">FlexProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L5">lightcordapi/src/components/general/Flex.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L5">LightcordApi/src/components/general/Flex.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -434,7 +436,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L90">lightcordapi/src/components/general/Flex.tsx:90</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L90">LightcordApi/src/components/general/Flex.tsx:90</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -444,7 +446,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">FlexModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L26">lightcordapi/src/components/general/Flex.tsx:26</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L26">LightcordApi/src/components/general/Flex.tsx:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -461,7 +463,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Flex.tsx#L16">lightcordapi/src/components/general/Flex.tsx:16</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Flex.tsx#L16">LightcordApi/src/components/general/Flex.tsx:16</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -151,6 +151,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -309,7 +311,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">SettingsTitleProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L5">lightcordapi/src/components/general/SettingsTitle.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L5">LightcordApi/src/components/general/SettingsTitle.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -322,7 +324,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L52">lightcordapi/src/components/general/SettingsTitle.tsx:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L52">LightcordApi/src/components/general/SettingsTitle.tsx:52</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -332,7 +334,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TitleModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingsTitle.tsx#L10">lightcordapi/src/components/general/SettingsTitle.tsx:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingsTitle.tsx#L10">LightcordApi/src/components/general/SettingsTitle.tsx:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -309,7 +311,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">SettingSubTitleProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L5">lightcordapi/src/components/general/SettingSubTitle.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L5">LightcordApi/src/components/general/SettingSubTitle.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -322,7 +324,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L54">lightcordapi/src/components/general/SettingSubTitle.tsx:54</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L54">LightcordApi/src/components/general/SettingSubTitle.tsx:54</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -332,7 +334,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TitleModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/SettingSubTitle.tsx#L10">lightcordapi/src/components/general/SettingSubTitle.tsx:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/SettingSubTitle.tsx#L10">LightcordApi/src/components/general/SettingSubTitle.tsx:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -395,7 +397,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TabsProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L5">lightcordapi/src/components/general/Tabs.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L5">LightcordApi/src/components/general/Tabs.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -408,7 +410,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tabs.tsx#L104">lightcordapi/src/components/general/Tabs.tsx:104</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tabs.tsx#L104">LightcordApi/src/components/general/Tabs.tsx:104</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -182,6 +182,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -396,7 +398,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextCase<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"lowercase"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"uppercase"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L83">lightcordapi/src/components/general/Text.ts:83</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L83">LightcordApi/src/components/general/Text.ts:83</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -406,7 +408,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextColor<span class="tsd-signature-symbol">:</span> <a href="_modules_utils_.html#colorname" class="tsd-signature-type">ColorName</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L82">lightcordapi/src/components/general/Text.ts:82</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L82">LightcordApi/src/components/general/Text.ts:82</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -416,7 +418,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextFamily<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"primary"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"code"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L85">lightcordapi/src/components/general/Text.ts:85</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L85">LightcordApi/src/components/general/Text.ts:85</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -426,7 +428,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L5">lightcordapi/src/components/general/Text.ts:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L5">LightcordApi/src/components/general/Text.ts:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -436,7 +438,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextSize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"small"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"medium"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"medium_small"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"medium_large"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"large"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L84">lightcordapi/src/components/general/Text.ts:84</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L84">LightcordApi/src/components/general/Text.ts:84</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -446,7 +448,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextWeight<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"light"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"normal"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"medium"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"semibold"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bold"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L81">lightcordapi/src/components/general/Text.ts:81</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L81">LightcordApi/src/components/general/Text.ts:81</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -459,7 +461,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L79">lightcordapi/src/components/general/Text.ts:79</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L79">LightcordApi/src/components/general/Text.ts:79</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -480,7 +482,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">large<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["lc-text-size28", "lc-text-height34"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L93">lightcordapi/src/components/general/Text.ts:93</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L93">LightcordApi/src/components/general/Text.ts:93</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -490,7 +492,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">medium<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["lc-text-size16", "lc-text-height20"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L91">lightcordapi/src/components/general/Text.ts:91</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L91">LightcordApi/src/components/general/Text.ts:91</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -500,7 +502,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">medium_large<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["lc-text-size20", "lc-text-height26"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L92">lightcordapi/src/components/general/Text.ts:92</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L92">LightcordApi/src/components/general/Text.ts:92</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -510,7 +512,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">medium_small<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["lc-text-size14", "lc-text-height16"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L90">lightcordapi/src/components/general/Text.ts:90</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L90">LightcordApi/src/components/general/Text.ts:90</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -520,19 +522,19 @@
|
||||
<div class="tsd-signature tsd-kind-icon">small<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ["lc-text-size12", "lc-text-height16"]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L89">lightcordapi/src/components/general/Text.ts:89</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L89">LightcordApi/src/components/general/Text.ts:89</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L88">lightcordapi/src/components/general/Text.ts:88</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L88">LightcordApi/src/components/general/Text.ts:88</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Text.ts#L87">lightcordapi/src/components/general/Text.ts:87</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Text.ts#L87">LightcordApi/src/components/general/Text.ts:87</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -309,7 +311,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TitleProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L4">lightcordapi/src/components/general/Title.tsx:4</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L4">LightcordApi/src/components/general/Title.tsx:4</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -322,7 +324,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L55">lightcordapi/src/components/general/Title.tsx:55</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L55">LightcordApi/src/components/general/Title.tsx:55</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -332,7 +334,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TitleModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Title.tsx#L9">lightcordapi/src/components/general/Title.tsx:9</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Title.tsx#L9">LightcordApi/src/components/general/Title.tsx:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -176,6 +176,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -351,7 +353,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TooltipColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"black"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"grey"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"brand"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"green"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"yellow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"red"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L100">lightcordapi/src/components/general/Tooltip.ts:100</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L100">LightcordApi/src/components/general/Tooltip.ts:100</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -361,7 +363,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TooltipData<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L5">lightcordapi/src/components/general/Tooltip.ts:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L5">LightcordApi/src/components/general/Tooltip.ts:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -371,7 +373,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TooltipPosition<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"top"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bottom"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L99">lightcordapi/src/components/general/Tooltip.ts:99</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L99">LightcordApi/src/components/general/Tooltip.ts:99</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -381,7 +383,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TooltipProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L12">lightcordapi/src/components/general/Tooltip.ts:12</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L12">LightcordApi/src/components/general/Tooltip.ts:12</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -394,7 +396,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L97">lightcordapi/src/components/general/Tooltip.ts:97</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L97">LightcordApi/src/components/general/Tooltip.ts:97</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -404,7 +406,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TooltipModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/general/Tooltip.ts#L19">lightcordapi/src/components/general/Tooltip.ts:19</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/general/Tooltip.ts#L19">LightcordApi/src/components/general/Tooltip.ts:19</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -179,6 +179,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -350,7 +352,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ButtonColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"brand"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"grey"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"red"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"green"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"yellow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"primary"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"link"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"white"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"black"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"transparent"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L212">lightcordapi/src/components/inputs/Button.tsx:212</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L212">LightcordApi/src/components/inputs/Button.tsx:212</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -360,7 +362,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ButtonHovers<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"default"</span><span class="tsd-signature-symbol"> | </span><a href="_components_inputs_button_.html#buttoncolor" class="tsd-signature-type">ButtonColor</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L215">lightcordapi/src/components/inputs/Button.tsx:215</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L215">LightcordApi/src/components/inputs/Button.tsx:215</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -370,7 +372,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ButtonLook<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"filled"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"inverted"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"outlined"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"ghost"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"link"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"blank"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L213">lightcordapi/src/components/inputs/Button.tsx:213</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L213">LightcordApi/src/components/inputs/Button.tsx:213</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -380,7 +382,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ButtonProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L7">lightcordapi/src/components/inputs/Button.tsx:7</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L7">LightcordApi/src/components/inputs/Button.tsx:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -390,7 +392,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ButtonSize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"none"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"small"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"medium"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"large"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"xlarge"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"min"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"max"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"icon"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L214">lightcordapi/src/components/inputs/Button.tsx:214</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L214">LightcordApi/src/components/inputs/Button.tsx:214</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -403,7 +405,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L209">lightcordapi/src/components/inputs/Button.tsx:209</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L209">LightcordApi/src/components/inputs/Button.tsx:209</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -413,7 +415,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ButtonModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Button.tsx#L5">lightcordapi/src/components/inputs/Button.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Button.tsx#L5">LightcordApi/src/components/inputs/Button.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -173,6 +173,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -351,7 +353,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ColorPickerProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L31">lightcordapi/src/components/inputs/ColorPicker.tsx:31</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L31">LightcordApi/src/components/inputs/ColorPicker.tsx:31</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -364,7 +366,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L187">lightcordapi/src/components/inputs/ColorPicker.tsx:187</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L187">LightcordApi/src/components/inputs/ColorPicker.tsx:187</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -374,7 +376,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ColorPickerModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L40">lightcordapi/src/components/inputs/ColorPicker.tsx:40</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L40">LightcordApi/src/components/inputs/ColorPicker.tsx:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -384,7 +386,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">isFetching<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L41">lightcordapi/src/components/inputs/ColorPicker.tsx:41</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L41">LightcordApi/src/components/inputs/ColorPicker.tsx:41</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -401,7 +403,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">baseColors<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = [1752220,3066993,3447003,10181046,15277667,15844367,15105570,15158332,9807270,6323595,1146986,2067276,2123412,7419530,11342935,12745742,11027200,10038562,9936031,5533306]</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L7">lightcordapi/src/components/inputs/ColorPicker.tsx:7</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L7">LightcordApi/src/components/inputs/ColorPicker.tsx:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -411,13 +413,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">defaultColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 10070709</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L6">lightcordapi/src/components/inputs/ColorPicker.tsx:6</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L6">LightcordApi/src/components/inputs/ColorPicker.tsx:6</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.tsx#L5">lightcordapi/src/components/inputs/ColorPicker.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.tsx#L5">LightcordApi/src/components/inputs/ColorPicker.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -348,7 +350,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ColorPickerProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L11">lightcordapi/src/components/inputs/ColorPicker.old.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L11">LightcordApi/src/components/inputs/ColorPicker.old.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -361,7 +363,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L128">lightcordapi/src/components/inputs/ColorPicker.old.tsx:128</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L128">LightcordApi/src/components/inputs/ColorPicker.old.tsx:128</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -371,7 +373,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ColorPickerModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L27">lightcordapi/src/components/inputs/ColorPicker.old.tsx:27</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L27">LightcordApi/src/components/inputs/ColorPicker.old.tsx:27</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -388,13 +390,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">defaultColor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "#99aab5"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L131">lightcordapi/src/components/inputs/ColorPicker.old.tsx:131</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L131">LightcordApi/src/components/inputs/ColorPicker.old.tsx:131</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L130">lightcordapi/src/components/inputs/ColorPicker.old.tsx:130</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/ColorPicker.old.tsx#L130">LightcordApi/src/components/inputs/ColorPicker.old.tsx:130</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -191,6 +191,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -577,7 +579,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DateInputProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L11">lightcordapi/src/components/inputs/DateInput.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L11">LightcordApi/src/components/inputs/DateInput.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -590,7 +592,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L331">lightcordapi/src/components/inputs/DateInput.tsx:331</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L331">LightcordApi/src/components/inputs/DateInput.tsx:331</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -600,7 +602,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AnimatedCalendarPickerModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L337">lightcordapi/src/components/inputs/DateInput.tsx:337</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L337">LightcordApi/src/components/inputs/DateInput.tsx:337</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -610,7 +612,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DateInputModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L35">lightcordapi/src/components/inputs/DateInput.tsx:35</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L35">LightcordApi/src/components/inputs/DateInput.tsx:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -620,7 +622,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ReactDOM<span class="tsd-signature-symbol">:</span> <a href="_modules_utils_.html#reactdom" class="tsd-signature-type">ReactDOM</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L8">lightcordapi/src/components/inputs/DateInput.tsx:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L8">LightcordApi/src/components/inputs/DateInput.tsx:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -630,7 +632,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">_datefns<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L28">lightcordapi/src/components/inputs/DateInput.tsx:28</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L28">LightcordApi/src/components/inputs/DateInput.tsx:28</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -647,7 +649,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L29">lightcordapi/src/components/inputs/DateInput.tsx:29</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L29">LightcordApi/src/components/inputs/DateInput.tsx:29</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -655,13 +657,13 @@
|
||||
<a name="getemotion" class="tsd-anchor"></a>
|
||||
<h3>get<wbr>Emotion</h3>
|
||||
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module">
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Emotion<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"D:/code/lightcord/lightcordapi/node_modules/emotion/types/index"</span></li>
|
||||
<li class="tsd-signature tsd-kind-icon">get<wbr>Emotion<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"D:/code/lightcord/LightcordApi/node_modules/emotion/types/index"</span></li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">"D:/code/lightcord/lightcordapi/node_modules/emotion/types/index"</span> </h4>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">"D:/code/lightcord/LightcordApi/node_modules/emotion/types/index"</span> </h4>
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L32">lightcordapi/src/components/inputs/DateInput.tsx:32</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L32">LightcordApi/src/components/inputs/DateInput.tsx:32</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -681,7 +683,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateInput.tsx#L333">lightcordapi/src/components/inputs/DateInput.tsx:333</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateInput.tsx#L333">LightcordApi/src/components/inputs/DateInput.tsx:333</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -337,7 +339,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DateRangeProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L11">lightcordapi/src/components/inputs/DateRange.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L11">LightcordApi/src/components/inputs/DateRange.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -350,7 +352,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L22">lightcordapi/src/components/inputs/DateRange.tsx:22</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L22">LightcordApi/src/components/inputs/DateRange.tsx:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -367,13 +369,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DATE_FORMAT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "yyyy-MM-dd"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L8">lightcordapi/src/components/inputs/DateRange.tsx:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L8">LightcordApi/src/components/inputs/DateRange.tsx:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/DateRange.tsx#L7">lightcordapi/src/components/inputs/DateRange.tsx:7</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/DateRange.tsx#L7">LightcordApi/src/components/inputs/DateRange.tsx:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -364,7 +366,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DropdownProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L5">lightcordapi/src/components/inputs/Dropdown.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L5">LightcordApi/src/components/inputs/Dropdown.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -374,7 +376,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">themeOverride<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L26">lightcordapi/src/components/inputs/Dropdown.tsx:26</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L26">LightcordApi/src/components/inputs/Dropdown.tsx:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -387,7 +389,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L147">lightcordapi/src/components/inputs/Dropdown.tsx:147</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L147">LightcordApi/src/components/inputs/Dropdown.tsx:147</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -397,7 +399,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DropdownModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Dropdown.tsx#L43">lightcordapi/src/components/inputs/Dropdown.tsx:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Dropdown.tsx#L43">LightcordApi/src/components/inputs/Dropdown.tsx:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -330,7 +332,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">RadioGroupProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L6">lightcordapi/src/components/inputs/RadioGroup.tsx:6</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L6">LightcordApi/src/components/inputs/RadioGroup.tsx:6</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -343,7 +345,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L113">lightcordapi/src/components/inputs/RadioGroup.tsx:113</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L113">LightcordApi/src/components/inputs/RadioGroup.tsx:113</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -353,7 +355,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">RadioGroupModule<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/RadioGroup.tsx#L21">lightcordapi/src/components/inputs/RadioGroup.tsx:21</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/RadioGroup.tsx#L21">LightcordApi/src/components/inputs/RadioGroup.tsx:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -344,7 +346,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">SwitchProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L6">lightcordapi/src/components/inputs/Switch.tsx:6</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L6">LightcordApi/src/components/inputs/Switch.tsx:6</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -357,7 +359,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L102">lightcordapi/src/components/inputs/Switch.tsx:102</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L102">LightcordApi/src/components/inputs/Switch.tsx:102</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -367,7 +369,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">SwitchModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/Switch.tsx#L18">lightcordapi/src/components/inputs/Switch.tsx:18</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/Switch.tsx#L18">LightcordApi/src/components/inputs/Switch.tsx:18</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -167,6 +167,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -377,7 +379,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextAreaProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L5">lightcordapi/src/components/inputs/TextArea.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L5">LightcordApi/src/components/inputs/TextArea.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -390,7 +392,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L167">lightcordapi/src/components/inputs/TextArea.tsx:167</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L167">LightcordApi/src/components/inputs/TextArea.tsx:167</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -400,7 +402,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextAreaModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextArea.tsx#L25">lightcordapi/src/components/inputs/TextArea.tsx:25</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextArea.tsx#L25">LightcordApi/src/components/inputs/TextArea.tsx:25</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -360,7 +362,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextInputProps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L5">lightcordapi/src/components/inputs/TextInput.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L5">LightcordApi/src/components/inputs/TextInput.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -373,7 +375,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">AllPreviews<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L141">lightcordapi/src/components/inputs/TextInput.tsx:141</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L141">LightcordApi/src/components/inputs/TextInput.tsx:141</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -383,7 +385,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">TextInputModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L25">lightcordapi/src/components/inputs/TextInput.tsx:25</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L25">LightcordApi/src/components/inputs/TextInput.tsx:25</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -400,7 +402,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/inputs/TextInput.tsx#L21">lightcordapi/src/components/inputs/TextInput.tsx:21</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/inputs/TextInput.tsx#L21">LightcordApi/src/components/inputs/TextInput.tsx:21</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -164,6 +164,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -308,7 +310,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">NoticeModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L5">lightcordapi/src/components/private/Notice.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L5">LightcordApi/src/components/private/Notice.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -325,7 +327,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">buttonText<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> = null</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L10">lightcordapi/src/components/private/Notice.tsx:10</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L10">LightcordApi/src/components/private/Notice.tsx:10</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -335,7 +337,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = "unknown id"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L8">lightcordapi/src/components/private/Notice.tsx:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L8">LightcordApi/src/components/private/Notice.tsx:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -345,7 +347,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">onClick<span class="tsd-signature-symbol">:</span> <a href="_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L9">lightcordapi/src/components/private/Notice.tsx:9</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L9">LightcordApi/src/components/private/Notice.tsx:9</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -355,7 +357,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ""</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L7">lightcordapi/src/components/private/Notice.tsx:7</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L7">LightcordApi/src/components/private/Notice.tsx:7</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -365,13 +367,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"default"</span><span class="tsd-signature-symbol"> = "default"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L11">lightcordapi/src/components/private/Notice.tsx:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L11">LightcordApi/src/components/private/Notice.tsx:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notice.tsx#L6">lightcordapi/src/components/private/Notice.tsx:6</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notice.tsx#L6">LightcordApi/src/components/private/Notice.tsx:6</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -314,7 +316,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">notice<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> & </span><a href="_components_private_notices_.html#noticewithoutid" class="tsd-signature-type">noticeWithoutID</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L48">lightcordapi/src/components/private/Notices.tsx:48</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L48">LightcordApi/src/components/private/Notices.tsx:48</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -324,7 +326,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">noticeWithoutID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L41">lightcordapi/src/components/private/Notices.tsx:41</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L41">LightcordApi/src/components/private/Notices.tsx:41</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -337,7 +339,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">events<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">EventEmitter</span><span class="tsd-signature-symbol"> = new EventEmitter()</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L5">lightcordapi/src/components/private/Notices.tsx:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L5">LightcordApi/src/components/private/Notices.tsx:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -347,7 +349,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">notices<span class="tsd-signature-symbol">:</span> <a href="_components_private_notices_.html#notice" class="tsd-signature-type">notice</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/components/private/Notices.tsx#L39">lightcordapi/src/components/private/Notices.tsx:39</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/components/private/Notices.tsx#L39">LightcordApi/src/components/private/Notices.tsx:39</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -181,6 +181,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -272,7 +274,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">BdApi<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof BdApi</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L74">lightcordapi/src/index.ts:74</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L76">LightcordApi/src/index.ts:76</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -282,7 +284,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">EDApi<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof BdApi</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L75">lightcordapi/src/index.ts:75</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L77">LightcordApi/src/index.ts:77</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -292,7 +294,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">Lightcord<span class="tsd-signature-symbol">:</span> <a href="../interfaces/_index_.lightcordglobal.html" class="tsd-signature-type">LightcordGlobal</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L73">lightcordapi/src/index.ts:73</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L75">LightcordApi/src/index.ts:75</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -302,7 +304,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">React<span class="tsd-signature-symbol">:</span> <a href="_index_.__global.html#react" class="tsd-signature-type">React</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L52">lightcordapi/src/index.ts:52</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L54">LightcordApi/src/index.ts:54</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -312,7 +314,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">ReactDOM<span class="tsd-signature-symbol">:</span> <a href="_modules_utils_.html#reactdom" class="tsd-signature-type">ReactDOM</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L53">lightcordapi/src/index.ts:53</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L55">LightcordApi/src/index.ts:55</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -172,6 +172,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -297,6 +299,9 @@
|
||||
<li class="tsd-kind-variable tsd-parent-kind-object-literal">
|
||||
<a href="_index_.html#lightcordapi.webpackloader" class="tsd-kind-icon">Webpack<wbr>Loader</a>
|
||||
</li>
|
||||
<li class="tsd-kind-variable tsd-parent-kind-object-literal">
|
||||
<a href="_index_.html#lightcordapi.settings" class="tsd-kind-icon">settings</a>
|
||||
</li>
|
||||
<li class="tsd-kind-variable tsd-parent-kind-object-literal">
|
||||
<a href="_index_.html#lightcordapi.uuid" class="tsd-kind-icon">uuid</a>
|
||||
</li>
|
||||
@ -346,7 +351,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L119">lightcordapi/src/index.ts:119</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L121">LightcordApi/src/index.ts:121</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -363,7 +368,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L122">lightcordapi/src/index.ts:122</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L124">LightcordApi/src/index.ts:124</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -376,7 +381,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">LightcordApi<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<div class="tsd-comment">
|
||||
<div class="lead">
|
||||
<p>Lightcord Api defined at <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L18">/LightcordApi/src/index.ts</a></p>
|
||||
<p>Lightcord Api defined at <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L22">/LightcordApi/src/index.ts</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal tsd-descriptions">
|
||||
@ -392,7 +397,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L29">lightcordapi/src/index.ts:29</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L30">LightcordApi/src/index.ts:30</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -402,7 +407,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">DiscordTools<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">DiscordTools</span><span class="tsd-signature-symbol"> = DiscordTools</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L39">lightcordapi/src/index.ts:39</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L40">LightcordApi/src/index.ts:40</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -412,7 +417,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">LazyLoad<span class="tsd-signature-symbol">:</span> <a href="_modules_lazyloader_.html#lazyload" class="tsd-signature-type">LazyLoad</a><span class="tsd-signature-symbol"> = LazyLoad</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L48">lightcordapi/src/index.ts:48</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L49">LightcordApi/src/index.ts:49</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -429,7 +434,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L38">lightcordapi/src/index.ts:38</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L39">LightcordApi/src/index.ts:39</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -446,7 +451,17 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L25">lightcordapi/src/index.ts:25</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L26">LightcordApi/src/index.ts:26</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-object-literal tsd-descriptions">
|
||||
<a name="lightcordapi.settings" class="tsd-anchor"></a>
|
||||
<h3>settings</h3>
|
||||
<div class="tsd-signature tsd-kind-icon">settings<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Settings</span><span class="tsd-signature-symbol"> = settings</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L50">LightcordApi/src/index.ts:50</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -465,7 +480,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L34">lightcordapi/src/index.ts:34</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L35">LightcordApi/src/index.ts:35</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -478,7 +493,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L47">lightcordapi/src/index.ts:47</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L48">LightcordApi/src/index.ts:48</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -491,7 +506,7 @@
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span> </h4>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L46">lightcordapi/src/index.ts:46</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L47">LightcordApi/src/index.ts:47</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -505,7 +520,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">NOOP<span class="tsd-signature-symbol">:</span> <a href="_modules_noop_.html#noop" class="tsd-signature-type">NOOP</a><span class="tsd-signature-symbol"> = NOOP</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L43">lightcordapi/src/index.ts:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L44">LightcordApi/src/index.ts:44</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -515,7 +530,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">cloneNullProto<span class="tsd-signature-symbol">:</span> <a href="_modules_clonenullproto_.html#clonenullproto" class="tsd-signature-type">cloneNullProto</a><span class="tsd-signature-symbol"> = cloneNullProto</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L42">lightcordapi/src/index.ts:42</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L43">LightcordApi/src/index.ts:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -525,7 +540,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">excludeProperties<span class="tsd-signature-symbol">:</span> <a href="_modules_excludeproperties_.html#excludeproperties" class="tsd-signature-type">excludeProperties</a><span class="tsd-signature-symbol"> = excludeProperties</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L41">lightcordapi/src/index.ts:41</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L42">LightcordApi/src/index.ts:42</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -535,13 +550,13 @@
|
||||
<div class="tsd-signature tsd-kind-icon">unfreeze<span class="tsd-signature-symbol">:</span> <a href="_modules_unfreeze_.html#unfreeze" class="tsd-signature-type">unfreeze</a><span class="tsd-signature-symbol"> = unfreeze</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L44">lightcordapi/src/index.ts:44</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L45">LightcordApi/src/index.ts:45</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L40">lightcordapi/src/index.ts:40</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L41">LightcordApi/src/index.ts:41</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -549,7 +564,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L21">lightcordapi/src/index.ts:21</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/index.ts#L22">LightcordApi/src/index.ts:22</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -248,7 +250,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">req<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L1">lightcordapi/src/modules/BDModules.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L1">LightcordApi/src/modules/BDModules.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -271,7 +273,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L3">lightcordapi/src/modules/BDModules.ts:3</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L3">LightcordApi/src/modules/BDModules.ts:3</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -291,7 +293,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L8">lightcordapi/src/modules/BDModules.ts:8</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L8">LightcordApi/src/modules/BDModules.ts:8</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -305,7 +307,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/BDModules.ts#L72">lightcordapi/src/modules/BDModules.ts:72</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/BDModules.ts#L72">LightcordApi/src/modules/BDModules.ts:72</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -214,7 +216,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/cloneNullProto.ts#L5">lightcordapi/src/modules/cloneNullProto.ts:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/cloneNullProto.ts#L5">LightcordApi/src/modules/cloneNullProto.ts:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -173,6 +173,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -345,7 +347,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">NoticeData<span class="tsd-signature-symbol">:</span> <a href="_components_private_notices_.html#noticewithoutid" class="tsd-signature-type">noticeWithoutID</a></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L101">lightcordapi/src/modules/DiscordTools.ts:101</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L101">LightcordApi/src/modules/DiscordTools.ts:101</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -362,7 +364,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L86">lightcordapi/src/modules/DiscordTools.ts:86</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L86">LightcordApi/src/modules/DiscordTools.ts:86</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -379,7 +381,7 @@
|
||||
</div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L81">lightcordapi/src/modules/DiscordTools.ts:81</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L81">LightcordApi/src/modules/DiscordTools.ts:81</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -392,7 +394,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">soundModule<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L11">lightcordapi/src/modules/DiscordTools.ts:11</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L11">LightcordApi/src/modules/DiscordTools.ts:11</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -409,7 +411,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/DiscordTools.ts#L103">lightcordapi/src/modules/DiscordTools.ts:103</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/DiscordTools.ts#L103">LightcordApi/src/modules/DiscordTools.ts:103</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -161,6 +161,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -201,7 +203,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">isImported<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = typeof window.BDModules !== "undefined"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/environnement.ts#L2">lightcordapi/src/modules/environnement.ts:2</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/environnement.ts#L2">LightcordApi/src/modules/environnement.ts:2</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -211,7 +213,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">isNative<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = typeof window.BDModules === "undefined"</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/environnement.ts#L1">lightcordapi/src/modules/environnement.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/environnement.ts#L1">LightcordApi/src/modules/environnement.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -209,7 +211,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/excludeProperties.ts#L1">lightcordapi/src/modules/excludeProperties.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/excludeProperties.ts#L1">LightcordApi/src/modules/excludeProperties.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -161,6 +161,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -204,7 +206,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">cache<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Map</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = new Map()</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/lazyLoader.ts#L1">lightcordapi/src/modules/lazyLoader.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/lazyLoader.ts#L1">LightcordApi/src/modules/lazyLoader.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -244,7 +246,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/lazyLoader.ts#L3">lightcordapi/src/modules/lazyLoader.ts:3</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/lazyLoader.ts#L3">LightcordApi/src/modules/lazyLoader.ts:3</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -195,7 +197,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/noop.ts#L1">lightcordapi/src/modules/noop.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/noop.ts#L1">LightcordApi/src/modules/noop.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -170,6 +170,8 @@
|
||||
</li> <li class="current tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -234,7 +236,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">hasCompletedLogin<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/patchers.ts#L213">lightcordapi/src/modules/patchers.ts:213</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/patchers.ts#L213">LightcordApi/src/modules/patchers.ts:213</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -244,7 +246,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">loginPromise<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/patchers.ts#L214">lightcordapi/src/modules/patchers.ts:214</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/patchers.ts#L214">LightcordApi/src/modules/patchers.ts:214</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -261,7 +263,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/patchers.ts#L215">lightcordapi/src/modules/patchers.ts:215</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/patchers.ts#L215">LightcordApi/src/modules/patchers.ts:215</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -299,7 +301,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/patchers.ts#L203">lightcordapi/src/modules/patchers.ts:203</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/patchers.ts#L203">LightcordApi/src/modules/patchers.ts:203</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -313,7 +315,7 @@
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/patchers.ts#L6">lightcordapi/src/modules/patchers.ts:6</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/patchers.ts#L6">LightcordApi/src/modules/patchers.ts:6</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -191,7 +193,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">SettingItem<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/PluginUtilities.ts#L43">lightcordapi/src/modules/PluginUtilities.ts:43</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/PluginUtilities.ts#L43">LightcordApi/src/modules/PluginUtilities.ts:43</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
203
LightcordApi/docs/modules/_modules_settings_.html
Normal file
203
LightcordApi/docs/modules/_modules_settings_.html
Normal file
@ -0,0 +1,203 @@
|
||||
<!doctype html>
|
||||
<html class="default no-js">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>"modules/settings" | lightcordapi</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://fonts.googleapis.com/css?family=Noto+Sans&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="tsd-page-toolbar">
|
||||
<div class="container">
|
||||
<div class="table-wrap">
|
||||
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
||||
<div class="field">
|
||||
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||
<input id="tsd-search-field" type="text" />
|
||||
</div>
|
||||
<ul class="results">
|
||||
<li class="state loading">Preparing search index...</li>
|
||||
<li class="state failure">The search index is not available</li>
|
||||
</ul>
|
||||
<a href="../index.html" class="title">lightcordapi</a>
|
||||
</div>
|
||||
<div class="table-cell" id="tsd-widgets">
|
||||
<div id="tsd-filter">
|
||||
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||
<div class="tsd-filter-group">
|
||||
<div class="tsd-select" id="tsd-filter-visibility">
|
||||
<span class="tsd-select-label">All</span>
|
||||
<ul class="tsd-select-list">
|
||||
<li data-value="public">Public</li>
|
||||
<li data-value="protected">Public/Protected</li>
|
||||
<li data-value="private" class="selected">All</li>
|
||||
</ul>
|
||||
</div>
|
||||
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tsd-page-title">
|
||||
<div class="container">
|
||||
<ul class="tsd-breadcrumb">
|
||||
<li>
|
||||
<a href="../globals.html">Globals</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container">
|
||||
<div class="row container container-main">
|
||||
<div class="col-3 col-menu menu-sticky-wrap menu-highlight">
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul>
|
||||
<li>📑 Index</li>
|
||||
<li><br></li>
|
||||
<li class=" ">
|
||||
<a href="../globals.html">Globals</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_alias_react_.html">"alias/react"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_alias_react_dom_.html">"alias/react-<wbr>dom"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_components_.html">"components/components"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_alertbox_.html">"components/general/<wbr>Alert<wbr>Box"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_codeblock_.html">"components/general/<wbr>Code<wbr>Block"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_errorcatcher_.html">"components/general/<wbr>Error<wbr>Catcher"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_flex_.html">"components/general/<wbr>Flex"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_margin_.html">"components/general/<wbr>Margin"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_settingsubtitle_.html">"components/general/<wbr>Setting<wbr>Sub<wbr>Title"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_settingstitle_.html">"components/general/<wbr>Settings<wbr>Title"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_tabs_.html">"components/general/<wbr>Tabs"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_text_.html">"components/general/<wbr>Text"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_title_.html">"components/general/<wbr>Title"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_general_tooltip_.html">"components/general/<wbr>Tooltip"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_button_.html">"components/inputs/<wbr>Button"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_colorpicker_.html">"components/inputs/<wbr>Color<wbr>Picker"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_colorpicker_old_.html">"components/inputs/<wbr>Color<wbr>Picker.old"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_dateinput_.html">"components/inputs/<wbr>Date<wbr>Input"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_daterange_.html">"components/inputs/<wbr>Date<wbr>Range"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_dropdown_.html">"components/inputs/<wbr>Dropdown"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_radiogroup_.html">"components/inputs/<wbr>Radio<wbr>Group"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_switch_.html">"components/inputs/<wbr>Switch"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_textarea_.html">"components/inputs/<wbr>Text<wbr>Area"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_inputs_textinput_.html">"components/inputs/<wbr>Text<wbr>Input"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_private_notice_.html">"components/private/<wbr>Notice"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_components_private_notices_.html">"components/private/<wbr>Notices"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_index_.html">"index"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_bdmodules_.html">"modules/BDModules"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_discordtools_.html">"modules/<wbr>Discord<wbr>Tools"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_pluginutilities_.html">"modules/<wbr>Plugin<wbr>Utilities"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_unfreeze_.html">"modules/<wbr>Unfreeze"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_utils_.html">"modules/<wbr>Utils"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_webpackloader_.html">"modules/<wbr>Webpack<wbr>Loader"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_clonenullproto_.html">"modules/clone<wbr>Null<wbr>Proto"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_environnement_.html">"modules/environnement"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_excludeproperties_.html">"modules/exclude<wbr>Properties"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_lazyloader_.html">"modules/lazy<wbr>Loader"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_noop_.html">"modules/noop"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class="current tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discorddispatchertypes_.html">"types/<wbr>Discord<wbr>Dispatcher<wbr>Types"</a>
|
||||
</li> </ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="col-9 col-content">
|
||||
<footer class="with-border-bottom">
|
||||
<div class="tsd-legend-group">
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-is-inherited"><span class="tsd-kind-icon">Inherited</span></li>
|
||||
<li class="tsd-is-protected"><span class="tsd-kind-icon">Protected</span></li>
|
||||
<li class="tsd-is-private"><span class="tsd-kind-icon">Private</span></li>
|
||||
<li class="tsd-is-static"><span class="tsd-kind-icon">Static</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object</span></li>
|
||||
<li class="tsd-kind-property"><span class="tsd-kind-icon">Property</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type</span></li>
|
||||
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||
</ul>
|
||||
<ul class="tsd-legend">
|
||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enum</span></li>
|
||||
<li class="tsd-kind-constructor"><span class="tsd-kind-icon">Constructor</span></li>
|
||||
<li class="tsd-kind-accessor"><span class="tsd-kind-icon">Getter/Setter</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
<div>Made with ❤️ by <a href="https://github.com/pirix-gh/eledoc" target="_blank">pirix-gh</a>. Documentation generated by <a href="http://typedoc.org/" target="_blank">TypeDoc.</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="overlay"></div>
|
||||
<script src="../assets/js/main.js"></script>
|
||||
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
||||
</body>
|
||||
</html>
|
@ -166,6 +166,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
@ -69,7 +69,7 @@
|
||||
<nav class="tsd-navigation secondary menu-sticky">
|
||||
<ul>
|
||||
<ul class="before-current">
|
||||
<li class=" tsd-kind-function tsd-parent-kind-module">
|
||||
<li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
|
||||
<a href="_modules_unfreeze_.html#unfreeze" class="tsd-kind-icon">unfreeze</a>
|
||||
</li>
|
||||
</ul>
|
||||
@ -163,6 +163,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -199,7 +201,7 @@
|
||||
<h3>Functions</h3>
|
||||
<div class="tsd-navigation secondary">
|
||||
<ul>
|
||||
<li class="tsd-kind-function tsd-parent-kind-module">
|
||||
<li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
|
||||
<a href="_modules_unfreeze_.html#unfreeze" class="tsd-kind-icon">unfreeze</a>
|
||||
</li>
|
||||
</ul>
|
||||
@ -210,23 +212,28 @@
|
||||
</section>
|
||||
<section class="tsd-panel-group tsd-member-group ">
|
||||
<h2>Functions</h2>
|
||||
<section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-descriptions">
|
||||
<section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter tsd-descriptions">
|
||||
<a name="unfreeze" class="tsd-anchor"></a>
|
||||
<h3>unfreeze</h3>
|
||||
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module">
|
||||
<li class="tsd-signature tsd-kind-icon">unfreeze<span class="tsd-signature-symbol">(</span>o<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
|
||||
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
|
||||
<li class="tsd-signature tsd-kind-icon">unfreeze<T><span class="tsd-signature-symbol">(</span>o<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span></li>
|
||||
</ul>
|
||||
<h4 class="tsd-type-parameters-title">Type parameters</h4>
|
||||
<ul class="tsd-type-parameters">
|
||||
<li>
|
||||
<span class="name">T</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span> </li>
|
||||
</ul>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
<li>
|
||||
<span class="name">o</span>: <span class="tsd-signature-type">any</span>
|
||||
<span class="name">o</span>: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">></span>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span> </h4>
|
||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">T</span> </h4>
|
||||
</ul>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/Unfreeze.ts#L1">lightcordapi/src/modules/Unfreeze.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/Unfreeze.ts#L1">LightcordApi/src/modules/Unfreeze.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
File diff suppressed because one or more lines are too long
@ -160,6 +160,8 @@
|
||||
<a href="_modules_noop_.html">"modules/noop"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class="current tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
@ -204,7 +206,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">uuidFunc<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/uuid.ts#L4">lightcordapi/src/modules/uuid.ts:4</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/uuid.ts#L4">LightcordApi/src/modules/uuid.ts:4</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
@ -217,7 +219,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">uuid<span class="tsd-signature-symbol">:</span> <a href="_modules_uuid_.html#uuidfunc" class="tsd-signature-type">uuidFunc</a><span class="tsd-signature-symbol"> & </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol"> = Object.assign(function(){return uuidv4()}, {v1: () => uuidv1(), v4: () => uuidv4()})</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/uuid.ts#L5">lightcordapi/src/modules/uuid.ts:5</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/uuid.ts#L5">LightcordApi/src/modules/uuid.ts:5</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -161,6 +161,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
@ -221,7 +223,7 @@
|
||||
<div class="tsd-signature tsd-kind-icon">BDModules<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">typeof BDModules</span><span class="tsd-signature-symbol"> = window.BDModules || require("./BDModules")</span></div>
|
||||
<aside class="tsd-sources">
|
||||
<ul>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/modules/WebpackLoader.ts#L1">lightcordapi/src/modules/WebpackLoader.ts:1</a></li>
|
||||
<li>Defined in <a href="https://github.com/Lightcord/Lightcord/blob/01ac967/LightcordApi/src/modules/WebpackLoader.ts#L1">LightcordApi/src/modules/WebpackLoader.ts:1</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
</section>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class="current tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
@ -158,6 +158,8 @@
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_patchers_.html">"modules/patchers"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_settings_.html">"modules/settings"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_modules_uuid_.html">"modules/uuid"</a>
|
||||
</li> <li class=" tsd-kind-module">
|
||||
<a href="_types_discordconstantstypes_.html">"types/<wbr>Discord<wbr>Constants<wbr>Types"</a>
|
||||
|
File diff suppressed because one or more lines are too long
2
LightcordApi/js/main.min.js
vendored
2
LightcordApi/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -13,10 +13,11 @@ import * as bandagedbdApi from "@bandagedbd/bdapi"
|
||||
import "./alias/react"
|
||||
import "./alias/react-dom"
|
||||
import { LazyLoad } from "./modules/lazyLoader"
|
||||
import settings from "./modules/settings"
|
||||
patchers.patch()
|
||||
|
||||
/**
|
||||
* Lightcord Api defined at [/LightcordApi/src/index.ts](https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L18)
|
||||
* Lightcord Api defined at [/LightcordApi/src/index.ts](https://github.com/Lightcord/Lightcord/blob/master/LightcordApi/src/index.ts#L22)
|
||||
*/
|
||||
const LightcordApi = {
|
||||
/**
|
||||
@ -45,7 +46,8 @@ const LightcordApi = {
|
||||
},
|
||||
get isNative(){return isNative},
|
||||
get isImported(){return isImported},
|
||||
LazyLoad: LazyLoad
|
||||
LazyLoad: LazyLoad,
|
||||
settings: settings
|
||||
}
|
||||
|
||||
declare global {
|
||||
|
@ -1,4 +1,4 @@
|
||||
export default function unfreeze(o) {
|
||||
export default function unfreeze<T extends any>(o: Readonly<T>):T{
|
||||
var oo = undefined;
|
||||
if (o instanceof Array) {
|
||||
oo = [];
|
||||
|
59
LightcordApi/src/modules/settings.ts
Normal file
59
LightcordApi/src/modules/settings.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import * as electron from "electron"
|
||||
|
||||
export default new class Settings {
|
||||
/**
|
||||
* Save the settings.
|
||||
* Please do it after a settings.set, or else the value will not be saved.
|
||||
*/
|
||||
save():void{
|
||||
return electron.ipcRenderer.sendSync("LIGHTCORD_SAVE_SETTINGS")
|
||||
}
|
||||
|
||||
/**
|
||||
* Return an object containing all settings.
|
||||
*/
|
||||
get settings():any{
|
||||
return electron.ipcRenderer.sendSync("LIGHTCORD_GET_SETTINGS")
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a single value from the settings.
|
||||
* @param key The value key
|
||||
* @param defaultValue If the data isn't present, a default value
|
||||
* @example ```js
|
||||
* const isTabs = Lightcord.Api.settings.get("isTabs", false)
|
||||
* ```
|
||||
*/
|
||||
get<Value>(key:string, defaultValue:Value):Value{
|
||||
const settings = this.settings
|
||||
if(!(key in settings)){
|
||||
return defaultValue
|
||||
}
|
||||
return settings[key]
|
||||
}
|
||||
|
||||
/**
|
||||
* Set a value in the settings.
|
||||
* @param key The key
|
||||
* @param value The value
|
||||
*/
|
||||
set<Value>(key:string, value:Value):void{
|
||||
return electron.ipcRenderer.sendSync("LIGHTCORD_SET_SETTING", key, value)
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a value in the settings
|
||||
* @param key The key
|
||||
*/
|
||||
delete(key:string):void{
|
||||
return electron.ipcRenderer.sendSync("LIGHTCORD_DELETE_SETTING", key)
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a value is present in the settings.
|
||||
* @param key The key
|
||||
*/
|
||||
exists(key:string):boolean{
|
||||
return key in this.settings
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user