-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #456 from brightlayer-ui/dev
Publish v6.1.0
- Loading branch information
Showing
85 changed files
with
5,665 additions
and
2,629 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
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,26 @@ | ||
# Validation Steps | ||
|
||
### Manual Steps | ||
|
||
#### Showcase | ||
1. Beta package integrates into showcase without errors. | ||
2. BLUI Data Display page renders correctly; checking ChannelValue, EmptyState, Hero, InfoListItem, ThreeLiner, and UserMenu. | ||
4. BLUI Surfaces page renders correctly; checking Collapsible Appbar, Toolbar Menu, and Scorecard. | ||
|
||
#### Sandbox | ||
1. Verify the AppBar component renders correctly in the sandbox environment, using available knobs. | ||
2. Verify the ChannelValue component renders correctly in the sandbox environment, using available knobs. | ||
3. Verify the Drawer component renders correctly in the sandbox environment, using available knobs. | ||
4. Verify the DrawerLayout component renders correctly in the sandbox environment, using available knobs. | ||
5. Verify the Empty State component renders correctly in the sandbox environment, using available knobs. | ||
6. Verify the Hero component renders correctly in the sandbox environment, using available knobs. | ||
7. Verify the InfoListItem component renders correctly in the sandbox environment, using available knobs. | ||
8. Verify the ListItemTag component renders correctly in the sandbox environment, using available knobs. | ||
9. Verify the ScoreCard component renders correctly in the sandbox environment, using available knobs. | ||
10. Verify the Spacer component renders correctly in the sandbox environment, using available knobs. | ||
11. Verify the ThreeLiner component renders correctly in the sandbox environment, using available knobs. | ||
12. Verify the ToolbarMenu component renders correctly in the sandbox environment, using available knobs. | ||
13. Verify the UserMenu component renders correctly in the sandbox environment, using available knobs. | ||
|
||
### Unit Test Count | ||
59 |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { generateUtilityClass, generateUtilityClasses } from '@mui/base'; | ||
|
||
export type AppBarClasses = { | ||
root?: string; | ||
background?: string; | ||
expanded?: string; | ||
collapsed?: string; | ||
expandedBackground?: string; | ||
}; | ||
|
||
export type AppBarClassKey = keyof AppBarClasses; | ||
|
||
export function getAppBarUtilityClass(slot: string): string { | ||
return generateUtilityClass('BluiAppBar', slot); | ||
} | ||
|
||
const appBarClasses: AppBarClasses = generateUtilityClasses('BluiAppBar', [ | ||
'root', | ||
'background', | ||
'expanded', | ||
'collapsed', | ||
'expandedBackground', | ||
]); | ||
|
||
export default appBarClasses; |
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 +1,2 @@ | ||
export * from './AppBar'; | ||
export { AppBarClasses } from './AppBarClasses'; |
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
Oops, something went wrong.