@shbernal/ts-xlsx 1.2.0 → 2.0.0

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.
Files changed (161) hide show
  1. package/README.md +5 -0
  2. package/dist/core/address.d.ts +49 -2
  3. package/dist/core/address.js +31 -3
  4. package/dist/core/autofilter.d.ts +2 -2
  5. package/dist/core/cell.d.ts +17 -16
  6. package/dist/core/cell.js +3 -7
  7. package/dist/core/color-resolution.d.ts +7 -7
  8. package/dist/core/column.d.ts +8 -9
  9. package/dist/core/column.js +2 -4
  10. package/dist/core/comment-thread.d.ts +32 -23
  11. package/dist/core/comment-thread.js +4 -4
  12. package/dist/core/conditional-formatting-overlay.d.ts +1 -1
  13. package/dist/core/conditional-formatting.d.ts +3 -3
  14. package/dist/core/data-validation-overlay.d.ts +1 -1
  15. package/dist/core/data-validation.d.ts +3 -3
  16. package/dist/core/date.d.ts +3 -3
  17. package/dist/core/formula.d.ts +6 -6
  18. package/dist/core/grid-edits.js +3 -3
  19. package/dist/core/image.d.ts +37 -2
  20. package/dist/core/image.js +6 -0
  21. package/dist/core/internal.d.ts +9 -1
  22. package/dist/core/limits.d.ts +4 -4
  23. package/dist/core/merge.d.ts +6 -12
  24. package/dist/core/merge.js +0 -3
  25. package/dist/core/page-setup.d.ts +4 -4
  26. package/dist/core/pivot-table.d.ts +2 -4
  27. package/dist/core/pivot-table.js +5 -5
  28. package/dist/core/preserved.d.ts +3 -3
  29. package/dist/core/protection.d.ts +4 -4
  30. package/dist/core/range.d.ts +16 -14
  31. package/dist/core/range.js +5 -5
  32. package/dist/core/row-input.d.ts +2 -8
  33. package/dist/core/row-input.js +2 -2
  34. package/dist/core/row.d.ts +7 -8
  35. package/dist/core/row.js +2 -4
  36. package/dist/core/style.d.ts +14 -14
  37. package/dist/core/table-style.d.ts +9 -9
  38. package/dist/core/table-style.js +1 -1
  39. package/dist/core/table.d.ts +30 -42
  40. package/dist/core/table.js +16 -10
  41. package/dist/core/theme.d.ts +13 -43
  42. package/dist/core/theme.js +2 -148
  43. package/dist/core/value.d.ts +7 -7
  44. package/dist/core/workbook-protection.d.ts +2 -2
  45. package/dist/core/workbook-styles.d.ts +26 -0
  46. package/dist/core/workbook-styles.js +48 -0
  47. package/dist/core/workbook-theme.d.ts +25 -0
  48. package/dist/core/workbook-theme.js +49 -0
  49. package/dist/core/workbook-vba.d.ts +17 -0
  50. package/dist/core/workbook-vba.js +79 -0
  51. package/dist/core/workbook.d.ts +141 -83
  52. package/dist/core/workbook.js +74 -133
  53. package/dist/core/worksheet-comments.d.ts +9 -0
  54. package/dist/core/worksheet-comments.js +52 -0
  55. package/dist/core/worksheet-model.d.ts +4 -4
  56. package/dist/core/worksheet-model.js +1 -0
  57. package/dist/core/worksheet-pictures.d.ts +29 -0
  58. package/dist/core/worksheet-pictures.js +42 -0
  59. package/dist/core/worksheet.d.ts +94 -77
  60. package/dist/core/worksheet.js +36 -95
  61. package/dist/customui/errors.d.ts +1 -1
  62. package/dist/customui/ribbon.d.ts +3 -3
  63. package/dist/entries/core.d.ts +4 -4
  64. package/dist/entries/core.js +1 -1
  65. package/dist/entries/vba.d.ts +1 -1
  66. package/dist/entries/vba.js +1 -1
  67. package/dist/entries/xlsx.d.ts +1 -0
  68. package/dist/entries/xlsx.js +1 -0
  69. package/dist/errors.d.ts +12 -12
  70. package/dist/io/csv/read.js +1 -2
  71. package/dist/io/csv/write.d.ts +8 -3
  72. package/dist/io/csv/write.js +17 -2
  73. package/dist/io/opc/errors.d.ts +6 -6
  74. package/dist/io/opc/inflate.d.ts +1 -1
  75. package/dist/io/opc/namespaces.d.ts +1 -1
  76. package/dist/io/opc/read-opc.d.ts +19 -3
  77. package/dist/io/opc/read-opc.js +14 -8
  78. package/dist/io/opc/read-options.d.ts +2 -2
  79. package/dist/io/opc/sniff-format.d.ts +2 -2
  80. package/dist/io/opc/zip-mtime.d.ts +5 -0
  81. package/dist/io/opc/zip-mtime.js +1 -0
  82. package/dist/io/style/xf-style.d.ts +38 -6
  83. package/dist/io/style/xf-style.js +22 -0
  84. package/dist/io/xlsb/errors.d.ts +1 -1
  85. package/dist/io/xlsb/formula.d.ts +4 -4
  86. package/dist/io/xlsb/primitives.d.ts +8 -8
  87. package/dist/io/xlsb/ptg-functions.d.ts +1 -1
  88. package/dist/io/xlsb/read-styles.js +2 -20
  89. package/dist/io/xlsb/read.d.ts +2 -2
  90. package/dist/io/xlsx/cell-accumulator.d.ts +25 -6
  91. package/dist/io/xlsx/cell-accumulator.js +111 -30
  92. package/dist/io/xlsx/cell-value.d.ts +2 -2
  93. package/dist/io/xlsx/cell-value.js +3 -3
  94. package/dist/io/xlsx/color-xml.js +11 -17
  95. package/dist/io/xlsx/comments.d.ts +5 -5
  96. package/dist/io/xlsx/comments.js +13 -6
  97. package/dist/io/xlsx/conditional-formatting.d.ts +3 -3
  98. package/dist/io/xlsx/conditional-formatting.js +7 -16
  99. package/dist/io/xlsx/data-validation.d.ts +2 -2
  100. package/dist/io/xlsx/data-validation.js +1 -1
  101. package/dist/io/xlsx/edit-vba.js +2 -1
  102. package/dist/io/xlsx/errors.d.ts +3 -3
  103. package/dist/io/xlsx/hyperlinks.d.ts +4 -2
  104. package/dist/io/xlsx/hyperlinks.js +5 -5
  105. package/dist/io/xlsx/images.d.ts +1 -1
  106. package/dist/io/xlsx/images.js +8 -8
  107. package/dist/io/xlsx/namespaces.d.ts +2 -2
  108. package/dist/io/xlsx/package-plan.js +5 -2
  109. package/dist/io/xlsx/read-pivot.js +2 -5
  110. package/dist/io/xlsx/read-rows.d.ts +13 -13
  111. package/dist/io/xlsx/read-rows.js +19 -55
  112. package/dist/io/xlsx/read-shared-strings.js +7 -5
  113. package/dist/io/xlsx/read-styles.d.ts +3 -3
  114. package/dist/io/xlsx/read-styles.js +40 -65
  115. package/dist/io/xlsx/read-worksheet.js +67 -115
  116. package/dist/io/xlsx/read.d.ts +3 -5
  117. package/dist/io/xlsx/read.js +94 -71
  118. package/dist/io/xlsx/rich-runs.d.ts +1 -1
  119. package/dist/io/xlsx/rich-runs.js +1 -1
  120. package/dist/io/xlsx/rich-text.d.ts +1 -1
  121. package/dist/io/xlsx/shared-strings.d.ts +2 -2
  122. package/dist/io/xlsx/sheet-properties.js +5 -4
  123. package/dist/io/xlsx/styles.d.ts +8 -9
  124. package/dist/io/xlsx/styles.js +4 -3
  125. package/dist/io/xlsx/tables.d.ts +2 -2
  126. package/dist/io/xlsx/tables.js +8 -13
  127. package/dist/io/xlsx/theme-xml.d.ts +37 -0
  128. package/dist/io/xlsx/theme-xml.js +142 -0
  129. package/dist/io/xlsx/threaded-comments.d.ts +18 -27
  130. package/dist/io/xlsx/threaded-comments.js +9 -21
  131. package/dist/io/xlsx/workbook-xml.d.ts +1 -1
  132. package/dist/io/xlsx/workbook-xml.js +6 -2
  133. package/dist/io/xlsx/worksheet-xml.d.ts +2 -2
  134. package/dist/io/xlsx/worksheet-xml.js +7 -12
  135. package/dist/io/xlsx/write-stream.d.ts +15 -15
  136. package/dist/io/xlsx/write-stream.js +5 -3
  137. package/dist/io/xlsx/write.d.ts +12 -7
  138. package/dist/io/xlsx/write.js +10 -6
  139. package/dist/io/xlsx/x14-ext.d.ts +1 -1
  140. package/dist/vba/bytes.d.ts +12 -0
  141. package/dist/vba/bytes.js +40 -0
  142. package/dist/vba/cfb-writer.d.ts +1 -1
  143. package/dist/vba/cfb.d.ts +1 -1
  144. package/dist/vba/cfb.js +15 -51
  145. package/dist/vba/codepage.d.ts +2 -2
  146. package/dist/vba/errors.d.ts +2 -2
  147. package/dist/vba/index.d.ts +2 -2
  148. package/dist/vba/index.js +2 -2
  149. package/dist/vba/ms-ovba.d.ts +1 -1
  150. package/dist/vba/ms-ovba.js +1 -3
  151. package/dist/vba/project-editor.d.ts +9 -9
  152. package/dist/vba/project-editor.js +2 -11
  153. package/dist/vba/project.d.ts +5 -5
  154. package/dist/vba/project.js +1 -10
  155. package/dist/vba/vba-encoding.d.ts +1 -1
  156. package/dist/xml/errors.d.ts +1 -1
  157. package/dist/xml/xml-read.d.ts +38 -9
  158. package/dist/xml/xml-read.js +23 -0
  159. package/dist/xml/xml.d.ts +31 -9
  160. package/dist/xml/xml.js +23 -3
  161. package/package.json +41 -35
