Skip to content

Commit 66efa0a

Browse files
authored
chore: update brand name (#4600)
1 parent cf39e22 commit 66efa0a

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

.changeset/dry-kings-add.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@heroui/shared-utils": patch
3+
---
4+
5+
update brand name

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Next UI
3+
Copyright (c) 2020 Next UI Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

apps/docs/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Next UI
3+
Copyright (c) 2020 Next UI Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/components/dropdown/__tests__/dropdown.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ describe("Dropdown", () => {
466466
);
467467
};
468468

469-
// Non Next UI Element in DropdownTrigger
469+
// Non Hero UI Element in DropdownTrigger
470470
render(
471471
<Dropdown isDisabled>
472472
<DropdownTrigger>
@@ -480,7 +480,7 @@ describe("Dropdown", () => {
480480

481481
spy.mockRestore();
482482

483-
// Next UI Element in DropdownTrigger
483+
// Hero UI Element in DropdownTrigger
484484
render(
485485
<Dropdown isDisabled>
486486
<DropdownTrigger>

packages/core/react/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"keywords": [
99
"next",
1010
"next ui",
11+
"hero ui",
1112
"components",
1213
"modern components",
1314
"react components",

packages/utilities/shared-utils/src/console.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const warningStack: {[key: string]: boolean} = {};
22

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

77
if (typeof console === "undefined") return;
88
if (warningStack[log]) return;

0 commit comments

Comments
 (0)