@trebco/treb 28.15.1 → 28.17.4
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/api-generator/api-generator.ts +5 -1
- package/dist/treb-spreadsheet-light.mjs +10 -10
- package/dist/treb-spreadsheet.mjs +11 -11
- package/dist/treb.d.ts +6 -1
- package/package.json +1 -1
- package/treb-base-types/src/area.ts +80 -1
- package/treb-base-types/src/cells.ts +187 -41
- package/treb-calculator/src/calculator.ts +13 -1
- package/treb-embed/markup/toolbar.html +5 -0
- package/treb-embed/src/custom-element/spreadsheet-constructor.ts +5 -2
- package/treb-embed/src/embedded-spreadsheet.ts +46 -19
- package/treb-embed/src/options.ts +5 -0
- package/treb-embed/src/toolbar-message.ts +5 -0
- package/treb-embed/style/toolbar.scss +3 -0
- package/treb-embed/style/treb-icons.scss +6 -0
- package/treb-grid/src/render/tile_renderer.ts +31 -9
- package/treb-grid/src/types/grid.ts +48 -2
- package/treb-grid/src/types/grid_base.ts +156 -8
- package/treb-grid/src/types/grid_command.ts +8 -0
- package/treb-grid/src/types/sheet.ts +127 -7
|
@@ -592,10 +592,14 @@ function CollectDependencyTransformer<T extends ts.Node>(
|
|
|
592
592
|
// must be public).
|
|
593
593
|
|
|
594
594
|
if (ts.isIdentifier(node.name)) {
|
|
595
|
-
|
|
596
595
|
if (!is_public || internal) {
|
|
597
596
|
return undefined; // don't recurse
|
|
598
597
|
}
|
|
598
|
+
}
|
|
599
|
+
else if (ts.isComputedPropertyName(node.name)) {
|
|
600
|
+
|
|
601
|
+
// this is probably [Symbol.iterator] -- are there other
|
|
602
|
+
// computed property names? should we check? (...)
|
|
599
603
|
|
|
600
604
|
}
|
|
601
605
|
else {
|