@@ -1,4 +1,3 @@
1
- import { AuthoringError } from '../errors.js';
2
1
  export const THEME_COLOR_SLOTS = [
3
2
  'lt1',
4
3
  'dk1',
@@ -27,161 +26,16 @@ export const DEFAULT_THEME_COLOR_SCHEME = {
27
26
  hlink: '0563C1',
28
27
  folHlink: '954F72',
29
28
  };
30
- const SCHEME_SLOT = new RegExp('<a:(dk1|lt1|dk2|lt2|accent[1-6]|hlink|folHlink)\\b[^>]*>' + '\\s*<a:(srgbClr|sysClr)\\b([^>]*)>', 'g');
31
- export function parseThemeColorScheme(themeXml) {
32
- const block = /<a:clrScheme\b[^>]*>([\s\S]*?)<\/a:clrScheme>/.exec(themeXml);
33
- if (block === null)
34
- return {};
35
- const scheme = {};
36
- for (const match of (block[1] ?? '').matchAll(SCHEME_SLOT)) {
37
- const slot = match[1];
38
- const attrs = match[3] ?? '';
39
- const source = match[2] === 'sysClr' ? /\blastClr="([^"]*)"/ : /\bval="([^"]*)"/;
40
- const value = source.exec(attrs)?.[1];
41
- if (value !== undefined && /^[0-9a-fA-F]{6}$/.test(value))
42
- scheme[slot] = value;
43
- }
44
- return scheme;
45
- }
46
29
  export const OFFICE_BODY_FACE = 'Calibri';
47
30
  export const DEFAULT_THEME_FONTS = {
48
31
  major: 'Calibri Light',
49
32
  minor: OFFICE_BODY_FACE,
50
33
  };
51
- export function parseThemeFontScheme(themeXml) {
52
- const block = /<a:fontScheme\b[^>]*>([\s\S]*?)<\/a:fontScheme>/.exec(themeXml);
53
- if (block === null)
54
- return {};
55
- const face = (which) => {
56
- const font = new RegExp(`<a:${which}\\b[^>]*>([\\s\\S]*?)</a:${which}>`).exec(block[1] ?? '');
57
- return /<a:latin\b[^>]*\btypeface="([^"]*)"/.exec(font?.[1] ?? '')?.[1];
58
- };
59
- const scheme = {};
60
- const major = face('majorFont');
61
- const minor = face('minorFont');
62
- if (major !== undefined)
63
- scheme.major = major;
64
- if (minor !== undefined)
65
- scheme.minor = minor;
66
- return scheme;
67
- }
68
- const SCHEME_ELEMENT_ORDER = [
69
- 'dk1',
70
- 'lt1',
71
- 'dk2',
72
- 'lt2',
73
- 'accent1',
74
- 'accent2',
75
- 'accent3',
76
- 'accent4',
77
- 'accent5',
78
- 'accent6',
79
- 'hlink',
80
- 'folHlink',
81
- ];
82
- export function applyThemeOverrides(baseXml, overrides) {
83
- let xml = baseXml;
84
- const colors = overrides.colors ?? {};
85
- if (Object.keys(colors).length > 0) {
86
- const sourceElements = parseThemeColorElements(baseXml);
87
- const body = SCHEME_ELEMENT_ORDER.map((slot) => {
88
- const authored = colors[slot];
89
- const inner = authored !== undefined
90
- ? `<a:srgbClr val="${normalizeSchemeValue(authored)}"/>`
91
- : (sourceElements[slot] ??
92
- `<a:srgbClr val="${DEFAULT_THEME_COLOR_SCHEME[slot]}"/>`);
93
- return `<a:${slot}>${inner}</a:${slot}>`;
94
- }).join('');
95
- xml = replaceBlockBody(xml, 'clrScheme', body);
96
- }
97
- const { major, minor } = overrides.fonts ?? {};
98
- if (major !== undefined)
99
- xml = replaceLatinTypeface(xml, 'majorFont', major);
100
- if (minor !== undefined)
101
- xml = replaceLatinTypeface(xml, 'minorFont', minor);
102
- return xml;
103
- }
104
- export function parseThemeColorElements(themeXml) {
105
- const block = /<a:clrScheme\b[^>]*>([\s\S]*?)<\/a:clrScheme>/.exec(themeXml);
106
- if (block === null)
107
- return {};
108
- const elements = {};
109
- const pattern = /<a:(dk1|lt1|dk2|lt2|accent[1-6]|hlink|folHlink)>([\s\S]*?)<\/a:\1>|<a:(dk1|lt1|dk2|lt2|accent[1-6]|hlink|folHlink)\/>/g;
110
- for (const match of (block[1] ?? '').matchAll(pattern)) {
111
- const slot = (match[1] ?? match[3]);
112
- const inner = match[2];
113
- if (inner !== undefined && inner !== '')
114
- elements[slot] = inner;
115
- }
116
- return elements;
117
- }
118
- function normalizeSchemeValue(value) {
34
+ export function normalizeThemeColor(value) {
119
35
  const hex = value.startsWith('#') ? value.slice(1) : value;
120
36
  const rgb = hex.length === 8 ? hex.slice(2) : hex;
121
37
  if (!/^[0-9a-fA-F]{6}$/.test(rgb)) {
122
- throw new AuthoringError(`Invalid theme colour ${JSON.stringify(value)}: expected 6 hexadecimal digits (RRGGBB)`);
38
+ throw new SyntaxError(`Invalid theme colour ${JSON.stringify(value)}: expected 6 hexadecimal digits (RRGGBB)`);
123
39
  }
124
40
  return rgb.toUpperCase();
125
41
  }
126
- function replaceBlockBody(xml, name, body) {
127
- const pattern = new RegExp(`(<a:${name}\\b[^>]*>)[\\s\\S]*?(</a:${name}>)`);
128
- return xml.replace(pattern, (_all, open, close) => `${open}${body}${close}`);
129
- }
130
- function replaceLatinTypeface(xml, which, typeface) {
131
- const pattern = new RegExp(`(<a:${which}\\b[^>]*>[\\s\\S]*?<a:latin\\b)[^>]*(/>)`);
132
- return xml.replace(pattern, (_all, open, close) => `${open} typeface="${escapeXmlAttr(typeface)}"${close}`);
133
- }
134
- function escapeXmlAttr(value) {
135
- return value
136
- .replace(/&/g, '&amp;')
137
- .replace(/</g, '&lt;')
138
- .replace(/>/g, '&gt;')
139
- .replace(/"/g, '&quot;');
140
- }
141
- export const DEFAULT_THEME_XML = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n' +
142
- '<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office Theme">' +
143
- '<a:themeElements>' +
144
- '<a:clrScheme name="Office">' +
145
- '<a:dk1><a:sysClr val="windowText" lastClr="000000"/></a:dk1>' +
146
- '<a:lt1><a:sysClr val="window" lastClr="FFFFFF"/></a:lt1>' +
147
- '<a:dk2><a:srgbClr val="44546A"/></a:dk2>' +
148
- '<a:lt2><a:srgbClr val="E7E6E6"/></a:lt2>' +
149
- '<a:accent1><a:srgbClr val="4472C4"/></a:accent1>' +
150
- '<a:accent2><a:srgbClr val="ED7D31"/></a:accent2>' +
151
- '<a:accent3><a:srgbClr val="A5A5A5"/></a:accent3>' +
152
- '<a:accent4><a:srgbClr val="FFC000"/></a:accent4>' +
153
- '<a:accent5><a:srgbClr val="5B9BD5"/></a:accent5>' +
154
- '<a:accent6><a:srgbClr val="70AD47"/></a:accent6>' +
155
- '<a:hlink><a:srgbClr val="0563C1"/></a:hlink>' +
156
- '<a:folHlink><a:srgbClr val="954F72"/></a:folHlink>' +
157
- '</a:clrScheme>' +
158
- '<a:fontScheme name="Office">' +
159
- '<a:majorFont><a:latin typeface="Calibri Light" panose="020F0302020204030204"/><a:ea typeface=""/><a:cs typeface=""/></a:majorFont>' +
160
- '<a:minorFont><a:latin typeface="Calibri" panose="020F0502020204030204"/><a:ea typeface=""/><a:cs typeface=""/></a:minorFont>' +
161
- '</a:fontScheme>' +
162
- '<a:fmtScheme name="Office">' +
163
- '<a:fillStyleLst>' +
164
- '<a:solidFill><a:schemeClr val="phClr"/></a:solidFill>' +
165
- '<a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:lumMod val="110000"/><a:satMod val="105000"/><a:tint val="67000"/></a:schemeClr></a:gs><a:gs pos="50000"><a:schemeClr val="phClr"><a:lumMod val="105000"/><a:satMod val="103000"/><a:tint val="73000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:lumMod val="105000"/><a:satMod val="109000"/><a:tint val="81000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="5400000" scaled="0"/></a:gradFill>' +
166
- '<a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:satMod val="103000"/><a:lumMod val="102000"/><a:tint val="94000"/></a:schemeClr></a:gs><a:gs pos="50000"><a:schemeClr val="phClr"><a:satMod val="110000"/><a:lumMod val="100000"/><a:shade val="100000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:lumMod val="99000"/><a:satMod val="120000"/><a:shade val="78000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="5400000" scaled="0"/></a:gradFill>' +
167
- '</a:fillStyleLst>' +
168
- '<a:lnStyleLst>' +
169
- '<a:ln w="6350" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/><a:miter lim="800000"/></a:ln>' +
170
- '<a:ln w="12700" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/><a:miter lim="800000"/></a:ln>' +
171
- '<a:ln w="19050" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/><a:miter lim="800000"/></a:ln>' +
172
- '</a:lnStyleLst>' +
173
- '<a:effectStyleLst>' +
174
- '<a:effectStyle><a:effectLst/></a:effectStyle>' +
175
- '<a:effectStyle><a:effectLst/></a:effectStyle>' +
176
- '<a:effectStyle><a:effectLst><a:outerShdw blurRad="57150" dist="19050" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="63000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle>' +
177
- '</a:effectStyleLst>' +
178
- '<a:bgFillStyleLst>' +
179
- '<a:solidFill><a:schemeClr val="phClr"/></a:solidFill>' +
180
- '<a:solidFill><a:schemeClr val="phClr"><a:tint val="95000"/><a:satMod val="170000"/></a:schemeClr></a:solidFill>' +
181
- '<a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="93000"/><a:satMod val="150000"/><a:shade val="98000"/><a:lumMod val="102000"/></a:schemeClr></a:gs><a:gs pos="50000"><a:schemeClr val="phClr"><a:tint val="98000"/><a:satMod val="130000"/><a:shade val="90000"/><a:lumMod val="103000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="63000"/><a:satMod val="120000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="5400000" scaled="0"/></a:gradFill>' +
182
- '</a:bgFillStyleLst>' +
183
- '</a:fmtScheme>' +
184
- '</a:themeElements>' +
185
- '<a:objectDefaults/>' +
186
- '<a:extraClrSchemeLst/>' +
187
- '</a:theme>';
@@ -38,7 +38,7 @@ export interface HyperlinkValue {
38
38
  * cell; `range` records how far Excel highlights the clickable area so it survives a round-trip. */
39
39
  readonly range?: string;
40
40
  }
41
- /** The cached result a formula carries any scalar, a date, or an error. */
41
+ /** The cached result a formula carries: any scalar, a date, or an error. */
42
42
  export type FormulaResult = number | string | boolean | Date | ErrorValue;
43
43
  /** A cell whose value is computed by its own formula. */
44
44
  export interface FormulaValue {
@@ -46,7 +46,7 @@ export interface FormulaValue {
46
46
  readonly result?: FormulaResult;
47
47
  }
48
48
  /**
49
- * A cell that participates in a shared formula a clone of a master formula cell filled across a
49
+ * A cell that participates in a shared formula: a clone of a master formula cell filled across a
50
50
  * range. `sharedFormula` is the master cell's address (e.g. `'B1'`); the master itself is a plain
51
51
  * {@link FormulaValue}. On read, the clone's own formula is the master's translated to the clone's
52
52
  * position and `result` is the clone's cached value; on write, the clones of a master collapse into
@@ -60,7 +60,7 @@ export interface SharedFormulaValue {
60
60
  readonly result?: FormulaResult;
61
61
  }
62
62
  /**
63
- * A cell computed by a What-If-Analysis data table (`<f t="dataTable">`) the OOXML formula kind that
63
+ * A cell computed by a What-If-Analysis data table (`<f t="dataTable">`), the OOXML formula kind that
64
64
  * fills a range by re-evaluating a model against a grid of substituted input cells. The library does
65
65
  * not evaluate it; it preserves the declaration so a read-modify-write cycle re-emits it verbatim
66
66
  * rather than silently dropping the data-table kind.
@@ -88,7 +88,7 @@ export type CellValue = null | number | string | boolean | Date | ErrorValue | F
88
88
  */
89
89
  export declare function isErrorValue(value: CellValue): value is ErrorValue;
90
90
  /**
91
- * Whether a value is a cell's own formula ({@link FormulaValue}) a master, or a formula
91
+ * Whether a value is a cell's own formula ({@link FormulaValue}): a master, or a formula
92
92
  * belonging to no shared group. A shared-formula clone is **not** one of these; see
93
93
  * {@link isSharedFormulaValue}. Both report as `ValueType.Formula`, so a caller that means "any
94
94
  * formula-shaped cell" wants {@link detectValueType}, not this.
@@ -115,7 +115,7 @@ export declare function isHyperlinkValue(value: CellValue): value is HyperlinkVa
115
115
  */
116
116
  export declare function richTextToPlain(value: RichTextValue): string;
117
117
  /**
118
- * The plain text of any cell value total over {@link CellValue}, so a caller reading a sheet
118
+ * The plain text of any cell value, total over {@link CellValue}, so a caller reading a sheet
119
119
  * whose cells it did not write never has to switch on the union itself.
120
120
  *
121
121
  * This is the *value's* text, not the cell's *display* text: a number renders as JavaScript
@@ -126,7 +126,7 @@ export declare function richTextToPlain(value: RichTextValue): string;
126
126
  * - the empty cell (`null`) and an invalid `Date` → `""`, the two ways a cell has no text
127
127
  * - a boolean → `"TRUE"` / `"FALSE"`, Excel's own literals rather than JavaScript's
128
128
  * - a `Date` → a full ISO-8601 timestamp
129
- * - an error → its literal, e.g. `"#REF!"` the same string the grid shows
129
+ * - an error → its literal, e.g. `"#REF!"`, the same string the grid shows
130
130
  * - rich text → every run concatenated ({@link richTextToPlain})
131
131
  * - a hyperlink → its label, never its destination
132
132
  * - any of the three formula kinds → the text of the *cached result*, and `""` when the cell
@@ -146,7 +146,7 @@ export declare function isErrorCode(text: string): text is ErrorCode;
146
146
  * Normalise a raw assignment into a stored {@link CellValue}. `undefined` becomes the
147
147
  * empty cell (`null`); every other kind is validated by {@link detectValueType}. The
148
148
  * model never rewrites one value *kind* into another (a numeric-looking string stays a
149
- * string) the single exception is formula text, which is canonicalised to the OOXML
149
+ * string). The single exception is formula text, which is canonicalised to the OOXML
150
150
  * stored form (no leading `=`) so round-trips are idempotent regardless of how the
151
151
  * caller supplied it.
152
152
  *
@@ -12,11 +12,11 @@ export type WorkbookProtectionCredentialAttr = (typeof WORKBOOK_PROTECTION_CREDE
12
12
  /**
13
13
  * A workbook's structure/window protection. The three lock flags each default to `false` (absent),
14
14
  * matching OOXML: an omitted attribute leaves that aspect unlocked. The optional {@link credentials}
15
- * bag carries the opaque password attributes verbatim the library never verifies a password, it
15
+ * bag carries the opaque password attributes verbatim: the library never verifies a password, it
16
16
  * only refuses to lose one.
17
17
  */
18
18
  export interface WorkbookProtection {
19
- /** Lock the workbook structure no adding, deleting, reordering, or unhiding sheets. */
19
+ /** Lock the workbook structure: no adding, deleting, reordering, or unhiding sheets. */
20
20
  readonly lockStructure?: boolean;
21
21
  /** Lock the workbook window geometry. */
22
22
  readonly lockWindows?: boolean;
@@ -0,0 +1,26 @@
1
+ import type { NamedCellStyle, TableStyleTable } from './style.ts';
2
+ import type { TableStyle } from './table-style.ts';
3
+ /**
4
+ * The preserved style tables of a workbook: the `<dxfs>` fragments, the named cell styles, the two
5
+ * colour lists, and the table-style definitions a file declared plus the ones a caller authored.
6
+ *
7
+ * Every restore replaces what it restores rather than merging, because a reader states a table
8
+ * whole: a half-restored `<dxfs>` would leave existing `dxfId` references pointing into a mix of two
9
+ * files.
10
+ */
11
+ export declare class WorkbookStyleTables {
12
+ #private;
13
+ get differentialStyles(): readonly string[];
14
+ get namedStyles(): readonly NamedCellStyle[];
15
+ get indexedColors(): readonly string[];
16
+ get mruColors(): readonly string[];
17
+ get tableStyles(): TableStyleTable;
18
+ get customTableStyles(): readonly TableStyle[];
19
+ addCustomTableStyle(style: TableStyle): void;
20
+ indexedPalette(): readonly string[];
21
+ restoreDifferentialStyles(fragments: readonly string[]): void;
22
+ restoreNamedStyles(styles: readonly NamedCellStyle[]): void;
23
+ restoreIndexedColors(fragments: readonly string[]): void;
24
+ restoreMruColors(fragments: readonly string[]): void;
25
+ restoreTableStyles(table: TableStyleTable): void;
26
+ }
@@ -0,0 +1,48 @@
1
+ import { replaceContents } from './containers.js';
2
+ export class WorkbookStyleTables {
3
+ #differentialStyles = [];
4
+ #namedStyles = [];
5
+ #indexedColors = [];
6
+ #mruColors = [];
7
+ #tableStyles = { styles: [] };
8
+ #customTableStyles = new Map();
9
+ get differentialStyles() {
10
+ return this.#differentialStyles;
11
+ }
12
+ get namedStyles() {
13
+ return this.#namedStyles;
14
+ }
15
+ get indexedColors() {
16
+ return this.#indexedColors;
17
+ }
18
+ get mruColors() {
19
+ return this.#mruColors;
20
+ }
21
+ get tableStyles() {
22
+ return this.#tableStyles;
23
+ }
24
+ get customTableStyles() {
25
+ return [...this.#customTableStyles.values()];
26
+ }
27
+ addCustomTableStyle(style) {
28
+ this.#customTableStyles.set(style.name, style);
29
+ }
30
+ indexedPalette() {
31
+ return this.#indexedColors.map((fragment) => /\brgb="([^"]*)"/.exec(fragment)?.[1] ?? '');
32
+ }
33
+ restoreDifferentialStyles(fragments) {
34
+ replaceContents(this.#differentialStyles, fragments);
35
+ }
36
+ restoreNamedStyles(styles) {
37
+ replaceContents(this.#namedStyles, styles);
38
+ }
39
+ restoreIndexedColors(fragments) {
40
+ replaceContents(this.#indexedColors, fragments);
41
+ }
42
+ restoreMruColors(fragments) {
43
+ replaceContents(this.#mruColors, fragments);
44
+ }
45
+ restoreTableStyles(table) {
46
+ this.#tableStyles = table;
47
+ }
48
+ }
@@ -0,0 +1,25 @@
1
+ import type { Color } from './style.ts';
2
+ import { type ThemeColorScheme, type ThemeFontScheme, type ThemeOverrides } from './theme.ts';
3
+ import type { PreservedTheme } from './workbook.ts';
4
+ /** The schemes a theme part declares, as the codec that read it decoded them. */
5
+ export interface DeclaredThemeSchemes {
6
+ readonly colors: ThemeColorScheme;
7
+ readonly fonts: ThemeFontScheme;
8
+ }
9
+ /**
10
+ * The theme slice of a workbook: the preserved part, the colour scheme and typefaces every
11
+ * `theme="n"` reference resolves against, and the overrides {@link Workbook.setTheme} authors over
12
+ * them.
13
+ */
14
+ export declare class WorkbookTheme {
15
+ #private;
16
+ constructor(indexedPalette: () => readonly string[]);
17
+ get part(): PreservedTheme | undefined;
18
+ restorePart(theme: PreservedTheme | undefined, declared: DeclaredThemeSchemes): void;
19
+ author(overrides: ThemeOverrides): void;
20
+ get colors(): ThemeColorScheme;
21
+ get fonts(): ThemeFontScheme;
22
+ get authoredFonts(): ThemeFontScheme;
23
+ get overrides(): ThemeOverrides | undefined;
24
+ resolveColor(color: Color): string | undefined;
25
+ }
@@ -0,0 +1,49 @@
1
+ import { resolveColor } from './color-resolution.js';
2
+ import { DEFAULT_THEME_COLOR_SCHEME, DEFAULT_THEME_FONTS, normalizeThemeColor, } from './theme.js';
3
+ export class WorkbookTheme {
4
+ #indexedPalette;
5
+ #part;
6
+ #declared = { colors: {}, fonts: {} };
7
+ #authored = {
8
+ colors: {},
9
+ fonts: {},
10
+ };
11
+ constructor(indexedPalette) {
12
+ this.#indexedPalette = indexedPalette;
13
+ }
14
+ get part() {
15
+ return this.#part;
16
+ }
17
+ restorePart(theme, declared) {
18
+ this.#part = theme;
19
+ this.#declared = declared;
20
+ }
21
+ author(overrides) {
22
+ for (const value of Object.values(overrides.colors ?? {}))
23
+ normalizeThemeColor(value);
24
+ Object.assign(this.#authored.colors, overrides.colors ?? {});
25
+ this.#authored.fonts = { ...this.#authored.fonts, ...overrides.fonts };
26
+ }
27
+ get colors() {
28
+ const { colors } = this.#declared;
29
+ const base = Object.keys(colors).length === 0 ? DEFAULT_THEME_COLOR_SCHEME : colors;
30
+ return { ...base, ...this.#authored.colors };
31
+ }
32
+ get fonts() {
33
+ const { fonts } = this.#declared;
34
+ const base = Object.keys(fonts).length === 0 ? DEFAULT_THEME_FONTS : fonts;
35
+ return { ...base, ...this.#authored.fonts };
36
+ }
37
+ get authoredFonts() {
38
+ return this.#authored.fonts;
39
+ }
40
+ get overrides() {
41
+ const { colors, fonts } = this.#authored;
42
+ if (Object.keys(colors).length === 0 && Object.keys(fonts).length === 0)
43
+ return undefined;
44
+ return { colors, fonts };
45
+ }
46
+ resolveColor(color) {
47
+ return resolveColor(color, { theme: this.colors, indexed: this.#indexedPalette() });
48
+ }
49
+ }
@@ -0,0 +1,17 @@
1
+ import { type VbaLibraryReference, type VbaProject, type VbaProjectSignature } from '../vba/index.ts';
2
+ import type { PreservedWorkbookReference } from './workbook.ts';
3
+ /**
4
+ * The macro-project slice of a workbook: the lazily-decoded project, the raw blob the writer
5
+ * re-embeds, the signatures wired off it, and the two structural edits that can be made to a project
6
+ * without recompiling p-code.
7
+ */
8
+ export declare class WorkbookVbaProject {
9
+ #private;
10
+ constructor(references: PreservedWorkbookReference[]);
11
+ get project(): VbaProject | undefined;
12
+ get bytes(): Uint8Array | undefined;
13
+ set bytes(bytes: Uint8Array | undefined);
14
+ get signatures(): readonly VbaProjectSignature[];
15
+ removeModule(name: string): void;
16
+ addReference(ref: VbaLibraryReference): void;
17
+ }
@@ -0,0 +1,79 @@
1
+ import { addVbaReference, parseVbaProject, removeVbaModule, VBA_PROJECT_CONTENT_TYPE, VBA_PROJECT_PART_PATH, VBA_PROJECT_REL_TYPE, VbaAuthorError, vbaProjectSignatureKind, } from '../vba/index.js';
2
+ import { replaceContents } from './containers.js';
3
+ export class WorkbookVbaProject {
4
+ #references;
5
+ #parsed = false;
6
+ #project = undefined;
7
+ constructor(references) {
8
+ this.#references = references;
9
+ }
10
+ get project() {
11
+ if (!this.#parsed) {
12
+ const bytes = this.#entry()?.bytes;
13
+ this.#project = bytes ? parseVbaProject(bytes) : undefined;
14
+ this.#parsed = true;
15
+ }
16
+ return this.#project;
17
+ }
18
+ get bytes() {
19
+ return this.#entry()?.bytes.slice();
20
+ }
21
+ set bytes(bytes) {
22
+ if (bytes !== undefined)
23
+ parseVbaProject(bytes);
24
+ replaceContents(this.#references, this.#references.filter((r) => !r.relType.endsWith('/vbaProject')));
25
+ if (bytes !== undefined) {
26
+ this.#references.push({
27
+ relType: VBA_PROJECT_REL_TYPE,
28
+ entryPath: VBA_PROJECT_PART_PATH,
29
+ parts: [
30
+ {
31
+ path: VBA_PROJECT_PART_PATH,
32
+ contentType: VBA_PROJECT_CONTENT_TYPE,
33
+ bytes: bytes.slice(),
34
+ rels: [],
35
+ },
36
+ ],
37
+ });
38
+ }
39
+ this.#parsed = false;
40
+ this.#project = undefined;
41
+ }
42
+ get signatures() {
43
+ const ref = this.#ref();
44
+ const entry = ref?.parts.find((p) => p.path === ref.entryPath);
45
+ if (ref === undefined || entry === undefined)
46
+ return [];
47
+ const partByPath = new Map(ref.parts.map((p) => [p.path, p]));
48
+ const signatures = [];
49
+ for (const rel of entry.rels) {
50
+ const kind = vbaProjectSignatureKind(rel.type);
51
+ const part = kind === undefined ? undefined : partByPath.get(rel.targetPath);
52
+ if (kind !== undefined && part !== undefined) {
53
+ signatures.push({ kind, bytes: part.bytes.slice() });
54
+ }
55
+ }
56
+ return signatures;
57
+ }
58
+ removeModule(name) {
59
+ const bytes = this.bytes;
60
+ if (bytes === undefined) {
61
+ throw new VbaAuthorError('workbook has no VBA project to remove a module from');
62
+ }
63
+ this.bytes = removeVbaModule(bytes, name);
64
+ }
65
+ addReference(ref) {
66
+ const bytes = this.bytes;
67
+ if (bytes === undefined) {
68
+ throw new VbaAuthorError('workbook has no VBA project to add a reference to');
69
+ }
70
+ this.bytes = addVbaReference(bytes, ref);
71
+ }
72
+ #ref() {
73
+ return this.#references.find((r) => r.relType.endsWith('/vbaProject'));
74
+ }
75
+ #entry() {
76
+ const ref = this.#ref();
77
+ return ref?.parts.find((p) => p.path === ref.entryPath);
78
+ }
79
+ }