Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type { Preview } from '@storybook/nextjs'
import { LanguageProvider, ThemeProvider, useTheme } from '../src'
import '../src/css/globals.css'
import '../src/style/globals.css'
import './storybookStyleOverrides.css'
import { useEffect } from 'react'
import { ThemeProvider, useTheme } from '../src/theming/useTheme'
import { LanguageProvider } from '../src/localization/LanguageProvider'

const preview: Preview = {
parameters: {
Expand Down
32 changes: 29 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.26] - 2025-07-23

### Changed
- Renamed `textstyle` to `typography` for ClassNames
- Changed css folder to style folder

### Removed
- removed typographies (full list below)
- `typography-title-3xl`
- `typography-title-2xl`
- `typography-title-xl`
- `typography-title-sm`
- `textstyle-title-normal`
- `textstyle-accent`
- `textstyle-description`
- `textstyle-table-name`
- `textstyle-table-header`
- `textstyle-navigation-item`
- `textstyle-form-error`
- `textstyle-form-description`
- Removed Label from base input components. (full list below)
- `Input`
- `Select`
- `MultiSelect`
- `Textarea`

## [0.1.25] - 2025-07-19

### Added
Expand Down Expand Up @@ -142,7 +168,7 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Fixed

- fixed `LanguageModal` and `ThemeModal` not displaying their text in the Select
- fixed `LanguageModal` and `ThemeDialog` not displaying their text in the Select

## [0.1.10] - 2025-07-02

Expand Down Expand Up @@ -215,7 +241,7 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Fixed

- `InputModal` is now a modal and not a dialog
- `InputDialog` is now a modal and not a dialog
- Button now have the not-allowed cursor when disabled
- Removed gap in `BreadCrumb` components

Expand Down Expand Up @@ -246,7 +272,7 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- .editorconfig
- `IconButton`
- `ThemeModal`
- `ThemeDialog`
- [`storybookThemeOverride.css`](./.storybook/storybookStyleOverrides.css)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repository contains all components and themes employed by helpwave's web ap
## Theming

Theming is achieved through an extensive [tailwindcss](https://tailwindcss.com) config in
the [globals.css](src/css/globals.css)
the [globals.css](src/style/globals.css)

## Storybook

Expand Down
4 changes: 0 additions & 4 deletions barrelsby-config.json

This file was deleted.

Loading
Loading