obsidian-typings 2.14.3 → 2.15.0

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.
package/bun.lockb ADDED
Binary file
@@ -5646,7 +5646,7 @@ export type CodeBlockPostProcessorHandler = (source: string, el: HTMLElement, ct
5646
5646
  export type ConfigItem = "accentColor" | "alwaysUpdateLinks" | "attachmentFolderPath" | "autoConvertHtml" | "autoPairBrackets" | "autoPairMarkdown" | "baseFontSize" | "baseFontSizeAction" | "cssTheme" | "defaultViewMode" | "enabledCssSnippets" | "focusNewTab" | "foldHeading" | "foldIndent" | "hotkeys" | "interfaceFontFamily" | "livePreview" | "mobilePullAction" | "mobileQuickRibbonItem" | "mobileToolbarCommands" | "monospaceFontFamily" | "nativeMenus" | "newFileFolderPath" | "newFileLocation" | "newLinkFormat" | "pdfExportSettings" | "promptDelete" | "propertiesInDocument" | "readableLineLength" | "rightToLeft" | "showIndentGuide" | "showInlineTitle" | "showLineNumber" | "showRibbon" | "showUnsupportedFiles" | "showViewHeader" | "smartIndentList" | "spellcheck" | "spellcheckLanguages" | "strictLineBreaks" | "tabSize" | "textFontFamily" | "theme" | "translucency" | "trashOption" | "types" | "uriCallbacks" | "useMarkdownLinks" | "useTab" | "userIgnoreFilters" | "vimMode";
5647
5647
  /** @todo Documentation incomplete */
5648
5648
  /** @public */
5649
- export type EmbeddableConstructor = (context: EmbedContext, file: TFile, path?: string) => Component;
5649
+ export type EmbeddableConstructor = (context: EmbedContext, file: TFile, subpath?: string) => Component;
5650
5650
  /**
5651
5651
  * A constructor for a file properties view.
5652
5652
  *
@@ -27574,7 +27574,7 @@
27574
27574
  },
27575
27575
  {
27576
27576
  "kind": "Content",
27577
- "text": ", path?: string) => "
27577
+ "text": ", subpath?: string) => "
27578
27578
  },
27579
27579
  {
27580
27580
  "kind": "Reference",
package/dist/types.d.ts CHANGED
@@ -8929,7 +8929,7 @@ export type CodeBlockPostProcessorHandler = (source: string, el: HTMLElement, ct
8929
8929
  export type ConfigItem = "accentColor" | "alwaysUpdateLinks" | "attachmentFolderPath" | "autoConvertHtml" | "autoPairBrackets" | "autoPairMarkdown" | "baseFontSize" | "baseFontSizeAction" | "cssTheme" | "defaultViewMode" | "enabledCssSnippets" | "focusNewTab" | "foldHeading" | "foldIndent" | "hotkeys" | "interfaceFontFamily" | "livePreview" | "mobilePullAction" | "mobileQuickRibbonItem" | "mobileToolbarCommands" | "monospaceFontFamily" | "nativeMenus" | "newFileFolderPath" | "newFileLocation" | "newLinkFormat" | "pdfExportSettings" | "promptDelete" | "propertiesInDocument" | "readableLineLength" | "rightToLeft" | "showIndentGuide" | "showInlineTitle" | "showLineNumber" | "showRibbon" | "showUnsupportedFiles" | "showViewHeader" | "smartIndentList" | "spellcheck" | "spellcheckLanguages" | "strictLineBreaks" | "tabSize" | "textFontFamily" | "theme" | "translucency" | "trashOption" | "types" | "uriCallbacks" | "useMarkdownLinks" | "useTab" | "userIgnoreFilters" | "vimMode";
8930
8930
  /** @todo Documentation incomplete */
8931
8931
  /** @public */
8932
- export type EmbeddableConstructor = (context: EmbedContext, file: TFile, path?: string) => Component;
8932
+ export type EmbeddableConstructor = (context: EmbedContext, file: TFile, subpath?: string) => Component;
8933
8933
  /**
8934
8934
  * A constructor for a file properties view.
8935
8935
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-typings",
3
- "version": "2.14.3",
3
+ "version": "2.15.0",
4
4
  "description": "Extended type definitions for the Obsidian API (https://obsidian.md)",
5
5
  "main": "",
6
6
  "module": "",
@@ -69,6 +69,9 @@
69
69
  "npm-run-all": "^4.1.5",
70
70
  "ts-morph": "^25.0.0"
71
71
  },
72
+ "overrides": {
73
+ "boolean": "npm:dry-uninstall"
74
+ },
72
75
  "scripts": {
73
76
  "build": "npm-run-all build:clean build:validate build:generate-index build:bundle-types build:fix-bundle-types build:implementations build:implementations:generate-types build:implementations:bundle-types build:style-mod build:extract-api",
74
77
  "build:clean": "bun run scripts/build-clean.ts",