@clubmed/trident-ui 1.3.1-beta.2 → 1.4.0-beta.1

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
@@ -1,5 +1,21 @@
1
1
  # ClubMed React UI components changelog
2
2
 
3
+ # [1.4.0-beta.1](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.1-beta.2...v1.4.0-beta.1) (2025-10-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **button:** fix missing text variant mapping with new v2 button ([d174cf6](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/d174cf63c5460bb2d5b90f29f116410296bf5ab5))
9
+ * **card:** add flex-1 on card body ([56a5143](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/56a514365385cd7fd204cbf2cd6b0280f912a680))
10
+
11
+
12
+ ### Features
13
+
14
+ * **molecules:** remove @react-spring/web animation on HamburgerIcon component ([4d697d9](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/4d697d93d2b347e12c2793e7a4d88e6152c89dc8))
15
+ * **molecules:** remove @react-spring/web animation on Loader component ([938b419](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/938b419688c32676ff7bc13f593dbb3aa85a6a1c))
16
+ * **molecules:** remove @react-spring/web animation on Tabs component ([9b50811](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/9b50811930c074e0d1d99ecef1ec8e35796f1185))
17
+ * **molecules:** remove hidden attribute from TabPanel for improved accessibility ([8f5a375](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/8f5a375684b35d4b41b1d2d3e3957b726f259d65))
18
+
3
19
  ## [1.3.1-beta.2](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.1-beta.1...v1.3.1-beta.2) (2025-10-01)
4
20
 
5
21
 
package/README.md CHANGED
@@ -31,17 +31,17 @@ React UI components is a library of reusable components for building web applica
31
31
  ## Installation
32
32
 
33
33
  ```sh
34
- npm install --save @clubmed/trident-icons @clubmed/trident-ui react react-dom @react-spring/web
34
+ npm install --save @clubmed/trident-icons @clubmed/trident-ui react react-dom
35
35
  npm install --save-dev tailwindcss postcss autoprefixer
36
36
  ```
37
37
 
38
38
  ```sh
39
- yarn add @clubmed/trident-icons @clubmed/trident-ui react react-dom @react-spring/web
39
+ yarn add @clubmed/trident-icons @clubmed/trident-ui react react-dom
40
40
  yarn add -D tailwindcss postcss autoprefixer
41
41
  ```
42
42
 
43
43
  ```sh
44
- pnpm add @clubmed/trident-icons @clubmed/trident-ui react react-dom @react-spring/web
44
+ pnpm add @clubmed/trident-icons @clubmed/trident-ui react react-dom
45
45
  pnpm add -D tailwindcss postcss autoprefixer
46
46
  ```
47
47
 
@@ -1,5 +1,8 @@
1
1
  import { CSSProperties } from 'react';
2
2
  import { default as useBoop } from 'use-boop';
3
3
  type Args = Parameters<typeof useBoop>[0];
4
+ /**
5
+ * @deprecated Will be removed in future releases.
6
+ */
4
7
  export declare const useSafeBoop: (boopArgs: Args) => [CSSProperties, () => void];
5
8
  export {};