@clubmed/trident-ui 1.3.0-rc.3 → 1.3.0-rc.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +14 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # ClubMed React UI components changelog
2
2
 
3
+ # [1.3.0-rc.4](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.0-rc.3...v1.3.0-rc.4) (2025-08-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **package:** update paths for utils to point to helpers ([8c22658](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/8c22658c483592f2dbd2450122f04fd9f265802b))
9
+
3
10
  # [1.3.0-rc.3](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.0-rc.2...v1.3.0-rc.3) (2025-08-14)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clubmed/trident-ui",
3
- "version": "1.3.0-rc.3",
3
+ "version": "1.3.0-rc.4",
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",
@@ -88,9 +88,14 @@
88
88
  "default": "./types/*.js"
89
89
  },
90
90
  "./utils/*": {
91
- "types": "./utils/*.d.ts",
92
- "import": "./utils/*.js",
93
- "default": "./utils/*.js"
91
+ "types": "./helpers/*.d.ts",
92
+ "import": "./helpers/*.js",
93
+ "default": "./helpers/*.js"
94
+ },
95
+ "./helpers/*": {
96
+ "types": "./helpers/*.d.ts",
97
+ "import": "./helpers/*.js",
98
+ "default": "./helpers/*.js"
94
99
  }
95
100
  },
96
101
  "scripts": {