mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
Libs updates and new version with option to pin videos on channel
This commit is contained in:
parent
e1f2188de0
commit
1beab3b1c0
8565 changed files with 149805 additions and 165674 deletions
32
node_modules/@codemirror/commands/dist/index.d.ts
generated
vendored
32
node_modules/@codemirror/commands/dist/index.d.ts
generated
vendored
|
@ -376,11 +376,17 @@ non-empty, convert it to a cursor selection.
|
|||
*/
|
||||
declare const simplifySelection: StateCommand;
|
||||
/**
|
||||
Delete the selection, or, for cursor selections, the character
|
||||
before the cursor.
|
||||
Delete the selection, or, for cursor selections, the character or
|
||||
indentation unit before the cursor.
|
||||
*/
|
||||
declare const deleteCharBackward: Command;
|
||||
/**
|
||||
Delete the selection or the character before the cursor. Does not
|
||||
implement any extended behavior like deleting whole indentation
|
||||
units in one go.
|
||||
*/
|
||||
declare const deleteCharBackwardStrict: Command;
|
||||
/**
|
||||
Delete the selection or the character after the cursor.
|
||||
*/
|
||||
declare const deleteCharForward: Command;
|
||||
|
@ -455,6 +461,11 @@ Replace the selection with a newline.
|
|||
*/
|
||||
declare const insertNewline: StateCommand;
|
||||
/**
|
||||
Replace the selection with a newline and the same amount of
|
||||
indentation as the line above.
|
||||
*/
|
||||
declare const insertNewlineKeepIndent: StateCommand;
|
||||
/**
|
||||
Replace the selection with a newline and indent the newly created
|
||||
line(s). If the current line consists only of whitespace, this
|
||||
will also delete that whitespace. When the cursor is between
|
||||
|
@ -483,6 +494,20 @@ selected lines.
|
|||
*/
|
||||
declare const indentLess: StateCommand;
|
||||
/**
|
||||
Enables or disables
|
||||
[tab-focus mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode). While on, this
|
||||
prevents the editor's key bindings from capturing Tab or
|
||||
Shift-Tab, making it possible for the user to move focus out of
|
||||
the editor with the keyboard.
|
||||
*/
|
||||
declare const toggleTabFocusMode: Command;
|
||||
/**
|
||||
Temporarily enables [tab-focus
|
||||
mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode) for two seconds or until
|
||||
another key is pressed.
|
||||
*/
|
||||
declare const temporarilySetTabFocusMode: Command;
|
||||
/**
|
||||
Insert a tab character at the cursor or, if something is selected,
|
||||
use [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) to indent the entire
|
||||
selection.
|
||||
|
@ -563,6 +588,7 @@ The default keymap. Includes all bindings from
|
|||
- Shift-Ctrl-\\ (Shift-Cmd-\\ on macOS): [`cursorMatchingBracket`](https://codemirror.net/6/docs/ref/#commands.cursorMatchingBracket)
|
||||
- Ctrl-/ (Cmd-/ on macOS): [`toggleComment`](https://codemirror.net/6/docs/ref/#commands.toggleComment).
|
||||
- Shift-Alt-a: [`toggleBlockComment`](https://codemirror.net/6/docs/ref/#commands.toggleBlockComment).
|
||||
- Ctrl-m (Alt-Shift-m on macOS): [`toggleTabFocusMode`](https://codemirror.net/6/docs/ref/#commands.toggleTabFocusMode).
|
||||
*/
|
||||
declare const defaultKeymap: readonly KeyBinding[];
|
||||
/**
|
||||
|
@ -573,4 +599,4 @@ this.
|
|||
*/
|
||||
declare const indentWithTab: KeyBinding;
|
||||
|
||||
export { type CommentTokens, blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, transposeChars, undo, undoDepth, undoSelection };
|
||||
export { type CommentTokens, blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharBackwardStrict, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertNewlineKeepIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, temporarilySetTabFocusMode, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, toggleTabFocusMode, transposeChars, undo, undoDepth, undoSelection };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue