Compare commits

...

16 Commits

Author SHA1 Message Date
github-actions[bot] 0ef41d27e7 ci(changesets): version packages (#1324)
Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
2023-08-08 12:28:30 -03:00
Tianen Pang 4200164712 fix(input): duplicate triggering of input events (#1323)
* feat(utils): support for omit-names

* fix(input): exclude duplicate event props

* fix(input): exclude duplicate event fn only

* test(input): event fn call count

* chore(changeset): changeset added
2023-08-08 12:19:08 -03:00
Tianen Pang 6d4c6980d5 fix(docs): typo in the loading more data section (#1319) 2023-08-08 09:10:10 -03:00
github-actions[bot] f3f36a7146 ci(changesets): version packages (#1316)
Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
2023-08-08 01:04:01 -03:00
Junior Garcia 8de209bff7 feat(root): new changeset 2023-08-08 00:56:56 -03:00
Junior Garcia e9d01be74d chore(root): eslint and prettier ignore updated 2023-08-08 00:45:14 -03:00
Junior Garcia 66ac2e67ae feat(root): new changeset 2023-08-08 00:44:58 -03:00
Junior Garcia 7ed88f39c1 chore(pagination): fix prettier 2023-08-08 00:41:58 -03:00
vaynevayne 32d18bfd41 Update pagination-item.tsx (#1315) 2023-08-08 00:41:09 -03:00
vaynevayne a1b32c1ceb Update use-pagination.ts (#1314) 2023-08-08 00:39:01 -03:00
Junior Garcia 9e683b32ba Merge branch 'main' of github.com:nextui-org/nextui 2023-08-08 00:12:35 -03:00
Junior Garcia b7c947805d feat(storybook): logo adapted to light/dark theme, favicon added 2023-08-08 00:12:21 -03:00
github-actions[bot] a76fdfa774 ci(changesets): version packages (#1310)
Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
2023-08-07 23:40:34 -03:00
Junior Garcia ac605eb71f Fix/1307 input on value change (#1309)
* fix(input): inner event handler implemented

* chore(root): changeset added
2023-08-07 23:31:16 -03:00
Junior Garcia 5b343b6181 chore(root): storybook static files removed 2023-08-06 15:56:24 -03:00
Junior Garcia 05562dcf90 feat(root): storybook v7 2023-08-06 15:41:25 -03:00
140 changed files with 2752 additions and 11998 deletions
+1
View File
@@ -1,6 +1,7 @@
.now/*
.next/*
*.css
.changeset
dist
esm/*
public/*
+2
View File
@@ -18,7 +18,9 @@ coverage
# production
/build
dist/
storybook-static
/packages/storybook/public/tailwind.css
# misc
.DS_Store
.env
+1
View File
@@ -2,6 +2,7 @@ dist
node_modules
plop
coverage
.changeset
.next
build
scripts
+3 -3
View File
@@ -179,9 +179,9 @@ const MyButton2 = extendVariants(Button, {
});
export default function NextUIPerf() {
const [textA, setTextA] = useState<string | undefined>("");
const [textB, setTextB] = useState<string | undefined>("");
const [textC, setTextC] = useState<string | undefined>("");
const [textA, setTextA] = useState<string>("");
const [textB, setTextB] = useState<string>("");
const [textC, setTextC] = useState<string>("");
return (
<div className="w-full p-24 gap-4 flex flex-col">
+1 -1
View File
@@ -233,7 +233,7 @@ import {useAsyncList} from "@react-stately/data";
### Loading more data
Table sllows you to add a custom component at the end of the table, on the example below we are
Table allows you to add a custom component at the end of the table, on the example below we are
using a button to load more data.
<CodeDemo
-5
View File
@@ -1,5 +0,0 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -1,5 +1,13 @@
# @nextui-org/accordion
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/divider@2.0.5
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/accordion",
"version": "2.0.4",
"version": "2.0.5",
"description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.",
"keywords": [
"react",
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/avatar
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/avatar",
"version": "2.0.4",
"version": "2.0.5",
"description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.",
"keywords": [
"avatar"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/badge
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/badge",
"version": "2.0.4",
"version": "2.0.5",
"description": "Badges are used as a small numerical value or status descriptor for UI elements.",
"keywords": [
"badge"
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/button
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/ripple@2.0.5
- @nextui-org/spinner@2.0.5
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/button",
"version": "2.0.4",
"version": "2.0.5",
"description": "Buttons allow users to perform actions and choose with a single tap.",
"keywords": [
"button"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/card
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/ripple@2.0.5
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/card",
"version": "2.0.4",
"version": "2.0.5",
"description": "Card is a container for text, photos, and actions in the context of a single subject.",
"keywords": [
"card"
@@ -1,5 +1,12 @@
# @nextui-org/checkbox
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/checkbox",
"version": "2.0.4",
"version": "2.0.5",
"description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.",
"keywords": [
"checkbox"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/chip
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/chip",
"version": "2.0.4",
"version": "2.0.5",
"description": "Chips help people enter information, make selections, filter content, or trigger actions.",
"keywords": [
"chip"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/code
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/code",
"version": "2.0.4",
"version": "2.0.5",
"description": "Code is a component used to display inline code.",
"keywords": [
"code"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/divider
## 2.0.5
### Patch Changes
- Updated dependencies [[`42001647`](https://github.com/nextui-org/nextui/commit/4200164712b6eb4b37a14fe9e005844ff770a180)]:
- @nextui-org/react-rsc-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/divider",
"version": "2.0.4",
"version": "2.0.5",
"description": ". A separator is a visual divider between two groups of content",
"keywords": [
"divider"
@@ -1,5 +1,14 @@
# @nextui-org/dropdown
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/divider@2.0.5
- @nextui-org/react-utils@2.0.3
- @nextui-org/popover@2.0.5
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/dropdown",
"version": "2.0.4",
"version": "2.0.5",
"description": "A dropdown displays a list of actions or options that a user can choose.",
"keywords": [
"dropdown"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/image
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/image",
"version": "2.0.4",
"version": "2.0.5",
"description": "A simple image component",
"keywords": [
"image"
+15
View File
@@ -1,5 +1,20 @@
# @nextui-org/input
## 2.0.6
### Patch Changes
- [#1323](https://github.com/nextui-org/nextui/pull/1323) [`42001647`](https://github.com/nextui-org/nextui/commit/4200164712b6eb4b37a14fe9e005844ff770a180) Thanks [@tianenpang](https://github.com/tianenpang)! - Fixed event functions call twice.
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.5
### Patch Changes
- [#1309](https://github.com/nextui-org/nextui/pull/1309) [`ac605eb7`](https://github.com/nextui-org/nextui/commit/ac605eb71f8aa945525a1c659b7bd17037303762) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - onValueChange returned value fixed, it nows return a plain string
## 2.0.4
### Patch Changes
@@ -88,4 +88,15 @@ describe("Input", () => {
expect(container6.querySelector("input")).toHaveAttribute("type", "text");
});
it("should call dom event handlers only once", () => {
const onFocus = jest.fn();
const {container} = render(<Input label="test input" onFocus={onFocus} />);
container.querySelector("input")?.focus();
container.querySelector("input")?.blur();
expect(onFocus).toHaveBeenCalledTimes(1);
});
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/input",
"version": "2.0.4",
"version": "2.0.6",
"description": "The input component is designed for capturing user input within a text field.",
"keywords": [
"input"
+21 -5
View File
@@ -58,7 +58,7 @@ export interface Props<T extends HTMLInputElement | HTMLTextAreaElement = HTMLIn
/**
* React aria onChange event.
*/
onValueChange?: (value: string | undefined) => void;
onValueChange?: (value: string) => void;
}
export type UseInputProps<T extends HTMLInputElement | HTMLTextAreaElement = HTMLInputElement> =
@@ -86,10 +86,17 @@ export function useInput<T extends HTMLInputElement | HTMLTextAreaElement = HTML
...otherProps
} = props;
const handleValueChange = useCallback(
(value: string | undefined) => {
onValueChange(value ?? "");
},
[onValueChange],
);
const [inputValue, setInputValue] = useControlledState<string | undefined>(
props.value,
props.defaultValue,
onValueChange,
props.value ?? undefined,
props.defaultValue ?? undefined,
handleValueChange,
);
const Component = as || "div";
@@ -227,7 +234,16 @@ export function useInput<T extends HTMLInputElement | HTMLTextAreaElement = HTML
return {
ref: domRef,
className: slots.input({class: clsx(classNames?.input, !!inputValue ? "is-filled" : "")}),
...mergeProps(focusProps, inputProps, filterDOMProps(otherProps), props),
...mergeProps(
focusProps,
inputProps,
filterDOMProps(otherProps, {
enabled: true,
labelable: true,
omitEventNames: new Set(Object.keys(inputProps)),
}),
props,
),
required: originalProps.isRequired,
"aria-readonly": dataAttr(originalProps.isReadOnly),
"aria-required": dataAttr(originalProps.isRequired),
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/kbd
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/kbd",
"version": "2.0.4",
"version": "2.0.5",
"description": "The keyboard key components indicates which key or set of keys used to execute a specificv action",
"keywords": [
"kbd"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/link
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/link",
"version": "2.0.4",
"version": "2.0.5",
"description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an &lt;a&gt;",
"keywords": [
"link"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/modal
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/modal",
"version": "2.0.4",
"version": "2.0.5",
"description": "Displays a dialog with a custom content that requires attention or provides additional information.",
"keywords": [
"modal"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/navbar
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/navbar",
"version": "2.0.4",
"version": "2.0.5",
"description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.",
"keywords": [
"navbar"
@@ -1,5 +1,18 @@
# @nextui-org/pagination
## 2.0.6
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.5
### Patch Changes
- [`8de209bf`](https://github.com/nextui-org/nextui/commit/8de209bff75e7e1b8126f89e4a5c3e6d515c316f) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Pagination warnings fixed
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/pagination",
"version": "2.0.4",
"version": "2.0.6",
"description": "The Pagination component allows you to display active page and navigate between multiple pages.",
"keywords": [
"pagination"
@@ -4,14 +4,10 @@ import {usePaginationItem, UsePaginationItemProps} from "./use-pagination-item";
export interface PaginationItemProps extends UsePaginationItemProps {}
const PaginationItem = forwardRef<"li", PaginationItemProps>(({key, ...props}, ref) => {
const PaginationItem = forwardRef<"li", PaginationItemProps>((props, ref) => {
const {Component, children, getItemProps} = usePaginationItem({...props, ref});
return (
<Component key={key} {...getItemProps()}>
{children}
</Component>
);
return <Component {...getItemProps()}>{children}</Component>;
});
PaginationItem.displayName = "NextUI.PaginationItem";
@@ -267,7 +267,7 @@ export function usePagination(originalProps: UsePaginationProps) {
...props,
ref: domRef,
role: "navigation",
ariaLabel: props["aria-label"] || "pagination navigation",
"aria-label": props["aria-label"] || "pagination navigation",
"data-slot": "base",
"data-controls": dataAttr(showControls),
"data-loop": dataAttr(loop),
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/popover
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/button@2.0.5
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/popover",
"version": "2.0.4",
"version": "2.0.5",
"description": "A popover is an overlay element positioned relative to a trigger.",
"keywords": [
"popover"
@@ -1,5 +1,12 @@
# @nextui-org/progress
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/progress",
"version": "2.0.4",
"version": "2.0.5",
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
"keywords": [
"progress"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/radio
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/radio",
"version": "2.0.4",
"version": "2.0.5",
"description": "Radios allow users to select a single option from a list of mutually exclusive options.",
"keywords": [
"radio"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/ripple
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/ripple",
"version": "2.0.4",
"version": "2.0.5",
"description": "A simple implementation to display a ripple animation when the source component is clicked",
"keywords": [
"ripple"
@@ -1,5 +1,13 @@
# @nextui-org/skeleton
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/skeleton",
"version": "2.0.4",
"version": "2.0.5",
"description": "Skeleton is used to display the loading state of some component.",
"keywords": [
"skeleton"
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/snippet
## 2.0.6
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/button@2.0.5
- @nextui-org/tooltip@2.0.6
## 2.0.5
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/snippet",
"version": "2.0.5",
"version": "2.0.6",
"description": "Display a snippet of copyable code for the command line.",
"keywords": [
"snippet"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/spacer
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/spacer",
"version": "2.0.4",
"version": "2.0.5",
"description": "A flexible spacer component designed to create consistent spacing and maintain alignment in your layout.",
"keywords": [
"spacer"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/spinner
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/system-rsc@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/spinner",
"version": "2.0.4",
"version": "2.0.5",
"description": "Loaders express an unspecified wait time or display the length of a process.",
"keywords": [
"loading",
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/switch
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/switch",
"version": "2.0.4",
"version": "2.0.5",
"description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.",
"keywords": [
"switch"
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/table
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/checkbox@2.0.5
- @nextui-org/spacer@2.0.5
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/table",
"version": "2.0.4",
"version": "2.0.5",
"description": "Tables are used to display tabular data using rows and columns. ",
"keywords": [
"table"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/tabs
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/tabs",
"version": "2.0.4",
"version": "2.0.5",
"description": "Tabs organize content into multiple sections and allow users to navigate between them.",
"keywords": [
"tabs"
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/tooltip
## 2.0.6
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.5
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/tooltip",
"version": "2.0.5",
"version": "2.0.6",
"description": "A React Component for rendering dynamically positioned Tooltips",
"keywords": [
"tooltip"
+8
View File
@@ -1,5 +1,13 @@
# @nextui-org/user
## 2.0.5
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
- @nextui-org/avatar@2.0.5
## 2.0.4
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/user",
"version": "2.0.4",
"version": "2.0.5",
"description": "Flexible User Profile Component.",
"keywords": [
"user"
+54
View File
@@ -1,5 +1,59 @@
# @nextui-org/react
## 2.0.8
### Patch Changes
- Updated dependencies [[`42001647`](https://github.com/nextui-org/nextui/commit/4200164712b6eb4b37a14fe9e005844ff770a180)]:
- @nextui-org/input@2.0.6
- @nextui-org/divider@2.0.5
- @nextui-org/modal@2.0.5
- @nextui-org/navbar@2.0.5
- @nextui-org/popover@2.0.5
- @nextui-org/tabs@2.0.5
- @nextui-org/accordion@2.0.5
- @nextui-org/dropdown@2.0.5
- @nextui-org/avatar@2.0.5
- @nextui-org/badge@2.0.5
- @nextui-org/button@2.0.5
- @nextui-org/card@2.0.5
- @nextui-org/checkbox@2.0.5
- @nextui-org/chip@2.0.5
- @nextui-org/code@2.0.5
- @nextui-org/image@2.0.5
- @nextui-org/kbd@2.0.5
- @nextui-org/link@2.0.5
- @nextui-org/pagination@2.0.6
- @nextui-org/progress@2.0.5
- @nextui-org/radio@2.0.5
- @nextui-org/skeleton@2.0.5
- @nextui-org/snippet@2.0.6
- @nextui-org/spacer@2.0.5
- @nextui-org/spinner@2.0.5
- @nextui-org/switch@2.0.5
- @nextui-org/table@2.0.5
- @nextui-org/tooltip@2.0.6
- @nextui-org/user@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`8de209bf`](https://github.com/nextui-org/nextui/commit/8de209bff75e7e1b8126f89e4a5c3e6d515c316f)]:
- @nextui-org/pagination@2.0.5
- @nextui-org/table@2.0.4
## 2.0.6
### Patch Changes
- Updated dependencies [[`ac605eb7`](https://github.com/nextui-org/nextui/commit/ac605eb71f8aa945525a1c659b7bd17037303762)]:
- @nextui-org/input@2.0.5
- @nextui-org/modal@2.0.4
- @nextui-org/navbar@2.0.4
- @nextui-org/popover@2.0.4
- @nextui-org/tabs@2.0.4
## 2.0.5
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/react",
"version": "2.0.5",
"version": "2.0.8",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",
@@ -1,5 +1,12 @@
# @nextui-org/use-real-shape
## 2.0.3
### Patch Changes
- Updated dependencies []:
- @nextui-org/react-utils@2.0.3
## 2.0.2
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-real-shape",
"version": "2.0.2",
"version": "2.0.3",
"description": "Hook that returns the real dimensions of an element",
"keywords": [
"use-real-shape"
-6
View File
@@ -1,6 +0,0 @@
import { addons } from '@storybook/addons';
import nextuiTheme from './theme.js';
addons.setConfig({
theme: nextuiTheme,
});
@@ -1 +0,0 @@
<script defer src="/_vercel/insights/script.js"></script>
+11
View File
@@ -2,6 +2,7 @@ import React from "react";
import {themes} from "@storybook/theming";
import {NextUIProvider} from "@nextui-org/system/src/provider";
import type { Preview } from '@storybook/react';
import './style.css'
const decorators: Preview['decorators'] = [
@@ -20,6 +21,12 @@ const decorators: Preview['decorators'] = [
},
]
const commonTheme = {
brandTitle: "NextUI",
brandUrl: "https://nextui.org",
brandTarget: "_self",
}
const parameters: Preview['parameters'] = {
actions: {argTypesRegex: "^on[A-Z].*"},
options: {
@@ -42,15 +49,19 @@ const parameters: Preview['parameters'] = {
classTarget: "html",
dark: {
...themes.dark,
...commonTheme,
appBg: "#161616",
barBg: "black",
background: "black",
appContentBg: "black",
appBorderRadius: 14,
brandImage: "/dark-logo.svg",
},
light: {
...themes.light,
...commonTheme,
appBorderRadius: 14,
brandImage: "/light-logo.svg",
},
},
};
-8
View File
@@ -1,8 +0,0 @@
import {create} from "@storybook/theming";
export default create({
brandTitle: "NextUI",
brandUrl: "https://nextui.org",
brandImage: "https://nextui.org/black_logo.png",
brandTarget: "_self",
});
@@ -13,7 +13,7 @@ import {link, button} from "@nextui-org/theme";
<br />
<p className="!text-base !text-foreground max-w-xl">
<p className="!text-base !text-foreground max-w-xl [&>p]:text-foreground [&>p]:text-base">
Here you can find the guidelines, components APIs and examples to help you build your next project
with NextUI.
</p>
@@ -26,7 +26,7 @@ import {link, button} from "@nextui-org/theme";
className={button({
color: "primary",
variant: "flat",
className: "!text-primary gap-1 [&>svg]:fill-none",
className: "[&>p]:text-primary gap-1 [&>svg]:fill-none",
})}
>
Website
@@ -54,7 +54,7 @@ import {link, button} from "@nextui-org/theme";
className={button({
color: "default",
variant: "bordered",
className: "!text-foreground gap-1 [&>svg]:fill-none",
className: "[&>p]:text-foreground gap-1 [&>svg]:fill-none",
})}
>
Github
@@ -82,7 +82,7 @@ import {link, button} from "@nextui-org/theme";
className={button({
color: "default",
variant: "bordered",
className: "!text-foreground gap-1 [&>svg]:fill-none",
className: "[&>p]:text-foreground gap-1 [&>svg]:fill-none",
})}
>
Discord
@@ -127,6 +127,6 @@ import {link, button} from "@nextui-org/theme";
<br />
<div class="block text-xs text-default-400">
<div class="block text-xs [&>p]:text-default-400">
Last updated on <time datetime="2023-03-07">Jul 31, 2023</time>
</div>
+5
View File
@@ -0,0 +1,5 @@
<svg width="110" height="23" viewBox="0 0 110 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M44.4154 1.42847V20.5656H42.6892L31.2113 4.54013H31.0595V20.5656H29.2856V1.42847H31.0026L42.5184 17.4726H42.6701V1.42847H44.4154ZM55.1154 20.8652C53.7558 20.8652 52.5796 20.5522 51.5867 19.9261C50.5845 19.2896 49.7867 18.3854 49.2864 17.3191C48.7458 16.2071 48.4755 14.9254 48.4755 13.4739C48.4755 12.0285 48.7458 10.7438 49.2864 9.61956C49.7777 8.55303 50.5549 7.63873 51.5346 6.97511C52.5177 6.32921 53.6779 5.99501 54.8594 6.01735C55.6418 6.01559 56.4174 6.15957 57.1455 6.44171C57.8903 6.73251 58.5643 7.17513 59.1233 7.74054C59.7375 8.36859 60.2111 9.11668 60.5133 9.9364C60.8548 10.8178 61.0256 11.8597 61.0256 13.0621V13.8845H51.257V12.4174H59.2988C59.3125 11.5551 59.1191 10.7018 58.7343 9.92715C58.3817 9.21532 57.8411 8.61011 57.1692 8.17505C56.4528 7.73954 55.6244 7.51593 54.7827 7.53084C53.9409 7.54574 53.1212 7.79852 52.4211 8.25911C51.714 8.75103 51.1472 9.41392 50.7753 10.184C50.3758 10.9999 50.1698 11.8946 50.173 12.8004V13.6788C50.173 14.8188 50.3737 15.814 50.7753 16.6643C51.14 17.4723 51.7346 18.1587 52.4872 18.6406C53.2271 19.1078 54.1029 19.3414 55.1148 19.3414C55.7355 19.3537 56.3527 19.2457 56.9312 19.0236C57.4252 18.8299 57.8738 18.5389 58.2497 18.1686C58.5941 17.8291 58.8694 17.4279 59.0606 16.9865L60.6637 17.5004C60.4272 18.128 60.0568 18.6984 59.5775 19.173C59.0432 19.7046 58.4039 20.1228 57.6992 20.4017C56.8778 20.7236 55.9995 20.8812 55.1155 20.8652H55.1154ZM65.3981 6.21273L69.1545 12.3332L72.9109 6.21273H74.8744L70.1884 13.389L74.8744 20.5653H72.9109L69.1545 14.6413L65.3981 20.5656H63.444L68.0731 13.3894L63.444 6.21311L65.3981 6.21273ZM84.1611 6.21273V7.66117H77.2079V6.21273H84.1611ZM79.3803 2.77408H81.0782V16.8185C81.0782 17.4165 81.1826 17.8853 81.3913 18.2249C81.5776 18.5448 81.8637 18.7971 82.207 18.9444C82.5461 19.0853 82.9108 19.1569 83.2789 19.1546C83.4695 19.157 83.66 19.1429 83.8481 19.1125C84.0061 19.0845 84.1452 19.0549 84.2655 19.0238L84.6258 20.5282C84.428 20.6002 84.2251 20.6579 84.0187 20.7011C83.7252 20.759 83.4263 20.7856 83.127 20.7804C82.5079 20.7806 81.8968 20.6432 81.339 20.3786C80.7686 20.1123 80.2819 19.699 79.9304 19.1825C79.5636 18.653 79.3802 17.9958 79.3802 17.2108L79.3803 2.77408ZM101.292 1.42847H103.066V14.0994C103.086 15.3247 102.765 16.532 102.136 17.5895C101.516 18.6145 100.622 19.4518 99.5514 20.0097C98.4478 20.5984 97.1656 20.8928 95.7049 20.8928C94.2504 20.8928 92.9698 20.5969 91.8632 20.0052C90.7918 19.4465 89.8963 18.6096 89.2735 17.5851C88.6445 16.5295 88.3229 15.3235 88.3439 14.0997V1.42847H90.1177V13.9779C90.1007 14.9272 90.3396 15.8639 90.8102 16.6925C91.2693 17.4843 91.9446 18.1334 92.7595 18.5661C93.5974 19.0208 94.5792 19.2482 95.7049 19.2482C96.8306 19.2482 97.8139 19.0208 98.655 18.5661C99.4714 18.1352 100.147 17.4856 100.605 16.6924C101.072 15.8628 101.31 14.9265 101.292 13.9778L101.292 1.42847ZM110 1.42847V20.5656H108.227V1.42847H110Z" fill="white"/>
<path d="M16.5441 0H5.95589C2.66654 0 0 2.66654 0 5.95589V16.5441C0 19.8335 2.66654 22.5 5.95589 22.5H16.5441C19.8335 22.5 22.5 19.8335 22.5 16.5441V5.95589C22.5 2.66654 19.8335 0 16.5441 0Z" fill="black"/>
<path d="M12.3517 6.48096H13.2266V12.8253C13.2368 13.4388 13.0782 14.0433 12.7681 14.5727C12.4623 15.086 12.0213 15.5052 11.4932 15.7846C10.9489 16.0793 10.3164 16.2267 9.59577 16.2267C8.87838 16.2267 8.24669 16.0785 7.70071 15.7822C7.17244 15.5024 6.73085 15.0833 6.42381 14.5704C6.11357 14.0418 5.95494 13.438 5.96532 12.8253V6.48096H6.84042V12.7644C6.83199 13.2397 6.94985 13.7087 7.18195 14.1236C7.40832 14.52 7.74135 14.845 8.14319 15.0617C8.5563 15.2894 9.04055 15.4032 9.59595 15.4032C10.1514 15.4032 10.6364 15.2894 11.051 15.0617C11.4536 14.846 11.7869 14.5207 12.0125 14.1236C12.2431 13.7083 12.3601 13.2394 12.3517 12.7644V6.48096ZM16.6467 6.48096V16.0629H15.7718V6.48096H16.6467Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

+5
View File
@@ -0,0 +1,5 @@
<svg width="110" height="23" viewBox="0 0 110 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M44.4154 1.42847V20.5656H42.6892L31.2113 4.54013H31.0595V20.5656H29.2856V1.42847H31.0026L42.5184 17.4726H42.6701V1.42847H44.4154ZM55.1154 20.8652C53.7558 20.8652 52.5796 20.5522 51.5867 19.9261C50.5845 19.2896 49.7867 18.3854 49.2864 17.3191C48.7458 16.2071 48.4755 14.9254 48.4755 13.4739C48.4755 12.0285 48.7458 10.7438 49.2864 9.61956C49.7777 8.55303 50.5549 7.63873 51.5346 6.97511C52.5177 6.32921 53.6779 5.99501 54.8594 6.01735C55.6418 6.01559 56.4174 6.15957 57.1455 6.44171C57.8903 6.73251 58.5643 7.17513 59.1233 7.74054C59.7375 8.36859 60.2111 9.11668 60.5133 9.9364C60.8548 10.8178 61.0256 11.8597 61.0256 13.0621V13.8845H51.257V12.4174H59.2988C59.3125 11.5551 59.1191 10.7018 58.7343 9.92715C58.3817 9.21532 57.8411 8.61011 57.1692 8.17505C56.4528 7.73954 55.6244 7.51593 54.7827 7.53084C53.9409 7.54574 53.1212 7.79852 52.4211 8.25911C51.714 8.75103 51.1472 9.41392 50.7753 10.184C50.3758 10.9999 50.1698 11.8946 50.173 12.8004V13.6788C50.173 14.8188 50.3737 15.814 50.7753 16.6643C51.14 17.4723 51.7346 18.1587 52.4872 18.6406C53.2271 19.1078 54.1029 19.3414 55.1148 19.3414C55.7355 19.3537 56.3527 19.2457 56.9312 19.0236C57.4252 18.8299 57.8738 18.5389 58.2497 18.1686C58.5941 17.8291 58.8694 17.4279 59.0606 16.9865L60.6637 17.5004C60.4272 18.128 60.0568 18.6984 59.5775 19.173C59.0432 19.7046 58.4039 20.1228 57.6992 20.4017C56.8778 20.7236 55.9995 20.8812 55.1155 20.8652H55.1154ZM65.3981 6.21273L69.1545 12.3332L72.9109 6.21273H74.8744L70.1884 13.389L74.8744 20.5653H72.9109L69.1545 14.6413L65.3981 20.5656H63.444L68.0731 13.3894L63.444 6.21311L65.3981 6.21273ZM84.1611 6.21273V7.66117H77.2079V6.21273H84.1611ZM79.3803 2.77408H81.0782V16.8185C81.0782 17.4165 81.1826 17.8853 81.3913 18.2249C81.5776 18.5448 81.8637 18.7971 82.207 18.9444C82.5461 19.0853 82.9108 19.1569 83.2789 19.1546C83.4695 19.157 83.66 19.1429 83.8481 19.1125C84.0061 19.0845 84.1452 19.0549 84.2655 19.0238L84.6258 20.5282C84.428 20.6002 84.2251 20.6579 84.0187 20.7011C83.7252 20.759 83.4263 20.7856 83.127 20.7804C82.5079 20.7806 81.8968 20.6432 81.339 20.3786C80.7686 20.1123 80.2819 19.699 79.9304 19.1825C79.5636 18.653 79.3802 17.9958 79.3802 17.2108L79.3803 2.77408ZM101.292 1.42847H103.066V14.0994C103.086 15.3247 102.765 16.532 102.136 17.5895C101.516 18.6145 100.622 19.4518 99.5514 20.0097C98.4478 20.5984 97.1656 20.8928 95.7049 20.8928C94.2504 20.8928 92.9698 20.5969 91.8632 20.0052C90.7918 19.4465 89.8963 18.6096 89.2735 17.5851C88.6445 16.5295 88.3229 15.3235 88.3439 14.0997V1.42847H90.1177V13.9779C90.1007 14.9272 90.3396 15.8639 90.8102 16.6925C91.2693 17.4843 91.9446 18.1334 92.7595 18.5661C93.5974 19.0208 94.5792 19.2482 95.7049 19.2482C96.8306 19.2482 97.8139 19.0208 98.655 18.5661C99.4714 18.1352 100.147 17.4856 100.605 16.6924C101.072 15.8628 101.31 14.9265 101.292 13.9778L101.292 1.42847ZM110 1.42847V20.5656H108.227V1.42847H110Z" fill="black"/>
<path d="M16.5441 0H5.95589C2.66654 0 0 2.66654 0 5.95589V16.5441C0 19.8335 2.66654 22.5 5.95589 22.5H16.5441C19.8335 22.5 22.5 19.8335 22.5 16.5441V5.95589C22.5 2.66654 19.8335 0 16.5441 0Z" fill="black"/>
<path d="M12.3517 6.48096H13.2266V12.8253C13.2368 13.4388 13.0782 14.0433 12.7681 14.5727C12.4623 15.086 12.0213 15.5052 11.4932 15.7846C10.9489 16.0793 10.3164 16.2267 9.59577 16.2267C8.87838 16.2267 8.24669 16.0785 7.70071 15.7822C7.17244 15.5024 6.73085 15.0833 6.42381 14.5704C6.11357 14.0418 5.95494 13.438 5.96532 12.8253V6.48096H6.84042V12.7644C6.83199 13.2397 6.94985 13.7087 7.18195 14.1236C7.40832 14.52 7.74135 14.845 8.14319 15.0617C8.5563 15.2894 9.04055 15.4032 9.59595 15.4032C10.1514 15.4032 10.6364 15.2894 11.051 15.0617C11.4536 14.846 11.7869 14.5207 12.0125 14.1236C12.2431 13.7083 12.3601 13.2394 12.3517 12.7644V6.48096ZM16.6467 6.48096V16.0629H15.7718V6.48096H16.6467Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
"use strict";(self.webpackChunk_nextui_org_storybook=self.webpackChunk_nextui_org_storybook||[]).push([[264],{"../../node_modules/.pnpm/@storybook+preview-web@6.5.16_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/preview-web/dist/esm/renderDocs.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{renderDocs:()=>renderDocs,unmountDocs:()=>unmountDocs});__webpack_require__("../../node_modules/.pnpm/regenerator-runtime@0.13.11/node_modules/regenerator-runtime/runtime.js"),__webpack_require__("../../node_modules/.pnpm/core-js@3.31.0/node_modules/core-js/modules/es.object.to-string.js"),__webpack_require__("../../node_modules/.pnpm/core-js@3.31.0/node_modules/core-js/modules/es.promise.js");var react=__webpack_require__("../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),react_dom=__webpack_require__("../../node_modules/.pnpm/react-dom@18.2.0_react@18.2.0/node_modules/react-dom/index.js"),wrapper={fontSize:"14px",letterSpacing:"0.2px",margin:"10px 0"},main={margin:"auto",padding:30,borderRadius:10,background:"rgba(0,0,0,0.03)"},heading={textAlign:"center"},NoDocs=function NoDocs(){return react.createElement("div",{style:wrapper,className:"sb-nodocs sb-wrapper"},react.createElement("div",{style:main},react.createElement("h1",{style:heading},"No Docs"),react.createElement("p",null,"Sorry, but there are no docs for the selected story. To add them, set the story's ",react.createElement("code",null,"docs")," parameter. If you think this is an error:"),react.createElement("ul",null,react.createElement("li",null,"Please check the story definition."),react.createElement("li",null,"Please check the Storybook config."),react.createElement("li",null,"Try reloading the page.")),react.createElement("p",null,"If the problem persists, check the browser console, or the terminal you've run Storybook from.")))};function asyncGeneratorStep(gen,resolve,reject,_next,_throw,key,arg){try{var info=gen[key](arg),value=info.value}catch(error){return void reject(error)}info.done?resolve(value):Promise.resolve(value).then(_next,_throw)}function renderDocs(story,docsContext,element,callback){return function renderDocsAsync(_x,_x2,_x3){return _renderDocsAsync.apply(this,arguments)}(story,docsContext,element).then(callback)}function _renderDocsAsync(){return _renderDocsAsync=function _asyncToGenerator(fn){return function(){var self=this,args=arguments;return new Promise((function(resolve,reject){var gen=fn.apply(self,args);function _next(value){asyncGeneratorStep(gen,resolve,reject,_next,_throw,"next",value)}function _throw(err){asyncGeneratorStep(gen,resolve,reject,_next,_throw,"throw",err)}_next(void 0)}))}}(regeneratorRuntime.mark((function _callee(story,docsContext,element){var _docs$getContainer,_docs$getPage,docs,DocsContainer,Page,docsElement;return regeneratorRuntime.wrap((function _callee$(_context){for(;;)switch(_context.prev=_context.next){case 0:if(!(null!=(docs=story.parameters.docs)&&docs.getPage||null!=docs&&docs.page)||(null!=docs&&docs.getContainer||null!=docs&&docs.container)){_context.next=3;break}throw new Error("No `docs.container` set, did you run `addon-docs/preset`?");case 3:if(_context.t1=docs.container,_context.t1){_context.next=8;break}return _context.next=7,null===(_docs$getContainer=docs.getContainer)||void 0===_docs$getContainer?void 0:_docs$getContainer.call(docs);case 7:_context.t1=_context.sent;case 8:if(_context.t0=_context.t1,_context.t0){_context.next=11;break}_context.t0=function(_ref){var children=_ref.children;return react.createElement(react.Fragment,null,children)};case 11:if(DocsContainer=_context.t0,_context.t3=docs.page,_context.t3){_context.next=17;break}return _context.next=16,null===(_docs$getPage=docs.getPage)||void 0===_docs$getPage?void 0:_docs$getPage.call(docs);case 16:_context.t3=_context.sent;case 17:if(_context.t2=_context.t3,_context.t2){_context.next=20;break}_context.t2=NoDocs;case 20:return Page=_context.t2,docsElement=react.createElement(DocsContainer,{key:story.componentId,context:docsContext},react.createElement(Page,null)),_context.next=24,new Promise((function(resolve){react_dom.render(docsElement,element,resolve)}));case 24:case"end":return _context.stop()}}),_callee)}))),_renderDocsAsync.apply(this,arguments)}function unmountDocs(element){react_dom.unmountComponentAtNode(element)}NoDocs.displayName="NoDocs"}}]);
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,97 +0,0 @@
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/
/*!
* Fuse.js v3.6.1 - Lightweight fuzzy-search (http://fusejs.io)
*
* Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)
* All Rights Reserved. Apache Software License 2.0
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
/*!
* https://github.com/es-shims/es5-shim
* @license es5-shim Copyright 2009-2020 by contributors, MIT License
* see https://github.com/es-shims/es5-shim/blob/master/LICENSE
*/
/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/
/*! *****************************************************************************
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */
/*! store2 - v2.13.1 - 2021-12-20
* Copyright (c) 2021 Nathan Bubna; Licensed (MIT OR GPL-3.0) */
/**
* @license React
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* React Router DOM v6.0.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
/**
* React Router v6.0.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
File diff suppressed because one or more lines are too long
@@ -1,31 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
File diff suppressed because one or more lines are too long
@@ -1,31 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
@@ -1 +0,0 @@
"use strict";(self.webpackChunk_nextui_org_storybook=self.webpackChunk_nextui_org_storybook||[]).push([[520],{"../../node_modules/.pnpm/react-dom@18.2.0_react@18.2.0/node_modules/react-dom/client.js":(__unused_webpack_module,exports,__webpack_require__)=>{var m=__webpack_require__("../../node_modules/.pnpm/react-dom@18.2.0_react@18.2.0/node_modules/react-dom/index.js");exports.createRoot=m.createRoot,exports.hydrateRoot=m.hydrateRoot}}]);
File diff suppressed because one or more lines are too long
@@ -1,12 +0,0 @@
/*!
* OverlayScrollbars
* https://github.com/KingSora/OverlayScrollbars
*
* Version: 1.13.0
*
* Copyright KingSora | Rene Haas.
* https://github.com/KingSora
*
* Released under the MIT license.
* Date: 02.08.2020
*/
File diff suppressed because one or more lines are too long
@@ -1,12 +0,0 @@
/*!
* OverlayScrollbars
* https://github.com/KingSora/OverlayScrollbars
*
* Version: 1.13.0
*
* Copyright KingSora | Rene Haas.
* https://github.com/KingSora
*
* Released under the MIT license.
* Date: 02.08.2020
*/
@@ -1 +0,0 @@
(self.webpackChunk_nextui_org_storybook=self.webpackChunk_nextui_org_storybook||[]).push([[720],{85720:module=>{module.exports=function(e,n){return n=n||{},new Promise((function(t,r){var s=new XMLHttpRequest,o=[],u=[],i={},a=function(){return{ok:2==(s.status/100|0),statusText:s.statusText,status:s.status,url:s.responseURL,text:function(){return Promise.resolve(s.responseText)},json:function(){return Promise.resolve(s.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([s.response]))},clone:a,headers:{keys:function(){return o},entries:function(){return u},get:function(e){return i[e.toLowerCase()]},has:function(e){return e.toLowerCase()in i}}}};for(var l in s.open(n.method||"get",e,!0),s.onload=function(){s.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,(function(e,n,t){o.push(n=n.toLowerCase()),u.push([n,t]),i[n]=i[n]?i[n]+","+t:t})),t(a())},s.onerror=r,s.withCredentials="include"==n.credentials,n.headers)s.setRequestHeader(l,n.headers[l]);s.send(n.body||null)}))}}}]);

Some files were not shown because too many files have changed in this diff Show More