@bilig/protocol 0.11.12 → 0.11.13
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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/package-artifacts.d.ts +27 -0
- package/dist/package-artifacts.js +2 -0
- package/dist/package-artifacts.js.map +1 -0
- package/dist/types.d.ts +2 -16
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export * from './enums.js';
|
|
|
4
4
|
export * from './formatting.js';
|
|
5
5
|
export * from './guards.js';
|
|
6
6
|
export * from './opcodes.js';
|
|
7
|
+
export * from './package-artifacts.js';
|
|
7
8
|
export * from './types.js';
|
|
8
9
|
export * from './viewport-tiling.js';
|
|
9
10
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,YAAY,CAAA;AAC1B,cAAc,sBAAsB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,wBAAwB,CAAA;AACtC,cAAc,YAAY,CAAA;AAC1B,cAAc,sBAAsB,CAAA"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface WorkbookPackageRelationshipSnapshot {
|
|
2
|
+
id: string;
|
|
3
|
+
type: string;
|
|
4
|
+
target: string;
|
|
5
|
+
targetMode?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface WorkbookThemeArtifactSnapshot {
|
|
8
|
+
path: string;
|
|
9
|
+
xml: string;
|
|
10
|
+
relationship: WorkbookPackageRelationshipSnapshot;
|
|
11
|
+
contentType?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface WorkbookStyleArtifactsSnapshot {
|
|
14
|
+
stylesXml: string;
|
|
15
|
+
theme?: WorkbookThemeArtifactSnapshot;
|
|
16
|
+
}
|
|
17
|
+
export interface WorkbookDocumentPropertyPartSnapshot {
|
|
18
|
+
path: string;
|
|
19
|
+
xml: string;
|
|
20
|
+
relationship: WorkbookPackageRelationshipSnapshot;
|
|
21
|
+
contentType?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface WorkbookDocumentPropertiesArtifactsSnapshot {
|
|
24
|
+
core?: WorkbookDocumentPropertyPartSnapshot;
|
|
25
|
+
app?: WorkbookDocumentPropertyPartSnapshot;
|
|
26
|
+
custom?: WorkbookDocumentPropertyPartSnapshot;
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package-artifacts.js","sourceRoot":"","sources":["../src/package-artifacts.ts"],"names":[],"mappings":""}
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ErrorCode, type FormulaMode, type ValueTag } from './enums.js';
|
|
2
|
+
import type { WorkbookDocumentPropertiesArtifactsSnapshot, WorkbookPackageRelationshipSnapshot, WorkbookStyleArtifactsSnapshot } from './package-artifacts.js';
|
|
2
3
|
export type CellIndex = number;
|
|
3
4
|
export type FormulaId = number;
|
|
4
5
|
export type RangeIndex = number;
|
|
@@ -209,16 +210,6 @@ export interface WorkbookPivotSnapshot {
|
|
|
209
210
|
rows: number;
|
|
210
211
|
cols: number;
|
|
211
212
|
}
|
|
212
|
-
export interface WorkbookStyleArtifactsSnapshot {
|
|
213
|
-
stylesXml: string;
|
|
214
|
-
theme?: WorkbookThemeArtifactSnapshot;
|
|
215
|
-
}
|
|
216
|
-
export interface WorkbookThemeArtifactSnapshot {
|
|
217
|
-
path: string;
|
|
218
|
-
xml: string;
|
|
219
|
-
relationship: WorkbookPackageRelationshipSnapshot;
|
|
220
|
-
contentType?: string;
|
|
221
|
-
}
|
|
222
213
|
export interface WorkbookSheetCellStyleIndexSnapshot {
|
|
223
214
|
address: string;
|
|
224
215
|
styleIndex: number;
|
|
@@ -227,12 +218,6 @@ export interface WorkbookSheetStyleArtifactsSnapshot {
|
|
|
227
218
|
cellStyleIndexes: WorkbookSheetCellStyleIndexSnapshot[];
|
|
228
219
|
blankCellAddresses?: string[];
|
|
229
220
|
}
|
|
230
|
-
export interface WorkbookPackageRelationshipSnapshot {
|
|
231
|
-
id: string;
|
|
232
|
-
type: string;
|
|
233
|
-
target: string;
|
|
234
|
-
targetMode?: string;
|
|
235
|
-
}
|
|
236
221
|
export interface WorkbookPivotPackagePartSnapshot {
|
|
237
222
|
path: string;
|
|
238
223
|
xml: string;
|
|
@@ -687,6 +672,7 @@ export interface WorkbookCellMetadataReferenceSnapshot {
|
|
|
687
672
|
}
|
|
688
673
|
export interface WorkbookMetadataSnapshot {
|
|
689
674
|
properties?: WorkbookPropertySnapshot[];
|
|
675
|
+
documentPropertyArtifacts?: WorkbookDocumentPropertiesArtifactsSnapshot;
|
|
690
676
|
workbookProtection?: WorkbookProtectionSnapshot;
|
|
691
677
|
definedNames?: WorkbookDefinedNameSnapshot[];
|
|
692
678
|
tables?: WorkbookTableSnapshot[];
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAmC,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAmC,MAAM,YAAY,CAAA;AAsBvE,MAAM,UAAU,eAAe,CAAC,IAAe;IAC7C,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,SAAS,CAAC,IAAI;YACjB,OAAO,SAAS,CAAA;QAClB,KAAK,SAAS,CAAC,IAAI;YACjB,OAAO,SAAS,CAAA;QAClB,KAAK,SAAS,CAAC,GAAG;YAChB,OAAO,OAAO,CAAA;QAChB,KAAK,SAAS,CAAC,KAAK;YAClB,OAAO,SAAS,CAAA;QAClB,KAAK,SAAS,CAAC,IAAI;YACjB,OAAO,QAAQ,CAAA;QACjB,KAAK,SAAS,CAAC,EAAE;YACf,OAAO,MAAM,CAAA;QACf,KAAK,SAAS,CAAC,KAAK;YAClB,OAAO,SAAS,CAAA;QAClB,KAAK,SAAS,CAAC,KAAK;YAClB,OAAO,SAAS,CAAA;QAClB,KAAK,SAAS,CAAC,OAAO;YACpB,OAAO,WAAW,CAAA;QACpB;YACE,OAAO,SAAS,CAAA;IACpB,CAAC;AACH,CAAC"}
|