@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.

Files changed (111) hide show
  1. package/_generated/ClientResources.js +1549 -0
  2. package/_generated/Framework.js +97 -0
  3. package/_generated/Svg.js +201 -0
  4. package/bootstrapper/BreadcrumbsKnockoutBinding.js +25 -0
  5. package/bootstrapper/CSS/Callout.css +43 -0
  6. package/bootstrapper/CSS/Common.css +22 -0
  7. package/bootstrapper/CSS/FormFields.css +133 -0
  8. package/bootstrapper/CSS/InlineBlock.css +34 -0
  9. package/bootstrapper/CSS/ParameterGroups.css +77 -0
  10. package/bootstrapper/CSS/Pivot.css +25 -0
  11. package/bootstrapper/CSS/Wizard.css +197 -0
  12. package/bootstrapper/CalloutBinding.js +52 -0
  13. package/bootstrapper/CollapsibleKnockoutBinding.js +70 -0
  14. package/bootstrapper/CopyBinding.js +150 -0
  15. package/bootstrapper/FilterFlyoutKnockoutBinding.js +114 -0
  16. package/bootstrapper/FormFields.js +397 -0
  17. package/bootstrapper/InlineBlockBinding.js +69 -0
  18. package/bootstrapper/JQueryUIBindings.js +152 -0
  19. package/bootstrapper/KnockoutBindings.js +635 -0
  20. package/bootstrapper/LoadingBinding.js +54 -0
  21. package/bootstrapper/MonacoEditorKnockoutBinding.js +67 -0
  22. package/bootstrapper/ParameterGroupsBinding.js +289 -0
  23. package/bootstrapper/PivotKnockoutBinding.js +61 -0
  24. package/bootstrapper/StatusCalendarFlyoutKnockoutBinding.js +398 -0
  25. package/bootstrapper/StatusCalendarKnockoutBinding.js +107 -0
  26. package/bootstrapper/TelemetryKnockoutBinding.js +68 -0
  27. package/bootstrapper/WinJSButtonKnockoutBinding.js +72 -0
  28. package/bootstrapper/WinJSKnockoutBindings.js +49 -0
  29. package/bootstrapper/WizardBinding.js +611 -0
  30. package/bootstrapper/startup.js +29 -0
  31. package/libs/VivaGraphControl/Content/CSS/Graph.css +157 -0
  32. package/libs/VivaGraphControl/Content/CSS/LightTheme.css +699 -0
  33. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Base/Base.TriggerableLifetimeManager.js +190 -0
  34. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Base.js +647 -0
  35. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Image.js +113 -0
  36. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/KnockoutExtensions.js +1064 -0
  37. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/DockedBalloon.js +18 -0
  38. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Animation.js +192 -0
  39. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Commands/MoveNodes.js +83 -0
  40. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Geometry.js +167 -0
  41. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphEntityViewModel.js +260 -0
  42. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphViewModel.js +338 -0
  43. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.Constants.js +178 -0
  44. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.js +5190 -0
  45. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/MouseCapture.js +148 -0
  46. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js +164 -0
  47. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Detection.js +658 -0
  48. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Resize.js +241 -0
  49. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.Private.js +236 -0
  50. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.js +905 -0
  51. package/libs/WinJS/WinJs.min.js +61909 -0
  52. package/libs/WinJS/ui-light.css +8500 -0
  53. package/package.json +15 -0
  54. package/scripts/AppContext.js +262 -0
  55. package/scripts/ExposureControl.js +11 -0
  56. package/scripts/Framework/Model/ActivityWindowCache.js +390 -0
  57. package/scripts/Framework/Model/ArmDataFactoryCache.js +77 -0
  58. package/scripts/Framework/Model/Contracts/Activity.js +83 -0
  59. package/scripts/Framework/Model/Contracts/ActivityWindow.js +185 -0
  60. package/scripts/Framework/Model/Contracts/BaseEncodable.js +106 -0
  61. package/scripts/Framework/Model/Contracts/Common.js +19 -0
  62. package/scripts/Framework/Model/Contracts/DataArtifact.js +100 -0
  63. package/scripts/Framework/Model/Contracts/Diagram.js +9 -0
  64. package/scripts/Framework/Model/Contracts/Encodable.js +113 -0
  65. package/scripts/Framework/Model/Contracts/Gateway.js +98 -0
  66. package/scripts/Framework/Model/Contracts/LinkedService.js +200 -0
  67. package/scripts/Framework/Model/Contracts/Pipeline.js +197 -0
  68. package/scripts/Framework/Model/DataCache.js +105 -0
  69. package/scripts/Framework/Model/DataFactoryCache.js +24 -0
  70. package/scripts/Framework/Model/Filter.js +186 -0
  71. package/scripts/Framework/Model/Helpers/ActivityWindowHelper.js +185 -0
  72. package/scripts/Framework/Model/MonitoringView.js +40 -0
  73. package/scripts/Framework/Shared/Constants.js +27 -0
  74. package/scripts/Framework/Shared/DataConstants.js +61 -0
  75. package/scripts/Framework/Shared/Disposable.js +53 -0
  76. package/scripts/Framework/Shared/IconResources.js +59 -0
  77. package/scripts/Framework/Shared/Resources/IbizaSvgs.js +241 -0
  78. package/scripts/Framework/Shared/TypeDeclarations.js +4 -0
  79. package/scripts/Framework/Telemetry/Telemetry.js +78 -0
  80. package/scripts/Framework/UI/Breadcrumbs.js +84 -0
  81. package/scripts/Framework/UI/Command.js +231 -0
  82. package/scripts/Framework/UI/ContextMenu.js +80 -0
  83. package/scripts/Framework/UI/Loader.js +11 -0
  84. package/scripts/Framework/UI/Menu.js +65 -0
  85. package/scripts/Framework/UI/PanelMessage.js +25 -0
  86. package/scripts/Framework/UI/Refresh.js +70 -0
  87. package/scripts/Framework/UI/Spinner.js +61 -0
  88. package/scripts/Framework/UI/StatusCalendar.js +1070 -0
  89. package/scripts/Framework/UI/Toolbar.js +84 -0
  90. package/scripts/Framework/Util/Datetime.js +258 -0
  91. package/scripts/Framework/Util/Log.js +10 -0
  92. package/scripts/Framework/Util/ResourceIdUtil.js +56 -0
  93. package/scripts/Framework/Util/Security.js +73 -0
  94. package/scripts/Framework/Util/Util.js +332 -0
  95. package/scripts/Framework/Views/HoverFlyout.js +92 -0
  96. package/scripts/Handlers/ErrorHandler.js +176 -0
  97. package/scripts/Handlers/MessageHandler.js +115 -0
  98. package/scripts/Handlers/MonitoringViewHandler.js +199 -0
  99. package/scripts/Handlers/RoutingHandler.js +364 -0
  100. package/scripts/Handlers/WinJSHandlers.js +265 -0
  101. package/scripts/MonitoringViewContext.js +75 -0
  102. package/scripts/Services/AzureInsightsService.js +162 -0
  103. package/scripts/Services/AzureResourceManagerService.js +869 -0
  104. package/scripts/Services/BaseService.js +232 -0
  105. package/scripts/Services/DataFactoryService.js +204 -0
  106. package/scripts/Services/HDInsightArmService.js +59 -0
  107. package/scripts/ViewContext.js +9 -0
  108. package/stylesheets/main.css +1042 -0
  109. package/views/Edit/DateTimeFilterViewModel.js +211 -0
  110. package/views/Edit/FilterViewModel.js +131 -0
  111. package/views/Shared/ProvisioningState.js +11 -0
