Skip to content

Commit 7aa9726

Browse files
committed
A few fixes and changelog update.
1 parent 255abb4 commit 7aa9726

File tree

4 files changed

+33
-11
lines changed

4 files changed

+33
-11
lines changed

.storybook/ThemeSwapper.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ const ThemeSwapper = ({ context, children }: ThemeSwapperProps) => {
3535
);
3636
};
3737

38-
export { ThemeSwapper, Context };
38+
export { ThemeSwapper };
39+
export type { Context };

.storybook/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const config: StorybookConfig = {
88
"@chromatic-com/storybook",
99
"@storybook/addon-interactions",
1010
"@storybook/addon-links",
11-
"@storybook/addon-toolbars",
1211
"storybook-dark-mode",
1312
],
1413
framework: {

changelog.md

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
1-
# Changelog
1+
Changelog
2+
=========
23

3-
## [0.0.2] - 2024-01-20
4+
[0.0.3] - 2024-01-27
5+
--------------------
46

57
### Fixed
6-
- Not importing correctly in some external projects.
8+
- Moved unnecessary build dependencies to devDependencies
9+
10+
### Changed
11+
- Return key now submits VisitInput (but that can be turned off).
712

813

9-
## [0.0.1] - 2024-12-19
14+
[0.0.2] - 2024-01-20
15+
--------------------
1016

17+
### Fixed
18+
- Not importing correctly in some external projects.
19+
20+
21+
[0.0.1] - 2024-12-19
22+
--------------------
1123
### Added
1224
- Components added:
1325
- Breadcrumbs - Highlight position of page in hierarchy
@@ -25,3 +37,16 @@
2537
- Themes added:
2638
- Diamond
2739
- Generic
40+
41+
42+
[0.0.0] - 2024-06-04
43+
--------------------
44+
45+
### Added
46+
-
47+
48+
### Fixed
49+
-
50+
51+
### Changed
52+
-

package.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@diamondlightsource/sci-react-ui",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "A theme and component library to make websites at scientific institutions simple to create.",
55
"author": "Diamond Light Source",
66
"license": "ISC",
@@ -23,17 +23,14 @@
2323
"storybook:build": "storybook build -o storybook-static",
2424
"storybook:publish": "gh-pages -b storybook/publish -d storybook-static"
2525
},
26-
"main": "dist/index.js.js",
27-
"module": "dist/index.esm.js",
28-
"types": "dist/index.d.ts",
2926
"dependencies": {
30-
"@mui/icons-material": "^6.1.7",
3127
"react-icons": "^5.3.0"
3228
},
3329
"peerDependencies": {
3430
"@emotion/react": "^11.13.3",
3531
"@emotion/styled": "^11.13.0",
3632
"@mui/material": "^6.1.7",
33+
"@mui/icons-material": "^6.1.7",
3734
"react": "^18.3.1",
3835
"react-dom": "^18.3.1"
3936
},

0 commit comments

Comments
 (0)