-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* style(prettier): fix broken prettier looking for @grafana/toolkit * fix(build): remove src/ from dist esm paths and prevent @emotion/css in dist/esm dir * fix(build): prevent import react; import @grafana/ui; in dist esm entrypoint * fix(circular-deps): prevent circular dependencies in components * refactor(entrypoint): prefer named exports of usage of * * docs(changelog): introduce entry for 0.3.3
- Loading branch information
Showing
10 changed files
with
53 additions
and
40 deletions.
There are no files selected for viewing
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,3 +1,5 @@ | ||
module.exports = { | ||
...require('@grafana/toolkit/src/config/prettier.plugin.config.json'), | ||
trailingComma: 'es5', | ||
singleQuote: true, | ||
printWidth: 120, | ||
}; |
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
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
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,5 @@ | ||
import { css } from '@emotion/css'; | ||
|
||
export const assumeRoleInstructionsStyle = css({ | ||
maxWidth: '715px', | ||
}); |
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
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
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
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,3 +1,2 @@ | ||
export { ConnectionConfig, type ConnectionConfigProps, DEFAULT_LABEL_WIDTH } from './ConnectionConfig'; | ||
export { NewConnectionConfig } from './NewConnectionConfig'; | ||
export { ConnectionConfig, DEFAULT_LABEL_WIDTH } from './ConnectionConfig'; | ||
export { Divider } from './Divider'; |
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,10 +1,16 @@ | ||
export { ConnectionConfig, type ConnectionConfigProps, DEFAULT_LABEL_WIDTH, Divider } from './components'; | ||
export { ConnectionConfig, DEFAULT_LABEL_WIDTH, Divider } from './components'; | ||
export { SIGV4ConnectionConfig } from './components/SIGV4ConnectionConfig'; | ||
export { ConfigSelect, InlineInput } from './sql/ConfigEditor'; | ||
export { ResourceSelector, type ResourceSelectorProps } from './sql/ResourceSelector'; | ||
export { type SQLQuery } from './sql/types'; | ||
export { QueryEditorHeader, QueryCodeEditor, FormatSelect, FillValueSelect, FillValueOptions } from './sql/QueryEditor'; | ||
export * from './sql/utils'; | ||
export * from './types'; | ||
export * from './regions'; | ||
export * from './providers'; | ||
export { filterSQLQuery, applySQLTemplateVariables, appendTemplateVariablesAsSuggestions } from './sql/utils'; | ||
export { | ||
AwsAuthType, | ||
type AwsAuthDataSourceJsonData, | ||
type AwsAuthDataSourceSecureJsonData, | ||
type AwsAuthDataSourceSettings, | ||
type ConnectionConfigProps, | ||
} from './types'; | ||
export { standardRegions } from './regions'; | ||
export { awsAuthProviderOptions } from './providers'; |
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