Skip to content

Commit 72f7373

Browse files
committed
refactor(alert)!: rename to @heroui-vue/alert
1 parent 993c867 commit 72f7373

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

.github/workflows/alert-publish.yml renamed to .github/workflows/publish-alert.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
on:
88
push:
99
tags:
10-
- "@vue-nextui/alert@*"
10+
- "@heroui-vue/alert@*"
1111

1212
jobs:
1313
alert:

packages/bin/create-component-template/template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"dev": "rolldown --watch -c rolldown.config.ts"
3737
},
3838
"dependencies": {
39-
"@vue-nextui/shared": "workspace: *"
39+
"@heroui-vue/shared": "workspace: *"
4040
},
4141
"devDependencies": {
4242
"@heroui/theme": "^2.4.11",

packages/components/alert/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@vue-nextui/alert",
2+
"name": "@heroui-vue/alert",
33
"type": "module",
44
"version": "1.0.0-beta.30",
55
"author": {
@@ -32,15 +32,15 @@
3232
"scripts": {
3333
"build": "tsdown --minify",
3434
"dev": "tsdown -w",
35-
"bump": "bumpp --tag @vue-nextui/alert@ --sign"
35+
"bump": "bumpp --tag @heroui-vue/alert@ --sign"
3636
},
3737
"devDependencies": {
3838
"@heroui/shared-utils": "catalog:prod",
3939
"@heroui/system": "catalog:prod",
4040
"@heroui/theme": "catalog:prod",
4141
"@heroui/use-aria-button": "catalog:prod",
4242
"@types/node": "catalog:prod",
43-
"@vue-nextui/shared": "workspace:*",
43+
"@heroui-vue/shared": "workspace:*",
4444
"@vue/tsconfig": "catalog:prod",
4545
"unplugin-vue": "catalog:prod",
4646
"vue": "catalog:prod"

packages/components/alert/src/use-alert.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
AlertVariantProps as _AlertVariantProps,
44
SlotsToClasses,
55
} from "@heroui/theme";
6-
import type { HTMLNextUIVueProps } from "@vue-nextui/shared";
6+
import type { HTMLNextUIVueProps } from "@heroui-vue/shared";
77
import type { MaybeRef, Reactive } from "vue";
88

99
import {
@@ -15,9 +15,9 @@ import {
1515
mergeProps,
1616
useSlots,
1717
} from "vue";
18-
import { pureObject } from "@vue-nextui/shared";
18+
import { pureObject } from "@heroui-vue/shared";
1919
import { alert } from "@heroui/theme";
20-
import { mapPropsVariants } from "@vue-nextui/shared";
20+
import { mapPropsVariants } from "@heroui-vue/shared";
2121
import { dataAttr, isEmpty } from "@heroui/shared-utils";
2222

2323
export interface AlertDefineProps extends /* @vue-ignore */ HTMLNextUIVueProps {

packages/components/button/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@
3737
"bump": "npm run build && bumpp --tag @vue-nextui/button@ --sign"
3838
},
3939
"dependencies": {
40-
"@vue-nextui/shared": "workspace: *"
40+
"@heroui-vue/shared": "workspace: *"
4141
},
4242
"devDependencies": {
4343
"@heroui/shared-utils": "catalog:prod",
4444
"@heroui/system": "catalog:prod",
4545
"@heroui/theme": "catalog:prod",
4646
"@heroui/use-aria-button": "catalog:prod",
4747
"@types/node": "catalog:prod",
48-
"@vue-nextui/shared": "workspace:*",
48+
"@heroui-vue/shared": "workspace:*",
4949
"@vue/tsconfig": "catalog:prod",
5050
"@vueuse/core": "catalog:prod",
5151
"unplugin-vue": "catalog:prod",

packages/components/button/src/use-button.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import type { ButtonVariantProps as _ButtonVariantProps } from "@heroui/theme";
2-
import type { HTMLNextUIVueProps } from "@vue-nextui/shared";
2+
import type { HTMLNextUIVueProps } from "@heroui-vue/shared";
33
import type { Ref, MaybeRef, WatchSource } from "vue";
44

55
import { ref, watch, useAttrs } from "vue";
66
import { useFocus, useMousePressed, useElementHover } from "@vueuse/core";
77
import { dataAttr } from "@heroui/shared-utils";
88
import { button } from "@heroui/theme";
9-
import { useRipple } from "@vue-nextui/shared";
9+
import { useRipple } from "@heroui-vue/shared";
1010

1111
export interface ButtonDefineProps extends HTMLNextUIVueProps<"button"> {
1212
isLoading?: boolean;

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"unplugin-vue": "catalog:prod",
42-
"@vue-nextui/alert": "workspace: *",
42+
"@heroui-vue/alert": "workspace: *",
4343
"@vue-nextui/button": "workspace: *"
4444
}
4545
}

packages/core/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from '@vue-nextui/button'
2-
export * from '@vue-nextui/alert'
1+
export * from "@vue-nextui/button";
2+
export * from "@heroui-vue/alert";

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)