obsidian-dev-utils 17.10.1 → 17.10.2-beta.10

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.
Files changed (257) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/dist/lib/Async.cjs +1 -1
  3. package/dist/lib/Async.mjs +154 -0
  4. package/dist/lib/Blob.cjs +1 -1
  5. package/dist/lib/Blob.mjs +81 -0
  6. package/dist/lib/CssClass.cjs +1 -1
  7. package/dist/lib/CssClass.mjs +32 -0
  8. package/dist/lib/Debug.cjs +1 -1
  9. package/dist/lib/Debug.mjs +137 -0
  10. package/dist/lib/DebugController.cjs +1 -1
  11. package/dist/lib/DebugController.mjs +8 -0
  12. package/dist/lib/Enum.cjs +1 -1
  13. package/dist/lib/Enum.mjs +26 -0
  14. package/dist/lib/Error.cjs +1 -1
  15. package/dist/lib/Error.mjs +82 -0
  16. package/dist/lib/Function.cjs +1 -1
  17. package/dist/lib/Function.mjs +28 -0
  18. package/dist/lib/HTMLElement.cjs +1 -1
  19. package/dist/lib/HTMLElement.mjs +65 -0
  20. package/dist/lib/Library.cjs +3 -3
  21. package/dist/lib/Library.mjs +16 -0
  22. package/dist/lib/Object.cjs +2 -2
  23. package/dist/lib/Object.d.ts +16 -0
  24. package/dist/lib/Object.mjs +273 -0
  25. package/dist/lib/Path.cjs +1 -1
  26. package/dist/lib/Path.mjs +76 -0
  27. package/dist/lib/RegExp.cjs +1 -1
  28. package/dist/lib/RegExp.mjs +23 -0
  29. package/dist/lib/String.cjs +1 -1
  30. package/dist/lib/String.mjs +119 -0
  31. package/dist/lib/Transformers/DateTransformer.cjs +71 -0
  32. package/dist/lib/Transformers/DateTransformer.d.ts +35 -0
  33. package/dist/lib/Transformers/DateTransformer.mjs +47 -0
  34. package/dist/lib/Transformers/DurationTransformer.cjs +71 -0
  35. package/dist/lib/Transformers/DurationTransformer.d.ts +34 -0
  36. package/dist/lib/Transformers/DurationTransformer.mjs +47 -0
  37. package/dist/lib/Transformers/GroupTransformer.cjs +118 -0
  38. package/dist/lib/Transformers/GroupTransformer.d.ts +65 -0
  39. package/dist/lib/Transformers/GroupTransformer.mjs +94 -0
  40. package/dist/lib/Transformers/SkipPrivatePropertyTransformer.cjs +69 -0
  41. package/dist/lib/Transformers/SkipPrivatePropertyTransformer.d.ts +32 -0
  42. package/dist/lib/Transformers/SkipPrivatePropertyTransformer.mjs +45 -0
  43. package/dist/lib/Transformers/Transformer.cjs +107 -0
  44. package/dist/lib/Transformers/Transformer.d.ts +67 -0
  45. package/dist/lib/Transformers/Transformer.mjs +83 -0
  46. package/dist/lib/Transformers/TypedTransformer.cjs +38 -0
  47. package/dist/lib/Transformers/TypedTransformer.d.ts +37 -0
  48. package/dist/lib/Transformers/TypedTransformer.mjs +14 -0
  49. package/dist/lib/ValueProvider.cjs +1 -1
  50. package/dist/lib/ValueProvider.mjs +20 -0
  51. package/dist/lib/codemirror/StateFieldSpec.cjs +1 -1
  52. package/dist/lib/codemirror/StateFieldSpec.mjs +8 -0
  53. package/dist/lib/index.cjs +2 -14
  54. package/dist/lib/index.d.ts +0 -4
  55. package/dist/lib/index.mjs +42 -0
  56. package/dist/lib/obsidian/App.cjs +1 -1
  57. package/dist/lib/obsidian/App.mjs +33 -0
  58. package/dist/lib/obsidian/AttachmentPath.cjs +1 -1
  59. package/dist/lib/obsidian/AttachmentPath.mjs +82 -0
  60. package/dist/lib/obsidian/Backlink.cjs +1 -1
  61. package/dist/lib/obsidian/Backlink.mjs +88 -0
  62. package/dist/lib/obsidian/Callout.cjs +1 -1
  63. package/dist/lib/obsidian/Callout.mjs +71 -0
  64. package/dist/lib/obsidian/Components/DateComponent.cjs +2 -2
  65. package/dist/lib/obsidian/Components/DateComponent.d.ts +1 -1
  66. package/dist/lib/obsidian/Components/DateComponent.mjs +43 -0
  67. package/dist/lib/obsidian/Components/DateTimeComponent.cjs +2 -2
  68. package/dist/lib/obsidian/Components/DateTimeComponent.d.ts +1 -1
  69. package/dist/lib/obsidian/Components/DateTimeComponent.mjs +43 -0
  70. package/dist/lib/obsidian/Components/EmailComponent.cjs +2 -2
  71. package/dist/lib/obsidian/Components/EmailComponent.d.ts +1 -1
  72. package/dist/lib/obsidian/Components/EmailComponent.mjs +32 -0
  73. package/dist/lib/obsidian/Components/FileComponent.cjs +2 -2
  74. package/dist/lib/obsidian/Components/FileComponent.d.ts +1 -1
  75. package/dist/lib/obsidian/Components/FileComponent.mjs +48 -0
  76. package/dist/lib/obsidian/Components/MonthComponent.cjs +2 -2
  77. package/dist/lib/obsidian/Components/MonthComponent.d.ts +1 -1
  78. package/dist/lib/obsidian/Components/MonthComponent.mjs +51 -0
  79. package/dist/lib/obsidian/Components/MultipleDropdownComponent.cjs +2 -2
  80. package/dist/lib/obsidian/Components/MultipleDropdownComponent.d.ts +1 -1
  81. package/dist/lib/obsidian/Components/MultipleDropdownComponent.mjs +88 -0
  82. package/dist/lib/obsidian/Components/MultipleEmailComponent.cjs +2 -2
  83. package/dist/lib/obsidian/Components/MultipleEmailComponent.d.ts +1 -1
  84. package/dist/lib/obsidian/Components/MultipleEmailComponent.mjs +42 -0
  85. package/dist/lib/obsidian/Components/MultipleFileComponent.cjs +2 -2
  86. package/dist/lib/obsidian/Components/MultipleFileComponent.d.ts +1 -1
  87. package/dist/lib/obsidian/Components/MultipleFileComponent.mjs +49 -0
  88. package/dist/lib/obsidian/Components/NumberComponent.cjs +2 -2
  89. package/dist/lib/obsidian/Components/NumberComponent.d.ts +1 -1
  90. package/dist/lib/obsidian/Components/NumberComponent.mjs +32 -0
  91. package/dist/lib/obsidian/Components/TimeComponent.cjs +2 -2
  92. package/dist/lib/obsidian/Components/TimeComponent.d.ts +1 -1
  93. package/dist/lib/obsidian/Components/TimeComponent.mjs +53 -0
  94. package/dist/lib/obsidian/Components/TypedRangeTextComponent.cjs +1 -1
  95. package/dist/lib/obsidian/Components/TypedRangeTextComponent.mjs +44 -0
  96. package/dist/lib/obsidian/Components/TypedTextComponent.cjs +1 -1
  97. package/dist/lib/obsidian/Components/TypedTextComponent.mjs +107 -0
  98. package/dist/lib/obsidian/Components/UrlComponent.cjs +2 -2
  99. package/dist/lib/obsidian/Components/UrlComponent.d.ts +1 -1
  100. package/dist/lib/obsidian/Components/UrlComponent.mjs +32 -0
  101. package/dist/lib/obsidian/Components/ValidatorComponent.cjs +1 -1
  102. package/dist/lib/obsidian/Components/ValidatorComponent.mjs +52 -0
  103. package/dist/lib/obsidian/Components/ValueComponentWithChangeTracking.cjs +1 -1
  104. package/dist/lib/obsidian/Components/ValueComponentWithChangeTracking.mjs +9 -0
  105. package/dist/lib/obsidian/Components/WeekComponent.cjs +2 -2
  106. package/dist/lib/obsidian/Components/WeekComponent.d.ts +1 -1
  107. package/dist/lib/obsidian/Components/WeekComponent.mjs +51 -0
  108. package/dist/lib/obsidian/Dataview.cjs +1 -1
  109. package/dist/lib/obsidian/Dataview.mjs +232 -0
  110. package/dist/lib/obsidian/DataviewLink.cjs +1 -1
  111. package/dist/lib/obsidian/DataviewLink.mjs +27 -0
  112. package/dist/lib/obsidian/FileChange.cjs +1 -1
  113. package/dist/lib/obsidian/FileChange.mjs +123 -0
  114. package/dist/lib/obsidian/FileManager.cjs +1 -1
  115. package/dist/lib/obsidian/FileManager.mjs +66 -0
  116. package/dist/lib/obsidian/FileSystem.cjs +1 -1
  117. package/dist/lib/obsidian/FileSystem.mjs +197 -0
  118. package/dist/lib/obsidian/Frontmatter.cjs +1 -1
  119. package/dist/lib/obsidian/Frontmatter.mjs +32 -0
  120. package/dist/lib/obsidian/Link.cjs +1 -1
  121. package/dist/lib/obsidian/Link.mjs +415 -0
  122. package/dist/lib/obsidian/Logger.cjs +1 -1
  123. package/dist/lib/obsidian/Logger.mjs +45 -0
  124. package/dist/lib/obsidian/Loop.cjs +1 -1
  125. package/dist/lib/obsidian/Loop.mjs +39 -0
  126. package/dist/lib/obsidian/Markdown.cjs +1 -1
  127. package/dist/lib/obsidian/Markdown.mjs +40 -0
  128. package/dist/lib/obsidian/MarkdownCodeBlockProcessor.cjs +1 -1
  129. package/dist/lib/obsidian/MarkdownCodeBlockProcessor.mjs +44 -0
  130. package/dist/lib/obsidian/MarkdownView.cjs +1 -1
  131. package/dist/lib/obsidian/MarkdownView.mjs +21 -0
  132. package/dist/lib/obsidian/MetadataCache.cjs +1 -1
  133. package/dist/lib/obsidian/MetadataCache.mjs +219 -0
  134. package/dist/lib/obsidian/Modals/Alert.cjs +1 -1
  135. package/dist/lib/obsidian/Modals/Alert.mjs +52 -0
  136. package/dist/lib/obsidian/Modals/Confirm.cjs +1 -1
  137. package/dist/lib/obsidian/Modals/Confirm.mjs +65 -0
  138. package/dist/lib/obsidian/Modals/Prompt.cjs +1 -1
  139. package/dist/lib/obsidian/Modals/Prompt.mjs +98 -0
  140. package/dist/lib/obsidian/Modals/SelectItem.cjs +1 -1
  141. package/dist/lib/obsidian/Modals/SelectItem.mjs +51 -0
  142. package/dist/lib/obsidian/ObsidianSettings.cjs +1 -1
  143. package/dist/lib/obsidian/ObsidianSettings.mjs +18 -0
  144. package/dist/lib/obsidian/Pdf.cjs +1 -1
  145. package/dist/lib/obsidian/Pdf.mjs +42 -0
  146. package/dist/lib/obsidian/Plugin/EmptySettings.cjs +1 -1
  147. package/dist/lib/obsidian/Plugin/EmptySettings.mjs +14 -0
  148. package/dist/lib/obsidian/Plugin/ObsidianPluginRepoPaths.cjs +3 -2
  149. package/dist/lib/obsidian/Plugin/ObsidianPluginRepoPaths.d.ts +2 -0
  150. package/dist/lib/obsidian/Plugin/ObsidianPluginRepoPaths.mjs +36 -0
  151. package/dist/lib/obsidian/Plugin/Plugin.cjs +1 -1
  152. package/dist/lib/obsidian/Plugin/Plugin.mjs +28 -0
  153. package/dist/lib/obsidian/Plugin/PluginBase.cjs +1 -1
  154. package/dist/lib/obsidian/Plugin/PluginBase.mjs +148 -0
  155. package/dist/lib/obsidian/Plugin/PluginContext.cjs +1 -1
  156. package/dist/lib/obsidian/Plugin/PluginContext.mjs +45 -0
  157. package/dist/lib/obsidian/Plugin/PluginId.cjs +1 -1
  158. package/dist/lib/obsidian/Plugin/PluginId.mjs +23 -0
  159. package/dist/lib/obsidian/Plugin/PluginSettingsBase.cjs +20 -10
  160. package/dist/lib/obsidian/Plugin/PluginSettingsBase.d.ts +2 -0
  161. package/dist/lib/obsidian/Plugin/PluginSettingsBase.mjs +69 -0
  162. package/dist/lib/obsidian/Plugin/PluginSettingsTabBase.cjs +2 -2
  163. package/dist/lib/obsidian/Plugin/PluginSettingsTabBase.d.ts +1 -1
  164. package/dist/lib/obsidian/Plugin/PluginSettingsTabBase.mjs +101 -0
  165. package/dist/lib/obsidian/Queue.cjs +1 -1
  166. package/dist/lib/obsidian/Queue.mjs +50 -0
  167. package/dist/lib/obsidian/Reference.cjs +1 -1
  168. package/dist/lib/obsidian/Reference.mjs +45 -0
  169. package/dist/lib/obsidian/RenameDeleteHandler.cjs +1 -1
  170. package/dist/lib/obsidian/RenameDeleteHandler.mjs +436 -0
  171. package/dist/lib/obsidian/ResourceUrl.cjs +1 -1
  172. package/dist/lib/obsidian/ResourceUrl.mjs +19 -0
  173. package/dist/lib/obsidian/SettingEx.cjs +1 -1
  174. package/dist/lib/obsidian/SettingEx.mjs +148 -0
  175. package/dist/lib/obsidian/Vault.cjs +1 -1
  176. package/dist/lib/obsidian/Vault.mjs +248 -0
  177. package/dist/lib/obsidian/VaultEx.cjs +1 -1
  178. package/dist/lib/obsidian/VaultEx.mjs +71 -0
  179. package/dist/lib/scripts/CliUtils.cjs +1 -1
  180. package/dist/lib/scripts/CliUtils.mjs +135 -0
  181. package/dist/lib/scripts/CodeGenerator.cjs +1 -1
  182. package/dist/lib/scripts/CodeGenerator.mjs +19 -0
  183. package/dist/lib/scripts/ESLint/ESLint.cjs +4 -3
  184. package/dist/lib/scripts/ESLint/ESLint.mjs +68 -0
  185. package/dist/lib/scripts/ESLint/eslint.config.cjs +1 -1
  186. package/dist/lib/scripts/ESLint/eslint.config.mjs +287 -0
  187. package/dist/lib/scripts/Exec.cjs +1 -1
  188. package/dist/lib/scripts/Exec.mjs +98 -0
  189. package/dist/lib/scripts/Fs.cjs +1 -1
  190. package/dist/lib/scripts/Fs.mjs +64 -0
  191. package/dist/lib/scripts/JSON.cjs +1 -1
  192. package/dist/lib/scripts/JSON.mjs +60 -0
  193. package/dist/lib/scripts/NodeModules.cjs +1 -1
  194. package/dist/lib/scripts/NodeModules.mjs +62 -0
  195. package/dist/lib/scripts/Npm.cjs +1 -1
  196. package/dist/lib/scripts/Npm.mjs +106 -0
  197. package/dist/lib/scripts/NpmPublish.cjs +1 -1
  198. package/dist/lib/scripts/NpmPublish.mjs +21 -0
  199. package/dist/lib/scripts/ObsidianDevUtilsRepoPaths.cjs +9 -2
  200. package/dist/lib/scripts/ObsidianDevUtilsRepoPaths.d.ts +14 -0
  201. package/dist/lib/scripts/ObsidianDevUtilsRepoPaths.mjs +47 -0
  202. package/dist/lib/scripts/Root.cjs +1 -1
  203. package/dist/lib/scripts/Root.mjs +66 -0
  204. package/dist/lib/scripts/build.cjs +1 -1
  205. package/dist/lib/scripts/build.mjs +60 -0
  206. package/dist/lib/scripts/cli.cjs +4 -3
  207. package/dist/lib/scripts/cli.mjs +65 -0
  208. package/dist/lib/scripts/esbuild/Dependency.cjs +4 -3
  209. package/dist/lib/scripts/esbuild/Dependency.mjs +95 -0
  210. package/dist/lib/scripts/esbuild/ObsidianPluginBuilder.cjs +1 -1
  211. package/dist/lib/scripts/esbuild/ObsidianPluginBuilder.mjs +149 -0
  212. package/dist/lib/scripts/esbuild/changeExtensionPlugin.cjs +67 -0
  213. package/dist/lib/scripts/esbuild/changeExtensionPlugin.d.ts +12 -0
  214. package/dist/lib/scripts/esbuild/changeExtensionPlugin.mjs +43 -0
  215. package/dist/lib/scripts/esbuild/copyToObsidianPluginsFolderPlugin.cjs +1 -1
  216. package/dist/lib/scripts/esbuild/copyToObsidianPluginsFolderPlugin.mjs +50 -0
  217. package/dist/lib/scripts/esbuild/fixEsmPlugin.cjs +1 -1
  218. package/dist/lib/scripts/esbuild/fixEsmPlugin.mjs +25 -0
  219. package/dist/lib/scripts/esbuild/fixSourceMapsPlugin.cjs +1 -1
  220. package/dist/lib/scripts/esbuild/fixSourceMapsPlugin.mjs +55 -0
  221. package/dist/lib/scripts/esbuild/preprocessPlugin.cjs +7 -6
  222. package/dist/lib/scripts/esbuild/preprocessPlugin.d.ts +2 -1
  223. package/dist/lib/scripts/esbuild/preprocessPlugin.mjs +113 -0
  224. package/dist/lib/scripts/esbuild/renameCssPlugin.cjs +1 -1
  225. package/dist/lib/scripts/esbuild/renameCssPlugin.mjs +31 -0
  226. package/dist/lib/scripts/esbuild/svelteWrapperPlugin.cjs +1 -1
  227. package/dist/lib/scripts/esbuild/svelteWrapperPlugin.mjs +41 -0
  228. package/dist/lib/scripts/format.cjs +4 -3
  229. package/dist/lib/scripts/format.mjs +41 -0
  230. package/dist/lib/scripts/spellcheck.cjs +1 -1
  231. package/dist/lib/scripts/spellcheck.mjs +15 -0
  232. package/dist/lib/scripts/version.cjs +7 -3
  233. package/dist/lib/scripts/version.mjs +365 -0
  234. package/dist/lib/url.cjs +1 -1
  235. package/dist/lib/url.mjs +25 -0
  236. package/dist/styles.css +6 -38
  237. package/package.json +163 -174
  238. package/dist/lib/@types.cjs +0 -24
  239. package/dist/lib/@types.d.ts +0 -20
  240. package/dist/lib/codemirror/index.cjs +0 -46
  241. package/dist/lib/codemirror/index.d.ts +0 -1
  242. package/dist/lib/obsidian/Components/index.cjs +0 -91
  243. package/dist/lib/obsidian/Components/index.d.ts +0 -16
  244. package/dist/lib/obsidian/Modals/index.cjs +0 -55
  245. package/dist/lib/obsidian/Modals/index.d.ts +0 -4
  246. package/dist/lib/obsidian/Plugin/index.cjs +0 -67
  247. package/dist/lib/obsidian/Plugin/index.d.ts +0 -8
  248. package/dist/lib/obsidian/index.cjs +0 -130
  249. package/dist/lib/obsidian/index.d.ts +0 -29
  250. package/dist/lib/scripts/ESLint/index.cjs +0 -49
  251. package/dist/lib/scripts/ESLint/index.d.ts +0 -2
  252. package/dist/lib/scripts/esbuild/index.cjs +0 -70
  253. package/dist/lib/scripts/esbuild/index.d.ts +0 -9
  254. package/dist/lib/scripts/esbuild/renameToCjsPlugin.cjs +0 -60
  255. package/dist/lib/scripts/esbuild/renameToCjsPlugin.d.ts +0 -14
  256. package/dist/lib/scripts/index.cjs +0 -94
  257. package/dist/lib/scripts/index.d.ts +0 -17
