@delta-comic/ui 3.0.0-next.10 → 3.0.0-next.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { t as e } from "./rolldown-runtime-Dy4uBu1J.js";
1
+ import { n as e } from "./rolldown-runtime-B0aSnxlc.js";
2
2
  //#endregion
3
3
  //#region ../../node_modules/.pnpm/@tauri-apps+api@2.11.1/node_modules/@tauri-apps/api/core.js
4
4
  var t = /* @__PURE__ */ e({
@@ -19,4 +19,4 @@ function a() {
19
19
  //#endregion
20
20
  export { i as n, a as r, t };
21
21
 
22
- //# sourceMappingURL=core-CccJCdWI.js.map
22
+ //# sourceMappingURL=core-Cozmhed8.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"core-CccJCdWI.js","names":[],"sources":["../../../node_modules/.pnpm/@tauri-apps+api@2.11.1/node_modules/@tauri-apps/api/external/tslib/tslib.es6.js","../../../node_modules/.pnpm/@tauri-apps+api@2.11.1/node_modules/@tauri-apps/api/core.js"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\ntypeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\n\nexport { __classPrivateFieldGet, __classPrivateFieldSet };\n","import { __classPrivateFieldSet, __classPrivateFieldGet } from './external/tslib/tslib.es6.js';\n\n// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\nvar _Channel_onmessage, _Channel_nextMessageIndex, _Channel_pendingMessages, _Channel_messageEndIndex, _Resource_rid;\n/**\n * Invoke your custom commands.\n *\n * This package is also accessible with `window.__TAURI__.core` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`.\n * @module\n */\n/**\n * A key to be used to implement a special function\n * on your types that define how your type should be serialized\n * when passing across the IPC.\n * @example\n * Given a type in Rust that looks like this\n * ```rs\n * #[derive(serde::Serialize, serde::Deserialize)\n * enum UserId {\n * String(String),\n * Number(u32),\n * }\n * ```\n * `UserId::String(\"id\")` would be serialized into `{ String: \"id\" }`\n * and so we need to pass the same structure back to Rust\n * ```ts\n * import { SERIALIZE_TO_IPC_FN } from \"@tauri-apps/api/core\"\n *\n * class UserIdString {\n * id\n * constructor(id) {\n * this.id = id\n * }\n *\n * [SERIALIZE_TO_IPC_FN]() {\n * return { String: this.id }\n * }\n * }\n *\n * class UserIdNumber {\n * id\n * constructor(id) {\n * this.id = id\n * }\n *\n * [SERIALIZE_TO_IPC_FN]() {\n * return { Number: this.id }\n * }\n * }\n *\n * type UserId = UserIdString | UserIdNumber\n * ```\n *\n */\n// if this value changes, make sure to update it in:\n// 1. ipc.js\n// 2. process-ipc-message-fn.js\nconst SERIALIZE_TO_IPC_FN = '__TAURI_TO_IPC_KEY__';\n/**\n * Stores the callback in a known location, and returns an identifier that can be passed to the backend.\n * The backend uses the identifier to `eval()` the callback.\n *\n * @return An unique identifier associated with the callback function.\n *\n * @since 1.0.0\n */\nfunction transformCallback(\n// TODO: Make this not optional in v3\ncallback, once = false) {\n return window.__TAURI_INTERNALS__.transformCallback(callback, once);\n}\nclass Channel {\n constructor(onmessage) {\n _Channel_onmessage.set(this, void 0);\n // the index is used as a mechanism to preserve message order\n _Channel_nextMessageIndex.set(this, 0);\n _Channel_pendingMessages.set(this, []);\n _Channel_messageEndIndex.set(this, void 0);\n __classPrivateFieldSet(this, _Channel_onmessage, onmessage || (() => { }), \"f\");\n this.id = transformCallback((rawMessage) => {\n const index = rawMessage.index;\n if ('end' in rawMessage) {\n if (index == __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")) {\n this.cleanupCallback();\n }\n else {\n __classPrivateFieldSet(this, _Channel_messageEndIndex, index, \"f\");\n }\n return;\n }\n const message = rawMessage.message;\n // Process the message if we're at the right order\n if (index == __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")) {\n __classPrivateFieldGet(this, _Channel_onmessage, \"f\").call(this, message);\n __classPrivateFieldSet(this, _Channel_nextMessageIndex, __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") + 1, \"f\");\n // process pending messages\n while (__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") in __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")) {\n const message = __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")[__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")];\n __classPrivateFieldGet(this, _Channel_onmessage, \"f\").call(this, message);\n // eslint-disable-next-line @typescript-eslint/no-array-delete\n delete __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")[__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")];\n __classPrivateFieldSet(this, _Channel_nextMessageIndex, __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") + 1, \"f\");\n }\n if (__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") === __classPrivateFieldGet(this, _Channel_messageEndIndex, \"f\")) {\n this.cleanupCallback();\n }\n }\n // Queue the message if we're not\n else {\n // eslint-disable-next-line security/detect-object-injection\n __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")[index] = message;\n }\n });\n }\n cleanupCallback() {\n window.__TAURI_INTERNALS__.unregisterCallback(this.id);\n }\n set onmessage(handler) {\n __classPrivateFieldSet(this, _Channel_onmessage, handler, \"f\");\n }\n get onmessage() {\n return __classPrivateFieldGet(this, _Channel_onmessage, \"f\");\n }\n [(_Channel_onmessage = new WeakMap(), _Channel_nextMessageIndex = new WeakMap(), _Channel_pendingMessages = new WeakMap(), _Channel_messageEndIndex = new WeakMap(), SERIALIZE_TO_IPC_FN)]() {\n return `__CHANNEL__:${this.id}`;\n }\n toJSON() {\n // eslint-disable-next-line security/detect-object-injection\n return this[SERIALIZE_TO_IPC_FN]();\n }\n}\nclass PluginListener {\n constructor(plugin, event, channelId) {\n this.plugin = plugin;\n this.event = event;\n this.channelId = channelId;\n }\n async unregister() {\n return invoke(`plugin:${this.plugin}|remove_listener`, {\n event: this.event,\n channelId: this.channelId\n });\n }\n}\n/**\n * Adds a listener to a plugin event.\n *\n * @returns The listener object to stop listening to the events.\n *\n * @since 2.0.0\n */\nasync function addPluginListener(plugin, event, cb) {\n const handler = new Channel(cb);\n try {\n await invoke(`plugin:${plugin}|register_listener`, {\n event,\n handler\n });\n return new PluginListener(plugin, event, handler.id);\n }\n catch {\n // TODO(v3): remove this fallback\n // note: we must try with camelCase here for backwards compatibility\n await invoke(`plugin:${plugin}|registerListener`, { event, handler });\n return new PluginListener(plugin, event, handler.id);\n }\n}\n/**\n * Get permission state for a plugin.\n *\n * This should be used by plugin authors to wrap their actual implementation.\n */\nasync function checkPermissions(plugin) {\n return invoke(`plugin:${plugin}|check_permissions`);\n}\n/**\n * Request permissions.\n *\n * This should be used by plugin authors to wrap their actual implementation.\n */\nasync function requestPermissions(plugin) {\n return invoke(`plugin:${plugin}|request_permissions`);\n}\n/**\n * Sends a message to the backend.\n * @example\n * ```typescript\n * import { invoke } from '@tauri-apps/api/core';\n * await invoke('login', { user: 'tauri', password: 'poiwe3h4r5ip3yrhtew9ty' });\n * ```\n *\n * @param cmd The command name.\n * @param args The optional arguments to pass to the command.\n * @param options The request options.\n * @return A promise resolving or rejecting to the backend response.\n *\n * @since 1.0.0\n */\nasync function invoke(cmd, args = {}, options) {\n return window.__TAURI_INTERNALS__.invoke(cmd, args, options);\n}\n/**\n * Convert a device file path to an URL that can be loaded by the webview.\n * Note that `asset:` and `http://asset.localhost` must be added to [`app.security.csp`](https://v2.tauri.app/reference/config/#csp-1) in `tauri.conf.json`.\n * Example CSP value: `\"csp\": \"default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost\"` to use the asset protocol on image sources.\n *\n * Additionally, `\"enable\" : \"true\"` must be added to [`app.security.assetProtocol`](https://v2.tauri.app/reference/config/#assetprotocolconfig)\n * in `tauri.conf.json` and its access scope must be defined on the `scope` array on the same `assetProtocol` object.\n *\n * @param filePath The file path.\n * @param protocol The protocol to use. Defaults to `asset`. You only need to set this when using a custom protocol.\n * @example\n * ```typescript\n * import { appDataDir, join } from '@tauri-apps/api/path';\n * import { convertFileSrc } from '@tauri-apps/api/core';\n * const appDataDirPath = await appDataDir();\n * const filePath = await join(appDataDirPath, 'assets/video.mp4');\n * const assetUrl = convertFileSrc(filePath);\n *\n * const video = document.getElementById('my-video');\n * const source = document.createElement('source');\n * source.type = 'video/mp4';\n * source.src = assetUrl;\n * video.appendChild(source);\n * video.load();\n * ```\n *\n * @return the URL that can be used as source on the webview.\n *\n * @since 1.0.0\n */\nfunction convertFileSrc(filePath, protocol = 'asset') {\n return window.__TAURI_INTERNALS__.convertFileSrc(filePath, protocol);\n}\n/**\n * A rust-backed resource stored through `tauri::Manager::resources_table` API.\n *\n * The resource lives in the main process and does not exist\n * in the Javascript world, and thus will not be cleaned up automatically\n * except on application exit. If you want to clean it up early, call {@linkcode Resource.close}\n *\n * @example\n * ```typescript\n * import { Resource, invoke } from '@tauri-apps/api/core';\n * export class DatabaseHandle extends Resource {\n * static async open(path: string): Promise<DatabaseHandle> {\n * const rid: number = await invoke('open_db', { path });\n * return new DatabaseHandle(rid);\n * }\n *\n * async execute(sql: string): Promise<void> {\n * await invoke('execute_sql', { rid: this.rid, sql });\n * }\n * }\n * ```\n */\nclass Resource {\n get rid() {\n return __classPrivateFieldGet(this, _Resource_rid, \"f\");\n }\n constructor(rid) {\n _Resource_rid.set(this, void 0);\n __classPrivateFieldSet(this, _Resource_rid, rid, \"f\");\n }\n /**\n * Destroys and cleans up this resource from memory.\n * **You should not call any method on this object anymore and should drop any reference to it.**\n */\n async close() {\n return invoke('plugin:resources|close', {\n rid: this.rid\n });\n }\n}\n_Resource_rid = new WeakMap();\nfunction isTauri() {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access\n return !!(globalThis || window).isTauri;\n}\n\nexport { Channel, PluginListener, Resource, SERIALIZE_TO_IPC_FN, addPluginListener, checkPermissions, convertFileSrc, invoke, isTauri, requestPermissions, transformCallback };\n"],"x_google_ignoreList":[0,1],"mappings":";;;;;;;;IC2DM,IAAsB;AAS5B,SAAS,EAET,GAAU,IAAO,IAAO;CACpB,OAAO,OAAO,oBAAoB,kBAAkB,GAAU,CAAI;AACtE;AAgIA,eAAe,EAAO,GAAK,IAAO,CAAC,GAAG,GAAS;CAC3C,OAAO,OAAO,oBAAoB,OAAO,GAAK,GAAM,CAAO;AAC/D;AA2EA,SAAS,IAAU;CAEf,OAAO,CAAC,EAAE,cAAc,OAAA,CAAQ;AACpC"}
1
+ {"version":3,"file":"core-Cozmhed8.js","names":[],"sources":["../../../node_modules/.pnpm/@tauri-apps+api@2.11.1/node_modules/@tauri-apps/api/external/tslib/tslib.es6.js","../../../node_modules/.pnpm/@tauri-apps+api@2.11.1/node_modules/@tauri-apps/api/core.js"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\n\r\nfunction __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nfunction __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\ntypeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\n\nexport { __classPrivateFieldGet, __classPrivateFieldSet };\n","import { __classPrivateFieldSet, __classPrivateFieldGet } from './external/tslib/tslib.es6.js';\n\n// Copyright 2019-2024 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\nvar _Channel_onmessage, _Channel_nextMessageIndex, _Channel_pendingMessages, _Channel_messageEndIndex, _Resource_rid;\n/**\n * Invoke your custom commands.\n *\n * This package is also accessible with `window.__TAURI__.core` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`.\n * @module\n */\n/**\n * A key to be used to implement a special function\n * on your types that define how your type should be serialized\n * when passing across the IPC.\n * @example\n * Given a type in Rust that looks like this\n * ```rs\n * #[derive(serde::Serialize, serde::Deserialize)\n * enum UserId {\n * String(String),\n * Number(u32),\n * }\n * ```\n * `UserId::String(\"id\")` would be serialized into `{ String: \"id\" }`\n * and so we need to pass the same structure back to Rust\n * ```ts\n * import { SERIALIZE_TO_IPC_FN } from \"@tauri-apps/api/core\"\n *\n * class UserIdString {\n * id\n * constructor(id) {\n * this.id = id\n * }\n *\n * [SERIALIZE_TO_IPC_FN]() {\n * return { String: this.id }\n * }\n * }\n *\n * class UserIdNumber {\n * id\n * constructor(id) {\n * this.id = id\n * }\n *\n * [SERIALIZE_TO_IPC_FN]() {\n * return { Number: this.id }\n * }\n * }\n *\n * type UserId = UserIdString | UserIdNumber\n * ```\n *\n */\n// if this value changes, make sure to update it in:\n// 1. ipc.js\n// 2. process-ipc-message-fn.js\nconst SERIALIZE_TO_IPC_FN = '__TAURI_TO_IPC_KEY__';\n/**\n * Stores the callback in a known location, and returns an identifier that can be passed to the backend.\n * The backend uses the identifier to `eval()` the callback.\n *\n * @return An unique identifier associated with the callback function.\n *\n * @since 1.0.0\n */\nfunction transformCallback(\n// TODO: Make this not optional in v3\ncallback, once = false) {\n return window.__TAURI_INTERNALS__.transformCallback(callback, once);\n}\nclass Channel {\n constructor(onmessage) {\n _Channel_onmessage.set(this, void 0);\n // the index is used as a mechanism to preserve message order\n _Channel_nextMessageIndex.set(this, 0);\n _Channel_pendingMessages.set(this, []);\n _Channel_messageEndIndex.set(this, void 0);\n __classPrivateFieldSet(this, _Channel_onmessage, onmessage || (() => { }), \"f\");\n this.id = transformCallback((rawMessage) => {\n const index = rawMessage.index;\n if ('end' in rawMessage) {\n if (index == __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")) {\n this.cleanupCallback();\n }\n else {\n __classPrivateFieldSet(this, _Channel_messageEndIndex, index, \"f\");\n }\n return;\n }\n const message = rawMessage.message;\n // Process the message if we're at the right order\n if (index == __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")) {\n __classPrivateFieldGet(this, _Channel_onmessage, \"f\").call(this, message);\n __classPrivateFieldSet(this, _Channel_nextMessageIndex, __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") + 1, \"f\");\n // process pending messages\n while (__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") in __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")) {\n const message = __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")[__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")];\n __classPrivateFieldGet(this, _Channel_onmessage, \"f\").call(this, message);\n // eslint-disable-next-line @typescript-eslint/no-array-delete\n delete __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")[__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\")];\n __classPrivateFieldSet(this, _Channel_nextMessageIndex, __classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") + 1, \"f\");\n }\n if (__classPrivateFieldGet(this, _Channel_nextMessageIndex, \"f\") === __classPrivateFieldGet(this, _Channel_messageEndIndex, \"f\")) {\n this.cleanupCallback();\n }\n }\n // Queue the message if we're not\n else {\n // eslint-disable-next-line security/detect-object-injection\n __classPrivateFieldGet(this, _Channel_pendingMessages, \"f\")[index] = message;\n }\n });\n }\n cleanupCallback() {\n window.__TAURI_INTERNALS__.unregisterCallback(this.id);\n }\n set onmessage(handler) {\n __classPrivateFieldSet(this, _Channel_onmessage, handler, \"f\");\n }\n get onmessage() {\n return __classPrivateFieldGet(this, _Channel_onmessage, \"f\");\n }\n [(_Channel_onmessage = new WeakMap(), _Channel_nextMessageIndex = new WeakMap(), _Channel_pendingMessages = new WeakMap(), _Channel_messageEndIndex = new WeakMap(), SERIALIZE_TO_IPC_FN)]() {\n return `__CHANNEL__:${this.id}`;\n }\n toJSON() {\n // eslint-disable-next-line security/detect-object-injection\n return this[SERIALIZE_TO_IPC_FN]();\n }\n}\nclass PluginListener {\n constructor(plugin, event, channelId) {\n this.plugin = plugin;\n this.event = event;\n this.channelId = channelId;\n }\n async unregister() {\n return invoke(`plugin:${this.plugin}|remove_listener`, {\n event: this.event,\n channelId: this.channelId\n });\n }\n}\n/**\n * Adds a listener to a plugin event.\n *\n * @returns The listener object to stop listening to the events.\n *\n * @since 2.0.0\n */\nasync function addPluginListener(plugin, event, cb) {\n const handler = new Channel(cb);\n try {\n await invoke(`plugin:${plugin}|register_listener`, {\n event,\n handler\n });\n return new PluginListener(plugin, event, handler.id);\n }\n catch {\n // TODO(v3): remove this fallback\n // note: we must try with camelCase here for backwards compatibility\n await invoke(`plugin:${plugin}|registerListener`, { event, handler });\n return new PluginListener(plugin, event, handler.id);\n }\n}\n/**\n * Get permission state for a plugin.\n *\n * This should be used by plugin authors to wrap their actual implementation.\n */\nasync function checkPermissions(plugin) {\n return invoke(`plugin:${plugin}|check_permissions`);\n}\n/**\n * Request permissions.\n *\n * This should be used by plugin authors to wrap their actual implementation.\n */\nasync function requestPermissions(plugin) {\n return invoke(`plugin:${plugin}|request_permissions`);\n}\n/**\n * Sends a message to the backend.\n * @example\n * ```typescript\n * import { invoke } from '@tauri-apps/api/core';\n * await invoke('login', { user: 'tauri', password: 'poiwe3h4r5ip3yrhtew9ty' });\n * ```\n *\n * @param cmd The command name.\n * @param args The optional arguments to pass to the command.\n * @param options The request options.\n * @return A promise resolving or rejecting to the backend response.\n *\n * @since 1.0.0\n */\nasync function invoke(cmd, args = {}, options) {\n return window.__TAURI_INTERNALS__.invoke(cmd, args, options);\n}\n/**\n * Convert a device file path to an URL that can be loaded by the webview.\n * Note that `asset:` and `http://asset.localhost` must be added to [`app.security.csp`](https://v2.tauri.app/reference/config/#csp-1) in `tauri.conf.json`.\n * Example CSP value: `\"csp\": \"default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost\"` to use the asset protocol on image sources.\n *\n * Additionally, `\"enable\" : \"true\"` must be added to [`app.security.assetProtocol`](https://v2.tauri.app/reference/config/#assetprotocolconfig)\n * in `tauri.conf.json` and its access scope must be defined on the `scope` array on the same `assetProtocol` object.\n *\n * @param filePath The file path.\n * @param protocol The protocol to use. Defaults to `asset`. You only need to set this when using a custom protocol.\n * @example\n * ```typescript\n * import { appDataDir, join } from '@tauri-apps/api/path';\n * import { convertFileSrc } from '@tauri-apps/api/core';\n * const appDataDirPath = await appDataDir();\n * const filePath = await join(appDataDirPath, 'assets/video.mp4');\n * const assetUrl = convertFileSrc(filePath);\n *\n * const video = document.getElementById('my-video');\n * const source = document.createElement('source');\n * source.type = 'video/mp4';\n * source.src = assetUrl;\n * video.appendChild(source);\n * video.load();\n * ```\n *\n * @return the URL that can be used as source on the webview.\n *\n * @since 1.0.0\n */\nfunction convertFileSrc(filePath, protocol = 'asset') {\n return window.__TAURI_INTERNALS__.convertFileSrc(filePath, protocol);\n}\n/**\n * A rust-backed resource stored through `tauri::Manager::resources_table` API.\n *\n * The resource lives in the main process and does not exist\n * in the Javascript world, and thus will not be cleaned up automatically\n * except on application exit. If you want to clean it up early, call {@linkcode Resource.close}\n *\n * @example\n * ```typescript\n * import { Resource, invoke } from '@tauri-apps/api/core';\n * export class DatabaseHandle extends Resource {\n * static async open(path: string): Promise<DatabaseHandle> {\n * const rid: number = await invoke('open_db', { path });\n * return new DatabaseHandle(rid);\n * }\n *\n * async execute(sql: string): Promise<void> {\n * await invoke('execute_sql', { rid: this.rid, sql });\n * }\n * }\n * ```\n */\nclass Resource {\n get rid() {\n return __classPrivateFieldGet(this, _Resource_rid, \"f\");\n }\n constructor(rid) {\n _Resource_rid.set(this, void 0);\n __classPrivateFieldSet(this, _Resource_rid, rid, \"f\");\n }\n /**\n * Destroys and cleans up this resource from memory.\n * **You should not call any method on this object anymore and should drop any reference to it.**\n */\n async close() {\n return invoke('plugin:resources|close', {\n rid: this.rid\n });\n }\n}\n_Resource_rid = new WeakMap();\nfunction isTauri() {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access\n return !!(globalThis || window).isTauri;\n}\n\nexport { Channel, PluginListener, Resource, SERIALIZE_TO_IPC_FN, addPluginListener, checkPermissions, convertFileSrc, invoke, isTauri, requestPermissions, transformCallback };\n"],"x_google_ignoreList":[0,1],"mappings":";;;;;;;;IC2DM,IAAsB;AAS5B,SAAS,EAET,GAAU,IAAO,IAAO;CACpB,OAAO,OAAO,oBAAoB,kBAAkB,GAAU,CAAI;AACtE;AAgIA,eAAe,EAAO,GAAK,IAAO,CAAC,GAAG,GAAS;CAC3C,OAAO,OAAO,oBAAoB,OAAO,GAAK,GAAM,CAAO;AAC/D;AA2EA,SAAS,IAAU;CAEf,OAAO,CAAC,EAAE,cAAc,OAAA,CAAQ;AACpC"}
@@ -1,4 +1,4 @@
1
- import { n as e } from "./core-CccJCdWI.js";
1
+ import { n as e } from "./core-Cozmhed8.js";
2
2
  //#region ../../node_modules/.pnpm/@tauri-apps+plugin-shell@2.3.5/node_modules/@tauri-apps/plugin-shell/dist-js/index.js
3
3
  async function t(t, n) {
4
4
  await e("plugin:shell|open", {
@@ -9,4 +9,4 @@ async function t(t, n) {
9
9
  //#endregion
10
10
  export { t as open };
11
11
 
12
- //# sourceMappingURL=dist-js-BlNPHicQ.js.map
12
+ //# sourceMappingURL=dist-js-COWeIZHq.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dist-js-BlNPHicQ.js","names":[],"sources":["../../../node_modules/.pnpm/@tauri-apps+plugin-shell@2.3.5/node_modules/@tauri-apps/plugin-shell/dist-js/index.js"],"sourcesContent":["import { invoke, Channel } from '@tauri-apps/api/core';\n\n// Copyright 2019-2023 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n/**\n * Access the system shell.\n * Allows you to spawn child processes and manage files and URLs using their default application.\n *\n * ## Security\n *\n * This API has a scope configuration that forces you to restrict the programs and arguments that can be used.\n *\n * ### Restricting access to the {@link open | `open`} API\n *\n * On the configuration object, `open: true` means that the {@link open} API can be used with any URL,\n * as the argument is validated with the `^((mailto:\\w+)|(tel:\\w+)|(https?://\\w+)).+` regex.\n * You can change that regex by changing the boolean value to a string, e.g. `open: ^https://github.com/`.\n *\n * ### Restricting access to the {@link Command | `Command`} APIs\n *\n * The plugin permissions object has a `scope` field that defines an array of CLIs that can be used.\n * Each CLI is a configuration object `{ name: string, cmd: string, sidecar?: bool, args?: boolean | Arg[] }`.\n *\n * - `name`: the unique identifier of the command, passed to the {@link Command.create | Command.create function}.\n * If it's a sidecar, this must be the value defined on `tauri.conf.json > bundle > externalBin`.\n * - `cmd`: the program that is executed on this configuration. If it's a sidecar, this value is ignored.\n * - `sidecar`: whether the object configures a sidecar or a system program.\n * - `args`: the arguments that can be passed to the program. By default no arguments are allowed.\n * - `true` means that any argument list is allowed.\n * - `false` means that no arguments are allowed.\n * - otherwise an array can be configured. Each item is either a string representing the fixed argument value\n * or a `{ validator: string }` that defines a regex validating the argument value.\n *\n * #### Example scope configuration\n *\n * CLI: `git commit -m \"the commit message\"`\n *\n * Capability:\n * ```json\n * {\n * \"permissions\": [\n * {\n * \"identifier\": \"shell:allow-execute\",\n * \"allow\": [\n * {\n * \"name\": \"run-git-commit\",\n * \"cmd\": \"git\",\n * \"args\": [\"commit\", \"-m\", { \"validator\": \"\\\\S+\" }]\n * }\n * ]\n * }\n * ]\n * }\n * ```\n * Usage:\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell'\n * Command.create('run-git-commit', ['commit', '-m', 'the commit message'])\n * ```\n *\n * Trying to execute any API with a program not configured on the scope results in a promise rejection due to denied access.\n *\n * @module\n */\n/**\n * @since 2.0.0\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nclass EventEmitter {\n constructor() {\n /** @ignore */\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-explicit-any\n this.eventListeners = Object.create(null);\n }\n /**\n * Alias for `emitter.on(eventName, listener)`.\n *\n * @since 2.0.0\n */\n addListener(eventName, listener) {\n return this.on(eventName, listener);\n }\n /**\n * Alias for `emitter.off(eventName, listener)`.\n *\n * @since 2.0.0\n */\n removeListener(eventName, listener) {\n return this.off(eventName, listener);\n }\n /**\n * Adds the `listener` function to the end of the listeners array for the\n * event named `eventName`. No checks are made to see if the `listener` has\n * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple\n * times.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n on(eventName, listener) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName].push(listener);\n }\n else {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName] = [listener];\n }\n return this;\n }\n /**\n * Adds a **one-time**`listener` function for the event named `eventName`. The\n * next time `eventName` is triggered, this listener is removed and then invoked.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n once(eventName, listener) {\n const wrapper = (arg) => {\n this.removeListener(eventName, wrapper);\n listener(arg);\n };\n return this.addListener(eventName, wrapper);\n }\n /**\n * Removes the all specified listener from the listener array for the event eventName\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n off(eventName, listener) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName] = this.eventListeners[eventName].filter((l) => l !== listener);\n }\n return this;\n }\n /**\n * Removes all listeners, or those of the specified eventName.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n removeAllListeners(event) {\n if (event) {\n // eslint-disable-next-line security/detect-object-injection\n delete this.eventListeners[event];\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n this.eventListeners = Object.create(null);\n }\n return this;\n }\n /**\n * @ignore\n * Synchronously calls each of the listeners registered for the event named`eventName`, in the order they were registered, passing the supplied arguments\n * to each.\n *\n * @returns `true` if the event had listeners, `false` otherwise.\n *\n * @since 2.0.0\n */\n emit(eventName, arg) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n const listeners = this.eventListeners[eventName];\n for (const listener of listeners)\n listener(arg);\n return true;\n }\n return false;\n }\n /**\n * Returns the number of listeners listening to the event named `eventName`.\n *\n * @since 2.0.0\n */\n listenerCount(eventName) {\n if (eventName in this.eventListeners)\n // eslint-disable-next-line security/detect-object-injection\n return this.eventListeners[eventName].length;\n return 0;\n }\n /**\n * Adds the `listener` function to the _beginning_ of the listeners array for the\n * event named `eventName`. No checks are made to see if the `listener` has\n * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple\n * times.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n prependListener(eventName, listener) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName].unshift(listener);\n }\n else {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName] = [listener];\n }\n return this;\n }\n /**\n * Adds a **one-time**`listener` function for the event named `eventName` to the_beginning_ of the listeners array. The next time `eventName` is triggered, this\n * listener is removed, and then invoked.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n prependOnceListener(eventName, listener) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const wrapper = (arg) => {\n this.removeListener(eventName, wrapper);\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n listener(arg);\n };\n return this.prependListener(eventName, wrapper);\n }\n}\n/**\n * @since 2.0.0\n */\nclass Child {\n constructor(pid) {\n this.pid = pid;\n }\n /**\n * Writes `data` to the `stdin`.\n *\n * @param data The message to write, either a string or a byte array.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.create('node');\n * const child = await command.spawn();\n * await child.write('message');\n * await child.write([0, 1, 2, 3, 4, 5]);\n * ```\n *\n * @returns A promise indicating the success or failure of the operation.\n *\n * @since 2.0.0\n */\n async write(data) {\n await invoke('plugin:shell|stdin_write', {\n pid: this.pid,\n buffer: data\n });\n }\n /**\n * Kills the child process.\n *\n * @returns A promise indicating the success or failure of the operation.\n *\n * @since 2.0.0\n */\n async kill() {\n await invoke('plugin:shell|kill', {\n cmd: 'killChild',\n pid: this.pid\n });\n }\n}\n/**\n * The entry point for spawning child processes.\n * It emits the `close` and `error` events.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.create('node');\n * command.on('close', data => {\n * console.log(`command finished with code ${data.code} and signal ${data.signal}`)\n * });\n * command.on('error', error => console.error(`command error: \"${error}\"`));\n * command.stdout.on('data', line => console.log(`command stdout: \"${line}\"`));\n * command.stderr.on('data', line => console.log(`command stderr: \"${line}\"`));\n *\n * const child = await command.spawn();\n * console.log('pid:', child.pid);\n * ```\n *\n * @since 2.0.0\n *\n */\nclass Command extends EventEmitter {\n /**\n * @ignore\n * Creates a new `Command` instance.\n *\n * @param program The program name to execute.\n * It must be configured in your project's capabilities.\n * @param args Program arguments.\n * @param options Spawn options.\n */\n constructor(program, args = [], options) {\n super();\n /** Event emitter for the `stdout`. Emits the `data` event. */\n this.stdout = new EventEmitter();\n /** Event emitter for the `stderr`. Emits the `data` event. */\n this.stderr = new EventEmitter();\n this.program = program;\n this.args = typeof args === 'string' ? [args] : args;\n this.options = options ?? {};\n }\n /**\n * Creates a command to execute the given program.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.create('my-app', ['run', 'tauri']);\n * const output = await command.execute();\n * ```\n *\n * @param program The program to execute.\n * It must be configured in your project's capabilities.\n */\n static create(program, args = [], options) {\n return new Command(program, args, options);\n }\n /**\n * Creates a command to execute the given sidecar program.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.sidecar('my-sidecar');\n * const output = await command.execute();\n * ```\n *\n * @param program The program to execute.\n * It must be configured in your project's capabilities.\n */\n static sidecar(program, args = [], options) {\n const instance = new Command(program, args, options);\n instance.options.sidecar = true;\n return instance;\n }\n /**\n * Executes the command as a child process, returning a handle to it.\n *\n * @returns A promise resolving to the child process handle.\n *\n * @since 2.0.0\n */\n async spawn() {\n const program = this.program;\n const args = this.args;\n const options = this.options;\n if (typeof args === 'object') {\n Object.freeze(args);\n }\n const onEvent = new Channel();\n onEvent.onmessage = (event) => {\n switch (event.event) {\n case 'Error':\n this.emit('error', event.payload);\n break;\n case 'Terminated':\n this.emit('close', event.payload);\n break;\n case 'Stdout':\n this.stdout.emit('data', event.payload);\n break;\n case 'Stderr':\n this.stderr.emit('data', event.payload);\n break;\n }\n };\n return await invoke('plugin:shell|spawn', {\n program,\n args,\n options,\n onEvent\n }).then((pid) => new Child(pid));\n }\n /**\n * Executes the command as a child process, waiting for it to finish and collecting all of its output.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const output = await Command.create('echo', 'message').execute();\n * assert(output.code === 0);\n * assert(output.signal === null);\n * assert(output.stdout === 'message');\n * assert(output.stderr === '');\n * ```\n *\n * @returns A promise resolving to the child process output.\n *\n * @since 2.0.0\n */\n async execute() {\n const program = this.program;\n const args = this.args;\n const options = this.options;\n if (typeof args === 'object') {\n Object.freeze(args);\n }\n return await invoke('plugin:shell|execute', {\n program,\n args,\n options\n });\n }\n}\n/**\n * Opens a path or URL with the system's default app,\n * or the one specified with `openWith`.\n *\n * The `openWith` value must be one of `firefox`, `google chrome`, `chromium` `safari`,\n * `open`, `start`, `xdg-open`, `gio`, `gnome-open`, `kde-open` or `wslview`.\n *\n * @example\n * ```typescript\n * import { open } from '@tauri-apps/plugin-shell';\n * // opens the given URL on the default browser:\n * await open('https://github.com/tauri-apps/tauri');\n * // opens the given URL using `firefox`:\n * await open('https://github.com/tauri-apps/tauri', 'firefox');\n * // opens a file using the default program:\n * await open('/path/to/file');\n * ```\n *\n * @param path The path or URL to open.\n * This value is matched against the string regex defined on `tauri.conf.json > plugins > shell > open`,\n * which defaults to `^((mailto:\\w+)|(tel:\\w+)|(https?://\\w+)).+`.\n * @param openWith The app to open the file or URL with.\n * Defaults to the system default application for the specified path type.\n *\n * @since 2.0.0\n */\nasync function open(path, openWith) {\n await invoke('plugin:shell|open', {\n path,\n with: openWith\n });\n}\n\nexport { Child, Command, EventEmitter, open };\n"],"x_google_ignoreList":[0],"mappings":";;AAsbA,eAAe,EAAK,GAAM,GAAU;CAChC,MAAM,EAAO,qBAAqB;EAC9B;EACA,MAAM;CACV,CAAC;AACL"}
1
+ {"version":3,"file":"dist-js-COWeIZHq.js","names":[],"sources":["../../../node_modules/.pnpm/@tauri-apps+plugin-shell@2.3.5/node_modules/@tauri-apps/plugin-shell/dist-js/index.js"],"sourcesContent":["import { invoke, Channel } from '@tauri-apps/api/core';\n\n// Copyright 2019-2023 Tauri Programme within The Commons Conservancy\n// SPDX-License-Identifier: Apache-2.0\n// SPDX-License-Identifier: MIT\n/**\n * Access the system shell.\n * Allows you to spawn child processes and manage files and URLs using their default application.\n *\n * ## Security\n *\n * This API has a scope configuration that forces you to restrict the programs and arguments that can be used.\n *\n * ### Restricting access to the {@link open | `open`} API\n *\n * On the configuration object, `open: true` means that the {@link open} API can be used with any URL,\n * as the argument is validated with the `^((mailto:\\w+)|(tel:\\w+)|(https?://\\w+)).+` regex.\n * You can change that regex by changing the boolean value to a string, e.g. `open: ^https://github.com/`.\n *\n * ### Restricting access to the {@link Command | `Command`} APIs\n *\n * The plugin permissions object has a `scope` field that defines an array of CLIs that can be used.\n * Each CLI is a configuration object `{ name: string, cmd: string, sidecar?: bool, args?: boolean | Arg[] }`.\n *\n * - `name`: the unique identifier of the command, passed to the {@link Command.create | Command.create function}.\n * If it's a sidecar, this must be the value defined on `tauri.conf.json > bundle > externalBin`.\n * - `cmd`: the program that is executed on this configuration. If it's a sidecar, this value is ignored.\n * - `sidecar`: whether the object configures a sidecar or a system program.\n * - `args`: the arguments that can be passed to the program. By default no arguments are allowed.\n * - `true` means that any argument list is allowed.\n * - `false` means that no arguments are allowed.\n * - otherwise an array can be configured. Each item is either a string representing the fixed argument value\n * or a `{ validator: string }` that defines a regex validating the argument value.\n *\n * #### Example scope configuration\n *\n * CLI: `git commit -m \"the commit message\"`\n *\n * Capability:\n * ```json\n * {\n * \"permissions\": [\n * {\n * \"identifier\": \"shell:allow-execute\",\n * \"allow\": [\n * {\n * \"name\": \"run-git-commit\",\n * \"cmd\": \"git\",\n * \"args\": [\"commit\", \"-m\", { \"validator\": \"\\\\S+\" }]\n * }\n * ]\n * }\n * ]\n * }\n * ```\n * Usage:\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell'\n * Command.create('run-git-commit', ['commit', '-m', 'the commit message'])\n * ```\n *\n * Trying to execute any API with a program not configured on the scope results in a promise rejection due to denied access.\n *\n * @module\n */\n/**\n * @since 2.0.0\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nclass EventEmitter {\n constructor() {\n /** @ignore */\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-explicit-any\n this.eventListeners = Object.create(null);\n }\n /**\n * Alias for `emitter.on(eventName, listener)`.\n *\n * @since 2.0.0\n */\n addListener(eventName, listener) {\n return this.on(eventName, listener);\n }\n /**\n * Alias for `emitter.off(eventName, listener)`.\n *\n * @since 2.0.0\n */\n removeListener(eventName, listener) {\n return this.off(eventName, listener);\n }\n /**\n * Adds the `listener` function to the end of the listeners array for the\n * event named `eventName`. No checks are made to see if the `listener` has\n * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple\n * times.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n on(eventName, listener) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName].push(listener);\n }\n else {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName] = [listener];\n }\n return this;\n }\n /**\n * Adds a **one-time**`listener` function for the event named `eventName`. The\n * next time `eventName` is triggered, this listener is removed and then invoked.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n once(eventName, listener) {\n const wrapper = (arg) => {\n this.removeListener(eventName, wrapper);\n listener(arg);\n };\n return this.addListener(eventName, wrapper);\n }\n /**\n * Removes the all specified listener from the listener array for the event eventName\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n off(eventName, listener) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName] = this.eventListeners[eventName].filter((l) => l !== listener);\n }\n return this;\n }\n /**\n * Removes all listeners, or those of the specified eventName.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n removeAllListeners(event) {\n if (event) {\n // eslint-disable-next-line security/detect-object-injection\n delete this.eventListeners[event];\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n this.eventListeners = Object.create(null);\n }\n return this;\n }\n /**\n * @ignore\n * Synchronously calls each of the listeners registered for the event named`eventName`, in the order they were registered, passing the supplied arguments\n * to each.\n *\n * @returns `true` if the event had listeners, `false` otherwise.\n *\n * @since 2.0.0\n */\n emit(eventName, arg) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n const listeners = this.eventListeners[eventName];\n for (const listener of listeners)\n listener(arg);\n return true;\n }\n return false;\n }\n /**\n * Returns the number of listeners listening to the event named `eventName`.\n *\n * @since 2.0.0\n */\n listenerCount(eventName) {\n if (eventName in this.eventListeners)\n // eslint-disable-next-line security/detect-object-injection\n return this.eventListeners[eventName].length;\n return 0;\n }\n /**\n * Adds the `listener` function to the _beginning_ of the listeners array for the\n * event named `eventName`. No checks are made to see if the `listener` has\n * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple\n * times.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n prependListener(eventName, listener) {\n if (eventName in this.eventListeners) {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName].unshift(listener);\n }\n else {\n // eslint-disable-next-line security/detect-object-injection\n this.eventListeners[eventName] = [listener];\n }\n return this;\n }\n /**\n * Adds a **one-time**`listener` function for the event named `eventName` to the_beginning_ of the listeners array. The next time `eventName` is triggered, this\n * listener is removed, and then invoked.\n *\n * Returns a reference to the `EventEmitter`, so that calls can be chained.\n *\n * @since 2.0.0\n */\n prependOnceListener(eventName, listener) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n const wrapper = (arg) => {\n this.removeListener(eventName, wrapper);\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n listener(arg);\n };\n return this.prependListener(eventName, wrapper);\n }\n}\n/**\n * @since 2.0.0\n */\nclass Child {\n constructor(pid) {\n this.pid = pid;\n }\n /**\n * Writes `data` to the `stdin`.\n *\n * @param data The message to write, either a string or a byte array.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.create('node');\n * const child = await command.spawn();\n * await child.write('message');\n * await child.write([0, 1, 2, 3, 4, 5]);\n * ```\n *\n * @returns A promise indicating the success or failure of the operation.\n *\n * @since 2.0.0\n */\n async write(data) {\n await invoke('plugin:shell|stdin_write', {\n pid: this.pid,\n buffer: data\n });\n }\n /**\n * Kills the child process.\n *\n * @returns A promise indicating the success or failure of the operation.\n *\n * @since 2.0.0\n */\n async kill() {\n await invoke('plugin:shell|kill', {\n cmd: 'killChild',\n pid: this.pid\n });\n }\n}\n/**\n * The entry point for spawning child processes.\n * It emits the `close` and `error` events.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.create('node');\n * command.on('close', data => {\n * console.log(`command finished with code ${data.code} and signal ${data.signal}`)\n * });\n * command.on('error', error => console.error(`command error: \"${error}\"`));\n * command.stdout.on('data', line => console.log(`command stdout: \"${line}\"`));\n * command.stderr.on('data', line => console.log(`command stderr: \"${line}\"`));\n *\n * const child = await command.spawn();\n * console.log('pid:', child.pid);\n * ```\n *\n * @since 2.0.0\n *\n */\nclass Command extends EventEmitter {\n /**\n * @ignore\n * Creates a new `Command` instance.\n *\n * @param program The program name to execute.\n * It must be configured in your project's capabilities.\n * @param args Program arguments.\n * @param options Spawn options.\n */\n constructor(program, args = [], options) {\n super();\n /** Event emitter for the `stdout`. Emits the `data` event. */\n this.stdout = new EventEmitter();\n /** Event emitter for the `stderr`. Emits the `data` event. */\n this.stderr = new EventEmitter();\n this.program = program;\n this.args = typeof args === 'string' ? [args] : args;\n this.options = options ?? {};\n }\n /**\n * Creates a command to execute the given program.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.create('my-app', ['run', 'tauri']);\n * const output = await command.execute();\n * ```\n *\n * @param program The program to execute.\n * It must be configured in your project's capabilities.\n */\n static create(program, args = [], options) {\n return new Command(program, args, options);\n }\n /**\n * Creates a command to execute the given sidecar program.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const command = Command.sidecar('my-sidecar');\n * const output = await command.execute();\n * ```\n *\n * @param program The program to execute.\n * It must be configured in your project's capabilities.\n */\n static sidecar(program, args = [], options) {\n const instance = new Command(program, args, options);\n instance.options.sidecar = true;\n return instance;\n }\n /**\n * Executes the command as a child process, returning a handle to it.\n *\n * @returns A promise resolving to the child process handle.\n *\n * @since 2.0.0\n */\n async spawn() {\n const program = this.program;\n const args = this.args;\n const options = this.options;\n if (typeof args === 'object') {\n Object.freeze(args);\n }\n const onEvent = new Channel();\n onEvent.onmessage = (event) => {\n switch (event.event) {\n case 'Error':\n this.emit('error', event.payload);\n break;\n case 'Terminated':\n this.emit('close', event.payload);\n break;\n case 'Stdout':\n this.stdout.emit('data', event.payload);\n break;\n case 'Stderr':\n this.stderr.emit('data', event.payload);\n break;\n }\n };\n return await invoke('plugin:shell|spawn', {\n program,\n args,\n options,\n onEvent\n }).then((pid) => new Child(pid));\n }\n /**\n * Executes the command as a child process, waiting for it to finish and collecting all of its output.\n * @example\n * ```typescript\n * import { Command } from '@tauri-apps/plugin-shell';\n * const output = await Command.create('echo', 'message').execute();\n * assert(output.code === 0);\n * assert(output.signal === null);\n * assert(output.stdout === 'message');\n * assert(output.stderr === '');\n * ```\n *\n * @returns A promise resolving to the child process output.\n *\n * @since 2.0.0\n */\n async execute() {\n const program = this.program;\n const args = this.args;\n const options = this.options;\n if (typeof args === 'object') {\n Object.freeze(args);\n }\n return await invoke('plugin:shell|execute', {\n program,\n args,\n options\n });\n }\n}\n/**\n * Opens a path or URL with the system's default app,\n * or the one specified with `openWith`.\n *\n * The `openWith` value must be one of `firefox`, `google chrome`, `chromium` `safari`,\n * `open`, `start`, `xdg-open`, `gio`, `gnome-open`, `kde-open` or `wslview`.\n *\n * @example\n * ```typescript\n * import { open } from '@tauri-apps/plugin-shell';\n * // opens the given URL on the default browser:\n * await open('https://github.com/tauri-apps/tauri');\n * // opens the given URL using `firefox`:\n * await open('https://github.com/tauri-apps/tauri', 'firefox');\n * // opens a file using the default program:\n * await open('/path/to/file');\n * ```\n *\n * @param path The path or URL to open.\n * This value is matched against the string regex defined on `tauri.conf.json > plugins > shell > open`,\n * which defaults to `^((mailto:\\w+)|(tel:\\w+)|(https?://\\w+)).+`.\n * @param openWith The app to open the file or URL with.\n * Defaults to the system default application for the specified path type.\n *\n * @since 2.0.0\n */\nasync function open(path, openWith) {\n await invoke('plugin:shell|open', {\n path,\n with: openWith\n });\n}\n\nexport { Child, Command, EventEmitter, open };\n"],"x_google_ignoreList":[0],"mappings":";;AAsbA,eAAe,EAAK,GAAM,GAAU;CAChC,MAAM,EAAO,qBAAqB;EAC9B;EACA,MAAM;CACV,CAAC;AACL"}
package/dist/index.d.ts CHANGED
@@ -32,7 +32,7 @@ declare const __VLS_export$27: <T extends PromiseLike<unknown>>(__VLS_props: Non
32
32
  };
33
33
  emit: {};
34
34
  }>) => import("vue").VNode & {
35
- __ctx?: Awaited<typeof __VLS_setup>;
35
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
36
36
  };
37
37
  declare const _default$1: typeof __VLS_export$27;
38
38
  type __VLS_PrettifyLocal$9<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -112,20 +112,20 @@ type __VLS_WithSlots$5<T, S> = T & {
112
112
  };
113
113
  //#endregion
114
114
  //#region lib/components/config-provider/context.d.ts
115
- type DcConfigTheme = 'dark' | 'light';
116
- type DcConfigStyle = CSSProperties & Record<`--${string}`, number | string>;
117
- interface DcConfigProviderProps {
115
+ export type DcConfigTheme = 'dark' | 'light';
116
+ export type DcConfigStyle = CSSProperties & Record<`--${string}`, number | string>;
117
+ export interface DcConfigProviderProps {
118
118
  locale?: string;
119
119
  style?: DcConfigStyle;
120
120
  theme?: DcConfigTheme;
121
121
  }
122
- interface DcConfigContext {
122
+ export interface DcConfigContext {
123
123
  locale: ComputedRef<string | undefined>;
124
124
  style: ComputedRef<Readonly<DcConfigStyle>>;
125
125
  theme: ComputedRef<DcConfigTheme | undefined>;
126
126
  }
127
- declare const dcConfigInjectionKey: InjectionKey<DcConfigContext>;
128
- declare const useDcConfig: () => DcConfigContext;
127
+ export declare const dcConfigInjectionKey: InjectionKey<DcConfigContext>;
128
+ export declare const useDcConfig: () => DcConfigContext;
129
129
  //#endregion
130
130
  //#region lib/components/DcConfigProvider.vue.d.ts
131
131
  type __VLS_Slots$4 = {
@@ -146,17 +146,17 @@ type __VLS_WithSlots$4<T, S> = T & {
146
146
  * isShow为真时会阻止替换路由返回。
147
147
  * 同时还会自动处理force路由
148
148
  */
149
- declare const usePreventBack: (isShow: Ref<boolean>) => () => void;
149
+ export declare const usePreventBack: (isShow: Ref<boolean>) => () => void;
150
150
  //#endregion
151
151
  //#region lib/utils/type.d.ts
152
- type StyleProps = {
152
+ export type StyleProps = {
153
153
  style?: StyleValue;
154
154
  class?: any;
155
155
  };
156
- declare function cn(...args: any[]): string;
156
+ export declare function cn(...args: any[]): string;
157
157
  //#endregion
158
158
  //#region lib/utils/index.d.ts
159
- type RawSource<T> = {
159
+ export type RawSource<T> = {
160
160
  type: 'query';
161
161
  value: UseQueryReturn<T[]>;
162
162
  next?: () => any;
@@ -173,7 +173,7 @@ type RawSource<T> = {
173
173
  refresh?: () => any;
174
174
  next?: () => any;
175
175
  };
176
- interface UnionSource<T> {
176
+ export interface UnionSource<T> {
177
177
  data: T[];
178
178
  isDone: boolean;
179
179
  isLoading: boolean;
@@ -182,7 +182,7 @@ interface UnionSource<T> {
182
182
  refresh(): Promise<any>;
183
183
  next(): Promise<any>;
184
184
  }
185
- declare const toUnionSource: <T>(source: RawSource<T>) => UnionSource<T>;
185
+ export declare const toUnionSource: <T>(source: RawSource<T>) => UnionSource<T>;
186
186
  //#endregion
187
187
  //#region lib/components/DcContent.vue.d.ts
188
188
  declare const __VLS_export$23: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$8<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
@@ -223,7 +223,7 @@ declare const __VLS_export$23: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS
223
223
  };
224
224
  emit: {};
225
225
  }>) => import("vue").VNode & {
226
- __ctx?: Awaited<typeof __VLS_setup>;
226
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
227
227
  };
228
228
  declare const _default$5: typeof __VLS_export$23;
229
229
  type __VLS_PrettifyLocal$8<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -988,12 +988,12 @@ declare const __VLS_base$3: import("vue").DefineComponent<__VLS_Props$14, {
988
988
  previewDisabled: boolean;
989
989
  }> | null>>;
990
990
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
991
- click: (e: Event) => any;
992
991
  error: () => any;
992
+ click: (e: Event) => any;
993
993
  load: (...args: any[]) => any;
994
994
  }, string, import("vue").PublicProps, Readonly<__VLS_Props$14> & Readonly<{
995
- onClick?: ((e: Event) => any) | undefined;
996
995
  onError?: (() => any) | undefined;
996
+ onClick?: ((e: Event) => any) | undefined;
997
997
  onLoad?: ((...args: any[]) => any) | undefined;
998
998
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
999
999
  declare const __VLS_export$22: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
@@ -1042,7 +1042,7 @@ declare const __VLS_export$20: <T extends object>(__VLS_props: NonNullable<Await
1042
1042
  };
1043
1043
  emit: {};
1044
1044
  }>) => import("vue").VNode & {
1045
- __ctx?: Awaited<typeof __VLS_setup>;
1045
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
1046
1046
  };
1047
1047
  declare const _default$19: typeof __VLS_export$20;
1048
1048
  type __VLS_PrettifyLocal$7<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2385,7 +2385,7 @@ declare const __VLS_export$16: <T extends DataState<any, any, any>>(__VLS_props:
2385
2385
  };
2386
2386
  emit: {};
2387
2387
  }>) => import("vue").VNode & {
2388
- __ctx?: Awaited<typeof __VLS_setup>;
2388
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2389
2389
  };
2390
2390
  declare const _default$23: typeof __VLS_export$16;
2391
2391
  type __VLS_PrettifyLocal$6<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2424,7 +2424,7 @@ declare const __VLS_export$15: <T extends {
2424
2424
  };
2425
2425
  emit: (event: "update:modelValue", value: string | undefined) => void;
2426
2426
  }>) => import("vue").VNode & {
2427
- __ctx?: Awaited<typeof __VLS_setup>;
2427
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2428
2428
  };
2429
2429
  declare const _default$24: typeof __VLS_export$15;
2430
2430
  type __VLS_PrettifyLocal$5<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2487,7 +2487,7 @@ declare const __VLS_export$12: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS
2487
2487
  };
2488
2488
  emit: {};
2489
2489
  }>) => import("vue").VNode & {
2490
- __ctx?: Awaited<typeof __VLS_setup>;
2490
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2491
2491
  };
2492
2492
  declare const _default$27: typeof __VLS_export$12;
2493
2493
  type __VLS_PrettifyLocal$4<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2521,7 +2521,7 @@ declare const __VLS_export$11: <T extends object>(__VLS_props: NonNullable<Await
2521
2521
  };
2522
2522
  emit: {};
2523
2523
  }>) => import("vue").VNode & {
2524
- __ctx?: Awaited<typeof __VLS_setup>;
2524
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2525
2525
  };
2526
2526
  declare const _default$28: typeof __VLS_export$11;
2527
2527
  type __VLS_PrettifyLocal$3<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2532,15 +2532,15 @@ type ComponentProps<T> = T extends (new (...args: any) => {
2532
2532
  }) ? NonNullable<P> : T extends ((props: infer P, ...args: any) => any) ? P : {};
2533
2533
  //#endregion
2534
2534
  //#region lib/environment/registry.d.ts
2535
- interface GlobalEnvironments extends Record<string, Component> {}
2536
- type EnvironmentKey = Extract<keyof GlobalEnvironments, string>;
2537
- interface EnvironmentRegistration<TKey extends EnvironmentKey = EnvironmentKey, TComponent extends GlobalEnvironments[TKey] = GlobalEnvironments[TKey]> {
2535
+ export interface GlobalEnvironments extends Record<string, Component> {}
2536
+ export type EnvironmentKey = Extract<keyof GlobalEnvironments, string>;
2537
+ export interface EnvironmentRegistration<TKey extends EnvironmentKey = EnvironmentKey, TComponent extends GlobalEnvironments[TKey] = GlobalEnvironments[TKey]> {
2538
2538
  readonly component: Raw<TComponent>;
2539
2539
  readonly condition: (args: ComponentProps<TComponent>) => boolean | Promise<boolean>;
2540
2540
  readonly id: symbol;
2541
2541
  readonly key: TKey;
2542
2542
  }
2543
- declare class EnvironmentRegistry {
2543
+ export declare class EnvironmentRegistry {
2544
2544
  private readonly entries;
2545
2545
  private readonly owners;
2546
2546
  register<TKey extends EnvironmentKey, TComponent extends GlobalEnvironments[TKey] = GlobalEnvironments[TKey]>(key: TKey, component: Raw<TComponent>, condition?: EnvironmentRegistration<TKey, TComponent>['condition'], owner?: string | undefined): () => void;
@@ -2548,8 +2548,8 @@ declare class EnvironmentRegistry {
2548
2548
  removeOwner(owner: string): void;
2549
2549
  withOwner<T>(owner: string, action: () => Promise<T>): Promise<T>;
2550
2550
  }
2551
- declare const environmentRegistry: EnvironmentRegistry;
2552
- declare const addEnvironment: <TKey extends EnvironmentKey, TComponent extends GlobalEnvironments[TKey] = GlobalEnvironments[TKey]>(key: TKey, component: Raw<TComponent>, condition?: EnvironmentRegistration<TKey, TComponent>["condition"], owner?: string) => () => void;
2551
+ export declare const environmentRegistry: EnvironmentRegistry;
2552
+ export declare const addEnvironment: <TKey extends EnvironmentKey, TComponent extends GlobalEnvironments[TKey] = GlobalEnvironments[TKey]>(key: TKey, component: Raw<TComponent>, condition?: EnvironmentRegistration<TKey, TComponent>["condition"], owner?: string) => () => void;
2553
2553
  //#endregion
2554
2554
  //#region lib/environment/DcEnvironment.vue.d.ts
2555
2555
  declare const __VLS_export$10: <TKey extends EnvironmentKey, TComponent extends GlobalEnvironments[TKey] = GlobalEnvironments[TKey]>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
@@ -2564,7 +2564,7 @@ declare const __VLS_export$10: <TKey extends EnvironmentKey, TComponent extends
2564
2564
  slots: {};
2565
2565
  emit: {};
2566
2566
  }>) => import("vue").VNode & {
2567
- __ctx?: Awaited<typeof __VLS_setup>;
2567
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2568
2568
  };
2569
2569
  declare const _default$6: typeof __VLS_export$10;
2570
2570
  type __VLS_PrettifyLocal$2<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2605,7 +2605,7 @@ declare const __VLS_export$9: <T extends FormConfigure, O extends (keyof T)[] =
2605
2605
  };
2606
2606
  emit: (event: "update:modelValue", value: FormResult<T>) => void;
2607
2607
  }>) => import("vue").VNode & {
2608
- __ctx?: Awaited<typeof __VLS_setup>;
2608
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2609
2609
  };
