mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
chore: update brand name (#4600)
This commit is contained in:
parent
cf39e227f8
commit
66efa0a08e
5
.changeset/dry-kings-add.md
Normal file
5
.changeset/dry-kings-add.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"@heroui/shared-utils": patch
|
||||
---
|
||||
|
||||
update brand name
|
||||
2
LICENSE
2
LICENSE
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -466,7 +466,7 @@ describe("Dropdown", () => {
|
||||
);
|
||||
};
|
||||
|
||||
// Non Next UI Element in DropdownTrigger
|
||||
// Non Hero UI Element in DropdownTrigger
|
||||
render(
|
||||
<Dropdown isDisabled>
|
||||
<DropdownTrigger>
|
||||
@ -480,7 +480,7 @@ describe("Dropdown", () => {
|
||||
|
||||
spy.mockRestore();
|
||||
|
||||
// Next UI Element in DropdownTrigger
|
||||
// Hero UI Element in DropdownTrigger
|
||||
render(
|
||||
<Dropdown isDisabled>
|
||||
<DropdownTrigger>
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
"keywords": [
|
||||
"next",
|
||||
"next ui",
|
||||
"hero ui",
|
||||
"components",
|
||||
"modern components",
|
||||
"react components",
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user