@@ -1,24 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __defProp = Object.defineProperty;
10
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
11
- var __getOwnPropNames = Object.getOwnPropertyNames;
12
- var __hasOwnProp = Object.prototype.hasOwnProperty;
13
- var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (let key of __getOwnPropNames(from))
16
- if (!__hasOwnProp.call(to, key) && key !== except)
17
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
18
- }
19
- return to;
20
- };
21
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
22
- var types_exports = {};
23
- module.exports = __toCommonJS(types_exports);
24
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vc3JjL0B0eXBlcy50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiLyoqXG4gKiBAcGFja2FnZURvY3VtZW50YXRpb24gXFxAdHlwZXNcbiAqIENvbnRhaW5zIHV0aWxpdHkgdHlwZXMgZm9yIHdvcmtpbmcgd2l0aCBUeXBlU2NyaXB0IGNsYXNzZXMgYW5kIHR5cGUgcHJvcGVydGllcy5cbiAqL1xuXG4vKipcbiAqIFJlcHJlc2VudHMgYSBjb25zdHJ1Y3RvciB0eXBlIGZvciBhIGdpdmVuIGNsYXNzIGBUYCB3aXRoIGFyZ3VtZW50cyBgQXJnc2AuXG4gKlxuICogQHR5cGVQYXJhbSBUeXBlIC0gVGhlIHR5cGUgb2YgdGhlIGluc3RhbmNlIGJlaW5nIGNvbnN0cnVjdGVkLlxuICogQHR5cGVQYXJhbSBBcmdzIC0gVGhlIHR5cGVzIG9mIGFyZ3VtZW50cyB0aGUgY29uc3RydWN0b3IgYWNjZXB0cy5cbiAqL1xuZXhwb3J0IHR5cGUgQ29uc3RydWN0b3I8VHlwZSwgQXJncyBleHRlbmRzIHVua25vd25bXSA9IFtdPiA9IG5ldyAoLi4uYXJnczogQXJncykgPT4gVHlwZTtcblxuLyoqXG4gKiBFeHRyYWN0cyB0aGUga2V5cyBvZiBhIGdpdmVuIHR5cGUgYFR5cGVgIHRoYXQgbWF0Y2ggYSBzcGVjaWZpYyB2YWx1ZSB0eXBlIGBWYWx1ZWAuXG4gKlxuICogQHR5cGVQYXJhbSBUeXBlIC0gVGhlIHR5cGUgZnJvbSB3aGljaCB0byBleHRyYWN0IHRoZSBrZXlzLlxuICogQHR5cGVQYXJhbSBWYWx1ZSAtIFRoZSB2YWx1ZSB0eXBlIHRvIG1hdGNoIGFnYWluc3QuXG4gKi9cbmV4cG9ydCB0eXBlIEtleXNNYXRjaGluZzxUeXBlLCBWYWx1ZT4gPSB7IFtLZXkgaW4ga2V5b2YgVHlwZV0tPzogVHlwZVtLZXldIGV4dGVuZHMgVmFsdWUgPyBLZXkgOiBuZXZlciB9W2tleW9mIFR5cGVdO1xuIl0sCiAgIm1hcHBpbmdzIjogIjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFBQTsiLAogICJuYW1lcyI6IFtdCn0K
@@ -1,20 +0,0 @@
1
- /**
2
- * @packageDocumentation \@types
3
- * Contains utility types for working with TypeScript classes and type properties.
4
- */
5
- /**
6
- * Represents a constructor type for a given class `T` with arguments `Args`.
7
- *
8
- * @typeParam Type - The type of the instance being constructed.
9
- * @typeParam Args - The types of arguments the constructor accepts.
10
- */
11
- export type Constructor<Type, Args extends unknown[] = []> = new (...args: Args) => Type;
12
- /**
13
- * Extracts the keys of a given type `Type` that match a specific value type `Value`.
14
- *
15
- * @typeParam Type - The type from which to extract the keys.
16
- * @typeParam Value - The value type to match against.
17
- */
18
- export type KeysMatching<Type, Value> = {
19
- [Key in keyof Type]-?: Type[Key] extends Value ? Key : never;
20
- }[keyof Type];
@@ -1,46 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __create = Object.create;
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __getProtoOf = Object.getPrototypeOf;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __export = (target, all) => {
16
- for (var name in all)
17
- __defProp(target, name, { get: all[name], enumerable: true });
18
- };
19
- var __copyProps = (to, from, except, desc) => {
20
- if (from && typeof from === "object" || typeof from === "function") {
21
- for (let key of __getOwnPropNames(from))
22
- if (!__hasOwnProp.call(to, key) && key !== except)
23
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
- // If the importer is in node compatibility mode or this is not an ESM
29
- // file that has been converted to a CommonJS file using a Babel-
30
- // compatible transform (i.e. "__esModule" has not been set), then set
31
- // "default" to the CommonJS "module.exports" for node compatibility.
32
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33
- mod
34
- ));
35
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var codemirror_exports = {};
37
- __export(codemirror_exports, {
38
- StateFieldSpec: () => StateFieldSpec
39
- });
40
- module.exports = __toCommonJS(codemirror_exports);
41
- var StateFieldSpec = __toESM(__extractDefault(require('./StateFieldSpec.cjs')), 1);
42
- // Annotate the CommonJS export names for ESM import in node:
43
- 0 && (module.exports = {
44
- StateFieldSpec
45
- });
46
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vc3JjL2NvZGVtaXJyb3IvaW5kZXgudHMiXSwKICAic291cmNlc0NvbnRlbnQiOiBbIi8qIFRISVMgSVMgQSBHRU5FUkFURUQvQlVORExFRCBGSUxFIEJZIEJVSUxEIFNDUklQVCAqL1xuXG5leHBvcnQgKiBhcyBTdGF0ZUZpZWxkU3BlYyBmcm9tICcuL1N0YXRlRmllbGRTcGVjLnRzJztcbiJdLAogICJtYXBwaW5ncyI6ICI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUVBLHFCQUFnQzsiLAogICJuYW1lcyI6IFtdCn0K
@@ -1 +0,0 @@
1
- export * as StateFieldSpec from './StateFieldSpec.ts';
@@ -1,91 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __create = Object.create;
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __getProtoOf = Object.getPrototypeOf;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __export = (target, all) => {
16
- for (var name in all)
17
- __defProp(target, name, { get: all[name], enumerable: true });
18
- };
19
- var __copyProps = (to, from, except, desc) => {
20
- if (from && typeof from === "object" || typeof from === "function") {
21
- for (let key of __getOwnPropNames(from))
22
- if (!__hasOwnProp.call(to, key) && key !== except)
23
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
- // If the importer is in node compatibility mode or this is not an ESM
29
- // file that has been converted to a CommonJS file using a Babel-
30
- // compatible transform (i.e. "__esModule" has not been set), then set
31
- // "default" to the CommonJS "module.exports" for node compatibility.
32
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33
- mod
34
- ));
35
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var Components_exports = {};
37
- __export(Components_exports, {
38
- DateComponent: () => DateComponent,
39
- DateTimeComponent: () => DateTimeComponent,
40
- EmailComponent: () => EmailComponent,
41
- FileComponent: () => FileComponent,
42
- MonthComponent: () => MonthComponent,
43
- MultipleDropdownComponent: () => MultipleDropdownComponent,
44
- MultipleEmailComponent: () => MultipleEmailComponent,
45
- MultipleFileComponent: () => MultipleFileComponent,
46
- NumberComponent: () => NumberComponent,
47
- TimeComponent: () => TimeComponent,
48
- TypedRangeTextComponent: () => TypedRangeTextComponent,
49
- TypedTextComponent: () => TypedTextComponent,
50
- UrlComponent: () => UrlComponent,
51
- ValidatorComponent: () => ValidatorComponent,
52
- ValueComponentWithChangeTracking: () => ValueComponentWithChangeTracking,
53
- WeekComponent: () => WeekComponent
54
- });
55
- module.exports = __toCommonJS(Components_exports);
56
- var DateComponent = __toESM(__extractDefault(require('./DateComponent.cjs')), 1);
57
- var DateTimeComponent = __toESM(__extractDefault(require('./DateTimeComponent.cjs')), 1);
58
- var EmailComponent = __toESM(__extractDefault(require('./EmailComponent.cjs')), 1);
59
- var FileComponent = __toESM(__extractDefault(require('./FileComponent.cjs')), 1);
60
- var MonthComponent = __toESM(__extractDefault(require('./MonthComponent.cjs')), 1);
61
- var MultipleDropdownComponent = __toESM(__extractDefault(require('./MultipleDropdownComponent.cjs')), 1);
62
- var MultipleEmailComponent = __toESM(__extractDefault(require('./MultipleEmailComponent.cjs')), 1);
63
- var MultipleFileComponent = __toESM(__extractDefault(require('./MultipleFileComponent.cjs')), 1);
64
- var NumberComponent = __toESM(__extractDefault(require('./NumberComponent.cjs')), 1);
65
- var TimeComponent = __toESM(__extractDefault(require('./TimeComponent.cjs')), 1);
66
- var TypedRangeTextComponent = __toESM(__extractDefault(require('./TypedRangeTextComponent.cjs')), 1);
67
- var TypedTextComponent = __toESM(__extractDefault(require('./TypedTextComponent.cjs')), 1);
68
- var UrlComponent = __toESM(__extractDefault(require('./UrlComponent.cjs')), 1);
69
- var ValidatorComponent = __toESM(__extractDefault(require('./ValidatorComponent.cjs')), 1);
70
- var ValueComponentWithChangeTracking = __toESM(__extractDefault(require('./ValueComponentWithChangeTracking.cjs')), 1);
71
- var WeekComponent = __toESM(__extractDefault(require('./WeekComponent.cjs')), 1);
72
- // Annotate the CommonJS export names for ESM import in node:
73
- 0 && (module.exports = {
74
- DateComponent,
75
- DateTimeComponent,
76
- EmailComponent,
77
- FileComponent,
78
- MonthComponent,
79
- MultipleDropdownComponent,
80
- MultipleEmailComponent,
81
- MultipleFileComponent,
82
- NumberComponent,
83
- TimeComponent,
84
- TypedRangeTextComponent,
85
- TypedTextComponent,
86
- UrlComponent,
87
- ValidatorComponent,
88
- ValueComponentWithChangeTracking,
89
- WeekComponent
90
- });
91
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vLi4vc3JjL29ic2lkaWFuL0NvbXBvbmVudHMvaW5kZXgudHMiXSwKICAic291cmNlc0NvbnRlbnQiOiBbIi8qIFRISVMgSVMgQSBHRU5FUkFURUQvQlVORExFRCBGSUxFIEJZIEJVSUxEIFNDUklQVCAqL1xuXG5leHBvcnQgKiBhcyBEYXRlQ29tcG9uZW50IGZyb20gJy4vRGF0ZUNvbXBvbmVudC50cyc7XG5leHBvcnQgKiBhcyBEYXRlVGltZUNvbXBvbmVudCBmcm9tICcuL0RhdGVUaW1lQ29tcG9uZW50LnRzJztcbmV4cG9ydCAqIGFzIEVtYWlsQ29tcG9uZW50IGZyb20gJy4vRW1haWxDb21wb25lbnQudHMnO1xuZXhwb3J0ICogYXMgRmlsZUNvbXBvbmVudCBmcm9tICcuL0ZpbGVDb21wb25lbnQudHMnO1xuZXhwb3J0ICogYXMgTW9udGhDb21wb25lbnQgZnJvbSAnLi9Nb250aENvbXBvbmVudC50cyc7XG5leHBvcnQgKiBhcyBNdWx0aXBsZURyb3Bkb3duQ29tcG9uZW50IGZyb20gJy4vTXVsdGlwbGVEcm9wZG93bkNvbXBvbmVudC50cyc7XG5leHBvcnQgKiBhcyBNdWx0aXBsZUVtYWlsQ29tcG9uZW50IGZyb20gJy4vTXVsdGlwbGVFbWFpbENvbXBvbmVudC50cyc7XG5leHBvcnQgKiBhcyBNdWx0aXBsZUZpbGVDb21wb25lbnQgZnJvbSAnLi9NdWx0aXBsZUZpbGVDb21wb25lbnQudHMnO1xuZXhwb3J0ICogYXMgTnVtYmVyQ29tcG9uZW50IGZyb20gJy4vTnVtYmVyQ29tcG9uZW50LnRzJztcbmV4cG9ydCAqIGFzIFRpbWVDb21wb25lbnQgZnJvbSAnLi9UaW1lQ29tcG9uZW50LnRzJztcbmV4cG9ydCAqIGFzIFR5cGVkUmFuZ2VUZXh0Q29tcG9uZW50IGZyb20gJy4vVHlwZWRSYW5nZVRleHRDb21wb25lbnQudHMnO1xuZXhwb3J0ICogYXMgVHlwZWRUZXh0Q29tcG9uZW50IGZyb20gJy4vVHlwZWRUZXh0Q29tcG9uZW50LnRzJztcbmV4cG9ydCAqIGFzIFVybENvbXBvbmVudCBmcm9tICcuL1VybENvbXBvbmVudC50cyc7XG5leHBvcnQgKiBhcyBWYWxpZGF0b3JDb21wb25lbnQgZnJvbSAnLi9WYWxpZGF0b3JDb21wb25lbnQudHMnO1xuZXhwb3J0ICogYXMgVmFsdWVDb21wb25lbnRXaXRoQ2hhbmdlVHJhY2tpbmcgZnJvbSAnLi9WYWx1ZUNvbXBvbmVudFdpdGhDaGFuZ2VUcmFja2luZy50cyc7XG5leHBvcnQgKiBhcyBXZWVrQ29tcG9uZW50IGZyb20gJy4vV2Vla0NvbXBvbmVudC50cyc7XG4iXSwKICAibWFwcGluZ3MiOiAiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFFQSxvQkFBK0I7QUFDL0Isd0JBQW1DO0FBQ25DLHFCQUFnQztBQUNoQyxvQkFBK0I7QUFDL0IscUJBQWdDO0FBQ2hDLGdDQUEyQztBQUMzQyw2QkFBd0M7QUFDeEMsNEJBQXVDO0FBQ3ZDLHNCQUFpQztBQUNqQyxvQkFBK0I7QUFDL0IsOEJBQXlDO0FBQ3pDLHlCQUFvQztBQUNwQyxtQkFBOEI7QUFDOUIseUJBQW9DO0FBQ3BDLHVDQUFrRDtBQUNsRCxvQkFBK0I7IiwKICAibmFtZXMiOiBbXQp9Cg==
@@ -1,16 +0,0 @@
1
- export * as DateComponent from './DateComponent.ts';
2
- export * as DateTimeComponent from './DateTimeComponent.ts';
3
- export * as EmailComponent from './EmailComponent.ts';
4
- export * as FileComponent from './FileComponent.ts';
5
- export * as MonthComponent from './MonthComponent.ts';
6
- export * as MultipleDropdownComponent from './MultipleDropdownComponent.ts';
7
- export * as MultipleEmailComponent from './MultipleEmailComponent.ts';
8
- export * as MultipleFileComponent from './MultipleFileComponent.ts';
9
- export * as NumberComponent from './NumberComponent.ts';
10
- export * as TimeComponent from './TimeComponent.ts';
11
- export * as TypedRangeTextComponent from './TypedRangeTextComponent.ts';
12
- export * as TypedTextComponent from './TypedTextComponent.ts';
13
- export * as UrlComponent from './UrlComponent.ts';
14
- export * as ValidatorComponent from './ValidatorComponent.ts';
15
- export * as ValueComponentWithChangeTracking from './ValueComponentWithChangeTracking.ts';
16
- export * as WeekComponent from './WeekComponent.ts';
@@ -1,55 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __create = Object.create;
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __getProtoOf = Object.getPrototypeOf;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __export = (target, all) => {
16
- for (var name in all)
17
- __defProp(target, name, { get: all[name], enumerable: true });
18
- };
19
- var __copyProps = (to, from, except, desc) => {
20
- if (from && typeof from === "object" || typeof from === "function") {
21
- for (let key of __getOwnPropNames(from))
22
- if (!__hasOwnProp.call(to, key) && key !== except)
23
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
- // If the importer is in node compatibility mode or this is not an ESM
29
- // file that has been converted to a CommonJS file using a Babel-
30
- // compatible transform (i.e. "__esModule" has not been set), then set
31
- // "default" to the CommonJS "module.exports" for node compatibility.
32
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33
- mod
34
- ));
35
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var Modals_exports = {};
37
- __export(Modals_exports, {
38
- Alert: () => Alert,
39
- Confirm: () => Confirm,
40
- Prompt: () => Prompt,
41
- SelectItem: () => SelectItem
42
- });
43
- module.exports = __toCommonJS(Modals_exports);
44
- var Alert = __toESM(__extractDefault(require('./Alert.cjs')), 1);
45
- var Confirm = __toESM(__extractDefault(require('./Confirm.cjs')), 1);
46
- var Prompt = __toESM(__extractDefault(require('./Prompt.cjs')), 1);
47
- var SelectItem = __toESM(__extractDefault(require('./SelectItem.cjs')), 1);
48
- // Annotate the CommonJS export names for ESM import in node:
49
- 0 && (module.exports = {
50
- Alert,
51
- Confirm,
52
- Prompt,
53
- SelectItem
54
- });
55
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vLi4vc3JjL29ic2lkaWFuL01vZGFscy9pbmRleC50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiLyogVEhJUyBJUyBBIEdFTkVSQVRFRC9CVU5ETEVEIEZJTEUgQlkgQlVJTEQgU0NSSVBUICovXG5cbmV4cG9ydCAqIGFzIEFsZXJ0IGZyb20gJy4vQWxlcnQudHMnO1xuZXhwb3J0ICogYXMgQ29uZmlybSBmcm9tICcuL0NvbmZpcm0udHMnO1xuZXhwb3J0ICogYXMgUHJvbXB0IGZyb20gJy4vUHJvbXB0LnRzJztcbmV4cG9ydCAqIGFzIFNlbGVjdEl0ZW0gZnJvbSAnLi9TZWxlY3RJdGVtLnRzJztcbiJdLAogICJtYXBwaW5ncyI6ICI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUVBLFlBQXVCO0FBQ3ZCLGNBQXlCO0FBQ3pCLGFBQXdCO0FBQ3hCLGlCQUE0QjsiLAogICJuYW1lcyI6IFtdCn0K
@@ -1,4 +0,0 @@
1
- export * as Alert from './Alert.ts';
2
- export * as Confirm from './Confirm.ts';
3
- export * as Prompt from './Prompt.ts';
4
- export * as SelectItem from './SelectItem.ts';
@@ -1,67 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __create = Object.create;
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __getProtoOf = Object.getPrototypeOf;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __export = (target, all) => {
16
- for (var name in all)
17
- __defProp(target, name, { get: all[name], enumerable: true });
18
- };
19
- var __copyProps = (to, from, except, desc) => {
20
- if (from && typeof from === "object" || typeof from === "function") {
21
- for (let key of __getOwnPropNames(from))
22
- if (!__hasOwnProp.call(to, key) && key !== except)
23
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
- // If the importer is in node compatibility mode or this is not an ESM
29
- // file that has been converted to a CommonJS file using a Babel-
30
- // compatible transform (i.e. "__esModule" has not been set), then set
31
- // "default" to the CommonJS "module.exports" for node compatibility.
32
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33
- mod
34
- ));
35
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var Plugin_exports = {};
37
- __export(Plugin_exports, {
38
- EmptySettings: () => EmptySettings,
39
- ObsidianPluginRepoPaths: () => ObsidianPluginRepoPaths,
40
- Plugin: () => Plugin,
41
- PluginBase: () => PluginBase,
42
- PluginContext: () => PluginContext,
43
- PluginId: () => PluginId,
44
- PluginSettingsBase: () => PluginSettingsBase,
45
- PluginSettingsTabBase: () => PluginSettingsTabBase
46
- });
47
- module.exports = __toCommonJS(Plugin_exports);
48
- var EmptySettings = __toESM(__extractDefault(require('./EmptySettings.cjs')), 1);
49
- var ObsidianPluginRepoPaths = __toESM(__extractDefault(require('./ObsidianPluginRepoPaths.cjs')), 1);
50
- var Plugin = __toESM(__extractDefault(require('./Plugin.cjs')), 1);
51
- var PluginBase = __toESM(__extractDefault(require('./PluginBase.cjs')), 1);
52
- var PluginContext = __toESM(__extractDefault(require('./PluginContext.cjs')), 1);
53
- var PluginId = __toESM(__extractDefault(require('./PluginId.cjs')), 1);
54
- var PluginSettingsBase = __toESM(__extractDefault(require('./PluginSettingsBase.cjs')), 1);
55
- var PluginSettingsTabBase = __toESM(__extractDefault(require('./PluginSettingsTabBase.cjs')), 1);
56
- // Annotate the CommonJS export names for ESM import in node:
57
- 0 && (module.exports = {
58
- EmptySettings,
59
- ObsidianPluginRepoPaths,
60
- Plugin,
61
- PluginBase,
62
- PluginContext,
63
- PluginId,
64
- PluginSettingsBase,
65
- PluginSettingsTabBase
66
- });
67
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vLi4vc3JjL29ic2lkaWFuL1BsdWdpbi9pbmRleC50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiLyogVEhJUyBJUyBBIEdFTkVSQVRFRC9CVU5ETEVEIEZJTEUgQlkgQlVJTEQgU0NSSVBUICovXG5cbmV4cG9ydCAqIGFzIEVtcHR5U2V0dGluZ3MgZnJvbSAnLi9FbXB0eVNldHRpbmdzLnRzJztcbmV4cG9ydCAqIGFzIE9ic2lkaWFuUGx1Z2luUmVwb1BhdGhzIGZyb20gJy4vT2JzaWRpYW5QbHVnaW5SZXBvUGF0aHMudHMnO1xuZXhwb3J0ICogYXMgUGx1Z2luIGZyb20gJy4vUGx1Z2luLnRzJztcbmV4cG9ydCAqIGFzIFBsdWdpbkJhc2UgZnJvbSAnLi9QbHVnaW5CYXNlLnRzJztcbmV4cG9ydCAqIGFzIFBsdWdpbkNvbnRleHQgZnJvbSAnLi9QbHVnaW5Db250ZXh0LnRzJztcbmV4cG9ydCAqIGFzIFBsdWdpbklkIGZyb20gJy4vUGx1Z2luSWQudHMnO1xuZXhwb3J0ICogYXMgUGx1Z2luU2V0dGluZ3NCYXNlIGZyb20gJy4vUGx1Z2luU2V0dGluZ3NCYXNlLnRzJztcbmV4cG9ydCAqIGFzIFBsdWdpblNldHRpbmdzVGFiQmFzZSBmcm9tICcuL1BsdWdpblNldHRpbmdzVGFiQmFzZS50cyc7XG4iXSwKICAibWFwcGluZ3MiOiAiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUVBLG9CQUErQjtBQUMvQiw4QkFBeUM7QUFDekMsYUFBd0I7QUFDeEIsaUJBQTRCO0FBQzVCLG9CQUErQjtBQUMvQixlQUEwQjtBQUMxQix5QkFBb0M7QUFDcEMsNEJBQXVDOyIsCiAgIm5hbWVzIjogW10KfQo=
@@ -1,8 +0,0 @@
1
- export * as EmptySettings from './EmptySettings.ts';
2
- export * as ObsidianPluginRepoPaths from './ObsidianPluginRepoPaths.ts';
3
- export * as Plugin from './Plugin.ts';
4
- export * as PluginBase from './PluginBase.ts';
5
- export * as PluginContext from './PluginContext.ts';
6
- export * as PluginId from './PluginId.ts';
7
- export * as PluginSettingsBase from './PluginSettingsBase.ts';
8
- export * as PluginSettingsTabBase from './PluginSettingsTabBase.ts';
@@ -1,130 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __create = Object.create;
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __getProtoOf = Object.getPrototypeOf;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __export = (target, all) => {
16
- for (var name in all)
17
- __defProp(target, name, { get: all[name], enumerable: true });
18
- };
19
- var __copyProps = (to, from, except, desc) => {
20
- if (from && typeof from === "object" || typeof from === "function") {
21
- for (let key of __getOwnPropNames(from))
22
- if (!__hasOwnProp.call(to, key) && key !== except)
23
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
- // If the importer is in node compatibility mode or this is not an ESM
29
- // file that has been converted to a CommonJS file using a Babel-
30
- // compatible transform (i.e. "__esModule" has not been set), then set
31
- // "default" to the CommonJS "module.exports" for node compatibility.
32
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33
- mod
34
- ));
35
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var obsidian_exports = {};
37
- __export(obsidian_exports, {
38
- App: () => App,
39
- AttachmentPath: () => AttachmentPath,
40
- Backlink: () => Backlink,
41
- Callout: () => Callout,
42
- Components: () => Components,
43
- Dataview: () => Dataview,
44
- DataviewLink: () => DataviewLink,
45
- FileChange: () => FileChange,
46
- FileManager: () => FileManager,
47
- FileSystem: () => FileSystem,
48
- Frontmatter: () => Frontmatter,
49
- Link: () => Link,
50
- Logger: () => Logger,
51
- Loop: () => Loop,
52
- Markdown: () => Markdown,
53
- MarkdownCodeBlockProcessor: () => MarkdownCodeBlockProcessor,
54
- MarkdownView: () => MarkdownView,
55
- MetadataCache: () => MetadataCache,
56
- Modals: () => Modals,
57
- ObsidianSettings: () => ObsidianSettings,
58
- Pdf: () => Pdf,
59
- Plugin: () => Plugin,
60
- Queue: () => Queue,
61
- Reference: () => Reference,
62
- RenameDeleteHandler: () => RenameDeleteHandler,
63
- ResourceUrl: () => ResourceUrl,
64
- SettingEx: () => SettingEx,
65
- Vault: () => Vault,
66
- VaultEx: () => VaultEx
67
- });
68
- module.exports = __toCommonJS(obsidian_exports);
69
- var App = __toESM(__extractDefault(require('./App.cjs')), 1);
70
- var AttachmentPath = __toESM(__extractDefault(require('./AttachmentPath.cjs')), 1);
71
- var Backlink = __toESM(__extractDefault(require('./Backlink.cjs')), 1);
72
- var Callout = __toESM(__extractDefault(require('./Callout.cjs')), 1);
73
- var Components = __toESM(__extractDefault(require('./Components/index.cjs')), 1);
74
- var Dataview = __toESM(__extractDefault(require('./Dataview.cjs')), 1);
75
- var DataviewLink = __toESM(__extractDefault(require('./DataviewLink.cjs')), 1);
76
- var FileChange = __toESM(__extractDefault(require('./FileChange.cjs')), 1);
77
- var FileManager = __toESM(__extractDefault(require('./FileManager.cjs')), 1);
78
- var FileSystem = __toESM(__extractDefault(require('./FileSystem.cjs')), 1);
79
- var Frontmatter = __toESM(__extractDefault(require('./Frontmatter.cjs')), 1);
80
- var Link = __toESM(__extractDefault(require('./Link.cjs')), 1);
81
- var Logger = __toESM(__extractDefault(require('./Logger.cjs')), 1);
82
- var Loop = __toESM(__extractDefault(require('./Loop.cjs')), 1);
83
- var Markdown = __toESM(__extractDefault(require('./Markdown.cjs')), 1);
84
- var MarkdownCodeBlockProcessor = __toESM(__extractDefault(require('./MarkdownCodeBlockProcessor.cjs')), 1);
85
- var MarkdownView = __toESM(__extractDefault(require('./MarkdownView.cjs')), 1);
86
- var MetadataCache = __toESM(__extractDefault(require('./MetadataCache.cjs')), 1);
87
- var Modals = __toESM(__extractDefault(require('./Modals/index.cjs')), 1);
88
- var ObsidianSettings = __toESM(__extractDefault(require('./ObsidianSettings.cjs')), 1);
89
- var Pdf = __toESM(__extractDefault(require('./Pdf.cjs')), 1);
90
- var Plugin = __toESM(__extractDefault(require('./Plugin/index.cjs')), 1);
91
- var Queue = __toESM(__extractDefault(require('./Queue.cjs')), 1);
92
- var Reference = __toESM(__extractDefault(require('./Reference.cjs')), 1);
93
- var RenameDeleteHandler = __toESM(__extractDefault(require('./RenameDeleteHandler.cjs')), 1);
94
- var ResourceUrl = __toESM(__extractDefault(require('./ResourceUrl.cjs')), 1);
95
- var SettingEx = __toESM(__extractDefault(require('./SettingEx.cjs')), 1);
96
- var Vault = __toESM(__extractDefault(require('./Vault.cjs')), 1);
97
- var VaultEx = __toESM(__extractDefault(require('./VaultEx.cjs')), 1);
98
- // Annotate the CommonJS export names for ESM import in node:
99
- 0 && (module.exports = {
100
- App,
101
- AttachmentPath,
102
- Backlink,
103
- Callout,
104
- Components,
105
- Dataview,
106
- DataviewLink,
107
- FileChange,
108
- FileManager,
109
- FileSystem,
110
- Frontmatter,
111
- Link,
112
- Logger,
113
- Loop,
114
- Markdown,
115
- MarkdownCodeBlockProcessor,
116
- MarkdownView,
117
- MetadataCache,
118
- Modals,
119
- ObsidianSettings,
120
- Pdf,
121
- Plugin,
122
- Queue,
123
- Reference,
124
- RenameDeleteHandler,
125
- ResourceUrl,
126
- SettingEx,
127
- Vault,
128
- VaultEx
129
- });
130
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vc3JjL29ic2lkaWFuL2luZGV4LnRzIl0sCiAgInNvdXJjZXNDb250ZW50IjogWyIvKiBUSElTIElTIEEgR0VORVJBVEVEL0JVTkRMRUQgRklMRSBCWSBCVUlMRCBTQ1JJUFQgKi9cblxuZXhwb3J0ICogYXMgQXBwIGZyb20gJy4vQXBwLnRzJztcbmV4cG9ydCAqIGFzIEF0dGFjaG1lbnRQYXRoIGZyb20gJy4vQXR0YWNobWVudFBhdGgudHMnO1xuZXhwb3J0ICogYXMgQmFja2xpbmsgZnJvbSAnLi9CYWNrbGluay50cyc7XG5leHBvcnQgKiBhcyBDYWxsb3V0IGZyb20gJy4vQ2FsbG91dC50cyc7XG5leHBvcnQgKiBhcyBDb21wb25lbnRzIGZyb20gJy4vQ29tcG9uZW50cy9pbmRleC50cyc7XG5leHBvcnQgKiBhcyBEYXRhdmlldyBmcm9tICcuL0RhdGF2aWV3LnRzJztcbmV4cG9ydCAqIGFzIERhdGF2aWV3TGluayBmcm9tICcuL0RhdGF2aWV3TGluay50cyc7XG5leHBvcnQgKiBhcyBGaWxlQ2hhbmdlIGZyb20gJy4vRmlsZUNoYW5nZS50cyc7XG5leHBvcnQgKiBhcyBGaWxlTWFuYWdlciBmcm9tICcuL0ZpbGVNYW5hZ2VyLnRzJztcbmV4cG9ydCAqIGFzIEZpbGVTeXN0ZW0gZnJvbSAnLi9GaWxlU3lzdGVtLnRzJztcbmV4cG9ydCAqIGFzIEZyb250bWF0dGVyIGZyb20gJy4vRnJvbnRtYXR0ZXIudHMnO1xuZXhwb3J0ICogYXMgTGluayBmcm9tICcuL0xpbmsudHMnO1xuZXhwb3J0ICogYXMgTG9nZ2VyIGZyb20gJy4vTG9nZ2VyLnRzJztcbmV4cG9ydCAqIGFzIExvb3AgZnJvbSAnLi9Mb29wLnRzJztcbmV4cG9ydCAqIGFzIE1hcmtkb3duIGZyb20gJy4vTWFya2Rvd24udHMnO1xuZXhwb3J0ICogYXMgTWFya2Rvd25Db2RlQmxvY2tQcm9jZXNzb3IgZnJvbSAnLi9NYXJrZG93bkNvZGVCbG9ja1Byb2Nlc3Nvci50cyc7XG5leHBvcnQgKiBhcyBNYXJrZG93blZpZXcgZnJvbSAnLi9NYXJrZG93blZpZXcudHMnO1xuZXhwb3J0ICogYXMgTWV0YWRhdGFDYWNoZSBmcm9tICcuL01ldGFkYXRhQ2FjaGUudHMnO1xuZXhwb3J0ICogYXMgTW9kYWxzIGZyb20gJy4vTW9kYWxzL2luZGV4LnRzJztcbmV4cG9ydCAqIGFzIE9ic2lkaWFuU2V0dGluZ3MgZnJvbSAnLi9PYnNpZGlhblNldHRpbmdzLnRzJztcbmV4cG9ydCAqIGFzIFBkZiBmcm9tICcuL1BkZi50cyc7XG5leHBvcnQgKiBhcyBQbHVnaW4gZnJvbSAnLi9QbHVnaW4vaW5kZXgudHMnO1xuZXhwb3J0ICogYXMgUXVldWUgZnJvbSAnLi9RdWV1ZS50cyc7XG5leHBvcnQgKiBhcyBSZWZlcmVuY2UgZnJvbSAnLi9SZWZlcmVuY2UudHMnO1xuZXhwb3J0ICogYXMgUmVuYW1lRGVsZXRlSGFuZGxlciBmcm9tICcuL1JlbmFtZURlbGV0ZUhhbmRsZXIudHMnO1xuZXhwb3J0ICogYXMgUmVzb3VyY2VVcmwgZnJvbSAnLi9SZXNvdXJjZVVybC50cyc7XG5leHBvcnQgKiBhcyBTZXR0aW5nRXggZnJvbSAnLi9TZXR0aW5nRXgudHMnO1xuZXhwb3J0ICogYXMgVmF1bHQgZnJvbSAnLi9WYXVsdC50cyc7XG5leHBvcnQgKiBhcyBWYXVsdEV4IGZyb20gJy4vVmF1bHRFeC50cyc7XG4iXSwKICAibWFwcGluZ3MiOiAiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUVBLFVBQXFCO0FBQ3JCLHFCQUFnQztBQUNoQyxlQUEwQjtBQUMxQixjQUF5QjtBQUN6QixpQkFBNEI7QUFDNUIsZUFBMEI7QUFDMUIsbUJBQThCO0FBQzlCLGlCQUE0QjtBQUM1QixrQkFBNkI7QUFDN0IsaUJBQTRCO0FBQzVCLGtCQUE2QjtBQUM3QixXQUFzQjtBQUN0QixhQUF3QjtBQUN4QixXQUFzQjtBQUN0QixlQUEwQjtBQUMxQixpQ0FBNEM7QUFDNUMsbUJBQThCO0FBQzlCLG9CQUErQjtBQUMvQixhQUF3QjtBQUN4Qix1QkFBa0M7QUFDbEMsVUFBcUI7QUFDckIsYUFBd0I7QUFDeEIsWUFBdUI7QUFDdkIsZ0JBQTJCO0FBQzNCLDBCQUFxQztBQUNyQyxrQkFBNkI7QUFDN0IsZ0JBQTJCO0FBQzNCLFlBQXVCO0FBQ3ZCLGNBQXlCOyIsCiAgIm5hbWVzIjogW10KfQo=
@@ -1,29 +0,0 @@
1
- export * as App from './App.ts';
2
- export * as AttachmentPath from './AttachmentPath.ts';
3
- export * as Backlink from './Backlink.ts';
4
- export * as Callout from './Callout.ts';
5
- export * as Components from './Components/index.ts';
6
- export * as Dataview from './Dataview.ts';
7
- export * as DataviewLink from './DataviewLink.ts';
8
- export * as FileChange from './FileChange.ts';
9
- export * as FileManager from './FileManager.ts';
10
- export * as FileSystem from './FileSystem.ts';
11
- export * as Frontmatter from './Frontmatter.ts';
12
- export * as Link from './Link.ts';
13
- export * as Logger from './Logger.ts';
14
- export * as Loop from './Loop.ts';
15
- export * as Markdown from './Markdown.ts';
16
- export * as MarkdownCodeBlockProcessor from './MarkdownCodeBlockProcessor.ts';
17
- export * as MarkdownView from './MarkdownView.ts';
18
- export * as MetadataCache from './MetadataCache.ts';
19
- export * as Modals from './Modals/index.ts';
20
- export * as ObsidianSettings from './ObsidianSettings.ts';
21
- export * as Pdf from './Pdf.ts';
22
- export * as Plugin from './Plugin/index.ts';
23
- export * as Queue from './Queue.ts';
24
- export * as Reference from './Reference.ts';
25
- export * as RenameDeleteHandler from './RenameDeleteHandler.ts';
26
- export * as ResourceUrl from './ResourceUrl.ts';
27
- export * as SettingEx from './SettingEx.ts';
28
- export * as Vault from './Vault.ts';
29
- export * as VaultEx from './VaultEx.ts';
@@ -1,49 +0,0 @@
1
- /*
2
- THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
3
- if you want to view the source, please visit the github repository of this plugin
4
- */
5
-
6
- (function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})()
7
-
8
- "use strict";
9
- var __create = Object.create;
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __getProtoOf = Object.getPrototypeOf;
14
- var __hasOwnProp = Object.prototype.hasOwnProperty;
15
- var __export = (target, all) => {
16
- for (var name in all)
17
- __defProp(target, name, { get: all[name], enumerable: true });
18
- };
19
- var __copyProps = (to, from, except, desc) => {
20
- if (from && typeof from === "object" || typeof from === "function") {
21
- for (let key of __getOwnPropNames(from))
22
- if (!__hasOwnProp.call(to, key) && key !== except)
23
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
24
- }
25
- return to;
26
- };
27
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
28
- // If the importer is in node compatibility mode or this is not an ESM
29
- // file that has been converted to a CommonJS file using a Babel-
30
- // compatible transform (i.e. "__esModule" has not been set), then set
31
- // "default" to the CommonJS "module.exports" for node compatibility.
32
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
33
- mod
34
- ));
35
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var ESLint_exports = {};
37
- __export(ESLint_exports, {
38
- ESLint: () => ESLint,
39
- eslint_config: () => eslint_config
40
- });
41
- module.exports = __toCommonJS(ESLint_exports);
42
- var eslint_config = __toESM(__extractDefault(require('./eslint.config.cjs')), 1);
43
- var ESLint = __toESM(__extractDefault(require('./ESLint.cjs')), 1);
44
- // Annotate the CommonJS export names for ESM import in node:
45
- 0 && (module.exports = {
46
- ESLint,
47
- eslint_config
48
- });
49
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vLi4vc3JjL3NjcmlwdHMvRVNMaW50L2luZGV4LnRzIl0sCiAgInNvdXJjZXNDb250ZW50IjogWyIvKiBUSElTIElTIEEgR0VORVJBVEVEL0JVTkRMRUQgRklMRSBCWSBCVUlMRCBTQ1JJUFQgKi9cblxuZXhwb3J0ICogYXMgZXNsaW50X2NvbmZpZyBmcm9tICcuL2VzbGludC5jb25maWcudHMnO1xuZXhwb3J0ICogYXMgRVNMaW50IGZyb20gJy4vRVNMaW50LnRzJztcbiJdLAogICJtYXBwaW5ncyI6ICI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBRUEsb0JBQStCO0FBQy9CLGFBQXdCOyIsCiAgIm5hbWVzIjogW10KfQo=
@@ -1,2 +0,0 @@
1
- export * as eslint_config from './eslint.config.ts';
2
- export * as ESLint from './ESLint.ts';