@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 +16 -0
- package/README.md +3 -3
- package/hooks/useSafeBoop.d.ts +3 -0
- package/hooks/useSafeBoop.js +2207 -42
- package/hooks/useSafeBoop.js.map +1 -1
- package/molecules/Backdrop.js +36 -40
- package/molecules/Backdrop.js.map +1 -1
- package/molecules/Cards/Card.js +9 -9
- package/molecules/Cards/Card.js.map +1 -1
- package/molecules/Forms/NumberField.d.ts +4 -4
- package/molecules/HamburgerIcon.d.ts +3 -10
- package/molecules/HamburgerIcon.js +34 -30
- package/molecules/HamburgerIcon.js.map +1 -1
- package/molecules/Loader.js +32 -43
- package/molecules/Loader.js.map +1 -1
- package/molecules/Popin.d.ts +1 -2
- package/molecules/Popin.js +37 -43
- package/molecules/Popin.js.map +1 -1
- package/molecules/Tabs/Tab.d.ts +3 -4
- package/molecules/Tabs/Tab.js +90 -78
- package/molecules/Tabs/Tab.js.map +1 -1
- package/molecules/Tabs/TabList.js +28 -36
- package/molecules/Tabs/TabList.js.map +1 -1
- package/molecules/Tabs/TabPanel.js +30 -49
- package/molecules/Tabs/TabPanel.js.map +1 -1
- package/molecules/Tabs/context/TabControl.js +12 -7
- package/molecules/Tabs/context/TabControl.js.map +1 -1
- package/package.json +4 -7
- package/tailwind/tailwind.preset.d.ts +70 -0
- package/tailwind/tailwind.preset.js +75 -5
- package/tailwind/tailwind.preset.js.map +1 -1
- package/types/Theme.d.ts +1 -1
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
|
|
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
|
|
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
|
|
44
|
+
pnpm add @clubmed/trident-icons @clubmed/trident-ui react react-dom
|
|
45
45
|
pnpm add -D tailwindcss postcss autoprefixer
|
|
46
46
|
```
|
|
47
47
|
|
package/hooks/useSafeBoop.d.ts
CHANGED
|
@@ -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 {};
|