@ms-atlas-module/datastudio-datafactory 0.1.36
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.
Potentially problematic release.
This version of @ms-atlas-module/datastudio-datafactory might be problematic. Click here for more details.
- package/_generated/ClientResources.js +1549 -0
- package/_generated/Framework.js +97 -0
- package/_generated/Svg.js +201 -0
- package/bootstrapper/BreadcrumbsKnockoutBinding.js +25 -0
- package/bootstrapper/CSS/Callout.css +43 -0
- package/bootstrapper/CSS/Common.css +22 -0
- package/bootstrapper/CSS/FormFields.css +133 -0
- package/bootstrapper/CSS/InlineBlock.css +34 -0
- package/bootstrapper/CSS/ParameterGroups.css +77 -0
- package/bootstrapper/CSS/Pivot.css +25 -0
- package/bootstrapper/CSS/Wizard.css +197 -0
- package/bootstrapper/CalloutBinding.js +52 -0
- package/bootstrapper/CollapsibleKnockoutBinding.js +70 -0
- package/bootstrapper/CopyBinding.js +150 -0
- package/bootstrapper/FilterFlyoutKnockoutBinding.js +114 -0
- package/bootstrapper/FormFields.js +397 -0
- package/bootstrapper/InlineBlockBinding.js +69 -0
- package/bootstrapper/JQueryUIBindings.js +152 -0
- package/bootstrapper/KnockoutBindings.js +635 -0
- package/bootstrapper/LoadingBinding.js +54 -0
- package/bootstrapper/MonacoEditorKnockoutBinding.js +67 -0
- package/bootstrapper/ParameterGroupsBinding.js +289 -0
- package/bootstrapper/PivotKnockoutBinding.js +61 -0
- package/bootstrapper/StatusCalendarFlyoutKnockoutBinding.js +398 -0
- package/bootstrapper/StatusCalendarKnockoutBinding.js +107 -0
- package/bootstrapper/TelemetryKnockoutBinding.js +68 -0
- package/bootstrapper/WinJSButtonKnockoutBinding.js +72 -0
- package/bootstrapper/WinJSKnockoutBindings.js +49 -0
- package/bootstrapper/WizardBinding.js +611 -0
- package/bootstrapper/startup.js +29 -0
- package/libs/VivaGraphControl/Content/CSS/Graph.css +157 -0
- package/libs/VivaGraphControl/Content/CSS/LightTheme.css +699 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Base/Base.TriggerableLifetimeManager.js +190 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Base.js +647 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Image.js +113 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/KnockoutExtensions.js +1064 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/DockedBalloon.js +18 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Animation.js +192 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Commands/MoveNodes.js +83 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Geometry.js +167 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphEntityViewModel.js +260 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphViewModel.js +338 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.Constants.js +178 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.js +5190 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/MouseCapture.js +148 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js +164 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Detection.js +658 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Resize.js +241 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.Private.js +236 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.js +905 -0
- package/libs/WinJS/WinJs.min.js +61909 -0
- package/libs/WinJS/ui-light.css +8500 -0
- package/package.json +15 -0
- package/scripts/AppContext.js +262 -0
- package/scripts/ExposureControl.js +11 -0
- package/scripts/Framework/Model/ActivityWindowCache.js +390 -0
- package/scripts/Framework/Model/ArmDataFactoryCache.js +77 -0
- package/scripts/Framework/Model/Contracts/Activity.js +83 -0
- package/scripts/Framework/Model/Contracts/ActivityWindow.js +185 -0
- package/scripts/Framework/Model/Contracts/BaseEncodable.js +106 -0
- package/scripts/Framework/Model/Contracts/Common.js +19 -0
- package/scripts/Framework/Model/Contracts/DataArtifact.js +100 -0
- package/scripts/Framework/Model/Contracts/Diagram.js +9 -0
- package/scripts/Framework/Model/Contracts/Encodable.js +113 -0
- package/scripts/Framework/Model/Contracts/Gateway.js +98 -0
- package/scripts/Framework/Model/Contracts/LinkedService.js +200 -0
- package/scripts/Framework/Model/Contracts/Pipeline.js +197 -0
- package/scripts/Framework/Model/DataCache.js +105 -0
- package/scripts/Framework/Model/DataFactoryCache.js +24 -0
- package/scripts/Framework/Model/Filter.js +186 -0
- package/scripts/Framework/Model/Helpers/ActivityWindowHelper.js +185 -0
- package/scripts/Framework/Model/MonitoringView.js +40 -0
- package/scripts/Framework/Shared/Constants.js +27 -0
- package/scripts/Framework/Shared/DataConstants.js +61 -0
- package/scripts/Framework/Shared/Disposable.js +53 -0
- package/scripts/Framework/Shared/IconResources.js +59 -0
- package/scripts/Framework/Shared/Resources/IbizaSvgs.js +241 -0
- package/scripts/Framework/Shared/TypeDeclarations.js +4 -0
- package/scripts/Framework/Telemetry/Telemetry.js +78 -0
- package/scripts/Framework/UI/Breadcrumbs.js +84 -0
- package/scripts/Framework/UI/Command.js +231 -0
- package/scripts/Framework/UI/ContextMenu.js +80 -0
- package/scripts/Framework/UI/Loader.js +11 -0
- package/scripts/Framework/UI/Menu.js +65 -0
- package/scripts/Framework/UI/PanelMessage.js +25 -0
- package/scripts/Framework/UI/Refresh.js +70 -0
- package/scripts/Framework/UI/Spinner.js +61 -0
- package/scripts/Framework/UI/StatusCalendar.js +1070 -0
- package/scripts/Framework/UI/Toolbar.js +84 -0
- package/scripts/Framework/Util/Datetime.js +258 -0
- package/scripts/Framework/Util/Log.js +10 -0
- package/scripts/Framework/Util/ResourceIdUtil.js +56 -0
- package/scripts/Framework/Util/Security.js +73 -0
- package/scripts/Framework/Util/Util.js +332 -0
- package/scripts/Framework/Views/HoverFlyout.js +92 -0
- package/scripts/Handlers/ErrorHandler.js +176 -0
- package/scripts/Handlers/MessageHandler.js +115 -0
- package/scripts/Handlers/MonitoringViewHandler.js +199 -0
- package/scripts/Handlers/RoutingHandler.js +364 -0
- package/scripts/Handlers/WinJSHandlers.js +265 -0
- package/scripts/MonitoringViewContext.js +75 -0
- package/scripts/Services/AzureInsightsService.js +162 -0
- package/scripts/Services/AzureResourceManagerService.js +869 -0
- package/scripts/Services/BaseService.js +232 -0
- package/scripts/Services/DataFactoryService.js +204 -0
- package/scripts/Services/HDInsightArmService.js +59 -0
- package/scripts/ViewContext.js +9 -0
- package/stylesheets/main.css +1042 -0
- package/views/Edit/DateTimeFilterViewModel.js +211 -0
- package/views/Edit/FilterViewModel.js +131 -0
- package/views/Shared/ProvisioningState.js +11 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
define(["require", "exports"], function (require, exports) {
|
|
2
|
+
var Main;
|
|
3
|
+
(function (Main) {
|
|
4
|
+
"use strict";
|
|
5
|
+
/**
|
|
6
|
+
* A wrapper for registering and unregistering events.
|
|
7
|
+
*/
|
|
8
|
+
var EventListenerSubscription = (function () {
|
|
9
|
+
/**
|
|
10
|
+
* Constructs a wrapper for event listeners that can remove them on dispose.
|
|
11
|
+
*
|
|
12
|
+
* @param element The element on which to attach the listener.
|
|
13
|
+
* @param eventType The type of event to register (e.g. mousedown, focus, etc.).
|
|
14
|
+
* @param handler The callback to fire when the event occurs.
|
|
15
|
+
* @param useCapture False uses bubble semantics. True uses capture semantics.
|
|
16
|
+
*/
|
|
17
|
+
function EventListenerSubscription(
|
|
18
|
+
element,
|
|
19
|
+
eventType,
|
|
20
|
+
handler,
|
|
21
|
+
useCapture
|
|
22
|
+
) {
|
|
23
|
+
if (useCapture === void 0) {
|
|
24
|
+
useCapture = false;
|
|
25
|
+
}
|
|
26
|
+
this._handler = handler;
|
|
27
|
+
this._useCapture = useCapture;
|
|
28
|
+
this._eventType = eventType;
|
|
29
|
+
this._element = element;
|
|
30
|
+
element.addEventListener(eventType, handler, useCapture);
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Remove the registered event listeners.
|
|
34
|
+
*/
|
|
35
|
+
EventListenerSubscription.prototype.dispose = function () {
|
|
36
|
+
this._element.removeEventListener(
|
|
37
|
+
this._eventType,
|
|
38
|
+
this._handler,
|
|
39
|
+
this._useCapture
|
|
40
|
+
);
|
|
41
|
+
};
|
|
42
|
+
return EventListenerSubscription;
|
|
43
|
+
})();
|
|
44
|
+
Main.EventListenerSubscription = EventListenerSubscription;
|
|
45
|
+
/**
|
|
46
|
+
* A class for handling and tracking drags. Works if the user drags anywhere on the screen, even outside the browser window.
|
|
47
|
+
* Works with multiple mouse buttons and retains the drag until all buttons are released.
|
|
48
|
+
*/
|
|
49
|
+
var MouseCapture = (function () {
|
|
50
|
+
/**
|
|
51
|
+
* Create a mouse capture class that tracks mouse drags.
|
|
52
|
+
*
|
|
53
|
+
* @param mouseDownOrigin The element on which a mouse down begins tracking a drag.
|
|
54
|
+
* @param mouseMoveHandler What to do when the user drags the mouse with a button down.
|
|
55
|
+
* @param mouseUpHandler What to do when the user releases a mouse button in the drag.
|
|
56
|
+
*/
|
|
57
|
+
function MouseCapture(mouseDownOrigin, mouseMoveHandler, mouseUpHandler) {
|
|
58
|
+
var _this = this;
|
|
59
|
+
this._mouseMoveHandler = mouseMoveHandler;
|
|
60
|
+
this._mouseUpHandler = mouseUpHandler;
|
|
61
|
+
this._buttonsDown = 0;
|
|
62
|
+
this._mouseDownOrigin = mouseDownOrigin;
|
|
63
|
+
var countMouseDowns = function () {
|
|
64
|
+
_this._buttonsDown++;
|
|
65
|
+
};
|
|
66
|
+
this._beginCapture = function () {
|
|
67
|
+
if (_this._buttonsDown === 0) {
|
|
68
|
+
_this._mouseMoveSubscription = new EventListenerSubscription(
|
|
69
|
+
document,
|
|
70
|
+
"mousemove",
|
|
71
|
+
_this._mouseMoveHandler,
|
|
72
|
+
true
|
|
73
|
+
);
|
|
74
|
+
_this._mouseUpSubscription = new EventListenerSubscription(
|
|
75
|
+
document,
|
|
76
|
+
"mouseup",
|
|
77
|
+
_this._mouseUpHandler,
|
|
78
|
+
true
|
|
79
|
+
);
|
|
80
|
+
_this._endCaptureSubscription = new EventListenerSubscription(
|
|
81
|
+
document,
|
|
82
|
+
"mouseup",
|
|
83
|
+
_this._endCapture,
|
|
84
|
+
true
|
|
85
|
+
);
|
|
86
|
+
_this._countMouseDownsSubscription = new EventListenerSubscription(
|
|
87
|
+
document,
|
|
88
|
+
"mousedown",
|
|
89
|
+
countMouseDowns,
|
|
90
|
+
true
|
|
91
|
+
);
|
|
92
|
+
_this._buttonsDown++;
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
this._endCapture = function () {
|
|
96
|
+
_this._buttonsDown--;
|
|
97
|
+
if (_this._buttonsDown === 0) {
|
|
98
|
+
_this._mouseMoveSubscription.dispose();
|
|
99
|
+
_this._mouseUpSubscription.dispose();
|
|
100
|
+
_this._endCaptureSubscription.dispose();
|
|
101
|
+
_this._countMouseDownsSubscription.dispose();
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
this._beginCaptureSubscription = new EventListenerSubscription(
|
|
105
|
+
mouseDownOrigin,
|
|
106
|
+
"mousedown",
|
|
107
|
+
this._beginCapture,
|
|
108
|
+
true
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Disposes of the mouse capture class.
|
|
113
|
+
*/
|
|
114
|
+
MouseCapture.prototype.dispose = function () {
|
|
115
|
+
if (this._buttonsDown > 0) {
|
|
116
|
+
this._mouseMoveSubscription.dispose();
|
|
117
|
+
this._mouseUpSubscription.dispose();
|
|
118
|
+
this._endCaptureSubscription.dispose();
|
|
119
|
+
this._countMouseDownsSubscription.dispose();
|
|
120
|
+
}
|
|
121
|
+
this._beginCaptureSubscription.dispose();
|
|
122
|
+
};
|
|
123
|
+
return MouseCapture;
|
|
124
|
+
})();
|
|
125
|
+
Main.MouseCapture = MouseCapture;
|
|
126
|
+
ko.bindingHandlers["mouseCapture"] = {
|
|
127
|
+
init: function (element, valueAccessor, allBindingsAccessor, viewModel) {
|
|
128
|
+
var options = valueAccessor(),
|
|
129
|
+
mouseMove = function (e) {
|
|
130
|
+
options.mouseMove(viewModel, e);
|
|
131
|
+
},
|
|
132
|
+
mouseUp = function (e) {
|
|
133
|
+
options.mouseUp(viewModel, e);
|
|
134
|
+
},
|
|
135
|
+
capture = new MouseCapture(element, mouseMove, mouseUp);
|
|
136
|
+
if (!(options.mouseMove && options.mouseUp)) {
|
|
137
|
+
throw "MouseCapture requires mouseMove and mouseUp handlers in binding";
|
|
138
|
+
}
|
|
139
|
+
// Dispose of the capture class when Knockout stops binding the element.
|
|
140
|
+
ko.utils.domNodeDisposal.addDisposeCallback(element, function () {
|
|
141
|
+
capture.dispose();
|
|
142
|
+
});
|
|
143
|
+
},
|
|
144
|
+
update: function () {},
|
|
145
|
+
};
|
|
146
|
+
})(Main || (Main = {}));
|
|
147
|
+
return Main;
|
|
148
|
+
});
|
package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
define([
|
|
2
|
+
"require",
|
|
3
|
+
"exports",
|
|
4
|
+
"./GraphEntityViewModel",
|
|
5
|
+
"./GraphViewModel",
|
|
6
|
+
], function (require, exports, GraphEntityViewModel, GraphViewModel) {
|
|
7
|
+
var Main;
|
|
8
|
+
(function (Main) {
|
|
9
|
+
"use strict";
|
|
10
|
+
/**
|
|
11
|
+
* Returns a value for the stroke-dash attribute of a path in respect to the specified edge style.
|
|
12
|
+
*
|
|
13
|
+
* @param style The edge line style selected.
|
|
14
|
+
* @return String value for the dash array used if the style is not a solid line, 'none' otherwise.
|
|
15
|
+
*/
|
|
16
|
+
function strokeDashArray(style) {
|
|
17
|
+
var result = "none";
|
|
18
|
+
switch (style) {
|
|
19
|
+
case 2 /* Dotted */:
|
|
20
|
+
result = "2 2";
|
|
21
|
+
break;
|
|
22
|
+
case 3 /* Dashed */:
|
|
23
|
+
result = "12 3";
|
|
24
|
+
break;
|
|
25
|
+
}
|
|
26
|
+
return result;
|
|
27
|
+
}
|
|
28
|
+
Main.strokeDashArray = strokeDashArray;
|
|
29
|
+
/**
|
|
30
|
+
* Returns a value for the stroke-width attribute of a path in respect to the specified edge strength.
|
|
31
|
+
*
|
|
32
|
+
* @param strength The edge strength selected.
|
|
33
|
+
* @return Width value.
|
|
34
|
+
*/
|
|
35
|
+
function strokeWidth(thickness) {
|
|
36
|
+
var maxAllowedWidth = 6,
|
|
37
|
+
minAllowedWidth = 1;
|
|
38
|
+
return Math.max(minAllowedWidth, Math.min(maxAllowedWidth, thickness));
|
|
39
|
+
}
|
|
40
|
+
Main.strokeWidth = strokeWidth;
|
|
41
|
+
/**
|
|
42
|
+
* Returns a value for the marker attribute of a path in respect to the specified edge marker.
|
|
43
|
+
*
|
|
44
|
+
* @param marker The edge marker selected.
|
|
45
|
+
* @param startMarker Is an edge start marker.
|
|
46
|
+
* @return String value for the marker used, 'none' otherwise.
|
|
47
|
+
*/
|
|
48
|
+
function marker(marker, startMarker) {
|
|
49
|
+
var attribute = "none";
|
|
50
|
+
switch (marker) {
|
|
51
|
+
case 2 /* Arrow */:
|
|
52
|
+
attribute = startMarker
|
|
53
|
+
? "backward-arrow-edge-marker"
|
|
54
|
+
: "forward-arrow-edge-marker";
|
|
55
|
+
break;
|
|
56
|
+
case 3 /* Circle */:
|
|
57
|
+
attribute = "circle-edge-marker";
|
|
58
|
+
break;
|
|
59
|
+
}
|
|
60
|
+
return attribute;
|
|
61
|
+
}
|
|
62
|
+
Main.marker = marker;
|
|
63
|
+
Main.StateCompatibilityStrategyDefinitions = {
|
|
64
|
+
combineHoveredAndSelected: {
|
|
65
|
+
// exploring states from the most immediate to more permanent:
|
|
66
|
+
state: "dragSource",
|
|
67
|
+
compatible: ["selected"],
|
|
68
|
+
disjunctive: {
|
|
69
|
+
state: "dragSource",
|
|
70
|
+
compatible: ["selected"],
|
|
71
|
+
disjunctive: {
|
|
72
|
+
state: "dragTarget",
|
|
73
|
+
compatible: ["selected"],
|
|
74
|
+
disjunctive: {
|
|
75
|
+
state: "hovered",
|
|
76
|
+
compatible: ["selected"],
|
|
77
|
+
disjunctive: {
|
|
78
|
+
state: "selected",
|
|
79
|
+
disjunctive: {
|
|
80
|
+
state: "atRest",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
preferHoveredOverSelected: {
|
|
88
|
+
// exploring states from the most immediate to more permanent:
|
|
89
|
+
state: "dragSource",
|
|
90
|
+
disjunctive: {
|
|
91
|
+
state: "dragTarget",
|
|
92
|
+
disjunctive: {
|
|
93
|
+
state: "hovered",
|
|
94
|
+
disjunctive: {
|
|
95
|
+
state: "selected",
|
|
96
|
+
disjunctive: {
|
|
97
|
+
state: "atRest",
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Collection of supported graph skins. Use a value of GraphEditorSkinStyle enum as a skin key/index.
|
|
106
|
+
*/
|
|
107
|
+
Main.GraphSkinsCollection = {};
|
|
108
|
+
Main.GraphSkinsCollection[0 /* Blade */] = {
|
|
109
|
+
skinMonikerClass: "graph-skin-style-blade",
|
|
110
|
+
canvasColorClasses: ["azc-bg-light"],
|
|
111
|
+
nodeStatesCompatibility:
|
|
112
|
+
Main.StateCompatibilityStrategyDefinitions["combineHoveredAndSelected"],
|
|
113
|
+
nodeColorClasses: {
|
|
114
|
+
atRest: ["azc-bg-default", "azc-fill-default"],
|
|
115
|
+
hovered: ["azc-bg-default", "azc-fill-default"],
|
|
116
|
+
selected: [
|
|
117
|
+
"azc-bg-default",
|
|
118
|
+
"azc-fill-default",
|
|
119
|
+
"azc-stroke-selected",
|
|
120
|
+
"azc-br-selected",
|
|
121
|
+
],
|
|
122
|
+
dragSource: [
|
|
123
|
+
"azc-bg-default",
|
|
124
|
+
"azc-fill-default",
|
|
125
|
+
"azc-stroke-heavy",
|
|
126
|
+
"azc-br-heavy",
|
|
127
|
+
],
|
|
128
|
+
dragTarget: [
|
|
129
|
+
"azc-bg-default",
|
|
130
|
+
"azc-fill-default",
|
|
131
|
+
"azc-stroke-heavy",
|
|
132
|
+
"azc-br-heavy",
|
|
133
|
+
],
|
|
134
|
+
},
|
|
135
|
+
edgeColorClasses: {
|
|
136
|
+
atRest: ["azc-stroke-heavy"],
|
|
137
|
+
selected: ["azc-stroke-selected"],
|
|
138
|
+
},
|
|
139
|
+
};
|
|
140
|
+
Main.GraphSkinsCollection[1 /* Document */] = {
|
|
141
|
+
skinMonikerClass: "graph-skin-style-document",
|
|
142
|
+
canvasColorClasses: ["azc-bg-default"],
|
|
143
|
+
nodeStatesCompatibility:
|
|
144
|
+
Main.StateCompatibilityStrategyDefinitions["combineHoveredAndSelected"],
|
|
145
|
+
nodeColorClasses: {
|
|
146
|
+
atRest: ["azc-node-bg", "azc-node-fill"],
|
|
147
|
+
hovered: ["azc-node-bg-hovered", "azc-node-fill-hovered"],
|
|
148
|
+
selected: [
|
|
149
|
+
"azc-node-bg",
|
|
150
|
+
"azc-node-fill",
|
|
151
|
+
"azc-stroke-selected",
|
|
152
|
+
"azc-br-selected",
|
|
153
|
+
],
|
|
154
|
+
dragSource: ["azc-node-bg-hovered", "azc-node-fill-hovered"],
|
|
155
|
+
dragTarget: ["azc-node-bg-hovered", "azc-node-fill-hovered"],
|
|
156
|
+
},
|
|
157
|
+
edgeColorClasses: {
|
|
158
|
+
atRest: ["azc-stroke-muted"],
|
|
159
|
+
selected: ["azc-stroke-selected"],
|
|
160
|
+
},
|
|
161
|
+
};
|
|
162
|
+
})(Main || (Main = {}));
|
|
163
|
+
return Main;
|
|
164
|
+
});
|