forgot to push

This commit is contained in:
olcxja 2026-05-08 18:07:14 +02:00
commit 4942043ae3
28 changed files with 2458 additions and 0 deletions

563
node_modules/@capacitor/status-bar/dist/docs.json generated vendored Normal file
View file

@ -0,0 +1,563 @@
{
"api": {
"name": "StatusBarPlugin",
"slug": "statusbarplugin",
"docs": "",
"tags": [],
"methods": [
{
"name": "setStyle",
"signature": "(options: StyleOptions) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "StyleOptions"
}
],
"returns": "Promise<void>",
"tags": [
{
"name": "since",
"text": "1.0.0"
}
],
"docs": "Set the current style of the status bar.",
"complexTypes": [
"StyleOptions"
],
"slug": "setstyle"
},
{
"name": "setBackgroundColor",
"signature": "(options: BackgroundColorOptions) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "BackgroundColorOptions"
}
],
"returns": "Promise<void>",
"tags": [
{
"name": "since",
"text": "1.0.0"
}
],
"docs": "Set the background color of the status bar.\nCalling this function updates the foreground color of the status bar if the style is set to default, except on iOS versions lower than 17.\nNot available on Android 15+.",
"complexTypes": [
"BackgroundColorOptions"
],
"slug": "setbackgroundcolor"
},
{
"name": "show",
"signature": "(options?: AnimationOptions | undefined) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "AnimationOptions | undefined"
}
],
"returns": "Promise<void>",
"tags": [
{
"name": "since",
"text": "1.0.0"
}
],
"docs": "Show the status bar.\nOn iOS, if the status bar is initially hidden and the initial style is set to\n`UIStatusBarStyleLightContent`, first show call might present a glitch on the\nanimation showing the text as dark and then transition to light. It's recommended\nto use `Animation.None` as the animation on the first call.",
"complexTypes": [
"AnimationOptions"
],
"slug": "show"
},
{
"name": "hide",
"signature": "(options?: AnimationOptions | undefined) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "AnimationOptions | undefined"
}
],
"returns": "Promise<void>",
"tags": [
{
"name": "since",
"text": "1.0.0"
}
],
"docs": "Hide the status bar.",
"complexTypes": [
"AnimationOptions"
],
"slug": "hide"
},
{
"name": "getInfo",
"signature": "() => Promise<StatusBarInfo>",
"parameters": [],
"returns": "Promise<StatusBarInfo>",
"tags": [
{
"name": "since",
"text": "1.0.0"
}
],
"docs": "Get info about the current state of the status bar.",
"complexTypes": [
"StatusBarInfo"
],
"slug": "getinfo"
},
{
"name": "setOverlaysWebView",
"signature": "(options: SetOverlaysWebViewOptions) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "SetOverlaysWebViewOptions"
}
],
"returns": "Promise<void>",
"tags": [
{
"name": "since",
"text": "1.0.0"
}
],
"docs": "Set whether or not the status bar should overlay the webview to allow usage\nof the space underneath it.\nNot available on Android 15+.",
"complexTypes": [
"SetOverlaysWebViewOptions"
],
"slug": "setoverlayswebview"
},
{
"name": "addListener",
"signature": "(eventName: 'statusBarVisibilityChanged', listenerFunc: VisibilityChangeListener) => Promise<PluginListenerHandle>",
"parameters": [
{
"name": "eventName",
"docs": "",
"type": "'statusBarVisibilityChanged'"
},
{
"name": "listenerFunc",
"docs": "",
"type": "VisibilityChangeListener"
}
],
"returns": "Promise<PluginListenerHandle>",
"tags": [
{
"name": "since",
"text": "7.0.0"
}
],
"docs": "Listen for status bar visibility changes.\nFired when hide or show methods get called.",
"complexTypes": [
"PluginListenerHandle",
"VisibilityChangeListener"
],
"slug": "addlistenerstatusbarvisibilitychanged-"
},
{
"name": "addListener",
"signature": "(eventName: 'statusBarOverlayChanged', listenerFunc: OverlayChangeListener) => Promise<PluginListenerHandle>",
"parameters": [
{
"name": "eventName",
"docs": "",
"type": "'statusBarOverlayChanged'"
},
{
"name": "listenerFunc",
"docs": "",
"type": "OverlayChangeListener"
}
],
"returns": "Promise<PluginListenerHandle>",
"tags": [
{
"name": "since",
"text": "7.0.0"
}
],
"docs": "Listen for status bar overlay changes.\nFired when setOverlaysWebView gets called.",
"complexTypes": [
"PluginListenerHandle",
"OverlayChangeListener"
],
"slug": "addlistenerstatusbaroverlaychanged-"
}
],
"properties": []
},
"interfaces": [
{
"name": "StyleOptions",
"slug": "styleoptions",
"docs": "",
"tags": [],
"methods": [],
"properties": [
{
"name": "style",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Style of the text of the status bar.",
"complexTypes": [
"Style"
],
"type": "Style"
}
]
},
{
"name": "BackgroundColorOptions",
"slug": "backgroundcoloroptions",
"docs": "",
"tags": [],
"methods": [],
"properties": [
{
"name": "color",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "A hex color to which the status bar color is set.",
"complexTypes": [],
"type": "string"
}
]
},
{
"name": "AnimationOptions",
"slug": "animationoptions",
"docs": "",
"tags": [],
"methods": [],
"properties": [
{
"name": "animation",
"tags": [
{
"text": "Animation.Fade",
"name": "default"
},
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "The type of status bar animation used when showing or hiding.\n\nThis option is only supported on iOS.",
"complexTypes": [
"Animation"
],
"type": "Animation"
}
]
},
{
"name": "StatusBarInfo",
"slug": "statusbarinfo",
"docs": "",
"tags": [],
"methods": [],
"properties": [
{
"name": "visible",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Whether the status bar is visible or not.",
"complexTypes": [],
"type": "boolean"
},
{
"name": "style",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "The current status bar style.",
"complexTypes": [
"Style"
],
"type": "Style"
},
{
"name": "color",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "The current status bar color.",
"complexTypes": [],
"type": "string"
},
{
"name": "overlays",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Whether the status bar is overlaid or not.",
"complexTypes": [],
"type": "boolean"
},
{
"name": "height",
"tags": [
{
"text": "7.0.0",
"name": "since"
}
],
"docs": "The height of the status bar.",
"complexTypes": [],
"type": "number"
}
]
},
{
"name": "SetOverlaysWebViewOptions",
"slug": "setoverlayswebviewoptions",
"docs": "",
"tags": [],
"methods": [],
"properties": [
{
"name": "overlay",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Whether to overlay the status bar or not.",
"complexTypes": [],
"type": "boolean"
}
]
},
{
"name": "PluginListenerHandle",
"slug": "pluginlistenerhandle",
"docs": "",
"tags": [],
"methods": [],
"properties": [
{
"name": "remove",
"tags": [],
"docs": "",
"complexTypes": [],
"type": "() => Promise<void>"
}
]
}
],
"enums": [
{
"name": "Style",
"slug": "style",
"members": [
{
"name": "Dark",
"value": "'DARK'",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Light text for dark backgrounds."
},
{
"name": "Light",
"value": "'LIGHT'",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Dark text for light backgrounds."
},
{
"name": "Default",
"value": "'DEFAULT'",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "The style is based on the device appearance.\nIf the device is using Dark mode, the statusbar text will be light.\nIf the device is using Light mode, the statusbar text will be dark."
}
]
},
{
"name": "Animation",
"slug": "animation",
"members": [
{
"name": "None",
"value": "'NONE'",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "No animation during show/hide."
},
{
"name": "Slide",
"value": "'SLIDE'",
"tags": [
{
"text": "Use Animation.Fade or Animation.None instead.",
"name": "deprecated"
},
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Slide animation during show/hide.\nIt doesn't work on iOS 15+."
},
{
"name": "Fade",
"value": "'FADE'",
"tags": [
{
"text": "1.0.0",
"name": "since"
}
],
"docs": "Fade animation during show/hide."
}
]
}
],
"typeAliases": [
{
"name": "VisibilityChangeListener",
"slug": "visibilitychangelistener",
"docs": "",
"types": [
{
"text": "(info: StatusBarInfo): void",
"complexTypes": [
"StatusBarInfo"
]
}
]
},
{
"name": "OverlayChangeListener",
"slug": "overlaychangelistener",
"docs": "",
"types": [
{
"text": "(info: StatusBarInfo): void",
"complexTypes": [
"StatusBarInfo"
]
}
]
}
],
"pluginConfigs": [
{
"name": "StatusBar",
"slug": "statusbar",
"properties": [
{
"name": "overlaysWebView",
"tags": [
{
"text": "1.0.0",
"name": "since"
},
{
"text": "true",
"name": "default"
},
{
"text": "false",
"name": "example"
}
],
"docs": "Whether the statusbar is overlaid or not.\nNot available on Android 15+.",
"complexTypes": [],
"type": "boolean | undefined"
},
{
"name": "style",
"tags": [
{
"text": "1.0.0",
"name": "since"
},
{
"text": "default",
"name": "default"
},
{
"text": "\"DARK\"",
"name": "example"
}
],
"docs": "Style of the text of the status bar.",
"complexTypes": [],
"type": "string | undefined"
},
{
"name": "backgroundColor",
"tags": [
{
"text": "1.0.0",
"name": "since"
},
{
"text": "#000000",
"name": "default"
},
{
"text": "\"#ffffffff\"",
"name": "example"
}
],
"docs": "Color of the background of the statusbar in hex format, #RRGGBB.\nDoesn't work if `overlaysWebView` is true.\nNot available on Android 15+.",
"complexTypes": [],
"type": "string | undefined"
}
],
"docs": "These config values are available:"
}
]
}

View file

@ -0,0 +1,247 @@
import type { PluginListenerHandle } from '@capacitor/core';
declare module '@capacitor/cli' {
interface PluginsConfig {
/**
* These config values are available:
*/
StatusBar?: {
/**
* Whether the statusbar is overlaid or not.
* Not available on Android 15+.
*
* @since 1.0.0
* @default true
* @example false
*/
overlaysWebView?: boolean;
/**
* Style of the text of the status bar.
*
* @since 1.0.0
* @default default
* @example "DARK"
*/
style?: string;
/**
* Color of the background of the statusbar in hex format, #RRGGBB.
* Doesn't work if `overlaysWebView` is true.
* Not available on Android 15+.
*
* @since 1.0.0
* @default #000000
* @example "#ffffffff"
*/
backgroundColor?: string;
};
}
}
export interface StyleOptions {
/**
* Style of the text of the status bar.
*
* @since 1.0.0
*/
style: Style;
}
export declare enum Style {
/**
* Light text for dark backgrounds.
*
* @since 1.0.0
*/
Dark = "DARK",
/**
* Dark text for light backgrounds.
*
* @since 1.0.0
*/
Light = "LIGHT",
/**
* The style is based on the device appearance.
* If the device is using Dark mode, the statusbar text will be light.
* If the device is using Light mode, the statusbar text will be dark.
*
* @since 1.0.0
*/
Default = "DEFAULT"
}
export interface AnimationOptions {
/**
* The type of status bar animation used when showing or hiding.
*
* This option is only supported on iOS.
*
* @default Animation.Fade
*
* @since 1.0.0
*/
animation: Animation;
}
export declare enum Animation {
/**
* No animation during show/hide.
*
* @since 1.0.0
*/
None = "NONE",
/**
* Slide animation during show/hide.
* It doesn't work on iOS 15+.
*
* @deprecated Use Animation.Fade or Animation.None instead.
*
* @since 1.0.0
*/
Slide = "SLIDE",
/**
* Fade animation during show/hide.
*
* @since 1.0.0
*/
Fade = "FADE"
}
export interface BackgroundColorOptions {
/**
* A hex color to which the status bar color is set.
*
* @since 1.0.0
*/
color: string;
}
export interface StatusBarInfo {
/**
* Whether the status bar is visible or not.
*
* @since 1.0.0
*/
visible: boolean;
/**
* The current status bar style.
*
* @since 1.0.0
*/
style: Style;
/**
* The current status bar color.
*
* @since 1.0.0
*/
color: string;
/**
* Whether the status bar is overlaid or not.
*
* @since 1.0.0
*/
overlays: boolean;
/**
* The height of the status bar.
*
* @since 7.0.0
*/
height: number;
}
export interface SetOverlaysWebViewOptions {
/**
* Whether to overlay the status bar or not.
*
* @since 1.0.0
*/
overlay: boolean;
}
export type VisibilityChangeListener = (info: StatusBarInfo) => void;
export type OverlayChangeListener = (info: StatusBarInfo) => void;
export interface StatusBarPlugin {
/**
* Set the current style of the status bar.
*
* @since 1.0.0
*/
setStyle(options: StyleOptions): Promise<void>;
/**
* Set the background color of the status bar.
* Calling this function updates the foreground color of the status bar if the style is set to default, except on iOS versions lower than 17.
* Not available on Android 15+.
*
* @since 1.0.0
*/
setBackgroundColor(options: BackgroundColorOptions): Promise<void>;
/**
* Show the status bar.
* On iOS, if the status bar is initially hidden and the initial style is set to
* `UIStatusBarStyleLightContent`, first show call might present a glitch on the
* animation showing the text as dark and then transition to light. It's recommended
* to use `Animation.None` as the animation on the first call.
*
* @since 1.0.0
*/
show(options?: AnimationOptions): Promise<void>;
/**
* Hide the status bar.
*
* @since 1.0.0
*/
hide(options?: AnimationOptions): Promise<void>;
/**
* Get info about the current state of the status bar.
*
* @since 1.0.0
*/
getInfo(): Promise<StatusBarInfo>;
/**
* Set whether or not the status bar should overlay the webview to allow usage
* of the space underneath it.
* Not available on Android 15+.
*
* @since 1.0.0
*/
setOverlaysWebView(options: SetOverlaysWebViewOptions): Promise<void>;
/**
* Listen for status bar visibility changes.
* Fired when hide or show methods get called.
*
* @since 7.0.0
*/
addListener(eventName: 'statusBarVisibilityChanged', listenerFunc: VisibilityChangeListener): Promise<PluginListenerHandle>;
/**
* Listen for status bar overlay changes.
* Fired when setOverlaysWebView gets called.
*
* @since 7.0.0
*/
addListener(eventName: 'statusBarOverlayChanged', listenerFunc: OverlayChangeListener): Promise<PluginListenerHandle>;
}
/**
* @deprecated Use `StyleOptions`.
* @since 1.0.0
*/
export type StatusBarStyleOptions = StyleOptions;
/**
* @deprecated Use `BackgroundColorOptions`.
* @since 1.0.0
*/
export type StatusBarBackgroundColorOptions = BackgroundColorOptions;
/**
* @deprecated Use `SetOverlaysWebViewOptions`.
* @since 1.0.0
*/
export type StatusBarOverlaysWebviewOptions = SetOverlaysWebViewOptions;
/**
* @deprecated Use `StatusBarInfo`.
* @since 1.0.0
*/
export type StatusBarInfoResult = StatusBarInfo;
/**
* @deprecated Use `AnimationOptions`.
* @since 1.0.0
*/
export type StatusBarAnimationOptions = AnimationOptions;
/**
* @deprecated Use `Animation`.
* @since 1.0.0
*/
export declare const StatusBarAnimation: typeof Animation;
/**
* @deprecated Use `Style`.
* @since 1.0.0
*/
export declare const StatusBarStyle: typeof Style;

View file

@ -0,0 +1,59 @@
/// <reference types="@capacitor/cli" />
export var Style;
(function (Style) {
/**
* Light text for dark backgrounds.
*
* @since 1.0.0
*/
Style["Dark"] = "DARK";
/**
* Dark text for light backgrounds.
*
* @since 1.0.0
*/
Style["Light"] = "LIGHT";
/**
* The style is based on the device appearance.
* If the device is using Dark mode, the statusbar text will be light.
* If the device is using Light mode, the statusbar text will be dark.
*
* @since 1.0.0
*/
Style["Default"] = "DEFAULT";
})(Style || (Style = {}));
export var Animation;
(function (Animation) {
/**
* No animation during show/hide.
*
* @since 1.0.0
*/
Animation["None"] = "NONE";
/**
* Slide animation during show/hide.
* It doesn't work on iOS 15+.
*
* @deprecated Use Animation.Fade or Animation.None instead.
*
* @since 1.0.0
*/
Animation["Slide"] = "SLIDE";
/**
* Fade animation during show/hide.
*
* @since 1.0.0
*/
Animation["Fade"] = "FADE";
})(Animation || (Animation = {}));
/**
* @deprecated Use `Animation`.
* @since 1.0.0
*/
export const StatusBarAnimation = Animation;
/**
* @deprecated Use `Style`.
* @since 1.0.0
*/
export const StatusBarStyle = Style;
//# sourceMappingURL=definitions.js.map

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,4 @@
import type { StatusBarPlugin } from './definitions';
declare const StatusBar: StatusBarPlugin;
export * from './definitions';
export { StatusBar };

5
node_modules/@capacitor/status-bar/dist/esm/index.js generated vendored Normal file
View file

@ -0,0 +1,5 @@
import { registerPlugin } from '@capacitor/core';
const StatusBar = registerPlugin('StatusBar');
export * from './definitions';
export { StatusBar };
//# sourceMappingURL=index.js.map

View file

@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIjD,MAAM,SAAS,GAAG,cAAc,CAAkB,WAAW,CAAC,CAAC;AAE/D,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,SAAS,EAAE,CAAC","sourcesContent":["import { registerPlugin } from '@capacitor/core';\n\nimport type { StatusBarPlugin } from './definitions';\n\nconst StatusBar = registerPlugin<StatusBarPlugin>('StatusBar');\n\nexport * from './definitions';\nexport { StatusBar };\n"]}

69
node_modules/@capacitor/status-bar/dist/plugin.cjs.js generated vendored Normal file
View file

@ -0,0 +1,69 @@
'use strict';
var core = require('@capacitor/core');
/// <reference types="@capacitor/cli" />
exports.Style = void 0;
(function (Style) {
/**
* Light text for dark backgrounds.
*
* @since 1.0.0
*/
Style["Dark"] = "DARK";
/**
* Dark text for light backgrounds.
*
* @since 1.0.0
*/
Style["Light"] = "LIGHT";
/**
* The style is based on the device appearance.
* If the device is using Dark mode, the statusbar text will be light.
* If the device is using Light mode, the statusbar text will be dark.
*
* @since 1.0.0
*/
Style["Default"] = "DEFAULT";
})(exports.Style || (exports.Style = {}));
exports.Animation = void 0;
(function (Animation) {
/**
* No animation during show/hide.
*
* @since 1.0.0
*/
Animation["None"] = "NONE";
/**
* Slide animation during show/hide.
* It doesn't work on iOS 15+.
*
* @deprecated Use Animation.Fade or Animation.None instead.
*
* @since 1.0.0
*/
Animation["Slide"] = "SLIDE";
/**
* Fade animation during show/hide.
*
* @since 1.0.0
*/
Animation["Fade"] = "FADE";
})(exports.Animation || (exports.Animation = {}));
/**
* @deprecated Use `Animation`.
* @since 1.0.0
*/
const StatusBarAnimation = exports.Animation;
/**
* @deprecated Use `Style`.
* @since 1.0.0
*/
const StatusBarStyle = exports.Style;
const StatusBar = core.registerPlugin('StatusBar');
exports.StatusBar = StatusBar;
exports.StatusBarAnimation = StatusBarAnimation;
exports.StatusBarStyle = StatusBarStyle;
//# sourceMappingURL=plugin.cjs.js.map

View file

@ -0,0 +1 @@
{"version":3,"file":"plugin.cjs.js","sources":["esm/definitions.js","esm/index.js"],"sourcesContent":["/// <reference types=\"@capacitor/cli\" />\nexport var Style;\n(function (Style) {\n /**\n * Light text for dark backgrounds.\n *\n * @since 1.0.0\n */\n Style[\"Dark\"] = \"DARK\";\n /**\n * Dark text for light backgrounds.\n *\n * @since 1.0.0\n */\n Style[\"Light\"] = \"LIGHT\";\n /**\n * The style is based on the device appearance.\n * If the device is using Dark mode, the statusbar text will be light.\n * If the device is using Light mode, the statusbar text will be dark.\n *\n * @since 1.0.0\n */\n Style[\"Default\"] = \"DEFAULT\";\n})(Style || (Style = {}));\nexport var Animation;\n(function (Animation) {\n /**\n * No animation during show/hide.\n *\n * @since 1.0.0\n */\n Animation[\"None\"] = \"NONE\";\n /**\n * Slide animation during show/hide.\n * It doesn't work on iOS 15+.\n *\n * @deprecated Use Animation.Fade or Animation.None instead.\n *\n * @since 1.0.0\n */\n Animation[\"Slide\"] = \"SLIDE\";\n /**\n * Fade animation during show/hide.\n *\n * @since 1.0.0\n */\n Animation[\"Fade\"] = \"FADE\";\n})(Animation || (Animation = {}));\n/**\n * @deprecated Use `Animation`.\n * @since 1.0.0\n */\nexport const StatusBarAnimation = Animation;\n/**\n * @deprecated Use `Style`.\n * @since 1.0.0\n */\nexport const StatusBarStyle = Style;\n//# sourceMappingURL=definitions.js.map","import { registerPlugin } from '@capacitor/core';\nconst StatusBar = registerPlugin('StatusBar');\nexport * from './definitions';\nexport { StatusBar };\n//# sourceMappingURL=index.js.map"],"names":["Style","Animation","registerPlugin"],"mappings":";;;;AAAA;AACWA;AACX,CAAC,UAAU,KAAK,EAAE;AAClB;AACA;AACA;AACA;AACA;AACA,IAAI,KAAK,CAAC,MAAM,CAAC,GAAG,MAAM;AAC1B;AACA;AACA;AACA;AACA;AACA,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,OAAO;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,KAAK,CAAC,SAAS,CAAC,GAAG,SAAS;AAChC,CAAC,EAAEA,aAAK,KAAKA,aAAK,GAAG,EAAE,CAAC,CAAC;AACdC;AACX,CAAC,UAAU,SAAS,EAAE;AACtB;AACA;AACA;AACA;AACA;AACA,IAAI,SAAS,CAAC,MAAM,CAAC,GAAG,MAAM;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,SAAS,CAAC,OAAO,CAAC,GAAG,OAAO;AAChC;AACA;AACA;AACA;AACA;AACA,IAAI,SAAS,CAAC,MAAM,CAAC,GAAG,MAAM;AAC9B,CAAC,EAAEA,iBAAS,KAAKA,iBAAS,GAAG,EAAE,CAAC,CAAC;AACjC;AACA;AACA;AACA;AACY,MAAC,kBAAkB,GAAGA;AAClC;AACA;AACA;AACA;AACY,MAAC,cAAc,GAAGD;;ACxDzB,MAAC,SAAS,GAAGE,mBAAc,CAAC,WAAW;;;;;;"}

72
node_modules/@capacitor/status-bar/dist/plugin.js generated vendored Normal file
View file

@ -0,0 +1,72 @@
var capacitorStatusBar = (function (exports, core) {
'use strict';
/// <reference types="@capacitor/cli" />
exports.Style = void 0;
(function (Style) {
/**
* Light text for dark backgrounds.
*
* @since 1.0.0
*/
Style["Dark"] = "DARK";
/**
* Dark text for light backgrounds.
*
* @since 1.0.0
*/
Style["Light"] = "LIGHT";
/**
* The style is based on the device appearance.
* If the device is using Dark mode, the statusbar text will be light.
* If the device is using Light mode, the statusbar text will be dark.
*
* @since 1.0.0
*/
Style["Default"] = "DEFAULT";
})(exports.Style || (exports.Style = {}));
exports.Animation = void 0;
(function (Animation) {
/**
* No animation during show/hide.
*
* @since 1.0.0
*/
Animation["None"] = "NONE";
/**
* Slide animation during show/hide.
* It doesn't work on iOS 15+.
*
* @deprecated Use Animation.Fade or Animation.None instead.
*
* @since 1.0.0
*/
Animation["Slide"] = "SLIDE";
/**
* Fade animation during show/hide.
*
* @since 1.0.0
*/
Animation["Fade"] = "FADE";
})(exports.Animation || (exports.Animation = {}));
/**
* @deprecated Use `Animation`.
* @since 1.0.0
*/
const StatusBarAnimation = exports.Animation;
/**
* @deprecated Use `Style`.
* @since 1.0.0
*/
const StatusBarStyle = exports.Style;
const StatusBar = core.registerPlugin('StatusBar');
exports.StatusBar = StatusBar;
exports.StatusBarAnimation = StatusBarAnimation;
exports.StatusBarStyle = StatusBarStyle;
return exports;
})({}, capacitorExports);
//# sourceMappingURL=plugin.js.map

View file

@ -0,0 +1 @@
{"version":3,"file":"plugin.js","sources":["esm/definitions.js","esm/index.js"],"sourcesContent":["/// <reference types=\"@capacitor/cli\" />\nexport var Style;\n(function (Style) {\n /**\n * Light text for dark backgrounds.\n *\n * @since 1.0.0\n */\n Style[\"Dark\"] = \"DARK\";\n /**\n * Dark text for light backgrounds.\n *\n * @since 1.0.0\n */\n Style[\"Light\"] = \"LIGHT\";\n /**\n * The style is based on the device appearance.\n * If the device is using Dark mode, the statusbar text will be light.\n * If the device is using Light mode, the statusbar text will be dark.\n *\n * @since 1.0.0\n */\n Style[\"Default\"] = \"DEFAULT\";\n})(Style || (Style = {}));\nexport var Animation;\n(function (Animation) {\n /**\n * No animation during show/hide.\n *\n * @since 1.0.0\n */\n Animation[\"None\"] = \"NONE\";\n /**\n * Slide animation during show/hide.\n * It doesn't work on iOS 15+.\n *\n * @deprecated Use Animation.Fade or Animation.None instead.\n *\n * @since 1.0.0\n */\n Animation[\"Slide\"] = \"SLIDE\";\n /**\n * Fade animation during show/hide.\n *\n * @since 1.0.0\n */\n Animation[\"Fade\"] = \"FADE\";\n})(Animation || (Animation = {}));\n/**\n * @deprecated Use `Animation`.\n * @since 1.0.0\n */\nexport const StatusBarAnimation = Animation;\n/**\n * @deprecated Use `Style`.\n * @since 1.0.0\n */\nexport const StatusBarStyle = Style;\n//# sourceMappingURL=definitions.js.map","import { registerPlugin } from '@capacitor/core';\nconst StatusBar = registerPlugin('StatusBar');\nexport * from './definitions';\nexport { StatusBar };\n//# sourceMappingURL=index.js.map"],"names":["Style","Animation","registerPlugin"],"mappings":";;;IAAA;AACWA;IACX,CAAC,UAAU,KAAK,EAAE;IAClB;IACA;IACA;IACA;IACA;IACA,IAAI,KAAK,CAAC,MAAM,CAAC,GAAG,MAAM;IAC1B;IACA;IACA;IACA;IACA;IACA,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,OAAO;IAC5B;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,KAAK,CAAC,SAAS,CAAC,GAAG,SAAS;IAChC,CAAC,EAAEA,aAAK,KAAKA,aAAK,GAAG,EAAE,CAAC,CAAC;AACdC;IACX,CAAC,UAAU,SAAS,EAAE;IACtB;IACA;IACA;IACA;IACA;IACA,IAAI,SAAS,CAAC,MAAM,CAAC,GAAG,MAAM;IAC9B;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,IAAI,SAAS,CAAC,OAAO,CAAC,GAAG,OAAO;IAChC;IACA;IACA;IACA;IACA;IACA,IAAI,SAAS,CAAC,MAAM,CAAC,GAAG,MAAM;IAC9B,CAAC,EAAEA,iBAAS,KAAKA,iBAAS,GAAG,EAAE,CAAC,CAAC;IACjC;IACA;IACA;IACA;AACY,UAAC,kBAAkB,GAAGA;IAClC;IACA;IACA;IACA;AACY,UAAC,cAAc,GAAGD;;ACxDzB,UAAC,SAAS,GAAGE,mBAAc,CAAC,WAAW;;;;;;;;;;;;"}