@tui-cruises/mein-schiff-web-react-component-library 2.2.8 → 2.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.2.10](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/compare/v2.2.9...v2.2.10) (2025-09-09)
6
+
7
+ ### [2.2.9](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/compare/v2.2.7...v2.2.9) (2025-09-09)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **OM-2216:** change pagination icon button size on mobile/tablet according to design (pull request [#6](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/issues/6)) ([6541f91](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/commit/6541f9109995bab9644ddf46682005988bee2255))
13
+ * **Pagination:** adjust icon button sizes on mobile/tablet to match design ([c468b10](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/commit/c468b1075f2425fcfa871c3d4459a1b401a61423))
14
+ * **Tag:** use text-center (pull request [#7](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/issues/7)) ([f6184d1](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/commit/f6184d1027637018693aef04e2986d36b86521aa))
15
+ * typefix ([b7fccaf](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/commit/b7fccaf80e990db4d68b42411c1ce57a6356ad05))
16
+
17
+ ### [2.2.8](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/compare/v2.2.7...v2.2.8) (2025-09-08)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **Calendar:** Typefix i18n ([b7fccaf](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/commit/b7fccaf80e990db4d68b42411c1ce57a6356ad05))
23
+
5
24
  ### [2.2.7](https://bitbucket.org/yours_truly/tuic-mein-schiff-web-react-component-library/compare/v2.2.6...v2.2.7) (2025-08-25)
6
25
 
7
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tui-cruises/mein-schiff-web-react-component-library",
3
- "version": "2.2.8",
3
+ "version": "2.2.10",
4
4
  "main": "./index.tsx",
5
5
  "types": "./index.tsx",
6
6
  "type": "module",
Binary file
@@ -66,7 +66,7 @@ export const Pagination = ({
66
66
  variant: 'secondary',
67
67
  iconName: 'nav-arrow-left',
68
68
  disabled: !forcePreviousClickable && (pending || minCurrent <= 1),
69
- size: 'sm',
69
+ size: ['md', { lg: 'sm' }],
70
70
  onClick: createNavigationHandler(setPending, onPrevious),
71
71
  'aria-label': i18n?.previousPage ?? 'Vorherige Seite',
72
72
  });
@@ -75,7 +75,7 @@ export const Pagination = ({
75
75
  variant: 'secondary',
76
76
  iconName: 'nav-arrow-right',
77
77
  disabled: !forceNextClickable && (pending || maxCurrent >= total),
78
- size: 'sm',
78
+ size: ['md', { lg: 'sm' }],
79
79
  onClick: createNavigationHandler(setPending, onNext),
80
80
  'aria-label': i18n?.nextPage ?? 'Nächste Seite',
81
81
  });
@@ -105,7 +105,7 @@ const Tag = ({
105
105
  <div
106
106
  {...args}
107
107
  className={twJoin(
108
- 'inline-flex items-center justify-center font-semibold text-marine-high-emphasis',
108
+ 'inline-flex items-center justify-center text-center font-semibold text-marine-high-emphasis',
109
109
  borderRadius,
110
110
  textSize,
111
111
  padding,