Update server tree action contributions (#15525)

* Update server tree action contributions

* Fix test
This commit is contained in:
Charles Gagnon
2021-05-20 12:41:56 -07:00
committed by GitHub
parent c61c53976a
commit 2ec720d5b9
19 changed files with 176 additions and 213 deletions

View File

@@ -0,0 +1,17 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* Set of IDs used to identify SQL contributed icons, which override the default
* codicon behavior vs/base/common/codicons.ts
*/
export const enum SqlIconId {
book = 'book',
dataExplorer = 'dataExplorer',
addServerGroupAction = 'add-server-group-action',
addServerAction = 'add-server-action',
activeConnectionsAction = 'active-connections-action',
serverPage = 'server-page'
}