obsidian-typings 5.12.0 → 5.13.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/dist/cjs/implementations.d.cts +389 -31
- package/dist/cjs/types.d.cts +613 -48
- package/dist/obsidian-typings.api.json +18 -18
- package/package.json +1 -3
|
@@ -11,7 +11,7 @@ import * as fs from 'node:fs';
|
|
|
11
11
|
import type { FSWatcher } from 'node:fs';
|
|
12
12
|
import * as fsPromises from 'node:fs/promises';
|
|
13
13
|
import * as path from 'node:path';
|
|
14
|
-
import type { AbstractTextComponent, App, BaseComponent, BasesConfigFileFilter, BasesEntry, BasesEntryGroup, BasesQueryResult, BasesViewConfig, BlockCache, BooleanValue, ButtonComponent, CacheItem, CachedMetadata, CapacitorAdapter, CliFlag, CloseableComponent, ColorComponent, Command, Component, DataAdapter, DateValue, Debouncer, DropdownComponent, DurationValue, EditableFileView, Editor, EditorPosition, EditorRange, EditorRangeOrCaret, EditorSuggest, EmbedCache, EventRef, Events, ExtraButtonComponent, FileManager, FileStats, FileSystemAdapter, FileValue, FileView, FrontmatterLinkCache, FuzzySuggestModal, HTMLValue, HoverLinkSource, HoverParent, HoverPopover, IconName, IconValue, ImageValue, Instruction, ItemView, Keymap, KeymapInfo, LinkCache, LinkValue, ListValue, MarkdownEditView, MarkdownFileInfo, MarkdownPostProcessorContext, MarkdownPreviewRenderer, MarkdownPreviewView, MarkdownRenderChild, MarkdownRenderer, MarkdownView, Menu, MenuItem, MenuSeparator, MetadataCache, Modal, MomentFormatComponent, NotNullValue, Notice, NullValue, NumberValue, ObjectValue, PaneType, Plugin as Plugin, PluginManifest, PluginSettingTab, Point, PopoverSuggest, ProgressBarComponent, QueryController, Reference, ReferenceCache, RegExpValue, RelativeDateValue, RenderContext, Scope, SearchComponent, SearchResult, SecretComponent, SecretStorage, Setting, SettingGroup, SettingTab, SliderComponent, SplitDirection, StringValue, TAbstractFile, TFile, TFolder, TagValue, Tasks, TextAreaComponent, TextComponent, TextFileView, ToggleComponent, UrlValue, Value, ValueComponent, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceContainer, WorkspaceFloating, WorkspaceItem, WorkspaceLeaf, WorkspaceMobileDrawer, WorkspaceParent, WorkspaceRibbon, WorkspaceRoot, WorkspaceSidedock, WorkspaceSplit, WorkspaceTabs, WorkspaceWindow, moment as momentInstance } from 'obsidian';
|
|
14
|
+
import type { AbstractTextComponent, App, BaseComponent, BasesConfigFileFilter, BasesEntry, BasesEntryGroup, BasesQueryResult, BasesViewConfig, BlockCache, BooleanValue, ButtonComponent, CacheItem, CachedMetadata, CapacitorAdapter, CliFlag, CloseableComponent, ColorComponent, Command, Component, DataAdapter, DateValue, Debouncer, DropdownComponent, DurationValue, EditableFileView, Editor, EditorPosition, EditorRange, EditorRangeOrCaret, EditorSuggest, EmbedCache, EventRef, Events, ExtraButtonComponent, FileManager, FileStats, FileSystemAdapter, FileValue, FileView, FrontmatterLinkCache, FuzzySuggestModal, HTMLValue, HoverLinkSource, HoverParent, HoverPopover, IconName, IconValue, ImageValue, Instruction, ItemView, Keymap, KeymapInfo, LinkCache, LinkValue, ListValue, MarkdownEditView, MarkdownFileInfo, MarkdownPostProcessorContext, MarkdownPreviewRenderer, MarkdownPreviewView, MarkdownRenderChild, MarkdownRenderer, MarkdownView, Menu, MenuItem, MenuSeparator, MetadataCache, Modal, MomentFormatComponent, NotNullValue, Notice as Notice, NullValue, NumberValue, ObjectValue, PaneType, Plugin as Plugin, PluginManifest, PluginSettingTab, Point, PopoverSuggest, ProgressBarComponent, QueryController, Reference, ReferenceCache, RegExpValue, RelativeDateValue, RenderContext, Scope, SearchComponent, SearchResult, SecretComponent, SecretStorage, Setting, SettingGroup, SettingTab, SliderComponent, SplitDirection, StringValue, TAbstractFile, TFile, TFolder, TagValue, Tasks, TextAreaComponent, TextComponent, TextFileView, ToggleComponent, UrlValue, Value, ValueComponent, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceContainer, WorkspaceFloating, WorkspaceItem, WorkspaceLeaf, WorkspaceMobileDrawer, WorkspaceParent, WorkspaceRibbon, WorkspaceRoot, WorkspaceSidedock, WorkspaceSplit, WorkspaceTabs, WorkspaceWindow, moment as momentInstance } from 'obsidian';
|
|
15
15
|
import type { Application, Container, Graphics, ICanvas, Sprite, Text as PIXIText, TextStyle } from 'pixi.js';
|
|
16
16
|
|
|
17
17
|
/**
|
|
@@ -1736,6 +1736,7 @@ export declare function loadPrism(): Promise<typeof import("prismjs")>;
|
|
|
1736
1736
|
export declare function parentFolderPath(path: string): string;
|
|
1737
1737
|
/**
|
|
1738
1738
|
* Function `Abs`.
|
|
1739
|
+
*
|
|
1739
1740
|
* @public
|
|
1740
1741
|
* @unofficial
|
|
1741
1742
|
*/
|
|
@@ -1784,6 +1785,7 @@ export interface AbstractFileTreeItem<T extends TAbstractFile> extends TreeItem
|
|
|
1784
1785
|
}
|
|
1785
1786
|
/**
|
|
1786
1787
|
* Base interface for search components providing find-and-replace UI.
|
|
1788
|
+
*
|
|
1787
1789
|
* @public
|
|
1788
1790
|
* @unofficial
|
|
1789
1791
|
*/
|
|
@@ -1846,6 +1848,7 @@ export interface AbstractSearchComponent {
|
|
|
1846
1848
|
}
|
|
1847
1849
|
/**
|
|
1848
1850
|
* Represents the user's Obsidian account information and license details.
|
|
1851
|
+
*
|
|
1849
1852
|
* @public
|
|
1850
1853
|
* @unofficial
|
|
1851
1854
|
*/
|
|
@@ -1879,6 +1882,7 @@ export interface Account {
|
|
|
1879
1882
|
}
|
|
1880
1883
|
/**
|
|
1881
1884
|
* Options for adding a search overlay to the editor.
|
|
1885
|
+
*
|
|
1882
1886
|
* @public
|
|
1883
1887
|
* @unofficial
|
|
1884
1888
|
*/
|
|
@@ -1918,6 +1922,7 @@ export interface AliasesPropertyWidgetComponent extends PropertyWidgetComponentB
|
|
|
1918
1922
|
}
|
|
1919
1923
|
/**
|
|
1920
1924
|
* View that displays all properties (frontmatter keys) across the vault.
|
|
1925
|
+
*
|
|
1921
1926
|
* @public
|
|
1922
1927
|
* @unofficial
|
|
1923
1928
|
*/
|
|
@@ -1997,6 +2002,7 @@ export interface AllPropertiesView extends ItemView {
|
|
|
1997
2002
|
}
|
|
1998
2003
|
/**
|
|
1999
2004
|
* Manager for the application menu bar (native desktop menu).
|
|
2005
|
+
*
|
|
2000
2006
|
* @public
|
|
2001
2007
|
* @unofficial
|
|
2002
2008
|
*/
|
|
@@ -2076,6 +2082,7 @@ export interface AppMenuBarManager {
|
|
|
2076
2082
|
}
|
|
2077
2083
|
/**
|
|
2078
2084
|
* The settings modal for the application, managing core and plugin setting tabs.
|
|
2085
|
+
*
|
|
2079
2086
|
* @public
|
|
2080
2087
|
* @unofficial
|
|
2081
2088
|
*/
|
|
@@ -2196,6 +2203,7 @@ export interface AppSetting extends Modal {
|
|
|
2196
2203
|
}
|
|
2197
2204
|
/**
|
|
2198
2205
|
* Vault-level configuration settings stored in the `.obsidian` config folder.
|
|
2206
|
+
*
|
|
2199
2207
|
* @public
|
|
2200
2208
|
* @unofficial
|
|
2201
2209
|
*/
|
|
@@ -2397,7 +2405,11 @@ export interface AppVaultConfig {
|
|
|
2397
2405
|
* Files & Links > Deleted files.
|
|
2398
2406
|
*/
|
|
2399
2407
|
trashOption?: "local" | "none" | "system";
|
|
2400
|
-
/**
|
|
2408
|
+
/**
|
|
2409
|
+
* Left-over storage for old properties types.
|
|
2410
|
+
*
|
|
2411
|
+
* @deprecated Probably left-over code from old properties type storage
|
|
2412
|
+
*/
|
|
2401
2413
|
types: object;
|
|
2402
2414
|
/**
|
|
2403
2415
|
* Files & Links > Use [[Wikilinks]].
|
|
@@ -2418,6 +2430,7 @@ export interface AppVaultConfig {
|
|
|
2418
2430
|
}
|
|
2419
2431
|
/**
|
|
2420
2432
|
* Record mapping hotkey identifiers to their string representations in vault config.
|
|
2433
|
+
*
|
|
2421
2434
|
* @public
|
|
2422
2435
|
* @unofficial
|
|
2423
2436
|
*/
|
|
@@ -2425,6 +2438,7 @@ export interface AppVaultConfigHotkeysRecord extends Record<string, string> {
|
|
|
2425
2438
|
}
|
|
2426
2439
|
/**
|
|
2427
2440
|
* Internal plugin registration for the audio recorder feature.
|
|
2441
|
+
*
|
|
2428
2442
|
* @public
|
|
2429
2443
|
* @unofficial
|
|
2430
2444
|
*/
|
|
@@ -2432,6 +2446,7 @@ export interface AudioRecorderPlugin extends InternalPlugin<AudioRecorderPluginI
|
|
|
2432
2446
|
}
|
|
2433
2447
|
/**
|
|
2434
2448
|
* Plugin instance for the audio recorder, providing methods to record and save audio clips.
|
|
2449
|
+
*
|
|
2435
2450
|
* @public
|
|
2436
2451
|
* @unofficial
|
|
2437
2452
|
*/
|
|
@@ -2489,6 +2504,7 @@ export interface AudioRecorderPluginInstance extends InternalPluginInstance<Audi
|
|
|
2489
2504
|
}
|
|
2490
2505
|
/**
|
|
2491
2506
|
* View for rendering and playing audio files.
|
|
2507
|
+
*
|
|
2492
2508
|
* @public
|
|
2493
2509
|
* @unofficial
|
|
2494
2510
|
*/
|
|
@@ -2502,6 +2518,7 @@ export interface AudioView extends EditableFileView {
|
|
|
2502
2518
|
}
|
|
2503
2519
|
/**
|
|
2504
2520
|
* Axis-aligned bounding box.
|
|
2521
|
+
*
|
|
2505
2522
|
* @public
|
|
2506
2523
|
* @unofficial
|
|
2507
2524
|
*/
|
|
@@ -2517,6 +2534,7 @@ export interface BBox {
|
|
|
2517
2534
|
}
|
|
2518
2535
|
/**
|
|
2519
2536
|
* Main UI component that renders backlinks and unlinked mentions for a file.
|
|
2537
|
+
*
|
|
2520
2538
|
* @public
|
|
2521
2539
|
* @unofficial
|
|
2522
2540
|
*/
|
|
@@ -2746,6 +2764,7 @@ export interface BacklinkComponent extends Component {
|
|
|
2746
2764
|
}
|
|
2747
2765
|
/**
|
|
2748
2766
|
* Internal plugin registration for the backlinks feature.
|
|
2767
|
+
*
|
|
2749
2768
|
* @public
|
|
2750
2769
|
* @unofficial
|
|
2751
2770
|
*/
|
|
@@ -2755,6 +2774,7 @@ export interface BacklinkPlugin extends InternalPlugin<BacklinkPluginInstance> {
|
|
|
2755
2774
|
}
|
|
2756
2775
|
/**
|
|
2757
2776
|
* Plugin instance for backlinks, managing backlink view lifecycle and file event handling.
|
|
2777
|
+
*
|
|
2758
2778
|
* @public
|
|
2759
2779
|
* @unofficial
|
|
2760
2780
|
*/
|
|
@@ -2827,6 +2847,7 @@ export interface BacklinkPluginInstance extends InternalPluginInstance<BacklinkP
|
|
|
2827
2847
|
}
|
|
2828
2848
|
/**
|
|
2829
2849
|
* Configuration options for the backlink plugin instance.
|
|
2850
|
+
*
|
|
2830
2851
|
* @public
|
|
2831
2852
|
* @unofficial
|
|
2832
2853
|
*/
|
|
@@ -2836,6 +2857,7 @@ export interface BacklinkPluginInstanceOptions {
|
|
|
2836
2857
|
}
|
|
2837
2858
|
/**
|
|
2838
2859
|
* View creators registered by the backlink plugin.
|
|
2860
|
+
*
|
|
2839
2861
|
* @public
|
|
2840
2862
|
* @unofficial
|
|
2841
2863
|
*/
|
|
@@ -2850,6 +2872,7 @@ export interface BacklinkPluginViews extends Record<string, ViewCreator> {
|
|
|
2850
2872
|
}
|
|
2851
2873
|
/**
|
|
2852
2874
|
* View that displays backlinks to the current file.
|
|
2875
|
+
*
|
|
2853
2876
|
* @public
|
|
2854
2877
|
* @unofficial
|
|
2855
2878
|
*/
|
|
@@ -4129,6 +4152,7 @@ export interface BasesViewMenu {
|
|
|
4129
4152
|
}
|
|
4130
4153
|
/**
|
|
4131
4154
|
* Bezier curve used for rendering canvas edge connections.
|
|
4155
|
+
*
|
|
4132
4156
|
* @public
|
|
4133
4157
|
* @unofficial
|
|
4134
4158
|
*/
|
|
@@ -4146,6 +4170,7 @@ export interface Bezier {
|
|
|
4146
4170
|
}
|
|
4147
4171
|
/**
|
|
4148
4172
|
* A bookmark marking a specific position in the editor document that tracks changes.
|
|
4173
|
+
*
|
|
4149
4174
|
* @public
|
|
4150
4175
|
* @unofficial
|
|
4151
4176
|
*/
|
|
@@ -4215,6 +4240,7 @@ export interface BookmarkItem {
|
|
|
4215
4240
|
}
|
|
4216
4241
|
/**
|
|
4217
4242
|
* Internal plugin registration for the bookmarks feature.
|
|
4243
|
+
*
|
|
4218
4244
|
* @public
|
|
4219
4245
|
* @unofficial
|
|
4220
4246
|
*/
|
|
@@ -4224,6 +4250,7 @@ export interface BookmarksPlugin extends InternalPlugin<BookmarksPluginInstance>
|
|
|
4224
4250
|
}
|
|
4225
4251
|
/**
|
|
4226
4252
|
* Plugin instance for bookmarks, managing bookmarked files, folders, URLs, searches, and graphs.
|
|
4253
|
+
*
|
|
4227
4254
|
* @public
|
|
4228
4255
|
* @unofficial
|
|
4229
4256
|
*/
|
|
@@ -4414,6 +4441,7 @@ export interface BookmarksPluginInstance extends InternalPluginInstance<Bookmark
|
|
|
4414
4441
|
}
|
|
4415
4442
|
/**
|
|
4416
4443
|
* View creators registered by the bookmarks plugin.
|
|
4444
|
+
*
|
|
4417
4445
|
* @public
|
|
4418
4446
|
* @unofficial
|
|
4419
4447
|
*/
|
|
@@ -4428,6 +4456,7 @@ export interface BookmarksPluginViews extends Record<string, ViewCreator> {
|
|
|
4428
4456
|
}
|
|
4429
4457
|
/**
|
|
4430
4458
|
* View that displays the bookmarks sidebar, showing all bookmarked items in a tree.
|
|
4459
|
+
*
|
|
4431
4460
|
* @public
|
|
4432
4461
|
* @unofficial
|
|
4433
4462
|
*/
|
|
@@ -4553,6 +4582,7 @@ export interface BookmarksView extends ItemView {
|
|
|
4553
4582
|
}
|
|
4554
4583
|
/**
|
|
4555
4584
|
* Represents a bracket character found at a specific position in the editor.
|
|
4585
|
+
*
|
|
4556
4586
|
* @public
|
|
4557
4587
|
* @unofficial
|
|
4558
4588
|
*/
|
|
@@ -4564,6 +4594,7 @@ export interface Bracket {
|
|
|
4564
4594
|
}
|
|
4565
4595
|
/**
|
|
4566
4596
|
* Interface for setting the birth time (creation time) of a file.
|
|
4597
|
+
*
|
|
4567
4598
|
* @public
|
|
4568
4599
|
* @unofficial
|
|
4569
4600
|
*/
|
|
@@ -4578,6 +4609,7 @@ export interface Btime {
|
|
|
4578
4609
|
}
|
|
4579
4610
|
/**
|
|
4580
4611
|
* Represents a connection (edge) between two nodes on a canvas.
|
|
4612
|
+
*
|
|
4581
4613
|
* @public
|
|
4582
4614
|
* @unofficial
|
|
4583
4615
|
*/
|
|
@@ -4585,6 +4617,7 @@ export interface CanvasConnection {
|
|
|
4585
4617
|
}
|
|
4586
4618
|
/**
|
|
4587
4619
|
* Manages saving, loading, and maintaining canvas local data on disk.
|
|
4620
|
+
*
|
|
4588
4621
|
* @public
|
|
4589
4622
|
* @unofficial
|
|
4590
4623
|
*/
|
|
@@ -4624,6 +4657,7 @@ export interface CanvasDataManager {
|
|
|
4624
4657
|
}
|
|
4625
4658
|
/**
|
|
4626
4659
|
* Represents an embedded file reference within a canvas node.
|
|
4660
|
+
*
|
|
4627
4661
|
* @public
|
|
4628
4662
|
* @unofficial
|
|
4629
4663
|
*/
|
|
@@ -4635,6 +4669,7 @@ export interface CanvasEmbed {
|
|
|
4635
4669
|
}
|
|
4636
4670
|
/**
|
|
4637
4671
|
* Index that tracks and resolves links, embeds, and metadata across all canvas files.
|
|
4672
|
+
*
|
|
4638
4673
|
* @public
|
|
4639
4674
|
* @unofficial
|
|
4640
4675
|
*/
|
|
@@ -4742,6 +4777,7 @@ export interface CanvasIndex extends Component {
|
|
|
4742
4777
|
}
|
|
4743
4778
|
/**
|
|
4744
4779
|
* Represents a single entry in the canvas index, containing cached metadata and embeds for a canvas file.
|
|
4780
|
+
*
|
|
4745
4781
|
* @public
|
|
4746
4782
|
* @unofficial
|
|
4747
4783
|
*/
|
|
@@ -4753,6 +4789,7 @@ export interface CanvasIndexEntry {
|
|
|
4753
4789
|
}
|
|
4754
4790
|
/**
|
|
4755
4791
|
* Link updater for canvas files, handling link updates when files are renamed or moved.
|
|
4792
|
+
*
|
|
4756
4793
|
* @public
|
|
4757
4794
|
* @unofficial
|
|
4758
4795
|
*/
|
|
@@ -4764,6 +4801,7 @@ export interface CanvasLinkUpdater extends LinkUpdater {
|
|
|
4764
4801
|
}
|
|
4765
4802
|
/**
|
|
4766
4803
|
* Context menu and toolbar displayed on the canvas for node/edge actions.
|
|
4804
|
+
*
|
|
4767
4805
|
* @public
|
|
4768
4806
|
* @unofficial
|
|
4769
4807
|
*/
|
|
@@ -4791,6 +4829,7 @@ export interface CanvasMenu {
|
|
|
4791
4829
|
}
|
|
4792
4830
|
/**
|
|
4793
4831
|
* Represents a node (card) on a canvas.
|
|
4832
|
+
*
|
|
4794
4833
|
* @public
|
|
4795
4834
|
* @unofficial
|
|
4796
4835
|
*/
|
|
@@ -4798,6 +4837,7 @@ export interface CanvasNode {
|
|
|
4798
4837
|
}
|
|
4799
4838
|
/**
|
|
4800
4839
|
* Internal plugin definition for the Canvas feature.
|
|
4840
|
+
*
|
|
4801
4841
|
* @public
|
|
4802
4842
|
* @unofficial
|
|
4803
4843
|
*/
|
|
@@ -4805,6 +4845,7 @@ export interface CanvasPlugin extends InternalPlugin<CanvasPluginInstance> {
|
|
|
4805
4845
|
}
|
|
4806
4846
|
/**
|
|
4807
4847
|
* Plugin instance for the Canvas internal plugin, managing canvas indexing, data, and rename operations.
|
|
4848
|
+
*
|
|
4808
4849
|
* @public
|
|
4809
4850
|
* @unofficial
|
|
4810
4851
|
*/
|
|
@@ -4831,6 +4872,7 @@ export interface CanvasPluginInstance extends InternalPluginInstance<CanvasPlugi
|
|
|
4831
4872
|
}
|
|
4832
4873
|
/**
|
|
4833
4874
|
* User-configurable options for the Canvas plugin.
|
|
4875
|
+
*
|
|
4834
4876
|
* @public
|
|
4835
4877
|
* @unofficial
|
|
4836
4878
|
*/
|
|
@@ -4854,6 +4896,7 @@ export interface CanvasPluginInstanceOptions {
|
|
|
4854
4896
|
}
|
|
4855
4897
|
/**
|
|
4856
4898
|
* Extended rectangle representation for the canvas, providing both min/max and position/size properties.
|
|
4899
|
+
*
|
|
4857
4900
|
* @public
|
|
4858
4901
|
* @unofficial
|
|
4859
4902
|
*/
|
|
@@ -4881,6 +4924,7 @@ export interface CanvasRectEx {
|
|
|
4881
4924
|
}
|
|
4882
4925
|
/**
|
|
4883
4926
|
* Manages the visual selection state on the canvas, including selection bounds and resize handles.
|
|
4927
|
+
*
|
|
4884
4928
|
* @public
|
|
4885
4929
|
* @unofficial
|
|
4886
4930
|
*/
|
|
@@ -4914,6 +4958,7 @@ export interface CanvasSelection {
|
|
|
4914
4958
|
}
|
|
4915
4959
|
/**
|
|
4916
4960
|
* View for displaying and editing canvas files, extending TextFileView.
|
|
4961
|
+
*
|
|
4917
4962
|
* @public
|
|
4918
4963
|
* @unofficial
|
|
4919
4964
|
*/
|
|
@@ -4952,6 +4997,7 @@ export interface CanvasView extends TextFileView {
|
|
|
4952
4997
|
}
|
|
4953
4998
|
/**
|
|
4954
4999
|
* Main canvas controller that manages rendering, selection, drag, zoom, pan, nodes, and edges for the canvas view.
|
|
5000
|
+
*
|
|
4955
5001
|
* @public
|
|
4956
5002
|
* @unofficial
|
|
4957
5003
|
*/
|
|
@@ -5703,6 +5749,7 @@ export interface CanvasViewCanvas {
|
|
|
5703
5749
|
}
|
|
5704
5750
|
/**
|
|
5705
5751
|
* Represents a connection (edge) between two nodes on the canvas.
|
|
5752
|
+
*
|
|
5706
5753
|
* @public
|
|
5707
5754
|
* @unofficial
|
|
5708
5755
|
*/
|
|
@@ -5880,6 +5927,7 @@ export interface CanvasViewCanvasEdge {
|
|
|
5880
5927
|
}
|
|
5881
5928
|
/**
|
|
5882
5929
|
* Represents the visual endpoint (arrow, dot, etc.) at one end of a canvas edge.
|
|
5930
|
+
*
|
|
5883
5931
|
* @public
|
|
5884
5932
|
* @unofficial
|
|
5885
5933
|
*/
|
|
@@ -5891,6 +5939,7 @@ export interface CanvasViewCanvasEdgeLineEnd {
|
|
|
5891
5939
|
}
|
|
5892
5940
|
/**
|
|
5893
5941
|
* Represents one endpoint of a canvas edge, linking it to a specific side of a node.
|
|
5942
|
+
*
|
|
5894
5943
|
* @public
|
|
5895
5944
|
* @unofficial
|
|
5896
5945
|
*/
|
|
@@ -5904,6 +5953,7 @@ export interface CanvasViewCanvasEdgeLink {
|
|
|
5904
5953
|
}
|
|
5905
5954
|
/**
|
|
5906
5955
|
* SVG path elements for rendering a canvas edge, with separate paths for display and interaction.
|
|
5956
|
+
*
|
|
5907
5957
|
* @public
|
|
5908
5958
|
* @unofficial
|
|
5909
5959
|
*/
|
|
@@ -5915,6 +5965,7 @@ export interface CanvasViewCanvasEdgePath {
|
|
|
5915
5965
|
}
|
|
5916
5966
|
/**
|
|
5917
5967
|
* Represents a node on the canvas with position, size, content, and connection capabilities.
|
|
5968
|
+
*
|
|
5918
5969
|
* @public
|
|
5919
5970
|
* @unofficial
|
|
5920
5971
|
*/
|
|
@@ -6074,6 +6125,7 @@ export interface CanvasViewCanvasNode extends CanvasViewCanvasNodeBase {
|
|
|
6074
6125
|
}
|
|
6075
6126
|
/**
|
|
6076
6127
|
* Base interface for canvas nodes, providing core editing and interaction methods.
|
|
6128
|
+
*
|
|
6077
6129
|
* @public
|
|
6078
6130
|
* @unofficial
|
|
6079
6131
|
*/
|
|
@@ -6147,6 +6199,7 @@ export interface CanvasViewCanvasNodeBase extends CanvasViewCanvasNodeBaseBase {
|
|
|
6147
6199
|
}
|
|
6148
6200
|
/**
|
|
6149
6201
|
* Intermediate base interface for canvas nodes, adding lifecycle and content mounting methods.
|
|
6202
|
+
*
|
|
6150
6203
|
* @public
|
|
6151
6204
|
* @unofficial
|
|
6152
6205
|
*/
|
|
@@ -6196,6 +6249,7 @@ export interface CanvasViewCanvasNodeBaseBase extends CanvasViewCanvasNodeBaseBa
|
|
|
6196
6249
|
}
|
|
6197
6250
|
/**
|
|
6198
6251
|
* Lowest-level base interface for canvas nodes, providing core properties and interaction methods.
|
|
6252
|
+
*
|
|
6199
6253
|
* @public
|
|
6200
6254
|
* @unofficial
|
|
6201
6255
|
*/
|
|
@@ -6395,6 +6449,7 @@ export interface CanvasViewCanvasNodeBaseBaseBase {
|
|
|
6395
6449
|
}
|
|
6396
6450
|
/**
|
|
6397
6451
|
* Base data shared by all canvas node types.
|
|
6452
|
+
*
|
|
6398
6453
|
* @public
|
|
6399
6454
|
* @unofficial
|
|
6400
6455
|
*/
|
|
@@ -6408,6 +6463,7 @@ export interface CanvasViewCanvasNodeUnknownData {
|
|
|
6408
6463
|
}
|
|
6409
6464
|
/**
|
|
6410
6465
|
* Configuration options for the canvas view.
|
|
6466
|
+
*
|
|
6411
6467
|
* @public
|
|
6412
6468
|
* @unofficial
|
|
6413
6469
|
*/
|
|
@@ -6425,6 +6481,7 @@ export interface CanvasViewConfig {
|
|
|
6425
6481
|
}
|
|
6426
6482
|
/**
|
|
6427
6483
|
* Serialized canvas data containing all nodes and edges.
|
|
6484
|
+
*
|
|
6428
6485
|
* @public
|
|
6429
6486
|
* @unofficial
|
|
6430
6487
|
*/
|
|
@@ -6436,6 +6493,7 @@ export interface CanvasViewData {
|
|
|
6436
6493
|
}
|
|
6437
6494
|
/**
|
|
6438
6495
|
* Serialized data representation of an edge (connection) between two nodes in the canvas.
|
|
6496
|
+
*
|
|
6439
6497
|
* @public
|
|
6440
6498
|
* @unofficial
|
|
6441
6499
|
*/
|
|
@@ -6453,6 +6511,7 @@ export interface CanvasViewDataEdge {
|
|
|
6453
6511
|
}
|
|
6454
6512
|
/**
|
|
6455
6513
|
* Serialized data for a canvas node.
|
|
6514
|
+
*
|
|
6456
6515
|
* @public
|
|
6457
6516
|
* @unofficial
|
|
6458
6517
|
*/
|
|
@@ -6470,6 +6529,7 @@ export interface CanvasViewDataNode extends CanvasViewCanvasNodeUnknownData {
|
|
|
6470
6529
|
}
|
|
6471
6530
|
/**
|
|
6472
6531
|
* Manages undo/redo history for canvas state changes.
|
|
6532
|
+
*
|
|
6473
6533
|
* @public
|
|
6474
6534
|
* @unofficial
|
|
6475
6535
|
*/
|
|
@@ -6525,6 +6585,7 @@ export interface CanvasViewHistory {
|
|
|
6525
6585
|
}
|
|
6526
6586
|
/**
|
|
6527
6587
|
* File system adapter for Capacitor (mobile) platform.
|
|
6588
|
+
*
|
|
6528
6589
|
* @public
|
|
6529
6590
|
* @unofficial
|
|
6530
6591
|
*/
|
|
@@ -6715,6 +6776,7 @@ export interface CapacitorAdapterFs {
|
|
|
6715
6776
|
}
|
|
6716
6777
|
/**
|
|
6717
6778
|
* File or directory entry from the Capacitor (mobile) file system.
|
|
6779
|
+
*
|
|
6718
6780
|
* @public
|
|
6719
6781
|
* @unofficial
|
|
6720
6782
|
*/
|
|
@@ -6728,6 +6790,7 @@ export interface CapacitorFileEntry extends Partial<FileStats> {
|
|
|
6728
6790
|
}
|
|
6729
6791
|
/**
|
|
6730
6792
|
* Function `Ceil`.
|
|
6793
|
+
*
|
|
6731
6794
|
* @public
|
|
6732
6795
|
* @unofficial
|
|
6733
6796
|
*/
|
|
@@ -6759,6 +6822,7 @@ export interface CheckboxPropertyWidgetComponent extends PropertyWidgetComponent
|
|
|
6759
6822
|
}
|
|
6760
6823
|
/**
|
|
6761
6824
|
* Command-line interface handler for Obsidian.
|
|
6825
|
+
*
|
|
6762
6826
|
* @public
|
|
6763
6827
|
* @unofficial
|
|
6764
6828
|
*/
|
|
@@ -6846,6 +6910,7 @@ export interface Cli {
|
|
|
6846
6910
|
}
|
|
6847
6911
|
/**
|
|
6848
6912
|
* Entry stored in the CLI handlers map.
|
|
6913
|
+
*
|
|
6849
6914
|
* @public
|
|
6850
6915
|
* @unofficial
|
|
6851
6916
|
*/
|
|
@@ -6859,6 +6924,7 @@ export interface CliHandlerEntry {
|
|
|
6859
6924
|
}
|
|
6860
6925
|
/**
|
|
6861
6926
|
* A node in a CLI ASCII tree.
|
|
6927
|
+
*
|
|
6862
6928
|
* @public
|
|
6863
6929
|
* @unofficial
|
|
6864
6930
|
*/
|
|
@@ -6870,6 +6936,7 @@ export interface CliTreeNode {
|
|
|
6870
6936
|
}
|
|
6871
6937
|
/**
|
|
6872
6938
|
* Represents a clickable token in the editor (e.g. link, tag).
|
|
6939
|
+
*
|
|
6873
6940
|
* @public
|
|
6874
6941
|
* @unofficial
|
|
6875
6942
|
*/
|
|
@@ -6885,6 +6952,7 @@ export interface ClickableToken {
|
|
|
6885
6952
|
}
|
|
6886
6953
|
/**
|
|
6887
6954
|
* Manager for clipboard operations in the markdown editor, handling paste, drag, and drop.
|
|
6955
|
+
*
|
|
6888
6956
|
* @public
|
|
6889
6957
|
* @unofficial
|
|
6890
6958
|
*/
|
|
@@ -6967,6 +7035,7 @@ export interface ClipboardManager {
|
|
|
6967
7035
|
}
|
|
6968
7036
|
/**
|
|
6969
7037
|
* Extended CodeMirror adapter providing CM5-compatible API over CM6.
|
|
7038
|
+
*
|
|
6970
7039
|
* @public
|
|
6971
7040
|
* @unofficial
|
|
6972
7041
|
*/
|
|
@@ -7101,6 +7170,7 @@ export interface CodeMirrorAdapterEx {
|
|
|
7101
7170
|
}
|
|
7102
7171
|
/**
|
|
7103
7172
|
* Built-in editor commands available through the CodeMirror adapter.
|
|
7173
|
+
*
|
|
7104
7174
|
* @public
|
|
7105
7175
|
* @unofficial
|
|
7106
7176
|
*/
|
|
@@ -7144,6 +7214,7 @@ export interface CodeMirrorAdapterExCommands {
|
|
|
7144
7214
|
}
|
|
7145
7215
|
/**
|
|
7146
7216
|
* CM5-compatible editor interface wrapping a CodeMirror 6 editor view.
|
|
7217
|
+
*
|
|
7147
7218
|
* @public
|
|
7148
7219
|
* @unofficial
|
|
7149
7220
|
*/
|
|
@@ -7610,6 +7681,7 @@ export interface CodeMirrorEditor {
|
|
|
7610
7681
|
}
|
|
7611
7682
|
/**
|
|
7612
7683
|
* Describes the active editor language mode.
|
|
7684
|
+
*
|
|
7613
7685
|
* @public
|
|
7614
7686
|
* @unofficial
|
|
7615
7687
|
*/
|
|
@@ -7619,6 +7691,7 @@ export interface CodeMirrorEditorMode {
|
|
|
7619
7691
|
}
|
|
7620
7692
|
/**
|
|
7621
7693
|
* A cursor for iterating over search matches in the editor document.
|
|
7694
|
+
*
|
|
7622
7695
|
* @public
|
|
7623
7696
|
* @unofficial
|
|
7624
7697
|
*/
|
|
@@ -7663,6 +7736,7 @@ export interface CodeMirrorEditorSearchCursor {
|
|
|
7663
7736
|
}
|
|
7664
7737
|
/**
|
|
7665
7738
|
* Fuzzy suggest modal used by the command palette to search and execute commands.
|
|
7739
|
+
*
|
|
7666
7740
|
* @public
|
|
7667
7741
|
* @unofficial
|
|
7668
7742
|
*/
|
|
@@ -7674,6 +7748,7 @@ export interface CommandPaletteModal extends FuzzySuggestModal<Command> {
|
|
|
7674
7748
|
}
|
|
7675
7749
|
/**
|
|
7676
7750
|
* Configuration options for the command palette plugin.
|
|
7751
|
+
*
|
|
7677
7752
|
* @public
|
|
7678
7753
|
* @unofficial
|
|
7679
7754
|
*/
|
|
@@ -7683,6 +7758,7 @@ export interface CommandPaletteOptions {
|
|
|
7683
7758
|
}
|
|
7684
7759
|
/**
|
|
7685
7760
|
* Internal plugin registration for the command palette feature.
|
|
7761
|
+
*
|
|
7686
7762
|
* @public
|
|
7687
7763
|
* @unofficial
|
|
7688
7764
|
*/
|
|
@@ -7690,6 +7766,7 @@ export interface CommandPalettePlugin extends InternalPlugin<CommandPalettePlugi
|
|
|
7690
7766
|
}
|
|
7691
7767
|
/**
|
|
7692
7768
|
* Plugin instance for the command palette, providing the fuzzy command search modal.
|
|
7769
|
+
*
|
|
7693
7770
|
* @public
|
|
7694
7771
|
* @unofficial
|
|
7695
7772
|
*/
|
|
@@ -7739,6 +7816,7 @@ export interface CommandPalettePluginInstance extends InternalPluginInstance<Com
|
|
|
7739
7816
|
}
|
|
7740
7817
|
/**
|
|
7741
7818
|
* Manager for registering, finding, and executing commands.
|
|
7819
|
+
*
|
|
7742
7820
|
* @public
|
|
7743
7821
|
* @unofficial
|
|
7744
7822
|
*/
|
|
@@ -7812,6 +7890,7 @@ export interface Commands {
|
|
|
7812
7890
|
}
|
|
7813
7891
|
/**
|
|
7814
7892
|
* Record mapping command IDs to Command objects without editor callbacks.
|
|
7893
|
+
*
|
|
7815
7894
|
* @public
|
|
7816
7895
|
* @unofficial
|
|
7817
7896
|
*/
|
|
@@ -7819,6 +7898,7 @@ export interface CommandsCommandsRecord extends Record<string, Command> {
|
|
|
7819
7898
|
}
|
|
7820
7899
|
/**
|
|
7821
7900
|
* Record mapping command IDs to Command objects with editor callbacks.
|
|
7901
|
+
*
|
|
7822
7902
|
* @public
|
|
7823
7903
|
* @unofficial
|
|
7824
7904
|
*/
|
|
@@ -7826,6 +7906,7 @@ export interface CommandsEditorCommandsRecord extends Record<string, Command> {
|
|
|
7826
7906
|
}
|
|
7827
7907
|
/**
|
|
7828
7908
|
* Function `Concat`.
|
|
7909
|
+
*
|
|
7829
7910
|
* @public
|
|
7830
7911
|
* @unofficial
|
|
7831
7912
|
*/
|
|
@@ -7852,6 +7933,7 @@ export interface ConstructorBase<Args extends unknown[], Instance> {
|
|
|
7852
7933
|
}
|
|
7853
7934
|
/**
|
|
7854
7935
|
* Function `ContainsAll`.
|
|
7936
|
+
*
|
|
7855
7937
|
* @public
|
|
7856
7938
|
* @unofficial
|
|
7857
7939
|
*/
|
|
@@ -7859,6 +7941,7 @@ export interface ContainsAllFunction extends BasesFunction, HasGetDisplayName, H
|
|
|
7859
7941
|
}
|
|
7860
7942
|
/**
|
|
7861
7943
|
* Function `ContainsAny`.
|
|
7944
|
+
*
|
|
7862
7945
|
* @public
|
|
7863
7946
|
* @unofficial
|
|
7864
7947
|
*/
|
|
@@ -7866,6 +7949,7 @@ export interface ContainsAnyFunction extends BasesFunction, HasGetDisplayName, H
|
|
|
7866
7949
|
}
|
|
7867
7950
|
/**
|
|
7868
7951
|
* Function `Contains`.
|
|
7952
|
+
*
|
|
7869
7953
|
* @public
|
|
7870
7954
|
* @unofficial
|
|
7871
7955
|
*/
|
|
@@ -7873,6 +7957,7 @@ export interface ContainsFunction extends BasesFunction, HasGetDisplayName, HasG
|
|
|
7873
7957
|
}
|
|
7874
7958
|
/**
|
|
7875
7959
|
* Function `ContainsNone`.
|
|
7960
|
+
*
|
|
7876
7961
|
* @public
|
|
7877
7962
|
* @unofficial
|
|
7878
7963
|
*/
|
|
@@ -7880,6 +7965,7 @@ export interface ContainsNoneFunction extends BasesFunction, HasGetDisplayName,
|
|
|
7880
7965
|
}
|
|
7881
7966
|
/**
|
|
7882
7967
|
* Represents a bounding rectangle with top, bottom, left, and right coordinates.
|
|
7968
|
+
*
|
|
7883
7969
|
* @public
|
|
7884
7970
|
* @unofficial
|
|
7885
7971
|
*/
|
|
@@ -7976,6 +8062,7 @@ export interface CustomArrayDict<T> {
|
|
|
7976
8062
|
}
|
|
7977
8063
|
/**
|
|
7978
8064
|
* Manager for custom CSS themes and snippets.
|
|
8065
|
+
*
|
|
7979
8066
|
* @public
|
|
7980
8067
|
* @unofficial
|
|
7981
8068
|
*/
|
|
@@ -8211,6 +8298,7 @@ export interface CustomCSS extends Component {
|
|
|
8211
8298
|
}
|
|
8212
8299
|
/**
|
|
8213
8300
|
* Record mapping theme names to their manifest metadata.
|
|
8301
|
+
*
|
|
8214
8302
|
* @public
|
|
8215
8303
|
* @unofficial
|
|
8216
8304
|
*/
|
|
@@ -8218,6 +8306,7 @@ export interface CustomCSSThemesRecord extends Record<string, ThemeManifest> {
|
|
|
8218
8306
|
}
|
|
8219
8307
|
/**
|
|
8220
8308
|
* Record mapping theme names to their available update information.
|
|
8309
|
+
*
|
|
8221
8310
|
* @public
|
|
8222
8311
|
* @unofficial
|
|
8223
8312
|
*/
|
|
@@ -8225,6 +8314,7 @@ export interface CustomCSSUpdatesRecord extends Record<string, unknown> {
|
|
|
8225
8314
|
}
|
|
8226
8315
|
/**
|
|
8227
8316
|
* Configuration options for the daily notes plugin.
|
|
8317
|
+
*
|
|
8228
8318
|
* @public
|
|
8229
8319
|
* @unofficial
|
|
8230
8320
|
*/
|
|
@@ -8243,6 +8333,7 @@ export interface DailyNotesOptions {
|
|
|
8243
8333
|
}
|
|
8244
8334
|
/**
|
|
8245
8335
|
* Internal plugin registration for the daily notes feature.
|
|
8336
|
+
*
|
|
8246
8337
|
* @public
|
|
8247
8338
|
* @unofficial
|
|
8248
8339
|
*/
|
|
@@ -8250,6 +8341,7 @@ export interface DailyNotesPlugin extends InternalPlugin<DailyNotesPluginInstanc
|
|
|
8250
8341
|
}
|
|
8251
8342
|
/**
|
|
8252
8343
|
* Plugin instance for daily notes, providing date-based note creation and navigation.
|
|
8344
|
+
*
|
|
8253
8345
|
* @public
|
|
8254
8346
|
* @unofficial
|
|
8255
8347
|
*/
|
|
@@ -8455,6 +8547,7 @@ export interface DataAdapterEx extends DataAdapter, PromisedQueue {
|
|
|
8455
8547
|
}
|
|
8456
8548
|
/**
|
|
8457
8549
|
* Record mapping file paths to their file entry metadata in the data adapter.
|
|
8550
|
+
*
|
|
8458
8551
|
* @public
|
|
8459
8552
|
* @unofficial
|
|
8460
8553
|
*/
|
|
@@ -8470,6 +8563,7 @@ export interface DataAdapterWatchersRecord extends Record<string, DataAdapterWat
|
|
|
8470
8563
|
}
|
|
8471
8564
|
/**
|
|
8472
8565
|
* Entry for a file system watcher registered by the data adapter.
|
|
8566
|
+
*
|
|
8473
8567
|
* @public
|
|
8474
8568
|
* @unofficial
|
|
8475
8569
|
*/
|
|
@@ -8485,6 +8579,7 @@ export interface DataAdapterWatchersRecordEntry {
|
|
|
8485
8579
|
}
|
|
8486
8580
|
/**
|
|
8487
8581
|
* Represents a WebSQL database instance.
|
|
8582
|
+
*
|
|
8488
8583
|
* @public
|
|
8489
8584
|
* @unofficial
|
|
8490
8585
|
*/
|
|
@@ -8500,6 +8595,7 @@ export interface Database {
|
|
|
8500
8595
|
}
|
|
8501
8596
|
/**
|
|
8502
8597
|
* Function `DateAfter`.
|
|
8598
|
+
*
|
|
8503
8599
|
* @public
|
|
8504
8600
|
* @unofficial
|
|
8505
8601
|
*/
|
|
@@ -8507,6 +8603,7 @@ export interface DateAfterFunction extends BasesFunction, HasGetDisplayName, Has
|
|
|
8507
8603
|
}
|
|
8508
8604
|
/**
|
|
8509
8605
|
* Function `DateBefore`.
|
|
8606
|
+
*
|
|
8510
8607
|
* @public
|
|
8511
8608
|
* @unofficial
|
|
8512
8609
|
*/
|
|
@@ -8514,6 +8611,7 @@ export interface DateBeforeFunction extends BasesFunction, HasGetDisplayName, Ha
|
|
|
8514
8611
|
}
|
|
8515
8612
|
/**
|
|
8516
8613
|
* Function `DateDiff`.
|
|
8614
|
+
*
|
|
8517
8615
|
* @public
|
|
8518
8616
|
* @unofficial
|
|
8519
8617
|
*/
|
|
@@ -8521,6 +8619,7 @@ export interface DateDiffFunction extends BasesFunction {
|
|
|
8521
8619
|
}
|
|
8522
8620
|
/**
|
|
8523
8621
|
* Function `DateEquals`.
|
|
8622
|
+
*
|
|
8524
8623
|
* @public
|
|
8525
8624
|
* @unofficial
|
|
8526
8625
|
*/
|
|
@@ -8528,6 +8627,7 @@ export interface DateEqualsFunction extends BasesFunction, HasGetDisplayName, Ha
|
|
|
8528
8627
|
}
|
|
8529
8628
|
/**
|
|
8530
8629
|
* Function `DateModify`.
|
|
8630
|
+
*
|
|
8531
8631
|
* @public
|
|
8532
8632
|
* @unofficial
|
|
8533
8633
|
*/
|
|
@@ -8535,6 +8635,7 @@ export interface DateModifyFunction extends BasesFunction {
|
|
|
8535
8635
|
}
|
|
8536
8636
|
/**
|
|
8537
8637
|
* Function `DateNotEquals`.
|
|
8638
|
+
*
|
|
8538
8639
|
* @public
|
|
8539
8640
|
* @unofficial
|
|
8540
8641
|
*/
|
|
@@ -8542,6 +8643,7 @@ export interface DateNotEqualsFunction extends BasesFunction, HasGetDisplayName,
|
|
|
8542
8643
|
}
|
|
8543
8644
|
/**
|
|
8544
8645
|
* Function `DateOnOrAfter`.
|
|
8646
|
+
*
|
|
8545
8647
|
* @public
|
|
8546
8648
|
* @unofficial
|
|
8547
8649
|
*/
|
|
@@ -8549,6 +8651,7 @@ export interface DateOnOrAfterFunction extends BasesFunction, HasGetDisplayName,
|
|
|
8549
8651
|
}
|
|
8550
8652
|
/**
|
|
8551
8653
|
* Function `DateOnOrBefore`.
|
|
8654
|
+
*
|
|
8552
8655
|
* @public
|
|
8553
8656
|
* @unofficial
|
|
8554
8657
|
*/
|
|
@@ -8617,6 +8720,7 @@ export interface DatetimePropertyWidgetComponent extends DatePropertyWidgetCompo
|
|
|
8617
8720
|
}
|
|
8618
8721
|
/**
|
|
8619
8722
|
* Function `Day`.
|
|
8723
|
+
*
|
|
8620
8724
|
* @public
|
|
8621
8725
|
* @unofficial
|
|
8622
8726
|
*/
|
|
@@ -8624,6 +8728,7 @@ export interface DayFunction extends BasesFunction, HasExtract {
|
|
|
8624
8728
|
}
|
|
8625
8729
|
/**
|
|
8626
8730
|
* A lazily loaded view placeholder that defers initialization until the view is actually needed.
|
|
8731
|
+
*
|
|
8627
8732
|
* @public
|
|
8628
8733
|
* @unofficial
|
|
8629
8734
|
*/
|
|
@@ -8631,6 +8736,7 @@ export interface DeferredView extends View {
|
|
|
8631
8736
|
}
|
|
8632
8737
|
/**
|
|
8633
8738
|
* Width and height dimensions.
|
|
8739
|
+
*
|
|
8634
8740
|
* @public
|
|
8635
8741
|
* @unofficial
|
|
8636
8742
|
*/
|
|
@@ -8740,6 +8846,7 @@ export interface DomEventsHandlersInfo extends HoverParent {
|
|
|
8740
8846
|
}
|
|
8741
8847
|
/**
|
|
8742
8848
|
* Options for downloading a pre-v1.0.0 legacy theme.
|
|
8849
|
+
*
|
|
8743
8850
|
* @public
|
|
8744
8851
|
* @unofficial
|
|
8745
8852
|
*/
|
|
@@ -8749,6 +8856,7 @@ export interface DownloadLegacyThemeOptions {
|
|
|
8749
8856
|
}
|
|
8750
8857
|
/**
|
|
8751
8858
|
* Manager for drag-and-drop operations throughout the application.
|
|
8859
|
+
*
|
|
8752
8860
|
* @public
|
|
8753
8861
|
* @unofficial
|
|
8754
8862
|
*/
|
|
@@ -8909,6 +9017,7 @@ export interface DragManager {
|
|
|
8909
9017
|
}
|
|
8910
9018
|
/**
|
|
8911
9019
|
* Information about the initial drag start event.
|
|
9020
|
+
*
|
|
8912
9021
|
* @public
|
|
8913
9022
|
* @unofficial
|
|
8914
9023
|
*/
|
|
@@ -8920,6 +9029,7 @@ export interface DragStartEvent {
|
|
|
8920
9029
|
}
|
|
8921
9030
|
/**
|
|
8922
9031
|
* Represents a draggable item in the drag-and-drop system.
|
|
9032
|
+
*
|
|
8923
9033
|
* @public
|
|
8924
9034
|
* @unofficial
|
|
8925
9035
|
*/
|
|
@@ -8943,6 +9053,7 @@ export interface Draggable {
|
|
|
8943
9053
|
}
|
|
8944
9054
|
/**
|
|
8945
9055
|
* Result returned from a drop handler indicating the outcome of a drop operation.
|
|
9056
|
+
*
|
|
8946
9057
|
* @public
|
|
8947
9058
|
* @unofficial
|
|
8948
9059
|
*/
|
|
@@ -8958,6 +9069,7 @@ export interface DropResult {
|
|
|
8958
9069
|
}
|
|
8959
9070
|
/**
|
|
8960
9071
|
* Spatial index (R-tree) for efficient hit-testing and spatial queries on canvas edges and nodes.
|
|
9072
|
+
*
|
|
8961
9073
|
* @public
|
|
8962
9074
|
* @unofficial
|
|
8963
9075
|
*/
|
|
@@ -8983,6 +9095,7 @@ export interface EdgeIndex extends EdgeIndexBase {
|
|
|
8983
9095
|
}
|
|
8984
9096
|
/**
|
|
8985
9097
|
* Base interface for the spatial edge index, extending the R-tree with custom insert/remove behavior.
|
|
9098
|
+
*
|
|
8986
9099
|
* @public
|
|
8987
9100
|
* @unofficial
|
|
8988
9101
|
*/
|
|
@@ -9008,6 +9121,7 @@ export interface EdgeIndexBase extends EdgeIndexBaseBase {
|
|
|
9008
9121
|
}
|
|
9009
9122
|
/**
|
|
9010
9123
|
* R-tree spatial index base implementation for efficient spatial queries on canvas elements.
|
|
9124
|
+
*
|
|
9011
9125
|
* @public
|
|
9012
9126
|
* @unofficial
|
|
9013
9127
|
*/
|
|
@@ -9153,6 +9267,7 @@ export interface EdgeIndexBaseBase {
|
|
|
9153
9267
|
}
|
|
9154
9268
|
/**
|
|
9155
9269
|
* Node in the spatial index (R-tree) for canvas edges.
|
|
9270
|
+
*
|
|
9156
9271
|
* @public
|
|
9157
9272
|
* @unofficial
|
|
9158
9273
|
*/
|
|
@@ -9174,6 +9289,7 @@ export interface EditorLanguageSupport {
|
|
|
9174
9289
|
}
|
|
9175
9290
|
/**
|
|
9176
9291
|
* An extended editor range with nullable start and end positions.
|
|
9292
|
+
*
|
|
9177
9293
|
* @public
|
|
9178
9294
|
* @unofficial
|
|
9179
9295
|
*/
|
|
@@ -9185,6 +9301,7 @@ export interface EditorRangeEx {
|
|
|
9185
9301
|
}
|
|
9186
9302
|
/**
|
|
9187
9303
|
* Search component embedded in the editor for find-and-replace functionality.
|
|
9304
|
+
*
|
|
9188
9305
|
* @public
|
|
9189
9306
|
* @unofficial
|
|
9190
9307
|
*/
|
|
@@ -9269,6 +9386,7 @@ export interface EditorSearchComponent extends AbstractSearchComponent {
|
|
|
9269
9386
|
}
|
|
9270
9387
|
/**
|
|
9271
9388
|
* Represents a selection in the editor with anchor and head positions.
|
|
9389
|
+
*
|
|
9272
9390
|
* @public
|
|
9273
9391
|
* @unofficial
|
|
9274
9392
|
*/
|
|
@@ -9280,6 +9398,7 @@ export interface EditorSelection {
|
|
|
9280
9398
|
}
|
|
9281
9399
|
/**
|
|
9282
9400
|
* Internal plugin registration for the editor status bar feature.
|
|
9401
|
+
*
|
|
9283
9402
|
* @public
|
|
9284
9403
|
* @unofficial
|
|
9285
9404
|
*/
|
|
@@ -9287,6 +9406,7 @@ export interface EditorStatusPlugin extends InternalPlugin<EditorStatusPluginIns
|
|
|
9287
9406
|
}
|
|
9288
9407
|
/**
|
|
9289
9408
|
* Plugin instance for editor status, displaying editor information in the status bar.
|
|
9409
|
+
*
|
|
9290
9410
|
* @public
|
|
9291
9411
|
* @unofficial
|
|
9292
9412
|
*/
|
|
@@ -9302,6 +9422,7 @@ export interface EditorStatusPluginInstance extends InternalPluginInstance<Edito
|
|
|
9302
9422
|
}
|
|
9303
9423
|
/**
|
|
9304
9424
|
* Extended editor suggest interface for managing editor suggestion providers.
|
|
9425
|
+
*
|
|
9305
9426
|
* @public
|
|
9306
9427
|
* @unofficial
|
|
9307
9428
|
*/
|
|
@@ -9313,6 +9434,7 @@ export interface EditorSuggestEx {
|
|
|
9313
9434
|
}
|
|
9314
9435
|
/**
|
|
9315
9436
|
* Manager for editor suggestion popups providing autocompletion in the editor.
|
|
9437
|
+
*
|
|
9316
9438
|
* @public
|
|
9317
9439
|
* @unofficial
|
|
9318
9440
|
*/
|
|
@@ -9381,6 +9503,7 @@ export interface EditorSuggests {
|
|
|
9381
9503
|
}
|
|
9382
9504
|
/**
|
|
9383
9505
|
* Internal view state of the editor.
|
|
9506
|
+
*
|
|
9384
9507
|
* @public
|
|
9385
9508
|
* @unofficial
|
|
9386
9509
|
*/
|
|
@@ -9390,6 +9513,7 @@ export interface EditorViewState {
|
|
|
9390
9513
|
}
|
|
9391
9514
|
/**
|
|
9392
9515
|
* Extended Electron BrowserWindow with internal properties.
|
|
9516
|
+
*
|
|
9393
9517
|
* @public
|
|
9394
9518
|
* @unofficial
|
|
9395
9519
|
*/
|
|
@@ -9667,6 +9791,7 @@ export interface EmbedVideoComponent extends EmbedComponent {
|
|
|
9667
9791
|
}
|
|
9668
9792
|
/**
|
|
9669
9793
|
* View for an embedded markdown editor, supporting preview and edit modes.
|
|
9794
|
+
*
|
|
9670
9795
|
* @public
|
|
9671
9796
|
* @unofficial
|
|
9672
9797
|
*/
|
|
@@ -9813,6 +9938,7 @@ export interface EmbeddedEditorView extends Component {
|
|
|
9813
9938
|
}
|
|
9814
9939
|
/**
|
|
9815
9940
|
* Function `Empty`.
|
|
9941
|
+
*
|
|
9816
9942
|
* @public
|
|
9817
9943
|
* @unofficial
|
|
9818
9944
|
*/
|
|
@@ -9820,6 +9946,7 @@ export interface EmptyFunction extends BasesFunction, HasGetDisplayName, HasGetR
|
|
|
9820
9946
|
}
|
|
9821
9947
|
/**
|
|
9822
9948
|
* View displayed when a workspace leaf has no content or file open.
|
|
9949
|
+
*
|
|
9823
9950
|
* @public
|
|
9824
9951
|
* @unofficial
|
|
9825
9952
|
*/
|
|
@@ -9833,6 +9960,7 @@ export interface EmptyView extends ItemView {
|
|
|
9833
9960
|
}
|
|
9834
9961
|
/**
|
|
9835
9962
|
* Represents an enclosing HTML/XML tag pair with open and close ranges.
|
|
9963
|
+
*
|
|
9836
9964
|
* @public
|
|
9837
9965
|
* @unofficial
|
|
9838
9966
|
*/
|
|
@@ -9844,21 +9972,31 @@ export interface EnclosingTag {
|
|
|
9844
9972
|
}
|
|
9845
9973
|
/**
|
|
9846
9974
|
* Options for ensuring a side leaf exists in the workspace.
|
|
9975
|
+
*
|
|
9847
9976
|
* @public
|
|
9848
9977
|
* @unofficial
|
|
9849
9978
|
*/
|
|
9850
9979
|
export interface EnsureSideLeafOptions {
|
|
9851
|
-
/**
|
|
9980
|
+
/**
|
|
9981
|
+
* Whether the leaf should be set as active.
|
|
9982
|
+
*/
|
|
9852
9983
|
active?: boolean;
|
|
9853
|
-
/**
|
|
9984
|
+
/**
|
|
9985
|
+
* Whether the leaf should be revealed.
|
|
9986
|
+
*/
|
|
9854
9987
|
reveal?: boolean;
|
|
9855
|
-
/**
|
|
9988
|
+
/**
|
|
9989
|
+
* Whether to create a new split for the leaf.
|
|
9990
|
+
*/
|
|
9856
9991
|
split?: boolean;
|
|
9857
|
-
/**
|
|
9992
|
+
/**
|
|
9993
|
+
* The state to set on the leaf.
|
|
9994
|
+
*/
|
|
9858
9995
|
state?: unknown;
|
|
9859
9996
|
}
|
|
9860
9997
|
/**
|
|
9861
9998
|
* Function `Equal`.
|
|
9999
|
+
*
|
|
9862
10000
|
* @public
|
|
9863
10001
|
* @unofficial
|
|
9864
10002
|
*/
|
|
@@ -9866,6 +10004,7 @@ export interface EqualFunction extends BasesFunction, HasGetDisplayName, HasComp
|
|
|
9866
10004
|
}
|
|
9867
10005
|
/**
|
|
9868
10006
|
* An entry representing a registered event handler.
|
|
10007
|
+
*
|
|
9869
10008
|
* @public
|
|
9870
10009
|
* @unofficial
|
|
9871
10010
|
*/
|
|
@@ -9886,6 +10025,7 @@ export interface EventsEntry {
|
|
|
9886
10025
|
}
|
|
9887
10026
|
/**
|
|
9888
10027
|
* Font metrics used by MathJax for scaling and positioning math output.
|
|
10028
|
+
*
|
|
9889
10029
|
* @public
|
|
9890
10030
|
* @unofficial
|
|
9891
10031
|
*/
|
|
@@ -9905,6 +10045,7 @@ export interface ExtendedMetrics {
|
|
|
9905
10045
|
}
|
|
9906
10046
|
/**
|
|
9907
10047
|
* Bookmark item representing a bookmarked file.
|
|
10048
|
+
*
|
|
9908
10049
|
* @public
|
|
9909
10050
|
* @unofficial
|
|
9910
10051
|
*/
|
|
@@ -9918,6 +10059,7 @@ export interface FileBookmarkItem extends BookmarkItem {
|
|
|
9918
10059
|
}
|
|
9919
10060
|
/**
|
|
9920
10061
|
* Cache entry storing file hash, modification time, and size.
|
|
10062
|
+
*
|
|
9921
10063
|
* @public
|
|
9922
10064
|
* @unofficial
|
|
9923
10065
|
*/
|
|
@@ -9937,6 +10079,7 @@ export interface FileCacheEntry {
|
|
|
9937
10079
|
}
|
|
9938
10080
|
/**
|
|
9939
10081
|
* Represents a file or folder entry in the data adapter's file listing.
|
|
10082
|
+
*
|
|
9940
10083
|
* @public
|
|
9941
10084
|
* @unofficial
|
|
9942
10085
|
*/
|
|
@@ -9962,6 +10105,7 @@ export interface FileEntry extends Partial<FileStats> {
|
|
|
9962
10105
|
}
|
|
9963
10106
|
/**
|
|
9964
10107
|
* Internal plugin registration for the file explorer sidebar.
|
|
10108
|
+
*
|
|
9965
10109
|
* @public
|
|
9966
10110
|
* @unofficial
|
|
9967
10111
|
*/
|
|
@@ -9976,6 +10120,7 @@ export interface FileExplorerPlugin extends InternalPlugin<FileExplorerPluginIns
|
|
|
9976
10120
|
}
|
|
9977
10121
|
/**
|
|
9978
10122
|
* Plugin instance for the file explorer, managing the file tree sidebar view.
|
|
10123
|
+
*
|
|
9979
10124
|
* @public
|
|
9980
10125
|
* @unofficial
|
|
9981
10126
|
*/
|
|
@@ -9996,6 +10141,7 @@ export interface FileExplorerPluginInstance extends InternalPluginInstance<FileE
|
|
|
9996
10141
|
}
|
|
9997
10142
|
/**
|
|
9998
10143
|
* View that renders the file explorer tree sidebar for navigating vault files and folders.
|
|
10144
|
+
*
|
|
9999
10145
|
* @public
|
|
10000
10146
|
* @unofficial
|
|
10001
10147
|
*/
|
|
@@ -10268,6 +10414,7 @@ export interface FileExplorerView extends View {
|
|
|
10268
10414
|
}
|
|
10269
10415
|
/**
|
|
10270
10416
|
* Record mapping file paths to their corresponding file or folder tree items.
|
|
10417
|
+
*
|
|
10271
10418
|
* @public
|
|
10272
10419
|
* @unofficial
|
|
10273
10420
|
*/
|
|
@@ -10275,6 +10422,7 @@ export interface FileExplorerViewFileItemsRecord extends Record<string, FileTree
|
|
|
10275
10422
|
}
|
|
10276
10423
|
/**
|
|
10277
10424
|
* View that displays frontmatter properties for the current file.
|
|
10425
|
+
*
|
|
10278
10426
|
* @public
|
|
10279
10427
|
* @unofficial
|
|
10280
10428
|
*/
|
|
@@ -10377,6 +10525,7 @@ export interface FilePropertyWidgetComponent extends PropertyWidgetComponentBase
|
|
|
10377
10525
|
}
|
|
10378
10526
|
/**
|
|
10379
10527
|
* Internal plugin registration for the file recovery/snapshots feature.
|
|
10528
|
+
*
|
|
10380
10529
|
* @public
|
|
10381
10530
|
* @unofficial
|
|
10382
10531
|
*/
|
|
@@ -10384,6 +10533,7 @@ export interface FileRecoveryPlugin extends InternalPlugin<FileRecoveryPluginIns
|
|
|
10384
10533
|
}
|
|
10385
10534
|
/**
|
|
10386
10535
|
* Plugin instance for file recovery, managing file snapshots for restoration.
|
|
10536
|
+
*
|
|
10387
10537
|
* @public
|
|
10388
10538
|
* @unofficial
|
|
10389
10539
|
*/
|
|
@@ -10408,6 +10558,7 @@ export interface FileSuggest<T> extends EditorSuggest<T> {
|
|
|
10408
10558
|
}
|
|
10409
10559
|
/**
|
|
10410
10560
|
* File suggest manager.
|
|
10561
|
+
*
|
|
10411
10562
|
* @public
|
|
10412
10563
|
* @unofficial
|
|
10413
10564
|
*/
|
|
@@ -10522,6 +10673,7 @@ export interface FileSuggestManager {
|
|
|
10522
10673
|
}
|
|
10523
10674
|
/**
|
|
10524
10675
|
* File suggestion.
|
|
10676
|
+
*
|
|
10525
10677
|
* @public
|
|
10526
10678
|
* @unofficial
|
|
10527
10679
|
*/
|
|
@@ -10537,6 +10689,7 @@ export interface FileSuggestion {
|
|
|
10537
10689
|
}
|
|
10538
10690
|
/**
|
|
10539
10691
|
* Callback interface for handling file system watch events.
|
|
10692
|
+
*
|
|
10540
10693
|
* @public
|
|
10541
10694
|
* @unofficial
|
|
10542
10695
|
*/
|
|
@@ -10552,6 +10705,7 @@ export interface FileSystemWatchHandler {
|
|
|
10552
10705
|
}
|
|
10553
10706
|
/**
|
|
10554
10707
|
* Tree item representing a file in the file explorer.
|
|
10708
|
+
*
|
|
10555
10709
|
* @public
|
|
10556
10710
|
* @unofficial
|
|
10557
10711
|
*/
|
|
@@ -10570,6 +10724,7 @@ export interface FileTreeItem extends AbstractFileTreeItem<TFile> {
|
|
|
10570
10724
|
}
|
|
10571
10725
|
/**
|
|
10572
10726
|
* Function `Flat`.
|
|
10727
|
+
*
|
|
10573
10728
|
* @public
|
|
10574
10729
|
* @unofficial
|
|
10575
10730
|
*/
|
|
@@ -10577,6 +10732,7 @@ export interface FlatFunction extends BasesFunction {
|
|
|
10577
10732
|
}
|
|
10578
10733
|
/**
|
|
10579
10734
|
* Function `Floor`.
|
|
10735
|
+
*
|
|
10580
10736
|
* @public
|
|
10581
10737
|
* @unofficial
|
|
10582
10738
|
*/
|
|
@@ -10584,6 +10740,7 @@ export interface FloorFunction extends BasesFunction, HasGetDisplayName {
|
|
|
10584
10740
|
}
|
|
10585
10741
|
/**
|
|
10586
10742
|
* Options for focusing a specific property or heading in the metadata editor.
|
|
10743
|
+
*
|
|
10587
10744
|
* @public
|
|
10588
10745
|
* @unofficial
|
|
10589
10746
|
*/
|
|
@@ -10597,6 +10754,7 @@ export interface FocusMetadataOptions {
|
|
|
10597
10754
|
}
|
|
10598
10755
|
/**
|
|
10599
10756
|
* Represents a folded range in the editor.
|
|
10757
|
+
*
|
|
10600
10758
|
* @public
|
|
10601
10759
|
* @unofficial
|
|
10602
10760
|
*/
|
|
@@ -10608,6 +10766,7 @@ export interface Fold {
|
|
|
10608
10766
|
}
|
|
10609
10767
|
/**
|
|
10610
10768
|
* Information about all folds in a document.
|
|
10769
|
+
*
|
|
10611
10770
|
* @public
|
|
10612
10771
|
* @unofficial
|
|
10613
10772
|
*/
|
|
@@ -10619,6 +10778,7 @@ export interface FoldInfo {
|
|
|
10619
10778
|
}
|
|
10620
10779
|
/**
|
|
10621
10780
|
* Manager for persisting and restoring editor fold states.
|
|
10781
|
+
*
|
|
10622
10782
|
* @public
|
|
10623
10783
|
* @unofficial
|
|
10624
10784
|
*/
|
|
@@ -10669,6 +10829,7 @@ export interface FoldManager {
|
|
|
10669
10829
|
}
|
|
10670
10830
|
/**
|
|
10671
10831
|
* Bookmark item representing a bookmarked folder.
|
|
10832
|
+
*
|
|
10672
10833
|
* @public
|
|
10673
10834
|
* @unofficial
|
|
10674
10835
|
*/
|
|
@@ -10704,6 +10865,7 @@ export interface FolderPropertyWidgetComponent extends PropertyWidgetComponentBa
|
|
|
10704
10865
|
}
|
|
10705
10866
|
/**
|
|
10706
10867
|
* Tree item representing a folder in the file explorer, supporting collapse and child items.
|
|
10868
|
+
*
|
|
10707
10869
|
* @public
|
|
10708
10870
|
* @unofficial
|
|
10709
10871
|
*/
|
|
@@ -10719,6 +10881,7 @@ export interface FolderTreeItem extends AbstractFileTreeItem<TFile>, TreeCollaps
|
|
|
10719
10881
|
}
|
|
10720
10882
|
/**
|
|
10721
10883
|
* Internal plugin registration for the footnotes feature.
|
|
10884
|
+
*
|
|
10722
10885
|
* @public
|
|
10723
10886
|
* @unofficial
|
|
10724
10887
|
*/
|
|
@@ -10726,6 +10889,7 @@ export interface FootnotesPlugin extends InternalPlugin<FootnotesPluginInstance>
|
|
|
10726
10889
|
}
|
|
10727
10890
|
/**
|
|
10728
10891
|
* Plugin instance for footnotes, providing footnote creation and navigation.
|
|
10892
|
+
*
|
|
10729
10893
|
* @public
|
|
10730
10894
|
* @unofficial
|
|
10731
10895
|
*/
|
|
@@ -10735,6 +10899,7 @@ export interface FootnotesPluginInstance extends InternalPluginInstance<Footnote
|
|
|
10735
10899
|
}
|
|
10736
10900
|
/**
|
|
10737
10901
|
* DOM elements for the custom window frame (title bar) on desktop.
|
|
10902
|
+
*
|
|
10738
10903
|
* @public
|
|
10739
10904
|
* @unofficial
|
|
10740
10905
|
*/
|
|
@@ -10771,6 +10936,7 @@ export interface FrameDom {
|
|
|
10771
10936
|
}
|
|
10772
10937
|
/**
|
|
10773
10938
|
* Options for getting recent files.
|
|
10939
|
+
*
|
|
10774
10940
|
* @public
|
|
10775
10941
|
* @unofficial
|
|
10776
10942
|
*/
|
|
@@ -10802,6 +10968,7 @@ export interface GetRecentFilesOptions {
|
|
|
10802
10968
|
}
|
|
10803
10969
|
/**
|
|
10804
10970
|
* Internal plugin registration for the global search feature.
|
|
10971
|
+
*
|
|
10805
10972
|
* @public
|
|
10806
10973
|
* @unofficial
|
|
10807
10974
|
*/
|
|
@@ -10809,6 +10976,7 @@ export interface GlobalSearchPlugin extends InternalPlugin<GlobalSearchPluginIns
|
|
|
10809
10976
|
}
|
|
10810
10977
|
/**
|
|
10811
10978
|
* Plugin instance for global search, providing vault-wide text search functionality.
|
|
10979
|
+
*
|
|
10812
10980
|
* @public
|
|
10813
10981
|
* @unofficial
|
|
10814
10982
|
*/
|
|
@@ -10822,6 +10990,7 @@ export interface GlobalSearchPluginInstance extends InternalPluginInstance<Globa
|
|
|
10822
10990
|
}
|
|
10823
10991
|
/**
|
|
10824
10992
|
* Bookmark item representing a saved graph view configuration.
|
|
10993
|
+
*
|
|
10825
10994
|
* @public
|
|
10826
10995
|
* @unofficial
|
|
10827
10996
|
*/
|
|
@@ -10859,6 +11028,7 @@ export interface GraphColorGroup {
|
|
|
10859
11028
|
}
|
|
10860
11029
|
/**
|
|
10861
11030
|
* Options section for managing color groups that visually categorize graph nodes.
|
|
11031
|
+
*
|
|
10862
11032
|
* @public
|
|
10863
11033
|
* @unofficial
|
|
10864
11034
|
*/
|
|
@@ -10868,6 +11038,7 @@ export interface GraphColorGroupOptions extends GraphOptions {
|
|
|
10868
11038
|
}
|
|
10869
11039
|
/**
|
|
10870
11040
|
* UI components for a single color group entry in the graph settings panel.
|
|
11041
|
+
*
|
|
10871
11042
|
* @public
|
|
10872
11043
|
* @unofficial
|
|
10873
11044
|
*/
|
|
@@ -10893,6 +11064,7 @@ export interface GraphData {
|
|
|
10893
11064
|
}
|
|
10894
11065
|
/**
|
|
10895
11066
|
* Options section for graph display settings such as node size, line thickness, and arrows.
|
|
11067
|
+
*
|
|
10896
11068
|
* @public
|
|
10897
11069
|
* @unofficial
|
|
10898
11070
|
*/
|
|
@@ -10962,6 +11134,7 @@ export interface GraphEngine {
|
|
|
10962
11134
|
}
|
|
10963
11135
|
/**
|
|
10964
11136
|
* Filter map determining which files appear in the graph, keyed by file path with color or visibility values.
|
|
11137
|
+
*
|
|
10965
11138
|
* @public
|
|
10966
11139
|
* @unofficial
|
|
10967
11140
|
*/
|
|
@@ -10969,6 +11142,7 @@ export interface GraphFileFilter extends Record<string, boolean | GraphColorAttr
|
|
|
10969
11142
|
}
|
|
10970
11143
|
/**
|
|
10971
11144
|
* Options section for graph filter settings controlling which files appear in the graph.
|
|
11145
|
+
*
|
|
10972
11146
|
* @public
|
|
10973
11147
|
* @unofficial
|
|
10974
11148
|
*/
|
|
@@ -10980,6 +11154,7 @@ export interface GraphFilterOptions extends GraphOptions {
|
|
|
10980
11154
|
}
|
|
10981
11155
|
/**
|
|
10982
11156
|
* Options section for graph force simulation parameters such as repel, link, and center forces.
|
|
11157
|
+
*
|
|
10983
11158
|
* @public
|
|
10984
11159
|
* @unofficial
|
|
10985
11160
|
*/
|
|
@@ -11139,6 +11314,7 @@ export interface GraphNodeData {
|
|
|
11139
11314
|
}
|
|
11140
11315
|
/**
|
|
11141
11316
|
* Base interface for a collapsible graph options section in the settings panel.
|
|
11317
|
+
*
|
|
11142
11318
|
* @public
|
|
11143
11319
|
* @unofficial
|
|
11144
11320
|
*/
|
|
@@ -11160,6 +11336,7 @@ export interface GraphOptions extends TreeCollapsibleItem {
|
|
|
11160
11336
|
}
|
|
11161
11337
|
/**
|
|
11162
11338
|
* Internal plugin that provides graph view functionality.
|
|
11339
|
+
*
|
|
11163
11340
|
* @public
|
|
11164
11341
|
* @unofficial
|
|
11165
11342
|
*/
|
|
@@ -11167,6 +11344,7 @@ export interface GraphPlugin extends InternalPlugin<GraphPluginInstance> {
|
|
|
11167
11344
|
}
|
|
11168
11345
|
/**
|
|
11169
11346
|
* Instance of the graph internal plugin, managing graph views and options.
|
|
11347
|
+
*
|
|
11170
11348
|
* @public
|
|
11171
11349
|
* @unofficial
|
|
11172
11350
|
*/
|
|
@@ -11214,6 +11392,7 @@ export interface GraphPluginInstance extends InternalPluginInstance<GraphPlugin>
|
|
|
11214
11392
|
}
|
|
11215
11393
|
/**
|
|
11216
11394
|
* User-configurable options for the graph plugin, persisted in graph.json.
|
|
11395
|
+
*
|
|
11217
11396
|
* @public
|
|
11218
11397
|
* @unofficial
|
|
11219
11398
|
*/
|
|
@@ -11269,6 +11448,7 @@ export interface GraphPluginInstanceOptions {
|
|
|
11269
11448
|
}
|
|
11270
11449
|
/**
|
|
11271
11450
|
* Renderer for the graph view, managing PixiJS rendering, user interactions, and layout.
|
|
11451
|
+
*
|
|
11272
11452
|
* @public
|
|
11273
11453
|
* @unofficial
|
|
11274
11454
|
*/
|
|
@@ -11514,6 +11694,7 @@ export interface GraphView extends ItemView {
|
|
|
11514
11694
|
}
|
|
11515
11695
|
/**
|
|
11516
11696
|
* Function `Greater`.
|
|
11697
|
+
*
|
|
11517
11698
|
* @public
|
|
11518
11699
|
* @unofficial
|
|
11519
11700
|
*/
|
|
@@ -11521,6 +11702,7 @@ export interface GreaterFunction extends BasesFunction, HasGetDisplayName, HasCo
|
|
|
11521
11702
|
}
|
|
11522
11703
|
/**
|
|
11523
11704
|
* Function `GreaterOrEqual`.
|
|
11705
|
+
*
|
|
11524
11706
|
* @public
|
|
11525
11707
|
* @unofficial
|
|
11526
11708
|
*/
|
|
@@ -11528,6 +11710,7 @@ export interface GreaterOrEqualFunction extends BasesFunction, HasGetDisplayName
|
|
|
11528
11710
|
}
|
|
11529
11711
|
/**
|
|
11530
11712
|
* Bookmark item representing a group that contains other bookmark items.
|
|
11713
|
+
*
|
|
11531
11714
|
* @public
|
|
11532
11715
|
* @unofficial
|
|
11533
11716
|
*/
|
|
@@ -11541,6 +11724,7 @@ export interface GroupBookmarkItem extends BookmarkItem {
|
|
|
11541
11724
|
}
|
|
11542
11725
|
/**
|
|
11543
11726
|
* Options for hard-wrapping text in the editor.
|
|
11727
|
+
*
|
|
11544
11728
|
* @public
|
|
11545
11729
|
* @unofficial
|
|
11546
11730
|
*/
|
|
@@ -11617,6 +11801,7 @@ export interface HasGetRHSWidgetType {
|
|
|
11617
11801
|
}
|
|
11618
11802
|
/**
|
|
11619
11803
|
* Renders navigation buttons and sort controls for a section header in the backlink view.
|
|
11804
|
+
*
|
|
11620
11805
|
* @public
|
|
11621
11806
|
* @unofficial
|
|
11622
11807
|
*/
|
|
@@ -11642,6 +11827,7 @@ export interface HeaderDom {
|
|
|
11642
11827
|
}
|
|
11643
11828
|
/**
|
|
11644
11829
|
* Information about a heading section in a note, including its text and position range.
|
|
11830
|
+
*
|
|
11645
11831
|
* @public
|
|
11646
11832
|
* @unofficial
|
|
11647
11833
|
*/
|
|
@@ -11655,6 +11841,7 @@ export interface HeadingInfo {
|
|
|
11655
11841
|
}
|
|
11656
11842
|
/**
|
|
11657
11843
|
* Manager for keyboard shortcut registration, storage, and triggering.
|
|
11844
|
+
*
|
|
11658
11845
|
* @public
|
|
11659
11846
|
* @unofficial
|
|
11660
11847
|
*/
|
|
@@ -11770,6 +11957,7 @@ export interface HotkeyManager {
|
|
|
11770
11957
|
}
|
|
11771
11958
|
/**
|
|
11772
11959
|
* Record mapping command IDs to their user-customized hotkey bindings.
|
|
11960
|
+
*
|
|
11773
11961
|
* @public
|
|
11774
11962
|
* @unofficial
|
|
11775
11963
|
*/
|
|
@@ -11777,6 +11965,7 @@ export interface HotkeyManagerCustomKeysRecord extends Record<string, KeymapInfo
|
|
|
11777
11965
|
}
|
|
11778
11966
|
/**
|
|
11779
11967
|
* Record mapping command IDs to their default hotkey bindings.
|
|
11968
|
+
*
|
|
11780
11969
|
* @public
|
|
11781
11970
|
* @unofficial
|
|
11782
11971
|
*/
|
|
@@ -11784,6 +11973,7 @@ export interface HotkeyManagerDefaultKeysRecord extends Record<string, KeymapInf
|
|
|
11784
11973
|
}
|
|
11785
11974
|
/**
|
|
11786
11975
|
* Setting tab for viewing and editing keyboard hotkeys.
|
|
11976
|
+
*
|
|
11787
11977
|
* @public
|
|
11788
11978
|
* @unofficial
|
|
11789
11979
|
*/
|
|
@@ -11795,6 +11985,7 @@ export interface HotkeysSettingTab extends SettingTab {
|
|
|
11795
11985
|
}
|
|
11796
11986
|
/**
|
|
11797
11987
|
* Function `Hour`.
|
|
11988
|
+
*
|
|
11798
11989
|
* @public
|
|
11799
11990
|
* @unofficial
|
|
11800
11991
|
*/
|
|
@@ -11838,6 +12029,7 @@ export interface HoverLinkEvent {
|
|
|
11838
12029
|
}
|
|
11839
12030
|
/**
|
|
11840
12031
|
* State passed with hover link events.
|
|
12032
|
+
*
|
|
11841
12033
|
* @public
|
|
11842
12034
|
* @unofficial
|
|
11843
12035
|
*/
|
|
@@ -11847,6 +12039,7 @@ export interface HoverLinkEventState {
|
|
|
11847
12039
|
}
|
|
11848
12040
|
/**
|
|
11849
12041
|
* A markdown editor that runs inside an iframe, used for embedded editable views.
|
|
12042
|
+
*
|
|
11850
12043
|
* @public
|
|
11851
12044
|
* @unofficial
|
|
11852
12045
|
*/
|
|
@@ -11888,6 +12081,7 @@ export interface IFramedMarkdownEditor extends MarkdownScrollableEditView {
|
|
|
11888
12081
|
}
|
|
11889
12082
|
/**
|
|
11890
12083
|
* Function `If`.
|
|
12084
|
+
*
|
|
11891
12085
|
* @public
|
|
11892
12086
|
* @unofficial
|
|
11893
12087
|
*/
|
|
@@ -11895,6 +12089,7 @@ export interface IfFunction extends BasesFunction {
|
|
|
11895
12089
|
}
|
|
11896
12090
|
/**
|
|
11897
12091
|
* View for displaying image files.
|
|
12092
|
+
*
|
|
11898
12093
|
* @public
|
|
11899
12094
|
* @unofficial
|
|
11900
12095
|
*/
|
|
@@ -11924,6 +12119,7 @@ export interface ImportedAttachment {
|
|
|
11924
12119
|
}
|
|
11925
12120
|
/**
|
|
11926
12121
|
* Function `InFolder`.
|
|
12122
|
+
*
|
|
11927
12123
|
* @public
|
|
11928
12124
|
* @unofficial
|
|
11929
12125
|
*/
|
|
@@ -11931,6 +12127,7 @@ export interface InFolderFunction extends BasesFunction, HasGetDisplayName, HasG
|
|
|
11931
12127
|
}
|
|
11932
12128
|
/**
|
|
11933
12129
|
* Function `Index`.
|
|
12130
|
+
*
|
|
11934
12131
|
* @public
|
|
11935
12132
|
* @unofficial
|
|
11936
12133
|
*/
|
|
@@ -11938,6 +12135,7 @@ export interface IndexFunction extends BasesFunction, HasGetDisplayName, HasGetR
|
|
|
11938
12135
|
}
|
|
11939
12136
|
/**
|
|
11940
12137
|
* Virtual scrolling component that renders only visible items in large lists for performance.
|
|
12138
|
+
*
|
|
11941
12139
|
* @public
|
|
11942
12140
|
* @unofficial
|
|
11943
12141
|
*/
|
|
@@ -12087,6 +12285,7 @@ export interface InfoFileView extends FileView {
|
|
|
12087
12285
|
}
|
|
12088
12286
|
/**
|
|
12089
12287
|
* Options for installing a theme from a repository.
|
|
12288
|
+
*
|
|
12090
12289
|
* @public
|
|
12091
12290
|
* @unofficial
|
|
12092
12291
|
*/
|
|
@@ -12277,6 +12476,7 @@ export interface InternalPluginInstance<InternalPlugin> {
|
|
|
12277
12476
|
}
|
|
12278
12477
|
/**
|
|
12279
12478
|
* Manager for all internal (core) plugins, handling registration, enabling, and configuration.
|
|
12479
|
+
*
|
|
12280
12480
|
* @public
|
|
12281
12481
|
* @unofficial
|
|
12282
12482
|
*/
|
|
@@ -12358,6 +12558,7 @@ export interface InternalPlugins extends Events {
|
|
|
12358
12558
|
}
|
|
12359
12559
|
/**
|
|
12360
12560
|
* Record mapping internal plugin names to their enabled/disabled state.
|
|
12561
|
+
*
|
|
12361
12562
|
* @public
|
|
12362
12563
|
* @unofficial
|
|
12363
12564
|
*/
|
|
@@ -12469,6 +12670,7 @@ export interface ItemQueueItems<T> {
|
|
|
12469
12670
|
}
|
|
12470
12671
|
/**
|
|
12471
12672
|
* Function `Join`.
|
|
12673
|
+
*
|
|
12472
12674
|
* @public
|
|
12473
12675
|
* @unofficial
|
|
12474
12676
|
*/
|
|
@@ -12476,6 +12678,7 @@ export interface JoinFunction extends BasesFunction {
|
|
|
12476
12678
|
}
|
|
12477
12679
|
/**
|
|
12478
12680
|
* A registered keyboard shortcut interceptor within a scope.
|
|
12681
|
+
*
|
|
12479
12682
|
* @public
|
|
12480
12683
|
* @unofficial
|
|
12481
12684
|
*/
|
|
@@ -12521,6 +12724,7 @@ export interface KeyboardActions {
|
|
|
12521
12724
|
}
|
|
12522
12725
|
/**
|
|
12523
12726
|
* Internal state for a language's parser, tracking the parse tree and context.
|
|
12727
|
+
*
|
|
12524
12728
|
* @see https://github.com/codemirror/language/blob/main/src/language.ts
|
|
12525
12729
|
* @unofficial
|
|
12526
12730
|
* @public
|
|
@@ -12545,6 +12749,7 @@ export interface LanguageState {
|
|
|
12545
12749
|
}
|
|
12546
12750
|
/**
|
|
12547
12751
|
* Serialized representation of a workspace leaf or split for layout persistence.
|
|
12752
|
+
*
|
|
12548
12753
|
* @public
|
|
12549
12754
|
* @unofficial
|
|
12550
12755
|
*/
|
|
@@ -12564,6 +12769,7 @@ export interface LeafEntry {
|
|
|
12564
12769
|
}
|
|
12565
12770
|
/**
|
|
12566
12771
|
* Function `Len`.
|
|
12772
|
+
*
|
|
12567
12773
|
* @public
|
|
12568
12774
|
* @unofficial
|
|
12569
12775
|
*/
|
|
@@ -12571,6 +12777,7 @@ export interface LenFunction extends BasesFunction {
|
|
|
12571
12777
|
}
|
|
12572
12778
|
/**
|
|
12573
12779
|
* Function `Less`.
|
|
12780
|
+
*
|
|
12574
12781
|
* @public
|
|
12575
12782
|
* @unofficial
|
|
12576
12783
|
*/
|
|
@@ -12578,6 +12785,7 @@ export interface LessFunction extends BasesFunction, HasGetDisplayName, HasCompa
|
|
|
12578
12785
|
}
|
|
12579
12786
|
/**
|
|
12580
12787
|
* Function `LessOrEqual`.
|
|
12788
|
+
*
|
|
12581
12789
|
* @public
|
|
12582
12790
|
* @unofficial
|
|
12583
12791
|
*/
|
|
@@ -12585,6 +12793,7 @@ export interface LessOrEqualFunction extends BasesFunction, HasGetDisplayName, H
|
|
|
12585
12793
|
}
|
|
12586
12794
|
/**
|
|
12587
12795
|
* Handle referencing a specific line in the editor document.
|
|
12796
|
+
*
|
|
12588
12797
|
* @public
|
|
12589
12798
|
* @unofficial
|
|
12590
12799
|
*/
|
|
@@ -12596,6 +12805,7 @@ export interface LineHandle {
|
|
|
12596
12805
|
}
|
|
12597
12806
|
/**
|
|
12598
12807
|
* Describes a change applied to a line handle.
|
|
12808
|
+
*
|
|
12599
12809
|
* @public
|
|
12600
12810
|
* @unofficial
|
|
12601
12811
|
*/
|
|
@@ -12605,6 +12815,7 @@ export interface LineHandleChange {
|
|
|
12605
12815
|
}
|
|
12606
12816
|
/**
|
|
12607
12817
|
* Describes a single link change to apply when a file is renamed or moved.
|
|
12818
|
+
*
|
|
12608
12819
|
* @public
|
|
12609
12820
|
* @unofficial
|
|
12610
12821
|
*/
|
|
@@ -12629,6 +12840,7 @@ export interface LinkSuggestion extends FileSuggestion {
|
|
|
12629
12840
|
}
|
|
12630
12841
|
/**
|
|
12631
12842
|
* Represents a link that needs to be updated due to a file rename or move.
|
|
12843
|
+
*
|
|
12632
12844
|
* @public
|
|
12633
12845
|
* @unofficial
|
|
12634
12846
|
*/
|
|
@@ -12652,6 +12864,7 @@ export interface LinkUpdate {
|
|
|
12652
12864
|
}
|
|
12653
12865
|
/**
|
|
12654
12866
|
* Handler for updating links within a specific file type when files are renamed or moved.
|
|
12867
|
+
*
|
|
12655
12868
|
* @public
|
|
12656
12869
|
* @unofficial
|
|
12657
12870
|
*/
|
|
@@ -12689,6 +12902,7 @@ export interface LinkUpdater {
|
|
|
12689
12902
|
}
|
|
12690
12903
|
/**
|
|
12691
12904
|
* Record of link updaters keyed by file type, used to update links when files are renamed or moved.
|
|
12905
|
+
*
|
|
12692
12906
|
* @public
|
|
12693
12907
|
* @unofficial
|
|
12694
12908
|
*/
|
|
@@ -12698,6 +12912,7 @@ export interface LinkUpdaters extends Record<string, LinkUpdater> {
|
|
|
12698
12912
|
}
|
|
12699
12913
|
/**
|
|
12700
12914
|
* Function `LinksTo`.
|
|
12915
|
+
*
|
|
12701
12916
|
* @public
|
|
12702
12917
|
* @unofficial
|
|
12703
12918
|
*/
|
|
@@ -12705,6 +12920,7 @@ export interface LinksToFunction extends BasesFunction, HasGetDisplayName, HasGe
|
|
|
12705
12920
|
}
|
|
12706
12921
|
/**
|
|
12707
12922
|
* Represents a loading progress indicator.
|
|
12923
|
+
*
|
|
12708
12924
|
* @public
|
|
12709
12925
|
* @unofficial
|
|
12710
12926
|
*/
|
|
@@ -12744,6 +12960,7 @@ export interface LocalGraphView extends InfoFileView {
|
|
|
12744
12960
|
}
|
|
12745
12961
|
/**
|
|
12746
12962
|
* Nested dictionary of localization strings for internationalization.
|
|
12963
|
+
*
|
|
12747
12964
|
* @public
|
|
12748
12965
|
* @unofficial
|
|
12749
12966
|
*/
|
|
@@ -12793,6 +13010,7 @@ export interface MapOfSets<Key, Value> {
|
|
|
12793
13010
|
}
|
|
12794
13011
|
/**
|
|
12795
13012
|
* Base interface for markdown editor views, providing CodeMirror integration and editing capabilities.
|
|
13013
|
+
*
|
|
12796
13014
|
* @public
|
|
12797
13015
|
* @unofficial
|
|
12798
13016
|
*/
|
|
@@ -13044,6 +13262,7 @@ export interface MarkdownBaseView extends Component {
|
|
|
13044
13262
|
}
|
|
13045
13263
|
/**
|
|
13046
13264
|
* Ephemeral state for the markdown edit view, storing cursor position.
|
|
13265
|
+
*
|
|
13047
13266
|
* @public
|
|
13048
13267
|
* @unofficial
|
|
13049
13268
|
*/
|
|
@@ -13053,6 +13272,7 @@ export interface MarkdownEditViewEphemeralState {
|
|
|
13053
13272
|
}
|
|
13054
13273
|
/**
|
|
13055
13274
|
* Internal plugin registration for the Markdown importer feature.
|
|
13275
|
+
*
|
|
13056
13276
|
* @public
|
|
13057
13277
|
* @unofficial
|
|
13058
13278
|
*/
|
|
@@ -13060,6 +13280,7 @@ export interface MarkdownImporterPlugin extends InternalPlugin<MarkdownImporterP
|
|
|
13060
13280
|
}
|
|
13061
13281
|
/**
|
|
13062
13282
|
* Plugin instance for the Markdown importer, providing conversion from other formats to Markdown.
|
|
13283
|
+
*
|
|
13063
13284
|
* @public
|
|
13064
13285
|
* @unofficial
|
|
13065
13286
|
*/
|
|
@@ -13069,6 +13290,7 @@ export interface MarkdownImporterPluginInstance extends InternalPluginInstance<M
|
|
|
13069
13290
|
}
|
|
13070
13291
|
/**
|
|
13071
13292
|
* Extended markdown editor view with scrolling, search, and CSS class management.
|
|
13293
|
+
*
|
|
13072
13294
|
* @public
|
|
13073
13295
|
* @unofficial
|
|
13074
13296
|
*/
|
|
@@ -13183,6 +13405,7 @@ export interface MarkdownScrollableEditView extends MarkdownBaseView {
|
|
|
13183
13405
|
}
|
|
13184
13406
|
/**
|
|
13185
13407
|
* Ephemeral state for a markdown view, storing scroll position.
|
|
13408
|
+
*
|
|
13186
13409
|
* @public
|
|
13187
13410
|
* @unofficial
|
|
13188
13411
|
*/
|
|
@@ -13192,6 +13415,7 @@ export interface MarkdownViewEphemeralState extends Record<string, unknown> {
|
|
|
13192
13415
|
}
|
|
13193
13416
|
/**
|
|
13194
13417
|
* Available view modes for a markdown view.
|
|
13418
|
+
*
|
|
13195
13419
|
* @public
|
|
13196
13420
|
* @unofficial
|
|
13197
13421
|
*/
|
|
@@ -13203,6 +13427,7 @@ export interface MarkdownViewModes {
|
|
|
13203
13427
|
}
|
|
13204
13428
|
/**
|
|
13205
13429
|
* Source mode configuration for a markdown view.
|
|
13430
|
+
*
|
|
13206
13431
|
* @public
|
|
13207
13432
|
* @unofficial
|
|
13208
13433
|
*/
|
|
@@ -13212,6 +13437,7 @@ export interface MarkdownViewSourceMode {
|
|
|
13212
13437
|
}
|
|
13213
13438
|
/**
|
|
13214
13439
|
* Result of a matching bracket search.
|
|
13440
|
+
*
|
|
13215
13441
|
* @public
|
|
13216
13442
|
* @unofficial
|
|
13217
13443
|
*/
|
|
@@ -13221,6 +13447,7 @@ export interface MatchingBracket {
|
|
|
13221
13447
|
}
|
|
13222
13448
|
/**
|
|
13223
13449
|
* MathJax library interface for rendering LaTeX math expressions.
|
|
13450
|
+
*
|
|
13224
13451
|
* @public
|
|
13225
13452
|
* @unofficial
|
|
13226
13453
|
*/
|
|
@@ -13303,6 +13530,7 @@ export interface MathJaxEx {
|
|
|
13303
13530
|
}
|
|
13304
13531
|
/**
|
|
13305
13532
|
* Menu submenu configuration record.
|
|
13533
|
+
*
|
|
13306
13534
|
* @public
|
|
13307
13535
|
* @unofficial
|
|
13308
13536
|
*/
|
|
@@ -13310,6 +13538,7 @@ export interface MenuSubmenuConfigRecord extends Record<string, Submenu> {
|
|
|
13310
13538
|
}
|
|
13311
13539
|
/**
|
|
13312
13540
|
* Record mapping file paths to their file cache entries (hash, mtime, size).
|
|
13541
|
+
*
|
|
13313
13542
|
* @public
|
|
13314
13543
|
* @unofficial
|
|
13315
13544
|
*/
|
|
@@ -13317,6 +13546,7 @@ export interface MetadataCacheFileCacheRecord extends Record<string, FileCacheEn
|
|
|
13317
13546
|
}
|
|
13318
13547
|
/**
|
|
13319
13548
|
* Record mapping file paths to their parsed cached metadata.
|
|
13549
|
+
*
|
|
13320
13550
|
* @public
|
|
13321
13551
|
* @unofficial
|
|
13322
13552
|
*/
|
|
@@ -13324,6 +13554,7 @@ export interface MetadataCacheMetadataCacheRecord extends Record<string, CachedM
|
|
|
13324
13554
|
}
|
|
13325
13555
|
/**
|
|
13326
13556
|
* Message received from the metadata cache web worker.
|
|
13557
|
+
*
|
|
13327
13558
|
* @public
|
|
13328
13559
|
* @unofficial
|
|
13329
13560
|
*/
|
|
@@ -13333,6 +13564,7 @@ export interface MetadataCacheWorkerMessage {
|
|
|
13333
13564
|
}
|
|
13334
13565
|
/**
|
|
13335
13566
|
* Editor component for managing frontmatter property fields in a markdown view.
|
|
13567
|
+
*
|
|
13336
13568
|
* @public
|
|
13337
13569
|
* @unofficial
|
|
13338
13570
|
*/
|
|
@@ -13560,6 +13792,7 @@ export interface MetadataEditor extends Component {
|
|
|
13560
13792
|
}
|
|
13561
13793
|
/**
|
|
13562
13794
|
* Component representing a single property field in the metadata editor.
|
|
13795
|
+
*
|
|
13563
13796
|
* @public
|
|
13564
13797
|
* @unofficial
|
|
13565
13798
|
*/
|
|
@@ -13672,6 +13905,7 @@ export interface MetadataEditorProperty extends Component {
|
|
|
13672
13905
|
}
|
|
13673
13906
|
/**
|
|
13674
13907
|
* Manager for frontmatter property types, handling registration and assignment of property widgets.
|
|
13908
|
+
*
|
|
13675
13909
|
* @public
|
|
13676
13910
|
* @unofficial
|
|
13677
13911
|
*/
|
|
@@ -13788,6 +14022,7 @@ export interface MetadataTypeManager extends Events {
|
|
|
13788
14022
|
}
|
|
13789
14023
|
/**
|
|
13790
14024
|
* Record mapping property names to their metadata information across the vault.
|
|
14025
|
+
*
|
|
13791
14026
|
* @public
|
|
13792
14027
|
* @unofficial
|
|
13793
14028
|
*/
|
|
@@ -13825,6 +14060,7 @@ export interface MetadataTypeManagerRegisteredTypeWidgetsRecord extends Record<P
|
|
|
13825
14060
|
}
|
|
13826
14061
|
/**
|
|
13827
14062
|
* Record mapping property names to their assigned widget entries.
|
|
14063
|
+
*
|
|
13828
14064
|
* @public
|
|
13829
14065
|
* @unofficial
|
|
13830
14066
|
*/
|
|
@@ -13832,6 +14068,7 @@ export interface MetadataTypeManagerTypesRecord extends Record<string, PropertyW
|
|
|
13832
14068
|
}
|
|
13833
14069
|
/**
|
|
13834
14070
|
* Base interface for metadata property widgets that render value inputs.
|
|
14071
|
+
*
|
|
13835
14072
|
* @public
|
|
13836
14073
|
* @unofficial
|
|
13837
14074
|
*/
|
|
@@ -13839,6 +14076,7 @@ export interface MetadataWidget {
|
|
|
13839
14076
|
}
|
|
13840
14077
|
/**
|
|
13841
14078
|
* Function `Min`.
|
|
14079
|
+
*
|
|
13842
14080
|
* @public
|
|
13843
14081
|
* @unofficial
|
|
13844
14082
|
*/
|
|
@@ -13846,6 +14084,7 @@ export interface MinFunction extends BasesFunction {
|
|
|
13846
14084
|
}
|
|
13847
14085
|
/**
|
|
13848
14086
|
* Function `Minute`.
|
|
14087
|
+
*
|
|
13849
14088
|
* @public
|
|
13850
14089
|
* @unofficial
|
|
13851
14090
|
*/
|
|
@@ -13853,6 +14092,7 @@ export interface MinuteFunction extends BasesFunction, HasExtract {
|
|
|
13853
14092
|
}
|
|
13854
14093
|
/**
|
|
13855
14094
|
* Interface for rendering file information on mobile.
|
|
14095
|
+
*
|
|
13856
14096
|
* @public
|
|
13857
14097
|
* @unofficial
|
|
13858
14098
|
*/
|
|
@@ -13866,6 +14106,7 @@ export interface MobileFileInfo {
|
|
|
13866
14106
|
}
|
|
13867
14107
|
/**
|
|
13868
14108
|
* Navigation bar component for the mobile interface.
|
|
14109
|
+
*
|
|
13869
14110
|
* @public
|
|
13870
14111
|
* @unofficial
|
|
13871
14112
|
*/
|
|
@@ -13873,6 +14114,7 @@ export interface MobileNavbar {
|
|
|
13873
14114
|
}
|
|
13874
14115
|
/**
|
|
13875
14116
|
* Tab switcher component for navigating between open tabs on mobile.
|
|
14117
|
+
*
|
|
13876
14118
|
* @public
|
|
13877
14119
|
* @unofficial
|
|
13878
14120
|
*/
|
|
@@ -13923,6 +14165,7 @@ export interface MobileTabSwitcher {
|
|
|
13923
14165
|
}
|
|
13924
14166
|
/**
|
|
13925
14167
|
* Toolbar component displayed above the keyboard on mobile.
|
|
14168
|
+
*
|
|
13926
14169
|
* @public
|
|
13927
14170
|
* @unofficial
|
|
13928
14171
|
*/
|
|
@@ -13930,6 +14173,7 @@ export interface MobileToolbar {
|
|
|
13930
14173
|
}
|
|
13931
14174
|
/**
|
|
13932
14175
|
* Function `Month`.
|
|
14176
|
+
*
|
|
13933
14177
|
* @public
|
|
13934
14178
|
* @unofficial
|
|
13935
14179
|
*/
|
|
@@ -14129,6 +14373,7 @@ export interface MultitextPropertyWidgetComponent extends PropertyWidgetComponen
|
|
|
14129
14373
|
}
|
|
14130
14374
|
/**
|
|
14131
14375
|
* Layer that handles user interactions with canvas nodes, such as resizing and connecting.
|
|
14376
|
+
*
|
|
14132
14377
|
* @public
|
|
14133
14378
|
* @unofficial
|
|
14134
14379
|
*/
|
|
@@ -14154,6 +14399,7 @@ export interface NodeInteractionLayer {
|
|
|
14154
14399
|
}
|
|
14155
14400
|
/**
|
|
14156
14401
|
* Function `NotContains`.
|
|
14402
|
+
*
|
|
14157
14403
|
* @public
|
|
14158
14404
|
* @unofficial
|
|
14159
14405
|
*/
|
|
@@ -14161,6 +14407,7 @@ export interface NotContainsFunction extends BasesFunction {
|
|
|
14161
14407
|
}
|
|
14162
14408
|
/**
|
|
14163
14409
|
* Function `NotEmpty`.
|
|
14410
|
+
*
|
|
14164
14411
|
* @public
|
|
14165
14412
|
* @unofficial
|
|
14166
14413
|
*/
|
|
@@ -14168,6 +14415,7 @@ export interface NotEmptyFunction extends BasesFunction, HasGetDisplayName, HasG
|
|
|
14168
14415
|
}
|
|
14169
14416
|
/**
|
|
14170
14417
|
* Function `NotEqual`.
|
|
14418
|
+
*
|
|
14171
14419
|
* @public
|
|
14172
14420
|
* @unofficial
|
|
14173
14421
|
*/
|
|
@@ -14175,6 +14423,7 @@ export interface NotEqualFunction extends BasesFunction, HasGetDisplayName, HasC
|
|
|
14175
14423
|
}
|
|
14176
14424
|
/**
|
|
14177
14425
|
* Function `Not`.
|
|
14426
|
+
*
|
|
14178
14427
|
* @public
|
|
14179
14428
|
* @unofficial
|
|
14180
14429
|
*/
|
|
@@ -14182,6 +14431,7 @@ export interface NotFunction extends BasesFunction {
|
|
|
14182
14431
|
}
|
|
14183
14432
|
/**
|
|
14184
14433
|
* Internal plugin registration for the note composer (merge/split) feature.
|
|
14434
|
+
*
|
|
14185
14435
|
* @public
|
|
14186
14436
|
* @unofficial
|
|
14187
14437
|
*/
|
|
@@ -14189,6 +14439,7 @@ export interface NoteComposerPlugin extends InternalPlugin<NoteComposerPluginIns
|
|
|
14189
14439
|
}
|
|
14190
14440
|
/**
|
|
14191
14441
|
* Plugin instance for note composer, providing note merging and splitting functionality.
|
|
14442
|
+
*
|
|
14192
14443
|
* @public
|
|
14193
14444
|
* @unofficial
|
|
14194
14445
|
*/
|
|
@@ -14253,6 +14504,7 @@ export interface NoteComposerPluginInstance extends InternalPluginInstance<NoteC
|
|
|
14253
14504
|
}
|
|
14254
14505
|
/**
|
|
14255
14506
|
* Configuration options for the note composer plugin.
|
|
14507
|
+
*
|
|
14256
14508
|
* @public
|
|
14257
14509
|
* @unofficial
|
|
14258
14510
|
*/
|
|
@@ -14266,6 +14518,7 @@ export interface NoteComposerPluginOptions {
|
|
|
14266
14518
|
}
|
|
14267
14519
|
/**
|
|
14268
14520
|
* Function `Now`.
|
|
14521
|
+
*
|
|
14269
14522
|
* @public
|
|
14270
14523
|
* @unofficial
|
|
14271
14524
|
*/
|
|
@@ -14299,6 +14552,7 @@ export interface NumberPropertyWidgetComponent extends PropertyWidgetComponentBa
|
|
|
14299
14552
|
}
|
|
14300
14553
|
/**
|
|
14301
14554
|
* Core DOM elements of the Obsidian application layout.
|
|
14555
|
+
*
|
|
14302
14556
|
* @public
|
|
14303
14557
|
* @unofficial
|
|
14304
14558
|
*/
|
|
@@ -14332,6 +14586,7 @@ export interface ObsidianDOM {
|
|
|
14332
14586
|
}
|
|
14333
14587
|
/**
|
|
14334
14588
|
* Represents a touch event processed by Obsidian's gesture system.
|
|
14589
|
+
*
|
|
14335
14590
|
* @public
|
|
14336
14591
|
* @unofficial
|
|
14337
14592
|
*/
|
|
@@ -14359,6 +14614,7 @@ export interface ObsidianTouchEvent {
|
|
|
14359
14614
|
}
|
|
14360
14615
|
/**
|
|
14361
14616
|
* Callbacks for controlling a touch gesture's lifecycle.
|
|
14617
|
+
*
|
|
14362
14618
|
* @public
|
|
14363
14619
|
* @unofficial
|
|
14364
14620
|
*/
|
|
@@ -14382,6 +14638,7 @@ export interface ObsidianTouchEventRegisterCallback {
|
|
|
14382
14638
|
}
|
|
14383
14639
|
/**
|
|
14384
14640
|
* Options for opening an interactive dialog in the editor (e.g., Vim command line).
|
|
14641
|
+
*
|
|
14385
14642
|
* @public
|
|
14386
14643
|
* @unofficial
|
|
14387
14644
|
*/
|
|
@@ -14429,6 +14686,7 @@ export interface OpenDialogOptions {
|
|
|
14429
14686
|
}
|
|
14430
14687
|
/**
|
|
14431
14688
|
* Options for opening a notification in the editor.
|
|
14689
|
+
*
|
|
14432
14690
|
* @public
|
|
14433
14691
|
* @unofficial
|
|
14434
14692
|
*/
|
|
@@ -14440,6 +14698,7 @@ export interface OpenNotificationOptions {
|
|
|
14440
14698
|
}
|
|
14441
14699
|
/**
|
|
14442
14700
|
* Internal plugin registration for the outgoing links feature.
|
|
14701
|
+
*
|
|
14443
14702
|
* @public
|
|
14444
14703
|
* @unofficial
|
|
14445
14704
|
*/
|
|
@@ -14447,6 +14706,7 @@ export interface OutgoingLinkPlugin extends InternalPlugin<OutgoingLinkPluginIns
|
|
|
14447
14706
|
}
|
|
14448
14707
|
/**
|
|
14449
14708
|
* Plugin instance for outgoing links, displaying links from the current file.
|
|
14709
|
+
*
|
|
14450
14710
|
* @public
|
|
14451
14711
|
* @unofficial
|
|
14452
14712
|
*/
|
|
@@ -14460,6 +14720,7 @@ export interface OutgoingLinkPluginInstance extends InternalPluginInstance<Outgo
|
|
|
14460
14720
|
}
|
|
14461
14721
|
/**
|
|
14462
14722
|
* View that displays outgoing links from the current file.
|
|
14723
|
+
*
|
|
14463
14724
|
* @public
|
|
14464
14725
|
* @unofficial
|
|
14465
14726
|
*/
|
|
@@ -14475,6 +14736,7 @@ export interface OutgoingLinkView extends InfoFileView {
|
|
|
14475
14736
|
}
|
|
14476
14737
|
/**
|
|
14477
14738
|
* Internal plugin registration for the document outline (table of contents) feature.
|
|
14739
|
+
*
|
|
14478
14740
|
* @public
|
|
14479
14741
|
* @unofficial
|
|
14480
14742
|
*/
|
|
@@ -14482,6 +14744,7 @@ export interface OutlinePlugin extends InternalPlugin<OutlinePluginInstance> {
|
|
|
14482
14744
|
}
|
|
14483
14745
|
/**
|
|
14484
14746
|
* Plugin instance for the outline, displaying headings for the current file.
|
|
14747
|
+
*
|
|
14485
14748
|
* @public
|
|
14486
14749
|
* @unofficial
|
|
14487
14750
|
*/
|
|
@@ -14495,6 +14758,7 @@ export interface OutlinePluginInstance extends InternalPluginInstance<OutlinePlu
|
|
|
14495
14758
|
}
|
|
14496
14759
|
/**
|
|
14497
14760
|
* View that displays the headings outline for the current file.
|
|
14761
|
+
*
|
|
14498
14762
|
* @public
|
|
14499
14763
|
* @unofficial
|
|
14500
14764
|
*/
|
|
@@ -14597,6 +14861,7 @@ export interface OutlineView extends InfoFileView {
|
|
|
14597
14861
|
}
|
|
14598
14862
|
/**
|
|
14599
14863
|
* Internal plugin registration for the page preview (hover preview) feature.
|
|
14864
|
+
*
|
|
14600
14865
|
* @public
|
|
14601
14866
|
* @unofficial
|
|
14602
14867
|
*/
|
|
@@ -14604,6 +14869,7 @@ export interface PagePreviewPlugin extends InternalPlugin<PagePreviewPluginInsta
|
|
|
14604
14869
|
}
|
|
14605
14870
|
/**
|
|
14606
14871
|
* Plugin instance for page preview, showing hover previews of linked notes.
|
|
14872
|
+
*
|
|
14607
14873
|
* @public
|
|
14608
14874
|
* @unofficial
|
|
14609
14875
|
*/
|
|
@@ -14615,6 +14881,7 @@ export interface PagePreviewPluginInstance extends InternalPluginInstance<PagePr
|
|
|
14615
14881
|
}
|
|
14616
14882
|
/**
|
|
14617
14883
|
* Parsed link text result.
|
|
14884
|
+
*
|
|
14618
14885
|
* @public
|
|
14619
14886
|
* @unofficial
|
|
14620
14887
|
*/
|
|
@@ -14630,6 +14897,7 @@ export interface ParsedLinktext {
|
|
|
14630
14897
|
}
|
|
14631
14898
|
/**
|
|
14632
14899
|
* Settings for PDF export configuration.
|
|
14900
|
+
*
|
|
14633
14901
|
* @public
|
|
14634
14902
|
* @unofficial
|
|
14635
14903
|
*/
|
|
@@ -14653,6 +14921,7 @@ export interface PdfExportSettings {
|
|
|
14653
14921
|
}
|
|
14654
14922
|
/**
|
|
14655
14923
|
* Utility interface exposing PDF.js testing helpers.
|
|
14924
|
+
*
|
|
14656
14925
|
* @public
|
|
14657
14926
|
* @unofficial
|
|
14658
14927
|
*/
|
|
@@ -14662,6 +14931,7 @@ export interface PdfJsTestingUtils {
|
|
|
14662
14931
|
}
|
|
14663
14932
|
/**
|
|
14664
14933
|
* View for rendering and interacting with PDF files.
|
|
14934
|
+
*
|
|
14665
14935
|
* @public
|
|
14666
14936
|
* @unofficial
|
|
14667
14937
|
*/
|
|
@@ -14712,75 +14982,52 @@ export interface PlatformEx {
|
|
|
14712
14982
|
canStackTabs: boolean;
|
|
14713
14983
|
/**
|
|
14714
14984
|
* We're running the `Android` app.
|
|
14715
|
-
*
|
|
14716
|
-
* @official
|
|
14717
14985
|
*/
|
|
14718
14986
|
isAndroidApp: boolean;
|
|
14719
14987
|
/**
|
|
14720
14988
|
* The UI is in desktop mode.
|
|
14721
|
-
*
|
|
14722
|
-
* @official
|
|
14723
14989
|
*/
|
|
14724
14990
|
isDesktop: boolean;
|
|
14725
14991
|
/**
|
|
14726
14992
|
* We're running the `Electron`-based desktop app.
|
|
14727
|
-
*
|
|
14728
|
-
* @official
|
|
14729
14993
|
*/
|
|
14730
14994
|
isDesktopApp: boolean;
|
|
14731
14995
|
/**
|
|
14732
14996
|
* We're running the `iOS` app.
|
|
14733
|
-
*
|
|
14734
|
-
* @official
|
|
14735
14997
|
*/
|
|
14736
14998
|
isIosApp: boolean;
|
|
14737
14999
|
/**
|
|
14738
15000
|
* We're on a Linux device.
|
|
14739
|
-
*
|
|
14740
|
-
* @official
|
|
14741
15001
|
*/
|
|
14742
15002
|
isLinux: boolean;
|
|
14743
15003
|
/**
|
|
14744
15004
|
* We're on a macOS device, or a device that pretends to be one (like iPhones and iPads).
|
|
14745
15005
|
* Typically used to detect whether to use command-based hotkeys vs ctrl-based hotkeys.
|
|
14746
|
-
*
|
|
14747
|
-
* @official
|
|
14748
15006
|
*/
|
|
14749
15007
|
isMacOS: boolean;
|
|
14750
15008
|
/**
|
|
14751
15009
|
* The UI is in mobile mode.
|
|
14752
|
-
*
|
|
14753
|
-
* @official
|
|
14754
15010
|
*/
|
|
14755
15011
|
isMobile: boolean;
|
|
14756
15012
|
/**
|
|
14757
15013
|
* We're running the `Capacitor` mobile app.
|
|
14758
|
-
*
|
|
14759
|
-
* @official
|
|
14760
15014
|
*/
|
|
14761
15015
|
isMobileApp: boolean;
|
|
14762
15016
|
/**
|
|
14763
15017
|
* We're in a mobile app that has very limited screen space.
|
|
14764
|
-
*
|
|
14765
|
-
* @official
|
|
14766
15018
|
*/
|
|
14767
15019
|
isPhone: boolean;
|
|
14768
15020
|
/**
|
|
14769
15021
|
* We're running in Safari.
|
|
14770
15022
|
* Typically used to provide workarounds for Safari bugs.
|
|
14771
|
-
*
|
|
14772
|
-
* @official
|
|
14773
15023
|
*/
|
|
14774
15024
|
isSafari: boolean;
|
|
14775
15025
|
/**
|
|
14776
15026
|
* We're in a mobile app that has sufficiently large screen space.
|
|
14777
|
-
* @official
|
|
14778
15027
|
*/
|
|
14779
15028
|
isTablet: boolean;
|
|
14780
15029
|
/**
|
|
14781
15030
|
* We're on a Windows device.
|
|
14782
|
-
*
|
|
14783
|
-
* @official
|
|
14784
15031
|
*/
|
|
14785
15032
|
isWin: boolean;
|
|
14786
15033
|
/** Height of the mobile device screen in pixels. */
|
|
@@ -14794,13 +15041,12 @@ export interface PlatformEx {
|
|
|
14794
15041
|
* This returns:
|
|
14795
15042
|
* - `file:///` on mobile.
|
|
14796
15043
|
* - `app://random-id/` on desktop (Replaces the old format of `app://local/`).
|
|
14797
|
-
*
|
|
14798
|
-
* @official
|
|
14799
15044
|
*/
|
|
14800
15045
|
resourcePathPrefix: string;
|
|
14801
15046
|
}
|
|
14802
15047
|
/**
|
|
14803
15048
|
* Information about an available plugin update.
|
|
15049
|
+
*
|
|
14804
15050
|
* @public
|
|
14805
15051
|
* @unofficial
|
|
14806
15052
|
*/
|
|
@@ -14820,6 +15066,7 @@ export interface PluginUpdateManifest {
|
|
|
14820
15066
|
}
|
|
14821
15067
|
/**
|
|
14822
15068
|
* Manager for community plugins, handling installation, enabling, and lifecycle.
|
|
15069
|
+
*
|
|
14823
15070
|
* @public
|
|
14824
15071
|
* @unofficial
|
|
14825
15072
|
*/
|
|
@@ -15009,6 +15256,7 @@ export interface Plugins {
|
|
|
15009
15256
|
}
|
|
15010
15257
|
/**
|
|
15011
15258
|
* Record mapping plugin IDs to their manifest metadata.
|
|
15259
|
+
*
|
|
15012
15260
|
* @public
|
|
15013
15261
|
* @unofficial
|
|
15014
15262
|
*/
|
|
@@ -15016,6 +15264,7 @@ export interface PluginsManifestsRecord extends Record<string, PluginManifest> {
|
|
|
15016
15264
|
}
|
|
15017
15265
|
/**
|
|
15018
15266
|
* Record mapping plugin IDs to their active plugin instances.
|
|
15267
|
+
*
|
|
15019
15268
|
* @public
|
|
15020
15269
|
* @unofficial
|
|
15021
15270
|
*/
|
|
@@ -15023,6 +15272,7 @@ export interface PluginsPluginsRecord extends Record<string, Plugin> {
|
|
|
15023
15272
|
}
|
|
15024
15273
|
/**
|
|
15025
15274
|
* A reference with position information in the source file.
|
|
15275
|
+
*
|
|
15026
15276
|
* @public
|
|
15027
15277
|
* @unofficial
|
|
15028
15278
|
*/
|
|
@@ -15056,6 +15306,7 @@ export interface PowerTag {
|
|
|
15056
15306
|
}
|
|
15057
15307
|
/**
|
|
15058
15308
|
* A sequential promise queue that ensures functions execute one at a time.
|
|
15309
|
+
*
|
|
15059
15310
|
* @public
|
|
15060
15311
|
* @unofficial
|
|
15061
15312
|
*/
|
|
@@ -15072,6 +15323,7 @@ export interface PromisedQueue {
|
|
|
15072
15323
|
}
|
|
15073
15324
|
/**
|
|
15074
15325
|
* Internal plugin registration for the properties (frontmatter metadata) feature.
|
|
15326
|
+
*
|
|
15075
15327
|
* @public
|
|
15076
15328
|
* @unofficial
|
|
15077
15329
|
*/
|
|
@@ -15079,6 +15331,7 @@ export interface PropertiesPlugin extends InternalPlugin<PropertiesPluginInstanc
|
|
|
15079
15331
|
}
|
|
15080
15332
|
/**
|
|
15081
15333
|
* Plugin instance for properties, managing frontmatter metadata views.
|
|
15334
|
+
*
|
|
15082
15335
|
* @public
|
|
15083
15336
|
* @unofficial
|
|
15084
15337
|
*/
|
|
@@ -15113,6 +15366,7 @@ export interface PropertyEntryData<T> {
|
|
|
15113
15366
|
}
|
|
15114
15367
|
/**
|
|
15115
15368
|
* Information about a frontmatter property across the vault.
|
|
15369
|
+
*
|
|
15116
15370
|
* @public
|
|
15117
15371
|
* @unofficial
|
|
15118
15372
|
*/
|
|
@@ -15305,6 +15559,7 @@ export interface PropertyPropertyWidgetComponentComboBoxItem {
|
|
|
15305
15559
|
}
|
|
15306
15560
|
/**
|
|
15307
15561
|
* Context provided to property widgets for rendering and interaction.
|
|
15562
|
+
*
|
|
15308
15563
|
* @public
|
|
15309
15564
|
* @unofficial
|
|
15310
15565
|
*/
|
|
@@ -15393,6 +15648,7 @@ export interface PropertyWidgetComponentBase {
|
|
|
15393
15648
|
}
|
|
15394
15649
|
/**
|
|
15395
15650
|
* Entry associating a display name with a property widget type.
|
|
15651
|
+
*
|
|
15396
15652
|
* @public
|
|
15397
15653
|
* @unofficial
|
|
15398
15654
|
*/
|
|
@@ -15404,6 +15660,7 @@ export interface PropertyWidgetEntry {
|
|
|
15404
15660
|
}
|
|
15405
15661
|
/**
|
|
15406
15662
|
* Internal plugin registration for the Obsidian Publish feature.
|
|
15663
|
+
*
|
|
15407
15664
|
* @public
|
|
15408
15665
|
* @unofficial
|
|
15409
15666
|
*/
|
|
@@ -15411,6 +15668,7 @@ export interface PublishPlugin extends InternalPlugin<PublishPluginInstance> {
|
|
|
15411
15668
|
}
|
|
15412
15669
|
/**
|
|
15413
15670
|
* Plugin instance for Obsidian Publish, managing cloud publishing of vault content.
|
|
15671
|
+
*
|
|
15414
15672
|
* @public
|
|
15415
15673
|
* @unofficial
|
|
15416
15674
|
*/
|
|
@@ -15443,6 +15701,7 @@ export interface QueryForFuzzySearch {
|
|
|
15443
15701
|
}
|
|
15444
15702
|
/**
|
|
15445
15703
|
* Internal plugin registration for the random note feature.
|
|
15704
|
+
*
|
|
15446
15705
|
* @public
|
|
15447
15706
|
* @unofficial
|
|
15448
15707
|
*/
|
|
@@ -15450,6 +15709,7 @@ export interface RandomNotePlugin extends InternalPlugin<RandomNotePluginInstanc
|
|
|
15450
15709
|
}
|
|
15451
15710
|
/**
|
|
15452
15711
|
* Plugin instance for opening a random note from the vault.
|
|
15712
|
+
*
|
|
15453
15713
|
* @public
|
|
15454
15714
|
* @unofficial
|
|
15455
15715
|
*/
|
|
@@ -15459,6 +15719,7 @@ export interface RandomNotePluginInstance extends InternalPluginInstance<RandomN
|
|
|
15459
15719
|
}
|
|
15460
15720
|
/**
|
|
15461
15721
|
* Renderer for the reading/preview view, managing section-based markdown rendering.
|
|
15722
|
+
*
|
|
15462
15723
|
* @public
|
|
15463
15724
|
* @unofficial
|
|
15464
15725
|
*/
|
|
@@ -15502,6 +15763,7 @@ export interface ReadViewRenderer {
|
|
|
15502
15763
|
}
|
|
15503
15764
|
/**
|
|
15504
15765
|
* Tracks recently opened files for quick access and navigation.
|
|
15766
|
+
*
|
|
15505
15767
|
* @public
|
|
15506
15768
|
* @unofficial
|
|
15507
15769
|
*/
|
|
@@ -15583,6 +15845,7 @@ export interface RecentFileTracker {
|
|
|
15583
15845
|
}
|
|
15584
15846
|
/**
|
|
15585
15847
|
* View for displaying Obsidian release notes.
|
|
15848
|
+
*
|
|
15586
15849
|
* @public
|
|
15587
15850
|
* @unofficial
|
|
15588
15851
|
*/
|
|
@@ -15617,6 +15880,7 @@ export interface ReleaseNotesView extends ItemView {
|
|
|
15617
15880
|
}
|
|
15618
15881
|
/**
|
|
15619
15882
|
* A section of the read view renderer representing a block of rendered content.
|
|
15883
|
+
*
|
|
15620
15884
|
* @public
|
|
15621
15885
|
* @unofficial
|
|
15622
15886
|
*/
|
|
@@ -15630,6 +15894,7 @@ export interface RendererSection {
|
|
|
15630
15894
|
}
|
|
15631
15895
|
/**
|
|
15632
15896
|
* Container for search result DOM elements, managing the display of file search results.
|
|
15897
|
+
*
|
|
15633
15898
|
* @public
|
|
15634
15899
|
* @unofficial
|
|
15635
15900
|
*/
|
|
@@ -15764,6 +16029,7 @@ export interface ResultDom {
|
|
|
15764
16029
|
}
|
|
15765
16030
|
/**
|
|
15766
16031
|
* Represents a single file's search result in the result DOM tree.
|
|
16032
|
+
*
|
|
15767
16033
|
* @public
|
|
15768
16034
|
* @unofficial
|
|
15769
16035
|
*/
|
|
@@ -15863,6 +16129,7 @@ export interface ResultDomItem extends TreeNode {
|
|
|
15863
16129
|
}
|
|
15864
16130
|
/**
|
|
15865
16131
|
* Represents an individual match segment within a search result item.
|
|
16132
|
+
*
|
|
15866
16133
|
* @public
|
|
15867
16134
|
* @unofficial
|
|
15868
16135
|
*/
|
|
@@ -15937,6 +16204,7 @@ export interface ResultDomItemChild extends TreeNode {
|
|
|
15937
16204
|
}
|
|
15938
16205
|
/**
|
|
15939
16206
|
* Search result data containing matched content positions and property matches.
|
|
16207
|
+
*
|
|
15940
16208
|
* @public
|
|
15941
16209
|
* @unofficial
|
|
15942
16210
|
*/
|
|
@@ -15948,6 +16216,7 @@ export interface ResultDomResult {
|
|
|
15948
16216
|
}
|
|
15949
16217
|
/**
|
|
15950
16218
|
* Represents a matched property within a search result.
|
|
16219
|
+
*
|
|
15951
16220
|
* @public
|
|
15952
16221
|
* @unofficial
|
|
15953
16222
|
*/
|
|
@@ -15961,6 +16230,7 @@ export interface ResultProperty {
|
|
|
15961
16230
|
}
|
|
15962
16231
|
/**
|
|
15963
16232
|
* Represents a button item in the sidebar ribbon.
|
|
16233
|
+
*
|
|
15964
16234
|
* @public
|
|
15965
16235
|
* @unofficial
|
|
15966
16236
|
*/
|
|
@@ -15982,6 +16252,7 @@ export interface RibbonItem {
|
|
|
15982
16252
|
}
|
|
15983
16253
|
/**
|
|
15984
16254
|
* Function `Round`.
|
|
16255
|
+
*
|
|
15985
16256
|
* @public
|
|
15986
16257
|
* @unofficial
|
|
15987
16258
|
*/
|
|
@@ -15989,6 +16260,7 @@ export interface RoundFunction extends BasesFunction, HasGetDisplayName {
|
|
|
15989
16260
|
}
|
|
15990
16261
|
/**
|
|
15991
16262
|
* A controllable task with start, stop, and cancel lifecycle.
|
|
16263
|
+
*
|
|
15992
16264
|
* @public
|
|
15993
16265
|
* @unofficial
|
|
15994
16266
|
*/
|
|
@@ -16024,6 +16296,7 @@ export interface Runnable {
|
|
|
16024
16296
|
}
|
|
16025
16297
|
/**
|
|
16026
16298
|
* Represents an error returned from a WebSQL database operation.
|
|
16299
|
+
*
|
|
16027
16300
|
* @public
|
|
16028
16301
|
* @unofficial
|
|
16029
16302
|
*/
|
|
@@ -16035,6 +16308,7 @@ export interface SQLError {
|
|
|
16035
16308
|
}
|
|
16036
16309
|
/**
|
|
16037
16310
|
* Result set returned from a WebSQL query execution.
|
|
16311
|
+
*
|
|
16038
16312
|
* @public
|
|
16039
16313
|
* @unofficial
|
|
16040
16314
|
*/
|
|
@@ -16048,6 +16322,7 @@ export interface SQLResultSet {
|
|
|
16048
16322
|
}
|
|
16049
16323
|
/**
|
|
16050
16324
|
* List of rows returned from a WebSQL query result.
|
|
16325
|
+
*
|
|
16051
16326
|
* @public
|
|
16052
16327
|
* @unofficial
|
|
16053
16328
|
*/
|
|
@@ -16064,6 +16339,7 @@ export interface SQLResultSetRowList {
|
|
|
16064
16339
|
}
|
|
16065
16340
|
/**
|
|
16066
16341
|
* Represents a SQL transaction for executing queries against a WebSQL database.
|
|
16342
|
+
*
|
|
16067
16343
|
* @public
|
|
16068
16344
|
* @unofficial
|
|
16069
16345
|
*/
|
|
@@ -16073,6 +16349,7 @@ export interface SQLTransaction {
|
|
|
16073
16349
|
}
|
|
16074
16350
|
/**
|
|
16075
16351
|
* Information about the editor's scroll position and dimensions.
|
|
16352
|
+
*
|
|
16076
16353
|
* @public
|
|
16077
16354
|
* @unofficial
|
|
16078
16355
|
*/
|
|
@@ -16092,6 +16369,7 @@ export interface ScrollInfo {
|
|
|
16092
16369
|
}
|
|
16093
16370
|
/**
|
|
16094
16371
|
* Bookmark item representing a saved search query.
|
|
16372
|
+
*
|
|
16095
16373
|
* @public
|
|
16096
16374
|
* @unofficial
|
|
16097
16375
|
*/
|
|
@@ -16103,6 +16381,7 @@ export interface SearchBookmarkItem extends BookmarkItem {
|
|
|
16103
16381
|
}
|
|
16104
16382
|
/**
|
|
16105
16383
|
* Cursor for navigating through search results in the editor.
|
|
16384
|
+
*
|
|
16106
16385
|
* @public
|
|
16107
16386
|
* @unofficial
|
|
16108
16387
|
*/
|
|
@@ -16149,6 +16428,7 @@ export interface SearchCursor {
|
|
|
16149
16428
|
}
|
|
16150
16429
|
/**
|
|
16151
16430
|
* View that displays the global search results pane.
|
|
16431
|
+
*
|
|
16152
16432
|
* @public
|
|
16153
16433
|
* @unofficial
|
|
16154
16434
|
*/
|
|
@@ -16279,6 +16559,7 @@ export interface SearchView extends View {
|
|
|
16279
16559
|
}
|
|
16280
16560
|
/**
|
|
16281
16561
|
* Function `Second`.
|
|
16562
|
+
*
|
|
16282
16563
|
* @public
|
|
16283
16564
|
* @unofficial
|
|
16284
16565
|
*/
|
|
@@ -16302,6 +16583,7 @@ export interface SerializedBasesSubView {
|
|
|
16302
16583
|
}
|
|
16303
16584
|
/**
|
|
16304
16585
|
* Serialized representation of the full workspace layout and state.
|
|
16586
|
+
*
|
|
16305
16587
|
* @public
|
|
16306
16588
|
* @unofficial
|
|
16307
16589
|
*/
|
|
@@ -16333,6 +16615,7 @@ export interface SerializedWorkspace {
|
|
|
16333
16615
|
}
|
|
16334
16616
|
/**
|
|
16335
16617
|
* Serialized representation of a single workspace item (leaf, split, or tab group).
|
|
16618
|
+
*
|
|
16336
16619
|
* @public
|
|
16337
16620
|
* @unofficial
|
|
16338
16621
|
*/
|
|
@@ -16346,6 +16629,7 @@ export interface SerializedWorkspaceItem {
|
|
|
16346
16629
|
}
|
|
16347
16630
|
/**
|
|
16348
16631
|
* Serialized form of a workspace leaf's navigation history for persistence.
|
|
16632
|
+
*
|
|
16349
16633
|
* @public
|
|
16350
16634
|
* @unofficial
|
|
16351
16635
|
*/
|
|
@@ -16357,6 +16641,7 @@ export interface SerializedWorkspaceLeafHistory {
|
|
|
16357
16641
|
}
|
|
16358
16642
|
/**
|
|
16359
16643
|
* Serialized representation of the left ribbon bar state.
|
|
16644
|
+
*
|
|
16360
16645
|
* @public
|
|
16361
16646
|
* @unofficial
|
|
16362
16647
|
*/
|
|
@@ -16366,6 +16651,7 @@ export interface SerializedWorkspaceLeftRibbon {
|
|
|
16366
16651
|
}
|
|
16367
16652
|
/**
|
|
16368
16653
|
* Record mapping ribbon item identifiers to their hidden state.
|
|
16654
|
+
*
|
|
16369
16655
|
* @public
|
|
16370
16656
|
* @unofficial
|
|
16371
16657
|
*/
|
|
@@ -16373,6 +16659,7 @@ export interface SerializedWorkspaceLeftRibbonHiddenItemsRecord extends Record<s
|
|
|
16373
16659
|
}
|
|
16374
16660
|
/**
|
|
16375
16661
|
* Serialized representation of a workspace sidedock (left or right sidebar).
|
|
16662
|
+
*
|
|
16376
16663
|
* @public
|
|
16377
16664
|
* @unofficial
|
|
16378
16665
|
*/
|
|
@@ -16384,6 +16671,7 @@ export interface SerializedWorkspaceSidedock extends SerializedWorkspaceItem {
|
|
|
16384
16671
|
}
|
|
16385
16672
|
/**
|
|
16386
16673
|
* Parameters for setting the active leaf.
|
|
16674
|
+
*
|
|
16387
16675
|
* @public
|
|
16388
16676
|
* @unofficial
|
|
16389
16677
|
*/
|
|
@@ -16395,6 +16683,7 @@ export interface SetActiveLeafParams {
|
|
|
16395
16683
|
}
|
|
16396
16684
|
/**
|
|
16397
16685
|
* Options for setting a bookmark in the editor.
|
|
16686
|
+
*
|
|
16398
16687
|
* @public
|
|
16399
16688
|
* @unofficial
|
|
16400
16689
|
*/
|
|
@@ -16404,6 +16693,7 @@ export interface SetBookmarkOptions {
|
|
|
16404
16693
|
}
|
|
16405
16694
|
/**
|
|
16406
16695
|
* Parameters for setting a highlight match in the editor.
|
|
16696
|
+
*
|
|
16407
16697
|
* @public
|
|
16408
16698
|
* @unofficial
|
|
16409
16699
|
*/
|
|
@@ -16421,6 +16711,7 @@ export interface SetHighlightMatch {
|
|
|
16421
16711
|
}
|
|
16422
16712
|
/**
|
|
16423
16713
|
* Options for setting a selection in the editor.
|
|
16714
|
+
*
|
|
16424
16715
|
* @public
|
|
16425
16716
|
* @unofficial
|
|
16426
16717
|
*/
|
|
@@ -16430,6 +16721,7 @@ export interface SetSelectionOptions {
|
|
|
16430
16721
|
}
|
|
16431
16722
|
/**
|
|
16432
16723
|
* Handler for receiving shared files and text from other apps on mobile.
|
|
16724
|
+
*
|
|
16433
16725
|
* @public
|
|
16434
16726
|
* @unofficial
|
|
16435
16727
|
*/
|
|
@@ -16477,6 +16769,7 @@ export interface ShareReceiver {
|
|
|
16477
16769
|
}
|
|
16478
16770
|
/**
|
|
16479
16771
|
* Represents a file shared to Obsidian from another app on mobile.
|
|
16772
|
+
*
|
|
16480
16773
|
* @public
|
|
16481
16774
|
* @unofficial
|
|
16482
16775
|
*/
|
|
@@ -16488,6 +16781,7 @@ export interface SharedFile {
|
|
|
16488
16781
|
}
|
|
16489
16782
|
/**
|
|
16490
16783
|
* Internal plugin registration for the slash command suggestions feature.
|
|
16784
|
+
*
|
|
16491
16785
|
* @public
|
|
16492
16786
|
* @unofficial
|
|
16493
16787
|
*/
|
|
@@ -16495,6 +16789,7 @@ export interface SlashCommandPlugin extends InternalPlugin<SlashCommandPluginIns
|
|
|
16495
16789
|
}
|
|
16496
16790
|
/**
|
|
16497
16791
|
* Plugin instance for slash commands, providing inline command suggestions when typing "/".
|
|
16792
|
+
*
|
|
16498
16793
|
* @public
|
|
16499
16794
|
* @unofficial
|
|
16500
16795
|
*/
|
|
@@ -16504,6 +16799,7 @@ export interface SlashCommandPluginInstance extends InternalPluginInstance<Slash
|
|
|
16504
16799
|
}
|
|
16505
16800
|
/**
|
|
16506
16801
|
* Function `Slice`.
|
|
16802
|
+
*
|
|
16507
16803
|
* @public
|
|
16508
16804
|
* @unofficial
|
|
16509
16805
|
*/
|
|
@@ -16511,6 +16807,7 @@ export interface SliceFunction extends BasesFunction {
|
|
|
16511
16807
|
}
|
|
16512
16808
|
/**
|
|
16513
16809
|
* Internal plugin registration for the slides (presentation mode) feature.
|
|
16810
|
+
*
|
|
16514
16811
|
* @public
|
|
16515
16812
|
* @unofficial
|
|
16516
16813
|
*/
|
|
@@ -16518,6 +16815,7 @@ export interface SlidesPlugin extends InternalPlugin<SlidesPluginInstance> {
|
|
|
16518
16815
|
}
|
|
16519
16816
|
/**
|
|
16520
16817
|
* Plugin instance for slides, providing presentation mode for Markdown files.
|
|
16818
|
+
*
|
|
16521
16819
|
* @public
|
|
16522
16820
|
* @unofficial
|
|
16523
16821
|
*/
|
|
@@ -16527,6 +16825,7 @@ export interface SlidesPluginInstance extends InternalPluginInstance<SlidesPlugi
|
|
|
16527
16825
|
}
|
|
16528
16826
|
/**
|
|
16529
16827
|
* Captured state of a workspace leaf for history navigation.
|
|
16828
|
+
*
|
|
16530
16829
|
* @public
|
|
16531
16830
|
* @unofficial
|
|
16532
16831
|
*/
|
|
@@ -16562,6 +16861,7 @@ export interface StateHistory {
|
|
|
16562
16861
|
}
|
|
16563
16862
|
/**
|
|
16564
16863
|
* Ephemeral editor state stored in the state history (cursor and scroll position).
|
|
16864
|
+
*
|
|
16565
16865
|
* @public
|
|
16566
16866
|
* @unofficial
|
|
16567
16867
|
*/
|
|
@@ -16573,6 +16873,7 @@ export interface StateHistoryEphemeralState {
|
|
|
16573
16873
|
}
|
|
16574
16874
|
/**
|
|
16575
16875
|
* Back and forward history stacks for a workspace leaf.
|
|
16876
|
+
*
|
|
16576
16877
|
* @public
|
|
16577
16878
|
* @unofficial
|
|
16578
16879
|
*/
|
|
@@ -16584,6 +16885,7 @@ export interface StateHistoryLeafHistory {
|
|
|
16584
16885
|
}
|
|
16585
16886
|
/**
|
|
16586
16887
|
* The status bar displayed at the bottom of the application window.
|
|
16888
|
+
*
|
|
16587
16889
|
* @public
|
|
16588
16890
|
* @unofficial
|
|
16589
16891
|
*/
|
|
@@ -16612,6 +16914,7 @@ export interface StatusBar {
|
|
|
16612
16914
|
}
|
|
16613
16915
|
/**
|
|
16614
16916
|
* Represents a submenu entry in a context menu.
|
|
16917
|
+
*
|
|
16615
16918
|
* @public
|
|
16616
16919
|
* @unofficial
|
|
16617
16920
|
*/
|
|
@@ -16864,6 +17167,7 @@ export interface SuggestionContainer<T> {
|
|
|
16864
17167
|
}
|
|
16865
17168
|
/**
|
|
16866
17169
|
* Internal plugin registration for the quick switcher feature.
|
|
17170
|
+
*
|
|
16867
17171
|
* @public
|
|
16868
17172
|
* @unofficial
|
|
16869
17173
|
*/
|
|
@@ -16871,6 +17175,7 @@ export interface SwitcherPlugin extends InternalPlugin<SwitcherPluginInstance> {
|
|
|
16871
17175
|
}
|
|
16872
17176
|
/**
|
|
16873
17177
|
* Plugin instance for the quick switcher, providing fuzzy file search and navigation.
|
|
17178
|
+
*
|
|
16874
17179
|
* @public
|
|
16875
17180
|
* @unofficial
|
|
16876
17181
|
*/
|
|
@@ -16884,6 +17189,7 @@ export interface SwitcherPluginInstance extends InternalPluginInstance<SwitcherP
|
|
|
16884
17189
|
}
|
|
16885
17190
|
/**
|
|
16886
17191
|
* Internal plugin registration for the Obsidian Sync cloud sync feature.
|
|
17192
|
+
*
|
|
16887
17193
|
* @public
|
|
16888
17194
|
* @unofficial
|
|
16889
17195
|
*/
|
|
@@ -16891,6 +17197,7 @@ export interface SyncPlugin extends InternalPlugin<SyncPluginInstance> {
|
|
|
16891
17197
|
}
|
|
16892
17198
|
/**
|
|
16893
17199
|
* Plugin instance for Obsidian Sync, managing cloud synchronization of vault data.
|
|
17200
|
+
*
|
|
16894
17201
|
* @public
|
|
16895
17202
|
* @unofficial
|
|
16896
17203
|
*/
|
|
@@ -16902,6 +17209,7 @@ export interface SyncPluginInstance extends InternalPluginInstance<SyncPlugin> {
|
|
|
16902
17209
|
}
|
|
16903
17210
|
/**
|
|
16904
17211
|
* View that displays the Obsidian Sync status and settings.
|
|
17212
|
+
*
|
|
16905
17213
|
* @public
|
|
16906
17214
|
* @unofficial
|
|
16907
17215
|
*/
|
|
@@ -16924,6 +17232,7 @@ export interface SyncView extends View {
|
|
|
16924
17232
|
}
|
|
16925
17233
|
/**
|
|
16926
17234
|
* Represents a single cell in a markdown table.
|
|
17235
|
+
*
|
|
16927
17236
|
* @public
|
|
16928
17237
|
* @unofficial
|
|
16929
17238
|
*/
|
|
@@ -16953,6 +17262,7 @@ export interface TableCell {
|
|
|
16953
17262
|
}
|
|
16954
17263
|
/**
|
|
16955
17264
|
* Editor for a single table cell, combining markdown editing with cell properties.
|
|
17265
|
+
*
|
|
16956
17266
|
* @public
|
|
16957
17267
|
* @unofficial
|
|
16958
17268
|
*/
|
|
@@ -16960,6 +17270,7 @@ export interface TableCellEditor extends MarkdownBaseView, TableCell {
|
|
|
16960
17270
|
}
|
|
16961
17271
|
/**
|
|
16962
17272
|
* Editor for managing markdown tables.
|
|
17273
|
+
*
|
|
16963
17274
|
* @public
|
|
16964
17275
|
* @unofficial
|
|
16965
17276
|
*/
|
|
@@ -16981,6 +17292,7 @@ export interface TableView extends View {
|
|
|
16981
17292
|
}
|
|
16982
17293
|
/**
|
|
16983
17294
|
* Internal plugin registration for the tag browser sidebar feature.
|
|
17295
|
+
*
|
|
16984
17296
|
* @public
|
|
16985
17297
|
* @unofficial
|
|
16986
17298
|
*/
|
|
@@ -16988,6 +17300,7 @@ export interface TagPanePlugin extends InternalPlugin<TagPanePluginInstance> {
|
|
|
16988
17300
|
}
|
|
16989
17301
|
/**
|
|
16990
17302
|
* Plugin instance for the tag pane, displaying a browseable list of tags in the sidebar.
|
|
17303
|
+
*
|
|
16991
17304
|
* @public
|
|
16992
17305
|
* @unofficial
|
|
16993
17306
|
*/
|
|
@@ -17001,6 +17314,7 @@ export interface TagPanePluginInstance extends InternalPluginInstance<TagPanePlu
|
|
|
17001
17314
|
}
|
|
17002
17315
|
/**
|
|
17003
17316
|
* View for browsing and navigating tags in the vault.
|
|
17317
|
+
*
|
|
17004
17318
|
* @public
|
|
17005
17319
|
* @unofficial
|
|
17006
17320
|
*/
|
|
@@ -17050,6 +17364,7 @@ export interface TagView extends View {
|
|
|
17050
17364
|
}
|
|
17051
17365
|
/**
|
|
17052
17366
|
* Function `TaggedWith`.
|
|
17367
|
+
*
|
|
17053
17368
|
* @public
|
|
17054
17369
|
* @unofficial
|
|
17055
17370
|
*/
|
|
@@ -17081,6 +17396,7 @@ export interface TagsPropertyWidgetComponent extends PropertyWidgetComponentBase
|
|
|
17081
17396
|
}
|
|
17082
17397
|
/**
|
|
17083
17398
|
* Internal plugin registration for the templates feature.
|
|
17399
|
+
*
|
|
17084
17400
|
* @public
|
|
17085
17401
|
* @unofficial
|
|
17086
17402
|
*/
|
|
@@ -17088,6 +17404,7 @@ export interface TemplatesPlugin extends InternalPlugin<TemplatesPluginInstance>
|
|
|
17088
17404
|
}
|
|
17089
17405
|
/**
|
|
17090
17406
|
* Plugin instance for templates, providing template file insertion into notes.
|
|
17407
|
+
*
|
|
17091
17408
|
* @public
|
|
17092
17409
|
* @unofficial
|
|
17093
17410
|
*/
|
|
@@ -17137,6 +17454,7 @@ export interface TextPropertyWidgetComponent extends PropertyWidgetComponentBase
|
|
|
17137
17454
|
}
|
|
17138
17455
|
/**
|
|
17139
17456
|
* Manifest metadata for an installed theme.
|
|
17457
|
+
*
|
|
17140
17458
|
* @public
|
|
17141
17459
|
* @unofficial
|
|
17142
17460
|
*/
|
|
@@ -17174,6 +17492,7 @@ export interface ThemeManifest {
|
|
|
17174
17492
|
}
|
|
17175
17493
|
/**
|
|
17176
17494
|
* Function `Title`.
|
|
17495
|
+
*
|
|
17177
17496
|
* @public
|
|
17178
17497
|
* @unofficial
|
|
17179
17498
|
*/
|
|
@@ -17181,6 +17500,7 @@ export interface TitleFunction extends BasesFunction {
|
|
|
17181
17500
|
}
|
|
17182
17501
|
/**
|
|
17183
17502
|
* A clickable token in the editor with position, text, and type information.
|
|
17503
|
+
*
|
|
17184
17504
|
* @public
|
|
17185
17505
|
* @unofficial
|
|
17186
17506
|
*/
|
|
@@ -17384,6 +17704,7 @@ export interface Tree<T extends TreeItem> {
|
|
|
17384
17704
|
}
|
|
17385
17705
|
/**
|
|
17386
17706
|
* A tree item that can be collapsed to hide its children.
|
|
17707
|
+
*
|
|
17387
17708
|
* @public
|
|
17388
17709
|
* @unofficial
|
|
17389
17710
|
*/
|
|
@@ -17437,6 +17758,7 @@ export interface TreeCollapsibleItem extends TreeItem {
|
|
|
17437
17758
|
}
|
|
17438
17759
|
/**
|
|
17439
17760
|
* Represents a single interactive item within a tree view UI component.
|
|
17761
|
+
*
|
|
17440
17762
|
* @public
|
|
17441
17763
|
* @unofficial
|
|
17442
17764
|
*/
|
|
@@ -17474,6 +17796,7 @@ export interface TreeNode {
|
|
|
17474
17796
|
}
|
|
17475
17797
|
/**
|
|
17476
17798
|
* Layout information for a tree node used by the virtual scrolling system.
|
|
17799
|
+
*
|
|
17477
17800
|
* @public
|
|
17478
17801
|
* @unofficial
|
|
17479
17802
|
*/
|
|
@@ -17586,6 +17909,7 @@ export interface TreeRoot<Item extends TreeItem> extends TreeNode {
|
|
|
17586
17909
|
}
|
|
17587
17910
|
/**
|
|
17588
17911
|
* Function `Trim`.
|
|
17912
|
+
*
|
|
17589
17913
|
* @public
|
|
17590
17914
|
* @unofficial
|
|
17591
17915
|
*/
|
|
@@ -17593,6 +17917,7 @@ export interface TrimFunction extends BasesFunction {
|
|
|
17593
17917
|
}
|
|
17594
17918
|
/**
|
|
17595
17919
|
* Information about a property's expected and inferred widget types.
|
|
17920
|
+
*
|
|
17596
17921
|
* @public
|
|
17597
17922
|
* @unofficial
|
|
17598
17923
|
*/
|
|
@@ -17615,6 +17940,7 @@ export interface TypedWorkspaceLeaf<TView extends View> extends WorkspaceLeaf {
|
|
|
17615
17940
|
}
|
|
17616
17941
|
/**
|
|
17617
17942
|
* Function `Unique`.
|
|
17943
|
+
*
|
|
17618
17944
|
* @public
|
|
17619
17945
|
* @unofficial
|
|
17620
17946
|
*/
|
|
@@ -17643,6 +17969,7 @@ export interface UnknownView extends EmptyView {
|
|
|
17643
17969
|
}
|
|
17644
17970
|
/**
|
|
17645
17971
|
* Bookmark item representing a bookmarked URL.
|
|
17972
|
+
*
|
|
17646
17973
|
* @public
|
|
17647
17974
|
* @unofficial
|
|
17648
17975
|
*/
|
|
@@ -17656,6 +17983,7 @@ export interface UrlBookmarkItem extends BookmarkItem {
|
|
|
17656
17983
|
}
|
|
17657
17984
|
/**
|
|
17658
17985
|
* Record mapping file paths to their TAbstractFile instances in the vault.
|
|
17986
|
+
*
|
|
17659
17987
|
* @public
|
|
17660
17988
|
* @unofficial
|
|
17661
17989
|
*/
|
|
@@ -17663,6 +17991,7 @@ export interface VaultFileMapRecord extends Record<string, TAbstractFile> {
|
|
|
17663
17991
|
}
|
|
17664
17992
|
/**
|
|
17665
17993
|
* View for rendering and playing video files.
|
|
17994
|
+
*
|
|
17666
17995
|
* @public
|
|
17667
17996
|
* @unofficial
|
|
17668
17997
|
*/
|
|
@@ -17676,6 +18005,7 @@ export interface VideoView extends EditableFileView {
|
|
|
17676
18005
|
}
|
|
17677
18006
|
/**
|
|
17678
18007
|
* Ephemeral state for a view, storing cursor position and focus information.
|
|
18008
|
+
*
|
|
17679
18009
|
* @public
|
|
17680
18010
|
* @unofficial
|
|
17681
18011
|
*/
|
|
@@ -17689,6 +18019,7 @@ export interface ViewEphemeralState {
|
|
|
17689
18019
|
}
|
|
17690
18020
|
/**
|
|
17691
18021
|
* Registry that maps view types to their constructors and file extensions to view types.
|
|
18022
|
+
*
|
|
17692
18023
|
* @public
|
|
17693
18024
|
* @unofficial
|
|
17694
18025
|
*/
|
|
@@ -17799,6 +18130,7 @@ export interface ViewRegistry extends Events {
|
|
|
17799
18130
|
}
|
|
17800
18131
|
/**
|
|
17801
18132
|
* Record mapping file extensions to their default view types.
|
|
18133
|
+
*
|
|
17802
18134
|
* @public
|
|
17803
18135
|
* @unofficial
|
|
17804
18136
|
*/
|
|
@@ -17854,6 +18186,7 @@ export interface ViewRegistryTypeByExtensionRecord extends Record<string, string
|
|
|
17854
18186
|
}
|
|
17855
18187
|
/**
|
|
17856
18188
|
* Record mapping view type strings to their corresponding view creator functions.
|
|
18189
|
+
*
|
|
17857
18190
|
* @public
|
|
17858
18191
|
* @unofficial
|
|
17859
18192
|
*/
|
|
@@ -17861,6 +18194,7 @@ export interface ViewRegistryViewByTypeRecord extends Record<string, ViewCreator
|
|
|
17861
18194
|
}
|
|
17862
18195
|
/**
|
|
17863
18196
|
* Public API for interacting with the Vim emulation layer.
|
|
18197
|
+
*
|
|
17864
18198
|
* @public
|
|
17865
18199
|
* @unofficial
|
|
17866
18200
|
*/
|
|
@@ -18096,6 +18430,7 @@ export interface VimApi {
|
|
|
18096
18430
|
}
|
|
18097
18431
|
/**
|
|
18098
18432
|
* Wrapper around an editor instance providing access to Vim state.
|
|
18433
|
+
*
|
|
18099
18434
|
* @public
|
|
18100
18435
|
* @unofficial
|
|
18101
18436
|
*/
|
|
@@ -18105,6 +18440,7 @@ export interface VimEditor {
|
|
|
18105
18440
|
}
|
|
18106
18441
|
/**
|
|
18107
18442
|
* Top-level Vim state container for the editor.
|
|
18443
|
+
*
|
|
18108
18444
|
* @public
|
|
18109
18445
|
* @unofficial
|
|
18110
18446
|
*/
|
|
@@ -18116,6 +18452,7 @@ export interface VimState {
|
|
|
18116
18452
|
}
|
|
18117
18453
|
/**
|
|
18118
18454
|
* Core Vim state holding mode, input state, and edit history.
|
|
18455
|
+
*
|
|
18119
18456
|
* @public
|
|
18120
18457
|
* @unofficial
|
|
18121
18458
|
*/
|
|
@@ -18143,6 +18480,7 @@ export interface VimStateVim {
|
|
|
18143
18480
|
}
|
|
18144
18481
|
/**
|
|
18145
18482
|
* Tracks the current input state of the Vim command parser.
|
|
18483
|
+
*
|
|
18146
18484
|
* @public
|
|
18147
18485
|
* @unofficial
|
|
18148
18486
|
*/
|
|
@@ -18171,6 +18509,7 @@ export interface VimStateVimInputState {
|
|
|
18171
18509
|
}
|
|
18172
18510
|
/**
|
|
18173
18511
|
* Represents the last motion executed in Vim mode.
|
|
18512
|
+
*
|
|
18174
18513
|
* @public
|
|
18175
18514
|
* @unofficial
|
|
18176
18515
|
*/
|
|
@@ -18180,6 +18519,7 @@ export interface VimStateVimLastMotion {
|
|
|
18180
18519
|
}
|
|
18181
18520
|
/**
|
|
18182
18521
|
* Vim plugin state tracking the last keydown event.
|
|
18522
|
+
*
|
|
18183
18523
|
* @public
|
|
18184
18524
|
* @unofficial
|
|
18185
18525
|
*/
|
|
@@ -18189,6 +18529,7 @@ export interface VimStateVimPlugin {
|
|
|
18189
18529
|
}
|
|
18190
18530
|
/**
|
|
18191
18531
|
* Result from watching and stating all files in a directory on Capacitor.
|
|
18532
|
+
*
|
|
18192
18533
|
* @public
|
|
18193
18534
|
* @unofficial
|
|
18194
18535
|
*/
|
|
@@ -18312,6 +18653,7 @@ export interface WebviewerHistoryItem {
|
|
|
18312
18653
|
}
|
|
18313
18654
|
/**
|
|
18314
18655
|
* View that displays the web browser browsing history.
|
|
18656
|
+
*
|
|
18315
18657
|
* @public
|
|
18316
18658
|
* @unofficial
|
|
18317
18659
|
*/
|
|
@@ -18340,6 +18682,7 @@ export interface WebviewerHistoryView extends ItemView {
|
|
|
18340
18682
|
}
|
|
18341
18683
|
/**
|
|
18342
18684
|
* Webviewer open URL event detail.
|
|
18685
|
+
*
|
|
18343
18686
|
* @public
|
|
18344
18687
|
* @unofficial
|
|
18345
18688
|
*/
|
|
@@ -18359,6 +18702,7 @@ export interface WebviewerOpenUrlEventDetail {
|
|
|
18359
18702
|
}
|
|
18360
18703
|
/**
|
|
18361
18704
|
* Internal plugin registration for the embedded web browser feature.
|
|
18705
|
+
*
|
|
18362
18706
|
* @public
|
|
18363
18707
|
* @unofficial
|
|
18364
18708
|
*/
|
|
@@ -18366,6 +18710,7 @@ export interface WebviewerPlugin extends InternalPlugin<WebviewerPluginInstance>
|
|
|
18366
18710
|
}
|
|
18367
18711
|
/**
|
|
18368
18712
|
* Plugin instance for the web viewer, providing an embedded web browser within Obsidian.
|
|
18713
|
+
*
|
|
18369
18714
|
* @public
|
|
18370
18715
|
* @unofficial
|
|
18371
18716
|
*/
|
|
@@ -18410,6 +18755,7 @@ export interface WebviewerPluginInstance extends InternalPluginInstance<Webviewe
|
|
|
18410
18755
|
}
|
|
18411
18756
|
/**
|
|
18412
18757
|
* View that renders an embedded web browser for browsing web pages within Obsidian.
|
|
18758
|
+
*
|
|
18413
18759
|
* @public
|
|
18414
18760
|
* @unofficial
|
|
18415
18761
|
*/
|
|
@@ -18649,6 +18995,7 @@ export interface WebviewerView extends ItemView {
|
|
|
18649
18995
|
}
|
|
18650
18996
|
/**
|
|
18651
18997
|
* Editable widget view for embedded file sections (headings, blocks) within the editor.
|
|
18998
|
+
*
|
|
18652
18999
|
* @public
|
|
18653
19000
|
* @unofficial
|
|
18654
19001
|
*/
|
|
@@ -18802,6 +19149,7 @@ export interface WidgetEditorView extends EmbeddedEditorView {
|
|
|
18802
19149
|
}
|
|
18803
19150
|
/**
|
|
18804
19151
|
* Represents a captured text selection within a window.
|
|
19152
|
+
*
|
|
18805
19153
|
* @public
|
|
18806
19154
|
* @unofficial
|
|
18807
19155
|
*/
|
|
@@ -18815,6 +19163,7 @@ export interface WindowSelection {
|
|
|
18815
19163
|
}
|
|
18816
19164
|
/**
|
|
18817
19165
|
* Internal plugin registration for the word/character count status bar feature.
|
|
19166
|
+
*
|
|
18818
19167
|
* @public
|
|
18819
19168
|
* @unofficial
|
|
18820
19169
|
*/
|
|
@@ -18822,6 +19171,7 @@ export interface WordCountPlugin extends InternalPlugin<WordCountPluginInstance>
|
|
|
18822
19171
|
}
|
|
18823
19172
|
/**
|
|
18824
19173
|
* Plugin instance for word count, displaying word and character counts in the status bar.
|
|
19174
|
+
*
|
|
18825
19175
|
* @public
|
|
18826
19176
|
* @unofficial
|
|
18827
19177
|
*/
|
|
@@ -18849,6 +19199,7 @@ export interface WorkerResults {
|
|
|
18849
19199
|
}
|
|
18850
19200
|
/**
|
|
18851
19201
|
* Record mapping source identifiers to their hover link source configurations.
|
|
19202
|
+
*
|
|
18852
19203
|
* @public
|
|
18853
19204
|
* @unofficial
|
|
18854
19205
|
*/
|
|
@@ -18856,6 +19207,7 @@ export interface WorkspaceHoverLinkSourcesRecord extends Record<string, HoverLin
|
|
|
18856
19207
|
}
|
|
18857
19208
|
/**
|
|
18858
19209
|
* Navigation history for a workspace leaf, supporting back/forward navigation.
|
|
19210
|
+
*
|
|
18859
19211
|
* @public
|
|
18860
19212
|
* @unofficial
|
|
18861
19213
|
*/
|
|
@@ -18924,6 +19276,7 @@ export interface WorkspaceLeafHistory {
|
|
|
18924
19276
|
}
|
|
18925
19277
|
/**
|
|
18926
19278
|
* A single state entry in a workspace leaf's navigation history.
|
|
19279
|
+
*
|
|
18927
19280
|
* @public
|
|
18928
19281
|
* @unofficial
|
|
18929
19282
|
*/
|
|
@@ -18939,6 +19292,7 @@ export interface WorkspaceLeafHistoryState {
|
|
|
18939
19292
|
}
|
|
18940
19293
|
/**
|
|
18941
19294
|
* Internal plugin registration for the workspaces (layout saving/loading) feature.
|
|
19295
|
+
*
|
|
18942
19296
|
* @public
|
|
18943
19297
|
* @unofficial
|
|
18944
19298
|
*/
|
|
@@ -18946,6 +19300,7 @@ export interface WorkspacesPlugin extends InternalPlugin<WorkspacesPluginInstanc
|
|
|
18946
19300
|
}
|
|
18947
19301
|
/**
|
|
18948
19302
|
* Plugin instance for workspaces, managing saving and loading of workspace layouts.
|
|
19303
|
+
*
|
|
18949
19304
|
* @public
|
|
18950
19305
|
* @unofficial
|
|
18951
19306
|
*/
|
|
@@ -18957,6 +19312,7 @@ export interface WorkspacesPluginInstance extends InternalPluginInstance<Workspa
|
|
|
18957
19312
|
}
|
|
18958
19313
|
/**
|
|
18959
19314
|
* Function `Year`.
|
|
19315
|
+
*
|
|
18960
19316
|
* @public
|
|
18961
19317
|
* @unofficial
|
|
18962
19318
|
*/
|
|
@@ -18964,6 +19320,7 @@ export interface YearFunction extends BasesFunction, HasExtract {
|
|
|
18964
19320
|
}
|
|
18965
19321
|
/**
|
|
18966
19322
|
* Internal plugin registration for the Zettelkasten ID prefixer feature.
|
|
19323
|
+
*
|
|
18967
19324
|
* @public
|
|
18968
19325
|
* @unofficial
|
|
18969
19326
|
*/
|
|
@@ -18971,6 +19328,7 @@ export interface ZkPrefixerPlugin extends InternalPlugin<ZkPrefixerPluginInstanc
|
|
|
18971
19328
|
}
|
|
18972
19329
|
/**
|
|
18973
19330
|
* Plugin instance for the Zettelkasten prefixer, prepending unique IDs to new note filenames.
|
|
19331
|
+
*
|
|
18974
19332
|
* @public
|
|
18975
19333
|
* @unofficial
|
|
18976
19334
|
*/
|