@clubmed/trident-ui 1.3.0-beta.13 → 1.3.0-beta.14

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,12 @@
1
1
  # ClubMed React UI components changelog
2
2
 
3
+ # [1.3.0-beta.14](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.0-beta.13...v1.3.0-beta.14) (2025-08-09)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update stylesheet imports and adjust package.json paths ([e094368](https://scm.clubmed.com/clubmed/ui/trident-ui/-/commit/e094368d6122db7d503003325cd85ffe481eb002))
9
+
3
10
  # [1.3.0-beta.13](https://scm.clubmed.com/clubmed/ui/trident-ui/compare/v1.3.0-beta.12...v1.3.0-beta.13) (2025-08-08)
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-beta.13",
3
+ "version": "1.3.0-beta.14",
4
4
  "type": "module",
5
5
  "description": "Shared ClubMed React UI components",
6
6
  "keywords": [
@@ -82,10 +82,10 @@
82
82
  "import": "./hooks/*.js",
83
83
  "default": "./hooks/*.js"
84
84
  },
85
- "./tests/*": {
86
- "types": "./tests/*.d.ts",
87
- "import": "./tests/*.js",
88
- "default": "./tests/*.js"
85
+ "./types/*": {
86
+ "types": "./types/*.d.ts",
87
+ "import": "./types/*.js",
88
+ "default": "./types/*.js"
89
89
  },
90
90
  "./utils/*": {
91
91
  "types": "./utils/*.d.ts",
package/styles/index.css CHANGED
@@ -1,4 +1,4 @@
1
1
  /* This file is used to import all the stylesheets */
2
2
  @import './globals.css';
3
3
  /* do not remove the line below */
4
- @import '../assets/style.css';
4
+ @import '../assets/trident-ui.css';
@@ -1,19 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@10.9.2
3
- 2 info using node@v22.17.0
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/clubmed/ui/trident-ui/dist/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm config set //registry.npmjs.org/:_authToken=npm_***
9
- 8 verbose argv "config" "set" "--" "//registry.npmjs.org/:_authToken=npm_***"
10
- 9 verbose logfile logs-max:10 dir:/builds/clubmed/ui/trident-ui/dist/.npm/_logs/2025-08-08T15_19_22_167Z-
11
- 10 verbose logfile /builds/clubmed/ui/trident-ui/dist/.npm/_logs/2025-08-08T15_19_22_167Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 info config set "//registry.npmjs.org/:_authToken" "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"
14
- 13 verbose cwd /builds/clubmed/ui/trident-ui/dist
15
- 14 verbose os Linux 5.14.0-570.23.1.el9_6.x86_64
16
- 15 verbose node v22.17.0
17
- 16 verbose npm v10.9.2
18
- 17 verbose exit 0
19
- 18 info ok
@@ -1,14 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@10.9.2
3
- 2 info using node@v22.17.0
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/clubmed/ui/trident-ui/dist/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm publish
9
- 8 verbose argv "publish" "--access" "public" "--tag" "beta"
10
- 9 verbose logfile logs-max:10 dir:/builds/clubmed/ui/trident-ui/dist/.npm/_logs/2025-08-08T15_19_22_257Z-
11
- 10 verbose logfile /builds/clubmed/ui/trident-ui/dist/.npm/_logs/2025-08-08T15_19_22_257Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 verbose publish [ '.' ]
14
- 13 silly packumentCache heap:4345298944 maxSize:1086324736 maxEntrySize:543162368
@@ -1,14 +0,0 @@
1
- import { ReactElement, ReactNode } from 'react';
2
- type Direction = 'ltr' | 'rtl';
3
- export declare enum Devices {
4
- all = "all",
5
- small = "small",
6
- medium = "medium",
7
- large = "large",
8
- xlarge = "xlarge"
9
- }
10
- export declare const deviceWrapper: (device: Devices, direction?: Direction) => ({ children }: {
11
- children: ReactElement | ReactNode;
12
- }) => import("react/jsx-runtime").JSX.Element;
13
- export declare const deviceRender: (ui: ReactElement, device: Devices) => import('@testing-library/react').RenderResult<typeof import("@testing-library/dom/types/queries"), HTMLElement, HTMLElement>;
14
- export {};