@hpcc-js/common 3.1.0 → 3.2.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/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@hpcc-js/common",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "hpcc-js - Viz Common",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
8
8
  "types": "./types/index.d.ts",
9
9
  "default": "./dist/index.js"
10
- }
10
+ },
11
+ "./dist/*": "./dist/*",
12
+ "./font-awesome/*": "./font-awesome/*"
11
13
  },
12
14
  "module": "./dist/index.js",
13
15
  "browser": "./dist/index.js",
@@ -25,7 +27,6 @@
25
27
  "gen-types": "tsc --project tsconfig.json",
26
28
  "gen-types-watch": "npm run gen-types -- --watch",
27
29
  "build": "run-p gen-types bundle",
28
- "stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
29
30
  "lint": "eslint ./src",
30
31
  "lint-fix": "eslint --fix src/**/*.ts",
31
32
  "docs": "typedoc --options tdoptions.json .",
@@ -35,7 +36,7 @@
35
36
  "update": "npx -y npm-check-updates -u -t minor"
36
37
  },
37
38
  "dependencies": {
38
- "@hpcc-js/util": "^3.1.0",
39
+ "@hpcc-js/util": "^3.2.0",
39
40
  "@types/d3-array": "1.2.12",
40
41
  "@types/d3-brush": "1.1.8",
41
42
  "@types/d3-collection": "1.0.13",
@@ -53,7 +54,7 @@
53
54
  "@types/d3-zoom": "1.8.7"
54
55
  },
55
56
  "devDependencies": {
56
- "@hpcc-js/esbuild-plugins": "^1.2.0",
57
+ "@hpcc-js/esbuild-plugins": "^1.3.0",
57
58
  "colorbrewer": "1.5.7",
58
59
  "d3-array": "^1",
59
60
  "d3-brush": "^1",
@@ -84,5 +85,5 @@
84
85
  "url": "https://github.com/hpcc-systems/Visualization/issues"
85
86
  },
86
87
  "homepage": "https://github.com/hpcc-systems/Visualization",
87
- "gitHead": "3f6146539f487dca08a35cdd5f94ca29609b4343"
88
+ "gitHead": "658c50fd965a7744ba8db675ba6878607c44d5e2"
88
89
  }
package/src/List.ts CHANGED
@@ -91,8 +91,6 @@ export class List extends SVGWidget implements IList {
91
91
  dblclick(d) {
92
92
  // console.log("Double click: " + d);
93
93
  }
94
-
95
- // anchor: { (): string; (_: string): List; };
96
94
  }
97
95
  List.prototype._class += " common_List";
98
96
 
