mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 09:35:38 -05:00
* fix missing add azure account button in accoundDialog * add sql edit note * fix other getActions overrides * use registerAction2 for adding account button * fix icon and cleanup * fix big add account button * lint
19 lines
793 B
TypeScript
19 lines
793 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* 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',
|
|
addAccountAction = 'add-linked-account-action'
|
|
}
|