@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.
@@ -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
  /**
@@ -167,10 +167,10 @@ $swatch-size: 18px;
167
167
  gap: 0;
168
168
 
169
169
  button[data-command] {
170
+ font-size: $split-font-size;
170
171
  &::before {
171
172
  display: none;
172
173
  }
173
- font-size: $split-font-size;
174
174
  }
175
175
 
176
176
  & > button {
@@ -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 '../export';
26
- import { Importer } from '../import2';
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();