2610
2610
  declare const _default$7: typeof __VLS_export$9;
2611
2611
  type __VLS_PrettifyLocal$1<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2659,7 +2659,7 @@ declare const _default$10: typeof __VLS_export$6;
2659
2659
  declare const __VLS_export$5: <T extends FormSingleConfigure>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2660
2660
  props: import("vue").PublicProps & __VLS_PrettifyLocal<({
2661
2661
  config: T;
2662
- path: string;
2662
+ path: string | number | symbol;
2663
2663
  } & {
2664
2664
  modelValue: FormSingleResult<T>;
2665
2665
  }) & {
@@ -2672,7 +2672,7 @@ declare const __VLS_export$5: <T extends FormSingleConfigure>(__VLS_props: NonNu
2672
2672
  slots: {};
2673
2673
  emit: (event: "update:modelValue", value: FormSingleResult<T>) => void;
2674
2674
  }>) => import("vue").VNode & {
2675
- __ctx?: Awaited<typeof __VLS_setup>;
2675
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
2676
2676
  };
2677
2677
  declare const _default$11: typeof __VLS_export$5;
2678
2678
  type __VLS_PrettifyLocal<T> = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};
@@ -2759,31 +2759,31 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
2759
2759
  declare const _default$16: typeof __VLS_export;
