-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate formatting to use newer MS APIs (#433)
- Loading branch information
Showing
90 changed files
with
1,444 additions
and
1,655 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,4 +98,4 @@ | |
"overrides": { | ||
"vscode-uri": "3.0.7" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* Default values for the data table in the preview pane (AKA the debug pane). | ||
*/ | ||
export const PREVIEW_PANE_DATA_TABLE = { | ||
rowsPerPage: { | ||
default: 50, | ||
values: [10, 25, 50, 100, 150, 200] | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export * from './dataset'; | ||
export * from './debug-area'; | ||
export * from './integration-powerbi'; | ||
export * from './json-processing'; | ||
export * from './properties'; | ||
export * from './template-usermeta-schema'; | ||
export * from './utils-base64'; | ||
export * from './vega-extensibility'; |
Oops, something went wrong.