package/src/Palette.ts CHANGED
@@ -124,12 +124,12 @@ function palette_ordinal(id?, colors?): any {
124
124
  ordinal.type = function () {
125
125
  return "ordinal";
126
126
  };
127
- ordinal.id = function (_) {
127
+ ordinal.id = function (_?) {
128
128
  if (!arguments.length) return id;
129
129
  id = _;
130
130
  return ordinal;
131
131
  };
132
- ordinal.colors = function (_) {
132
+ ordinal.colors = function (_?) {
133
133
  if (!arguments.length) return colors;
134
134
  colors = _;
135
135
  return ordinal;
@@ -145,7 +145,7 @@ function palette_ordinal(id?, colors?): any {
145
145
  }
146
146
  return this.clone(newID);
147
147
  };
148
- ordinal.switch = function (_id, _colors) {
148
+ ordinal.switch = function (_id?, _colors?) {
149
149
  if (id === _id) {
150
150
  return this;
151
151
  }
@@ -239,12 +239,12 @@ function palette_rainbow(id?, _colors?, _steps?) {
239
239
  rainbow.type = function () {
240
240
  return "rainbow";
241
241
  };
242
- rainbow.id = function (_) {
242
+ rainbow.id = function (_?) {
243
243
  if (!arguments.length) return id;
244
244
  id = _;
245
245
  return rainbow;
246
246
  };
247
- rainbow.colors = function (_) {
247
+ rainbow.colors = function (_?) {
248
248
  if (!arguments.length) return colors;
249
249
  colors = _;
250
250
  return rainbow;
@@ -259,7 +259,7 @@ function palette_rainbow(id?, _colors?, _steps?) {
259
259
  }
260
260
  return this.clone(newID);
261
261
  };
262
- rainbow.switch = function (_id, _colors) {
262
+ rainbow.switch = function (_id?, _colors?) {
263
263
  if (id === _id) {
264
264
  return this;
265
265
  }
@@ -493,7 +493,7 @@ export class PropertyExt extends Class {
493
493
  if (this[id]) {
494
494
  } else {
495
495
  if (type === "propertyArray") {
496
- this[id] = function (_) {
496
+ this[id] = function (_?) {
497
497
  if (!arguments.length) return this[__prop_ + id];
498
498
  this[__prop_ + id] = _.map(item => {
499
499
  if (!meta.ext.noDeserialize && meta.ext.autoExpand && !(item instanceof meta.ext.autoExpand)) {
@@ -505,8 +505,8 @@ export class PropertyExt extends Class {
505
505
  return this;
506
506
  };
507
507
  } else {
508
- this[id] = function (_) {
509
- if (!arguments.length) return this[__prop_ + id];
508
+ this[id] = function (_?) {
509
+ if (!arguments.length) return this[__prop_ + id] ?? this[id + "_default"]();
510
510
  this[__prop_ + id] = _;
511
511
  return this;
512
512
  };
@@ -532,7 +532,7 @@ export class PropertyExt extends Class {
532
532
  if (this[id + "_default"]() != null && !(this[id + "_default"]() === "" && ext.optional === true)) return true;
533
533
  return false;
534
534
  };
535
- this[id + "_default"] = function (_) {
535
+ this[id + "_default"] = function (_?) {
536
536
  if (!arguments.length) return this[__default_ + id] !== undefined ? this[__default_ + id] : meta.defaultValue;
537
537
  if (_ === "") {
538
538
  _ = null;
@@ -594,7 +594,7 @@ export class PropertyExt extends Class {
594
594
  throw new Error(id + " is already published.");
595
595
  }
596
596
  this[__meta_ + id] = new MetaProxy(id, proxy, method, defaultValue);
597
- this[id] = function (_) {
597
+ this[id] = function (_?) {
598
598
  if (!arguments.length) return defaultValue === undefined || this[id + "_modified"]() ? this[proxy][method]() : defaultValue;
599
599
  if (defaultValue !== undefined && _ === defaultValue) {
600
600
  this[proxy][method + "_reset"]();
@@ -612,7 +612,7 @@ export class PropertyExt extends Class {
612
612
  this[id + "_exists"] = function () {
613
613
  return this[proxy][method + "_exists"]();
614
614
  };
615
- this[id + "_default"] = function (_) {
615
+ this[id + "_default"] = function (_?) {
616
616
  if (!arguments.length) return this[proxy][method + "_default"]();
617
617
  this[proxy][method + "_default"](_);
618
618
  return this;
package/src/SVGWidget.ts CHANGED
@@ -164,7 +164,7 @@ export class SVGWidget extends Widget {
164
164
  }
165
165
 
166
166
  // Properties ---
167
- move(_, transitionDuration?) {
167
+ move(_?, transitionDuration?) {
168
168
  const retVal = this.pos(_);
169
169
  if (arguments.length) {
170
170
  (transitionDuration ? this._element.transition().duration(transitionDuration) : this._element)
@@ -329,6 +329,7 @@ export class SVGZoomWidget extends SVGWidget {
329
329
  .attr("class", "zoomBackground")
330
330
  .attr("width", this.width())
331
331
  .attr("height", this.height())
332
+ .style("fill", "transparent")
332
333
  .on("mousedown", () => {
333
334
  if (d3Event.shiftKey && this.mouseMode() === "zoom") {
334
335
  d3Event.stopPropagation();
package/src/Transition.ts CHANGED
@@ -14,19 +14,19 @@ export class Transition {
14
14
  this._ease = d3CubicInOut;
15
15
  }
16
16
 
17
- duration(_) {
17
+ duration(_?) {
18
18
  if (!arguments.length) return this._duration;
19
19
  this._duration = _;
20
20
  return this._widget;
21
21
  }
22
22
 
23
- delay(_) {
23
+ delay(_?) {
24
24
  if (!arguments.length) return this._delay;
25
25
  this._delay = _;
26
26
  return this._widget;
27
27
  }
28
28
 
29
- ease(_) {
29
+ ease(_?) {
30
30
  if (!arguments.length) return this._ease;
31
31
  this._ease = _;
32
32
  return this._widget;
package/src/Utility.ts CHANGED
@@ -158,7 +158,7 @@ export class SimpleSelection extends SelectionBase {
158
158
  }
159
159
 
160
160
  _skipBringToTop;
161
- skipBringToTop(_) {
161
+ skipBringToTop(_?) {
162
162
  if (!arguments.length) return this._skipBringToTop;
163
163
  this._skipBringToTop = _;
164
164
  return this;
@@ -220,7 +220,7 @@ export class SimpleSelection extends SelectionBase {
220
220
  selected(domNode) {
221
221
  return d3Select(domNode).classed("selected");
222
222
  }
223
- selection(_) {
223
+ selection(_?) {
224
224
  if (!arguments.length) {
225
225
  return this.selection2().map(row => JSON.stringify(row));
226
226
  }
@@ -418,7 +418,7 @@ export function templateFields(tpl: string): string[] {
418
418
  return retVal;
419
419
  }
420
420
 
421
- export function template(tpl: string, _args) {
421
+ export function template(tpl?: string, _args?) {
422
422
  if (!tpl) return "";
423
423
  let args;
424
424
 
package/src/Widget.ts CHANGED
@@ -7,6 +7,8 @@ import { debounce, textRect, TextRect, textSize, TextSize } from "./Utility.ts";
7
7
 
8
8
  import "../src/Widget.css";
9
9
 
10
+ export { Field };
11
+
10
12
  export type IPrimative = boolean | number | string | object;
11
13
  export type IFieldType = "boolean" | "number" | "string" | "dataset" | "object" | "any";
12
14
  export interface InputField {
@@ -312,8 +314,8 @@ export abstract class Widget extends PropertyExt {
312
314
  }
313
315
 
314
316
  scale(): number;
315
- scale(_): Widget;
316
- scale(_?): number | Widget {
317
+ scale(_): this;
318
+ scale(_?): number | this {
317
319
  if (!arguments.length) return this._widgetScale;
318
320
  this._widgetScale = _;
319
321
  if (this._overlayElement) {
@@ -1,3 +1,3 @@
1
1
  export const PKG_NAME = "@hpcc-js/common";
2
- export const PKG_VERSION = "3.1.0";
3
- export const BUILD_VERSION = "2.107.0";
2
+ export const PKG_VERSION = "3.2.0";
3
+ export const BUILD_VERSION = "3.2.0";
@@ -28,7 +28,7 @@ export declare class SVGWidget extends Widget {
28
28
  protected _parentRelativeDiv: any;
29
29
  protected _parentOverlay: any;
30
30
  constructor();
31
- move(_: any, transitionDuration?: any): this;
31
+ move(_?: any, transitionDuration?: any): this;
32
32
  _enableOverflow: boolean;
33
33
  enableOverflow(): boolean;
34
34
  enableOverflow(_: boolean): this;
@@ -4,8 +4,8 @@ export declare class Transition {
4
4
  protected _delay: any;
5
5
  protected _ease: any;
6
6
  constructor(widget: any);
7
- duration(_: any): any;
8
- delay(_: any): any;
9
- ease(_: any): any;
7
+ duration(_?: any): any;
8
+ delay(_?: any): any;
9
+ ease(_?: any): any;
10
10
  apply(selection: any): any;
11
11
  }
@@ -28,14 +28,14 @@ export declare class SimpleSelection extends SelectionBase {
28
28
  _widgetElement: any;
29
29
  widgetElement(_?: any): any;
30
30
  _skipBringToTop: any;
31
- skipBringToTop(_: any): any;
31
+ skipBringToTop(_?: any): any;
32
32
  _initialSelection: (d: any) => boolean;
33
33
  enter(elements: any): void;
34
34
  click(domNode: any): boolean;
35
35
  mouseOver(domNode: any): void;
36
36
  mouseOut(domNode: any): void;
37
37
  selected(domNode: any): boolean;
38
- selection(_: any): string[] | this;
38
+ selection(_?: any): string[] | this;
39
39
  selection2(): any[];
40
40
  selection2(isSelected: (d: any) => boolean): this;
41
41
  }
@@ -46,7 +46,7 @@ export declare function faChar(key: string, defChar?: string): string;
46
46
  export declare function faCode(key: string): number;
47
47
  export declare function removeHTMLFromString(str: string, div?: HTMLDivElement): string;
48
48
  export declare function templateFields(tpl: string): string[];
49
- export declare function template(tpl: string, _args: any): string;
49
+ export declare function template(tpl?: string, _args?: any): string;
50
50
  export declare function naturalSort(data: any, order: any, idx: any, sortCaseSensitive: any): any;
51
51
  export declare function multiSort(data: any, sortBy: any): any;
52
52
  export declare const Selection: typeof SelectionBag;
package/types/Widget.d.ts CHANGED
@@ -3,6 +3,7 @@ import { Field, Grid } from "./Database.ts";
3
3
  import { PropertyExt } from "./PropertyExt.ts";
4
4
  import { TextRect, TextSize } from "./Utility.ts";
5
5
  import "../src/Widget.css";
6
+ export { Field };
6
7
  export type IPrimative = boolean | number | string | object;
7
8
  export type IFieldType = "boolean" | "number" | "string" | "dataset" | "object" | "any";
8
9
  export interface InputField {
@@ -86,7 +87,7 @@ export declare abstract class Widget extends PropertyExt {
86
87
  height(_: any): this;
87
88
  resize(size?: ISize, delta?: ISize): this;
88
89
  scale(): number;
89
- scale(_: any): Widget;
90
+ scale(_: any): this;
90
91
  visible(): boolean;
91
92
  visible(_: any): this;
92
93
  display(): boolean;
@@ -1,3 +1,3 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/common";
2
- export declare const PKG_VERSION = "3.1.0";
3
- export declare const BUILD_VERSION = "2.107.0";
2
+ export declare const PKG_VERSION = "3.2.0";
3
+ export declare const BUILD_VERSION = "3.2.0";
package/dist/index.css DELETED
@@ -1,2 +0,0 @@
1
- .common_Widget{font-family:Verdana,Geneva,sans-serif;font-size:12px}#hpcc_js_font_size{display:none}.common_Text{fill:#000;font-size:12px}.common_FAChar .common_Text{font-size:14px}.common_Shape{fill:#1f77b4;stroke:#1f77b4}.common_Icon .common_FAChar .common_Text{fill:#fff}.common_Icon .common_FAChar .common_Text,.common_Icon .common_FAChar .common_Text g,.common_Icon .common_FAChar .common_Text text,.common_Icon .common_FAChar .common_Text tspan{pointer-events:none}.common_EntityRectList .entityRectItem{margin:6px;border-width:2px;border-radius:8px;border-color:"black";border-style:solid}.common_EntityRectList .entityRectItem rect{stroke-width:4px;shape-rendering:geometricPrecision}.common_EntityRect .entity_shape>g>rect{shape-rendering:geometricPrecision}.common_TextBox .common_Shape{fill:#dcf1ff;stroke:#1f77b4}.common_List .common_TextBox .common_Shape{fill:#dcf1ff;stroke:#dcf1ff}.common_List .common_TextBox .common_Text{pointer-events:none}.common_List .common_TextBox .common_Shape:hover{fill:#fff;stroke:#fff}.common_Menu .common_FAChar{fill:#fff;cursor:pointer}.common_Menu.disabled .common_FAChar{visibility:hidden;cursor:inherit}.common_Menu .common_List .common_TextBox .common_Shape{fill:#1f77b4;stroke:#1f77b4}.common_Menu .common_List .common_TextBox .common_Text{fill:#fff}.common_Menu .common_List .common_TextBox .common_Shape:hover{fill:#ff7f0e;stroke:#ff7f0e}.common_Surface .container .common_Shape{fill:#f9fcff;stroke:#1f77b4;stroke-width:1px}.common_Surface .title{cursor:move}.common_Surface .title .common_Shape{fill:#1f77b4;stroke:#1f77b4;stroke-width:1px}.common_Surface .title text{fill:#fff;stroke:none}.svg-button-container{position:fixed}.svg-button-container .surface-button{position:relative;background:transparent;border:none;opacity:.8;color:#fff}.svg-button-container .surface-button:hover{opacity:1}.svg-button-container .surface-button:active{opacity:.5}.resizeN{cursor:ns-resize;opacity:0}.resizeNE{cursor:ne-resize;opacity:0}.resizeE{cursor:ew-resize;opacity:0}.resizeSE{cursor:se-resize;opacity:0}.resizeS{cursor:ns-resize;opacity:0}.resizeSW{cursor:sw-resize;opacity:0}.resizeW{cursor:ew-resize;opacity:0}.resizeNW{cursor:nw-resize;opacity:0}.common_IconBar{display:flex;flex-flow:row;justify-content:space-between}.common_IconBar .icon-bar{display:flex;opacity:.95;flex-wrap:nowrap;margin:0;white-space:nowrap;line-height:28px;z-index:1}.common_IconBar .icon-bar a{text-align:center;padding:4px 2px;transition:all .3s ease;color:#a9a9a9}.common_IconBar .icon-bar a.disabled{opacity:.3;pointer-events:none;color:#a9a9a9}.common_IconBar .icon-bar a:hover{background-color:#f5f5f5}.common_IconBar .icon-bar a{background-color:#fff}.common_IconBar .icon-bar a.selected{background-color:#efe5e5}.common_IconBar .icon-bar div.spacer{text-align:center;height:28px;border-left-style:solid;border-left-width:1px;border-left-color:transparent;padding-top:0;padding-left:2px;margin-left:2px;padding-bottom:0}.common_IconBar .icon-bar div.spacer.vline{border-left-color:#a9a9a9;padding-left:4px;margin-left:4px}.common_IconBar .icon-bar a.spacer:hover{background-color:transparent}.common_TitleBar>.title-title{margin:4px}.common_TitleBar>.icon-bar{margin:4px}.common_TitleBar .title-icon{padding:4px 0;position:static}.common_TitleBar .data-count{position:absolute;visibility:hidden}.common_TitleBar .title-text{padding:4px 0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-size:20px;font-weight:700}.common_TitleBar .description-text{padding:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:400}.common_SVGZoomWidget .zoomBackground{pointer-events:all;fill:none}.common_SVGZoomWidget rect.marqueeSelection{stroke:gray;stroke-dasharray:4px;stroke-opacity:.75;fill:transparent;pointer-events:none}
2
- /*# sourceMappingURL=index.css.map */
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/Widget.css", "../src/Text.css", "../src/FAChar.css", "../src/Shape.css", "../src/Icon.css", "../src/EntityRect.css", "../src/TextBox.css", "../src/List.css", "../src/Menu.css", "../src/Surface.css", "../src/ResizeSurface.css", "../src/TitleBar.css", "../src/SVGZoomWidget.css"],
4
- "sourcesContent": [".common_Widget {\n font-family: Verdana, Geneva, sans-serif;\n font-size: 12px;\n}\n\n#hpcc_js_font_size {\n display: none;\n}\n", ".common_Text {\n fill: #000;\n font-size: 12px;\n}\n", ".common_FAChar .common_Text {\n font-size: 14px;\n}", ".common_Shape {\n fill: #1f77b4;\n stroke: #1f77b4;\n}", ".common_Icon .common_FAChar .common_Text {\n fill: white;\n}\n.common_Icon .common_FAChar .common_Text,\n.common_Icon .common_FAChar .common_Text g,\n.common_Icon .common_FAChar .common_Text text,\n.common_Icon .common_FAChar .common_Text tspan {\n pointer-events: none;\n}\n", ".common_EntityRectList .entityRectItem {\n margin:6px;\n border-width: 2px;\n border-radius: 8px;\n border-color:\"black\";\n border-style: solid;\n}\n\n.common_EntityRectList .entityRectItem rect {\n stroke-width: 4px;\n shape-rendering: geometricPrecision;\n}\n\n.common_EntityRect .entity_shape > g > rect {\n shape-rendering: geometricPrecision;\n}", ".common_TextBox .common_Shape {\n fill: #dcf1ff;\n stroke: #1f77b4;\n}\n", ".common_List .common_TextBox .common_Shape {\n fill: #dcf1ff;\n stroke: #dcf1ff;\n}\n\n.common_List .common_TextBox .common_Text {\n pointer-events: none;\n}\n\n.common_List .common_TextBox .common_Shape:hover {\n fill: white;\n stroke: white;\n}\n", ".common_Menu .common_FAChar {\n fill: white;\n cursor: pointer;\n}\n\n.common_Menu.disabled .common_FAChar {\n visibility: hidden;\n cursor: inherit;\n}\n\n.common_Menu .common_List .common_TextBox .common_Shape {\n fill: #1f77b4;\n stroke: #1f77b4;\n}\n\n.common_Menu .common_List .common_TextBox .common_Text {\n fill: white;\n}\n\n.common_Menu .common_List .common_TextBox .common_Shape:hover {\n fill: #ff7f0e;\n stroke: #ff7f0e;\n}\n", ".common_Surface .container .common_Shape {\n fill: #f9fcff;\n stroke: #1f77b4;\n stroke-width: 1.0px;\n}\n\n.common_Surface .title {\n cursor: move;\n}\n\n.common_Surface .title .common_Shape {\n fill: #1f77b4;\n stroke: #1f77b4;\n stroke-width: 1.0px;\n}\n\n.common_Surface .title text {\n fill: white;\n stroke: none;\n}\n\n.svg-button-container {\n position: fixed;\n}\n\n.svg-button-container .surface-button {\n position: relative;\n background: transparent;\n border: none;\n opacity: 0.8;\n color: #fff;\n}\n\n.svg-button-container .surface-button:hover { opacity: 1; }\n.svg-button-container .surface-button:active { opacity: 0.5; }\n", ".resizeN {\n cursor: ns-resize;\n opacity: 0;\n}\n\n.resizeNE {\n cursor: ne-resize;\n opacity: 0;\n}\n\n.resizeE {\n cursor: ew-resize;\n opacity: 0;\n}\n\n.resizeSE {\n cursor: se-resize;\n opacity: 0;\n}\n\n.resizeS {\n cursor: ns-resize;\n opacity: 0;\n}\n\n.resizeSW {\n cursor: sw-resize;\n opacity: 0;\n}\n\n.resizeW {\n cursor: ew-resize;\n opacity: 0;\n}\n\n.resizeNW {\n cursor: nw-resize;\n opacity: 0;\n}\n", ".common_IconBar {\n display: flex;\n flex-flow: row;\n justify-content: space-between;\n}\n\n.common_IconBar .icon-bar {\n display: flex;\n opacity: 0.95;\n flex-wrap: nowrap;\n margin: 0px;\n white-space: nowrap;\n line-height: 28px;\n z-index:1;\n}\n\n.common_IconBar .icon-bar a {\n text-align: center; /* Center-align text */\n padding-top: 4px;\n padding-left: 2px;\n padding-right: 2px;\n padding-bottom: 4px;\n transition: all 0.3s ease; /* Add transition for hover effects */\n color: darkgray; /* White text color */\n}\n\n.common_IconBar .icon-bar a.disabled {\n opacity: 0.3;\n pointer-events: none;\n color: darkgray; \n}\n\n.common_IconBar .icon-bar a:hover {\n background-color: whitesmoke; /* Add a hover color */\n}\n\n.common_IconBar .icon-bar a {\n background-color: white;\n}\n\n.common_IconBar .icon-bar a.selected {\n background-color: #efe5e5; /* Add a hover color */\n}\n\n.common_IconBar .icon-bar div.spacer {\n text-align: center; /* Center-align text */\n height:28px;\n border-left-style: solid;\n border-left-width: 1px;\n border-left-color: transparent;\n padding-top: 0px;\n padding-left: 2px; \n margin-left: 2px; \n padding-bottom: 0px;\n}\n\n.common_IconBar .icon-bar div.spacer.vline {\n border-left-color: darkgray;\n padding-left: 4px; \n margin-left: 4px; \n}\n\n.common_IconBar .icon-bar a.spacer:hover {\n background-color: transparent;\n}\n\n.common_TitleBar > .title-title {\n margin: 4px;\n}\n\n.common_TitleBar > .icon-bar {\n margin: 4px;\n}\n\n.common_TitleBar .title-icon {\n padding: 4px 0;\n position: static;\n\n}\n.common_TitleBar .data-count{\n position: absolute;\n visibility: hidden;\n}\n\n.common_TitleBar .title-text {\n padding: 4px 0;\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n font-size: 20px;\n font-weight: bold;\n}\n.common_TitleBar .description-text {\n padding: 0px;\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n font-weight: normal;\n}\n", ".common_SVGZoomWidget .zoomBackground {\n pointer-events: all;\n fill: none;\n}\n\n.common_SVGZoomWidget rect.marqueeSelection {\n stroke: gray;\n stroke-dasharray: 4px;\n stroke-opacity: 0.75;\n fill: transparent;\n pointer-events: none;\n}\n"],
5
- "mappings": "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",
6
- "names": []
7
- }