@trebco/treb 30.2.10 → 30.3.2
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/treb-export-worker.mjs +2 -0
- package/dist/treb-spreadsheet.mjs +11 -11
- package/dist/treb.d.ts +2 -2
- package/{esbuild-custom-element.mjs → esbuild-composite.mjs} +8 -23
- package/esbuild-utils.mjs +30 -3
- package/eslint.config.js +2 -1
- package/package.json +12 -14
- package/treb-calculator/src/expression-calculator.ts +30 -1
- package/treb-calculator/src/functions/text-functions.ts +1 -1
- package/treb-calculator/src/primitives.ts +3 -1
- package/treb-embed/modern.tsconfig.json +0 -1
- package/treb-embed/src/embedded-spreadsheet.ts +22 -40
- package/treb-embed/src/export-worker.ts +44 -0
- package/treb-embed/style/autocomplete.scss +2 -18
- package/treb-embed/style/dialog.scss +1 -1
- package/treb-embed/style/dropdown-select.scss +5 -6
- package/treb-embed/style/formula-bar.scss +5 -3
- package/treb-embed/style/grid.scss +7 -4
- package/treb-embed/style/layout.scss +23 -18
- package/treb-embed/style/tab-bar.scss +2 -2
- package/treb-embed/style/theme-defaults.scss +4 -4
- package/treb-embed/style/toolbar.scss +1 -1
- package/treb-export/src/{export-worker/export-worker.ts → index.worker.ts} +2 -2
- package/dist/treb-spreadsheet-light.mjs +0 -16
- package/treb-export/src/export-worker/index.worker.ts +0 -32
|
@@ -234,6 +234,10 @@ $text-reference-color-5: rgb(254, 47, 1);
|
|
|
234
234
|
color: var(--treb-autocomplete-tooltip-color, inherit);
|
|
235
235
|
border: 1px solid var(--treb-autocomplete-tooltip-border-color, unset);
|
|
236
236
|
|
|
237
|
+
padding: 3px 8px;
|
|
238
|
+
margin: 4px 0px;
|
|
239
|
+
line-height: normal;
|
|
240
|
+
|
|
237
241
|
& .active-argument {
|
|
238
242
|
font-weight: 700;
|
|
239
243
|
}
|
|
@@ -242,10 +246,6 @@ $text-reference-color-5: rgb(254, 47, 1);
|
|
|
242
246
|
font-style: italic;
|
|
243
247
|
}
|
|
244
248
|
|
|
245
|
-
padding: 3px 8px;
|
|
246
|
-
margin: 4px 0px;
|
|
247
|
-
line-height: normal;
|
|
248
|
-
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
/**
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
import type { ImportedSheetData } from 'treb-base-types';
|
|
23
23
|
import type { SerializedModel } from 'treb-data-model';
|
|
24
24
|
|
|
25
|
-
import { Exporter } from '
|
|
26
|
-
import { Importer } from '
|
|
25
|
+
import { Exporter } from './export';
|
|
26
|
+
import { Importer } from './import2';
|
|
27
27
|
|
|
28
28
|
const ctx: Worker = self as unknown as Worker;
|
|
29
29
|
const exporter = new Exporter();
|