@trebco/treb 32.4.1 → 32.5.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.
- package/README.md +0 -6
- package/dist/treb-spreadsheet.mjs +7 -7
- package/package.json +2 -2
- package/treb-embed/src/embedded-spreadsheet.ts +2 -2
- package/treb-embed/style/tab-bar.scss +1 -0
- package/treb-export/src/{drawing2/drawing2.ts → drawing/drawing.ts} +2 -2
- package/treb-export/src/export.ts +11 -11
- package/treb-export/src/import.ts +69 -7
- package/treb-export/src/{workbook-sheet2.ts → workbook-sheet.ts} +2 -2
- package/treb-export/src/{workbook-style2.ts → workbook-style.ts} +1 -1
- package/treb-export/src/{workbook-theme2.ts → workbook-theme.ts} +0 -2
- package/treb-export/src/{workbook2.ts → workbook.ts} +6 -6
- package/treb-grid/src/types/grid.ts +9 -9
- package/treb-grid/src/types/grid_base.ts +2 -1
- package/treb-grid/src/types/grid_command.ts +3 -0
- package/treb-grid/src/types/tab_bar.ts +36 -7
- /package/treb-export/src/{drawing2 → drawing}/bubble-chart-template.ts +0 -0
- /package/treb-export/src/{drawing2 → drawing}/chart-template-components2.ts +0 -0
- /package/treb-export/src/{drawing2/chart2.ts → drawing/chart.ts} +0 -0
- /package/treb-export/src/{drawing2 → drawing}/column-chart-template2.ts +0 -0
- /package/treb-export/src/{drawing2 → drawing}/donut-chart-template2.ts +0 -0
- /package/treb-export/src/{drawing2 → drawing}/embedded-image.ts +0 -0
- /package/treb-export/src/{drawing2 → drawing}/scatter-chart-template2.ts +0 -0
- /package/treb-export/src/{shared-strings2.ts → shared-strings.ts} +0 -0
package/README.md
CHANGED
|
@@ -28,12 +28,6 @@ Download from npm using npm, yarn, pnpm or your favorite module tool
|
|
|
28
28
|
npm install @trebco/treb
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
## Light version
|
|
32
|
-
|
|
33
|
-
In addition to the standard version there's a light version which does not
|
|
34
|
-
support converting to/from XLSX files. Other than that it's identical. Use
|
|
35
|
-
the script `treb-spreadsheet-light.mjs`.
|
|
36
|
-
|
|
37
31
|
## License
|
|
38
32
|
|
|
39
33
|
TREB is provided under the GNU Lesser General Public License (LGPL).
|