@clubmed/trident-ui 1.3.0-beta.7 → 1.3.0-beta.8
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 +7 -0
- package/README.md +11 -1
- package/package.json +28 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# ClubMed React UI components changelog
|
|
2
2
|
|
|
3
|
+
# [1.3.0-beta.8](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.0-beta.7...v1.3.0-beta.8) (2025-08-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **dependencies:** add @clubmed/trident-icons to peerDependencies and devDependencies ([ce9f885](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/ce9f885f8a20edfdfc3dd4d8ceb71008893afbca))
|
|
9
|
+
|
|
3
10
|
# [1.3.0-beta.7](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.0-beta.6...v1.3.0-beta.7) (2025-08-04)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -31,10 +31,20 @@ 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-ui react react-dom @react-spring/web
|
|
34
|
+
npm install --save @clubmed/trident-icons @clubmed/trident-ui react react-dom @react-spring/web
|
|
35
35
|
npm install --save-dev tailwindcss postcss autoprefixer
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
```sh
|
|
39
|
+
yarn add @clubmed/trident-icons @clubmed/trident-ui react react-dom @react-spring/web
|
|
40
|
+
yarn add -D tailwindcss postcss autoprefixer
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
pnpm add @clubmed/trident-icons @clubmed/trident-ui react react-dom @react-spring/web
|
|
45
|
+
pnpm add -D tailwindcss postcss autoprefixer
|
|
46
|
+
```
|
|
47
|
+
|
|
38
48
|
## Tailwind configuration
|
|
39
49
|
|
|
40
50
|
This package exports a `tailwind.preset` file that you can use to extend your own configuration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clubmed/trident-ui",
|
|
3
|
-
"version": "1.3.0-beta.
|
|
3
|
+
"version": "1.3.0-beta.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Shared ClubMed React UI components",
|
|
6
6
|
"keywords": [
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"import": "./molecules/Forms/Checkboxes/index.js",
|
|
52
52
|
"default": "./molecules/Forms/Checkboxes/index.js"
|
|
53
53
|
},
|
|
54
|
-
"./molecules/Forms/Radios": {
|
|
55
|
-
"types": "./molecules/Forms/Radios/index.d.ts",
|
|
56
|
-
"import": "./molecules/Forms/Radios/index.js",
|
|
57
|
-
"default": "./molecules/Forms/Radios/index.js"
|
|
58
|
-
},
|
|
59
54
|
"./molecules/Forms/Password": {
|
|
60
55
|
"types": "./molecules/Forms/Password/index.d.ts",
|
|
61
56
|
"import": "./molecules/Forms/Password/index.js",
|
|
62
57
|
"default": "./molecules/Forms/Password/index.js"
|
|
63
58
|
},
|
|
59
|
+
"./molecules/Forms/Radios": {
|
|
60
|
+
"types": "./molecules/Forms/Radios/index.d.ts",
|
|
61
|
+
"import": "./molecules/Forms/Radios/index.js",
|
|
62
|
+
"default": "./molecules/Forms/Radios/index.js"
|
|
63
|
+
},
|
|
64
64
|
"./fonts/*": "./fonts/*",
|
|
65
65
|
"./atoms/*": {
|
|
66
66
|
"types": "./atoms/*.d.ts",
|
|
@@ -102,9 +102,7 @@
|
|
|
102
102
|
"build:exports": "NODE_NO_WARNINGS=1 node --loader ts-node/esm tools/exports-builder/index.ts"
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
|
-
"@clubmed/trident-icons": ">=1.0.1",
|
|
106
105
|
"@juggle/resize-observer": "^3.4.0",
|
|
107
|
-
"@react-spring/web": "^9.7.3",
|
|
108
106
|
"@use-gesture/react": "^10.2.26",
|
|
109
107
|
"@whitespace/storybook-addon-html": "6.0.5",
|
|
110
108
|
"build": "^0.1.4",
|
|
@@ -118,6 +116,8 @@
|
|
|
118
116
|
"use-resize-observer": "^9.1.0"
|
|
119
117
|
},
|
|
120
118
|
"devDependencies": {
|
|
119
|
+
"@react-spring/web": "^9.7.3",
|
|
120
|
+
"@clubmed/trident-icons": ">=1.0.1",
|
|
121
121
|
"@commitlint/cli": "18.6.1",
|
|
122
122
|
"@commitlint/config-conventional": "18.6.2",
|
|
123
123
|
"@netsells/storybook-mockdate": "^0.3.2",
|
|
@@ -181,7 +181,26 @@
|
|
|
181
181
|
"peerDependencies": {
|
|
182
182
|
"react": ">=17.0.2",
|
|
183
183
|
"react-dom": ">=17.0.2",
|
|
184
|
-
"tailwindcss": ">=3.3.5"
|
|
184
|
+
"tailwindcss": ">=3.3.5",
|
|
185
|
+
"@clubmed/trident-icons": ">=1.0.1",
|
|
186
|
+
"@react-spring/web": ">=9"
|
|
187
|
+
},
|
|
188
|
+
"peerDependenciesMeta": {
|
|
189
|
+
"@clubmed/trident-icons": {
|
|
190
|
+
"optional": false
|
|
191
|
+
},
|
|
192
|
+
"react": {
|
|
193
|
+
"optional": false
|
|
194
|
+
},
|
|
195
|
+
"react-dom": {
|
|
196
|
+
"optional": false
|
|
197
|
+
},
|
|
198
|
+
"tailwindcss": {
|
|
199
|
+
"optional": false
|
|
200
|
+
},
|
|
201
|
+
"@react-spring/web": {
|
|
202
|
+
"optional": false
|
|
203
|
+
}
|
|
185
204
|
},
|
|
186
205
|
"sideEffects": [
|
|
187
206
|
"**/*.css"
|