Skip to content

Commit c76b376

Browse files
authored
publish: version 0.9.2 (#220)
1 parent ece12a4 commit c76b376

19 files changed

Lines changed: 1110 additions & 81 deletions

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.2] - 2026-03-22
9+
10+
### Added
11+
- `FlexibleDateTimeInput` component for `DateTimeInput` for easy switching between Date and DateTime input
12+
- actions attribute to `DateTimeInput` for displaying action buttons
13+
- Tests for `useMultiSelection` and `useSingleSelection` hooks
14+
15+
### Changed
16+
- `FilterList`
17+
- Height of chips and buttons is not consistent with the standard height
18+
- Allows the addition of children
19+
820
## [0.9.1] - 2026-02-14
921

1022
### Changed

jest.config.cjs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
module.exports = {
22
preset: 'ts-jest/presets/default-esm',
33
testEnvironment: 'node',
4-
testMatch: ['**/tests/**/*.test.ts'],
5-
extensionsToTreatAsEsm: ['.ts'],
4+
testMatch: ['**/tests/**/*.test.ts', '**/tests/**/*.test.tsx'],
5+
extensionsToTreatAsEsm: ['.ts', '.tsx'],
6+
moduleNameMapper: {
7+
'^@/(.*)$': '<rootDir>/$1',
8+
},
69
transform: {
7-
'^.+\\.ts$': [
10+
'^.+\\.tsx?$': [
811
'ts-jest',
912
{
1013
useESM: true

locales/de-DE.arb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"add": "Hinzufügen",
33
"addFilter": "Filter hinzufügen",
4+
"addTime": "Uhrzeit hinzufügen",
45
"all": "Alle",
56
"apply": "Anwenden",
67
"back": "Zurück",
@@ -290,6 +291,7 @@
290291
},
291292
"goodToSeeYou": "Schön dich zu sehen",
292293
"welcome": "Willkommen",
294+
"withoutTime": "Ohne Uhrzeit",
293295
"rSortingOrderAfter": "Angewendet {otherSortings, plural, =0{als primäre Sortierung} =1{nach einer anderen Sortierung} other{nach # anderen Sortierungen}}",
294296
"@rSortingOrderAfter": {
295297
"placeholders": {

locales/en-US.arb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"add": "Add",
33
"addFilter": "Add filter",
4+
"addTime": "Add Time",
45
"all": "All",
56
"apply": "Apply",
67
"back": "Back",
@@ -291,6 +292,7 @@
291292
},
292293
"goodToSeeYou": "Good to see you",
293294
"welcome": "Welcome",
295+
"withoutTime": "Without Time",
294296
"rSortingOrderAfter": "Applied {otherSortings, plural, =0{as the first sorting} =1{after # other sorting} other{after # other sortings}}",
295297
"@rSortingOrderAfter": {
296298
"placeholders": {

0 commit comments

Comments
 (0)