mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 09:35:39 -05:00
wizard for deploying bdc (#7183)
* wip * wip2 * wip eod 820 * wip 822 * text component improvements and misc changes * aria-label * targetClusterPage wip * target cluster page * target cluster page * wip 827 * wip deployment profile page * profile page * service settings page * wip 0903 * 0909 wip * 0910 * 0911 * sql instance and working directory * notebooks * docker version on windows * EULA env var * 917 updates * address comments * use async file access * fix the summary page display issue for ad auth * add save json file buttons * use promise for private methds * review feedbacks * refactor * pass json to notebooks * fix no tool scenario * bypass tool check if installed * update hint text * update notebooks * workaround azdata first time use * comments * accept eula and some text update * fix the error in package.json * promise instead of thenable * comments * fix typo
This commit is contained in:
18
src/sql/azdata.d.ts
vendored
18
src/sql/azdata.d.ts
vendored
@@ -2745,7 +2745,10 @@ declare module 'azdata' {
|
||||
* Matches the align-content CSS property.
|
||||
*/
|
||||
alignContent?: string;
|
||||
|
||||
/**
|
||||
* Matches the flex-wrap CSS property.
|
||||
*/
|
||||
flexWrap?: string;
|
||||
/**
|
||||
* Container Height
|
||||
*/
|
||||
@@ -2919,11 +2922,11 @@ declare module 'azdata' {
|
||||
* Properties representing the card component, can be used
|
||||
* when using ModelBuilder to create the component
|
||||
*/
|
||||
export interface CardProperties extends ComponentWithIcon {
|
||||
export interface CardProperties extends ComponentProperties, ComponentWithIcon {
|
||||
label: string;
|
||||
value?: string;
|
||||
actions?: ActionDescriptor[];
|
||||
descriptions?: string[];
|
||||
descriptions?: CardDescriptionItem[];
|
||||
status?: StatusIndicator;
|
||||
|
||||
/**
|
||||
@@ -2937,6 +2940,13 @@ declare module 'azdata' {
|
||||
cardType?: CardType;
|
||||
}
|
||||
|
||||
export interface CardDescriptionItem {
|
||||
label: string;
|
||||
value?: string;
|
||||
tooltip?: string;
|
||||
fontWeight?: 'normal' | 'bold';
|
||||
}
|
||||
|
||||
export type InputBoxInputType = 'color' | 'date' | 'datetime-local' | 'email' | 'month' | 'number' | 'password' | 'range' | 'search' | 'text' | 'time' | 'url' | 'week';
|
||||
|
||||
export interface ComponentProperties {
|
||||
@@ -3055,6 +3065,8 @@ declare module 'azdata' {
|
||||
export interface TextComponentProperties {
|
||||
value?: string;
|
||||
links?: LinkArea[];
|
||||
description?: string;
|
||||
requiredIndicator?: boolean;
|
||||
CSSStyles?: { [key: string]: string };
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user