@@ -0,0 +1,97 @@
1
+ define([
2
+ "require",
3
+ "exports",
4
+ "../scripts/Framework/Model/ActivityWindowCache",
5
+ "../scripts/Framework/Model/ArmDataFactoryCache",
6
+ "../scripts/Framework/Model/DataCache",
7
+ "../scripts/Framework/Model/DataFactoryCache",
8
+ "../scripts/Framework/Model/Filter",
9
+ "../scripts/Framework/Model/MonitoringView",
10
+ "../scripts/Framework/Shared/Constants",
11
+ "../scripts/Framework/Shared/DataConstants",
12
+ "../scripts/Framework/Shared/Disposable",
13
+ "../scripts/Framework/Shared/IconResources",
14
+ "../scripts/Framework/Shared/TypeDeclarations",
15
+ "../scripts/Framework/Telemetry/Telemetry",
16
+ "../scripts/Framework/UI/Breadcrumbs",
17
+ "../scripts/Framework/UI/Command",
18
+ "../scripts/Framework/UI/ContextMenu",
19
+ "../scripts/Framework/UI/Loader",
20
+ "../scripts/Framework/UI/Menu",
21
+ "../scripts/Framework/UI/PanelMessage",
22
+ "../scripts/Framework/UI/Refresh",
23
+ "../scripts/Framework/UI/Spinner",
24
+ "../scripts/Framework/UI/StatusCalendar",
25
+ "../scripts/Framework/UI/Toolbar",
26
+ "../scripts/Framework/Util/Datetime",
27
+ "../scripts/Framework/Util/Log",
28
+ "../scripts/Framework/Util/ResourceIdUtil",
29
+ "../scripts/Framework/Util/Security",
30
+ "../scripts/Framework/Util/Util",
31
+ "../scripts/Framework/Views/HoverFlyout",
32
+ "./Svg",
33
+ ], function (
34
+ require,
35
+ exports,
36
+ ActivityWindowCache,
37
+ ArmDataFactoryCache,
38
+ DataCache,
39
+ DataFactoryCache,
40
+ Filter,
41
+ MonitoringView,
42
+ Constants,
43
+ DataConstants,
44
+ Disposable,
45
+ IconResources,
46
+ TypeDeclarations,
47
+ Telemetry,
48
+ Breadcrumbs,
49
+ Command,
50
+ ContextMenu,
51
+ Loader,
52
+ Menu,
53
+ PanelMessage,
54
+ Refresh,
55
+ Spinner,
56
+ StatusCalendar,
57
+ Toolbar,
58
+ Datetime,
59
+ Log,
60
+ ResourceIdUtil,
61
+ Security,
62
+ Util,
63
+ HoverFlyout,
64
+ Svg
65
+ ) {
66
+ "use strict";
67
+ exports.ActivityWindowCache = ActivityWindowCache;
68
+ exports.ArmDataFactoryCache = ArmDataFactoryCache;
69
+ exports.DataCache = DataCache;
70
+ exports.DataFactoryCache = DataFactoryCache;
71
+ exports.Filter = Filter;
72
+ exports.MonitoringView = MonitoringView;
73
+ exports.Constants = Constants;
74
+ exports.DataConstants = DataConstants;
75
+ exports.Disposable = Disposable;
76
+ exports.IconResources = IconResources;
77
+ exports.TypeDeclarations = TypeDeclarations;
78
+ exports.Telemetry = Telemetry;
79
+ exports.Breadcrumbs = Breadcrumbs;
80
+ exports.Command = Command;
81
+ exports.ContextMenu = ContextMenu;
82
+ exports.Loader = Loader;
83
+ exports.Menu = Menu;
84
+ exports.PanelMessage = PanelMessage;
85
+ exports.Refresh = Refresh;
86
+ exports.Spinner = Spinner;
87
+ exports.StatusCalendar = StatusCalendar;
88
+ exports.Toolbar = Toolbar;
89
+ exports.Datetime = Datetime;
90
+ exports.Log = Log;
91
+ exports.ResourceIdUtil = ResourceIdUtil;
92
+ exports.Security = Security;
93
+ exports.Util = Util;
94
+ exports.HoverFlyout = HoverFlyout;
95
+ exports.Svg = Svg;
96
+ });
97
+ //# sourceMappingURL=Framework.js.map
@@ -0,0 +1,201 @@
1
+ define([
2
+ "require",
3
+ "exports",
4
+ "text!../scripts/Framework/Shared/Resources/Svg/active.svg",
5
+ "text!../scripts/Framework/Shared/Resources/Svg/activity.svg",
6
+ "text!../scripts/Framework/Shared/Resources/Svg/activity_windows.svg",
7
+ "text!../scripts/Framework/Shared/Resources/Svg/alerts.svg",
8
+ "text!../scripts/Framework/Shared/Resources/Svg/alert_error.svg",
9
+ "text!../scripts/Framework/Shared/Resources/Svg/alert_info.svg",
10
+ "text!../scripts/Framework/Shared/Resources/Svg/alert_warning.svg",
11
+ "text!../scripts/Framework/Shared/Resources/Svg/align.svg",
12
+ "text!../scripts/Framework/Shared/Resources/Svg/arrow_down.svg",
13
+ "text!../scripts/Framework/Shared/Resources/Svg/arrow_up.svg",
14
+ "text!../scripts/Framework/Shared/Resources/Svg/authoring.svg",
15
+ "text!../scripts/Framework/Shared/Resources/Svg/autoLayout.svg",
16
+ "text!../scripts/Framework/Shared/Resources/Svg/azureBlob.svg",
17
+ "text!../scripts/Framework/Shared/Resources/Svg/azureCosmosDB.svg",
18
+ "text!../scripts/Framework/Shared/Resources/Svg/azureDataLake.svg",
19
+ "text!../scripts/Framework/Shared/Resources/Svg/azureMLActivity.svg",
20
+ "text!../scripts/Framework/Shared/Resources/Svg/azureSearch.svg",
21
+ "text!../scripts/Framework/Shared/Resources/Svg/azureSql.svg",
22
+ "text!../scripts/Framework/Shared/Resources/Svg/azureSqlDW.svg",
23
+ "text!../scripts/Framework/Shared/Resources/Svg/back.svg",
24
+ "text!../scripts/Framework/Shared/Resources/Svg/back_arrow.svg",
25
+ "text!../scripts/Framework/Shared/Resources/Svg/blue_plus.svg",
26
+ "text!../scripts/Framework/Shared/Resources/Svg/caret_down.svg",
27
+ "text!../scripts/Framework/Shared/Resources/Svg/caret_downright.svg",
28
+ "text!../scripts/Framework/Shared/Resources/Svg/caret_left.svg",
29
+ "text!../scripts/Framework/Shared/Resources/Svg/caret_right.svg",
30
+ "text!../scripts/Framework/Shared/Resources/Svg/caret_up.svg",
31
+ "text!../scripts/Framework/Shared/Resources/Svg/close.svg",
32
+ "text!../scripts/Framework/Shared/Resources/Svg/code.svg",
33
+ "text!../scripts/Framework/Shared/Resources/Svg/collapseDown.svg",
34
+ "text!../scripts/Framework/Shared/Resources/Svg/collapseUp.svg",
35
+ "text!../scripts/Framework/Shared/Resources/Svg/comment.svg",
36
+ "text!../scripts/Framework/Shared/Resources/Svg/copy.svg",
37
+ "text!../scripts/Framework/Shared/Resources/Svg/copyActivity.svg",
38
+ "text!../scripts/Framework/Shared/Resources/Svg/dashboard.svg",
39
+ "text!../scripts/Framework/Shared/Resources/Svg/database.svg",
40
+ "text!../scripts/Framework/Shared/Resources/Svg/del.svg",
41
+ "text!../scripts/Framework/Shared/Resources/Svg/download.svg",
42
+ "text!../scripts/Framework/Shared/Resources/Svg/edit.svg",
43
+ "text!../scripts/Framework/Shared/Resources/Svg/file.svg",
44
+ "text!../scripts/Framework/Shared/Resources/Svg/filter.svg",
45
+ "text!../scripts/Framework/Shared/Resources/Svg/filter_clear_all.svg",
46
+ "text!../scripts/Framework/Shared/Resources/Svg/ftp.svg",
47
+ "text!../scripts/Framework/Shared/Resources/Svg/gripper.svg",
48
+ "text!../scripts/Framework/Shared/Resources/Svg/hadoop.svg",
49
+ "text!../scripts/Framework/Shared/Resources/Svg/hiveActivity.svg",
50
+ "text!../scripts/Framework/Shared/Resources/Svg/info.svg",
51
+ "text!../scripts/Framework/Shared/Resources/Svg/leftarrow.svg",
52
+ "text!../scripts/Framework/Shared/Resources/Svg/lineageDisplay.svg",
53
+ "text!../scripts/Framework/Shared/Resources/Svg/lock.svg",
54
+ "text!../scripts/Framework/Shared/Resources/Svg/logs.svg",
55
+ "text!../scripts/Framework/Shared/Resources/Svg/monitoring.svg",
56
+ "text!../scripts/Framework/Shared/Resources/Svg/monitor_views.svg",
57
+ "text!../scripts/Framework/Shared/Resources/Svg/node_arrow.svg",
58
+ "text!../scripts/Framework/Shared/Resources/Svg/node_input.svg",
59
+ "text!../scripts/Framework/Shared/Resources/Svg/node_output.svg",
60
+ "text!../scripts/Framework/Shared/Resources/Svg/odata.svg",
61
+ "text!../scripts/Framework/Shared/Resources/Svg/pause.svg",
62
+ "text!../scripts/Framework/Shared/Resources/Svg/pin_off.svg",
63
+ "text!../scripts/Framework/Shared/Resources/Svg/pin_on.svg",
64
+ "text!../scripts/Framework/Shared/Resources/Svg/progressRing.svg",
65
+ "text!../scripts/Framework/Shared/Resources/Svg/properties.svg",
66
+ "text!../scripts/Framework/Shared/Resources/Svg/refresh.svg",
67
+ "text!../scripts/Framework/Shared/Resources/Svg/rerun.svg",
68
+ "text!../scripts/Framework/Shared/Resources/Svg/resource_explorer.svg",
69
+ "text!../scripts/Framework/Shared/Resources/Svg/resume.svg",
70
+ "text!../scripts/Framework/Shared/Resources/Svg/rightarrow.svg",
71
+ "text!../scripts/Framework/Shared/Resources/Svg/salesforce.svg",
72
+ "text!../scripts/Framework/Shared/Resources/Svg/scriptFile.svg",
73
+ "text!../scripts/Framework/Shared/Resources/Svg/selectionMode.svg",
74
+ "text!../scripts/Framework/Shared/Resources/Svg/sort_down.svg",
75
+ "text!../scripts/Framework/Shared/Resources/Svg/sort_up.svg",
76
+ "text!../scripts/Framework/Shared/Resources/Svg/sqlOnPrem.svg",
77
+ "text!../scripts/Framework/Shared/Resources/Svg/sql_table.svg",
78
+ "text!../scripts/Framework/Shared/Resources/Svg/sql_view.svg",
79
+ "text!../scripts/Framework/Shared/Resources/Svg/statusFailed.svg",
80
+ "text!../scripts/Framework/Shared/Resources/Svg/statusInProgress.svg",
81
+ "text!../scripts/Framework/Shared/Resources/Svg/statusNone.svg",
82
+ "text!../scripts/Framework/Shared/Resources/Svg/statusReady.svg",
83
+ "text!../scripts/Framework/Shared/Resources/Svg/statusSkipped.svg",
84
+ "text!../scripts/Framework/Shared/Resources/Svg/statusStarting.svg",
85
+ "text!../scripts/Framework/Shared/Resources/Svg/statusWaiting.svg",
86
+ "text!../scripts/Framework/Shared/Resources/Svg/status_warning.svg",
87
+ "text!../scripts/Framework/Shared/Resources/Svg/stop.svg",
88
+ "text!../scripts/Framework/Shared/Resources/Svg/storedProcedureActivity.svg",
89
+ "text!../scripts/Framework/Shared/Resources/Svg/submit.svg",
90
+ "text!../scripts/Framework/Shared/Resources/Svg/table.svg",
91
+ "text!../scripts/Framework/Shared/Resources/Svg/tableSummary.svg",
92
+ "text!../scripts/Framework/Shared/Resources/Svg/toggle_off.svg",
93
+ "text!../scripts/Framework/Shared/Resources/Svg/toggle_on.svg",
94
+ "text!../scripts/Framework/Shared/Resources/Svg/toolbox.svg",
95
+ "text!../scripts/Framework/Shared/Resources/Svg/web.svg",
96
+ "text!../scripts/Framework/Shared/Resources/Svg/webApp.svg",
97
+ "text!../scripts/Framework/Shared/Resources/Svg/zoomIn.svg",
98
+ "text!../scripts/Framework/Shared/Resources/Svg/zoomOut.svg",
99
+ "text!../scripts/Framework/Shared/Resources/Svg/zoomTo100.svg",
100
+ "text!../scripts/Framework/Shared/Resources/Svg/zoomToFit.svg",
101
+ ], function (require, exports) {
102
+ "use strict";
103
+ exports.active = require("text!../scripts/Framework/Shared/Resources/Svg/active.svg");
104
+ exports.activity = require("text!../scripts/Framework/Shared/Resources/Svg/activity.svg");
105
+ exports.activity_windows = require("text!../scripts/Framework/Shared/Resources/Svg/activity_windows.svg");
106
+ exports.alerts = require("text!../scripts/Framework/Shared/Resources/Svg/alerts.svg");
107
+ exports.alert_error = require("text!../scripts/Framework/Shared/Resources/Svg/alert_error.svg");
108
+ exports.alert_info = require("text!../scripts/Framework/Shared/Resources/Svg/alert_info.svg");
109
+ exports.alert_warning = require("text!../scripts/Framework/Shared/Resources/Svg/alert_warning.svg");
110
+ exports.align = require("text!../scripts/Framework/Shared/Resources/Svg/align.svg");
111
+ exports.arrow_down = require("text!../scripts/Framework/Shared/Resources/Svg/arrow_down.svg");
112
+ exports.arrow_up = require("text!../scripts/Framework/Shared/Resources/Svg/arrow_up.svg");
113
+ exports.authoring = require("text!../scripts/Framework/Shared/Resources/Svg/authoring.svg");
114
+ exports.autoLayout = require("text!../scripts/Framework/Shared/Resources/Svg/autoLayout.svg");
115
+ exports.azureBlob = require("text!../scripts/Framework/Shared/Resources/Svg/azureBlob.svg");
116
+ exports.azureCosmosDB = require("text!../scripts/Framework/Shared/Resources/Svg/azureCosmosDB.svg");
117
+ exports.azureDataLake = require("text!../scripts/Framework/Shared/Resources/Svg/azureDataLake.svg");
118
+ exports.azureMLActivity = require("text!../scripts/Framework/Shared/Resources/Svg/azureMLActivity.svg");
119
+ exports.azureSearch = require("text!../scripts/Framework/Shared/Resources/Svg/azureSearch.svg");
120
+ exports.azureSql = require("text!../scripts/Framework/Shared/Resources/Svg/azureSql.svg");
121
+ exports.azureSqlDW = require("text!../scripts/Framework/Shared/Resources/Svg/azureSqlDW.svg");
122
+ exports.back = require("text!../scripts/Framework/Shared/Resources/Svg/back.svg");
123
+ exports.back_arrow = require("text!../scripts/Framework/Shared/Resources/Svg/back_arrow.svg");
124
+ exports.blue_plus = require("text!../scripts/Framework/Shared/Resources/Svg/blue_plus.svg");
125
+ exports.caret_down = require("text!../scripts/Framework/Shared/Resources/Svg/caret_down.svg");
126
+ exports.caret_downright = require("text!../scripts/Framework/Shared/Resources/Svg/caret_downright.svg");
127
+ exports.caret_left = require("text!../scripts/Framework/Shared/Resources/Svg/caret_left.svg");
128
+ exports.caret_right = require("text!../scripts/Framework/Shared/Resources/Svg/caret_right.svg");
129
+ exports.caret_up = require("text!../scripts/Framework/Shared/Resources/Svg/caret_up.svg");
130
+ exports.close = require("text!../scripts/Framework/Shared/Resources/Svg/close.svg");
131
+ exports.code = require("text!../scripts/Framework/Shared/Resources/Svg/code.svg");
132
+ exports.collapseDown = require("text!../scripts/Framework/Shared/Resources/Svg/collapseDown.svg");
133
+ exports.collapseUp = require("text!../scripts/Framework/Shared/Resources/Svg/collapseUp.svg");
134
+ exports.comment = require("text!../scripts/Framework/Shared/Resources/Svg/comment.svg");
135
+ exports.copy = require("text!../scripts/Framework/Shared/Resources/Svg/copy.svg");
136
+ exports.copyActivity = require("text!../scripts/Framework/Shared/Resources/Svg/copyActivity.svg");
137
+ exports.dashboard = require("text!../scripts/Framework/Shared/Resources/Svg/dashboard.svg");
138
+ exports.database = require("text!../scripts/Framework/Shared/Resources/Svg/database.svg");
139
+ exports.del = require("text!../scripts/Framework/Shared/Resources/Svg/del.svg");
140
+ exports.download = require("text!../scripts/Framework/Shared/Resources/Svg/download.svg");
141
+ exports.edit = require("text!../scripts/Framework/Shared/Resources/Svg/edit.svg");
142
+ exports.file = require("text!../scripts/Framework/Shared/Resources/Svg/file.svg");
143
+ exports.filter = require("text!../scripts/Framework/Shared/Resources/Svg/filter.svg");
144
+ exports.filter_clear_all = require("text!../scripts/Framework/Shared/Resources/Svg/filter_clear_all.svg");
145
+ exports.ftp = require("text!../scripts/Framework/Shared/Resources/Svg/ftp.svg");
146
+ exports.gripper = require("text!../scripts/Framework/Shared/Resources/Svg/gripper.svg");
147
+ exports.hadoop = require("text!../scripts/Framework/Shared/Resources/Svg/hadoop.svg");
148
+ exports.hiveActivity = require("text!../scripts/Framework/Shared/Resources/Svg/hiveActivity.svg");
149
+ exports.info = require("text!../scripts/Framework/Shared/Resources/Svg/info.svg");
150
+ exports.leftarrow = require("text!../scripts/Framework/Shared/Resources/Svg/leftarrow.svg");
151
+ exports.lineageDisplay = require("text!../scripts/Framework/Shared/Resources/Svg/lineageDisplay.svg");
152
+ exports.lock = require("text!../scripts/Framework/Shared/Resources/Svg/lock.svg");
153
+ exports.logs = require("text!../scripts/Framework/Shared/Resources/Svg/logs.svg");
154
+ exports.monitoring = require("text!../scripts/Framework/Shared/Resources/Svg/monitoring.svg");
155
+ exports.monitor_views = require("text!../scripts/Framework/Shared/Resources/Svg/monitor_views.svg");
156
+ exports.node_arrow = require("text!../scripts/Framework/Shared/Resources/Svg/node_arrow.svg");
157
+ exports.node_input = require("text!../scripts/Framework/Shared/Resources/Svg/node_input.svg");
158
+ exports.node_output = require("text!../scripts/Framework/Shared/Resources/Svg/node_output.svg");
159
+ exports.odata = require("text!../scripts/Framework/Shared/Resources/Svg/odata.svg");
160
+ exports.pause = require("text!../scripts/Framework/Shared/Resources/Svg/pause.svg");
161
+ exports.pin_off = require("text!../scripts/Framework/Shared/Resources/Svg/pin_off.svg");
162
+ exports.pin_on = require("text!../scripts/Framework/Shared/Resources/Svg/pin_on.svg");
163
+ exports.progressRing = require("text!../scripts/Framework/Shared/Resources/Svg/progressRing.svg");
164
+ exports.properties = require("text!../scripts/Framework/Shared/Resources/Svg/properties.svg");
165
+ exports.refresh = require("text!../scripts/Framework/Shared/Resources/Svg/refresh.svg");
166
+ exports.rerun = require("text!../scripts/Framework/Shared/Resources/Svg/rerun.svg");
167
+ exports.resource_explorer = require("text!../scripts/Framework/Shared/Resources/Svg/resource_explorer.svg");
168
+ exports.resume = require("text!../scripts/Framework/Shared/Resources/Svg/resume.svg");
169
+ exports.rightarrow = require("text!../scripts/Framework/Shared/Resources/Svg/rightarrow.svg");
170
+ exports.salesforce = require("text!../scripts/Framework/Shared/Resources/Svg/salesforce.svg");
171
+ exports.scriptFile = require("text!../scripts/Framework/Shared/Resources/Svg/scriptFile.svg");
172
+ exports.selectionMode = require("text!../scripts/Framework/Shared/Resources/Svg/selectionMode.svg");
173
+ exports.sort_down = require("text!../scripts/Framework/Shared/Resources/Svg/sort_down.svg");
174
+ exports.sort_up = require("text!../scripts/Framework/Shared/Resources/Svg/sort_up.svg");
175
+ exports.sqlOnPrem = require("text!../scripts/Framework/Shared/Resources/Svg/sqlOnPrem.svg");
176
+ exports.sql_table = require("text!../scripts/Framework/Shared/Resources/Svg/sql_table.svg");
177
+ exports.sql_view = require("text!../scripts/Framework/Shared/Resources/Svg/sql_view.svg");
178
+ exports.statusFailed = require("text!../scripts/Framework/Shared/Resources/Svg/statusFailed.svg");
179
+ exports.statusInProgress = require("text!../scripts/Framework/Shared/Resources/Svg/statusInProgress.svg");
180
+ exports.statusNone = require("text!../scripts/Framework/Shared/Resources/Svg/statusNone.svg");
181
+ exports.statusReady = require("text!../scripts/Framework/Shared/Resources/Svg/statusReady.svg");
182
+ exports.statusSkipped = require("text!../scripts/Framework/Shared/Resources/Svg/statusSkipped.svg");
183
+ exports.statusStarting = require("text!../scripts/Framework/Shared/Resources/Svg/statusStarting.svg");
184
+ exports.statusWaiting = require("text!../scripts/Framework/Shared/Resources/Svg/statusWaiting.svg");
185
+ exports.status_warning = require("text!../scripts/Framework/Shared/Resources/Svg/status_warning.svg");
186
+ exports.stop = require("text!../scripts/Framework/Shared/Resources/Svg/stop.svg");
187
+ exports.storedProcedureActivity = require("text!../scripts/Framework/Shared/Resources/Svg/storedProcedureActivity.svg");
188
+ exports.submit = require("text!../scripts/Framework/Shared/Resources/Svg/submit.svg");
189
+ exports.table = require("text!../scripts/Framework/Shared/Resources/Svg/table.svg");
190
+ exports.tableSummary = require("text!../scripts/Framework/Shared/Resources/Svg/tableSummary.svg");
191
+ exports.toggle_off = require("text!../scripts/Framework/Shared/Resources/Svg/toggle_off.svg");
192
+ exports.toggle_on = require("text!../scripts/Framework/Shared/Resources/Svg/toggle_on.svg");
193
+ exports.toolbox = require("text!../scripts/Framework/Shared/Resources/Svg/toolbox.svg");
194
+ exports.web = require("text!../scripts/Framework/Shared/Resources/Svg/web.svg");
195
+ exports.webApp = require("text!../scripts/Framework/Shared/Resources/Svg/webApp.svg");
196
+ exports.zoomIn = require("text!../scripts/Framework/Shared/Resources/Svg/zoomIn.svg");
197
+ exports.zoomOut = require("text!../scripts/Framework/Shared/Resources/Svg/zoomOut.svg");
198
+ exports.zoomTo100 = require("text!../scripts/Framework/Shared/Resources/Svg/zoomTo100.svg");
199
+ exports.zoomToFit = require("text!../scripts/Framework/Shared/Resources/Svg/zoomToFit.svg");
200
+ });
201
+ //# sourceMappingURL=Svg.js.map
@@ -0,0 +1,25 @@
1
+ define(["require", "exports", "text!./Templates/Breadcrumbs.html"], function (
2
+ require,
3
+ exports,
4
+ template
5
+ ) {
6
+ "use strict";
7
+ var BreadcrumbKnockoutBinding = (function () {
8
+ function BreadcrumbKnockoutBinding() {}
9
+ BreadcrumbKnockoutBinding.prototype.init = function (
10
+ element,
11
+ valueAccessor,
12
+ allBindingsAccessor,
13
+ viewModel,
14
+ bindingContext
15
+ ) {
16
+ element.innerHTML = template;
17
+ ko.applyBindingsToDescendants(valueAccessor(), element);
18
+ return { controlsDescendantBindings: true };
19
+ };
20
+ BreadcrumbKnockoutBinding.className = "breadcrumbs";
21
+ return BreadcrumbKnockoutBinding;
22
+ })();
23
+ exports.BreadcrumbKnockoutBinding = BreadcrumbKnockoutBinding;
24
+ });
25
+ //# sourceMappingURL=BreadcrumbsKnockoutBinding.js.map
@@ -0,0 +1,43 @@
1
+ div#adf-callout.win-flyout {
2
+ background-color: #343a41;
3
+ color: white;
4
+ overflow: visible;
5
+ margin: 10px;
6
+ border: none;
7
+ }
8
+ div#adf-callout.win-flyout a {
9
+ color: blue;
10
+ }
11
+ div#adf-callout.win-flyout #adf-callout-svg.left > svg {
12
+ left: -10px;
13
+ top: 0;
14
+ bottom: 0;
15
+ margin-top: auto;
16
+ margin-bottom: auto;
17
+ }
18
+ div#adf-callout.win-flyout #adf-callout-svg.right > svg {
19
+ right: -10px;
20
+ top: 0;
21
+ bottom: 0;
22
+ margin-top: auto;
23
+ margin-bottom: auto;
24
+ }
25
+ div#adf-callout.win-flyout #adf-callout-svg.top > svg {
26
+ top: -10px;
27
+ left: 0;
28
+ right: 0;
29
+ margin-left: auto;
30
+ margin-right: auto;
31
+ }
32
+ div#adf-callout.win-flyout #adf-callout-svg.bottom > svg {
33
+ bottom: -10px;
34
+ left: 0;
35
+ right: 0;
36
+ margin-left: auto;
37
+ margin-right: auto;
38
+ }
39
+ div#adf-callout.win-flyout #adf-callout-svg svg {
40
+ position: absolute;
41
+ width: 30px;
42
+ height: 30px;
43
+ }
@@ -0,0 +1,22 @@
1
+ .validationImage {
2
+ width: 26px;
3
+ height: 26px;
4
+ float: left;
5
+ background-position: center;
6
+ background-repeat: no-repeat;
7
+ background-size: 16px 16px;
8
+ }
9
+ .validationImage.progresso {
10
+ background-image: url("../images/ProgressRing.svg");
11
+ -webkit-animation: spin 1s linear infinite;
12
+ animation: spin 1s linear infinite;
13
+ }
14
+ .validationImage.successo {
15
+ background-image: url("../images/StatusReady.svg");
16
+ }
17
+ .validationImage.failo {
18
+ background-image: url("../images/ErrorStatus.svg");
19
+ }
20
+ .validationImage.warningo {
21
+ background-image: url("../../scripts/Framework/Shared/Resources/Svg/status_warning.svg");
22
+ }
@@ -0,0 +1,133 @@
1
+ input[type="text"],
2
+ input[type="password"],
3
+ textarea,
4
+ select {
5
+ width: 360px;
6
+ color: #2c3137;
7
+ font-family: "Segoe UI";
8
+ font-size: 14px;
9
+ line-height: 16px;
10
+ margin-bottom: 0;
11
+ margin-top: 0;
12
+ background-color: white;
13
+ border-color: #bdbfc2;
14
+ border-width: 1px;
15
+ min-height: 0px;
16
+ }
17
+ input[type="text"]::-webkit-input-placeholder,
18
+ input[type="password"]::-webkit-input-placeholder,
19
+ textarea::-webkit-input-placeholder,
20
+ select::-webkit-input-placeholder {
21
+ color: #808387;
22
+ }
23
+ input[type="text"]::-moz-placeholder,
24
+ input[type="password"]::-moz-placeholder,
25
+ textarea::-moz-placeholder,
26
+ select::-moz-placeholder {
27
+ color: #808387;
28
+ }
29
+ input[type="text"]:-ms-input-placeholder,
30
+ input[type="password"]:-ms-input-placeholder,
31
+ textarea:-ms-input-placeholder,
32
+ select:-ms-input-placeholder {
33
+ color: #808387;
34
+ }
35
+ input[type="text"]::placeholder,
36
+ input[type="password"]::placeholder,
37
+ textarea::placeholder,
38
+ select::placeholder {
39
+ color: #808387;
40
+ }
41
+ input[type="text"]:focus,
42
+ input[type="password"]:focus,
43
+ textarea:focus,
44
+ select:focus {
45
+ border-color: #00b294;
46
+ }
47
+ input[type="text"]:hover,
48
+ input[type="password"]:hover,
49
+ textarea:hover,
50
+ select:hover {
51
+ border-color: #585a5f;
52
+ }
53
+ input[type="text"]:disabled,
54
+ input[type="password"]:disabled,
55
+ textarea:disabled,
56
+ select:disabled {
57
+ color: rgba(0, 0, 0, 0.5);
58
+ background-color: #d5d6d7;
59
+ }
60
+ input[type="text"],
61
+ input[type="password"],
62
+ textarea {
63
+ padding: 3px 8px 5px 8px;
64
+ }
65
+ select {
66
+ padding: 1px 8px 3px 8px;
67
+ }
68
+ input[type="radio"],
69
+ input[type="checkbox"] {
70
+ width: 15px;
71
+ height: 15px;
72
+ margin: 4px 8px 4px 4px;
73
+ position: relative;
74
+ top: 3px;
75
+ }
76
+ input[type="button"],
77
+ button {
78
+ min-width: 101px;
79
+ font-family: "Segoe UI";
80
+ font-size: 15px;
81
+ line-height: 16px;
82
+ height: 36px;
83
+ background-color: #f2f2f2;
84
+ }
85
+ input[type="button"]:hover,
86
+ button:hover {
87
+ background-color: #e6e6e6;
88
+ border-color: transparent;
89
+ }
90
+ .formFieldLabel {
91
+ margin-bottom: 4px;
92
+ color: #585a5f;
93
+ font-family: "Segoe UI";
94
+ font-size: 12px;
95
+ line-height: 16px;
96
+ }
97
+ .formFieldInputContainer .formFieldInput {
98
+ margin-bottom: 24px;
99
+ }
100
+ .formFieldHeaderContainer {
101
+ width: 360px;
102
+ }
103
+ .formFieldHeaderContainer .smallWidthField {
104
+ width: 220px;
105
+ }
106
+ .required {
107
+ color: red;
108
+ }
109
+ .infoImage {
110
+ float: right;
111
+ width: 16px;
112
+ height: 16px;
113
+ background-image: url("../images/Info.svg");
114
+ background-repeat: no-repeat;
115
+ background-size: 100% 100%;
116
+ margin-right: 3px;
117
+ }
118
+ .formFieldContainer .smallWidthField {
119
+ width: 220px;
120
+ }
121
+ .fieldLinkContainer {
122
+ width: 360px;
123
+ top: -23px;
124
+ float: left;
125
+ position: relative;
126
+ }
127
+ .fieldLink {
128
+ font-family: "Segoe UI";
129
+ font-size: 12px;
130
+ line-height: 16px;
131
+ color: #008272;
132
+ text-decoration: none;
133
+ }
@@ -0,0 +1,34 @@
1
+ .inlineBlockWrapper {
2
+ border-width: 1px 1px 1px 4px;
3
+ border-style: solid;
4
+ padding: 16px;
5
+ }
6
+ .blockIcon {
7
+ -ms-flex-item-align: center;
8
+ align-self: center;
9
+ width: 20px;
10
+ min-width: 20px;
11
+ height: 20px;
12
+ margin-right: 12px;
13
+ }
14
+ .blockMessage {
15
+ font-family: "Segoe UI";
16
+ font-size: 14px;
17
+ line-height: 20px;
18
+ white-space: pre-wrap;
19
+ }
20
+ .blockDismissal {
21
+ opacity: 0.6;
22
+ width: 12px;
23
+ height: 12px;
24
+ margin-left: auto;
25
+ -ms-flex-item-align: center;
26
+ align-self: center;
27
+ }
28
+ .blockDismissal:hover {
29
+ opacity: 1;
30
+ }
31
+ .blockDismissal svg {
32
+ width: 12px;
33
+ height: 12px;
34
+ }
@@ -0,0 +1,77 @@
1
+ .paramName {
2
+ width: 240px;
3
+ font-family: "Segoe UI";
4
+ font-size: 12px;
5
+ line-height: 16px;
6
+ }
7
+ .paramVal {
8
+ width: 220px;
9
+ height: 30px;
10
+ }
11
+ .paramHeader {
12
+ font-family: "Segoe UI Semibold";
13
+ font-size: 14px;
14
+ line-height: 16px;
15
+ margin-bottom: 12px;
16
+ }
17
+ .paramBag {
18
+ margin-bottom: 16px;
19
+ }
20
+ .paramRow {
21
+ height: 30px;
22
+ margin-bottom: 12px;
23
+ }
24
+ .paramSeparator {
25
+ border-right: 1px solid #d2d4d8;
26
+ margin-right: 28px;
27
+ height: 100%;
28
+ }
29
+ .paramDeleteButton {
30
+ background-image: url(../../scripts/Framework/Shared/Resources/Svg/del.svg);
31
+ height: 16px;
32
+ width: 16px;
33
+ background-repeat: no-repeat;
34
+ background-position: center;
35
+ margin-right: 10px;
36
+ margin-top: 7px;
37
+ margin-bottom: 7px;
38
+ margin-left: 12px;
39
+ }
40
+ .paramDeleteButton:hover {
41
+ background-color: rgba(0, 0, 0, 0.2);
42
+ }
43
+ body.datastudio button.paramAddButton,
44
+ button.paramAddButton,
45
+ .paramAddButton {
46
+ width: 60px;
47
+ height: 27px;
48
+ background-color: lightgray;
49
+ min-width: 0px;
50
+ min-height: 0px;
51
+ font-size: 0.8em;
52
+ padding-top: 2px;
53
+ padding-bottom: 2px;
54
+ margin-bottom: 24px;
55
+ }
56
+ body.datastudio button.paramAddButton:hover,
57
+ button.paramAddButton:hover,
58
+ .paramAddButton:hover {
59
+ background-color: darkgray;
60
+ }
61
+ .editableKeyParam {
62
+ height: 40px;
63
+ margin-right: 20px;
64
+ }
65
+ .addParamContainer {
66
+ float: left;
67
+ width: 388px;
68
+ }
69
+ .formFieldWithoutValidation .validationImage {
70
+ display: none;
71
+ }
72
+ .floatLeft {
73
+ float: left;
74
+ }
75
+ .paramGroupContainer {
76
+ height: 100%;
77
+ }
@@ -0,0 +1,25 @@
1
+ .pivotBindingContainer {
2
+ padding-left: 40px;
3
+ padding-top: 10px;
4
+ }
5
+ .pivotBindingSeparator {
6
+ height: 5px;
7
+ border-bottom: 1px solid #d2d4d8;
8
+ }
9
+ .pivotBindingHeaderContainer {
10
+ padding-left: 40px;
11
+ background-color: white;
12
+ z-index: 1;
13
+ }
14
+ .pivotBindingHeaderContainer .pivotHeader {
15
+ cursor: pointer;
16
+ border-bottom: 2px solid white;
17
+ margin: 0px 30px 8px 0px;
18
+ text-transform: uppercase;
19
+ padding: 30px 0 6px 0;
20
+ font-size: 13px;
21
+ font-weight: 600;
22
+ }
23
+ .pivotBindingHeaderContainer .pivotHeader.selected {
24
+ border-bottom: 2px solid #00b294;
25
+ }