2760
2760
  //#endregion
2761
2761
  //#region lib/components/form/functional.d.ts
2762
- declare const createForm: <T extends FormConfigure>(configs: T) => {
2762
+ export declare const createForm: <T extends FormConfigure>(configs: T) => {
2763
2763
  comp: import("vue/jsx-runtime").JSX.Element;
2764
2764
  data: Promise<FormResult<T>>;
2765
2765
  };
2766
2766
  //#endregion
2767
2767
  //#region lib/i18n.d.ts
2768
- type UiMessageKey = 'actions.retry' | 'actions.submit' | 'feedback.failed' | 'feedback.success' | 'form.pairs.keyPlaceholder' | 'form.pairs.valuePlaceholder' | 'image.retry' | 'status.loading' | 'status.networkError' | 'status.noResults' | 'status.unknownReason';
2769
- type UiMessageParams = Record<string, number | string>;
2770
- type UiMessageResolver = (key: UiMessageKey, params?: UiMessageParams) => string;
2771
- declare const configureUiI18n: (nextResolver?: UiMessageResolver) => void;
2772
- declare const translateUi: (key: UiMessageKey, params?: UiMessageParams) => string;
2768
+ export type UiMessageKey = 'actions.retry' | 'actions.submit' | 'feedback.failed' | 'feedback.success' | 'form.pairs.keyPlaceholder' | 'form.pairs.valuePlaceholder' | 'image.retry' | 'status.loading' | 'status.networkError' | 'status.noResults' | 'status.unknownReason';
2769
+ export type UiMessageParams = Record<string, number | string>;
2770
+ export type UiMessageResolver = (key: UiMessageKey, params?: UiMessageParams) => string;
2771
+ export declare const configureUiI18n: (nextResolver?: UiMessageResolver) => void;
2772
+ export declare const translateUi: (key: UiMessageKey, params?: UiMessageParams) => string;
2773
2773
  //#endregion
2774
2774
  //#region lib/message/download.d.ts
2775
- interface DownloadMessageProgress extends DownloadMessageLoading {
2775
+ export interface DownloadMessageProgress extends DownloadMessageLoading {
2776
2776
  /** 0~100 */ progress: number;
2777
2777
  }
2778
- interface DownloadMessageLoading {
2778
+ export interface DownloadMessageLoading {
2779
2779
  description: string;
2780
2780
  retryable: boolean;
2781
2781
  }
2782
- interface DownloadMessageBind {
2782
+ export interface DownloadMessageBind {
2783
2783
  createProgress<TResult>(title: string, fn: (ins: Reactive<DownloadMessageProgress>) => Promise<TResult>): Promise<TResult>;
2784
2784
  createLoading<TResult>(title: string, fn: (ins: Reactive<DownloadMessageLoading>) => Promise<TResult>): Promise<TResult>;
2785
2785
  }
2786
- declare const createDownloadMessage: <T>(title: string, bind: (method: DownloadMessageBind) => Promise<T>) => Promise<T>;
2786
+ export declare const createDownloadMessage: <T>(title: string, bind: (method: DownloadMessageBind) => Promise<T>) => Promise<T>;
2787
2787
  //#endregion
2788
2788
  //#region lib/message/loading.d.ts
2789
2789
  type LoadingMessageReactive = {
@@ -2800,7 +2800,7 @@ type LoadingBind = {
2800
2800
  <T extends PromiseLike<any>>(promise?: T, throwError?: true, successText?: string, failText?: string): Promise<Awaited<T>>;
2801
2801
  <T extends PromiseLike<any>>(promise: T | undefined, throwError: false, successText?: string, failText?: string): Promise<Awaited<T> | undefined>;
2802
2802
  };
2803
- type LoadingInstance = {
2803
+ export type LoadingInstance = {
2804
2804
  bind: LoadingBind;
2805
2805
  success(text?: string, delayTime?: number): Promise<void>;
2806
2806
  fail(text?: string, delayTime?: number): Promise<void>;
@@ -2809,7 +2809,7 @@ type LoadingInstance = {
2809
2809
  [Symbol.dispose](): void;
2810
2810
  instance: LoadingMessageReactive;
2811
2811
  };
2812
- declare const createLoadingMessage: (text?: MaybeRefOrGetter<string>, api?: LoadingMessageApi) => LoadingInstance;
2812
+ export declare const createLoadingMessage: (text?: MaybeRefOrGetter<string>, api?: LoadingMessageApi) => LoadingInstance;
2813
2813
  //#endregion
2814
- export { _default as DcAuthorIcon, _default$1 as DcAwait, _default$2 as DcCell, _default$3 as DcCellGroup, DcConfigContext, _default$4 as DcConfigProvider, DcConfigProviderProps, DcConfigStyle, DcConfigTheme, _default$5 as DcContent, _default$6 as DcEnvironment, _default$7 as DcForm, _default$8 as DcFormCheckbox, _default$9 as DcFormDate, _default$10 as DcFormDateRange, _default$11 as DcFormItem, _default$12 as DcFormNumber, _default$13 as DcFormPairs, _default$14 as DcFormRadio, _default$15 as DcFormString, _default$16 as DcFormSwitch, _default$17 as DcImage, _default$18 as DcImagedIcon, _default$19 as DcList, _default$20 as DcLoading, _default$21 as DcMarkdown, _default$22 as DcPullRefresh, _default$23 as DcState, _default$24 as DcTab, _default$25 as DcText, _default$26 as DcToggleIcon, _default$27 as DcVar, _default$28 as DcWaterfall, DownloadMessageBind, DownloadMessageLoading, DownloadMessageProgress, EnvironmentKey, EnvironmentRegistration, EnvironmentRegistry, GlobalEnvironments, LoadingInstance, RawSource, StyleProps, UiMessageKey, UiMessageParams, UiMessageResolver, UnionSource, addEnvironment, cn, configureUiI18n, createDownloadMessage, createForm, createLoadingMessage, dcConfigInjectionKey, environmentRegistry, toUnionSource, translateUi, useDcConfig, usePreventBack };
2814
+ export { _default as DcAuthorIcon, _default$1 as DcAwait, _default$2 as DcCell, _default$3 as DcCellGroup, _default$4 as DcConfigProvider, _default$5 as DcContent, _default$6 as DcEnvironment, _default$7 as DcForm, _default$8 as DcFormCheckbox, _default$9 as DcFormDate, _default$10 as DcFormDateRange, _default$11 as DcFormItem, _default$12 as DcFormNumber, _default$13 as DcFormPairs, _default$14 as DcFormRadio, _default$15 as DcFormString, _default$16 as DcFormSwitch, _default$17 as DcImage, _default$18 as DcImagedIcon, _default$19 as DcList, _default$20 as DcLoading, _default$21 as DcMarkdown, _default$22 as DcPullRefresh, _default$23 as DcState, _default$24 as DcTab, _default$25 as DcText, _default$26 as DcToggleIcon, _default$27 as DcVar, _default$28 as DcWaterfall };
2815
2815
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../lib/components/DcAuthorIcon.vue","../lib/components/DcAwait.vue","../lib/components/DcCell.vue","../lib/components/DcCellGroup.vue","../lib/components/config-provider/context.ts","../lib/components/DcConfigProvider.vue","../lib/utils/layout.ts","../lib/utils/type.ts","../lib/utils/index.ts","../lib/components/DcContent.vue","../lib/components/DcImage.vue","../lib/components/DcImagedIcon.vue","../lib/components/DcList.vue","../lib/components/DcLoading.vue","../../../node_modules/.pnpm/mdurl@2.1.0/node_modules/mdurl/lib/index.d.ts","../../../node_modules/.pnpm/uc.micro@3.0.0/node_modules/uc.micro/build/index.d.ts","../../../node_modules/.pnpm/linkify-it@6.1.0/node_modules/linkify-it/build/index.d.ts","../../../node_modules/.pnpm/markdown-it@15.0.0/node_modules/markdown-it/dist/markdown-it.d.mts","../lib/components/DcMarkdown/index.vue","../lib/components/DcPullRefresh.vue","../../../node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/types.d.ts","../lib/components/DcState.vue","../lib/components/DcTab.vue","../lib/components/DcText.vue","../lib/components/DcToggleIcon.vue","../lib/components/DcVar.vue","../lib/components/DcWaterfall.vue","../../../node_modules/.pnpm/vue-component-type-helpers@3.3.9/node_modules/vue-component-type-helpers/index.d.ts","../lib/environment/registry.ts","../lib/environment/DcEnvironment.vue","../lib/components/form/type.ts","../lib/components/form/components/DcForm.vue","../lib/components/form/components/DcFormCheckbox.vue","../lib/components/form/components/DcFormDate.vue","../lib/components/form/components/DcFormDateRange.vue","../lib/components/form/components/DcFormItem.vue","../lib/components/form/components/DcFormNumber.vue","../lib/components/form/components/DcFormPairs.vue","../lib/components/form/components/DcFormRadio.vue","../lib/components/form/components/DcFormString.vue","../lib/components/form/components/DcFormSwitch.vue","../lib/components/form/functional.tsx","../lib/i18n.ts","../lib/message/download.tsx","../lib/message/loading.tsx"],"x_google_ignoreList":[14,15,16,17,20,27],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../lib/components/DcAuthorIcon.vue","../lib/components/DcAwait.vue","../lib/components/DcCell.vue","../lib/components/DcCellGroup.vue","../lib/components/config-provider/context.ts","../lib/components/DcConfigProvider.vue","../lib/utils/layout.ts","../lib/utils/type.ts","../lib/utils/index.ts","../lib/components/DcContent.vue","../lib/components/DcImage.vue","../lib/components/DcImagedIcon.vue","../lib/components/DcList.vue","../lib/components/DcLoading.vue","../../../node_modules/.pnpm/mdurl@2.1.0/node_modules/mdurl/lib/index.d.ts","../../../node_modules/.pnpm/uc.micro@3.0.0/node_modules/uc.micro/build/index.d.ts","../../../node_modules/.pnpm/linkify-it@6.1.0/node_modules/linkify-it/build/index.d.ts","../../../node_modules/.pnpm/markdown-it@15.0.0/node_modules/markdown-it/dist/markdown-it.d.mts","../lib/components/DcMarkdown/index.vue","../lib/components/DcPullRefresh.vue","../../../node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/types.d.ts","../lib/components/DcState.vue","../lib/components/DcTab.vue","../lib/components/DcText.vue","../lib/components/DcToggleIcon.vue","../lib/components/DcVar.vue","../lib/components/DcWaterfall.vue","../../../node_modules/.pnpm/vue-component-type-helpers@3.3.9/node_modules/vue-component-type-helpers/index.d.ts","../lib/environment/registry.ts","../lib/environment/DcEnvironment.vue","../lib/components/form/type.ts","../lib/components/form/components/DcForm.vue","../lib/components/form/components/DcFormCheckbox.vue","../lib/components/form/components/DcFormDate.vue","../lib/components/form/components/DcFormDateRange.vue","../lib/components/form/components/DcFormItem.vue","../lib/components/form/components/DcFormNumber.vue","../lib/components/form/components/DcFormPairs.vue","../lib/components/form/components/DcFormRadio.vue","../lib/components/form/components/DcFormString.vue","../lib/components/form/components/DcFormSwitch.vue","../lib/components/form/functional.tsx","../lib/i18n.ts","../lib/message/download.tsx","../lib/message/loading.tsx"],"x_google_ignoreList":[14,15,16,17,20,27],"mappings":"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"}