Skip to content

Commit

Permalink
chore: update brand name (#4600)
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong authored Jan 19, 2025
1 parent cf39e22 commit 66efa0a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/dry-kings-add.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@heroui/shared-utils": patch
---

update brand name
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Next UI
Copyright (c) 2020 Next UI Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Next UI
Copyright (c) 2020 Next UI Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions packages/components/dropdown/__tests__/dropdown.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ describe("Dropdown", () => {
);
};

// Non Next UI Element in DropdownTrigger
// Non Hero UI Element in DropdownTrigger
render(
<Dropdown isDisabled>
<DropdownTrigger>
Expand All @@ -480,7 +480,7 @@ describe("Dropdown", () => {

spy.mockRestore();

// Next UI Element in DropdownTrigger
// Hero UI Element in DropdownTrigger
render(
<Dropdown isDisabled>
<DropdownTrigger>
Expand Down
1 change: 1 addition & 0 deletions packages/core/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"keywords": [
"next",
"next ui",
"hero ui",
"components",
"modern components",
"react components",
Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/shared-utils/src/console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const warningStack: {[key: string]: boolean} = {};

export function warn(message: string, component?: string, ...args: any[]) {
const tag = component ? ` [${component}]` : " ";
const log = `[Next UI]${tag}: ${message}`;
const log = `[Hero UI]${tag}: ${message}`;

if (typeof console === "undefined") return;
if (warningStack[log]) return;
Expand Down

0 comments on commit 66efa0a

Please sign in to comment.