Maddy
ad36c1df3d
add wrap to the <pre> tag ( #5002 )
...
* add wrap to the <pre> tag
* removed styles for browser support
2019-04-11 15:32:52 -07:00
Anthony Dresser
a5b8924e2d
restore line height to account list renderer ( #4999 )
2019-04-11 15:10:38 -07:00
Anthony Dresser
bc898cc2c2
revert data explorer id to connections ( #5003 )
2019-04-11 15:10:26 -07:00
kisantia
1247b6e8eb
bump SQL Tools to 1.5.0-alpha.85 to get invalid dacpac version fix ( #5001 )
2019-04-11 13:53:45 -07:00
udeeshagautam
2111c3de1a
Fix for 4104 : Multiple consecutive spaces in query results cells are condensed into one ( #4983 )
...
* preserving spaces in query results - all beginning, trailing and middle spaces will be shown as is
* removing the change through formatting and replacing with css change formatting was leaving special char while removing nbsp
2019-04-11 13:45:10 -07:00
Aditya Bist
bcea1b66be
Added some usage details ( #4711 )
...
* added some details
* remove unused import
* added new metrics, removed churn
* merged master and code review comments
* code review comments
* normalized days to calendar days/weeks/months
* cleaned up code
* changed comment to start required check for PR
* fix failing test
* fix test
* removed null assignment
* fix null test script
2019-04-11 12:07:20 -07:00
Yurong He
4f8d14ed3e
Fix ##3479 ctrl+a select active cell output or preview markdown ( #4981 )
...
* Enable ctrl+a to select the output or markdown content when the cell is active
* Moved toggleUserSelect into ngOnChanges
* Resolve PR comments
2019-04-11 11:36:42 -07:00
Chris LaFreniere
442adfbbc3
Add New Notebook from Server Dashboard ( #4971 )
2019-04-11 10:15:45 -07:00
Aditya Bist
fe12233954
Azure extension changes ( #4987 )
...
* removed search box
* removed commented code
2019-04-11 09:44:43 -07:00
Anthony Dresser
c725f6f572
fix html structure of add account dialog ( #4988 )
2019-04-10 17:41:18 -07:00
Cory Rivera
1870d83081
Add additional error handling to Python installation for Notebooks ( #4891 )
...
* Also enabled integration tests for python installation.
2019-04-10 17:09:28 -07:00
Anthony Dresser
8315dacda4
Merge from vscode 31e03b8ffbb218a87e3941f2b63a249f061fe0e4 ( #4986 )
2019-04-10 16:29:23 -07:00
kisantia
18c54f41bd
remove unnecessary message that connection is needed ( #4982 )
2019-04-10 16:22:18 -07:00
Kevin Cunnane
293f9c22c4
Touchbar support for Run Cell, Run Query, Add Cell ( #4972 )
...
* Basic touchbar support
* Touchbar support for Run Cell, Run Query, Add Cell
- Add top 3 notebook commands
- Add top query command
Actions only appear on having active editor of expected type.
In order to make Notebook work as expected, added tabindex to support focusing
and hide outline to ensure it doesn't get weird blue outline on click
Note: does not have icons yet, which would be nice.
However can add in subsequent PR once this comes from UX.
2019-04-10 14:04:36 -07:00
Anthony Dresser
a74510544f
Remove rest of builder ( #4963 )
...
* removes more builder references
* remove builder from profiler
* formatting
* fix profiler dailog
* remove builder from oatuhdialog
* remove the rest of builder references
* formatting
2019-04-10 13:23:33 -07:00
Aditya Bist
9b053c50c2
Azure - icon change ( #4967 )
...
* changed icon and string
* changed add to servers icon
2019-04-10 13:20:43 -07:00
Chris LaFreniere
88712f46bf
Fix for relative markdown image paths ( #4889 )
...
* Fix for relative markdown image paths
* PR comments
2019-04-10 11:35:06 -07:00
Chris LaFreniere
d6df20b0e8
Notebooks: Potential Fix for "Notebook Provider does not Exist" Error ( #4848 )
...
* Fallback to SQL
* Fix providers not found issue
* await whenInstalledExtensionsRegistered
* PR comments
2019-04-10 11:34:46 -07:00
Chris LaFreniere
5dc37f7557
improve assert message ( #4968 )
2019-04-10 10:14:44 -07:00
Gene Lee
445d306586
Fixed Broken Notebook Preview ( #4895 )
2019-04-09 18:47:24 -07:00
Chris LaFreniere
d332ae1132
Fix to ensure that we rewrite spark ui links correctly ( #4962 )
2019-04-09 18:23:21 -07:00
Kevin Cunnane
37f45b10a3
Mitigate (but not fully fix) Run Cell from disconnected notebook ( #4960 )
...
This is a partial fix that lays groundwork for full "Prompt to connect" if a kernel needs a connection.
I am waiting on Yurong's refactoring of connection handling before doing any of the prompt work.
- Adds kernel metadata about whether a connection is required.
- For Jupyter, only Spark kernels are listed as requiring a connection
- If this is true and there's no active connection, will show notification and not call execute
In the future, this path will still be used if user is prompted to connect and cancels out.
The future change will be to inject a "connect" handler from notebook.component to the cell callback and use to set connection context
2019-04-09 17:45:05 -07:00
kisantia
d9b6ec0654
Add title for DiffEditor and fix SplitViewContainer ( #4961 )
...
* add option to have diff editor title
* fix component being undefined and splitter not showing
2019-04-09 16:41:32 -07:00
kisantia
f98428aea5
Add reverse color option to text diff editor ( #4826 )
...
* Add reverse color option to text diff editor
2019-04-09 16:26:41 -07:00
Gene Lee
b3be1d79cd
Add support for new endpoint key string 'gateway' ( #4954 )
2019-04-09 15:19:02 -07:00
Yurong He
ea8f885f05
Call getCurrentGlobalConnection like New Query to get the active connection context ( #4955 )
2019-04-09 15:15:36 -07:00
Kevin Cunnane
2de47c2a50
Fix #4930 Text cells are referred to as text and markdown in commands ( #4956 )
2019-04-09 14:20:29 -07:00
Kevin Cunnane
30b8e105f9
Fix #4893 New Notebook Can Open Existing Noteboon ( #4959 )
...
Add back check for textDocuments with same name, should've been there anyhow
On rehydration files show as text docs before clicking as only get
changed by customInputConverter code path.
We should look at this long term - ideally we'd update notebookDocuments
with correct values on initial start. #4958 opened to track this.
2019-04-09 14:11:10 -07:00
Kevin Cunnane
2a44fab8ba
Fix issue where mac launch often failed to attach ( #4957 )
...
- Timeout now matches the windows timeout value
2019-04-09 14:10:56 -07:00
Chris LaFreniere
6a06a99e46
Change pfs.rimraf call in insightsutils test ( #4921 )
2019-04-09 13:05:36 -07:00
Anthony Dresser
3670dfbebd
changes strings for data explorer ( #4946 )
2019-04-09 12:39:15 -07:00
kisantia
daf929ecc7
add splitViewContainer and diffEditor to ModelBuilder interface ( #4950 )
2019-04-09 11:45:21 -07:00
Anthony Dresser
f96a17c930
Remove unused code ( #4873 )
...
* removes unused features
* remove more unused code; formatting
* lock changes
* fix run issue
2019-04-09 02:00:51 -07:00
Anthony Dresser
2fb06e7f4f
Move notebooks to workbench ( #4888 )
...
* move notebooks under workbench
* fix style imports
2019-04-09 01:59:55 -07:00
Anthony Dresser
4ece9b0085
remove dispose of button listeners ( #4914 )
2019-04-09 01:08:56 -07:00
Anthony Dresser
a4bd31e96a
Removes Builder references from modal ( #4869 )
...
* remove builder from modal
* add more DOM methods
2019-04-09 00:28:52 -07:00
Anthony Dresser
8bdcc3267a
Code Layering dashboard ( #4883 )
...
* move dashboard to workbench
* revert xlf file changes
* 💄
* 💄
* add back removed functions
2019-04-09 00:26:57 -07:00
Takahito Yamatoya
9e9164c4ee
fix the format ( #4899 )
2019-04-08 19:56:44 -07:00
Alan Ren
5dc6a39652
Update readme.md ( #4907 )
2019-04-08 16:25:53 -07:00
kisantia
ada0966832
Add toolbar separator ( #4890 )
...
* Add option to add toolbar separator after toolbar component
2019-04-08 15:27:18 -07:00
Alan Ren
e6faef27ab
Alanren/integration setup ( #4871 )
...
* automate the setup and use akv to store values
* update readme.md
* get rid of the save to file part
* update readme
* add more messages
* fix the error
* fix some errors
* fix the readme
2019-04-08 15:11:38 -07:00
Anthony Dresser
acc27d0829
Code Layering Accounts ( #4882 )
...
* code layering for accounts
* formatting
* formatting
* formatting
2019-04-08 14:45:30 -07:00
Anthony Dresser
ab54f7bb45
remove builder references from some componnets ( #4868 )
2019-04-08 14:24:03 -07:00
Yurong He
88161cc37d
Fixed cancel connectionDialog from attach to shows dup "select connection" ( #4865 )
2019-04-08 14:06:46 -07:00
Anthony Dresser
0975e6834e
remove builder from taskswidget ( #4866 )
2019-04-08 13:28:23 -07:00
Anthony Dresser
22ec1d5f0a
Strict Null Checks, Builder Removal, Formatting ( #4849 )
...
* remove builder; more null checks
* null checks
* formatting
* wip
* fix dropdown themeing
* formatting
* formatting
* fix tests
* update what files are checked
* add code to help refresh bad nodes
2019-04-08 13:27:41 -07:00
udeeshagautam
01784dd186
Adding Diff view and Split view container as Model View Editor Components ( #4831 )
...
* intial code for diff view inside model view
* Adding basic Split View Container depending on Flex Layout
* Enabled resizing between top and bottom view
* cleaning up some of the sqlops references
* Adding height as per CR comment
2019-04-08 11:11:14 -07:00
Karl Burtram
02cf91c158
Remove broken VS Code test from merge ( #4887 )
2019-04-05 15:06:11 -07:00
Karl Burtram
0532346f4f
Merge from vscode 591842cc4b71958c81947b254924a215fe3edcbd ( #4886 )
2019-04-05 14:14:26 -07:00
Chris LaFreniere
657adafb7d
always serialize execution count ( #4864 )
2019-04-05 11:34:10 -07:00