Skip to content
Merged
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.9.2] - 2026-03-22

### Added
- `FlexibleDateTimeInput` component for `DateTimeInput` for easy switching between Date and DateTime input
- actions attribute to `DateTimeInput` for displaying action buttons
- Tests for `useMultiSelection` and `useSingleSelection` hooks

### Changed
- `FilterList`
- Height of chips and buttons is not consistent with the standard height
- Allows the addition of children

## [0.9.1] - 2026-02-14

### Changed
Expand Down
9 changes: 6 additions & 3 deletions jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
module.exports = {
preset: 'ts-jest/presets/default-esm',
testEnvironment: 'node',
testMatch: ['**/tests/**/*.test.ts'],
extensionsToTreatAsEsm: ['.ts'],
testMatch: ['**/tests/**/*.test.ts', '**/tests/**/*.test.tsx'],
extensionsToTreatAsEsm: ['.ts', '.tsx'],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/$1',
},
transform: {
'^.+\\.ts$': [
'^.+\\.tsx?$': [
'ts-jest',
{
useESM: true
Expand Down
2 changes: 2 additions & 0 deletions locales/de-DE.arb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"add": "Hinzufügen",
"addFilter": "Filter hinzufügen",
"addTime": "Uhrzeit hinzufügen",
"all": "Alle",
"apply": "Anwenden",
"back": "Zurück",
Expand Down Expand Up @@ -290,6 +291,7 @@
},
"goodToSeeYou": "Schön dich zu sehen",
"welcome": "Willkommen",
"withoutTime": "Ohne Uhrzeit",
"rSortingOrderAfter": "Angewendet {otherSortings, plural, =0{als primäre Sortierung} =1{nach einer anderen Sortierung} other{nach # anderen Sortierungen}}",
"@rSortingOrderAfter": {
"placeholders": {
Expand Down
2 changes: 2 additions & 0 deletions locales/en-US.arb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"add": "Add",
"addFilter": "Add filter",
"addTime": "Add Time",
"all": "All",
"apply": "Apply",
"back": "Back",
Expand Down Expand Up @@ -291,6 +292,7 @@
},
"goodToSeeYou": "Good to see you",
"welcome": "Welcome",
"withoutTime": "Without Time",
"rSortingOrderAfter": "Applied {otherSortings, plural, =0{as the first sorting} =1{after # other sorting} other{after # other sortings}}",
"@rSortingOrderAfter": {
"placeholders": {
Expand Down
Loading
Loading