@pie-lib/graphing-module 1.11.10 → 1.11.11
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/module/index.js +19 -19
- package/module/manifest.json +7 -7
- package/package.json +1 -1
package/module/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {_dll_prop_types, _dll_pie_lib__render_ui, _dll_material_ui__core_styles, _dll_react, _dll_classnames, _dll_react_dom, _dll_lodash, _dll_debug, _dll_material_ui__core, _dll_material_ui__core_styles_color_manipulator, _dll_material_ui__icons} from "../../shared-module@^1.6.
|
|
2
|
-
import {_dll_pie_lib__editable_html} from "../../editable-html-module@^3.6.
|
|
3
|
-
import {_dll_pie_lib__drag} from "../../drag-module@^2.1.
|
|
4
|
-
import {_dll_pie_lib__config_ui} from "../../config-module@^2.7.
|
|
1
|
+
import {_dll_prop_types, _dll_pie_lib__render_ui, _dll_material_ui__core_styles, _dll_react, _dll_classnames, _dll_react_dom, _dll_lodash, _dll_debug, _dll_material_ui__core, _dll_material_ui__core_styles_color_manipulator, _dll_material_ui__icons} from "../../shared-module@^1.6.9/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__editable_html} from "../../editable-html-module@^3.6.12/module/index.js";
|
|
3
|
+
import {_dll_pie_lib__drag} from "../../drag-module@^2.1.12/module/index.js";
|
|
4
|
+
import {_dll_pie_lib__config_ui} from "../../config-module@^2.7.3/module/index.js";
|
|
5
5
|
const PropTypes$D = _dll_prop_types;
|
|
6
6
|
const BaseDomainRangeType = {
|
|
7
7
|
min: PropTypes$D.number.isRequired,
|
|
@@ -14483,7 +14483,6 @@ const PropTypes$9 = _dll_prop_types;
|
|
|
14483
14483
|
const classNames$6 = _dll_classnames;
|
|
14484
14484
|
const {withStyles: withStyles$7} = _dll_material_ui__core_styles;
|
|
14485
14485
|
const _jsxFileName$9 = "/home/circleci/repo/packages/graphing/src/tools/line/component.jsx";
|
|
14486
|
-
const markerId$1 = genUid();
|
|
14487
14486
|
const lineStyles$2 = theme => ({
|
|
14488
14487
|
line: styles$4.line(theme),
|
|
14489
14488
|
enabledArrow: styles$4.arrow(theme),
|
|
@@ -14495,6 +14494,7 @@ const lineStyles$2 = theme => ({
|
|
|
14495
14494
|
incorrectArrow: styles$4.incorrect(theme)
|
|
14496
14495
|
});
|
|
14497
14496
|
const ArrowedLine = props => {
|
|
14497
|
+
const markerId = genUid();
|
|
14498
14498
|
const {className, classes, correctness, disabled, graphProps, from, to, ...rest} = props;
|
|
14499
14499
|
const {scale} = graphProps;
|
|
14500
14500
|
const {domain, range} = getAdjustedGraphLimits(graphProps);
|
|
@@ -14504,22 +14504,22 @@ const ArrowedLine = props => {
|
|
|
14504
14504
|
__self: undefined,
|
|
14505
14505
|
__source: {
|
|
14506
14506
|
fileName: _jsxFileName$9,
|
|
14507
|
-
lineNumber:
|
|
14507
|
+
lineNumber: 30
|
|
14508
14508
|
}
|
|
14509
14509
|
}, React$9.createElement('defs', {
|
|
14510
14510
|
__self: undefined,
|
|
14511
14511
|
__source: {
|
|
14512
14512
|
fileName: _jsxFileName$9,
|
|
14513
|
-
lineNumber:
|
|
14513
|
+
lineNumber: 31
|
|
14514
14514
|
}
|
|
14515
14515
|
}, React$9.createElement(ArrowMarker, {
|
|
14516
14516
|
size: thinnerShapesNeeded(graphProps) ? 4 : 5,
|
|
14517
|
-
id: `${props.markerId || markerId
|
|
14517
|
+
id: `${props.markerId || markerId}-${suffix}`,
|
|
14518
14518
|
className: classNames$6(classes[`${suffix}Arrow`]),
|
|
14519
14519
|
__self: undefined,
|
|
14520
14520
|
__source: {
|
|
14521
14521
|
fileName: _jsxFileName$9,
|
|
14522
|
-
lineNumber:
|
|
14522
|
+
lineNumber: 32
|
|
14523
14523
|
}
|
|
14524
14524
|
})), React$9.createElement('line', {
|
|
14525
14525
|
x1: scale.x(eFrom.x),
|
|
@@ -14527,13 +14527,13 @@ const ArrowedLine = props => {
|
|
|
14527
14527
|
x2: scale.x(eTo.x),
|
|
14528
14528
|
y2: scale.y(eTo.y),
|
|
14529
14529
|
className: classNames$6(classes.line, disabled && classes.disabled, classes[correctness], className),
|
|
14530
|
-
markerEnd: `url(#${props.markerId || markerId
|
|
14531
|
-
markerStart: `url(#${props.markerId || markerId
|
|
14530
|
+
markerEnd: `url(#${props.markerId || markerId}-${suffix})`,
|
|
14531
|
+
markerStart: `url(#${props.markerId || markerId}-${suffix})`,
|
|
14532
14532
|
...rest,
|
|
14533
14533
|
__self: undefined,
|
|
14534
14534
|
__source: {
|
|
14535
14535
|
fileName: _jsxFileName$9,
|
|
14536
|
-
lineNumber:
|
|
14536
|
+
lineNumber: 38
|
|
14537
14537
|
}
|
|
14538
14538
|
}));
|
|
14539
14539
|
};
|
|
@@ -14599,7 +14599,6 @@ const PropTypes$7 = _dll_prop_types;
|
|
|
14599
14599
|
const {withStyles: withStyles$5} = _dll_material_ui__core_styles;
|
|
14600
14600
|
const classNames$4 = _dll_classnames;
|
|
14601
14601
|
const _jsxFileName$7 = "/home/circleci/repo/packages/graphing/src/tools/ray/component.jsx";
|
|
14602
|
-
const markerId = genUid();
|
|
14603
14602
|
const rayStyles = theme => ({
|
|
14604
14603
|
line: styles$4.line(theme),
|
|
14605
14604
|
enabledArrow: styles$4.arrow(theme),
|
|
@@ -14611,6 +14610,7 @@ const rayStyles = theme => ({
|
|
|
14611
14610
|
incorrectArrow: styles$4.incorrect(theme)
|
|
14612
14611
|
});
|
|
14613
14612
|
const RayLine = props => {
|
|
14613
|
+
const markerId = genUid();
|
|
14614
14614
|
const {graphProps, from, to, classes, disabled, correctness, className, ...rest} = props;
|
|
14615
14615
|
const {scale} = graphProps;
|
|
14616
14616
|
const {domain, range} = getAdjustedGraphLimits(graphProps);
|
|
@@ -14620,13 +14620,13 @@ const RayLine = props => {
|
|
|
14620
14620
|
__self: undefined,
|
|
14621
14621
|
__source: {
|
|
14622
14622
|
fileName: _jsxFileName$7,
|
|
14623
|
-
lineNumber:
|
|
14623
|
+
lineNumber: 30
|
|
14624
14624
|
}
|
|
14625
14625
|
}, React$7.createElement('defs', {
|
|
14626
14626
|
__self: undefined,
|
|
14627
14627
|
__source: {
|
|
14628
14628
|
fileName: _jsxFileName$7,
|
|
14629
|
-
lineNumber:
|
|
14629
|
+
lineNumber: 31
|
|
14630
14630
|
}
|
|
14631
14631
|
}, React$7.createElement(ArrowMarker, {
|
|
14632
14632
|
size: thinnerShapesNeeded(graphProps) ? 4 : 5,
|
|
@@ -14635,7 +14635,7 @@ const RayLine = props => {
|
|
|
14635
14635
|
__self: undefined,
|
|
14636
14636
|
__source: {
|
|
14637
14637
|
fileName: _jsxFileName$7,
|
|
14638
|
-
lineNumber:
|
|
14638
|
+
lineNumber: 32
|
|
14639
14639
|
}
|
|
14640
14640
|
})), React$7.createElement('line', {
|
|
14641
14641
|
x1: scale.x(from.x),
|
|
@@ -14648,7 +14648,7 @@ const RayLine = props => {
|
|
|
14648
14648
|
__self: undefined,
|
|
14649
14649
|
__source: {
|
|
14650
14650
|
fileName: _jsxFileName$7,
|
|
14651
|
-
lineNumber:
|
|
14651
|
+
lineNumber: 38
|
|
14652
14652
|
}
|
|
14653
14653
|
}));
|
|
14654
14654
|
};
|
|
@@ -15591,7 +15591,7 @@ const AxisConfig = props => {
|
|
|
15591
15591
|
label: min.label || '',
|
|
15592
15592
|
value: minValue,
|
|
15593
15593
|
min: -10000,
|
|
15594
|
-
max: maxValue - 0.
|
|
15594
|
+
max: maxValue - 0.05,
|
|
15595
15595
|
variant: "outlined",
|
|
15596
15596
|
disabled: disabled,
|
|
15597
15597
|
onChange: (e, v) => onChange('min', v),
|
|
@@ -15604,7 +15604,7 @@ const AxisConfig = props => {
|
|
|
15604
15604
|
className: classes.mediumTextField,
|
|
15605
15605
|
label: max.label || '',
|
|
15606
15606
|
value: maxValue,
|
|
15607
|
-
min: minValue + 0.
|
|
15607
|
+
min: minValue + 0.05,
|
|
15608
15608
|
max: 10000,
|
|
15609
15609
|
variant: "outlined",
|
|
15610
15610
|
disabled: disabled,
|
package/module/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-lib/graphing-module",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.11",
|
|
4
4
|
"mappings": {
|
|
5
5
|
"@pie-lib/plot": "_dll_pie_lib__plot",
|
|
6
6
|
"@pie-lib/graphing": "_dll_pie_lib__graphing",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"version": "2.6.12"
|
|
14
14
|
},
|
|
15
15
|
"@pie-lib/graphing": {
|
|
16
|
-
"version": "2.12.
|
|
16
|
+
"version": "2.12.16"
|
|
17
17
|
},
|
|
18
18
|
"d3-scale": {
|
|
19
19
|
"version": "2.2.2"
|
|
@@ -22,24 +22,24 @@
|
|
|
22
22
|
"version": "1.4.2"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
|
-
"hash": "
|
|
25
|
+
"hash": "36355b85aaef9500c585944a2ba0d27097178314"
|
|
26
26
|
},
|
|
27
27
|
"modules": [
|
|
28
28
|
{
|
|
29
29
|
"name": "@pie-lib/shared-module",
|
|
30
|
-
"version": "^1.6.
|
|
30
|
+
"version": "^1.6.9"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"name": "@pie-lib/editable-html-module",
|
|
34
|
-
"version": "^3.6.
|
|
34
|
+
"version": "^3.6.12"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"name": "@pie-lib/drag-module",
|
|
38
|
-
"version": "^2.1.
|
|
38
|
+
"version": "^2.1.12"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"name": "@pie-lib/config-module",
|
|
42
|
-
"version": "^2.7.
|
|
42
|
+
"version": "^2.7.3"
|
|
43
43
|
}
|
|
44
44
|
],
|
|
45
45
|
"isLocal": true
|