Fix schema compare include/exclude behavior (#8042)

* don't uncheck difference if unsuccessful

* changes after rebasing to get schema compare fix

* First cut of column checkbox checking reactive to include opteration

* handle blocking dependencies and affected dependencies

* Changing the checked property of table to be list

* Addressing comments

* add map to keep row number of diff entries

* remove findDifferenceRow() since it isn't needed anymore

* fix scrolling to the top when checking/unchecking and add info message

* change checked to updateCells

* improve warning cannot include/exclude message
This commit is contained in:
Kim Santiago
2019-10-29 11:55:31 -07:00
committed by GitHub
parent 5629356c66
commit ce5eb00177
9 changed files with 135 additions and 8 deletions

6
src/sql/azdata.d.ts vendored
View File

@@ -3089,9 +3089,15 @@ declare module 'azdata' {
ariaColumnCount?: number;
ariaRole?: string;
focused?: boolean;
updateCells?: TableCell[];
moveFocusOutWithTab?: boolean; //accessibility requirement for tables with no actionable cells
}
export interface CheckBoxCell extends TableCell {
checked: boolean;
columnName: string;
}
export interface FileBrowserTreeProperties extends ComponentProperties {
ownerUri: string;
}