superdoc 0.30.0-next.7 → 0.30.0-next.9
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/chunks/{PdfViewer-CBfKTlkO.es.js → PdfViewer-BvzVIj2M.es.js} +1 -1
- package/dist/chunks/{PdfViewer-DAfhpENU.cjs → PdfViewer-DdqF0Jz2.cjs} +1 -1
- package/dist/chunks/{index-D6ktUpVF.cjs → index-BS99f4H2.cjs} +3 -3
- package/dist/chunks/{index-K8x_ZMJI-BrnvF8W6.cjs → index-CGz3-6gE-C6-Xar1o.cjs} +1 -1
- package/dist/chunks/{index-K8x_ZMJI-BhsVHeXy.es.js → index-CGz3-6gE-Cujvn9Pw.es.js} +1 -1
- package/dist/chunks/{index-D11q4Kk4.es.js → index-CHYe9g4y.es.js} +3 -3
- package/dist/chunks/{super-editor.es-DgBDoeNs.es.js → super-editor.es--fmalU7v.es.js} +10 -9
- package/dist/chunks/{super-editor.es-DKjs4Vsm.cjs → super-editor.es-CO_az6Oa.cjs} +10 -9
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-CV0ojpfw.js → converter-a0L8wNod.js} +1 -1
- package/dist/super-editor/chunks/{docx-zipper-OIsx4R0Z.js → docx-zipper-S0E2rgnn.js} +1 -1
- package/dist/super-editor/chunks/{editor-Dj784nAk.js → editor-DmfydVEc.js} +4 -4
- package/dist/super-editor/chunks/{index-K8x_ZMJI.js → index-CGz3-6gE.js} +1 -1
- package/dist/super-editor/chunks/{toolbar-B9Usxj75.js → toolbar-D5SCPeci.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/docx-zipper.es.js +2 -2
- package/dist/super-editor/editor.es.js +3 -3
- package/dist/super-editor/file-zipper.es.js +1 -1
- package/dist/super-editor/super-editor/src/components/toolbar/defaultItems.d.ts.map +1 -1
- package/dist/super-editor/super-editor/src/components/toolbar/super-toolbar.d.ts.map +1 -1
- package/dist/super-editor/super-editor.es.js +13 -12
- package/dist/super-editor/toolbar.es.js +2 -2
- package/dist/super-editor.cjs +1 -1
- package/dist/super-editor.es.js +1 -1
- package/dist/superdoc.cjs +2 -2
- package/dist/superdoc.es.js +2 -2
- package/dist/superdoc.umd.js +12 -11
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/shared/common/Telemetry.d.ts +0 -237
- package/dist/shared/common/Telemetry.d.ts.map +0 -1
- package/dist/shared/common/collaboration/awareness.d.ts +0 -39
- package/dist/shared/common/collaboration/awareness.d.ts.map +0 -1
- package/dist/shared/common/document-types.d.ts +0 -10
- package/dist/shared/common/document-types.d.ts.map +0 -1
- package/dist/shared/common/event-types.d.ts +0 -14
- package/dist/shared/common/event-types.d.ts.map +0 -1
- package/dist/shared/common/helpers/compare-superdoc-versions.d.ts +0 -8
- package/dist/shared/common/helpers/compare-superdoc-versions.d.ts.map +0 -1
- package/dist/shared/common/helpers/get-file-object.d.ts +0 -50
- package/dist/shared/common/helpers/get-file-object.d.ts.map +0 -1
- package/dist/shared/common/helpers/v-click-outside.d.ts +0 -11
- package/dist/shared/common/helpers/v-click-outside.d.ts.map +0 -1
- package/dist/shared/common/index.d.ts +0 -10
- package/dist/shared/common/index.d.ts.map +0 -1
- package/dist/shared/common/key-transform.d.ts +0 -44
- package/dist/shared/common/key-transform.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,237 +0,0 @@
|
|
|
1
|
-
type TelemetryAttributes = Record<string, unknown>;
|
|
2
|
-
type ReadonlyTelemetryRecord = Readonly<Record<string, unknown>>;
|
|
3
|
-
/**
|
|
4
|
-
* Standard telemetry event names
|
|
5
|
-
*/
|
|
6
|
-
export declare const TelemetryEventNames: {
|
|
7
|
-
readonly DOCUMENT_OPENED: "document:opened";
|
|
8
|
-
readonly DOCUMENT_PARSED: "document:parsed";
|
|
9
|
-
readonly DOCUMENT_EXPORTED: "document:exported";
|
|
10
|
-
readonly ERROR_OCCURRED: "error:occurred";
|
|
11
|
-
readonly FEATURE_USED: "feature:used";
|
|
12
|
-
readonly CONVERSION_STARTED: "conversion:started";
|
|
13
|
-
readonly CONVERSION_COMPLETED: "conversion:completed";
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* Known telemetry event names (provides autocomplete)
|
|
17
|
-
*/
|
|
18
|
-
export type KnownTelemetryEvent = typeof TelemetryEventNames[keyof typeof TelemetryEventNames];
|
|
19
|
-
/**
|
|
20
|
-
* Custom telemetry event name - use for application-specific events
|
|
21
|
-
* Branded type to distinguish from known events
|
|
22
|
-
*/
|
|
23
|
-
export type CustomTelemetryEvent = string & {
|
|
24
|
-
readonly __custom?: never;
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* Telemetry event name - either a known event or a custom event
|
|
28
|
-
*/
|
|
29
|
-
export type TelemetryEventName = KnownTelemetryEvent | CustomTelemetryEvent;
|
|
30
|
-
/**
|
|
31
|
-
* Valid statistic categories for tracking
|
|
32
|
-
*/
|
|
33
|
-
export type StatisticCategory = 'node' | 'unknown' | 'error';
|
|
34
|
-
/**
|
|
35
|
-
* Create a custom telemetry event name
|
|
36
|
-
* Use this for application-specific events not covered by TelemetryEventNames
|
|
37
|
-
* @param eventName - Custom event name (e.g., 'feature:custom-action')
|
|
38
|
-
* @returns Branded custom event name
|
|
39
|
-
*/
|
|
40
|
-
export declare function customTelemetryEvent(eventName: string): CustomTelemetryEvent;
|
|
41
|
-
export interface TelemetryConfig {
|
|
42
|
-
readonly licenseKey?: string;
|
|
43
|
-
readonly enabled?: boolean;
|
|
44
|
-
readonly endpoint?: string;
|
|
45
|
-
readonly documentGuid?: string;
|
|
46
|
-
readonly documentIdentifier?: string;
|
|
47
|
-
readonly superdocVersion: string;
|
|
48
|
-
}
|
|
49
|
-
export interface BrowserInfo {
|
|
50
|
-
readonly userAgent: string;
|
|
51
|
-
readonly currentUrl: string;
|
|
52
|
-
readonly hostname: string;
|
|
53
|
-
readonly referrerUrl: string;
|
|
54
|
-
readonly screenSize: {
|
|
55
|
-
readonly width: number;
|
|
56
|
-
readonly height: number;
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
export interface Statistics {
|
|
60
|
-
nodeTypes: Record<string, number>;
|
|
61
|
-
markTypes: Record<string, number>;
|
|
62
|
-
attributes: Record<string, number>;
|
|
63
|
-
errorCount: number;
|
|
64
|
-
}
|
|
65
|
-
export interface FileInfo {
|
|
66
|
-
readonly path: string;
|
|
67
|
-
readonly name: string;
|
|
68
|
-
readonly size?: number;
|
|
69
|
-
readonly depth: number;
|
|
70
|
-
}
|
|
71
|
-
export interface FileStructure {
|
|
72
|
-
totalFiles: number;
|
|
73
|
-
maxDepth: number;
|
|
74
|
-
totalNodes: number;
|
|
75
|
-
files: FileInfo[];
|
|
76
|
-
}
|
|
77
|
-
export interface DocumentInfo {
|
|
78
|
-
readonly guid?: string;
|
|
79
|
-
readonly identifier?: string;
|
|
80
|
-
readonly name: string;
|
|
81
|
-
readonly size: number;
|
|
82
|
-
readonly lastModified: string | null;
|
|
83
|
-
readonly type: string;
|
|
84
|
-
readonly internalId?: string;
|
|
85
|
-
}
|
|
86
|
-
export interface BaseTelemetryEvent {
|
|
87
|
-
id: string;
|
|
88
|
-
timestamp: string;
|
|
89
|
-
sessionId: string;
|
|
90
|
-
documentGuid?: string;
|
|
91
|
-
documentIdentifier?: string;
|
|
92
|
-
superdocVersion: string;
|
|
93
|
-
file: DocumentInfo | null;
|
|
94
|
-
browser: BrowserInfo;
|
|
95
|
-
}
|
|
96
|
-
export interface TelemetryUsageEvent extends BaseTelemetryEvent {
|
|
97
|
-
type: 'usage';
|
|
98
|
-
name: string;
|
|
99
|
-
properties: TelemetryAttributes;
|
|
100
|
-
}
|
|
101
|
-
export interface TelemetryParsingReport extends BaseTelemetryEvent {
|
|
102
|
-
type: 'parsing';
|
|
103
|
-
statistics: Statistics;
|
|
104
|
-
fileStructure: FileStructure;
|
|
105
|
-
unknownElements: UnknownElement[];
|
|
106
|
-
errors: TelemetryError[];
|
|
107
|
-
}
|
|
108
|
-
export type TelemetryPayload = TelemetryUsageEvent | TelemetryParsingReport[];
|
|
109
|
-
export interface TelemetryError extends ReadonlyTelemetryRecord {
|
|
110
|
-
readonly message?: string;
|
|
111
|
-
readonly elementName?: string;
|
|
112
|
-
readonly attributes?: TelemetryAttributes;
|
|
113
|
-
readonly timestamp?: string;
|
|
114
|
-
}
|
|
115
|
-
export interface UnknownElement {
|
|
116
|
-
readonly elementName: string;
|
|
117
|
-
count: number;
|
|
118
|
-
attributes?: TelemetryAttributes;
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* Discriminated union for statistic data based on category
|
|
122
|
-
*/
|
|
123
|
-
export type StatisticData = {
|
|
124
|
-
category: 'node';
|
|
125
|
-
elementName: string;
|
|
126
|
-
attributes?: TelemetryAttributes;
|
|
127
|
-
marks?: Array<{
|
|
128
|
-
type: string;
|
|
129
|
-
}>;
|
|
130
|
-
} | {
|
|
131
|
-
category: 'unknown';
|
|
132
|
-
elementName: string;
|
|
133
|
-
attributes?: TelemetryAttributes;
|
|
134
|
-
} | {
|
|
135
|
-
category: 'error';
|
|
136
|
-
message?: string;
|
|
137
|
-
elementName?: string;
|
|
138
|
-
attributes?: TelemetryAttributes;
|
|
139
|
-
timestamp?: string;
|
|
140
|
-
[key: string]: unknown;
|
|
141
|
-
};
|
|
142
|
-
export declare class Telemetry {
|
|
143
|
-
enabled: boolean;
|
|
144
|
-
documentGuid?: string;
|
|
145
|
-
documentIdentifier?: string;
|
|
146
|
-
superdocVersion: string;
|
|
147
|
-
licenseKey: string;
|
|
148
|
-
endpoint: string;
|
|
149
|
-
sessionId: string;
|
|
150
|
-
statistics: Statistics;
|
|
151
|
-
unknownElements: UnknownElement[];
|
|
152
|
-
errors: TelemetryError[];
|
|
153
|
-
fileStructure: FileStructure;
|
|
154
|
-
documentInfo: DocumentInfo | null;
|
|
155
|
-
static readonly COMMUNITY_LICENSE_KEY: "community-and-eval-agplv3";
|
|
156
|
-
static readonly DEFAULT_ENDPOINT: "https://ingest.superdoc.dev/v1/collect";
|
|
157
|
-
/**
|
|
158
|
-
* Initialize telemetry service
|
|
159
|
-
* @param config - Telemetry configuration
|
|
160
|
-
*/
|
|
161
|
-
constructor(config: TelemetryConfig);
|
|
162
|
-
/**
|
|
163
|
-
* Get browser environment information
|
|
164
|
-
* @returns Browser information
|
|
165
|
-
*/
|
|
166
|
-
getBrowserInfo(): BrowserInfo;
|
|
167
|
-
/**
|
|
168
|
-
* Track document usage event
|
|
169
|
-
* @param name - Event name (use TelemetryEventNames for standard events)
|
|
170
|
-
* @param properties - Additional properties
|
|
171
|
-
*/
|
|
172
|
-
trackUsage(name: TelemetryEventName, properties?: TelemetryAttributes): Promise<void>;
|
|
173
|
-
/**
|
|
174
|
-
* Track parsing statistics (new discriminated union API)
|
|
175
|
-
* @param data - Statistic data with category discriminator
|
|
176
|
-
*/
|
|
177
|
-
trackStatistic(data: StatisticData): void;
|
|
178
|
-
/**
|
|
179
|
-
* Track parsing statistics (legacy API for backward compatibility)
|
|
180
|
-
* @param category - Statistic category
|
|
181
|
-
* @param data - Statistic data without category
|
|
182
|
-
* @deprecated Use the single-parameter overload with discriminated union instead
|
|
183
|
-
*/
|
|
184
|
-
trackStatistic(category: 'node', data: Omit<Extract<StatisticData, {
|
|
185
|
-
category: 'node';
|
|
186
|
-
}>, 'category'>): void;
|
|
187
|
-
trackStatistic(category: 'unknown', data: Omit<Extract<StatisticData, {
|
|
188
|
-
category: 'unknown';
|
|
189
|
-
}>, 'category'>): void;
|
|
190
|
-
trackStatistic(category: 'error', data: Omit<Extract<StatisticData, {
|
|
191
|
-
category: 'error';
|
|
192
|
-
}>, 'category'>): void;
|
|
193
|
-
/**
|
|
194
|
-
* Track file structure
|
|
195
|
-
* @param structure - File structure information
|
|
196
|
-
* @param fileSource - original file
|
|
197
|
-
* @param documentId - document GUID
|
|
198
|
-
* @param documentIdentifier - document identifier (GUID or hash)
|
|
199
|
-
* @param internalId - document ID from settings.xml
|
|
200
|
-
*/
|
|
201
|
-
trackFileStructure(structure: FileStructure, fileSource: File, documentId?: string, documentIdentifier?: string, internalId?: string): Promise<void>;
|
|
202
|
-
/**
|
|
203
|
-
* Process document metadata
|
|
204
|
-
* @param file - Document file
|
|
205
|
-
* @param options - Additional options
|
|
206
|
-
* @returns Document metadata
|
|
207
|
-
*/
|
|
208
|
-
processDocument(file: File | null, options?: {
|
|
209
|
-
guid?: string;
|
|
210
|
-
identifier?: string;
|
|
211
|
-
internalId?: string;
|
|
212
|
-
}): Promise<DocumentInfo | null>;
|
|
213
|
-
isTelemetryDataChanged(): boolean;
|
|
214
|
-
/**
|
|
215
|
-
* Sends current report
|
|
216
|
-
* @returns Promise that resolves when report is sent
|
|
217
|
-
*/
|
|
218
|
-
sendReport(): Promise<void>;
|
|
219
|
-
/**
|
|
220
|
-
* Sends data to the service
|
|
221
|
-
* @param data - Payload to send
|
|
222
|
-
* @returns Promise that resolves when data is sent
|
|
223
|
-
*/
|
|
224
|
-
sendDataToTelemetry(data: TelemetryPayload): Promise<void>;
|
|
225
|
-
/**
|
|
226
|
-
* Generate unique identifier
|
|
227
|
-
* @returns Unique ID
|
|
228
|
-
* @private
|
|
229
|
-
*/
|
|
230
|
-
generateId(): string;
|
|
231
|
-
/**
|
|
232
|
-
* Reset statistics
|
|
233
|
-
*/
|
|
234
|
-
resetStatistics(): void;
|
|
235
|
-
}
|
|
236
|
-
export {};
|
|
237
|
-
//# sourceMappingURL=Telemetry.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Telemetry.d.ts","sourceRoot":"","sources":["../../../../../shared/common/Telemetry.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
type ReadonlyLooseRecord = Readonly<Record<string, unknown>>;
|
|
2
|
-
/**
|
|
3
|
-
* Hex color string (e.g., "#FF0000")
|
|
4
|
-
*/
|
|
5
|
-
export type HexColor = `#${string}`;
|
|
6
|
-
export interface User extends ReadonlyLooseRecord {
|
|
7
|
-
readonly email: string;
|
|
8
|
-
readonly name?: string;
|
|
9
|
-
}
|
|
10
|
-
export interface AwarenessState extends ReadonlyLooseRecord {
|
|
11
|
-
user?: User;
|
|
12
|
-
}
|
|
13
|
-
export interface AwarenessContext {
|
|
14
|
-
userColorMap: Map<string, HexColor>;
|
|
15
|
-
colorIndex: number;
|
|
16
|
-
config: {
|
|
17
|
-
readonly colors: readonly HexColor[];
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
export interface UserWithColor extends User {
|
|
21
|
-
readonly clientId: number;
|
|
22
|
-
readonly color: HexColor;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Convert provider awareness to an array of users
|
|
26
|
-
*
|
|
27
|
-
* @param context - Awareness context with color configuration
|
|
28
|
-
* @param states - The provider's awareness states object
|
|
29
|
-
* @returns Array of users with assigned colors
|
|
30
|
-
*/
|
|
31
|
-
export declare const awarenessStatesToArray: (context: AwarenessContext, states: Map<number, AwarenessState>) => UserWithColor[];
|
|
32
|
-
/**
|
|
33
|
-
* Shuffle an array of hex colors
|
|
34
|
-
* @param array - List of hex colors
|
|
35
|
-
* @returns Shuffled array of hex colors
|
|
36
|
-
*/
|
|
37
|
-
export declare const shuffleArray: (array: HexColor[]) => HexColor[];
|
|
38
|
-
export {};
|
|
39
|
-
//# sourceMappingURL=awareness.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"awareness.d.ts","sourceRoot":"","sources":["../../../../../../shared/common/collaboration/awareness.ts"],"names":[],"mappings":"AAAA,KAAK,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,IAAI,MAAM,EAAE,CAAC;AAEpC,MAAM,WAAW,IAAK,SAAQ,mBAAmB;IAC/C,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACzD,IAAI,CAAC,EAAE,IAAI,CAAC;CACb;AAED,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE;QACN,QAAQ,CAAC,MAAM,EAAE,SAAS,QAAQ,EAAE,CAAC;KACtC,CAAC;CACH;AAED,MAAM,WAAW,aAAc,SAAQ,IAAI;IACzC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC;CAC1B;AASD;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB,GACjC,SAAS,gBAAgB,EACzB,QAAQ,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,KAClC,aAAa,EA4Bf,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,YAAY,GAAI,OAAO,QAAQ,EAAE,KAAG,QAAQ,EAMxD,CAAC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const DOCX: "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
|
|
2
|
-
export declare const PDF: "application/pdf";
|
|
3
|
-
export declare const HTML: "text/html";
|
|
4
|
-
export declare const documentTypes: {
|
|
5
|
-
readonly docx: "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
|
|
6
|
-
readonly pdf: "application/pdf";
|
|
7
|
-
readonly html: "text/html";
|
|
8
|
-
};
|
|
9
|
-
export type DocumentType = typeof DOCX | typeof PDF | typeof HTML;
|
|
10
|
-
//# sourceMappingURL=document-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"document-types.d.ts","sourceRoot":"","sources":["../../../../../shared/common/document-types.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,EAAG,yEAAkF,CAAC;AACvG,eAAO,MAAM,GAAG,EAAG,iBAA0B,CAAC;AAC9C,eAAO,MAAM,IAAI,EAAG,WAAoB,CAAC;AAEzC,eAAO,MAAM,aAAa;;;;CAIhB,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,IAAI,GAAG,OAAO,GAAG,GAAG,OAAO,IAAI,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare const comments_module_events: {
|
|
2
|
-
readonly RESOLVED: "resolved";
|
|
3
|
-
readonly NEW: "new";
|
|
4
|
-
readonly ADD: "add";
|
|
5
|
-
readonly UPDATE: "update";
|
|
6
|
-
readonly DELETED: "deleted";
|
|
7
|
-
readonly PENDING: "pending";
|
|
8
|
-
readonly SELECTED: "selected";
|
|
9
|
-
readonly COMMENTS_LIST: "comments-list";
|
|
10
|
-
readonly CHANGE_ACCEPTED: "change-accepted";
|
|
11
|
-
readonly CHANGE_REJECTED: "change-rejected";
|
|
12
|
-
};
|
|
13
|
-
export type CommentEvent = typeof comments_module_events[keyof typeof comments_module_events];
|
|
14
|
-
//# sourceMappingURL=event-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"event-types.d.ts","sourceRoot":"","sources":["../../../../../shared/common/event-types.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB;;;;;;;;;;;CAezB,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,sBAAsB,CAAC,MAAM,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Compare two versions of a superdoc.
|
|
3
|
-
* @param version1 - First version string (e.g., "1.2.3")
|
|
4
|
-
* @param version2 - Second version string (e.g., "1.2.4")
|
|
5
|
-
* @returns 1 if version1 is greater, -1 if version2 is greater, 0 if equal
|
|
6
|
-
*/
|
|
7
|
-
export declare function compareVersions(version1: string, version2: string): -1 | 0 | 1;
|
|
8
|
-
//# sourceMappingURL=compare-superdoc-versions.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"compare-superdoc-versions.d.ts","sourceRoot":"","sources":["../../../../../../shared/common/helpers/compare-superdoc-versions.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAY9E"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import type { DocumentType } from '../document-types';
|
|
2
|
-
/**
|
|
3
|
-
* Known MIME types - provides autocomplete
|
|
4
|
-
*/
|
|
5
|
-
export type KnownMimeType = DocumentType | 'text/plain' | 'image/png' | 'image/jpeg' | 'image/gif' | 'image/webp';
|
|
6
|
-
/**
|
|
7
|
-
* Custom MIME type - use for application-specific or uncommon MIME types
|
|
8
|
-
* Template literal type allows for type-safe custom MIME patterns
|
|
9
|
-
*/
|
|
10
|
-
export type CustomMimeType = `${string}/${string}`;
|
|
11
|
-
/**
|
|
12
|
-
* MIME type - either a known type (with autocomplete) or a custom type
|
|
13
|
-
*/
|
|
14
|
-
export type MimeType = KnownMimeType | (CustomMimeType & {
|
|
15
|
-
readonly __custom?: never;
|
|
16
|
-
});
|
|
17
|
-
/**
|
|
18
|
-
* Base error class for file object operations
|
|
19
|
-
*/
|
|
20
|
-
export declare class FileObjectError extends Error {
|
|
21
|
-
readonly cause?: unknown;
|
|
22
|
-
constructor(message: string, cause?: unknown);
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Error thrown when data URI format is invalid
|
|
26
|
-
*/
|
|
27
|
-
export declare class InvalidDataUriError extends FileObjectError {
|
|
28
|
-
readonly uri: string;
|
|
29
|
-
constructor(uri: string);
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Error thrown when network fetch fails
|
|
33
|
-
*/
|
|
34
|
-
export declare class FetchFailedError extends FileObjectError {
|
|
35
|
-
readonly url: string;
|
|
36
|
-
constructor(url: string, cause: unknown);
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Turn a file URL into a File object
|
|
40
|
-
*
|
|
41
|
-
* @param fileUrl - The url or data URI
|
|
42
|
-
* @param name - The name to assign the file object
|
|
43
|
-
* @param type - The MIME type (e.g., 'application/pdf', 'image/png')
|
|
44
|
-
* @returns The file object
|
|
45
|
-
* @throws {InvalidDataUriError} If data URI format is invalid
|
|
46
|
-
* @throws {FetchFailedError} If network request fails
|
|
47
|
-
* @throws {FileObjectError} For other file creation errors
|
|
48
|
-
*/
|
|
49
|
-
export declare const getFileObject: (fileUrl: string, name: string, type: MimeType) => Promise<File>;
|
|
50
|
-
//# sourceMappingURL=get-file-object.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"get-file-object.d.ts","sourceRoot":"","sources":["../../../../../../shared/common/helpers/get-file-object.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,YAAY,CAAC;AAElH;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,GAAG,MAAM,IAAI,MAAM,EAAE,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,aAAa,GAAG,CAAC,cAAc,GAAG;IAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,KAAK,CAAA;CAAE,CAAC,CAAC;AAExF;;GAEG;AACH,qBAAa,eAAgB,SAAQ,KAAK;aACK,KAAK,CAAC,EAAE,OAAO;gBAAhD,OAAO,EAAE,MAAM,EAAkB,KAAK,CAAC,EAAE,OAAO;CAQ7D;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,eAAe;aAC1B,GAAG,EAAE,MAAM;gBAAX,GAAG,EAAE,MAAM;CAIxC;AAED;;GAEG;AACH,qBAAa,gBAAiB,SAAQ,eAAe;aACvB,GAAG,EAAE,MAAM;gBAAX,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO;CAIxD;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,aAAa,GACxB,SAAS,MAAM,EACf,MAAM,MAAM,EACZ,MAAM,QAAQ,KACb,OAAO,CAAC,IAAI,CA4Bd,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { DirectiveBinding } from 'vue';
|
|
2
|
-
interface ClickOutsideElement extends HTMLElement {
|
|
3
|
-
__clickOutsideHandler?: (event: MouseEvent) => void;
|
|
4
|
-
}
|
|
5
|
-
type ClickOutsideHandler = (event: MouseEvent) => void;
|
|
6
|
-
declare const _default: {
|
|
7
|
-
mounted(el: ClickOutsideElement, binding: DirectiveBinding<ClickOutsideHandler>): void;
|
|
8
|
-
unmounted(el: ClickOutsideElement): void;
|
|
9
|
-
};
|
|
10
|
-
export default _default;
|
|
11
|
-
//# sourceMappingURL=v-click-outside.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"v-click-outside.d.ts","sourceRoot":"","sources":["../../../../../../shared/common/helpers/v-click-outside.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAa,gBAAgB,EAAE,MAAM,KAAK,CAAC;AAEvD,UAAU,mBAAoB,SAAQ,WAAW;IAC/C,qBAAqB,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;CACrD;AAED,KAAK,mBAAmB,GAAG,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;;gBAGzC,mBAAmB,WAAW,gBAAgB,CAAC,mBAAmB,CAAC;kBAWjE,mBAAmB;;AAZnC,wBAkBgE"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from './document-types';
|
|
2
|
-
export * from './key-transform';
|
|
3
|
-
export * from './event-types';
|
|
4
|
-
export * from './helpers/get-file-object';
|
|
5
|
-
export * from './helpers/compare-superdoc-versions';
|
|
6
|
-
export { default as vClickOutside } from './helpers/v-click-outside';
|
|
7
|
-
export { Telemetry, TelemetryEventNames, customTelemetryEvent } from './Telemetry';
|
|
8
|
-
export type { TelemetryConfig, Statistics, FileStructure, FileInfo, DocumentInfo, TelemetryError, UnknownElement, BrowserInfo, TelemetryEventName, KnownTelemetryEvent, CustomTelemetryEvent, StatisticCategory, BaseTelemetryEvent, TelemetryUsageEvent, TelemetryParsingReport, TelemetryPayload, StatisticData, } from './Telemetry';
|
|
9
|
-
export * from './collaboration/awareness';
|
|
10
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../shared/common/index.ts"],"names":[],"mappings":"AACA,cAAc,kBAAkB,CAAC;AAGjC,cAAc,iBAAiB,CAAC;AAGhC,cAAc,eAAe,CAAC;AAG9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qCAAqC,CAAC;AAGpD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAOrE,OAAO,EAAE,SAAS,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACnF,YAAY,EAEV,eAAe,EAEf,UAAU,EACV,aAAa,EACb,QAAQ,EACR,YAAY,EACZ,cAAc,EACd,cAAc,EACd,WAAW,EAEX,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,mBAAmB,EACnB,sBAAsB,EACtB,gBAAgB,EAEhB,aAAa,GACd,MAAM,aAAa,CAAC;AAGrB,cAAc,2BAA2B,CAAC"}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Convert a string to snake_case
|
|
3
|
-
*/
|
|
4
|
-
export declare const snakeCase: (str: string) => string;
|
|
5
|
-
/**
|
|
6
|
-
* Convert a string to kebab-case
|
|
7
|
-
*/
|
|
8
|
-
export declare const kebabCase: (str: string) => string;
|
|
9
|
-
type UnknownDict = Record<string, unknown>;
|
|
10
|
-
/**
|
|
11
|
-
* Recursive type to convert snake_case string to camelCase at type level
|
|
12
|
-
*/
|
|
13
|
-
export type CamelCase<S extends string> = S extends `${infer P1}_${infer P2}${infer P3}` ? `${Lowercase<P1>}${Uppercase<P2>}${CamelCase<P3>}` : S extends `${infer P1}-${infer P2}${infer P3}` ? `${Lowercase<P1>}${Uppercase<P2>}${CamelCase<P3>}` : Lowercase<S>;
|
|
14
|
-
/**
|
|
15
|
-
* Recursive type to convert camelCase string to snake_case at type level
|
|
16
|
-
*/
|
|
17
|
-
export type SnakeCase<S extends string> = S extends `${infer C}${infer T}` ? C extends Lowercase<C> ? `${C}${SnakeCase<T>}` : `_${Lowercase<C>}${SnakeCase<T>}` : S;
|
|
18
|
-
/**
|
|
19
|
-
* Transform object keys to camelCase while preserving value types
|
|
20
|
-
*/
|
|
21
|
-
export type CamelizeKeys<T extends UnknownDict> = {
|
|
22
|
-
[K in keyof T as CamelCase<K & string>]: T[K];
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* Transform object keys to snake_case while preserving value types
|
|
26
|
-
*/
|
|
27
|
-
export type SnakeCaseKeys<T extends UnknownDict> = {
|
|
28
|
-
[K in keyof T as SnakeCase<K & string>]: T[K];
|
|
29
|
-
};
|
|
30
|
-
/**
|
|
31
|
-
* Convert all keys in an array of objects to camelCase
|
|
32
|
-
* @param linkComments - Array of objects with snake_case or kebab-case keys
|
|
33
|
-
* @returns Array of objects with camelCase keys, preserving value types
|
|
34
|
-
*/
|
|
35
|
-
export declare const camelizeKeys: <T extends UnknownDict>(linkComments: T[]) => CamelizeKeys<T>[];
|
|
36
|
-
/**
|
|
37
|
-
* Convert all keys in an array of objects to snake_case
|
|
38
|
-
* @param comments - Array of objects with camelCase keys
|
|
39
|
-
* @returns Array of objects with snake_case keys, preserving value types
|
|
40
|
-
*/
|
|
41
|
-
export declare const snakeCaseKeys: <T extends UnknownDict>(comments: T[]) => SnakeCaseKeys<T>[];
|
|
42
|
-
export declare const toKebabCase: (str: string) => string;
|
|
43
|
-
export {};
|
|
44
|
-
//# sourceMappingURL=key-transform.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"key-transform.d.ts","sourceRoot":"","sources":["../../../../../shared/common/key-transform.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,SAAS,GAAI,KAAK,MAAM,KAAG,MACqB,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,SAAS,GAAI,KAAK,MAAM,KAAG,MACqB,CAAC;AAW9D,KAAK,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAE3C;;GAEG;AACH,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,EAAE,IAAI,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE,GACpF,GAAG,SAAS,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,EAAE,CAAC,EAAE,GAClD,CAAC,SAAS,GAAG,MAAM,EAAE,IAAI,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE,GAC9C,GAAG,SAAS,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,EAAE,CAAC,EAAE,GAClD,SAAS,CAAC,CAAC,CAAC,CAAC;AAEjB;;GAEG;AACH,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,GAAG,MAAM,CAAC,EAAE,GACtE,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,GACpB,GAAG,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,GACrB,IAAI,SAAS,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,GACnC,CAAC,CAAC;AAEN;;GAEG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,WAAW,IAAI;KAC/C,CAAC,IAAI,MAAM,CAAC,IAAI,SAAS,CAAC,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAC9C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,WAAW,IAAI;KAChD,CAAC,IAAI,MAAM,CAAC,IAAI,SAAS,CAAC,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAC9C,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,YAAY,GAAI,CAAC,SAAS,WAAW,EAChD,cAAc,CAAC,EAAE,KAChB,YAAY,CAAC,CAAC,CAAC,EAOjB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,aAAa,GAAI,CAAC,SAAS,WAAW,EACjD,UAAU,CAAC,EAAE,KACZ,aAAa,CAAC,CAAC,CAAC,EAOlB,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,KAAK,MAAM,KAAG,MAEzC,CAAC"}
|