mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Update product references from 'sqlops' to 'azdata' (#4259)
* Update extensions to use azdata * Switch core code to use azdata
This commit is contained in:
@@ -4,12 +4,12 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
import * as sqlops from 'sqlops';
|
||||
import * as azdata from 'azdata';
|
||||
|
||||
export abstract class WizardPageBase<T> {
|
||||
private _page: sqlops.window.WizardPage;
|
||||
private _page: azdata.window.WizardPage;
|
||||
|
||||
public get pageObject(): sqlops.window.WizardPage {
|
||||
public get pageObject(): azdata.window.WizardPage {
|
||||
return this._page;
|
||||
}
|
||||
|
||||
@@ -18,14 +18,14 @@ export abstract class WizardPageBase<T> {
|
||||
}
|
||||
|
||||
constructor(title: string, description: string, private _wizard: T) {
|
||||
this._page = sqlops.window.createWizardPage(title);
|
||||
this._page = azdata.window.createWizardPage(title);
|
||||
this._page.description = description;
|
||||
this._page.registerContent((view: sqlops.ModelView) => {
|
||||
this._page.registerContent((view: azdata.ModelView) => {
|
||||
return this.initialize(view);
|
||||
});
|
||||
}
|
||||
|
||||
protected abstract initialize(view: sqlops.ModelView): Thenable<void>;
|
||||
protected abstract initialize(view: azdata.ModelView): Thenable<void>;
|
||||
|
||||
public onEnter(): void { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user