Compare commits

..

8 Commits

Author SHA1 Message Date
Junior Garcia
b421f65514 ci(changesets): version packages 2025-11-30 16:17:20 +00:00
Hayato Hasegawa
b4cfb408e9
fix(autocomplete): show popover when emptyContent is provided with allowsCustomValue (#5951)
* fix(autocomplete): show popover when emptyContent is provided with allowsCustomValue

* chore(autocomplete): remove deprecated story with custom emptyContent and allowsCustomValue

* chore: add changeset
2025-12-01 00:12:59 +08:00
Hayato Hasegawa
66ef76e823
fix(link): resolve issue where useHref is not working correctly (#5933)
* fix(link): correct props merge order in use-link to apply useHref

* chore(link): add changeset

* test(link): adjust href assertion to use getAttribute for compatibility

* fix(link): use routerLinkProps.href in handleLinkClick for consistency

* fix(link): process href with useHref before passing to useLinkProps

* test(link): comment out useHref provider test

* Revert "test(link): comment out useHref provider test"

This reverts commit de053f835fa57becf6e807a64c17339fc61d8689.

* Revert "fix(link): process href with useHref before passing to useLinkProps"

This reverts commit 81e5f7b8d1ea7002b9718cf521b5c6f2af79ac42.

* fix(provider): add `useHref` to provider context and integrate with `useLink`

* test(link): comment out useHref provider test

* fix(link): correct href handling in link component and update tests

* fix(link): simplify props handling by removing resolvedProps logic and reorder mergeProps usage

* fix(provider): remove `useHref` from provider context and related logic

* refactor(link): add spacing

* chore(changeset): add issue numbers

---------

Co-authored-by: WK Wong <wingkwong.code@gmail.com>
2025-11-28 18:34:17 +08:00
WK
0825f88cd2
fix(spinner): cater global spinner variant (#5948)
* fix(spinner): cater global spinner variant

* feat(spinner): add spinner test cases

* chore(changeset): add changeset
2025-11-26 16:46:34 +08:00
WK
ce0c298785
fix(number-input): lable position for empty percent format (#5945)
* fix(number-input): lable position for empty percent format

* chore(changeset): fix typo
2025-11-26 13:56:48 +08:00
WK
4fa54534b2
fix(radio): handle props styles in getBaseProps (#5944)
* fix(radio): handle props styles in getBaseProps

* refactor(radio): examples
2025-11-26 13:55:37 +08:00
WK
484212712c
chore(deps): bump posthog-js (#5937) 2025-11-25 10:41:59 +08:00
WK
217e88d58e
fix(docs): incorrect date value type in api (#5936)
* fix(docs): incorrect date value type in api

* chore(docs): revise types
2025-11-25 01:23:45 +08:00
25 changed files with 176 additions and 60 deletions

View File

@ -15,12 +15,13 @@ export const CustomRadio = (props) => {
return (
<Component
{...getBaseProps()}
className={cn(
"group inline-flex items-center hover:opacity-70 active:opacity-50 justify-between flex-row-reverse tap-highlight-transparent",
"max-w-[300px] cursor-pointer border-2 border-default rounded-lg gap-4 p-4",
"data-[selected=true]:border-primary",
)}
{...getBaseProps({
className: cn(
"group inline-flex items-center hover:opacity-70 active:opacity-50 justify-between flex-row-reverse tap-highlight-transparent m-0",
"max-w-[300px] cursor-pointer border-2 border-default rounded-lg gap-4 p-4",
"data-[selected=true]:border-primary",
),
})}
>
<VisuallyHidden>
<input {...getInputProps()} />

View File

@ -18,12 +18,13 @@ export const CustomRadio = (props: RadioProps) => {
return (
<Component
{...getBaseProps()}
className={cn(
"group inline-flex items-center justify-between hover:bg-content2 flex-row-reverse",
"max-w-[300px] cursor-pointer border-2 border-default rounded-lg gap-4 p-4",
"data-[selected=true]:border-primary",
)}
{...getBaseProps({
className: cn(
"group inline-flex items-center hover:opacity-70 active:opacity-50 justify-between flex-row-reverse tap-highlight-transparent m-0",
"max-w-[300px] cursor-pointer border-2 border-default rounded-lg gap-4 p-4",
"data-[selected=true]:border-primary",
),
})}
>
<VisuallyHidden>
<input {...getInputProps()} />

View File

@ -329,7 +329,7 @@ import {I18nProvider} from "@react-aria/i18n";
},
{
attribute: "value",
type: "ZonedDateTime | CalendarDate | CalendarDateTime | undefined | null",
type: "DateValue | null",
description: "The current value of the date-picker (controlled).",
default: "-"
},
@ -359,13 +359,13 @@ import {I18nProvider} from "@react-aria/i18n";
},
{
attribute: "defaultValue",
type: "string",
type: "DateValue | null",
description: "The default value of the date-picker (uncontrolled).",
default: "-"
},
{
attribute: "placeholderValue",
type: "ZonedDateTime | CalendarDate | CalendarDateTime | undefined | null",
type: "DateValue | null",
description: "The placeholder of the date-picker.",
default: "-"
},

View File

@ -376,7 +376,7 @@ You can customize the `DateRangePicker` component by passing custom Tailwind CSS
},
{
attribute: "value",
type: "RangeValue<CalendarDate | CalendarDateTime | ZonedDateTime> | undefined | null",
type: "RangeValue<DateValue> | null",
description: "The current value of the date-range-picker (controlled).",
default: "-"
},
@ -406,25 +406,25 @@ You can customize the `DateRangePicker` component by passing custom Tailwind CSS
},
{
attribute: "minValue",
type: "RangeValue<CalendarDate | CalendarDateTime | ZonedDateTime> | undefined | null",
type: "DateValue | null",
description: "The minimum value of the date-range-picker.",
default: "-"
},
{
attribute: "maxValue",
type: "RangeValue<CalendarDate | CalendarDateTime | ZonedDateTime> | undefined | null",
type: "DateValue | null",
description: "The maximum value of the date-range-picker.",
default: "-"
},
{
attribute: "defaultValue",
type: "string",
type: "RangeValue<DateValue> | null",
description: "The default value of the date-range-picker (uncontrolled).",
default: "-"
},
{
attribute: "placeholderValue",
type: "ZonedDateTime | CalendarDate | CalendarDateTime | undefined | null",
type: "DateValue | null",
description: "The placeholder of the date-range-picker.",
default: "-"
},

View File

@ -62,7 +62,7 @@
"next-contentlayer2": "0.5.8",
"next-themes": "0.4.6",
"parse-numeric-range": "1.2.0",
"posthog-js": "1.197.0",
"posthog-js": "1.298.0",
"prism-react-renderer": "^1.2.1",
"react": "18.3.0",
"react-colorful": "^5.6.1",

View File

@ -4,6 +4,8 @@
### Patch Changes
- [#5951](https://github.com/heroui-inc/heroui/pull/5951) [`b4cfb40`](https://github.com/heroui-inc/heroui/commit/b4cfb408e963c1131ea3beb58aac7821a0ef52a9) Thanks [@hasegawa-101](https://github.com/hasegawa-101)! - show popover when emptyContent is provided with allowsCustomValue (#5745)
- [#5827](https://github.com/heroui-inc/heroui/pull/5827) [`2922b35`](https://github.com/heroui-inc/heroui/commit/2922b35644d8136d593ce08cccf9c78c08d00e0f) Thanks [@wingkwong](https://github.com/wingkwong)! - fix close button display in autocomplete on mobile (#5826)
- Updated dependencies [[`fd9dd2a`](https://github.com/heroui-inc/heroui/commit/fd9dd2a20c30beb4f46a8a6ab5d654ec7b9dbec1)]:

View File

@ -3,7 +3,7 @@ import type {UserEvent} from "@testing-library/user-event";
import type {AutocompleteProps} from "../src";
import * as React from "react";
import {within, render, renderHook, act} from "@testing-library/react";
import {within, render, renderHook, act, waitFor} from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import {spy, shouldIgnoreReactWarning} from "@heroui/test-utils";
import {useForm} from "react-hook-form";
@ -1089,3 +1089,63 @@ describe("focusedKey management with selected key", () => {
expect(optionItem).toHaveAttribute("data-focus", "true");
});
});
describe("Autocomplete with allowsCustomValue", () => {
let user: UserEvent;
beforeEach(() => {
user = userEvent.setup();
});
it("should show the empty content when allowsCustomValue is true and a custom emptyContent is provided", async () => {
const wrapper = render(
<Autocomplete
allowsCustomValue
aria-label="Favorite Animal"
data-testid="autocomplete"
defaultItems={[]}
label="Favorite Animal"
listboxProps={{
emptyContent: <div data-testid="empty-content">No animals found</div>,
}}
>
{(item: Item) => <AutocompleteItem key={item.value}>{item.label}</AutocompleteItem>}
</Autocomplete>,
);
const input = wrapper.getByTestId("autocomplete");
await user.click(input);
act(() => {
jest.runAllTimers();
});
const emptyContent = wrapper.getByTestId("empty-content");
await waitFor(() => {
expect(emptyContent).toBeVisible();
});
});
it("should not show the empty content when allowsCustomValue is true and no custom emptyContent is provided", async () => {
const wrapper = render(
<Autocomplete
allowsCustomValue
aria-label="Favorite Animal"
defaultItems={[]}
label="Favorite Animal"
>
{(item: Item) => <AutocompleteItem key={item.value}>{item.label}</AutocompleteItem>}
</Autocomplete>,
);
const input = wrapper.getByRole("combobox");
await user.click(input);
const listbox = wrapper.queryByRole("listbox");
expect(listbox).toBeNull();
});
});

View File

@ -297,7 +297,7 @@ export function useAutocomplete<T extends object>(originalProps: UseAutocomplete
),
listboxProps: mergeProps(
{
hideEmptyContent: allowsCustomValue,
hideEmptyContent: allowsCustomValue && !listboxProps?.emptyContent,
emptyContent: "No results found.",
disableAnimation,
},

View File

@ -6,7 +6,7 @@
- [#5893](https://github.com/heroui-inc/heroui/pull/5893) [`fd9dd2a`](https://github.com/heroui-inc/heroui/commit/fd9dd2a20c30beb4f46a8a6ab5d654ec7b9dbec1) Thanks [@hasegawa-101](https://github.com/hasegawa-101)! - Fix bordered focus styles overridden by hover styles (#5585)
- Updated dependencies [[`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c), [`91e010f`](https://github.com/heroui-inc/heroui/commit/91e010fe3bd8e49653bd53c47e9955d8b11c1db2)]:
- Updated dependencies [[`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c), [`91e010f`](https://github.com/heroui-inc/heroui/commit/91e010fe3bd8e49653bd53c47e9955d8b11c1db2), [`0825f88`](https://github.com/heroui-inc/heroui/commit/0825f88cd2bfd1b6638a23b8d21f8812576f84a7)]:
- @heroui/spinner@2.2.25
- @heroui/ripple@2.2.21

View File

@ -1,5 +1,11 @@
# @heroui/link
## 2.2.24
### Patch Changes
- [#5933](https://github.com/heroui-inc/heroui/pull/5933) [`66ef76e`](https://github.com/heroui-inc/heroui/commit/66ef76e823ed6329b1d2e3c3b9d83721db12fdcf) Thanks [@hasegawa-101](https://github.com/hasegawa-101)! - Fix an issue where the useHref was not being applied correctly (#5925, #5431, #5600)
## 2.2.23
### Patch Changes

View File

@ -3,6 +3,7 @@ import type {UserEvent} from "@testing-library/user-event";
import * as React from "react";
import {render} from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import {HeroUIProvider} from "@heroui/system";
import {Link} from "../src";
@ -84,4 +85,17 @@ describe("Link", () => {
expect(container.querySelector("button")?.getAttribute("role")).toBe("link");
});
it("should apply useHref from provider", () => {
const useHref = (href: string) => `/example${href}`;
const {getByRole} = render(
<HeroUIProvider navigate={jest.fn()} useHref={useHref}>
<Link href="/test">Test Link</Link>
</HeroUIProvider>,
);
const link = getByRole("link");
expect(link.getAttribute("href")).toBe("/example/test");
});
});

View File

@ -1,6 +1,6 @@
{
"name": "@heroui/link",
"version": "2.2.23",
"version": "2.2.24",
"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"

View File

@ -110,7 +110,7 @@ export function useLink(originalProps: UseLinkProps) {
"data-focus": dataAttr(isFocused),
"data-disabled": dataAttr(originalProps.isDisabled),
"data-focus-visible": dataAttr(isFocusVisible),
...mergeProps(focusProps, linkProps, otherProps),
...mergeProps(focusProps, otherProps, linkProps),
};
}, [styles, isFocused, isFocusVisible, focusProps, linkProps, otherProps]);

View File

@ -6,6 +6,8 @@
- [#5866](https://github.com/heroui-inc/heroui/pull/5866) [`bdd37b4`](https://github.com/heroui-inc/heroui/commit/bdd37b4b08cc12dc3c93f031aa639148257d06d6) Thanks [@KumJungMin](https://github.com/KumJungMin)! - allow inheriting labelPlacement from HeroUIProvider (#5845)
- [#5945](https://github.com/heroui-inc/heroui/pull/5945) [`ce0c298`](https://github.com/heroui-inc/heroui/commit/ce0c2987859a3fe0adc831eaef81ab018edadc11) Thanks [@wingkwong](https://github.com/wingkwong)! - fix label position for empty percent format (#5941)
- Updated dependencies [[`fd9dd2a`](https://github.com/heroui-inc/heroui/commit/fd9dd2a20c30beb4f46a8a6ab5d654ec7b9dbec1)]:
- @heroui/button@2.2.28
- @heroui/form@2.1.28

View File

@ -155,7 +155,7 @@ export function useNumberInput(originalProps: UseNumberInputProps) {
const inputValue = isNaN(state.numberValue) ? "" : state.numberValue;
const isFilled = !isEmpty(inputValue);
const isFilled = !isEmpty(state.inputValue) && !isEmpty(inputValue);
const isFilledWithin = isFilled || isFocusWithin;

View File

@ -4,6 +4,8 @@
### Patch Changes
- [#5944](https://github.com/heroui-inc/heroui/pull/5944) [`4fa5453`](https://github.com/heroui-inc/heroui/commit/4fa54534b2596ca2e46c69945c34894d1da14fab) Thanks [@wingkwong](https://github.com/wingkwong)! - handle props styles in getBaseProps (#5942)
- Updated dependencies []:
- @heroui/form@2.1.28

View File

@ -156,7 +156,7 @@ export function useRadio(props: UseRadioProps) {
return {
...props,
ref: domRef,
className: slots.base({class: baseStyles}),
className: slots.base({class: clsx(baseStyles, props?.className)}),
"data-disabled": dataAttr(isDisabled),
"data-focus": dataAttr(isFocused),
"data-focus-visible": dataAttr(isFocusVisible),

View File

@ -4,11 +4,11 @@ import type {RadioProps, RadioGroupProps} from "../src";
import React from "react";
import {VisuallyHidden} from "@react-aria/visually-hidden";
import {radio, button} from "@heroui/theme";
import {radio, button, cn} from "@heroui/theme";
import {clsx} from "@heroui/shared-utils";
import {Form} from "@heroui/form";
import {RadioGroup, Radio, useRadio, useRadioGroupContext} from "../src";
import {RadioGroup, Radio, useRadio} from "../src";
export default {
title: "Components/RadioGroup",
@ -360,19 +360,14 @@ export const Controlled = {
const CustomRadio = (props: RadioProps) => {
const {children, ...otherProps} = props;
const {groupState} = useRadioGroupContext();
const isSelected = groupState.selectedValue === otherProps.value;
return (
<Radio
{...otherProps}
classNames={{
base: clsx(
"inline-flex bg-content1 hover:bg-content2 items-center justify-between flex-row-reverse max-w-[300px] cursor-pointer rounded-lg gap-4 p-4 border-2 border-transparent",
{
"border-primary": isSelected,
},
base: cn(
"inline-flex m-0 bg-content1 hover:bg-content2 items-center justify-between",
"flex-row-reverse max-w-[300px] cursor-pointer rounded-lg gap-4 p-4 border-2 border-transparent",
"data-[selected=true]:border-primary",
),
}}
>
@ -401,7 +396,6 @@ const RadioCard = (props: RadioProps) => {
const {
Component,
children,
isSelected,
description,
getBaseProps,
getWrapperProps,
@ -413,13 +407,13 @@ const RadioCard = (props: RadioProps) => {
return (
<Component
{...getBaseProps()}
className={clsx(
"group inline-flex items-center justify-between hover:bg-content2 flex-row-reverse max-w-[300px] cursor-pointer border-2 border-default rounded-lg gap-4 p-4",
{
"border-primary": isSelected,
},
)}
{...getBaseProps({
className: cn(
"group inline-flex items-center hover:opacity-70 active:opacity-50 justify-between flex-row-reverse tap-highlight-transparent m-0",
"max-w-[300px] cursor-pointer border-2 border-default rounded-lg gap-4 p-4",
"data-[selected=true]:border-primary",
),
})}
>
<VisuallyHidden>
<input {...getInputProps()} />

View File

@ -6,7 +6,7 @@
- [#5893](https://github.com/heroui-inc/heroui/pull/5893) [`fd9dd2a`](https://github.com/heroui-inc/heroui/commit/fd9dd2a20c30beb4f46a8a6ab5d654ec7b9dbec1) Thanks [@hasegawa-101](https://github.com/hasegawa-101)! - Fix bordered focus styles overridden by hover styles (#5585)
- Updated dependencies [[`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c)]:
- Updated dependencies [[`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c), [`0825f88`](https://github.com/heroui-inc/heroui/commit/0825f88cd2bfd1b6638a23b8d21f8812576f84a7)]:
- @heroui/spinner@2.2.25
- @heroui/form@2.1.28
- @heroui/listbox@2.3.26

View File

@ -6,6 +6,8 @@
- [#5815](https://github.com/heroui-inc/heroui/pull/5815) [`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c) Thanks [@Vishesh-Verma-07](https://github.com/Vishesh-Verma-07)! - Fix spinner animation (#5794)
- [#5948](https://github.com/heroui-inc/heroui/pull/5948) [`0825f88`](https://github.com/heroui-inc/heroui/commit/0825f88cd2bfd1b6638a23b8d21f8812576f84a7) Thanks [@wingkwong](https://github.com/wingkwong)! - cater global spinner variant (#5939)
- Updated dependencies []:
- @heroui/system-rsc@2.3.20

View File

@ -1,5 +1,6 @@
import * as React from "react";
import {render} from "@testing-library/react";
import {HeroUIProvider} from "@heroui/system";
import {Spinner} from "../src";
@ -40,4 +41,24 @@ describe("Spinner", () => {
expect(getByLabelText("Custom label")).toBeInTheDocument();
});
it("should use global spinner variant if variant is not defined", () => {
const {container} = render(
<HeroUIProvider spinnerVariant="gradient">
<Spinner aria-label="Custom label" />
</HeroUIProvider>,
);
expect(container.querySelector("[class*='gradient']")).toBeInTheDocument();
});
it("should not use global spinner variant if variant is defined", () => {
const {container} = render(
<HeroUIProvider spinnerVariant="gradient">
<Spinner aria-label="Custom label" variant="default" />
</HeroUIProvider>,
);
expect(container.querySelector("[class*='gradient']")).not.toBeInTheDocument();
});
});

View File

@ -45,7 +45,10 @@ export function useSpinner(originalProps: UseSpinnerProps) {
const {children, className, classNames, label: labelProp, ...otherProps} = props;
const slots = useMemo(() => spinner({...variantProps}), [objectToDeps(variantProps)]);
const slots = useMemo(
() => spinner({...variantProps, variant}),
[objectToDeps(variantProps), variant],
);
const baseStyles = clsx(classNames?.base, className);

View File

@ -4,7 +4,7 @@
### Patch Changes
- Updated dependencies [[`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c)]:
- Updated dependencies [[`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c), [`0825f88`](https://github.com/heroui-inc/heroui/commit/0825f88cd2bfd1b6638a23b8d21f8812576f84a7)]:
- @heroui/spinner@2.2.25
## 2.0.17

View File

@ -4,17 +4,20 @@
### Patch Changes
- Updated dependencies [[`bdd37b4`](https://github.com/heroui-inc/heroui/commit/bdd37b4b08cc12dc3c93f031aa639148257d06d6), [`8921dc4`](https://github.com/heroui-inc/heroui/commit/8921dc4361f7cdb8cbce755e8b90fdd799b668da), [`b38a2cf`](https://github.com/heroui-inc/heroui/commit/b38a2cfb58feb79b3baff10eff19e21480da1563), [`2922b35`](https://github.com/heroui-inc/heroui/commit/2922b35644d8136d593ce08cccf9c78c08d00e0f), [`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c), [`5d9a05b`](https://github.com/heroui-inc/heroui/commit/5d9a05be01fea1a66ed47ec4b4d9a9a442560341), [`91e010f`](https://github.com/heroui-inc/heroui/commit/91e010fe3bd8e49653bd53c47e9955d8b11c1db2), [`fd9dd2a`](https://github.com/heroui-inc/heroui/commit/fd9dd2a20c30beb4f46a8a6ab5d654ec7b9dbec1), [`bc4c982`](https://github.com/heroui-inc/heroui/commit/bc4c9826097a1014939b691425d30eff998d1e2e)]:
- Updated dependencies [[`bdd37b4`](https://github.com/heroui-inc/heroui/commit/bdd37b4b08cc12dc3c93f031aa639148257d06d6), [`b4cfb40`](https://github.com/heroui-inc/heroui/commit/b4cfb408e963c1131ea3beb58aac7821a0ef52a9), [`8921dc4`](https://github.com/heroui-inc/heroui/commit/8921dc4361f7cdb8cbce755e8b90fdd799b668da), [`ce0c298`](https://github.com/heroui-inc/heroui/commit/ce0c2987859a3fe0adc831eaef81ab018edadc11), [`b38a2cf`](https://github.com/heroui-inc/heroui/commit/b38a2cfb58feb79b3baff10eff19e21480da1563), [`2922b35`](https://github.com/heroui-inc/heroui/commit/2922b35644d8136d593ce08cccf9c78c08d00e0f), [`1782961`](https://github.com/heroui-inc/heroui/commit/17829618591d723beea665a7c56d9c45a112e24c), [`5d9a05b`](https://github.com/heroui-inc/heroui/commit/5d9a05be01fea1a66ed47ec4b4d9a9a442560341), [`91e010f`](https://github.com/heroui-inc/heroui/commit/91e010fe3bd8e49653bd53c47e9955d8b11c1db2), [`0825f88`](https://github.com/heroui-inc/heroui/commit/0825f88cd2bfd1b6638a23b8d21f8812576f84a7), [`fd9dd2a`](https://github.com/heroui-inc/heroui/commit/fd9dd2a20c30beb4f46a8a6ab5d654ec7b9dbec1), [`66ef76e`](https://github.com/heroui-inc/heroui/commit/66ef76e823ed6329b1d2e3c3b9d83721db12fdcf), [`bc4c982`](https://github.com/heroui-inc/heroui/commit/bc4c9826097a1014939b691425d30eff998d1e2e), [`4fa5453`](https://github.com/heroui-inc/heroui/commit/4fa54534b2596ca2e46c69945c34894d1da14fab)]:
- @heroui/number-input@2.0.19
- @heroui/autocomplete@2.3.30
- @heroui/theme@2.4.24
- @heroui/tabs@2.2.25
- @heroui/autocomplete@2.3.30
- @heroui/spinner@2.2.25
- @heroui/ripple@2.2.21
- @heroui/button@2.2.28
- @heroui/select@2.4.29
- @heroui/input@2.4.29
- @heroui/link@2.2.24
- @heroui/skeleton@2.2.18
- @heroui/radio@2.3.28
- @heroui/modal@2.2.24
- @heroui/accordion@2.2.24
- @heroui/alert@2.2.28
- @heroui/avatar@2.2.22
@ -34,15 +37,12 @@
- @heroui/image@2.2.17
- @heroui/input-otp@2.1.28
- @heroui/kbd@2.2.22
- @heroui/link@2.2.23
- @heroui/listbox@2.3.26
- @heroui/menu@2.2.26
- @heroui/modal@2.2.24
- @heroui/navbar@2.2.25
- @heroui/pagination@2.2.24
- @heroui/popover@2.3.28
- @heroui/progress@2.2.22
- @heroui/radio@2.3.28
- @heroui/scroll-shadow@2.3.18
- @heroui/slider@2.4.24
- @heroui/snippet@2.2.29

18
pnpm-lock.yaml generated
View File

@ -413,8 +413,8 @@ importers:
specifier: 1.2.0
version: 1.2.0
posthog-js:
specifier: 1.197.0
version: 1.197.0
specifier: 1.298.0
version: 1.298.0
prism-react-renderer:
specifier: ^1.2.1
version: 1.3.5(react@18.3.0)
@ -6715,6 +6715,9 @@ packages:
'@polka/url@1.0.0-next.29':
resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
'@posthog/core@1.6.0':
resolution: {integrity: sha512-Tbh8UACwbb7jFdDC7wwXHtfNzO+4wKh3VbyMHmp2UBe6w1jliJixexTJNfkqdGZm+ht3M10mcKvGGPnoZ2zLBg==}
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
@ -13144,8 +13147,8 @@ packages:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
posthog-js@1.197.0:
resolution: {integrity: sha512-tvzx47x/vn/XoDTrZsn2f1WbswuwnesDmihdMpbTuxHapfNH4Jp7aV3XCs6hT0Qujo4MNG3nB/kap33FpWatDA==}
posthog-js@1.298.0:
resolution: {integrity: sha512-Zwzsf7TO8qJ6DFLuUlQSsT/5OIOcxSBZlKOSk3satkEnwKdmnBXUuxgVXRHrvq1kj7OB2PVAPgZiQ8iHHj9DRA==}
preact@10.26.9:
resolution: {integrity: sha512-SSjF9vcnF27mJK1XyFMNJzFd5u3pQiATFqoaDy03XuN00u4ziveVVEGt5RKJrDR8MHE/wJo9Nnad56RLzS2RMA==}
@ -18758,6 +18761,10 @@ snapshots:
'@polka/url@1.0.0-next.29': {}
'@posthog/core@1.6.0':
dependencies:
cross-spawn: 7.0.6
'@protobufjs/aspromise@1.1.2': {}
'@protobufjs/base64@1.1.2': {}
@ -26834,8 +26841,9 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
posthog-js@1.197.0:
posthog-js@1.298.0:
dependencies:
'@posthog/core': 1.6.0
core-js: 3.43.0
fflate: 0.4.8
preact: 10.26.9