From e488360d6422814c548d738acecc3a09d9ecd51d Mon Sep 17 00:00:00 2001 From: galangel Date: Tue, 13 Jan 2026 23:37:41 +0200 Subject: [PATCH 1/3] Up Signed-off-by: galangel --- .github/workflows/publish.yml | 2 +- package.json | 7 +++---- src/index.ts | 2 +- vite.config.ts | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bdbafc0..dd53995 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -78,7 +78,7 @@ jobs: - name: Publish to npm run: npm publish --provenance --access public env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - name: Create GitHub Release uses: softprops/action-gh-release@v1 diff --git a/package.json b/package.json index 4d6e7dd..b105a7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "react-tip-magic", - "version": "1.0.0", + "name": "@galangel/react-tip-magic", + "version": "1.0.1", "description": "A sophisticated, elegant, and performant tooltip library for React with an intelligent floating helper system.", "type": "module", "main": "./dist/index.cjs", @@ -62,8 +62,7 @@ "react-dom": ">=18.0.0" }, "dependencies": { - "@floating-ui/react": "^0.27.16", - "react": ">=18.0.0" + "@floating-ui/react": "^0.27.16" }, "devDependencies": { "@chromatic-com/storybook": "^4.1.3", diff --git a/src/index.ts b/src/index.ts index 88c7e8b..a66953f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -55,4 +55,4 @@ export { generateTooltipId, parseContent, parseDataAttributes } from './utils/pa export type { ParsedContent } from './utils/parseDataAttributes'; // Version -export const VERSION = '1.0.0'; +export const VERSION = '1.0.1'; diff --git a/vite.config.ts b/vite.config.ts index 8df45e2..1a6fa69 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -20,7 +20,7 @@ function cssPlugin() { } // Read all CSS files in order - const cssFiles = ['variables.css', 'tooltip.css', 'index.css']; + const cssFiles = ['variables.css', 'tooltip.css', 'tour.css', 'index.css']; let combinedCss = '/* React Tip Magic Styles */\n\n'; for (const file of cssFiles) { From 2b25270a2f34934d9832f8e92079619c953e116a Mon Sep 17 00:00:00 2001 From: galangel Date: Tue, 13 Jan 2026 23:43:13 +0200 Subject: [PATCH 2/3] Deb Signed-off-by: galangel --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dd53995..fa03aac 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -69,6 +69,9 @@ jobs: - name: Install dependencies run: npm ci + - name: Install Playwright browsers + run: npx playwright install --with-deps chromium + - name: Run tests run: npm run test From 4ae5a47a34312f9573de089e6120ca0f58e1ed61 Mon Sep 17 00:00:00 2001 From: galangel Date: Tue, 13 Jan 2026 23:47:53 +0200 Subject: [PATCH 3/3] Version Signed-off-by: galangel --- package.json | 2 +- src/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index b105a7b..8937a7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@galangel/react-tip-magic", - "version": "1.0.1", + "version": "1.0.2", "description": "A sophisticated, elegant, and performant tooltip library for React with an intelligent floating helper system.", "type": "module", "main": "./dist/index.cjs", diff --git a/src/index.ts b/src/index.ts index a66953f..6016af6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -21,8 +21,8 @@ export type { CurrentTourStep, FlowState, FlowStep, - HelperAction, HelperAPI, + HelperAction, HelperInternalState, HelperPosition, HelperShowOptions, @@ -55,4 +55,4 @@ export { generateTooltipId, parseContent, parseDataAttributes } from './utils/pa export type { ParsedContent } from './utils/parseDataAttributes'; // Version -export const VERSION = '1.0.1'; +export const VERSION = '1.0.2';