mirror of
https://github.com/zadam/trilium.git
synced 2025-02-23 14:35:40 +08:00
removed deprecated widgets from frontend API
This commit is contained in:
parent
400b14e021
commit
d343ff0d23
2 changed files with 1 additions and 24 deletions
1
package-lock.json
generated
1
package-lock.json
generated
|
@ -5,6 +5,7 @@
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
|
"name": "trilium",
|
||||||
"version": "0.58.8",
|
"version": "0.58.8",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
|
|
|
@ -35,36 +35,12 @@ function FrontendScriptApi(startNote, currentNote, originEntity = null, $contain
|
||||||
/** @property {dayjs} day.js library for date manipulation. See {@link https://day.js.org} for documentation */
|
/** @property {dayjs} day.js library for date manipulation. See {@link https://day.js.org} for documentation */
|
||||||
this.dayjs = dayjs;
|
this.dayjs = dayjs;
|
||||||
|
|
||||||
/**
|
|
||||||
* @property {RightPanelWidget}
|
|
||||||
* @deprecated use api.RightPanelWidget instead
|
|
||||||
*/
|
|
||||||
this.CollapsibleWidget = RightPanelWidget;
|
|
||||||
|
|
||||||
/** @property {RightPanelWidget} */
|
/** @property {RightPanelWidget} */
|
||||||
this.RightPanelWidget = RightPanelWidget;
|
this.RightPanelWidget = RightPanelWidget;
|
||||||
|
|
||||||
/** @property {NoteContextAwareWidget} */
|
/** @property {NoteContextAwareWidget} */
|
||||||
this.NoteContextAwareWidget = NoteContextAwareWidget;
|
this.NoteContextAwareWidget = NoteContextAwareWidget;
|
||||||
|
|
||||||
/**
|
|
||||||
* @property {NoteContextAwareWidget}
|
|
||||||
* @deprecated use NoteContextAwareWidget instead
|
|
||||||
*/
|
|
||||||
this.TabAwareWidget = NoteContextAwareWidget;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @property {NoteContextAwareWidget}
|
|
||||||
* @deprecated use NoteContextAwareWidget instead
|
|
||||||
*/
|
|
||||||
this.TabCachingWidget = NoteContextAwareWidget;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @property {NoteContextAwareWidget}
|
|
||||||
* @deprecated use NoteContextAwareWidget instead
|
|
||||||
*/
|
|
||||||
this.NoteContextCachingWidget = NoteContextAwareWidget;
|
|
||||||
|
|
||||||
/** @property {BasicWidget} */
|
/** @property {BasicWidget} */
|
||||||
this.BasicWidget = BasicWidget;
|
this.BasicWidget = BasicWidget;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue