mol_plot_all 1.2.524 → 1.2.526

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/web.js CHANGED
@@ -1,18 +1,5 @@
1
1
  "use strict";
2
2
  function require( path ){ return $node[ path ] };
3
- "use strict"
4
-
5
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
6
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
7
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
8
- else for (var i = decorators.length - 1; i >= 0; i--) if ((d = decorators[i])) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
9
- return c > 3 && r && Object.defineProperty(target, key, r), r;
10
- };
11
-
12
- var $ = ( typeof module === 'object' ) ? ( module['export'+'s'] = globalThis ) : globalThis
13
- $.$$ = $
14
-
15
- ;
16
3
 
17
4
  var $node = $node || {}
18
5
  void function( module ) { var exports = module.exports = this; function require( id ) { return $node[ id.replace( /^.\// , "../" ) ] };
@@ -27,6 +14,19 @@ module.exports = $;
27
14
  ;
28
15
 
29
16
  $node[ "../mam.ts" ] = $node[ "../mam.ts" ] = module.exports }.call( {} , {} )
17
+ ;
18
+ "use strict"
19
+
20
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
21
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
22
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
23
+ else for (var i = decorators.length - 1; i >= 0; i--) if ((d = decorators[i])) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
24
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
25
+ };
26
+
27
+ var $ = ( typeof module === 'object' ) ? ( module['export'+'s'] = globalThis ) : globalThis
28
+ $.$$ = $
29
+
30
30
  ;
31
31
  "use strict";
32
32
  var $;
@@ -200,222 +200,6 @@ var $;
200
200
  ;
201
201
  "use strict";
202
202
  var $;
203
- (function ($) {
204
- class $mol_after_tick extends $mol_object2 {
205
- task;
206
- promise;
207
- cancelled = false;
208
- constructor(task) {
209
- super();
210
- this.task = task;
211
- this.promise = Promise.resolve().then(() => {
212
- if (this.cancelled)
213
- return;
214
- task();
215
- });
216
- }
217
- destructor() {
218
- this.cancelled = true;
219
- }
220
- }
221
- $.$mol_after_tick = $mol_after_tick;
222
- })($ || ($ = {}));
223
- //mol/after/tick/tick.ts
224
- ;
225
- "use strict";
226
- var $;
227
- (function ($) {
228
- })($ || ($ = {}));
229
- //mol/dom/context/context.ts
230
- ;
231
- "use strict";
232
- var $;
233
- (function ($) {
234
- $.$mol_dom_context = self;
235
- })($ || ($ = {}));
236
- //mol/dom/context/context.web.ts
237
- ;
238
- "use strict";
239
- var $;
240
- (function ($) {
241
- let all = [];
242
- let el = null;
243
- let timer = null;
244
- function $mol_style_attach(id, text) {
245
- all.push(`/* ${id} */\n\n${text}`);
246
- if (timer)
247
- return el;
248
- const doc = $mol_dom_context.document;
249
- if (!doc)
250
- return null;
251
- el = doc.createElement('style');
252
- el.id = `$mol_style_attach`;
253
- doc.head.appendChild(el);
254
- timer = new $mol_after_tick(() => {
255
- el.innerHTML = '\n' + all.join('\n\n');
256
- all = [];
257
- el = null;
258
- timer = null;
259
- });
260
- return el;
261
- }
262
- $.$mol_style_attach = $mol_style_attach;
263
- })($ || ($ = {}));
264
- //mol/style/attach/attach.ts
265
- ;
266
- "use strict";
267
- var $;
268
- (function ($) {
269
- class $mol_decor {
270
- value;
271
- constructor(value) {
272
- this.value = value;
273
- }
274
- prefix() { return ''; }
275
- valueOf() { return this.value; }
276
- postfix() { return ''; }
277
- toString() {
278
- return `${this.prefix()}${this.valueOf()}${this.postfix()}`;
279
- }
280
- }
281
- $.$mol_decor = $mol_decor;
282
- })($ || ($ = {}));
283
- //mol/decor/decor.ts
284
- ;
285
- "use strict";
286
- var $;
287
- (function ($) {
288
- class $mol_style_unit extends $mol_decor {
289
- literal;
290
- constructor(value, literal) {
291
- super(value);
292
- this.literal = literal;
293
- }
294
- postfix() {
295
- return this.literal;
296
- }
297
- static per(value) { return new $mol_style_unit(value, '%'); }
298
- static px(value) { return new $mol_style_unit(value, 'px'); }
299
- static mm(value) { return new $mol_style_unit(value, 'mm'); }
300
- static cm(value) { return new $mol_style_unit(value, 'cm'); }
301
- static Q(value) { return new $mol_style_unit(value, 'Q'); }
302
- static in(value) { return new $mol_style_unit(value, 'in'); }
303
- static pc(value) { return new $mol_style_unit(value, 'pc'); }
304
- static pt(value) { return new $mol_style_unit(value, 'pt'); }
305
- static cap(value) { return new $mol_style_unit(value, 'cap'); }
306
- static ch(value) { return new $mol_style_unit(value, 'ch'); }
307
- static em(value) { return new $mol_style_unit(value, 'em'); }
308
- static rem(value) { return new $mol_style_unit(value, 'rem'); }
309
- static ex(value) { return new $mol_style_unit(value, 'ex'); }
310
- static ic(value) { return new $mol_style_unit(value, 'ic'); }
311
- static lh(value) { return new $mol_style_unit(value, 'lh'); }
312
- static rlh(value) { return new $mol_style_unit(value, 'rlh'); }
313
- static vh(value) { return new $mol_style_unit(value, 'vh'); }
314
- static vw(value) { return new $mol_style_unit(value, 'vw'); }
315
- static vi(value) { return new $mol_style_unit(value, 'vi'); }
316
- static vb(value) { return new $mol_style_unit(value, 'vb'); }
317
- static vmin(value) { return new $mol_style_unit(value, 'vmin'); }
318
- static vmax(value) { return new $mol_style_unit(value, 'vmax'); }
319
- static deg(value) { return new $mol_style_unit(value, 'deg'); }
320
- static rad(value) { return new $mol_style_unit(value, 'rad'); }
321
- static grad(value) { return new $mol_style_unit(value, 'grad'); }
322
- static turn(value) { return new $mol_style_unit(value, 'turn'); }
323
- static s(value) { return new $mol_style_unit(value, 's'); }
324
- static ms(value) { return new $mol_style_unit(value, 'ms'); }
325
- }
326
- $.$mol_style_unit = $mol_style_unit;
327
- })($ || ($ = {}));
328
- //mol/style/unit/unit.ts
329
- ;
330
- "use strict";
331
- var $;
332
- (function ($) {
333
- const { per } = $mol_style_unit;
334
- class $mol_style_func extends $mol_decor {
335
- name;
336
- constructor(name, value) {
337
- super(value);
338
- this.name = name;
339
- }
340
- prefix() { return this.name + '('; }
341
- postfix() { return ')'; }
342
- static calc(value) {
343
- return new $mol_style_func('calc', value);
344
- }
345
- static vary(name) {
346
- return new $mol_style_func('var', name);
347
- }
348
- static url(href) {
349
- return new $mol_style_func('url', JSON.stringify(href));
350
- }
351
- static hsla(hue, saturation, lightness, alpha) {
352
- return new $mol_style_func('hsla', [hue, per(saturation), per(lightness), alpha]);
353
- }
354
- static clamp(min, mid, max) {
355
- return new $mol_style_func('clamp', [min, mid, max]);
356
- }
357
- static rgba(red, green, blue, alpha) {
358
- return new $mol_style_func('rgba', [red, green, blue, alpha]);
359
- }
360
- static scale(zoom) {
361
- return new $mol_style_func('scale', [zoom]);
362
- }
363
- }
364
- $.$mol_style_func = $mol_style_func;
365
- })($ || ($ = {}));
366
- //mol/style/func/func.ts
367
- ;
368
- "use strict";
369
- var $;
370
- (function ($) {
371
- $mol_style_attach("mol/theme/theme.css", ":root {\n\t--mol_theme_hue: 210deg;\n\t--mol_theme_luma: -1;\n\t--mol_theme_satur: 1;\n\t--mol_theme_image: none;\n}\n\n[mol_theme] {\n\tcolor: var(--mol_theme_text);\n\tfill: var(--mol_theme_text);\n}\n:where([mol_theme]) {\n\tbackground-color: var(--mol_theme_back);\n}\n\t\n:root, [mol_theme] {\n\t--mol_theme_back: hsl( var(--mol_theme_hue), calc( var(--mol_theme_satur) * 20% ), calc( 55% + 45% * var(--mol_theme_luma) ) );\n\t--mol_theme_text: hsl( var(--mol_theme_hue), 0%, calc( 40% - 40% * var(--mol_theme_luma) ) );\n\t--mol_theme_field: hsl( var(--mol_theme_hue), calc( var(--mol_theme_satur) * 50% ), calc( 54% + 46% * var(--mol_theme_luma) ), .25 );\n\t\n\t--mol_theme_card: hsl( var(--mol_theme_hue), calc( var(--mol_theme_satur) * 50% ), calc( 55% + 35% * var(--mol_theme_luma) ), .25 );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 0%, 50%, .1 );\n\t--mol_theme_line: hsl( var(--mol_theme_hue), 0%, 50%, .2 );\n\t--mol_theme_shade: hsl( var(--mol_theme_hue), 0%, 50%, 1 );\n\t\n\t--mol_theme_control: hsl( var(--mol_theme_hue), 50%, calc( 50% - 10% * var(--mol_theme_luma) ) );\n\t--mol_theme_current: hsl( calc( var(--mol_theme_hue) - 90deg ), 50%, calc( 50% - 10% * var(--mol_theme_luma) ) );\n\t--mol_theme_special: hsl( calc( var(--mol_theme_hue) + 90deg ), 50%, calc( 50% - 10% * var(--mol_theme_luma) ) );\n\t--mol_theme_focus: hsl( calc( var(--mol_theme_hue) + 180deg ), 100%, calc( 55% - 10% * var(--mol_theme_luma) ) );\n\t\n}\n\n[mol_theme=\"$mol_theme_light\"] {\n\t--mol_theme_luma: 1;\n\t--mol_theme_image: none;\n}\n\n[mol_theme=\"$mol_theme_dark\"] {\n\t--mol_theme_luma: -1;\n\t--mol_theme_image: invert(1) hue-rotate( 180deg );\n}\n\n[mol_theme=\"$mol_theme_base\"] {\n\t--mol_theme_luma: -2;\n\t--mol_theme_back: hsl( var(--mol_theme_hue), 50%, 40% );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 60%, 30% );\n\t--mol_theme_current: hsl( var(--mol_theme_hue), 100%, 20% );\n}\n\n[mol_theme=\"$mol_theme_current\"] {\n\tbackground-color: var(--mol_theme_back);\n\t--mol_theme_back: hsl( calc( var(--mol_theme_hue) - 90deg ), 50%, calc( 50% + 30% * var(--mol_theme_luma) ) );\n}\n\n[mol_theme=\"$mol_theme_special\"] {\n\t--mol_theme_card: hsl( calc( var(--mol_theme_hue) + 90deg ), 50%, calc( 55% + 35% * var(--mol_theme_luma) ), .25 );\n}\n\n[mol_theme=\"$mol_theme_accent\"] {\n\tbackground-color: var(--mol_theme_back);\n\t--mol_theme_luma: -2;\n\t--mol_theme_back: hsl( calc( var(--mol_theme_hue) + 180deg ), 90%, 50% );\n\t--mol_theme_hover: hsl( calc( var(--mol_theme_hue) + 180deg ), 80%, 35% );\n}\n\n[mol_theme=\"$mol_theme_accent\"] [mol_theme=\"$mol_theme_accent\"] {\n\t--mol_theme_back: black;\n}\n");
372
- })($ || ($ = {}));
373
- //mol/theme/-css/theme.css.ts
374
- ;
375
- "use strict";
376
- var $;
377
- (function ($) {
378
- const { vary } = $mol_style_func;
379
- $.$mol_theme = {
380
- back: vary('--mol_theme_back'),
381
- hover: vary('--mol_theme_hover'),
382
- card: vary('--mol_theme_card'),
383
- current: vary('--mol_theme_current'),
384
- special: vary('--mol_theme_special'),
385
- text: vary('--mol_theme_text'),
386
- control: vary('--mol_theme_control'),
387
- shade: vary('--mol_theme_shade'),
388
- line: vary('--mol_theme_line'),
389
- focus: vary('--mol_theme_focus'),
390
- field: vary('--mol_theme_field'),
391
- image: vary('--mol_theme_image'),
392
- };
393
- })($ || ($ = {}));
394
- //mol/theme/theme.ts
395
- ;
396
- "use strict";
397
- var $;
398
- (function ($) {
399
- $mol_style_attach("mol/gap/gap.css", ":root {\n\t--mol_gap_block: .75rem;\n\t--mol_gap_text: .5rem .75rem;\n\t--mol_gap_round: .25rem;\n\t--mol_gap_space: .25rem;\n\t--mol_gap_blur: .5rem;\n}\n");
400
- })($ || ($ = {}));
401
- //mol/gap/-css/gap.css.ts
402
- ;
403
- "use strict";
404
- var $;
405
- (function ($) {
406
- const { vary } = $mol_style_func;
407
- $.$mol_gap = {
408
- block: vary('--mol_gap_block'),
409
- text: vary('--mol_gap_text'),
410
- round: vary('--mol_gap_round'),
411
- space: vary('--mol_gap_space'),
412
- blur: vary('--mol_gap_blur'),
413
- };
414
- })($ || ($ = {}));
415
- //mol/gap/gap.ts
416
- ;
417
- "use strict";
418
- var $;
419
203
  (function ($_1) {
420
204
  let $$;
421
205
  (function ($$) {
@@ -1562,6 +1346,43 @@ var $;
1562
1346
  ;
1563
1347
  "use strict";
1564
1348
  var $;
1349
+ (function ($) {
1350
+ })($ || ($ = {}));
1351
+ //mol/dom/context/context.ts
1352
+ ;
1353
+ "use strict";
1354
+ var $;
1355
+ (function ($) {
1356
+ $.$mol_dom_context = self;
1357
+ })($ || ($ = {}));
1358
+ //mol/dom/context/context.web.ts
1359
+ ;
1360
+ "use strict";
1361
+ var $;
1362
+ (function ($) {
1363
+ class $mol_after_tick extends $mol_object2 {
1364
+ task;
1365
+ promise;
1366
+ cancelled = false;
1367
+ constructor(task) {
1368
+ super();
1369
+ this.task = task;
1370
+ this.promise = Promise.resolve().then(() => {
1371
+ if (this.cancelled)
1372
+ return;
1373
+ task();
1374
+ });
1375
+ }
1376
+ destructor() {
1377
+ this.cancelled = true;
1378
+ }
1379
+ }
1380
+ $.$mol_after_tick = $mol_after_tick;
1381
+ })($ || ($ = {}));
1382
+ //mol/after/tick/tick.ts
1383
+ ;
1384
+ "use strict";
1385
+ var $;
1565
1386
  (function ($) {
1566
1387
  class $mol_view_selection extends $mol_object {
1567
1388
  static focused(next, notify) {
@@ -1902,6 +1723,185 @@ var $;
1902
1723
  ;
1903
1724
  "use strict";
1904
1725
  var $;
1726
+ (function ($) {
1727
+ let all = [];
1728
+ let el = null;
1729
+ let timer = null;
1730
+ function $mol_style_attach(id, text) {
1731
+ all.push(`/* ${id} */\n\n${text}`);
1732
+ if (timer)
1733
+ return el;
1734
+ const doc = $mol_dom_context.document;
1735
+ if (!doc)
1736
+ return null;
1737
+ el = doc.createElement('style');
1738
+ el.id = `$mol_style_attach`;
1739
+ doc.head.appendChild(el);
1740
+ timer = new $mol_after_tick(() => {
1741
+ el.innerHTML = '\n' + all.join('\n\n');
1742
+ all = [];
1743
+ el = null;
1744
+ timer = null;
1745
+ });
1746
+ return el;
1747
+ }
1748
+ $.$mol_style_attach = $mol_style_attach;
1749
+ })($ || ($ = {}));
1750
+ //mol/style/attach/attach.ts
1751
+ ;
1752
+ "use strict";
1753
+ var $;
1754
+ (function ($) {
1755
+ class $mol_decor {
1756
+ value;
1757
+ constructor(value) {
1758
+ this.value = value;
1759
+ }
1760
+ prefix() { return ''; }
1761
+ valueOf() { return this.value; }
1762
+ postfix() { return ''; }
1763
+ toString() {
1764
+ return `${this.prefix()}${this.valueOf()}${this.postfix()}`;
1765
+ }
1766
+ }
1767
+ $.$mol_decor = $mol_decor;
1768
+ })($ || ($ = {}));
1769
+ //mol/decor/decor.ts
1770
+ ;
1771
+ "use strict";
1772
+ var $;
1773
+ (function ($) {
1774
+ class $mol_style_unit extends $mol_decor {
1775
+ literal;
1776
+ constructor(value, literal) {
1777
+ super(value);
1778
+ this.literal = literal;
1779
+ }
1780
+ postfix() {
1781
+ return this.literal;
1782
+ }
1783
+ static per(value) { return new $mol_style_unit(value, '%'); }
1784
+ static px(value) { return new $mol_style_unit(value, 'px'); }
1785
+ static mm(value) { return new $mol_style_unit(value, 'mm'); }
1786
+ static cm(value) { return new $mol_style_unit(value, 'cm'); }
1787
+ static Q(value) { return new $mol_style_unit(value, 'Q'); }
1788
+ static in(value) { return new $mol_style_unit(value, 'in'); }
1789
+ static pc(value) { return new $mol_style_unit(value, 'pc'); }
1790
+ static pt(value) { return new $mol_style_unit(value, 'pt'); }
1791
+ static cap(value) { return new $mol_style_unit(value, 'cap'); }
1792
+ static ch(value) { return new $mol_style_unit(value, 'ch'); }
1793
+ static em(value) { return new $mol_style_unit(value, 'em'); }
1794
+ static rem(value) { return new $mol_style_unit(value, 'rem'); }
1795
+ static ex(value) { return new $mol_style_unit(value, 'ex'); }
1796
+ static ic(value) { return new $mol_style_unit(value, 'ic'); }
1797
+ static lh(value) { return new $mol_style_unit(value, 'lh'); }
1798
+ static rlh(value) { return new $mol_style_unit(value, 'rlh'); }
1799
+ static vh(value) { return new $mol_style_unit(value, 'vh'); }
1800
+ static vw(value) { return new $mol_style_unit(value, 'vw'); }
1801
+ static vi(value) { return new $mol_style_unit(value, 'vi'); }
1802
+ static vb(value) { return new $mol_style_unit(value, 'vb'); }
1803
+ static vmin(value) { return new $mol_style_unit(value, 'vmin'); }
1804
+ static vmax(value) { return new $mol_style_unit(value, 'vmax'); }
1805
+ static deg(value) { return new $mol_style_unit(value, 'deg'); }
1806
+ static rad(value) { return new $mol_style_unit(value, 'rad'); }
1807
+ static grad(value) { return new $mol_style_unit(value, 'grad'); }
1808
+ static turn(value) { return new $mol_style_unit(value, 'turn'); }
1809
+ static s(value) { return new $mol_style_unit(value, 's'); }
1810
+ static ms(value) { return new $mol_style_unit(value, 'ms'); }
1811
+ }
1812
+ $.$mol_style_unit = $mol_style_unit;
1813
+ })($ || ($ = {}));
1814
+ //mol/style/unit/unit.ts
1815
+ ;
1816
+ "use strict";
1817
+ var $;
1818
+ (function ($) {
1819
+ const { per } = $mol_style_unit;
1820
+ class $mol_style_func extends $mol_decor {
1821
+ name;
1822
+ constructor(name, value) {
1823
+ super(value);
1824
+ this.name = name;
1825
+ }
1826
+ prefix() { return this.name + '('; }
1827
+ postfix() { return ')'; }
1828
+ static calc(value) {
1829
+ return new $mol_style_func('calc', value);
1830
+ }
1831
+ static vary(name) {
1832
+ return new $mol_style_func('var', name);
1833
+ }
1834
+ static url(href) {
1835
+ return new $mol_style_func('url', JSON.stringify(href));
1836
+ }
1837
+ static hsla(hue, saturation, lightness, alpha) {
1838
+ return new $mol_style_func('hsla', [hue, per(saturation), per(lightness), alpha]);
1839
+ }
1840
+ static clamp(min, mid, max) {
1841
+ return new $mol_style_func('clamp', [min, mid, max]);
1842
+ }
1843
+ static rgba(red, green, blue, alpha) {
1844
+ return new $mol_style_func('rgba', [red, green, blue, alpha]);
1845
+ }
1846
+ static scale(zoom) {
1847
+ return new $mol_style_func('scale', [zoom]);
1848
+ }
1849
+ }
1850
+ $.$mol_style_func = $mol_style_func;
1851
+ })($ || ($ = {}));
1852
+ //mol/style/func/func.ts
1853
+ ;
1854
+ "use strict";
1855
+ var $;
1856
+ (function ($) {
1857
+ const { vary } = $mol_style_func;
1858
+ $.$mol_theme = {
1859
+ back: vary('--mol_theme_back'),
1860
+ hover: vary('--mol_theme_hover'),
1861
+ card: vary('--mol_theme_card'),
1862
+ current: vary('--mol_theme_current'),
1863
+ special: vary('--mol_theme_special'),
1864
+ text: vary('--mol_theme_text'),
1865
+ control: vary('--mol_theme_control'),
1866
+ shade: vary('--mol_theme_shade'),
1867
+ line: vary('--mol_theme_line'),
1868
+ focus: vary('--mol_theme_focus'),
1869
+ field: vary('--mol_theme_field'),
1870
+ image: vary('--mol_theme_image'),
1871
+ };
1872
+ })($ || ($ = {}));
1873
+ //mol/theme/theme.ts
1874
+ ;
1875
+ "use strict";
1876
+ var $;
1877
+ (function ($) {
1878
+ $mol_style_attach("mol/theme/theme.css", ":root {\n\t--mol_theme_hue: 210deg;\n\t--mol_theme_luma: -1;\n\t--mol_theme_satur: 1;\n\t--mol_theme_image: none;\n}\n\n[mol_theme] {\n\tcolor: var(--mol_theme_text);\n\tfill: var(--mol_theme_text);\n}\n:where([mol_theme]) {\n\tbackground-color: var(--mol_theme_back);\n}\n\t\n:root, [mol_theme] {\n\t--mol_theme_back: hsl( var(--mol_theme_hue), calc( var(--mol_theme_satur) * 20% ), calc( 55% + 45% * var(--mol_theme_luma) ) );\n\t--mol_theme_text: hsl( var(--mol_theme_hue), 0%, calc( 40% - 40% * var(--mol_theme_luma) ) );\n\t--mol_theme_field: hsl( var(--mol_theme_hue), calc( var(--mol_theme_satur) * 50% ), calc( 54% + 46% * var(--mol_theme_luma) ), .25 );\n\t\n\t--mol_theme_card: hsl( var(--mol_theme_hue), calc( var(--mol_theme_satur) * 50% ), calc( 55% + 35% * var(--mol_theme_luma) ), .25 );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 0%, 50%, .1 );\n\t--mol_theme_line: hsl( var(--mol_theme_hue), 0%, 50%, .2 );\n\t--mol_theme_shade: hsl( var(--mol_theme_hue), 0%, 50%, 1 );\n\t\n\t--mol_theme_control: hsl( var(--mol_theme_hue), 50%, calc( 50% - 10% * var(--mol_theme_luma) ) );\n\t--mol_theme_current: hsl( calc( var(--mol_theme_hue) - 90deg ), 50%, calc( 50% - 10% * var(--mol_theme_luma) ) );\n\t--mol_theme_special: hsl( calc( var(--mol_theme_hue) + 90deg ), 50%, calc( 50% - 10% * var(--mol_theme_luma) ) );\n\t--mol_theme_focus: hsl( calc( var(--mol_theme_hue) + 180deg ), 100%, calc( 55% - 10% * var(--mol_theme_luma) ) );\n\t\n}\n\n[mol_theme=\"$mol_theme_light\"] {\n\t--mol_theme_luma: 1;\n\t--mol_theme_image: none;\n}\n\n[mol_theme=\"$mol_theme_dark\"] {\n\t--mol_theme_luma: -1;\n\t--mol_theme_image: invert(1) hue-rotate( 180deg );\n}\n\n[mol_theme=\"$mol_theme_base\"] {\n\t--mol_theme_luma: -2;\n\t--mol_theme_back: hsl( var(--mol_theme_hue), 50%, 40% );\n\t--mol_theme_hover: hsl( var(--mol_theme_hue), 60%, 30% );\n\t--mol_theme_current: hsl( var(--mol_theme_hue), 100%, 20% );\n}\n\n[mol_theme=\"$mol_theme_current\"] {\n\tbackground-color: var(--mol_theme_back);\n\t--mol_theme_back: hsl( calc( var(--mol_theme_hue) - 90deg ), 50%, calc( 50% + 30% * var(--mol_theme_luma) ) );\n}\n\n[mol_theme=\"$mol_theme_special\"] {\n\t--mol_theme_card: hsl( calc( var(--mol_theme_hue) + 90deg ), 50%, calc( 55% + 35% * var(--mol_theme_luma) ), .25 );\n}\n\n[mol_theme=\"$mol_theme_accent\"] {\n\tbackground-color: var(--mol_theme_back);\n\t--mol_theme_luma: -2;\n\t--mol_theme_back: hsl( calc( var(--mol_theme_hue) + 180deg ), 90%, 50% );\n\t--mol_theme_hover: hsl( calc( var(--mol_theme_hue) + 180deg ), 80%, 35% );\n}\n\n[mol_theme=\"$mol_theme_accent\"] [mol_theme=\"$mol_theme_accent\"] {\n\t--mol_theme_back: black;\n}\n");
1879
+ })($ || ($ = {}));
1880
+ //mol/theme/-css/theme.css.ts
1881
+ ;
1882
+ "use strict";
1883
+ var $;
1884
+ (function ($) {
1885
+ const { vary } = $mol_style_func;
1886
+ $.$mol_gap = {
1887
+ block: vary('--mol_gap_block'),
1888
+ text: vary('--mol_gap_text'),
1889
+ round: vary('--mol_gap_round'),
1890
+ space: vary('--mol_gap_space'),
1891
+ blur: vary('--mol_gap_blur'),
1892
+ };
1893
+ })($ || ($ = {}));
1894
+ //mol/gap/gap.ts
1895
+ ;
1896
+ "use strict";
1897
+ var $;
1898
+ (function ($) {
1899
+ $mol_style_attach("mol/gap/gap.css", ":root {\n\t--mol_gap_block: .75rem;\n\t--mol_gap_text: .5rem .75rem;\n\t--mol_gap_round: .25rem;\n\t--mol_gap_space: .25rem;\n\t--mol_gap_blur: .5rem;\n}\n");
1900
+ })($ || ($ = {}));
1901
+ //mol/gap/-css/gap.css.ts
1902
+ ;
1903
+ "use strict";
1904
+ var $;
1905
1905
  (function ($) {
1906
1906
  function $mol_view_visible_width() {
1907
1907
  return $mol_window.size().width;
@@ -2311,6 +2311,36 @@ var $;
2311
2311
  ;
2312
2312
  "use strict";
2313
2313
  var $;
2314
+ (function ($) {
2315
+ class $mol_plugin extends $mol_view {
2316
+ dom_node(next) {
2317
+ const node = next || $mol_owning_get(this).host.dom_node();
2318
+ $mol_dom_render_attributes(node, this.attr_static());
2319
+ const events = $mol_wire_async(this.event());
2320
+ for (let event_name in events) {
2321
+ node.addEventListener(event_name, events[event_name], { passive: false });
2322
+ }
2323
+ return node;
2324
+ }
2325
+ attr_static() {
2326
+ return {};
2327
+ }
2328
+ event() {
2329
+ return {};
2330
+ }
2331
+ render() {
2332
+ this.dom_node_actual();
2333
+ }
2334
+ }
2335
+ __decorate([
2336
+ $mol_mem
2337
+ ], $mol_plugin.prototype, "dom_node", null);
2338
+ $.$mol_plugin = $mol_plugin;
2339
+ })($ || ($ = {}));
2340
+ //mol/plugin/plugin.ts
2341
+ ;
2342
+ "use strict";
2343
+ var $;
2314
2344
  (function ($) {
2315
2345
  class $mol_svg extends $mol_view {
2316
2346
  dom_name() {
@@ -2383,36 +2413,6 @@ var $;
2383
2413
  ;
2384
2414
  "use strict";
2385
2415
  var $;
2386
- (function ($) {
2387
- class $mol_plugin extends $mol_view {
2388
- dom_node(next) {
2389
- const node = next || $mol_owning_get(this).host.dom_node();
2390
- $mol_dom_render_attributes(node, this.attr_static());
2391
- const events = $mol_wire_async(this.event());
2392
- for (let event_name in events) {
2393
- node.addEventListener(event_name, events[event_name], { passive: false });
2394
- }
2395
- return node;
2396
- }
2397
- attr_static() {
2398
- return {};
2399
- }
2400
- event() {
2401
- return {};
2402
- }
2403
- render() {
2404
- this.dom_node_actual();
2405
- }
2406
- }
2407
- __decorate([
2408
- $mol_mem
2409
- ], $mol_plugin.prototype, "dom_node", null);
2410
- $.$mol_plugin = $mol_plugin;
2411
- })($ || ($ = {}));
2412
- //mol/plugin/plugin.ts
2413
- ;
2414
- "use strict";
2415
- var $;
2416
2416
  (function ($) {
2417
2417
  var $$;
2418
2418
  (function ($$) {
@@ -2826,13 +2826,6 @@ var $;
2826
2826
  ;
2827
2827
  "use strict";
2828
2828
  var $;
2829
- (function ($) {
2830
- $mol_style_attach("mol/plot/graph/graph.view.css", "[mol_plot_graph] {\n\tstroke: currentColor;\n}\n\n[mol_plot_graph_sample] {\n\tborder-width: 0;\n\tborder-style: solid;\n}\n\n[mol_plot_graph_type=\"dashed\"] {\n\tstroke-dasharray: 4 4;\n\tborder-style: dashed;\n}\n");
2831
- })($ || ($ = {}));
2832
- //mol/plot/graph/-css/graph.view.css.ts
2833
- ;
2834
- "use strict";
2835
- var $;
2836
2829
  (function ($) {
2837
2830
  var $$;
2838
2831
  (function ($$) {
@@ -2906,6 +2899,13 @@ var $;
2906
2899
  ;
2907
2900
  "use strict";
2908
2901
  var $;
2902
+ (function ($) {
2903
+ $mol_style_attach("mol/plot/graph/graph.view.css", "[mol_plot_graph] {\n\tstroke: currentColor;\n}\n\n[mol_plot_graph_sample] {\n\tborder-width: 0;\n\tborder-style: solid;\n}\n\n[mol_plot_graph_type=\"dashed\"] {\n\tstroke-dasharray: 4 4;\n\tborder-style: dashed;\n}\n");
2904
+ })($ || ($ = {}));
2905
+ //mol/plot/graph/-css/graph.view.css.ts
2906
+ ;
2907
+ "use strict";
2908
+ var $;
2909
2909
  (function ($) {
2910
2910
  class $mol_touch extends $mol_plugin {
2911
2911
  start_zoom(val) {
@@ -3735,13 +3735,6 @@ var $;
3735
3735
  ;
3736
3736
  "use strict";
3737
3737
  var $;
3738
- (function ($) {
3739
- $mol_style_attach("mol/plot/pane/pane.view.css", "[mol_plot_pane] {\n\tcolor: var(--mol_theme_control);\n\tflex: 1 1 auto;\n\talign-self: stretch;\n\tstroke-width: 2px;\n\tuser-select: none;\n}\n");
3740
- })($ || ($ = {}));
3741
- //mol/plot/pane/-css/pane.view.css.ts
3742
- ;
3743
- "use strict";
3744
- var $;
3745
3738
  (function ($) {
3746
3739
  var $$;
3747
3740
  (function ($$) {
@@ -3944,6 +3937,13 @@ var $;
3944
3937
  ;
3945
3938
  "use strict";
3946
3939
  var $;
3940
+ (function ($) {
3941
+ $mol_style_attach("mol/plot/pane/pane.view.css", "[mol_plot_pane] {\n\tcolor: var(--mol_theme_control);\n\tflex: 1 1 auto;\n\talign-self: stretch;\n\tstroke-width: 2px;\n\tuser-select: none;\n}\n");
3942
+ })($ || ($ = {}));
3943
+ //mol/plot/pane/-css/pane.view.css.ts
3944
+ ;
3945
+ "use strict";
3946
+ var $;
3947
3947
  (function ($) {
3948
3948
  class $mol_plot_line extends $mol_plot_graph {
3949
3949
  threshold() {
@@ -3988,13 +3988,6 @@ var $;
3988
3988
  ;
3989
3989
  "use strict";
3990
3990
  var $;
3991
- (function ($) {
3992
- $mol_style_attach("mol/plot/line/line.view.css", "[mol_plot_line] {\n\tfill: none;\n\tstroke-linejoin: round;\n}\n\n[mol_plot_line_sample] {\n\theight: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tborder-width: 2px 0 0;\n\tposition: absolute;\n\ttop: .75em;\n\ttransform: translateY(-50%);\n}\n");
3993
- })($ || ($ = {}));
3994
- //mol/plot/line/-css/line.view.css.ts
3995
- ;
3996
- "use strict";
3997
- var $;
3998
3991
  (function ($) {
3999
3992
  var $$;
4000
3993
  (function ($$) {
@@ -4054,6 +4047,13 @@ var $;
4054
4047
  ;
4055
4048
  "use strict";
4056
4049
  var $;
4050
+ (function ($) {
4051
+ $mol_style_attach("mol/plot/line/line.view.css", "[mol_plot_line] {\n\tfill: none;\n\tstroke-linejoin: round;\n}\n\n[mol_plot_line_sample] {\n\theight: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tborder-width: 2px 0 0;\n\tposition: absolute;\n\ttop: .75em;\n\ttransform: translateY(-50%);\n}\n");
4052
+ })($ || ($ = {}));
4053
+ //mol/plot/line/-css/line.view.css.ts
4054
+ ;
4055
+ "use strict";
4056
+ var $;
4057
4057
  (function ($) {
4058
4058
  class $mol_plot_group extends $mol_plot_graph {
4059
4059
  sub() {
@@ -4237,13 +4237,6 @@ var $;
4237
4237
  ;
4238
4238
  "use strict";
4239
4239
  var $;
4240
- (function ($) {
4241
- $mol_style_attach("mol/plot/dot/dot.view.css", "[mol_plot_dot] {\n\tstroke-linecap: round;\n\tfill: none;\n}\n\n[mol_plot_dot_sample] {\n\twidth: .5rem;\n\theight: .5rem;\n\tborder-radius: 1rem;\n\tbackground: currentColor;\n\tposition: absolute;\n\ttop: .75em;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n");
4242
- })($ || ($ = {}));
4243
- //mol/plot/dot/-css/dot.view.css.ts
4244
- ;
4245
- "use strict";
4246
- var $;
4247
4240
  (function ($) {
4248
4241
  var $$;
4249
4242
  (function ($$) {
@@ -4329,6 +4322,13 @@ var $;
4329
4322
  ;
4330
4323
  "use strict";
4331
4324
  var $;
4325
+ (function ($) {
4326
+ $mol_style_attach("mol/plot/dot/dot.view.css", "[mol_plot_dot] {\n\tstroke-linecap: round;\n\tfill: none;\n}\n\n[mol_plot_dot_sample] {\n\twidth: .5rem;\n\theight: .5rem;\n\tborder-radius: 1rem;\n\tbackground: currentColor;\n\tposition: absolute;\n\ttop: .75em;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n}\n");
4327
+ })($ || ($ = {}));
4328
+ //mol/plot/dot/-css/dot.view.css.ts
4329
+ ;
4330
+ "use strict";
4331
+ var $;
4332
4332
  (function ($) {
4333
4333
  class $mol_plot_map_heat extends $mol_plot_group {
4334
4334
  series_z() {
@@ -4394,13 +4394,6 @@ var $;
4394
4394
  ;
4395
4395
  "use strict";
4396
4396
  var $;
4397
- (function ($) {
4398
- $mol_style_attach("mol/plot/map/heat/heat.view.css", "[mol_plot_map_heat_level_curve] {\n\tstroke-linecap: square;\n\tfill: none;\n}\n");
4399
- })($ || ($ = {}));
4400
- //mol/plot/map/heat/-css/heat.view.css.ts
4401
- ;
4402
- "use strict";
4403
- var $;
4404
4397
  (function ($) {
4405
4398
  var $$;
4406
4399
  (function ($$) {
@@ -4464,6 +4457,13 @@ var $;
4464
4457
  ;
4465
4458
  "use strict";
4466
4459
  var $;
4460
+ (function ($) {
4461
+ $mol_style_attach("mol/plot/map/heat/heat.view.css", "[mol_plot_map_heat_level_curve] {\n\tstroke-linecap: square;\n\tfill: none;\n}\n");
4462
+ })($ || ($ = {}));
4463
+ //mol/plot/map/heat/-css/heat.view.css.ts
4464
+ ;
4465
+ "use strict";
4466
+ var $;
4467
4467
  (function ($) {
4468
4468
  class $mol_plot_bar extends $mol_plot_graph {
4469
4469
  style() {
@@ -4507,13 +4507,6 @@ var $;
4507
4507
  ;
4508
4508
  "use strict";
4509
4509
  var $;
4510
- (function ($) {
4511
- $mol_style_attach("mol/plot/bar/bar.view.css", "[mol_plot_bar] {\n\tstroke-linecap: butt;\n\tstroke-width: 1rem;\n}\n\n[mol_plot_bar_sample] {\n\tbackground: currentColor;\n\tposition: absolute;\n\ttop:0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n}\n");
4512
- })($ || ($ = {}));
4513
- //mol/plot/bar/-css/bar.view.css.ts
4514
- ;
4515
- "use strict";
4516
- var $;
4517
4510
  (function ($) {
4518
4511
  var $$;
4519
4512
  (function ($$) {
@@ -4596,6 +4589,13 @@ var $;
4596
4589
  ;
4597
4590
  "use strict";
4598
4591
  var $;
4592
+ (function ($) {
4593
+ $mol_style_attach("mol/plot/bar/bar.view.css", "[mol_plot_bar] {\n\tstroke-linecap: butt;\n\tstroke-width: 1rem;\n}\n\n[mol_plot_bar_sample] {\n\tbackground: currentColor;\n\tposition: absolute;\n\ttop:0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n}\n");
4594
+ })($ || ($ = {}));
4595
+ //mol/plot/bar/-css/bar.view.css.ts
4596
+ ;
4597
+ "use strict";
4598
+ var $;
4599
4599
  (function ($) {
4600
4600
  class $mol_plot_fill extends $mol_plot_line {
4601
4601
  threshold() {
@@ -4608,13 +4608,6 @@ var $;
4608
4608
  ;
4609
4609
  "use strict";
4610
4610
  var $;
4611
- (function ($) {
4612
- $mol_style_attach("mol/plot/fill/fill.view.css", "[mol_plot_fill] {\n\tstroke: none;\n\tstroke-width: 0;\n\topacity: .1;\n\tfill: currentColor;\n\tpointer-events: none;\n}\n\n[mol_plot_fill_sample] {\n\topacity: .1;\n\tbackground: currentColor;\n\tposition: absolute;\n\tbottom: 0;\n\ttop: .75em;\n\tleft: 0;\n\tright: 0;\n}\n");
4613
- })($ || ($ = {}));
4614
- //mol/plot/fill/-css/fill.view.css.ts
4615
- ;
4616
- "use strict";
4617
- var $;
4618
4611
  (function ($) {
4619
4612
  var $$;
4620
4613
  (function ($$) {
@@ -4641,6 +4634,13 @@ var $;
4641
4634
  ;
4642
4635
  "use strict";
4643
4636
  var $;
4637
+ (function ($) {
4638
+ $mol_style_attach("mol/plot/fill/fill.view.css", "[mol_plot_fill] {\n\tstroke: none;\n\tstroke-width: 0;\n\topacity: .1;\n\tfill: currentColor;\n\tpointer-events: none;\n}\n\n[mol_plot_fill_sample] {\n\topacity: .1;\n\tbackground: currentColor;\n\tposition: absolute;\n\tbottom: 0;\n\ttop: .75em;\n\tleft: 0;\n\tright: 0;\n}\n");
4639
+ })($ || ($ = {}));
4640
+ //mol/plot/fill/-css/fill.view.css.ts
4641
+ ;
4642
+ "use strict";
4643
+ var $;
4644
4644
  (function ($) {
4645
4645
  class $mol_svg_text extends $mol_svg {
4646
4646
  dom_name() {
@@ -4681,13 +4681,6 @@ var $;
4681
4681
  ;
4682
4682
  "use strict";
4683
4683
  var $;
4684
- (function ($) {
4685
- $mol_style_attach("mol/svg/text/text.view.css", "[mol_svg_text] {\n\tfill: currentColor;\n\tstroke: none;\n}\n");
4686
- })($ || ($ = {}));
4687
- //mol/svg/text/-css/text.view.css.ts
4688
- ;
4689
- "use strict";
4690
- var $;
4691
4684
  (function ($) {
4692
4685
  var $$;
4693
4686
  (function ($$) {
@@ -4706,6 +4699,13 @@ var $;
4706
4699
  ;
4707
4700
  "use strict";
4708
4701
  var $;
4702
+ (function ($) {
4703
+ $mol_style_attach("mol/svg/text/text.view.css", "[mol_svg_text] {\n\tfill: currentColor;\n\tstroke: none;\n}\n");
4704
+ })($ || ($ = {}));
4705
+ //mol/svg/text/-css/text.view.css.ts
4706
+ ;
4707
+ "use strict";
4708
+ var $;
4709
4709
  (function ($) {
4710
4710
  class $mol_svg_rect extends $mol_svg {
4711
4711
  dom_name() {
@@ -4858,13 +4858,6 @@ var $;
4858
4858
  ;
4859
4859
  "use strict";
4860
4860
  var $;
4861
- (function ($) {
4862
- $mol_style_attach("mol/svg/text/box/box.view.css", "[mol_svg_text_box_back] {\n\tstroke: none;\n\tfill: var(--mol_theme_back);\n}\n");
4863
- })($ || ($ = {}));
4864
- //mol/svg/text/box/-css/box.view.css.ts
4865
- ;
4866
- "use strict";
4867
- var $;
4868
4861
  (function ($) {
4869
4862
  var $$;
4870
4863
  (function ($$) {
@@ -4897,6 +4890,13 @@ var $;
4897
4890
  ;
4898
4891
  "use strict";
4899
4892
  var $;
4893
+ (function ($) {
4894
+ $mol_style_attach("mol/svg/text/box/box.view.css", "[mol_svg_text_box_back] {\n\tstroke: none;\n\tfill: var(--mol_theme_back);\n}\n");
4895
+ })($ || ($ = {}));
4896
+ //mol/svg/text/box/-css/box.view.css.ts
4897
+ ;
4898
+ "use strict";
4899
+ var $;
4900
4900
  (function ($) {
4901
4901
  class $mol_plot_ruler extends $mol_plot_graph {
4902
4902
  step() {
@@ -5056,13 +5056,6 @@ var $;
5056
5056
  ;
5057
5057
  "use strict";
5058
5058
  var $;
5059
- (function ($) {
5060
- $mol_style_attach("mol/plot/ruler/ruler.view.css", "[mol_plot_ruler_curve] {\n\tcolor: var(--mol_theme_line);\n\tstroke-width: 1px;\n\tstroke: currentColor;\n}\n\n[mol_plot_ruler_label] {\n\tcolor: var(--mol_theme_text);\n}\n\n[mol_plot_ruler_title] {\n\tcolor: var(--mol_theme_shade);\n\tbackground-color: var(--mol_theme_back);\n}\n\n[mol_plot_ruler_background] {\n\tstroke: none;\n\tfill: var(--mol_theme_back);\n\topacity: 0.8;\n}\n");
5061
- })($ || ($ = {}));
5062
- //mol/plot/ruler/-css/ruler.view.css.ts
5063
- ;
5064
- "use strict";
5065
- var $;
5066
5059
  (function ($) {
5067
5060
  var $$;
5068
5061
  (function ($$) {
@@ -5147,6 +5140,13 @@ var $;
5147
5140
  ;
5148
5141
  "use strict";
5149
5142
  var $;
5143
+ (function ($) {
5144
+ $mol_style_attach("mol/plot/ruler/ruler.view.css", "[mol_plot_ruler_curve] {\n\tcolor: var(--mol_theme_line);\n\tstroke-width: 1px;\n\tstroke: currentColor;\n}\n\n[mol_plot_ruler_label] {\n\tcolor: var(--mol_theme_text);\n}\n\n[mol_plot_ruler_title] {\n\tcolor: var(--mol_theme_shade);\n\tbackground-color: var(--mol_theme_back);\n}\n\n[mol_plot_ruler_background] {\n\tstroke: none;\n\tfill: var(--mol_theme_back);\n\topacity: 0.8;\n}\n");
5145
+ })($ || ($ = {}));
5146
+ //mol/plot/ruler/-css/ruler.view.css.ts
5147
+ ;
5148
+ "use strict";
5149
+ var $;
5150
5150
  (function ($) {
5151
5151
  class $mol_plot_ruler_vert extends $mol_plot_ruler {
5152
5152
  title_align() {
@@ -5174,13 +5174,6 @@ var $;
5174
5174
  ;
5175
5175
  "use strict";
5176
5176
  var $;
5177
- (function ($) {
5178
- $mol_style_attach("mol/plot/ruler/vert/vert.view.css", "[mol_plot_ruler_vert_label] {\n\ttransform: translateY( 4px );\n}\n");
5179
- })($ || ($ = {}));
5180
- //mol/plot/ruler/vert/-css/vert.view.css.ts
5181
- ;
5182
- "use strict";
5183
- var $;
5184
5177
  (function ($) {
5185
5178
  var $$;
5186
5179
  (function ($$) {
@@ -5223,6 +5216,13 @@ var $;
5223
5216
  ;
5224
5217
  "use strict";
5225
5218
  var $;
5219
+ (function ($) {
5220
+ $mol_style_attach("mol/plot/ruler/vert/vert.view.css", "[mol_plot_ruler_vert_label] {\n\ttransform: translateY( 4px );\n}\n");
5221
+ })($ || ($ = {}));
5222
+ //mol/plot/ruler/vert/-css/vert.view.css.ts
5223
+ ;
5224
+ "use strict";
5225
+ var $;
5226
5226
  (function ($) {
5227
5227
  class $mol_plot_ruler_hor extends $mol_plot_ruler {
5228
5228
  title_align() {
@@ -5250,13 +5250,6 @@ var $;
5250
5250
  ;
5251
5251
  "use strict";
5252
5252
  var $;
5253
- (function ($) {
5254
- $mol_style_attach("mol/plot/ruler/hor/hor.view.css", "[mol_plot_ruler_hor_label] {\n\ttransform: translateY( -4px );\n}\n\n[mol_plot_ruler_hor_title] {\n\ttransform: translateY( -4px );\n}\n");
5255
- })($ || ($ = {}));
5256
- //mol/plot/ruler/hor/-css/hor.view.css.ts
5257
- ;
5258
- "use strict";
5259
- var $;
5260
5253
  (function ($) {
5261
5254
  var $$;
5262
5255
  (function ($$) {
@@ -5305,6 +5298,13 @@ var $;
5305
5298
  ;
5306
5299
  "use strict";
5307
5300
  var $;
5301
+ (function ($) {
5302
+ $mol_style_attach("mol/plot/ruler/hor/hor.view.css", "[mol_plot_ruler_hor_label] {\n\ttransform: translateY( -4px );\n}\n\n[mol_plot_ruler_hor_title] {\n\ttransform: translateY( -4px );\n}\n");
5303
+ })($ || ($ = {}));
5304
+ //mol/plot/ruler/hor/-css/hor.view.css.ts
5305
+ ;
5306
+ "use strict";
5307
+ var $;
5308
5308
  (function ($) {
5309
5309
  class $mol_plot_mark_cross extends $mol_plot_graph {
5310
5310
  labels() {
@@ -5403,13 +5403,6 @@ var $;
5403
5403
  ;
5404
5404
  "use strict";
5405
5405
  var $;
5406
- (function ($) {
5407
- $mol_style_attach("mol/plot/mark/cross/cross.view.css", "[mol_plot_mark_cross_curve] {\n\tcolor: var(--mol_theme_focus);\n\tstroke-width: 1px;\n\tstroke: currentColor;\n\tpointer-events: none;\n}\n\n[mol_plot_mark_cross_label_x], [mol_plot_mark_cross_label_y] {\n\tcolor: var(--mol_theme_focus);\n\tfont-weight: bold;\n\tpointer-events: none;\n}\n\n[mol_plot_mark_cross_label_y] {\n\ttransform: translateY( 4px );\n}\n");
5408
- })($ || ($ = {}));
5409
- //mol/plot/mark/cross/-css/cross.view.css.ts
5410
- ;
5411
- "use strict";
5412
- var $;
5413
5406
  (function ($) {
5414
5407
  var $$;
5415
5408
  (function ($$) {
@@ -5497,6 +5490,13 @@ var $;
5497
5490
  ;
5498
5491
  "use strict";
5499
5492
  var $;
5493
+ (function ($) {
5494
+ $mol_style_attach("mol/plot/mark/cross/cross.view.css", "[mol_plot_mark_cross_curve] {\n\tcolor: var(--mol_theme_focus);\n\tstroke-width: 1px;\n\tstroke: currentColor;\n\tpointer-events: none;\n}\n\n[mol_plot_mark_cross_label_x], [mol_plot_mark_cross_label_y] {\n\tcolor: var(--mol_theme_focus);\n\tfont-weight: bold;\n\tpointer-events: none;\n}\n\n[mol_plot_mark_cross_label_y] {\n\ttransform: translateY( 4px );\n}\n");
5495
+ })($ || ($ = {}));
5496
+ //mol/plot/mark/cross/-css/cross.view.css.ts
5497
+ ;
5498
+ "use strict";
5499
+ var $;
5500
5500
  (function ($) {
5501
5501
  class $mol_plot_mark_hor extends $mol_plot_ruler_hor {
5502
5502
  labels() {
@@ -5509,13 +5509,6 @@ var $;
5509
5509
  ;
5510
5510
  "use strict";
5511
5511
  var $;
5512
- (function ($) {
5513
- $mol_style_attach("mol/plot/mark/hor/hor.view.css", "[mol_plot_mark_hor_curve] {\n\tcolor: var(--mol_theme_line);\n\tstroke-width: .1%;\n\tstroke: currentColor;\n\tpointer-events: none;\n}\n\n[mol_plot_mark_hor_label] {\n\tcolor: var(--mol_theme_text);\n\ttransform: translateY( -4px );\n}\n\n[mol_plot_mark_hor_title] {\n\tcolor: var(--mol_theme_shade);\n\ttransform: translateY( -4px );\n}\n");
5514
- })($ || ($ = {}));
5515
- //mol/plot/mark/hor/-css/hor.view.css.ts
5516
- ;
5517
- "use strict";
5518
- var $;
5519
5512
  (function ($) {
5520
5513
  var $$;
5521
5514
  (function ($$) {
@@ -5605,5 +5598,12 @@ var $;
5605
5598
  })($$ = $.$$ || ($.$$ = {}));
5606
5599
  })($ || ($ = {}));
5607
5600
  //mol/plot/mark/hor/hor.view.ts
5601
+ ;
5602
+ "use strict";
5603
+ var $;
5604
+ (function ($) {
5605
+ $mol_style_attach("mol/plot/mark/hor/hor.view.css", "[mol_plot_mark_hor_curve] {\n\tcolor: var(--mol_theme_line);\n\tstroke-width: .1%;\n\tstroke: currentColor;\n\tpointer-events: none;\n}\n\n[mol_plot_mark_hor_label] {\n\tcolor: var(--mol_theme_text);\n\ttransform: translateY( -4px );\n}\n\n[mol_plot_mark_hor_title] {\n\tcolor: var(--mol_theme_shade);\n\ttransform: translateY( -4px );\n}\n");
5606
+ })($ || ($ = {}));
5607
+ //mol/plot/mark/hor/-css/hor.view.css.ts
5608
5608
 
5609
5609
  //# sourceMappingURL=web.js.map