Skip to content

Commit fcd4302

Browse files
akademyMatthew Wilcoxson
andauthored
Add Bar component to exported components (#126)
Co-authored-by: Matthew Wilcoxson <[email protected]>
1 parent ba800bf commit fcd4302

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

changelog.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@ SciReactUI Changelog
55
------------------------
66

77
### Added
8-
- New Progress component based on Diamond Light added.
9-
- New ProgressDelayed component so that the progress isn't shown at all when it's a small wait.
8+
- New *Progress* component based on Diamond Light added.
9+
- New *ProgressDelayed* component so that the progress isn't shown at all when it's a small wait.
1010

1111
### Fixed
1212
- Hovering over a slot caused a popup with the slot title in. This has been removed.
1313
- Stopped Bar-based components (e.g. Navbar, Footer) from expanding when a parent component has a set height
14+
- The base *Bar* component was not being exported.
1415

1516
### Changed
1617
- Remove first-child css selector as it causes problems with server-side rendering.
1718

19+
1820
[v0.3.0] - 2025-09-04
1921
---------------------
2022

@@ -34,7 +36,6 @@ of the colour scheme switch - for use with alternative background colours.
3436
- Fixed bug in Footer Links where alignment was out on first link.
3537
- Ordering of StoryBook now more intuitive.
3638

37-
3839
### Changed
3940
- Breaking change: The use of *color* has been replaced with *colour* throughout.
4041
- *ImageColorSchemeSwitch*, *ImageColorSchemeSwitchType* and *ImageColorSchemeSwitchProps*

src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@ export * from "./components/navigation/Navbar";
55

66
// components/controls
77
export * from "./components/controls/AppTitlebar";
8+
export * from "./components/controls/Bar";
89
export * from "./components/controls/ColourSchemeButton";
910
export * from "./components/controls/ImageColourSchemeSwitch";
1011
export * from "./components/controls/Logo";
1112
export * from "./components/controls/User";
1213
export * from "./components/controls/ScrollableImages";
1314
export * from "./components/controls/VisitInput";
1415

15-
// components/helpers/jsonForms
16+
// components/systems
1617
export * from "./components/systems/auth";
1718

18-
// components/helpers/jsonForms
19+
// components/helpers
1920
export * from "./components/helpers/jsonforms";
2021

2122
// themes

0 commit comments

Comments
 (0)