@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,178 @@
|
|
|
1
|
+
define(["require", "exports"], function (require, exports) {
|
|
2
|
+
var Main;
|
|
3
|
+
(function (Main) {
|
|
4
|
+
"use strict";
|
|
5
|
+
Main.NodeEdgePadding = 7;
|
|
6
|
+
Main.SixtyFPS = 1000 / 60;
|
|
7
|
+
// Constraints
|
|
8
|
+
Main.PanPadding = 50;
|
|
9
|
+
Main.ZoomFactor = 1.1;
|
|
10
|
+
Main.MinScale = 0.2;
|
|
11
|
+
Main.MaxScale = 4;
|
|
12
|
+
Main.ZoomToFitPadding = 100;
|
|
13
|
+
// Animation
|
|
14
|
+
Main.AnimatedZoomDuration = 400;
|
|
15
|
+
Main.SnapAnimationDuration = 100;
|
|
16
|
+
Main.MoveAnimationDuration = 400;
|
|
17
|
+
Main.EscAnimationDuration = 200;
|
|
18
|
+
Main.UndoAnimationDuration = 400;
|
|
19
|
+
Main.RedoAnimationDuration = 400;
|
|
20
|
+
// Touch
|
|
21
|
+
Main.MinVelocity = 0.01;
|
|
22
|
+
Main.DoubleTapInterval = 300;
|
|
23
|
+
Main.InertiaFriction = 0.97;
|
|
24
|
+
Main.FeedbackAnimationDuration = 300;
|
|
25
|
+
Main.MaxFeedbackInertiaDistance = 200;
|
|
26
|
+
Main.FeedbackFriction = 0.5;
|
|
27
|
+
Main.MinFeedbackIntertiaVelocity = 1;
|
|
28
|
+
// Layout
|
|
29
|
+
Main.HoldDuration = 200;
|
|
30
|
+
Main.QueueMaxInteractiveLength = 5;
|
|
31
|
+
Main.DefaultSetNodeRectsOpts = {
|
|
32
|
+
clearUndo: false,
|
|
33
|
+
};
|
|
34
|
+
Main.Port = {
|
|
35
|
+
Width: 15,
|
|
36
|
+
HalfWidth: 15 / 2,
|
|
37
|
+
Height: 15,
|
|
38
|
+
HalfHeight: 15 / 2,
|
|
39
|
+
};
|
|
40
|
+
Main.Connector = {
|
|
41
|
+
SplinePointMax: Main.Port.Height * 15,
|
|
42
|
+
SplinePointMin: Main.Port.Height * 4,
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Actions the user can take on the graph control.
|
|
46
|
+
*/
|
|
47
|
+
(function (InteractionAction) {
|
|
48
|
+
/**
|
|
49
|
+
* The user double-clicked in a graph control using any mousebutton.
|
|
50
|
+
*/
|
|
51
|
+
InteractionAction[(InteractionAction["MouseDoubleClick"] = 0)] =
|
|
52
|
+
"MouseDoubleClick";
|
|
53
|
+
/**
|
|
54
|
+
* The user pressed any mouse button in the graph control (on an entity, the canvas, etc.)
|
|
55
|
+
*/
|
|
56
|
+
InteractionAction[(InteractionAction["MouseDown"] = 1)] = "MouseDown";
|
|
57
|
+
/**
|
|
58
|
+
* The user released any mouse button in the graph control (on an entity, the canvas, etc.)
|
|
59
|
+
*/
|
|
60
|
+
InteractionAction[(InteractionAction["MouseUp"] = 2)] = "MouseUp";
|
|
61
|
+
/**
|
|
62
|
+
* The user dragged the mouse.
|
|
63
|
+
*/
|
|
64
|
+
InteractionAction[(InteractionAction["MouseMove"] = 3)] = "MouseMove";
|
|
65
|
+
/**
|
|
66
|
+
* The user pressed the delete key.
|
|
67
|
+
*/
|
|
68
|
+
InteractionAction[(InteractionAction["DeleteKeyPressed"] = 4)] =
|
|
69
|
+
"DeleteKeyPressed";
|
|
70
|
+
/**
|
|
71
|
+
* The user pressed the escape key.
|
|
72
|
+
*/
|
|
73
|
+
InteractionAction[(InteractionAction["EscapeKeyPressed"] = 5)] =
|
|
74
|
+
"EscapeKeyPressed";
|
|
75
|
+
/**
|
|
76
|
+
* The user pressed the 'A' key while holding shift.
|
|
77
|
+
*/
|
|
78
|
+
InteractionAction[(InteractionAction["ShiftAPressed"] = 6)] =
|
|
79
|
+
"ShiftAPressed";
|
|
80
|
+
/**
|
|
81
|
+
* The user pressed F2.
|
|
82
|
+
*/
|
|
83
|
+
InteractionAction[(InteractionAction["F2KeyPressed"] = 7)] =
|
|
84
|
+
"F2KeyPressed";
|
|
85
|
+
/**
|
|
86
|
+
* The user pressed 'X' while holding control.
|
|
87
|
+
*/
|
|
88
|
+
InteractionAction[(InteractionAction["ControlXPressed"] = 8)] =
|
|
89
|
+
"ControlXPressed";
|
|
90
|
+
/**
|
|
91
|
+
* The user pressed the spacebar key
|
|
92
|
+
*/
|
|
93
|
+
InteractionAction[(InteractionAction["SpacebarDown"] = 9)] =
|
|
94
|
+
"SpacebarDown";
|
|
95
|
+
/**
|
|
96
|
+
* The user depressed the spacebar key.
|
|
97
|
+
*/
|
|
98
|
+
InteractionAction[(InteractionAction["SpacebarUp"] = 10)] = "SpacebarUp";
|
|
99
|
+
/**
|
|
100
|
+
* The user tapped an entity.
|
|
101
|
+
*/
|
|
102
|
+
InteractionAction[(InteractionAction["EntityTapped"] = 11)] =
|
|
103
|
+
"EntityTapped";
|
|
104
|
+
/**
|
|
105
|
+
* The user doubletapped a node.
|
|
106
|
+
*/
|
|
107
|
+
InteractionAction[(InteractionAction["NodeDoubleTapped"] = 12)] =
|
|
108
|
+
"NodeDoubleTapped";
|
|
109
|
+
/**
|
|
110
|
+
* The user dragged a node.
|
|
111
|
+
*/
|
|
112
|
+
InteractionAction[(InteractionAction["NodeDragged"] = 13)] =
|
|
113
|
+
"NodeDragged";
|
|
114
|
+
/**
|
|
115
|
+
* The user held a node.
|
|
116
|
+
*/
|
|
117
|
+
InteractionAction[(InteractionAction["NodeHeld"] = 14)] = "NodeHeld";
|
|
118
|
+
/**
|
|
119
|
+
* The user dragged the sceen.
|
|
120
|
+
*/
|
|
121
|
+
InteractionAction[(InteractionAction["ScreenDragged"] = 15)] =
|
|
122
|
+
"ScreenDragged";
|
|
123
|
+
/**
|
|
124
|
+
* The user pinched the screen.
|
|
125
|
+
*/
|
|
126
|
+
InteractionAction[(InteractionAction["ScreenPinched"] = 16)] =
|
|
127
|
+
"ScreenPinched";
|
|
128
|
+
/**
|
|
129
|
+
* The user swiped the screen.
|
|
130
|
+
*/
|
|
131
|
+
InteractionAction[(InteractionAction["ScreenSwiped"] = 17)] =
|
|
132
|
+
"ScreenSwiped";
|
|
133
|
+
/**
|
|
134
|
+
* The user held the screen.
|
|
135
|
+
*/
|
|
136
|
+
InteractionAction[(InteractionAction["ScreenHeld"] = 18)] = "ScreenHeld";
|
|
137
|
+
/**
|
|
138
|
+
* The user tapped the screen.
|
|
139
|
+
*/
|
|
140
|
+
InteractionAction[(InteractionAction["ScreenTapped"] = 19)] =
|
|
141
|
+
"ScreenTapped";
|
|
142
|
+
/**
|
|
143
|
+
* The user started a gesture.
|
|
144
|
+
*/
|
|
145
|
+
InteractionAction[(InteractionAction["GestureStarted"] = 20)] =
|
|
146
|
+
"GestureStarted";
|
|
147
|
+
/**
|
|
148
|
+
* The user ended a gesture.
|
|
149
|
+
*/
|
|
150
|
+
InteractionAction[(InteractionAction["GestureEnded"] = 21)] =
|
|
151
|
+
"GestureEnded";
|
|
152
|
+
})(Main.InteractionAction || (Main.InteractionAction = {}));
|
|
153
|
+
var InteractionAction = Main.InteractionAction;
|
|
154
|
+
/**
|
|
155
|
+
* What the user's drag intent is.
|
|
156
|
+
*/
|
|
157
|
+
(function (DraggingMode) {
|
|
158
|
+
/**
|
|
159
|
+
* The user is not currently dragging an entity.
|
|
160
|
+
*/
|
|
161
|
+
DraggingMode[(DraggingMode["None"] = 0)] = "None";
|
|
162
|
+
/**
|
|
163
|
+
* The user is moving graph nodes.
|
|
164
|
+
*/
|
|
165
|
+
DraggingMode[(DraggingMode["Entities"] = 1)] = "Entities";
|
|
166
|
+
/**
|
|
167
|
+
* The user is creating a connection.
|
|
168
|
+
*/
|
|
169
|
+
DraggingMode[(DraggingMode["Connection"] = 2)] = "Connection";
|
|
170
|
+
/**
|
|
171
|
+
* The user is dragging a selection rectangle.
|
|
172
|
+
*/
|
|
173
|
+
DraggingMode[(DraggingMode["SelectionRect"] = 3)] = "SelectionRect";
|
|
174
|
+
})(Main.DraggingMode || (Main.DraggingMode = {}));
|
|
175
|
+
var DraggingMode = Main.DraggingMode;
|
|
176
|
+
})(Main || (Main = {}));
|
|
177
|
+
return Main;
|
|
178
|
+
});
|