node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

2
server/node_modules/slate/dist/utils/deep-equal.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const isDeepEqual: (node: Record<string, any>, another: Record<string, any>) => boolean;
//# sourceMappingURL=deep-equal.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"deep-equal.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/deep-equal.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,WAAW,SAChB,OAAO,MAAM,EAAE,GAAG,CAAC,WAChB,OAAO,MAAM,EAAE,GAAG,CAAC,KAC3B,OA6BF,CAAA"}

View File

@@ -0,0 +1,9 @@
import { Editor, Location } from '../interfaces';
/**
* Get the default location to insert content into the editor.
* By default, use the selection as the target location. But if there is
* no selection, insert at the end of the document since that is such a
* common use case when inserting from a non-selected state.
*/
export declare const getDefaultInsertLocation: (editor: Editor) => Location;
//# sourceMappingURL=get-default-insert-location.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"get-default-insert-location.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/get-default-insert-location.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB,WAAY,MAAM,KAAG,QAQzD,CAAA"}

7
server/node_modules/slate/dist/utils/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
export * from './deep-equal';
export * from './get-default-insert-location';
export * from './match-path';
export * from './string';
export * from './types';
export * from './weak-maps';
//# sourceMappingURL=index.d.ts.map

1
server/node_modules/slate/dist/utils/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,+BAA+B,CAAA;AAC7C,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA"}

5
server/node_modules/slate/dist/utils/match-path.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { Editor } from '../interfaces/editor';
import { Path } from '../interfaces/path';
import { Node } from '../interfaces/node';
export declare const matchPath: (editor: Editor, path: Path) => (node: Node) => boolean;
//# sourceMappingURL=match-path.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"match-path.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/match-path.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAA;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AACzC,OAAO,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAEzC,eAAO,MAAM,SAAS,WACZ,MAAM,wBAEL,IAAI,KAAK,OAGnB,CAAA"}

18
server/node_modules/slate/dist/utils/string.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
/**
* Get the distance to the end of the first character in a string of text.
*/
export declare const getCharacterDistance: (str: string, isRTL?: boolean) => number;
/**
* Get the distance to the end of the first word in a string of text.
*/
export declare const getWordDistance: (text: string, isRTL?: boolean) => number;
/**
* Split a string in two parts at a given distance starting from the end when
* `isRTL` is set to `true`.
*/
export declare const splitByCharacterDistance: (str: string, dist: number, isRTL?: boolean | undefined) => [string, string];
/**
* Iterate on codepoints from right to left.
*/
export declare const codepointsIteratorRTL: (str: string) => Generator<string, void, unknown>;
//# sourceMappingURL=string.d.ts.map

1
server/node_modules/slate/dist/utils/string.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"string.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/string.ts"],"names":[],"mappings":"AAUA;;GAEG;AAEH,eAAO,MAAM,oBAAoB,QAAS,MAAM,sBAAkB,MA4DjE,CAAA;AAMD;;GAEG;AAEH,eAAO,MAAM,eAAe,SAAU,MAAM,sBAAkB,MAqB7D,CAAA;AAED;;;GAGG;AAEH,eAAO,MAAM,wBAAwB,QAC9B,MAAM,QACL,MAAM,kCAEX,CAAC,MAAM,EAAE,MAAM,CAOjB,CAAA;AAsCD;;GAEG;AAEH,eAAO,MAAM,qBAAqB,QAAkB,MAAM,qCAkBzD,CAAA"}

5
server/node_modules/slate/dist/utils/types.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { Editor } from '../interfaces/editor';
export declare type OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R ? (...args: P) => R : never;
export declare type OmitFirstArgWithSpecificGeneric<F, TSpecific> = F extends (x: any, ...args: infer P) => infer R ? (...args: P) => R : never;
export declare type WithEditorFirstArg<T extends (...args: any) => any> = (editor: Editor, ...args: Parameters<T>) => ReturnType<T>;
//# sourceMappingURL=types.d.ts.map

1
server/node_modules/slate/dist/utils/types.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAA;AAE7C,oBAAY,YAAY,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,MAAM,CAAC,GACzE,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,CAAC,GACjB,KAAK,CAAA;AAET,oBAAY,+BAA+B,CAAC,CAAC,EAAE,SAAS,IAAI,CAAC,SAAS,CACpE,CAAC,EAAE,GAAG,EACN,GAAG,IAAI,EAAE,MAAM,CAAC,KACb,MAAM,CAAC,GACR,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,CAAC,GACjB,KAAK,CAAA;AAET,oBAAY,kBAAkB,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,IAAI,CAChE,MAAM,EAAE,MAAM,EACd,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,KACnB,UAAU,CAAC,CAAC,CAAC,CAAA"}

9
server/node_modules/slate/dist/utils/weak-maps.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import { Editor, Path, PathRef, PointRef, RangeRef } from '..';
export declare const DIRTY_PATHS: WeakMap<Editor, Path[]>;
export declare const DIRTY_PATH_KEYS: WeakMap<Editor, Set<string>>;
export declare const FLUSHING: WeakMap<Editor, boolean>;
export declare const NORMALIZING: WeakMap<Editor, boolean>;
export declare const PATH_REFS: WeakMap<Editor, Set<PathRef>>;
export declare const POINT_REFS: WeakMap<Editor, Set<PointRef>>;
export declare const RANGE_REFS: WeakMap<Editor, Set<RangeRef>>;
//# sourceMappingURL=weak-maps.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"weak-maps.d.ts","sourceRoot":"","sources":["../packages/slate/src/utils/weak-maps.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAA;AAE9D,eAAO,MAAM,WAAW,EAAE,OAAO,CAAC,MAAM,EAAE,IAAI,EAAE,CAAiB,CAAA;AACjE,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAiB,CAAA;AAC1E,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,MAAM,EAAE,OAAO,CAAiB,CAAA;AAC/D,eAAO,MAAM,WAAW,EAAE,OAAO,CAAC,MAAM,EAAE,OAAO,CAAiB,CAAA;AAClE,eAAO,MAAM,SAAS,EAAE,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,OAAO,CAAC,CAAiB,CAAA;AACrE,eAAO,MAAM,UAAU,EAAE,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAiB,CAAA;AACvE,eAAO,MAAM,UAAU,EAAE,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAiB,CAAA"}