diff --git a/.changeset/poor-sheep-repair.md b/.changeset/poor-sheep-repair.md
new file mode 100644
index 0000000000..44e3ad034f
--- /dev/null
+++ b/.changeset/poor-sheep-repair.md
@@ -0,0 +1,6 @@
+---
+"@nextui-org/alert": patch
+"@nextui-org/theme": patch
+---
+
+introduced Alert component (#2250)
diff --git a/apps/docs/config/routes.json b/apps/docs/config/routes.json
index 583e220fa7..11e9bfb0c2 100644
--- a/apps/docs/config/routes.json
+++ b/apps/docs/config/routes.json
@@ -144,6 +144,13 @@
"keywords": "autocomplete, auto suggest, search, typeahead",
"path": "/docs/components/autocomplete.mdx"
},
+ {
+ "key": "alert",
+ "title": "Alert",
+ "keywords": "alert, notification, message",
+ "path": "/docs/components/alert.mdx",
+ "isNew": true
+ },
{
"key": "avatar",
"title": "Avatar",
diff --git a/apps/docs/content/components/alert/colors.ts b/apps/docs/content/components/alert/colors.ts
new file mode 100644
index 0000000000..8e88d2ef12
--- /dev/null
+++ b/apps/docs/content/components/alert/colors.ts
@@ -0,0 +1,26 @@
+const App = `import {Alert} from "@nextui-org/react";
+
+export default function App() {
+ return (
+
+
+ {["default", "primary", "secondary", "success", "warning", "danger"].map((color) => (
+
+ ))}
+
+
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/controlled.ts b/apps/docs/content/components/alert/controlled.ts
new file mode 100644
index 0000000000..3a4780f3e2
--- /dev/null
+++ b/apps/docs/content/components/alert/controlled.ts
@@ -0,0 +1,36 @@
+const App = `import {Alert, Button} from "@nextui-org/react";
+
+export default function App() {
+ const [isVisible, setIsVisible] = React.useState(true);
+
+ const title = "Success Notification";
+ const description = "Your action has been completed successfully. We'll notify you when updates are available.";
+
+ return (
+
+ {isVisible ? (
+
setIsVisible(false)}
+ />
+ ) : (
+
+ )}
+
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/custom-impl.ts b/apps/docs/content/components/alert/custom-impl.ts
new file mode 100644
index 0000000000..9f5a2c70a2
--- /dev/null
+++ b/apps/docs/content/components/alert/custom-impl.ts
@@ -0,0 +1,142 @@
+const InfoCircleIcon = `export const InfoCircleIcon = (props) => (
+
+);`;
+
+const CloseIcon = `export const CloseIcon = (props) => (
+
+);`;
+
+const App = `import React, {forwardRef, useMemo} from "react";
+import {useAlert} from "@nextui-org/react";
+import {InfoCircleIcon} from "./InfoCircleIcon";
+import {CloseIcon} from "./CloseIcon"
+
+const styles = {
+ base: [
+ "bg-slate-100",
+ "border",
+ "shadow",
+ "hover:bg-slate-200",
+ "focus-within:!bg-slate-100",
+ "dark:bg-slate-900",
+ "dark:hover:bg-slate-800",
+ "dark:border-slate-800",
+ "dark:focus-within:!bg-slate-900",
+ "cursor-pointer"
+ ],
+ title: [
+ "text-base",
+ "text-slate-500",
+ "font-bold"
+ ],
+ description: [
+ "text-base",
+ "text-slate-500",
+ ],
+}
+
+const MyAlert = forwardRef((props, ref) => {
+ const {
+ title,
+ description,
+ isClosable,
+ domRef,
+ handleClose,
+ getBaseProps,
+ getMainWrapperProps,
+ getDescriptionProps,
+ getTitleProps,
+ getCloseButtonProps,
+ color,
+ isVisible,
+ onClose,
+ getCloseIconProps,
+ getAlertIconProps,
+ } = useAlert({
+ ...props,
+ ref,
+ // this is just for the example, the props bellow should be passed by the parent component
+ title: "Email Sent!!",
+ description: "You will get a reply soon",
+ // custom styles
+ classNames: {
+ ...styles,
+ },
+ });
+
+ const mainWrapper = useMemo(() => {
+ return (
+
+ {title &&
{title}
}
+
{description}
+
+ );
+ }, [title, description, getMainWrapperProps, getTitleProps, getDescriptionProps]);
+
+ const baseWrapper = useMemo(() => {
+ return isVisible ? (
+
+
+ {mainWrapper}
+ {(isClosable || onClose) && (
+
+ )}
+
+ ) : null;
+ }, [
+ mainWrapper,
+ isClosable,
+ getCloseButtonProps,
+ isVisible,
+ domRef,
+ getBaseProps,
+ handleClose,
+ color,
+ onClose,
+ getAlertIconProps,
+ ]);
+
+ return <>{baseWrapper}>;
+});
+
+MyAlert.displayName = "MyAlert";
+
+export default MyAlert;`;
+
+const react = {
+ "/App.jsx": App,
+ "/InfoCircleIcon": InfoCircleIcon,
+ "/CloseIcon": CloseIcon,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/custom-styles.ts b/apps/docs/content/components/alert/custom-styles.ts
new file mode 100644
index 0000000000..b2c5fb17d3
--- /dev/null
+++ b/apps/docs/content/components/alert/custom-styles.ts
@@ -0,0 +1,35 @@
+const App = `import {Alert} from "@nextui-org/react";
+
+export default function App() {
+ const title = "Success";
+ const description = "Thanks for subscribing to our newsletter!";
+
+ return (
+
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/index.ts b/apps/docs/content/components/alert/index.ts
new file mode 100644
index 0000000000..1be9439d70
--- /dev/null
+++ b/apps/docs/content/components/alert/index.ts
@@ -0,0 +1,19 @@
+import colors from "./colors";
+import usage from "./usage";
+import radius from "./radius";
+import customImpl from "./custom-impl";
+import customStyles from "./custom-styles";
+import variants from "./variants";
+import withIcon from "./with-icon";
+import controlled from "./controlled";
+
+export const alertContent = {
+ colors,
+ usage,
+ radius,
+ customImpl,
+ customStyles,
+ variants,
+ withIcon,
+ controlled,
+};
diff --git a/apps/docs/content/components/alert/radius.ts b/apps/docs/content/components/alert/radius.ts
new file mode 100644
index 0000000000..abbf3f5f52
--- /dev/null
+++ b/apps/docs/content/components/alert/radius.ts
@@ -0,0 +1,26 @@
+const App = `import {Alert} from "@nextui-org/react";
+
+export default function App() {
+ return (
+
+
+ {["none", "sm", "md", "lg", "full"].map((radius) => (
+
+ ))}
+
+
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/usage.ts b/apps/docs/content/components/alert/usage.ts
new file mode 100644
index 0000000000..6543526891
--- /dev/null
+++ b/apps/docs/content/components/alert/usage.ts
@@ -0,0 +1,20 @@
+const App = `import {Alert} from "@nextui-org/react";
+
+export default function App() {
+ const title = "This is an alert";
+ const description = "Thanks for subscribing to our newsletter!";
+
+ return (
+
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/variants.ts b/apps/docs/content/components/alert/variants.ts
new file mode 100644
index 0000000000..637553b085
--- /dev/null
+++ b/apps/docs/content/components/alert/variants.ts
@@ -0,0 +1,25 @@
+const App = `import {Alert} from "@nextui-org/react";
+
+export default function App() {
+ return (
+
+
+ A solid variant alert
+
+
+ A bordered variant alert
+
+
+ A flat variant alert
+
+
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/alert/with-icon.ts b/apps/docs/content/components/alert/with-icon.ts
new file mode 100644
index 0000000000..dd722fe63d
--- /dev/null
+++ b/apps/docs/content/components/alert/with-icon.ts
@@ -0,0 +1,54 @@
+const App = `import {Alert} from "@nextui-org/react";
+
+const UserIcon = ({
+ fill = 'currentColor',
+ filled,
+ size,
+ height,
+ width,
+ label,
+ ...props
+}) => {
+ return (
+
+ );
+};
+
+export default function App() {
+ return (
+ }>An alert with a custom icon
+ );
+}`;
+
+const react = {
+ "/App.jsx": App,
+};
+
+export default {
+ ...react,
+};
diff --git a/apps/docs/content/components/index.ts b/apps/docs/content/components/index.ts
index ac6e664826..2641e4c404 100644
--- a/apps/docs/content/components/index.ts
+++ b/apps/docs/content/components/index.ts
@@ -31,3 +31,4 @@ export * from "./dropdown";
export * from "./navbar";
export * from "./table";
export * from "./autocomplete";
+export * from "./alert";
diff --git a/apps/docs/content/docs/components/alert.mdx b/apps/docs/content/docs/components/alert.mdx
new file mode 100644
index 0000000000..15f49b31c9
--- /dev/null
+++ b/apps/docs/content/docs/components/alert.mdx
@@ -0,0 +1,124 @@
+---
+title: "Alert"
+description: "Alerts are temporary notifications that provide concise feedback about an action or event."
+---
+
+import {alertContent} from "@/content/components/alert";
+
+# Alert
+
+Alerts are temporary notifications that provide concise feedback about an action or event.
+
+
+
+---
+
+
+
+## Installation
+
+
+
+## Import
+
+
+
+## Usage
+
+
+
+### Colors
+
+Alert comes with 6 color variants to convey different meanings.
+
+
+
+### Variants
+
+
+
+### Radius
+
+
+
+### With Icon
+
+By default, Alert displays an appropriate icon based on the `color` prop. You can override this by providing a custom icon using the `icon` prop.
+
+
+
+### Controlled Visibility
+
+You can control the alert visibility using the `isVisible` and `onVisibleChange` props.
+
+
+
+### Custom Styles
+
+You can customize the alert by passing custom Tailwind CSS classes to the component slots.
+
+
+
+### Custom Implementation
+
+You can use the `useAlert` hook to create your own alert component.
+
+
+
+
+
+## Data Attributes
+
+Alert has the following attributes on the `base` element:
+
+- **data-visible**: When the alert is visible
+- **data-closeable**: When the alert can be closed
+- **data-has-title**: When the alert has a title
+- **data-has-description**: When the alert has a description
+
+
+
+## Accessibility
+
+- Alert has role of `alert`
+- Close button has aria-label="Close" by default
+- When closed, alert is removed from the DOM
+
+
+
+## API
+
+### Alert Props
+
+| Attribute | Type | Description | Default |
+| ---------------- | --------------------------------------------------------------------------- | ------------------------------------------- | --------- |
+| title | `string` | The alert title | - |
+| icon | `ReactNode` | The alert icon - overrides the default icon | - |
+| description | `ReactNode` | The alert description | - |
+| color | `default` \| `primary` \| `secondary` \| `success` \| `warning` \| `danger` | The alert color theme | `default` |
+| variant | `solid` \| `bordered` \| `flat` | The alert variant | `flat` |
+| radius | `none` \| `sm` \| `md` \| `lg` \| `full` | The alert border radius | `md` |
+| isVisible | `boolean` | Whether the alert is visible | - |
+| isClosable | `boolean` | Whether the alert can be closed | `false` |
+| closeButtonProps | `ButtonProps` | Props for the close button | - |
+
+### Alert Events
+
+| Attribute | Type | Description |
+| --------------- | ------------------------------ | ------------------------------------------------ |
+| onClose | `() => void` | Handler called when the close button is clicked |
+| onVisibleChange | `(isVisible: boolean) => void` | Handler called when the alert visibility changes |
diff --git a/packages/components/alert/README.md b/packages/components/alert/README.md
new file mode 100644
index 0000000000..071ac6dd26
--- /dev/null
+++ b/packages/components/alert/README.md
@@ -0,0 +1,24 @@
+# @nextui-org/alert
+
+Alerts are temporary notifications that provide concise feedback about an action or event.
+
+Please refer to the [documentation](https://nextui.org/docs/components/alert) for more information.
+
+## Installation
+
+```sh
+yarn add @nextui-org/alert
+# or
+npm i @nextui-org/alert
+```
+
+## Contribution
+
+Yes please! See the
+[contributing guidelines](https://github.com/nextui-org/nextui/blob/master/CONTRIBUTING.md)
+for details.
+
+## License
+
+This project is licensed under the terms of the
+[MIT license](https://github.com/nextui-org/nextui/blob/master/LICENSE).
diff --git a/packages/components/alert/__tests__/alert.test.tsx b/packages/components/alert/__tests__/alert.test.tsx
new file mode 100644
index 0000000000..dfa3074c18
--- /dev/null
+++ b/packages/components/alert/__tests__/alert.test.tsx
@@ -0,0 +1,85 @@
+import * as React from "react";
+import {act, render} from "@testing-library/react";
+
+import {Alert} from "../src";
+
+const title = "Testing Title";
+const description = "Testing Description";
+
+describe("Alert", () => {
+ it("should render correctly", () => {
+ const wrapper = render();
+
+ expect(() => wrapper.unmount()).not.toThrow();
+ });
+
+ it("ref should be forwarded", () => {
+ const ref = React.createRef();
+
+ render();
+
+ expect(ref.current).not.toBeNull();
+ });
+
+ it("should display title and description when component is rendered", () => {
+ const wrapper = render();
+
+ const titleElement = wrapper.getByText(title);
+ const descriptionElement = wrapper.getByText(description);
+
+ expect(titleElement).toContainHTML(title);
+ expect(descriptionElement).toContainHTML(description);
+ });
+
+ it("should show close button when is Closable", () => {
+ const {getByRole} = render();
+
+ const closeButton = getByRole("button");
+
+ expect(closeButton).toBeVisible();
+ });
+
+ it("should show close button when onClose is passed", () => {
+ const onClose = jest.fn();
+
+ const {getByRole} = render();
+
+ const closeButton = getByRole("button");
+
+ expect(closeButton).toBeVisible();
+ });
+
+ it("should not show close button when not isClosable and onClose is not passed", () => {
+ const wrapper = render();
+
+ const closeButton = wrapper.queryByRole("button");
+
+ expect(closeButton).toBeNull();
+ });
+
+ it("should call the onClose function when clicking on close button", () => {
+ const onClose = jest.fn();
+
+ const wrapper = render();
+
+ const closeButton = wrapper.getByRole("button");
+
+ act(() => {
+ closeButton.click();
+ });
+
+ expect(onClose).toHaveBeenCalled();
+ });
+
+ it("should close the alert when clicking on close button", () => {
+ const wrapper = render();
+
+ const closeButton = wrapper.getByRole("button");
+
+ act(() => {
+ closeButton.click();
+ });
+
+ expect(wrapper.container).toBeEmptyDOMElement();
+ });
+});
diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json
new file mode 100644
index 0000000000..c6ab2e033a
--- /dev/null
+++ b/packages/components/alert/package.json
@@ -0,0 +1,62 @@
+{
+ "name": "@nextui-org/alert",
+ "version": "2.0.0",
+ "description": "Alerts are temporary notifications that provide concise feedback about an action or event.",
+ "keywords": [
+ "alert"
+ ],
+ "author": "Junior Garcia ",
+ "contributors": [
+ "Abhinav Agarwal ",
+ "WK Wong "
+ ],
+ "homepage": "https://nextui.org",
+ "license": "MIT",
+ "main": "src/index.ts",
+ "sideEffects": false,
+ "files": [
+ "dist"
+ ],
+ "publishConfig": {
+ "access": "public"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/nextui-org/nextui.git",
+ "directory": "packages/components/alert"
+ },
+ "bugs": {
+ "url": "https://github.com/nextui-org/nextui/issues"
+ },
+ "scripts": {
+ "build": "tsup src --dts",
+ "dev": "pnpm build:fast --watch",
+ "clean": "rimraf dist .turbo",
+ "typecheck": "tsc --noEmit",
+ "build:fast": "tsup src",
+ "prepack": "clean-package",
+ "postpack": "clean-package restore"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18",
+ "@nextui-org/theme": ">=2.1.0",
+ "@nextui-org/system": ">=2.0.0"
+ },
+ "dependencies": {
+ "@nextui-org/react-utils": "workspace:*",
+ "@nextui-org/shared-icons": "workspace:*",
+ "@nextui-org/shared-utils": "workspace:*",
+ "@react-stately/utils": "3.10.1",
+ "@react-aria/utils": "3.24.1",
+ "@nextui-org/button": "workspace:*"
+ },
+ "devDependencies": {
+ "@nextui-org/system": "workspace:*",
+ "@nextui-org/theme": "workspace:*",
+ "clean-package": "2.2.0",
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
+ },
+ "clean-package": "../../../clean-package.config.json"
+}
\ No newline at end of file
diff --git a/packages/components/alert/src/alert.tsx b/packages/components/alert/src/alert.tsx
new file mode 100644
index 0000000000..3cac310475
--- /dev/null
+++ b/packages/components/alert/src/alert.tsx
@@ -0,0 +1,82 @@
+import type {ButtonProps} from "@nextui-org/button";
+
+import {forwardRef} from "@nextui-org/system";
+import {
+ CloseIcon,
+ DangerIcon,
+ InfoCircleIcon,
+ SuccessIcon,
+ WarningIcon,
+} from "@nextui-org/shared-icons";
+import {isEmpty} from "@nextui-org/shared-utils";
+import {Button} from "@nextui-org/button";
+import {cloneElement, isValidElement} from "react";
+
+import {useAlert, UseAlertProps} from "./use-alert";
+
+const iconMap = {
+ primary: InfoCircleIcon,
+ secondary: InfoCircleIcon,
+ success: SuccessIcon,
+ warning: WarningIcon,
+ danger: DangerIcon,
+} as const;
+
+export type AlertColor = keyof typeof iconMap;
+
+export interface AlertProps extends Omit {
+ color: AlertColor;
+}
+
+const Alert = forwardRef<"div", AlertProps>((props, ref) => {
+ const {
+ title,
+ icon,
+ description,
+ isClosable,
+ domRef,
+ handleClose,
+ getBaseProps,
+ getMainWrapperProps,
+ getDescriptionProps,
+ getTitleProps,
+ getCloseButtonProps,
+ color,
+ isVisible,
+ onClose,
+ getAlertIconProps,
+ } = useAlert({...props, ref});
+
+ if (!isVisible) return null;
+
+ const customIcon = icon && isValidElement(icon) ? cloneElement(icon, getAlertIconProps()) : null;
+
+ const IconComponent = iconMap[color] || iconMap.primary;
+
+ return (
+
+ {customIcon ||
}
+
+ {title &&
{title}
}
+ {!isEmpty(description) &&
{description}
}
+
+
+ {(isClosable || onClose) && (
+
+ )}
+
+ );
+});
+
+Alert.displayName = "NextUI.Alert";
+
+export default Alert;
diff --git a/packages/components/alert/src/index.ts b/packages/components/alert/src/index.ts
new file mode 100644
index 0000000000..e1d0ea8cf6
--- /dev/null
+++ b/packages/components/alert/src/index.ts
@@ -0,0 +1,10 @@
+import Alert from "./alert";
+
+// export types
+export type {AlertProps} from "./alert";
+
+// export hooks
+export {useAlert} from "./use-alert";
+
+// export component
+export {Alert};
diff --git a/packages/components/alert/src/use-alert.ts b/packages/components/alert/src/use-alert.ts
new file mode 100644
index 0000000000..290c4b99c2
--- /dev/null
+++ b/packages/components/alert/src/use-alert.ts
@@ -0,0 +1,188 @@
+import type {ButtonProps} from "@nextui-org/button";
+
+import {HTMLNextUIProps, mapPropsVariants, PropGetter} from "@nextui-org/system";
+import {AlertSlots, SlotsToClasses} from "@nextui-org/theme";
+import {filterDOMProps, ReactRef, useDOMRef} from "@nextui-org/react-utils";
+import {AlertVariantProps} from "@nextui-org/theme/src/components/alert";
+import {ReactNode, useCallback, useMemo} from "react";
+import {mergeProps} from "@react-aria/utils";
+import {alert} from "@nextui-org/theme";
+import {useControlledState} from "@react-stately/utils";
+import {dataAttr, isEmpty, objectToDeps} from "@nextui-org/shared-utils";
+
+interface Props extends HTMLNextUIProps<"div"> {
+ /**
+ * Ref to the DOM node.
+ */
+ ref?: ReactRef;
+ /**
+ * title of the alert message
+ */
+ title?: string;
+ /**
+ * Main body of the alert message
+ */
+ description: ReactNode;
+ /**
+ * Icon to be displayed in the alert - overrides the default icon
+ */
+ icon?: ReactNode;
+ /**
+ * Whether the alert is visible.
+ * @default false
+ */
+ isVisible?: boolean;
+ /**
+ * Whether the alert should be visible by default.
+ * @default false
+ */
+ isDefaultVisible?: boolean;
+ /**
+ * The event handler for the alert visibility state.
+ * @param isVisible boolean
+ * @returns void
+ */
+ onVisibleChange?: (isVisible: boolean) => void;
+ /**
+ * whether the alert can be closed by user
+ */
+ isClosable?: boolean;
+ /**
+ * Props for the close button
+ */
+ closeButtonProps?: Omit;
+ /**
+ * function which is called when close button is clicked
+ */
+ onClose?: () => void;
+ /**
+ * Classname or List of classes to change the classNames of the element.
+ * if `className` is passed, it will be added to the base slot.
+ *
+ * @example
+ * ```ts
+ *
+ * ```
+ */
+ classNames?: SlotsToClasses;
+}
+
+export type UseAlertProps = Props & AlertVariantProps;
+
+export function useAlert(originalProps: UseAlertProps) {
+ const [props, variantProps] = mapPropsVariants(originalProps, alert.variantKeys);
+
+ const {
+ as,
+ title: titleProp,
+ children,
+ description,
+ onClose,
+ isClosable,
+ ref,
+ icon,
+ isVisible: isVisibleProp,
+ isDefaultVisible,
+ onVisibleChange,
+ closeButtonProps = {},
+ classNames,
+ ...otherProps
+ } = props;
+
+ const [isVisible, setIsVisible] = useControlledState(
+ isVisibleProp,
+ isDefaultVisible ?? true,
+ onVisibleChange,
+ );
+
+ const title = titleProp || children;
+
+ const Component = as || "div";
+ const shouldFilterDOMProps = typeof Component === "string";
+
+ const domRef = useDOMRef(ref);
+
+ const handleClose = useCallback(() => {
+ setIsVisible(false);
+ onClose?.();
+ }, [setIsVisible, onClose]);
+
+ const slots = useMemo(
+ () => alert({hasDescription: !isEmpty(description), ...variantProps}),
+ [description, objectToDeps(variantProps)],
+ );
+
+ const getBaseProps = useCallback(() => {
+ return {
+ "data-visible": dataAttr(isVisible),
+ "data-closeable": dataAttr(isClosable),
+ "data-has-title": dataAttr(!isEmpty(title)),
+ "data-has-description": dataAttr(!isEmpty(description)),
+ ...mergeProps(
+ filterDOMProps(otherProps, {
+ enabled: shouldFilterDOMProps,
+ }),
+ filterDOMProps(props),
+ ),
+ className: slots.base({class: classNames?.base}),
+ };
+ }, [slots, classNames?.base]);
+
+ const getMainWrapperProps = useCallback(() => {
+ return {
+ className: slots.mainWrapper({class: classNames?.mainWrapper}),
+ };
+ }, [slots, classNames?.mainWrapper]);
+
+ const getDescriptionProps = useCallback(() => {
+ return {
+ className: slots.description({class: classNames?.description}),
+ };
+ }, [slots, classNames?.description]);
+
+ const getTitleProps = useCallback(() => {
+ return {
+ className: slots.title({class: classNames?.title}),
+ };
+ }, [slots, classNames?.title]);
+
+ const getCloseButtonProps = useCallback(
+ () => ({
+ ...closeButtonProps,
+ className: slots.closeButton({class: classNames?.closeButton}),
+ }),
+ [slots, classNames?.closeButton],
+ );
+
+ const getAlertIconProps = useCallback(
+ () => ({
+ className: slots.alertIcon({class: classNames?.alertIcon}),
+ }),
+ [slots, classNames?.alertIcon],
+ );
+
+ return {
+ title,
+ icon,
+ description,
+ isClosable,
+ domRef,
+ getBaseProps,
+ getMainWrapperProps,
+ getDescriptionProps,
+ getTitleProps,
+ color: variantProps["color"],
+ getCloseButtonProps,
+ handleClose,
+ isVisible,
+ onClose,
+ getAlertIconProps,
+ };
+}
diff --git a/packages/components/alert/stories/alert.stories.tsx b/packages/components/alert/stories/alert.stories.tsx
new file mode 100644
index 0000000000..8e2daebcf5
--- /dev/null
+++ b/packages/components/alert/stories/alert.stories.tsx
@@ -0,0 +1,192 @@
+import React from "react";
+import {Meta} from "@storybook/react";
+import {alert} from "@nextui-org/theme";
+import {Button} from "@nextui-org/button";
+
+import {Alert} from "../src";
+
+export default {
+ title: "Components/Alert",
+ component: Alert,
+ argTypes: {
+ color: {
+ control: {
+ type: "select",
+ },
+ options: ["default", "primary", "secondary", "success", "warning", "danger"],
+ },
+ variant: {
+ control: {
+ type: "select",
+ },
+ options: ["solid", "flat", "bordered"],
+ },
+ radius: {
+ control: {
+ type: "select",
+ },
+ options: ["none", "sm", "md", "lg", "full"],
+ },
+ isClosable: {
+ control: {
+ type: "boolean",
+ },
+ },
+ },
+ decorators: [
+ (Story) => (
+
+ ),
+ ],
+} as Meta;
+
+const defaultProps = {
+ ...alert.defaultVariants,
+ title: "This is an alert with a title",
+};
+
+const Template = (args) => ;
+
+const ColorTemplate = (args) => {
+ return (
+
+ {["default", "primary", "secondary", "success", "warning", "danger"].map((color) => (
+
+ ))}
+
+ );
+};
+
+const RadiusTemplate = (args) => {
+ return (
+
+ {["none", "sm", "md", "lg", "full"].map((radius) => (
+
+ ))}
+
+ );
+};
+
+const VariantTemplate = (args) => {
+ return (
+
+ {["solid", "flat", "bordered"].map((variant) => (
+
+ ))}
+
+ );
+};
+
+const CloseableTemplate = (args) => {
+ const [isVisible, setIsVisible] = React.useState(true);
+
+ return (
+
+ {isVisible ? (
+
setIsVisible(false)} />
+ ) : (
+
+ )}
+
+ );
+};
+
+export const Default = {
+ render: Template,
+ args: {
+ ...defaultProps,
+ },
+};
+
+export const WithDescription = {
+ render: Template,
+ args: {
+ ...defaultProps,
+ description: "This is an alert with a description",
+ },
+};
+
+export const Color = {
+ render: ColorTemplate,
+ args: {
+ ...defaultProps,
+ },
+};
+
+export const Variant = {
+ render: VariantTemplate,
+ args: {
+ ...defaultProps,
+ },
+};
+
+export const WithIcon = {
+ render: Template,
+ args: {
+ ...defaultProps,
+ title: "This is an alert with a custom icon",
+ icon: (
+
+ ),
+ },
+};
+
+export const Radius = {
+ render: RadiusTemplate,
+ args: {
+ ...defaultProps,
+ },
+};
+
+export const Closable = {
+ render: CloseableTemplate,
+ args: {
+ ...defaultProps,
+ },
+};
+
+export const CustomWithClassNames = {
+ render: Template,
+ args: {
+ ...defaultProps,
+ classNames: {
+ base: [
+ "bg-background",
+ "border",
+ "border-foreground-400",
+ "shadow",
+ "hover:bg-slate-200",
+ "cursor-pointer",
+ ],
+ title: ["text-base", "text-foreground", "font-semibold"],
+ description: ["text-base", "text-foreground-600"],
+ },
+ },
+};
diff --git a/packages/components/alert/tsconfig.json b/packages/components/alert/tsconfig.json
new file mode 100644
index 0000000000..5d012f6e61
--- /dev/null
+++ b/packages/components/alert/tsconfig.json
@@ -0,0 +1,10 @@
+{
+ "extends": "../../../tsconfig.json",
+ "compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "tailwind-variants": ["../../../node_modules/tailwind-variants"]
+ },
+ },
+ "include": ["src", "index.ts"]
+}
diff --git a/packages/components/alert/tsup.config.ts b/packages/components/alert/tsup.config.ts
new file mode 100644
index 0000000000..3e2bcff6cc
--- /dev/null
+++ b/packages/components/alert/tsup.config.ts
@@ -0,0 +1,8 @@
+import {defineConfig} from "tsup";
+
+export default defineConfig({
+ clean: true,
+ target: "es2019",
+ format: ["cjs", "esm"],
+ banner: {js: '"use client";'},
+});
diff --git a/packages/core/react/package.json b/packages/core/react/package.json
index 1dbd682fd3..b701d5d5f7 100644
--- a/packages/core/react/package.json
+++ b/packages/core/react/package.json
@@ -84,6 +84,7 @@
"@nextui-org/date-input": "workspace:*",
"@nextui-org/date-picker": "workspace:*",
"@nextui-org/framer-utils": "workspace:*",
+ "@nextui-org/alert": "workspace:*",
"@react-aria/visually-hidden": "3.8.12"
},
"peerDependencies": {
diff --git a/packages/core/react/src/index.ts b/packages/core/react/src/index.ts
index d504dbd361..96c5475f69 100644
--- a/packages/core/react/src/index.ts
+++ b/packages/core/react/src/index.ts
@@ -43,6 +43,7 @@ export * from "@nextui-org/autocomplete";
export * from "@nextui-org/calendar";
export * from "@nextui-org/date-input";
export * from "@nextui-org/date-picker";
+export * from "@nextui-org/alert";
/**
* React Aria - Exports
diff --git a/packages/core/theme/src/components/alert.ts b/packages/core/theme/src/components/alert.ts
new file mode 100644
index 0000000000..451746c5a8
--- /dev/null
+++ b/packages/core/theme/src/components/alert.ts
@@ -0,0 +1,327 @@
+import type {VariantProps} from "tailwind-variants";
+
+import {tv} from "../utils/tv";
+/**
+ * Alert wrapper **Tailwind Variants** component
+ *
+ * @example
+ * ```js
+ * const {base, mainWrapper, title, description, closeButton, alertIcon} = alert({...})
+ *
+ *
+ *
+ * {alertIcon}
+ *
+ *
Title
+ *
Description
+ *
+ *
+ *
+ * ```
+ */
+const alert = tv({
+ slots: {
+ base: ["flex flex-row w-full flex-grow min-h-17 max-h-full py-3 px-4"],
+ mainWrapper: ["flex-grow min-h-11 max-h-full ms-2 flex flex-col box-border items-start"],
+ title: ["w-full text-medium font-normal block min-h-6 max-h-full"],
+ description: ["text-small font-normal min-h-5 max-h-full"],
+ closeButton: ["relative fill-current"],
+ alertIcon: ["fill-current"],
+ },
+ variants: {
+ color: {
+ default: {
+ base: ["bg-default-100"],
+ title: ["text-foreground"],
+ description: ["text-default-600"],
+ closeButton: ["text-default-400"],
+ alertIcon: ["text-default-foreground"],
+ },
+ primary: {
+ base: ["bg-primary-50"],
+ title: ["text-primary"],
+ description: ["text-primary"],
+ closeButton: ["text-primary-200"],
+ alertIcon: ["text-primary"],
+ },
+ secondary: {
+ base: ["bg-secondary-50"],
+ title: ["text-secondary"],
+ description: ["text-secondary-200"],
+ closeButton: ["text-secondary-200"],
+ alertIcon: ["text-secondary"],
+ },
+ success: {
+ base: ["bg-success-50"],
+ title: ["text-success"],
+ description: ["text-success-800 dark:text-success"],
+ closeButton: ["text-success-200"],
+ alertIcon: ["text-success"],
+ },
+ warning: {
+ base: ["bg-warning-50"],
+ title: ["text-warning"],
+ description: ["text-warning-800 dark:text-warning"],
+ closeButton: ["text-warning-200"],
+ alertIcon: ["text-warning"],
+ },
+ danger: {
+ base: ["bg-danger-50"],
+ title: ["text-danger"],
+ description: ["text-danger-800 dark:text-danger"],
+ closeButton: ["text-danger-200"],
+ alertIcon: ["text-danger"],
+ },
+ },
+ variant: {
+ solid: {},
+ flat: {},
+ bordered: {
+ base: "border-medium bg-transparent",
+ },
+ },
+ radius: {
+ none: {
+ base: "rounded-none",
+ },
+ sm: {
+ base: "rounded-small",
+ },
+ md: {
+ base: "rounded-medium",
+ },
+ lg: {
+ base: "rounded-large",
+ },
+ full: {
+ base: "rounded-full",
+ },
+ },
+ hasDescription: {
+ true: {
+ alertIcon: "mt-0.5",
+ },
+ false: {
+ base: ["items-center"],
+ mainWrapper: ["justify-center"],
+ },
+ },
+ },
+ defaultVariants: {
+ color: "default",
+ variant: "flat",
+ radius: "md",
+ },
+ compoundVariants: [
+ // solid / color
+ {
+ variant: "solid",
+ color: "default",
+ class: {
+ base: "bg-default",
+ title: "text-default-foreground",
+ description: "text-default-foreground",
+ closeButton: "text-default-foreground data-[hover]:bg-default-100",
+ alertIcon: "text-default-foreground",
+ },
+ },
+ {
+ variant: "solid",
+ color: "primary",
+ class: {
+ base: "bg-primary",
+ title: "text-primary-foreground",
+ description: "text-primary-foreground",
+ closeButton: "text-primary-foreground",
+ alertIcon: "text-primary-foreground",
+ },
+ },
+ {
+ variant: "solid",
+ color: "secondary",
+ class: {
+ base: "bg-secondary",
+ title: "text-secondary-foreground",
+ description: "text-secondary-foreground",
+ closeButton: "text-secondary-foreground",
+ alertIcon: "text-secondary-foreground",
+ },
+ },
+ {
+ variant: "solid",
+ color: "success",
+ class: {
+ base: "bg-success",
+ title: "text-success-foreground",
+ description: "text-success-foreground",
+ closeButton: "text-success-foreground",
+ alertIcon: "text-success-foreground",
+ },
+ },
+ {
+ variant: "solid",
+ color: "warning",
+ class: {
+ base: "bg-warning",
+ title: "text-warning-foreground",
+ description: "text-warning-foreground",
+ closeButton: "text-warning-foreground",
+ alertIcon: "text-warning-foreground",
+ },
+ },
+ {
+ variant: "solid",
+ color: "danger",
+ class: {
+ base: "bg-danger",
+ title: "text-danger-foreground",
+ description: "text-danger-foreground",
+ closeButton: "text-danger-foreground",
+ alertIcon: "text-danger-foreground",
+ },
+ },
+
+ // flat / color
+ {
+ variant: "flat",
+ color: "default",
+ class: {
+ base: "bg-default-100",
+ title: "text-default-foreground",
+ description: "text-default-600",
+ closeButton: "text-default-400",
+ alertIcon: "text-default-foreground",
+ },
+ },
+ {
+ variant: "flat",
+ color: "primary",
+ class: {
+ base: "bg-primary-50",
+ title: "text-primary",
+ description: "text-primary-600",
+ closeButton: "text-primary-400 data-[hover]:bg-primary-100",
+ alertIcon: "text-primary",
+ },
+ },
+ {
+ variant: "flat",
+ color: "secondary",
+ class: {
+ base: "bg-secondary-50",
+ title: "text-secondary",
+ description: "text-secondary-600",
+ closeButton: "text-secondary-400 data-[hover]:bg-secondary-100",
+ alertIcon: "text-secondary",
+ },
+ },
+ {
+ variant: "flat",
+ color: "success",
+ class: {
+ base: "bg-success-50",
+ title: "text-success",
+ description: "text-success-800 dark:text-success",
+ closeButton: "text-success-400 data-[hover]:bg-success-100",
+ alertIcon: "text-success",
+ },
+ },
+ {
+ variant: "flat",
+ color: "warning",
+ class: {
+ base: "bg-warning-50",
+ title: "text-warning",
+ description: "text-warning-800 dark:text-warning",
+ closeButton: "text-warning-500 data-[hover]:bg-warning-200",
+ alertIcon: "text-warning",
+ },
+ },
+ {
+ variant: "flat",
+ color: "danger",
+ class: {
+ base: "bg-danger-50",
+ title: "text-danger",
+ description: "text-danger-800 dark:text-danger",
+ closeButton: "text-danger-400 data-[hover]:bg-danger-100",
+ alertIcon: "text-danger",
+ },
+ },
+
+ // bordered / color
+ {
+ variant: "bordered",
+ color: "default",
+ class: {
+ base: "border-default-200",
+ title: "text-default-foreground",
+ description: "text-default-600",
+ closeButton: "text-default-400",
+ alertIcon: "text-default-foreground",
+ },
+ },
+ {
+ variant: "bordered",
+ color: "primary",
+ class: {
+ base: "border-primary",
+ title: "text-primary",
+ description: "text-primary-600",
+ closeButton: "text-primary-400 data-[hover]:bg-primary-50",
+ alertIcon: "text-primary",
+ },
+ },
+ {
+ variant: "bordered",
+ color: "secondary",
+ class: {
+ base: "border-secondary",
+ title: "text-secondary",
+ description: "text-secondary-600",
+ closeButton: "text-secondary-400 data-[hover]:bg-secondary-50",
+ alertIcon: "text-secondary",
+ },
+ },
+ {
+ variant: "bordered",
+ color: "success",
+ class: {
+ base: "border-success",
+ title: "text-success",
+ description: "text-success-600",
+ closeButton: "text-success-400 data-[hover]:bg-success-50",
+ alertIcon: "text-success",
+ },
+ },
+ {
+ variant: "bordered",
+ color: "warning",
+ class: {
+ base: "border-warning",
+ title: "text-warning",
+ description: "text-warning-600",
+ closeButton: "text-warning-500 data-[hover]:bg-warning-100",
+ alertIcon: "text-warning",
+ },
+ },
+ {
+ variant: "bordered",
+ color: "danger",
+ class: {
+ base: "border-danger",
+ title: "text-danger",
+ description: "text-danger-600",
+ closeButton: "text-danger-400 data-[hover]:bg-danger-50",
+ alertIcon: "text-danger",
+ },
+ },
+ ],
+});
+
+export type AlertVariantProps = VariantProps;
+export type AlertSlots = keyof ReturnType;
+
+export {alert};
diff --git a/packages/core/theme/src/components/index.ts b/packages/core/theme/src/components/index.ts
index 7776b24c52..c5ed21c037 100644
--- a/packages/core/theme/src/components/index.ts
+++ b/packages/core/theme/src/components/index.ts
@@ -38,3 +38,4 @@ export * from "./autocomplete";
export * from "./calendar";
export * from "./date-input";
export * from "./date-picker";
+export * from "./alert";
diff --git a/packages/utilities/shared-icons/src/danger.tsx b/packages/utilities/shared-icons/src/danger.tsx
new file mode 100644
index 0000000000..ffa5c56f6d
--- /dev/null
+++ b/packages/utilities/shared-icons/src/danger.tsx
@@ -0,0 +1,20 @@
+import {IconSvgProps} from "./types";
+
+export const DangerIcon = (
+ props: IconSvgProps & {
+ className?: string;
+ },
+) => {
+ return (
+
+ );
+};
diff --git a/packages/utilities/shared-icons/src/index.ts b/packages/utilities/shared-icons/src/index.ts
index d4a719af5c..dc1504605b 100644
--- a/packages/utilities/shared-icons/src/index.ts
+++ b/packages/utilities/shared-icons/src/index.ts
@@ -33,7 +33,10 @@ export * from "./arrow-right";
export * from "./arrow-left";
export * from "./link";
export * from "./selector";
-
+export * from "./info-circle";
+export * from "./warning";
+export * from "./danger";
+export * from "./success";
// sets
export * from "./bulk";
export * from "./bold";
diff --git a/packages/utilities/shared-icons/src/info-circle.tsx b/packages/utilities/shared-icons/src/info-circle.tsx
new file mode 100644
index 0000000000..6f4650d0e3
--- /dev/null
+++ b/packages/utilities/shared-icons/src/info-circle.tsx
@@ -0,0 +1,20 @@
+import {IconSvgProps} from "./types";
+
+export const InfoCircleIcon = (
+ props: IconSvgProps & {
+ className?: string;
+ },
+) => {
+ return (
+
+ );
+};
diff --git a/packages/utilities/shared-icons/src/success.tsx b/packages/utilities/shared-icons/src/success.tsx
new file mode 100644
index 0000000000..dab41491ea
--- /dev/null
+++ b/packages/utilities/shared-icons/src/success.tsx
@@ -0,0 +1,27 @@
+import {IconSvgProps} from "./types";
+
+export const SuccessIcon = (
+ props: IconSvgProps & {
+ className?: string;
+ },
+) => {
+ return (
+
+ );
+};
diff --git a/packages/utilities/shared-icons/src/warning.tsx b/packages/utilities/shared-icons/src/warning.tsx
new file mode 100644
index 0000000000..a647c6b04e
--- /dev/null
+++ b/packages/utilities/shared-icons/src/warning.tsx
@@ -0,0 +1,20 @@
+import {IconSvgProps} from "./types";
+
+export const WarningIcon = (
+ props: IconSvgProps & {
+ className?: string;
+ },
+) => {
+ return (
+
+ );
+};
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 89eacfda1e..d4056348a4 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -14,25 +14,25 @@ importers:
devDependencies:
'@babel/cli':
specifier: ^7.14.5
- version: 7.24.1(@babel/core@7.24.4)
+ version: 7.25.9(@babel/core@7.26.0)
'@babel/core':
specifier: ^7.16.7
- version: 7.24.4
+ version: 7.26.0
'@babel/plugin-proposal-object-rest-spread':
specifier: ^7.15.6
- version: 7.20.7(@babel/core@7.24.4)
+ version: 7.20.7(@babel/core@7.26.0)
'@babel/plugin-transform-runtime':
specifier: ^7.14.5
- version: 7.24.3(@babel/core@7.24.4)
+ version: 7.25.9(@babel/core@7.26.0)
'@babel/preset-env':
specifier: ^7.14.5
- version: 7.24.4(@babel/core@7.24.4)
+ version: 7.26.0(@babel/core@7.26.0)
'@babel/preset-react':
specifier: ^7.14.5
- version: 7.24.1(@babel/core@7.24.4)
+ version: 7.25.9(@babel/core@7.26.0)
'@babel/preset-typescript':
specifier: ^7.14.5
- version: 7.24.1(@babel/core@7.24.4)
+ version: 7.26.0(@babel/core@7.26.0)
'@changesets/changelog-github':
specifier: 0.4.6
version: 0.4.6(encoding@0.1.13)
@@ -47,7 +47,7 @@ importers:
version: 5.1.0
'@commitlint/cli':
specifier: ^17.2.0
- version: 17.8.1(@swc/core@1.4.13(@swc/helpers@0.5.9))
+ version: 17.8.1(@swc/core@1.8.0(@swc/helpers@0.5.13))
'@commitlint/config-conventional':
specifier: ^17.2.0
version: 17.8.1
@@ -56,28 +56,28 @@ importers:
version: 2.2.0
'@react-types/link':
specifier: ^3.4.4
- version: 3.5.3(react@18.2.0)
+ version: 3.5.5(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
'@storybook/react':
specifier: ^7.4.6
- version: 7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5)
+ version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@swc/core':
specifier: ^1.3.35
- version: 1.4.13(@swc/helpers@0.5.9)
+ version: 1.8.0(@swc/helpers@0.5.13)
'@swc/jest':
specifier: ^0.2.24
- version: 0.2.36(@swc/core@1.4.13(@swc/helpers@0.5.9))
+ version: 0.2.37(@swc/core@1.8.0(@swc/helpers@0.5.13))
'@testing-library/dom':
specifier: ^10.4.0
version: 10.4.0
'@testing-library/jest-dom':
specifier: ^6.6.2
- version: 6.6.2
+ version: 6.6.3
'@testing-library/react':
specifier: ^16.0.1
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@testing-library/user-event':
specifier: ^14.5.2
version: 14.5.2(@testing-library/dom@10.4.0)
@@ -119,34 +119,34 @@ importers:
version: 7.32.0
eslint-config-airbnb:
specifier: ^18.2.1
- version: 18.2.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)
+ version: 18.2.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0)
eslint-config-airbnb-typescript:
specifier: ^12.3.1
- version: 12.3.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5)
+ version: 12.3.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5)
eslint-config-prettier:
specifier: ^8.2.0
version: 8.10.0(eslint@7.32.0)
eslint-config-react-app:
specifier: ^6.0.0
- version: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jest@24.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5)
+ version: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jest@24.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5)
eslint-config-ts-lambdas:
specifier: ^1.2.3
version: 1.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)
eslint-import-resolver-typescript:
specifier: ^2.4.0
- version: 2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0)
+ version: 2.7.1(eslint-plugin-import@2.31.0)(eslint@7.32.0)
eslint-loader:
specifier: ^4.0.2
- version: 4.0.2(eslint@7.32.0)(webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12))
+ version: 4.0.2(eslint@7.32.0)(webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12))
eslint-plugin-import:
specifier: ^2.26.0
- version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
+ version: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
eslint-plugin-jest:
specifier: ^24.7.0
version: 24.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)
eslint-plugin-jsx-a11y:
specifier: ^6.4.1
- version: 6.8.0(eslint@7.32.0)
+ version: 6.10.2(eslint@7.32.0)
eslint-plugin-node:
specifier: ^11.1.0
version: 11.1.0(eslint@7.32.0)
@@ -155,13 +155,13 @@ importers:
version: 4.2.1(eslint-config-prettier@8.10.0(eslint@7.32.0))(eslint@7.32.0)(prettier@2.8.8)
eslint-plugin-promise:
specifier: ^6.0.0
- version: 6.1.1(eslint@7.32.0)
+ version: 6.6.0(eslint@7.32.0)
eslint-plugin-react:
specifier: ^7.23.2
- version: 7.34.1(eslint@7.32.0)
+ version: 7.37.2(eslint@7.32.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.0(eslint@7.32.0)
+ version: 4.6.2(eslint@7.32.0)
eslint-plugin-unused-imports:
specifier: ^2.0.0
version: 2.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)
@@ -188,22 +188,22 @@ importers:
version: 8.0.3
intl-messageformat:
specifier: ^10.1.0
- version: 10.5.11
+ version: 10.7.5
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ version: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
jest-watch-typeahead:
specifier: 2.2.2
- version: 2.2.2(jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5)))
+ version: 2.2.2(jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5)))
lint-staged:
specifier: ^13.0.3
version: 13.3.0(enquirer@2.4.1)
npm-check-updates:
specifier: ^16.10.18
- version: 16.14.18
+ version: 16.14.20
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
@@ -212,7 +212,7 @@ importers:
version: 1.1.8
parcel:
specifier: ^2.3.1
- version: 2.12.0(@swc/helpers@0.5.9)(postcss@8.4.38)(srcset@4.0.0)(terser@5.30.3)(typescript@4.9.5)
+ version: 2.12.0(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.36.0)(typescript@4.9.5)
plop:
specifier: 3.1.1
version: 3.1.1
@@ -227,10 +227,10 @@ importers:
version: 5.0.1
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
rimraf:
specifier: ^3.0.2
version: 3.0.2
@@ -239,7 +239,7 @@ importers:
version: 0.8.5
tsup:
specifier: 6.4.0
- version: 6.4.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5)
+ version: 6.4.0(@swc/core@1.8.0(@swc/helpers@0.5.13))(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5)
tsx:
specifier: ^3.8.2
version: 3.14.0
@@ -251,13 +251,13 @@ importers:
version: 4.9.5
webpack:
specifier: ^5.53.0
- version: 5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)
+ version: 5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12)
webpack-bundle-analyzer:
specifier: ^4.4.2
version: 4.10.2
webpack-cli:
specifier: ^3.3.11
- version: 3.3.12(webpack@5.91.0)
+ version: 3.3.12(webpack@5.96.1)
webpack-merge:
specifier: ^5.8.0
version: 5.10.0
@@ -266,16 +266,16 @@ importers:
dependencies:
'@codesandbox/sandpack-react':
specifier: ^2.6.4
- version: 2.13.8(@lezer/common@1.2.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.19.9(@lezer/common@1.2.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@iconify/icons-solar':
specifier: ^1.2.3
version: 1.2.3
'@iconify/react':
specifier: ^4.1.1
- version: 4.1.1(react@18.2.0)
+ version: 4.1.1(react@18.3.1)
'@internationalized/date':
specifier: ^3.5.4
- version: 3.5.4
+ version: 3.5.6
'@mapbox/rehype-prism':
specifier: ^0.6.0
version: 0.6.0
@@ -329,64 +329,64 @@ importers:
version: link:../../packages/hooks/use-is-mobile
'@radix-ui/react-scroll-area':
specifier: ^1.0.5
- version: 1.0.5(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.2.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/selection':
specifier: 3.18.1
- version: 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/ssr':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/virtualizer':
specifier: 3.10.1
- version: 3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/data':
specifier: 3.11.4
- version: 3.11.4(react@18.2.0)
+ version: 3.11.4(react@18.3.1)
'@react-stately/layout':
specifier: 3.13.9
- version: 3.13.9(react@18.2.0)
+ version: 3.13.9(react@18.3.1)
'@react-stately/tree':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@rehooks/local-storage':
specifier: ^2.4.5
- version: 2.4.5(react@18.2.0)
+ version: 2.4.5(react@18.3.1)
'@vercel/analytics':
specifier: ^1.2.2
- version: 1.2.2(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ version: 1.3.2(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
canvas-confetti:
specifier: ^1.9.2
- version: 1.9.2
+ version: 1.9.3
cmdk:
specifier: ^0.2.0
- version: 0.2.1(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 0.2.1(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
color2k:
specifier: ^2.0.2
version: 2.0.3
contentlayer2:
specifier: ^0.5.1
- version: 0.5.1(esbuild@0.20.2)
+ version: 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
date-fns:
specifier: ^2.30.0
version: 2.30.0
framer-motion:
specifier: ^11.1.7
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
github-slugger:
specifier: ^2.0.0
version: 2.0.0
@@ -404,7 +404,7 @@ importers:
version: 5.1.2
match-sorter:
specifier: ^6.3.1
- version: 6.3.4
+ version: 6.4.0
mini-svg-data-uri:
specifier: ^1.4.3
version: 1.4.4
@@ -413,13 +413,13 @@ importers:
version: 3.0.0
next:
specifier: 13.5.1
- version: 13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-contentlayer2:
specifier: ^0.5.1
- version: 0.5.1(contentlayer2@0.5.1(esbuild@0.20.2))(esbuild@0.20.2)(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 0.5.3(acorn@8.14.0)(contentlayer2@0.5.3(acorn@8.14.0)(esbuild@0.18.20))(esbuild@0.18.20)(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes:
specifier: ^0.2.1
- version: 0.2.1(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 0.2.1(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nprogress:
specifier: ^0.2.0
version: 0.2.0
@@ -428,28 +428,28 @@ importers:
version: 1.2.0
prism-react-renderer:
specifier: ^1.2.1
- version: 1.3.5(react@18.2.0)
+ version: 1.3.5(react@18.3.1)
querystring:
specifier: ^0.2.1
version: 0.2.1
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-icons:
specifier: ^4.10.1
- version: 4.12.0(react@18.2.0)
+ version: 4.12.0(react@18.3.1)
react-live:
specifier: ^2.3.0
- version: 2.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-multi-ref:
specifier: ^1.0.1
- version: 1.0.1
+ version: 1.0.2
react-wrap-balancer:
specifier: ^1.0.0
- version: 1.1.0(react@18.2.0)
+ version: 1.1.1(react@18.3.1)
refractor:
specifier: 3.3.1
version: 3.3.1
@@ -461,7 +461,7 @@ importers:
version: 9.0.1
rehype-pretty-code:
specifier: ^0.14.0
- version: 0.14.0(shiki@0.14.7)
+ version: 0.14.0(shiki@1.22.2)
rehype-slug:
specifier: ^6.0.0
version: 6.0.0
@@ -485,10 +485,10 @@ importers:
version: 0.8.5
swr:
specifier: ^2.2.1
- version: 2.2.5(react@18.2.0)
+ version: 2.2.5(react@18.3.1)
tailwind-variants:
specifier: ^0.1.20
- version: 0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2)))
+ version: 0.1.20(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3)))
unified:
specifier: ^11.0.5
version: 11.0.5
@@ -497,32 +497,32 @@ importers:
version: 5.0.0
usehooks-ts:
specifier: ^2.9.1
- version: 2.16.0(react@18.2.0)
+ version: 2.16.0(react@18.3.1)
zustand:
specifier: ^4.3.8
- version: 4.5.2(@types/react@18.2.8)(react@18.2.0)
+ version: 4.5.5(@types/react@18.2.8)(react@18.3.1)
devDependencies:
'@docusaurus/utils':
specifier: 2.0.0-beta.3
- version: 2.0.0-beta.3(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack-cli@3.3.12(webpack@5.91.0))
+ version: 2.0.0-beta.3(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))
'@next/bundle-analyzer':
specifier: ^13.4.6
- version: 13.5.6
+ version: 13.5.7
'@next/env':
specifier: ^13.4.12
- version: 13.5.6
+ version: 13.5.7
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
'@tailwindcss/typography':
specifier: ^0.5.9
- version: 0.5.12(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2)))
+ version: 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3)))
'@types/canvas-confetti':
specifier: ^1.4.2
version: 1.6.4
'@types/lodash':
specifier: ^4.14.194
- version: 4.17.5
+ version: 4.17.13
'@types/marked':
specifier: ^5.0.0
version: 5.0.2
@@ -558,43 +558,43 @@ importers:
version: 8.3.4
algoliasearch:
specifier: ^4.10.3
- version: 4.23.3
+ version: 4.24.0
autoprefixer:
specifier: ^10.4.14
- version: 10.4.19(postcss@8.4.38)
+ version: 10.4.20(postcss@8.4.47)
dotenv:
specifier: ^16.0.1
version: 16.4.5
esbuild-plugin-raw:
specifier: 0.1.8
- version: 0.1.8(esbuild@0.20.2)
+ version: 0.1.8(esbuild@0.18.20)
eslint-config-next:
specifier: ^13.5.1
- version: 13.5.6(eslint@7.32.0)(typescript@5.6.2)
+ version: 13.5.7(eslint@7.32.0)(typescript@5.6.3)
markdown-toc:
specifier: ^1.2.0
version: 1.2.0
next-sitemap:
specifier: ^4.1.8
- version: 4.2.3(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))
+ version: 4.2.3(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
node-fetch:
specifier: ^3.2.10
version: 3.3.2
postcss:
specifier: ^8.4.21
- version: 8.4.38
+ version: 8.4.47
prettier:
specifier: ^2.7.1
version: 2.8.8
tailwindcss:
specifier: ^3.4.0
- version: 3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2))
+ version: 3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3))
tsx:
specifier: ^3.8.2
version: 3.14.0
typescript:
specifier: ^5.5.0
- version: 5.6.2
+ version: 5.6.3
uuid:
specifier: ^8.3.2
version: 8.3.2
@@ -624,25 +624,25 @@ importers:
version: link:../../hooks/use-aria-accordion
'@react-aria/button':
specifier: 3.9.5
- version: 3.9.5(react@18.2.0)
+ version: 3.9.5(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/tree':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/accordion':
specifier: 3.0.0-alpha.21
- version: 3.0.0-alpha.21(react@18.2.0)
+ version: 3.0.0-alpha.21(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -667,13 +667,50 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
+
+ packages/components/alert:
+ dependencies:
+ '@nextui-org/button':
+ specifier: workspace:*
+ version: link:../button
+ '@nextui-org/react-utils':
+ specifier: workspace:*
+ version: link:../../utilities/react-utils
+ '@nextui-org/shared-icons':
+ specifier: workspace:*
+ version: link:../../utilities/shared-icons
+ '@nextui-org/shared-utils':
+ specifier: workspace:*
+ version: link:../../utilities/shared-utils
+ '@react-aria/utils':
+ specifier: 3.24.1
+ version: 3.24.1(react@18.3.1)
+ '@react-stately/utils':
+ specifier: 3.10.1
+ version: 3.10.1(react@18.3.1)
+ devDependencies:
+ '@nextui-org/system':
+ specifier: workspace:*
+ version: link:../../core/system
+ '@nextui-org/theme':
+ specifier: workspace:*
+ version: link:../../core/theme
+ clean-package:
+ specifier: 2.2.0
+ version: 2.2.0
+ react:
+ specifier: ^18.2.0
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.3.1(react@18.3.1)
packages/components/autocomplete:
dependencies:
@@ -715,31 +752,31 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/combobox':
specifier: 3.9.1
- version: 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/combobox':
specifier: 3.8.4
- version: 3.8.4(react@18.2.0)
+ version: 3.8.4(react@18.3.1)
'@react-types/combobox':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -761,22 +798,22 @@ importers:
version: link:../../hooks/use-infinite-scroll
'@react-stately/data':
specifier: 3.11.4
- version: 3.11.4(react@18.2.0)
+ version: 3.11.4(react@18.3.1)
clean-package:
specifier: 2.2.0
version: 2.2.0
framer-motion:
specifier: ^11.0.28
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-hook-form:
specifier: ^7.51.3
- version: 7.51.3(react@18.2.0)
+ version: 7.53.1(react@18.3.1)
packages/components/avatar:
dependencies:
@@ -791,13 +828,13 @@ importers:
version: link:../../hooks/use-image
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
devDependencies:
'@nextui-org/shared-icons':
specifier: workspace:*
@@ -816,10 +853,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/badge:
dependencies:
@@ -850,10 +887,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/breadcrumbs:
dependencies:
@@ -868,19 +905,19 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/breadcrumbs':
specifier: 3.5.13
- version: 3.5.13(react@18.2.0)
+ version: 3.5.13(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/breadcrumbs':
specifier: 3.7.5
- version: 3.7.5(react@18.2.0)
+ version: 3.7.5(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/button':
specifier: workspace:*
@@ -902,10 +939,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/button:
dependencies:
@@ -926,25 +963,25 @@ importers:
version: link:../../hooks/use-aria-button
'@react-aria/button':
specifier: 3.9.5
- version: 3.9.5(react@18.2.0)
+ version: 3.9.5(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/button':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
framer-motion:
specifier: '>=10.17.0'
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@nextui-org/shared-icons':
specifier: workspace:*
@@ -960,16 +997,16 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/calendar:
dependencies:
'@internationalized/date':
specifier: ^3.5.4
- version: 3.5.4
+ version: 3.5.6
'@nextui-org/button':
specifier: workspace:*
version: link:../button
@@ -990,37 +1027,37 @@ importers:
version: link:../../hooks/use-aria-button
'@react-aria/calendar':
specifier: 3.5.8
- version: 3.5.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/calendar':
specifier: 3.5.1
- version: 3.5.1(react@18.2.0)
+ version: 3.5.1(react@18.3.1)
'@react-stately/utils':
specifier: 3.10.1
- version: 3.10.1(react@18.2.0)
+ version: 3.10.1(react@18.3.1)
'@react-types/button':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/calendar':
specifier: 3.4.6
- version: 3.4.6(react@18.2.0)
+ version: 3.4.6(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
'@types/lodash.debounce':
specifier: ^4.0.7
version: 4.0.9
@@ -1048,13 +1085,13 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^10.16.4
- version: 10.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/card:
dependencies:
@@ -1072,22 +1109,22 @@ importers:
version: link:../../hooks/use-aria-button
'@react-aria/button':
specifier: 3.9.5
- version: 3.9.5(react@18.2.0)
+ version: 3.9.5(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
framer-motion:
specifier: '>=10.17.0'
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -1115,10 +1152,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/checkbox:
dependencies:
@@ -1136,31 +1173,31 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/checkbox':
specifier: 3.14.3
- version: 3.14.3(react@18.2.0)
+ version: 3.14.3(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/checkbox':
specifier: 3.6.5
- version: 3.6.5(react@18.2.0)
+ version: 3.6.5(react@18.3.1)
'@react-stately/toggle':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-types/checkbox':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/chip':
specifier: workspace:*
@@ -1185,13 +1222,13 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-hook-form:
specifier: ^7.51.3
- version: 7.51.3(react@18.2.0)
+ version: 7.53.1(react@18.3.1)
packages/components/chip:
dependencies:
@@ -1206,16 +1243,16 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/checkbox':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -1231,10 +1268,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/code:
dependencies:
@@ -1256,16 +1293,16 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/date-input:
dependencies:
'@internationalized/date':
specifier: ^3.5.4
- version: 3.5.4
+ version: 3.5.6
'@nextui-org/react-utils':
specifier: workspace:*
version: link:../../utilities/react-utils
@@ -1274,22 +1311,22 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/datepicker':
specifier: 3.10.1
- version: 3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/datepicker':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/datepicker':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/shared-icons':
specifier: workspace:*
@@ -1308,16 +1345,16 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/date-picker:
dependencies:
'@internationalized/date':
specifier: ^3.5.4
- version: 3.5.4
+ version: 3.5.6
'@nextui-org/aria-utils':
specifier: workspace:*
version: link:../../utilities/aria-utils
@@ -1344,28 +1381,28 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/datepicker':
specifier: 3.10.1
- version: 3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/datepicker':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-stately/overlays':
specifier: 3.6.7
- version: 3.6.7(react@18.2.0)
+ version: 3.6.7(react@18.3.1)
'@react-stately/utils':
specifier: 3.10.1
- version: 3.10.1(react@18.2.0)
+ version: 3.10.1(react@18.3.1)
'@react-types/datepicker':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/radio':
specifier: workspace:*
@@ -1384,10 +1421,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/divider:
dependencies:
@@ -1402,7 +1439,7 @@ importers:
version: link:../../core/system-rsc
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/theme':
specifier: workspace:*
@@ -1412,10 +1449,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/dropdown:
dependencies:
@@ -1436,19 +1473,19 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/menu':
specifier: 3.14.1
- version: 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/menu':
specifier: 3.7.1
- version: 3.7.1(react@18.2.0)
+ version: 3.7.1(react@18.3.1)
'@react-types/menu':
specifier: 3.9.9
- version: 3.9.9(react@18.2.0)
+ version: 3.9.9(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -1479,13 +1516,13 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/image:
dependencies:
@@ -1510,10 +1547,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/input:
dependencies:
@@ -1531,28 +1568,28 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/textfield':
specifier: 3.14.5
- version: 3.14.5(react@18.2.0)
+ version: 3.14.5(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/utils':
specifier: 3.10.1
- version: 3.10.1(react@18.2.0)
+ version: 3.10.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
'@react-types/textfield':
specifier: 3.9.3
- version: 3.9.3(react@18.2.0)
+ version: 3.9.3(react@18.3.1)
react-textarea-autosize:
specifier: ^8.5.3
- version: 8.5.3(@types/react@18.2.8)(react@18.2.0)
+ version: 8.5.4(@types/react@18.2.8)(react@18.3.1)
devDependencies:
'@nextui-org/system':
specifier: workspace:*
@@ -1565,13 +1602,13 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-hook-form:
specifier: ^7.51.3
- version: 7.51.3(react@18.2.0)
+ version: 7.53.1(react@18.3.1)
packages/components/kbd:
dependencies:
@@ -1586,7 +1623,7 @@ importers:
version: link:../../core/system-rsc
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
devDependencies:
'@nextui-org/theme':
specifier: workspace:*
@@ -1596,10 +1633,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/link:
dependencies:
@@ -1617,16 +1654,16 @@ importers:
version: link:../../hooks/use-aria-link
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/link':
specifier: 3.7.1
- version: 3.7.1(react@18.2.0)
+ version: 3.7.1(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/link':
specifier: 3.5.5
- version: 3.5.5(react@18.2.0)
+ version: 3.5.5(react@18.3.1)
devDependencies:
'@nextui-org/system':
specifier: workspace:*
@@ -1639,10 +1676,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/listbox:
dependencies:
@@ -1663,25 +1700,25 @@ importers:
version: link:../../hooks/use-is-mobile
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/listbox':
specifier: 3.12.1
- version: 3.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/list':
specifier: 3.10.5
- version: 3.10.5(react@18.2.0)
+ version: 3.10.5(react@18.3.1)
'@react-types/menu':
specifier: 3.9.9
- version: 3.9.9(react@18.2.0)
+ version: 3.9.9(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -1709,10 +1746,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/menu:
dependencies:
@@ -1736,28 +1773,28 @@ importers:
version: link:../../hooks/use-is-mobile
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/menu':
specifier: 3.14.1
- version: 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/menu':
specifier: 3.7.1
- version: 3.7.1(react@18.2.0)
+ version: 3.7.1(react@18.3.1)
'@react-stately/tree':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/menu':
specifier: 3.9.9
- version: 3.9.9(react@18.2.0)
+ version: 3.9.9(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/shared-icons':
specifier: workspace:*
@@ -1776,10 +1813,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/modal:
dependencies:
@@ -1806,25 +1843,25 @@ importers:
version: link:../../hooks/use-disclosure
'@react-aria/dialog':
specifier: 3.5.14
- version: 3.5.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/overlays':
specifier: 3.22.1
- version: 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/overlays':
specifier: 3.6.7
- version: 3.6.7(react@18.2.0)
+ version: 3.6.7(react@18.3.1)
'@react-types/overlays':
specifier: 3.8.7
- version: 3.8.7(react@18.2.0)
+ version: 3.8.7(react@18.3.1)
devDependencies:
'@nextui-org/button':
specifier: workspace:*
@@ -1849,16 +1886,16 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-lorem-component:
specifier: 0.13.0
- version: 0.13.0(react@18.2.0)
+ version: 0.13.0(react@18.3.1)
packages/components/navbar:
dependencies:
@@ -1879,28 +1916,28 @@ importers:
version: link:../../hooks/use-scroll-position
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/overlays':
specifier: 3.22.1
- version: 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/toggle':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-stately/utils':
specifier: 3.10.1
- version: 3.10.1(react@18.2.0)
+ version: 3.10.1(react@18.3.1)
framer-motion:
specifier: '>=10.17.0'
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-remove-scroll:
specifier: ^2.5.6
- version: 2.5.9(@types/react@18.2.8)(react@18.2.0)
+ version: 2.6.0(@types/react@18.2.8)(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -1931,13 +1968,13 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-lorem-component:
specifier: 0.13.0
- version: 0.13.0(react@18.2.0)
+ version: 0.13.0(react@18.3.1)
packages/components/pagination:
dependencies:
@@ -1955,16 +1992,16 @@ importers:
version: link:../../hooks/use-pagination
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
scroll-into-view-if-needed:
specifier: 3.0.10
version: 3.0.10
@@ -1980,10 +2017,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/popover:
dependencies:
@@ -2010,31 +2047,31 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/dialog':
specifier: 3.5.14
- version: 3.5.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/overlays':
specifier: 3.22.1
- version: 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/overlays':
specifier: 3.6.7
- version: 3.6.7(react@18.2.0)
+ version: 3.6.7(react@18.3.1)
'@react-types/button':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/overlays':
specifier: 3.8.7
- version: 3.8.7(react@18.2.0)
+ version: 3.8.7(react@18.3.1)
react-remove-scroll:
specifier: ^2.5.6
- version: 2.5.9(@types/react@18.2.8)(react@18.2.0)
+ version: 2.6.0(@types/react@18.2.8)(react@18.3.1)
devDependencies:
'@nextui-org/card':
specifier: workspace:*
@@ -2053,13 +2090,13 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/progress:
dependencies:
@@ -2074,16 +2111,16 @@ importers:
version: link:../../hooks/use-is-mounted
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/progress':
specifier: 3.4.13
- version: 3.4.13(react@18.2.0)
+ version: 3.4.13(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/progress':
specifier: 3.5.4
- version: 3.5.4(react@18.2.0)
+ version: 3.5.4(react@18.3.1)
devDependencies:
'@nextui-org/card':
specifier: workspace:*
@@ -2102,10 +2139,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/radio:
dependencies:
@@ -2117,28 +2154,28 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/radio':
specifier: 3.10.4
- version: 3.10.4(react@18.2.0)
+ version: 3.10.4(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/radio':
specifier: 3.10.4
- version: 3.10.4(react@18.2.0)
+ version: 3.10.4(react@18.3.1)
'@react-types/radio':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/button':
specifier: workspace:*
@@ -2154,10 +2191,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/ripple:
dependencies:
@@ -2179,13 +2216,13 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/scroll-shadow:
dependencies:
@@ -2210,13 +2247,13 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-lorem-component:
specifier: 0.13.0
- version: 0.13.0(react@18.2.0)
+ version: 0.13.0(react@18.3.1)
packages/components/select:
dependencies:
@@ -2255,22 +2292,22 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/form':
specifier: 3.0.5
- version: 3.0.5(react@18.2.0)
+ version: 3.0.5(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/avatar':
specifier: workspace:*
@@ -2298,25 +2335,25 @@ importers:
version: link:../../hooks/use-infinite-scroll
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-stately/data':
specifier: 3.11.4
- version: 3.11.4(react@18.2.0)
+ version: 3.11.4(react@18.3.1)
clean-package:
specifier: 2.2.0
version: 2.2.0
framer-motion:
specifier: ^11.0.28
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-hook-form:
specifier: ^7.51.3
- version: 7.51.3(react@18.2.0)
+ version: 7.53.1(react@18.3.1)
packages/components/skeleton:
dependencies:
@@ -2344,10 +2381,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/slider:
dependencies:
@@ -2362,25 +2399,25 @@ importers:
version: link:../tooltip
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/slider':
specifier: 3.7.8
- version: 3.7.8(react@18.2.0)
+ version: 3.7.8(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/slider':
specifier: 3.5.4
- version: 3.5.4(react@18.2.0)
+ version: 3.5.4(react@18.3.1)
devDependencies:
'@nextui-org/shared-icons':
specifier: workspace:*
@@ -2399,10 +2436,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/snippet:
dependencies:
@@ -2426,13 +2463,13 @@ importers:
version: link:../../hooks/use-clipboard
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
framer-motion:
specifier: '>=10.17.0'
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@nextui-org/system':
specifier: workspace:*
@@ -2445,10 +2482,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/spacer:
dependencies:
@@ -2470,10 +2507,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/spinner:
dependencies:
@@ -2495,10 +2532,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/switch:
dependencies:
@@ -2513,25 +2550,25 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/switch':
specifier: 3.6.4
- version: 3.6.4(react@18.2.0)
+ version: 3.6.4(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/toggle':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
'@nextui-org/shared-icons':
specifier: workspace:*
@@ -2547,13 +2584,13 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-hook-form:
specifier: ^7.51.3
- version: 7.51.3(react@18.2.0)
+ version: 7.53.1(react@18.3.1)
packages/components/table:
dependencies:
@@ -2574,31 +2611,31 @@ importers:
version: link:../spacer
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/table':
specifier: 3.14.1
- version: 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
'@react-stately/table':
specifier: 3.11.8
- version: 3.11.8(react@18.2.0)
+ version: 3.11.8(react@18.3.1)
'@react-stately/virtualizer':
specifier: 3.7.1
- version: 3.7.1(react@18.2.0)
+ version: 3.7.1(react@18.3.1)
'@react-types/grid':
specifier: 3.2.6
- version: 3.2.6(react@18.2.0)
+ version: 3.2.6(react@18.3.1)
'@react-types/table':
specifier: 3.9.5
- version: 3.9.5(react@18.2.0)
+ version: 3.9.5(react@18.3.1)
devDependencies:
'@nextui-org/button':
specifier: workspace:*
@@ -2629,19 +2666,19 @@ importers:
version: link:../user
'@react-stately/data':
specifier: 3.11.4
- version: 3.11.4(react@18.2.0)
+ version: 3.11.4(react@18.3.1)
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
swr:
specifier: ^2.2.1
- version: 2.2.5(react@18.2.0)
+ version: 2.2.5(react@18.3.1)
packages/components/tabs:
dependencies:
@@ -2665,25 +2702,25 @@ importers:
version: link:../../hooks/use-update-effect
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/tabs':
specifier: 3.9.1
- version: 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/tabs':
specifier: 3.6.6
- version: 3.6.6(react@18.2.0)
+ version: 3.6.6(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
'@react-types/tabs':
specifier: 3.3.7
- version: 3.3.7(react@18.2.0)
+ version: 3.3.7(react@18.3.1)
scroll-into-view-if-needed:
specifier: 3.0.10
version: 3.0.10
@@ -2714,16 +2751,16 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-lorem-component:
specifier: 0.13.0
- version: 0.13.0(react@18.2.0)
+ version: 0.13.0(react@18.3.1)
packages/components/tooltip:
dependencies:
@@ -2744,25 +2781,25 @@ importers:
version: link:../../hooks/use-safe-layout-effect
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/overlays':
specifier: 3.22.1
- version: 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/tooltip':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/tooltip':
specifier: 3.4.9
- version: 3.4.9(react@18.2.0)
+ version: 3.4.9(react@18.3.1)
'@react-types/overlays':
specifier: 3.8.7
- version: 3.8.7(react@18.2.0)
+ version: 3.8.7(react@18.3.1)
'@react-types/tooltip':
specifier: 3.4.9
- version: 3.4.9(react@18.2.0)
+ version: 3.4.9(react@18.3.1)
devDependencies:
'@nextui-org/button':
specifier: workspace:*
@@ -2778,13 +2815,13 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.28
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/components/user:
dependencies:
@@ -2799,10 +2836,10 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
devDependencies:
'@nextui-org/link':
specifier: workspace:*
@@ -2818,16 +2855,19 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/core/react:
dependencies:
'@nextui-org/accordion':
specifier: workspace:*
version: link:../../components/accordion
+ '@nextui-org/alert':
+ specifier: workspace:*
+ version: link:../../components/alert
'@nextui-org/autocomplete':
specifier: workspace:*
version: link:../../components/autocomplete
@@ -2956,26 +2996,26 @@ importers:
version: link:../../components/user
'@react-aria/visually-hidden':
specifier: 3.8.12
- version: 3.8.12(react@18.2.0)
+ version: 3.8.12(react@18.3.1)
framer-motion:
specifier: '>=10.17.0'
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/core/system:
dependencies:
'@internationalized/date':
specifier: ^3.5.4
- version: 3.5.4
+ version: 3.5.6
'@nextui-org/react-utils':
specifier: workspace:*
version: link:../../utilities/react-utils
@@ -2984,35 +3024,35 @@ importers:
version: link:../system-rsc
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/overlays':
specifier: 3.22.1
- version: 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/utils':
specifier: 3.10.1
- version: 3.10.1(react@18.2.0)
+ version: 3.10.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/core/system-rsc:
dependencies:
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
clsx:
specifier: ^1.2.1
version: 1.2.1
@@ -3031,10 +3071,10 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
tailwind-variants:
specifier: ^0.1.20
- version: 0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2)))
+ version: 0.1.20(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)))
packages/core/theme:
dependencies:
@@ -3073,7 +3113,7 @@ importers:
version: 1.14.0
tailwind-variants:
specifier: ^0.1.20
- version: 0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2)))
+ version: 0.1.20(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)))
devDependencies:
'@types/color':
specifier: ^3.0.3
@@ -3101,230 +3141,230 @@ importers:
version: 2.2.0
tailwindcss:
specifier: ^3.4.0
- version: 3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2))
+ version: 3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5))
packages/hooks/use-aria-accordion:
dependencies:
'@react-aria/button':
specifier: 3.9.5
- version: 3.9.5(react@18.2.0)
+ version: 3.9.5(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/selection':
specifier: 3.18.1
- version: 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/tree':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/accordion':
specifier: 3.0.0-alpha.21
- version: 3.0.0-alpha.21(react@18.2.0)
+ version: 3.0.0-alpha.21(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-aria-accordion-item:
dependencies:
'@react-aria/button':
specifier: 3.9.5
- version: 3.9.5(react@18.2.0)
+ version: 3.9.5(react@18.3.1)
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-stately/tree':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-aria-button:
dependencies:
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/button':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-aria-link:
dependencies:
'@react-aria/focus':
specifier: 3.17.1
- version: 3.17.1(react@18.2.0)
+ version: 3.17.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/link':
specifier: 3.5.5
- version: 3.5.5(react@18.2.0)
+ version: 3.5.5(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-aria-menu:
dependencies:
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/menu':
specifier: 3.14.1
- version: 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/selection':
specifier: 3.18.1
- version: 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/collections':
specifier: 3.10.7
- version: 3.10.7(react@18.2.0)
+ version: 3.10.7(react@18.3.1)
'@react-stately/tree':
specifier: 3.8.1
- version: 3.8.1(react@18.2.0)
+ version: 3.8.1(react@18.3.1)
'@react-types/menu':
specifier: 3.9.9
- version: 3.9.9(react@18.2.0)
+ version: 3.9.9(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-aria-modal-overlay:
dependencies:
'@react-aria/overlays':
specifier: 3.22.1
- version: 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/overlays':
specifier: 3.6.7
- version: 3.6.7(react@18.2.0)
+ version: 3.6.7(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/hooks/use-aria-multiselect:
dependencies:
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/label':
specifier: 3.7.8
- version: 3.7.8(react@18.2.0)
+ version: 3.7.8(react@18.3.1)
'@react-aria/listbox':
specifier: 3.12.1
- version: 3.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/menu':
specifier: 3.14.1
- version: 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/selection':
specifier: 3.18.1
- version: 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/form':
specifier: 3.0.3
- version: 3.0.3(react@18.2.0)
+ version: 3.0.3(react@18.3.1)
'@react-stately/list':
specifier: 3.10.5
- version: 3.10.5(react@18.2.0)
+ version: 3.10.5(react@18.3.1)
'@react-stately/menu':
specifier: 3.7.1
- version: 3.7.1(react@18.2.0)
+ version: 3.7.1(react@18.3.1)
'@react-types/button':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/overlays':
specifier: 3.8.7
- version: 3.8.7(react@18.2.0)
+ version: 3.8.7(react@18.3.1)
'@react-types/select':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/hooks/use-aria-toggle-button:
dependencies:
@@ -3333,23 +3373,23 @@ importers:
version: link:../use-aria-button
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/toggle':
specifier: 3.7.4
- version: 3.7.4(react@18.2.0)
+ version: 3.7.4(react@18.3.1)
'@react-types/button':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-callback-ref:
dependencies:
@@ -3362,7 +3402,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-clipboard:
devDependencies:
@@ -3371,7 +3411,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-data-scroll-overflow:
dependencies:
@@ -3384,7 +3424,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-disclosure:
dependencies:
@@ -3393,17 +3433,17 @@ importers:
version: link:../use-callback-ref
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/utils':
specifier: 3.10.1
- version: 3.10.1(react@18.2.0)
+ version: 3.10.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-image:
dependencies:
@@ -3416,7 +3456,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-infinite-scroll:
dependencies:
@@ -3432,42 +3472,42 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-intersection-observer:
dependencies:
'@react-aria/interactions':
specifier: 3.21.3
- version: 3.21.3(react@18.2.0)
+ version: 3.21.3(react@18.3.1)
'@react-aria/ssr':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-is-mobile:
dependencies:
'@react-aria/ssr':
specifier: 3.9.4
- version: 3.9.4(react@18.2.0)
+ version: 3.9.4(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-is-mounted:
devDependencies:
@@ -3476,7 +3516,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-measure:
devDependencies:
@@ -3485,7 +3525,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-pagination:
dependencies:
@@ -3494,14 +3534,14 @@ importers:
version: link:../../utilities/shared-utils
'@react-aria/i18n':
specifier: 3.11.1
- version: 3.11.1(react@18.2.0)
+ version: 3.11.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-real-shape:
dependencies:
@@ -3514,7 +3554,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-ref-state:
devDependencies:
@@ -3523,7 +3563,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-resize:
devDependencies:
@@ -3532,7 +3572,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-safe-layout-effect:
devDependencies:
@@ -3541,7 +3581,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-scroll-position:
devDependencies:
@@ -3550,7 +3590,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-ssr:
devDependencies:
@@ -3559,7 +3599,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/hooks/use-update-effect:
devDependencies:
@@ -3568,7 +3608,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/storybook:
dependencies:
@@ -3583,62 +3623,62 @@ importers:
version: link:../core/theme
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
devDependencies:
'@storybook/addon-a11y':
specifier: ^7.4.6
- version: 7.6.17
+ version: 7.6.20
'@storybook/addon-actions':
specifier: ^7.4.6
- version: 7.6.17
+ version: 7.6.20
'@storybook/addon-docs':
specifier: ^7.4.6
- version: 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack-sources@3.2.3)
'@storybook/addon-essentials':
specifier: ^7.4.6
- version: 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack-sources@3.2.3)
'@storybook/addon-links':
specifier: ^7.4.6
- version: 7.6.17(react@18.2.0)
+ version: 7.6.20(react@18.3.1)
'@storybook/addon-mdx-gfm':
specifier: ^7.4.6
- version: 7.6.17
+ version: 7.6.20
'@storybook/cli':
specifier: ^7.4.6
- version: 7.6.17(encoding@0.1.13)
+ version: 7.6.20(encoding@0.1.13)
'@storybook/manager-api':
specifier: ^7.6.17
- version: 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/preview-api':
specifier: ^7.6.17
- version: 7.6.17
+ version: 7.6.20
'@storybook/react':
specifier: ^7.4.6
- version: 7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.6.2)
+ version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
'@storybook/react-vite':
specifier: ^7.4.6
- version: 7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@3.29.4)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))
+ version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.5)(typescript@5.6.3)(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))(webpack-sources@3.2.3)
'@storybook/theming':
specifier: ^7.4.6
- version: 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
autoprefixer:
specifier: ^10.4.13
- version: 10.4.19(postcss@8.4.38)
+ version: 10.4.20(postcss@8.4.47)
storybook:
specifier: ^7.4.6
- version: 7.6.17(encoding@0.1.13)
+ version: 7.6.20(encoding@0.1.13)
storybook-dark-mode:
specifier: ^3.0.1
- version: 3.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 3.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
tailwindcss:
specifier: ^3.3.5
- version: 3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2))
+ version: 3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@5.6.3))
vite:
specifier: ^4.4.7
- version: 4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3)
+ version: 4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0)
packages/utilities/aria-utils:
dependencies:
@@ -3653,29 +3693,29 @@ importers:
version: link:../../core/system
'@react-aria/utils':
specifier: 3.24.1
- version: 3.24.1(react@18.2.0)
+ version: 3.24.1(react@18.3.1)
'@react-stately/collections':
specifier: 3.10.7
- version: 3.10.7(react@18.2.0)
+ version: 3.10.7(react@18.3.1)
'@react-stately/overlays':
specifier: 3.6.7
- version: 3.6.7(react@18.2.0)
+ version: 3.6.7(react@18.3.1)
'@react-types/overlays':
specifier: 3.8.7
- version: 3.8.7(react@18.2.0)
+ version: 3.8.7(react@18.3.1)
'@react-types/shared':
specifier: 3.23.1
- version: 3.23.1(react@18.2.0)
+ version: 3.23.1(react@18.3.1)
devDependencies:
clean-package:
specifier: 2.2.0
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/utilities/framer-utils:
dependencies:
@@ -3694,13 +3734,13 @@ importers:
version: 2.2.0
framer-motion:
specifier: ^11.0.22
- version: 11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
packages/utilities/react-rsc-utils:
devDependencies:
@@ -3709,7 +3749,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/utilities/react-utils:
dependencies:
@@ -3725,7 +3765,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/utilities/shared-icons:
devDependencies:
@@ -3734,7 +3774,7 @@ importers:
version: 2.2.0
react:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.3.1
packages/utilities/shared-utils:
devDependencies:
@@ -3756,57 +3796,53 @@ importers:
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@adobe/css-tools@4.4.0':
resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
- '@algolia/cache-browser-local-storage@4.23.3':
- resolution: {integrity: sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==}
+ '@algolia/cache-browser-local-storage@4.24.0':
+ resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==}
- '@algolia/cache-common@4.23.3':
- resolution: {integrity: sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==}
+ '@algolia/cache-common@4.24.0':
+ resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
- '@algolia/cache-in-memory@4.23.3':
- resolution: {integrity: sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==}
+ '@algolia/cache-in-memory@4.24.0':
+ resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==}
- '@algolia/client-account@4.23.3':
- resolution: {integrity: sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==}
+ '@algolia/client-account@4.24.0':
+ resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
- '@algolia/client-analytics@4.23.3':
- resolution: {integrity: sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==}
+ '@algolia/client-analytics@4.24.0':
+ resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
- '@algolia/client-common@4.23.3':
- resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==}
+ '@algolia/client-common@4.24.0':
+ resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- '@algolia/client-personalization@4.23.3':
- resolution: {integrity: sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==}
+ '@algolia/client-personalization@4.24.0':
+ resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
- '@algolia/client-search@4.23.3':
- resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==}
+ '@algolia/client-search@4.24.0':
+ resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
- '@algolia/logger-common@4.23.3':
- resolution: {integrity: sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==}
+ '@algolia/logger-common@4.24.0':
+ resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
- '@algolia/logger-console@4.23.3':
- resolution: {integrity: sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==}
+ '@algolia/logger-console@4.24.0':
+ resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==}
- '@algolia/recommend@4.23.3':
- resolution: {integrity: sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==}
+ '@algolia/recommend@4.24.0':
+ resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
- '@algolia/requester-browser-xhr@4.23.3':
- resolution: {integrity: sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==}
+ '@algolia/requester-browser-xhr@4.24.0':
+ resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
- '@algolia/requester-common@4.23.3':
- resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==}
+ '@algolia/requester-common@4.24.0':
+ resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
- '@algolia/requester-node-http@4.23.3':
- resolution: {integrity: sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==}
+ '@algolia/requester-node-http@4.24.0':
+ resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
- '@algolia/transporter@4.23.3':
- resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==}
+ '@algolia/transporter@4.24.0':
+ resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
@@ -3820,8 +3856,8 @@ packages:
resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==}
hasBin: true
- '@babel/cli@7.24.1':
- resolution: {integrity: sha512-HbmrtxyFUr34LwAlV9jS+sSIjUp4FpdtIMGwgufY3AsxrIfsh/HxlMTywsONAZsU0RMYbZtbZFpUCrSGs7o0EA==}
+ '@babel/cli@7.25.9':
+ resolution: {integrity: sha512-I+02IfrTiSanpxJBlZQYb18qCxB6c2Ih371cVpfgIrPQrjAYkf45XxomTJOG8JBWX5GY35/+TmhCMdJ4ZPkL8Q==}
engines: {node: '>=6.9.0'}
hasBin: true
peerDependencies:
@@ -3830,42 +3866,42 @@ packages:
'@babel/code-frame@7.12.11':
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
- '@babel/code-frame@7.24.2':
- resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.4':
- resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.4':
- resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.4':
- resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.22.5':
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
- resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.23.6':
- resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.4':
- resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.22.15':
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -3875,118 +3911,108 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0-0
- '@babel/helper-define-polyfill-provider@0.6.1':
- resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
+ '@babel/helper-define-polyfill-provider@0.6.2':
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-environment-visitor@7.22.20':
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.23.0':
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.22.5':
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-member-expression-to-functions@7.23.0':
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.3':
- resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.23.3':
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.22.5':
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.0':
- resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.22.20':
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.1':
- resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.22.5':
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.22.6':
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.23.5':
- resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.22.20':
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.4':
- resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.2':
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ '@babel/highlight@7.25.9':
+ resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.4':
- resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4':
- resolution: {integrity: sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1':
- resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1':
- resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1':
- resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -3998,8 +4024,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-export-default-from@7.24.1':
- resolution: {integrity: sha512-+0hrgGGV3xyYIjOrD/bUZk/iUwOIGuoANfRfVg1cPhYBxF+TIXSEcc42DqzBICmWsnAQ+SfKedY0bj8QD+LuMg==}
+ '@babel/plugin-proposal-export-default-from@7.25.9':
+ resolution: {integrity: sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4050,31 +4076,25 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-default-from@7.24.1':
- resolution: {integrity: sha512-cNXSxv9eTkGUtd0PsNMK8Yx5xeScxfpWOUAxE+ZPAXXEcAMOC3fk7LRdXq5fvpra2pLx2p1YtkAhpUbB2SwaRA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-export-namespace-from@7.8.3':
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.24.1':
- resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
+ '@babel/plugin-syntax-flow@7.26.0':
+ resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.24.1':
- resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.1':
- resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4089,8 +4109,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4137,8 +4157,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.1':
- resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4149,356 +4169,368 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.1':
- resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.24.3':
- resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.1':
- resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.1':
- resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.4':
- resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==}
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.1':
- resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.24.4':
- resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.24.1':
- resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.1':
- resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.1':
- resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.1':
- resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.1':
- resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.24.1':
- resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.1':
- resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.24.1':
- resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.24.1':
- resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
+ '@babel/plugin-transform-flow-strip-types@7.25.9':
+ resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.1':
- resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.24.1':
- resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.1':
- resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.24.1':
- resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.1':
- resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.1':
- resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.1':
- resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.1':
- resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.1':
- resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.1':
- resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.24.1':
- resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1':
- resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.1':
- resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.1':
- resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==}
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.1':
- resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.1':
- resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.1':
- resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==}
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.1':
- resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.1':
- resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.1':
- resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==}
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.1':
- resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.1':
- resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
+ '@babel/plugin-transform-react-display-name@7.25.9':
+ resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.22.5':
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ '@babel/plugin-transform-react-jsx-development@7.25.9':
+ resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.24.1':
- resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==}
+ '@babel/plugin-transform-react-jsx-self@7.25.9':
+ resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.24.1':
- resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==}
+ '@babel/plugin-transform-react-jsx-source@7.25.9':
+ resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.23.4':
- resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
+ '@babel/plugin-transform-react-jsx@7.25.9':
+ resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.24.1':
- resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
+ '@babel/plugin-transform-react-pure-annotations@7.25.9':
+ resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.1':
- resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.1':
- resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.3':
- resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
+ '@babel/plugin-transform-runtime@7.25.9':
+ resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.1':
- resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.1':
- resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.1':
- resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.1':
- resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.1':
- resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==}
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.4':
- resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
+ '@babel/plugin-transform-typescript@7.25.9':
+ resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.1':
- resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.1':
- resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.1':
- resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.1':
- resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.24.4':
- resolution: {integrity: sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.24.1':
- resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==}
+ '@babel/preset-flow@7.25.9':
+ resolution: {integrity: sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4508,41 +4540,38 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.1':
- resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
+ '@babel/preset-react@7.25.9':
+ resolution: {integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.24.1':
- resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
+ '@babel/preset-typescript@7.26.0':
+ resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.23.7':
- resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
+ '@babel/register@7.25.9':
+ resolution: {integrity: sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/regjsgen@0.8.0':
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
-
- '@babel/runtime@7.24.4':
- resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.0':
- resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.1':
- resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.0':
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@base2/pretty-print-object@1.0.1':
@@ -4615,19 +4644,19 @@ packages:
'@changesets/write@0.1.9':
resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==}
- '@codemirror/autocomplete@6.16.0':
- resolution: {integrity: sha512-P/LeCTtZHRTCU4xQsa89vSKWecYv1ZqwzOd5topheGRf+qtacFgBeIMQi3eL8Kt/BUNvxUWkx+5qP2jlGoARrg==}
+ '@codemirror/autocomplete@6.18.2':
+ resolution: {integrity: sha512-wJGylKtMFR/Ds6Gh01+OovXE/pncPiKZNNBKuC39pKnH+XK5d9+WsNqcrdxPjFPFTigRBqse0rfxw9UxrfyhPg==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
- '@codemirror/commands@6.3.3':
- resolution: {integrity: sha512-dO4hcF0fGT9tu1Pj1D2PvGvxjeGkbC6RGcZw6Qs74TH+Ed1gw98jmUgd2axWvIZEqTeTuFrg1lEB1KV6cK9h1A==}
+ '@codemirror/commands@6.7.1':
+ resolution: {integrity: sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==}
- '@codemirror/lang-css@6.2.1':
- resolution: {integrity: sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==}
+ '@codemirror/lang-css@6.3.0':
+ resolution: {integrity: sha512-CyR4rUNG9OYcXDZwMPvJdtb6PHbBDKUc/6Na2BIwZ6dKab1JQqKa4di+RNRY9Myn7JB81vayKwJeQ7jEdmNVDA==}
'@codemirror/lang-html@6.4.9':
resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==}
@@ -4635,26 +4664,26 @@ packages:
'@codemirror/lang-javascript@6.2.2':
resolution: {integrity: sha512-VGQfY+FCc285AhWuwjYxQyUQcYurWlxdKYT4bqwr3Twnd5wP5WSeu52t4tvvuWmljT4EmgEgZCqSieokhtY8hg==}
- '@codemirror/language@6.10.1':
- resolution: {integrity: sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ==}
+ '@codemirror/language@6.10.3':
+ resolution: {integrity: sha512-kDqEU5sCP55Oabl6E7m5N+vZRoc0iWqgDVhEKifcHzPzjqCegcO4amfrYVL9PmPZpl4G0yjkpTpUO/Ui8CzO8A==}
- '@codemirror/lint@6.5.0':
- resolution: {integrity: sha512-+5YyicIaaAZKU8K43IQi8TBy6mF6giGeWAH7N96Z5LC30Wm5JMjqxOYIE9mxwMG1NbhT2mA3l9hA4uuKUM3E5g==}
+ '@codemirror/lint@6.8.2':
+ resolution: {integrity: sha512-PDFG5DjHxSEjOXk9TQYYVjZDqlZTFaDBfhQixHnQOEVDDNHUbEh/hstAjcQJaA6FQdZTD1hquXTK0rVBLADR1g==}
'@codemirror/state@6.4.1':
resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==}
- '@codemirror/view@6.26.3':
- resolution: {integrity: sha512-gmqxkPALZjkgSxIeeweY/wGQXBfwTUaLs8h7OKtSwfbj9Ct3L11lD+u1sS7XHppxFQoMDiMDp07P9f3I2jWOHw==}
+ '@codemirror/view@6.34.1':
+ resolution: {integrity: sha512-t1zK/l9UiRqwUNPm+pdIT0qzJlzuVckbTEMVNFhfWkGiBQClstzg+78vedCvLSX0xJEZ6lwZbPpnljL7L6iwMQ==}
'@codesandbox/nodebox@0.1.8':
resolution: {integrity: sha512-2VRS6JDSk+M+pg56GA6CryyUSGPjBEe8Pnae0QL3jJF1mJZJVMDKr93gJRtBbLkfZN6LD/DwMtf+2L0bpWrjqg==}
- '@codesandbox/sandpack-client@2.13.8':
- resolution: {integrity: sha512-IjVlqfVK0fascNyUVH9hs5UZBx4KhKtyZyDrxdiDyQBtLmgESNaFWelAf4a/PX4gJp+H+WW6/iC6KzR7XtK//w==}
+ '@codesandbox/sandpack-client@2.19.8':
+ resolution: {integrity: sha512-CMV4nr1zgKzVpx4I3FYvGRM5YT0VaQhALMW9vy4wZRhEyWAtJITQIqZzrTGWqB1JvV7V72dVEUCUPLfYz5hgJQ==}
- '@codesandbox/sandpack-react@2.13.8':
- resolution: {integrity: sha512-+/OnUyrNidSzDDiek7drf8UUTJJl4Cd05dCG3BK51OBKoBCieRmsaUlIM3CU2nFDVAgvcSp9Cmu2CXQmwuJ58w==}
+ '@codesandbox/sandpack-react@2.19.9':
+ resolution: {integrity: sha512-a5uXWYdg5Wtz6VHwXIegdS7C63foCofFa/eHO9crtPp1Yf5/npKimds0S3kKJL7jpOmMAascEvAOqOy5S9e6qQ==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
@@ -4732,14 +4761,14 @@ packages:
resolution: {integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==}
engines: {node: '>=v14'}
- '@contentlayer2/cli@0.5.1':
- resolution: {integrity: sha512-nwDTAXKBXUg/eORBxXLDA9FoCxaSqhengSb6FjlyBCkrRyJ3IKQhWilld9Ol1xyYfTisI/5iddHa9ZB4kqltNg==}
+ '@contentlayer2/cli@0.5.3':
+ resolution: {integrity: sha512-8xO+piFSNVq5Ad2P3D30nM0BzQh1qQ0Q4kIx2otlLhYe3tdeuf3TCB3nFZTgfOJESnZABxqy6XTcfpmeAfNd/Q==}
- '@contentlayer2/client@0.5.1':
- resolution: {integrity: sha512-5/mNEEJN47h9AQ11qt9iu3XJCAMhgAPRJRp64+Trgr1iKHRVOWg9VvV+NHL3NCnDqMbJrw7vWICCgdCWn114IQ==}
+ '@contentlayer2/client@0.5.3':
+ resolution: {integrity: sha512-ZlrPpNhK+jNF00f20G6MIlELiEnVjUPuyjXeRHNsq582DzqcdgE/Etqa5O5zJ9/w3fhvyj5N1h7fP0MLFoswPw==}
- '@contentlayer2/core@0.5.1':
- resolution: {integrity: sha512-PR9uJ5lZC6wSq37uX252LZzNpWLmxJjlOzuxcBvFtmX4aSfOBbykSG/EVlwaLK0dFAT/q0vx+nObg7D2mpQ0YA==}
+ '@contentlayer2/core@0.5.3':
+ resolution: {integrity: sha512-qGDryuO+6Uw0U8JZ9cdrxzieEJkkwuTuT+soycnYFShuvqofb+wkpktnsaTn4wUXLd5ut/ngPrH/9w/IbOlF2w==}
peerDependencies:
esbuild: '>=0.17'
markdown-wasm: 1.x
@@ -4749,14 +4778,14 @@ packages:
markdown-wasm:
optional: true
- '@contentlayer2/source-files@0.5.1':
- resolution: {integrity: sha512-M2Z/LtfU9TwE9z9dH0jqU7UEI80KuFzVvnz51ykRsktfsbZ76n/0fU6ERojiqGS5KgK8Djg3SoxJsY521dvHjQ==}
+ '@contentlayer2/source-files@0.5.3':
+ resolution: {integrity: sha512-kESg2zAJKDQio5rCILpFPhsWklX5xmMdlJa9KSj5UdXMd7/gY+q0GiVqZ2PAmZi5+hG73pVihg9ieC2TEjLSIQ==}
- '@contentlayer2/source-remote-files@0.5.1':
- resolution: {integrity: sha512-VJRhJEIMXVr8qq4otmND1F8qvjU28fOZ9c9tmLuga2dHbiMiZbnSM4WOOkvJJ4tNJH/3OCfdWgznj/fdP2NyLw==}
+ '@contentlayer2/source-remote-files@0.5.3':
+ resolution: {integrity: sha512-0dxoLfS7EbVR3Xap4MPSmzLvQCGrMwtXVIA4ZmRHLOGzG+vWpaY9BtnCACb/Om4tUQBsCA9oduBjNqRu4Sx+gQ==}
- '@contentlayer2/utils@0.5.1':
- resolution: {integrity: sha512-cIsQ7ySGAbTZFhp8KdiSwHTYpD5GNmvTmCJtI/zaua23l33DuvEt9KCpZa9CmQ2IQyaGlTHKL2wv994bblCH8w==}
+ '@contentlayer2/utils@0.5.3':
+ resolution: {integrity: sha512-2nTFhZ7xnOevoZQnGP6BSIkTCpNos1PkGJ894gMYSmRMaMkyv+9VE9adoa0sywIA1y01iLU8niqcxJiuCQ1OkQ==}
peerDependencies:
'@effect-ts/otel-node': '*'
peerDependenciesMeta:
@@ -4810,8 +4839,8 @@ packages:
'@emotion/memoize@0.7.4':
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1':
- resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
peerDependencies:
react: ^18.2.0
@@ -4820,24 +4849,12 @@ packages:
peerDependencies:
esbuild: '*'
- '@esbuild/aix-ppc64@0.20.2':
- resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/android-arm64@0.18.20':
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.20.2':
- resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm@0.15.18':
resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==}
engines: {node: '>=12'}
@@ -4850,108 +4867,54 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.20.2':
- resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-x64@0.18.20':
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.20.2':
- resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/darwin-arm64@0.18.20':
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.20.2':
- resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.18.20':
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.20.2':
- resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/freebsd-arm64@0.18.20':
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.20.2':
- resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.18.20':
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.20.2':
- resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/linux-arm64@0.18.20':
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.20.2':
- resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm@0.18.20':
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.20.2':
- resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-ia32@0.18.20':
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.20.2':
- resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-loong64@0.15.18':
resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==}
engines: {node: '>=12'}
@@ -4964,152 +4927,80 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.20.2':
- resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-mips64el@0.18.20':
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.20.2':
- resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-ppc64@0.18.20':
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.20.2':
- resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.18.20':
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.20.2':
- resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-s390x@0.18.20':
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.20.2':
- resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-x64@0.18.20':
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.20.2':
- resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/netbsd-x64@0.18.20':
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.20.2':
- resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/openbsd-x64@0.18.20':
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.20.2':
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/sunos-x64@0.18.20':
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.20.2':
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/win32-arm64@0.18.20':
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.20.2':
- resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-ia32@0.18.20':
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.20.2':
- resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-x64@0.18.20':
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.20.2':
- resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@0.4.3':
@@ -5119,45 +5010,45 @@ packages:
'@fal-works/esbuild-plugin-global-externals@2.1.2':
resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
- '@floating-ui/core@1.6.0':
- resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
- '@floating-ui/dom@1.6.3':
- resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
+ '@floating-ui/dom@1.6.12':
+ resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
- '@floating-ui/react-dom@2.0.8':
- resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
+ '@floating-ui/react-dom@2.1.2':
+ resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
- '@floating-ui/utils@0.2.1':
- resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
- '@formatjs/ecma402-abstract@1.18.2':
- resolution: {integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==}
+ '@formatjs/ecma402-abstract@2.2.3':
+ resolution: {integrity: sha512-aElGmleuReGnk2wtYOzYFmNWYoiWWmf1pPPCYg0oiIQSJj0mjc4eUfzUXaSOJ4S8WzI/cLqnCTWjqz904FT2OQ==}
- '@formatjs/fast-memoize@2.2.0':
- resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
+ '@formatjs/fast-memoize@2.2.3':
+ resolution: {integrity: sha512-3jeJ+HyOfu8osl3GNSL4vVHUuWFXR03Iz9jjgI7RwjG6ysu/Ymdr0JRCPHfF5yGbTE6JCrd63EpvX1/WybYRbA==}
- '@formatjs/icu-messageformat-parser@2.7.6':
- resolution: {integrity: sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==}
+ '@formatjs/icu-messageformat-parser@2.9.3':
+ resolution: {integrity: sha512-9L99QsH14XjOCIp4TmbT8wxuffJxGK8uLNO1zNhLtcZaVXvv626N0s4A2qgRCKG3dfYWx9psvGlFmvyVBa6u/w==}
- '@formatjs/icu-skeleton-parser@1.8.0':
- resolution: {integrity: sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==}
+ '@formatjs/icu-skeleton-parser@1.8.7':
+ resolution: {integrity: sha512-fI+6SmS2g7h3srfAKSWa5dwreU5zNEfon2uFo99OToiLF6yxGE+WikvFSbsvMAYkscucvVmTYNlWlaDPp0n5HA==}
- '@formatjs/intl-localematcher@0.5.4':
- resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
+ '@formatjs/intl-localematcher@0.5.7':
+ resolution: {integrity: sha512-GGFtfHGQVFe/niOZp24Kal5b2i36eE2bNL0xi9Sg/yd0TR8aLjcteApZdHmismP5QQax1cMnZM9yWySUUjJteA==}
'@gar/promisify@1.1.3':
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
- '@grpc/grpc-js@1.10.6':
- resolution: {integrity: sha512-xP58G7wDQ4TCmN/cMUHh00DS7SRDv/+lC+xFLrTkMIN8h55X5NhZMLYbvy7dSELP15qlI6hPhNCRWVMtZMwqLA==}
+ '@grpc/grpc-js@1.12.2':
+ resolution: {integrity: sha512-bgxdZmgTrJZX50OjyVwz3+mNEnCTNkh3cIqGPWVNeW9jX6bn1ZkU80uPd+67/ZpIJIjRQ9qaHCjhavyoWYxumg==}
engines: {node: '>=12.10.0'}
- '@grpc/proto-loader@0.7.12':
- resolution: {integrity: sha512-DCVwMxqYzpUCiDMl7hQ384FqP4T3DbNpXU8pt681l3UWCip1WUiD5JrkImUwCB9a7f2cq4CUTmi5r/xIMRPY1Q==}
+ '@grpc/proto-loader@0.7.13':
+ resolution: {integrity: sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==}
engines: {node: '>=6'}
hasBin: true
@@ -5187,17 +5078,17 @@ packages:
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@internationalized/date@3.5.4':
- resolution: {integrity: sha512-qoVJVro+O0rBaw+8HPjUB1iH8Ihf8oziEnqMnvhJUSuVIrHOuZ6eNLHNvzXJKUvAtaDiqMnRlg8Z2mgh09BlUw==}
+ '@internationalized/date@3.5.6':
+ resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==}
- '@internationalized/message@3.1.4':
- resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==}
+ '@internationalized/message@3.1.5':
+ resolution: {integrity: sha512-hjEpLKFlYA3m5apldLqzHqw531qqfOEq0HlTWdfyZmcloWiUbWsYXD6YTiUmQmOtarthzhdjCAwMVrB8a4E7uA==}
- '@internationalized/number@3.5.3':
- resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==}
+ '@internationalized/number@3.5.4':
+ resolution: {integrity: sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==}
- '@internationalized/string@3.2.3':
- resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==}
+ '@internationalized/string@3.2.4':
+ resolution: {integrity: sha512-BcyadXPn89Ae190QGZGDUZPqxLj/xsP4U1Br1oSy8yfIjmpJ8cJtGYleaodqW/EmzFjwELtwDojLkf3FhV6SjA==}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
@@ -5305,8 +5196,8 @@ packages:
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -5333,8 +5224,8 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/util@1.4.0':
- resolution: {integrity: sha512-LLGQO+U1CZyBqPTLkvP3vhWDMmF5BJHSUeiroA3cc6LfyJL5skfcgDhA+EB94lyHIE/z+eZmGBwXYaDO103Qfw==}
+ '@jsonjoy.com/util@1.5.0':
+ resolution: {integrity: sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -5342,23 +5233,23 @@ packages:
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
- '@lezer/common@1.2.1':
- resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==}
+ '@lezer/common@1.2.3':
+ resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
- '@lezer/css@1.1.8':
- resolution: {integrity: sha512-7JhxupKuMBaWQKjQoLtzhGj83DdnZY9MckEOG5+/iLKNK2ZJqKc6hf6uc0HjwCX7Qlok44jBNqZhHKDhEhZYLA==}
+ '@lezer/css@1.1.9':
+ resolution: {integrity: sha512-TYwgljcDv+YrV0MZFFvYFQHCfGgbPMR6nuqLabBdmZoFH3EP1gvw8t0vae326Ne3PszQkbXfVBjCnf3ZVCr0bA==}
- '@lezer/highlight@1.2.0':
- resolution: {integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==}
+ '@lezer/highlight@1.2.1':
+ resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
- '@lezer/html@1.3.9':
- resolution: {integrity: sha512-MXxeCMPyrcemSLGaTQEZx0dBUH0i+RPl8RN5GwMAzo53nTsd/Unc/t5ZxACeQoyPUM5/GkPLRUs2WliOImzkRA==}
+ '@lezer/html@1.3.10':
+ resolution: {integrity: sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==}
- '@lezer/javascript@1.4.14':
- resolution: {integrity: sha512-GEdUyspTRgc5dwIGebUk+f3BekvqEWVIYsIuAC3pA8e8wcikGwBZRWRa450L0s8noGWuULwnmi4yjxTnYz9PpA==}
+ '@lezer/javascript@1.4.19':
+ resolution: {integrity: sha512-j44kbR1QL26l6dMunZ1uhKBFteVGLVCBGNUD2sUaMnic+rbTviVuoK0CD1l9FTW31EueWvFFswCKMH7Z+M3JRA==}
- '@lezer/lr@1.4.0':
- resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==}
+ '@lezer/lr@1.4.2':
+ resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
'@lmdb/lmdb-darwin-arm64@2.8.5':
resolution: {integrity: sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==}
@@ -5400,13 +5291,13 @@ packages:
resolution: {integrity: sha512-/0Ev/PB4fXdKPT6VDzVpnAPxGpWFIc4Yz3mf/DzLEMxlpIPZpZlCzaFk4V4NGFofQXPc41+GpEcZtWP3VuFWVA==}
engines: {node: '>=10'}
- '@mdx-js/esbuild@3.0.1':
- resolution: {integrity: sha512-+KZbCKcRjFtRD6qzD+c70Vq/VPVt5LHFsOshNcsdcONkaLTCSjmM7/uj71i3BcP+170f+P4DwVEMtqR/k0t5aw==}
+ '@mdx-js/esbuild@3.1.0':
+ resolution: {integrity: sha512-Jk42xUb1SEJxh6n2GBAtJjQISFIZccjz8XVEsHVhrlvZJAJziIxR9KyaFF6nTeTB/jCAFQGDgO7+oMRH/ApRsg==}
peerDependencies:
esbuild: '>=0.14.0'
- '@mdx-js/mdx@3.0.1':
- resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
'@mdx-js/react@2.3.0':
resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==}
@@ -5417,50 +5308,50 @@ packages:
resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==}
engines: {node: '>=12.0.0'}
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2':
- resolution: {integrity: sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ==}
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
cpu: [arm64]
os: [darwin]
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2':
- resolution: {integrity: sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw==}
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==}
cpu: [x64]
os: [darwin]
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2':
- resolution: {integrity: sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==}
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
cpu: [arm64]
os: [linux]
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2':
- resolution: {integrity: sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==}
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
cpu: [arm]
os: [linux]
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2':
- resolution: {integrity: sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA==}
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==}
cpu: [x64]
os: [linux]
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2':
- resolution: {integrity: sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ==}
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==}
cpu: [x64]
os: [win32]
'@ndelangen/get-tarball@3.0.9':
resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==}
- '@next/bundle-analyzer@13.5.6':
- resolution: {integrity: sha512-4P5YVpR3N/B5+p0TQ/rPAr+9fsjkdfCVTGzJhKwE7XHqS+QME4gYxAYeGKkfkHEkP2A3GKXs8QSp0LjIvWLI3g==}
+ '@next/bundle-analyzer@13.5.7':
+ resolution: {integrity: sha512-BnsDHWci6lVAOgr1xBydY58bGnF10BdmKR80aVe8jPgu+OhglfbcPyucq3vF0dJU981+MRhTle3amCqmt1Pd0w==}
'@next/env@13.5.1':
resolution: {integrity: sha512-CIMWiOTyflFn/GFx33iYXkgLSQsMQZV4jB91qaj/TfxGaGOXxn8C1j72TaUSPIyN7ziS/AYG46kGmnvuk1oOpg==}
- '@next/env@13.5.6':
- resolution: {integrity: sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==}
+ '@next/env@13.5.7':
+ resolution: {integrity: sha512-uVuRqoj28Ys/AI/5gVEgRAISd0KWI0HRjOO1CTpNgmX3ZsHb5mdn14Y59yk0IxizXdo7ZjsI2S7qbWnO+GNBcA==}
- '@next/eslint-plugin-next@13.5.6':
- resolution: {integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==}
+ '@next/eslint-plugin-next@13.5.7':
+ resolution: {integrity: sha512-c4vuEOOXeib4js5gDq+zFqAAdRGXX6T0d+zFETiQkRwy7vyj5lBov1dW0Z09nDst2lvxo7VEcKrQMUBH5Vgx7Q==}
'@next/swc-darwin-arm64@13.5.1':
resolution: {integrity: sha512-Bcd0VFrLHZnMmJy6LqV1CydZ7lYaBao8YBEdQUVzV8Ypn/l5s//j5ffjfvMzpEQ4mzlAj3fIY+Bmd9NxpWhACw==}
@@ -5531,20 +5422,24 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ '@nolyfill/is-core-module@1.0.39':
+ resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
+ engines: {node: '>=12.4.0'}
+
'@npmcli/fs@2.1.2':
resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- '@npmcli/fs@3.1.0':
- resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
+ '@npmcli/fs@3.1.1':
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
'@npmcli/git@4.1.0':
resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- '@npmcli/installed-package-contents@2.0.2':
- resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==}
+ '@npmcli/installed-package-contents@2.1.0':
+ resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
@@ -5572,21 +5467,15 @@ packages:
resolution: {integrity: sha512-E3skn949Pk1z2XtXu/lxf6QAZpawuTM/IUEXcAzpiUkTd73Hmvw26FiN3cJuTmkpM5hZzHwkomVdtrh/n/zzwA==}
engines: {node: '>=14'}
- '@opentelemetry/api@1.8.0':
- resolution: {integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==}
+ '@opentelemetry/api@1.9.0':
+ resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
- '@opentelemetry/context-async-hooks@1.23.0':
- resolution: {integrity: sha512-wazGJZDRevibOJ+VgyrT+9+8sybZAxpZx2G7vy30OAtk92OpZCg7HgNxT11NUx0VBDWcRx1dOatMYGOVplQ7QA==}
+ '@opentelemetry/context-async-hooks@1.27.0':
+ resolution: {integrity: sha512-CdZ3qmHCwNhFAzjTgHqrDQ44Qxcpz43cVxZRhOs+Ns/79ug+Mr84Bkb626bkJLkA3+BLimA5YAEVRlJC6pFb7g==}
engines: {node: '>=14'}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
-
- '@opentelemetry/core@1.23.0':
- resolution: {integrity: sha512-hdQ/a9TMzMQF/BO8Cz1juA43/L5YGtCSiKoOHmrTEf7VMDAZgy8ucpWx3eQTnQ3gBloRcWtzvcrMZABC3PTSKQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
'@opentelemetry/core@1.24.1':
resolution: {integrity: sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==}
@@ -5594,8 +5483,8 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.9.0'
- '@opentelemetry/core@1.26.0':
- resolution: {integrity: sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==}
+ '@opentelemetry/core@1.27.0':
+ resolution: {integrity: sha512-yQPKnK5e+76XuiqUH/gKyS8wv/7qITd5ln56QkBTf3uggr0VkXOXfcaAuG330UfdYu83wsyoBwqwxigpIG+Jkg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
@@ -5624,29 +5513,29 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.9.0'
- '@opentelemetry/propagator-b3@1.23.0':
- resolution: {integrity: sha512-cZ6rl8y2bdxYQ4e+zP2CQ+QmuPebaLBLO1skjFpj3eEu7zar+6hBzUP3llMOUupkQeQSwXz+4c8dZ26OhYfG/g==}
+ '@opentelemetry/propagator-b3@1.27.0':
+ resolution: {integrity: sha512-pTsko3gnMioe3FeWcwTQR3omo5C35tYsKKwjgTCTVCgd3EOWL9BZrMfgLBmszrwXABDfUrlAEFN/0W0FfQGynQ==}
engines: {node: '>=14'}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/propagator-jaeger@1.23.0':
- resolution: {integrity: sha512-6iArixfgIl3ZgzeltQ5jyiKbjZygM+MbM84pXi1HL0Qs4x4Ck5rM6wEtjhZffFnlDMWEkEqrnM0xF6bTfbiMAQ==}
+ '@opentelemetry/propagator-jaeger@1.27.0':
+ resolution: {integrity: sha512-EI1bbK0wn0yIuKlc2Qv2LKBRw6LiUWevrjCF80fn/rlaB+7StAi8Y5s8DBqAYNpY7v1q86+NjU18v7hj2ejU3A==}
engines: {node: '>=14'}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/resources@1.23.0':
- resolution: {integrity: sha512-iPRLfVfcEQynYGo7e4Di+ti+YQTAY0h5mQEUJcHlU9JOqpb4x965O6PZ+wMcwYVY63G96KtdS86YCM1BF1vQZg==}
+ '@opentelemetry/resources@1.24.1':
+ resolution: {integrity: sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.9.0'
- '@opentelemetry/resources@1.24.1':
- resolution: {integrity: sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==}
+ '@opentelemetry/resources@1.27.0':
+ resolution: {integrity: sha512-jOwt2VJ/lUD5BLc+PMNymDrUCpm5PKi1E9oSVYAvz01U/VdndGmrtV3DU1pG4AwlYhJRHbHfOUIlpBeXCPw6QQ==}
engines: {node: '>=14'}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
'@opentelemetry/sdk-logs@0.51.1':
resolution: {integrity: sha512-ULQQtl82b673PpZc5/0EtH4V+BrwVOgKJZEB7tYZnGTG3I98tQVk89S9/JSixomDr++F4ih+LSJTCqIKBz+MQQ==}
@@ -5661,27 +5550,23 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.9.0'
- '@opentelemetry/sdk-trace-base@1.23.0':
- resolution: {integrity: sha512-PzBmZM8hBomUqvCddF/5Olyyviayka44O5nDWq673np3ctnvwMOvNrsUORZjKja1zJbwEuD9niAGbnVrz3jwRQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
-
'@opentelemetry/sdk-trace-base@1.24.1':
resolution: {integrity: sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.9.0'
- '@opentelemetry/sdk-trace-node@1.23.0':
- resolution: {integrity: sha512-dwnin5Go2r6VzJZkVc9JBPupssWp7j2EFto+S7qRkwQ00WDykWeq3x2Skk7I1Jr448FeBSvGCQVPgV5e6s6O3w==}
+ '@opentelemetry/sdk-trace-base@1.27.0':
+ resolution: {integrity: sha512-btz6XTQzwsyJjombpeqCX6LhiMQYpzt2pIYNPnw0IPO/3AhT6yjnf8Mnv3ZC2A4eRYOjqrg+bfaXg9XHDRJDWQ==}
engines: {node: '>=14'}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/semantic-conventions@1.23.0':
- resolution: {integrity: sha512-MiqFvfOzfR31t8cc74CTP1OZfz7MbqpAnLCra8NqQoaHJX6ncIRTdYOQYBDQ2uFISDq0WY8Y9dDTWvsgzzBYRg==}
+ '@opentelemetry/sdk-trace-node@1.27.0':
+ resolution: {integrity: sha512-dWZp/dVGdUEfRBjBq2BgNuBlFqHCxyyMc8FsN0NX15X07mxSUO0SZRLyK/fdAVrde8nqFI/FEdMH4rgU9fqJfQ==}
engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
'@opentelemetry/semantic-conventions@1.24.1':
resolution: {integrity: sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==}
@@ -5907,80 +5792,86 @@ packages:
resolution: {integrity: sha512-z1JhLuZ8QmDaYoEIuUCVZlhcFrS7LMfHrb2OCRui5SQFntRWBH2fNM6H/fXXUkT9SkxcuFP2DUA6/m4+Gkz72g==}
engines: {node: '>= 12.0.0'}
- '@parcel/watcher-android-arm64@2.4.1':
- resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ '@parcel/watcher-android-arm64@2.5.0':
+ resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- '@parcel/watcher-darwin-arm64@2.4.1':
- resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ '@parcel/watcher-darwin-arm64@2.5.0':
+ resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- '@parcel/watcher-darwin-x64@2.4.1':
- resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ '@parcel/watcher-darwin-x64@2.5.0':
+ resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- '@parcel/watcher-freebsd-x64@2.4.1':
- resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ '@parcel/watcher-freebsd-x64@2.5.0':
+ resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- '@parcel/watcher-linux-arm-glibc@2.4.1':
- resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
+ resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
- resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ '@parcel/watcher-linux-arm-musl@2.5.0':
+ resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
+ resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-arm64-musl@2.4.1':
- resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
+ resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-x64-glibc@2.4.1':
- resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
+ resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-linux-x64-musl@2.4.1':
- resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ '@parcel/watcher-linux-x64-musl@2.5.0':
+ resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-win32-arm64@2.4.1':
- resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ '@parcel/watcher-win32-arm64@2.5.0':
+ resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- '@parcel/watcher-win32-ia32@2.4.1':
- resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ '@parcel/watcher-win32-ia32@2.5.0':
+ resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- '@parcel/watcher-win32-x64@2.4.1':
- resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ '@parcel/watcher-win32-x64@2.5.0':
+ resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.4.1':
- resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ '@parcel/watcher@2.5.0':
+ resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
engines: {node: '>= 10.0.0'}
'@parcel/workers@2.12.0':
@@ -6001,12 +5892,12 @@ packages:
resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
engines: {node: '>=12.22.0'}
- '@pnpm/npm-conf@2.2.2':
- resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ '@pnpm/npm-conf@2.3.1':
+ resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
- '@polka/url@1.0.0-next.25':
- resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
+ '@polka/url@1.0.0-next.28':
+ resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
@@ -6041,12 +5932,18 @@ packages:
'@radix-ui/number@1.0.1':
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
+ '@radix-ui/number@1.1.0':
+ resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+
'@radix-ui/primitive@1.0.0':
resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
'@radix-ui/primitive@1.0.1':
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
+ '@radix-ui/primitive@1.1.0':
+ resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
+
'@radix-ui/react-arrow@1.0.3':
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
@@ -6073,6 +5970,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-collection@1.1.0':
+ resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-compose-refs@1.0.0':
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
peerDependencies:
@@ -6087,6 +5997,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-compose-refs@1.1.0':
+ resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-context@1.0.0':
resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
peerDependencies:
@@ -6101,6 +6020,24 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-context@1.1.0':
+ resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-context@1.1.1':
+ resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-dialog@1.0.0':
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
peerDependencies:
@@ -6116,6 +6053,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-direction@1.1.0':
+ resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-dismissable-layer@1.0.0':
resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==}
peerDependencies:
@@ -6182,6 +6128,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-id@1.1.0':
+ resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-popper@1.1.2':
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
@@ -6220,8 +6175,8 @@ packages:
react: ^18.2.0
react-dom: ^18.2.0
- '@radix-ui/react-presence@1.0.1':
- resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
+ '@radix-ui/react-presence@1.1.1':
+ resolution: {integrity: sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6252,8 +6207,21 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-roving-focus@1.0.4':
- resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
+ '@radix-ui/react-primitive@2.0.0':
+ resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-roving-focus@1.1.0':
+ resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6265,8 +6233,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-scroll-area@1.0.5':
- resolution: {integrity: sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw==}
+ '@radix-ui/react-scroll-area@1.2.0':
+ resolution: {integrity: sha512-q2jMBdsJ9zB7QG6ngQNzNwlvxLQqONyL58QbEGwuyRZZb/ARQwk3uQVbCF7GvQVOtV6EU/pDxAw3zRzJZI3rpQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6291,8 +6259,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-separator@1.0.3':
- resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
+ '@radix-ui/react-separator@1.1.0':
+ resolution: {integrity: sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6318,8 +6286,17 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-toggle-group@1.0.4':
- resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
+ '@radix-ui/react-slot@1.1.0':
+ resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-toggle-group@1.1.0':
+ resolution: {integrity: sha512-PpTJV68dZU2oqqgq75Uzto5o/XfOVgkrJ9rulVmfTKxWp3HfUjHE6CP/WLRR4AzPX9HWxw7vFow2me85Yu+Naw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6331,8 +6308,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-toggle@1.0.3':
- resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
+ '@radix-ui/react-toggle@1.1.0':
+ resolution: {integrity: sha512-gwoxaKZ0oJ4vIgzsfESBuSgJNdc0rv12VhHgcqN0TEJmmZixXG/2XpsLK8kzNWYcnaoRIEEQc0bEi3dIvdUpjw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6344,8 +6321,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-toolbar@1.0.4':
- resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
+ '@radix-ui/react-toolbar@1.1.0':
+ resolution: {integrity: sha512-ZUKknxhMTL/4hPh+4DuaTot9aO7UD6Kupj4gqXCsBTayX1pD1L+0C2/2VZKXb4tIifQklZ3pf2hG9T+ns+FclQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6371,6 +6348,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-callback-ref@1.1.0':
+ resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-controllable-state@1.0.0':
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
peerDependencies:
@@ -6385,8 +6371,17 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-escape-keydown@1.0.0':
- resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
+ '@radix-ui/react-use-controllable-state@1.1.0':
+ resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-escape-keydown@1.0.0':
+ resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
peerDependencies:
react: ^18.2.0
@@ -6413,6 +6408,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-layout-effect@1.1.0':
+ resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-previous@1.0.1':
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
@@ -6500,13 +6504,18 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-aria/focus@3.18.4':
+ resolution: {integrity: sha512-91J35077w9UNaMK1cpMUEFRkNNz0uZjnSwiyBCFuRdaVuivO53wNC9XtWSDNDdcO5cGy87vfJRVAiyoCn/mjqA==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-aria/form@3.0.5':
resolution: {integrity: sha512-n290jRwrrRXO3fS82MyWR+OKN7yznVesy5Q10IclSTVYHHI3VI53xtAPr/WzNjJR1um8aLhOcDNFKwnNIUUCsQ==}
peerDependencies:
react: ^18.2.0
- '@react-aria/grid@3.9.1':
- resolution: {integrity: sha512-fGEZqAEaS8mqzV/II3N4ndoNWegIcbh+L3PmKbXdpKKUP8VgMs/WY5rYl5WAF0f5RoFwXqx3ibDLeR9tKj/bOg==}
+ '@react-aria/grid@3.10.5':
+ resolution: {integrity: sha512-9sLa+rpLgRZk7VX+tvdSudn1tdVgolVzhDLGWd95yS4UtPVMihTMGBrRoByY57Wxvh1V+7Ptw8kc6tsRSotYKg==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
@@ -6516,11 +6525,21 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-aria/i18n@3.12.3':
+ resolution: {integrity: sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-aria/interactions@3.21.3':
resolution: {integrity: sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==}
peerDependencies:
react: ^18.2.0
+ '@react-aria/interactions@3.22.4':
+ resolution: {integrity: sha512-E0vsgtpItmknq/MJELqYJwib+YN18Qag8nroqwjk1qOnBa9ROIkUhWJerLi1qs5diXq9LHKehZDXRlwPvdEFww==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-aria/label@3.7.8':
resolution: {integrity: sha512-MzgTm5+suPA3KX7Ug6ZBK2NX9cin/RFLsv1BdafJ6CZpmUSpWnGE/yQfYUB7csN7j31OsZrD3/P56eShYWAQfg==}
peerDependencies:
@@ -6537,8 +6556,8 @@ packages:
react: ^18.2.0
react-dom: ^18.2.0
- '@react-aria/live-announcer@3.3.4':
- resolution: {integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==}
+ '@react-aria/live-announcer@3.4.0':
+ resolution: {integrity: sha512-VBxEdMq2SbtRbNTQNcDR2G6E3lEl5cJSBiHTTO8Ln1AL76LiazrylIXGgoktqzCfRQmyq0v8CHk1cNKDU9mvJg==}
'@react-aria/menu@3.14.1':
resolution: {integrity: sha512-BYliRb38uAzq05UOFcD5XkjA5foQoXRbcH3ZufBsc4kvh79BcP1PMW6KsXKGJ7dC/PJWUwCui6QL1kUg8PqMHA==}
@@ -6568,13 +6587,19 @@ packages:
react: ^18.2.0
react-dom: ^18.2.0
+ '@react-aria/selection@3.20.1':
+ resolution: {integrity: sha512-My0w8UC/7PAkz/1yZUjr2VRuzDZz1RrbgTqP36j5hsJx8RczDTjI4TmKtQNKG0ggaP4w83G2Og5JPTq3w3LMAw==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
'@react-aria/slider@3.7.8':
resolution: {integrity: sha512-MYvPcM0K8jxEJJicUK2+WxUkBIM/mquBxOTOSSIL3CszA80nXIGVnLlCUnQV3LOUzpWtabbWaZokSPtGgOgQOw==}
peerDependencies:
react: ^18.2.0
- '@react-aria/spinbutton@3.6.5':
- resolution: {integrity: sha512-0aACBarF/Xr/7ixzjVBTQ0NBwwwsoGkf5v6AVFVMTC0uYMXHTALvRs+ULHjHMa5e/cX/aPlEvaVT7jfSs+Xy9Q==}
+ '@react-aria/spinbutton@3.6.9':
+ resolution: {integrity: sha512-m+uVJdiIc2LrLVDGjU7p8P2O2gUvTN26GR+NgH4rl+tUSuAB0+T1rjls/C+oXEqQjCpQihEB9Bt4M+VHpzmyjA==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
@@ -6585,6 +6610,12 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-aria/ssr@3.9.6':
+ resolution: {integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==}
+ engines: {node: '>= 12'}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-aria/switch@3.6.4':
resolution: {integrity: sha512-2nVqz4ZuJyof47IpGSt3oZRmp+EdS8wzeDYgf42WHQXrx4uEOk1mdLJ20+NnsYhj/2NHZsvXVrjBeKMjlMs+0w==}
peerDependencies:
@@ -6607,8 +6638,8 @@ packages:
peerDependencies:
react: ^18.2.0
- '@react-aria/toggle@3.10.4':
- resolution: {integrity: sha512-bRk+CdB8QzrSyGNjENXiTWxfzYKRw753iwQXsEAU7agPCUdB8cZJyrhbaUoD0rwczzTp2zDbZ9rRbUPdsBE2YQ==}
+ '@react-aria/toggle@3.10.9':
+ resolution: {integrity: sha512-dtfnyIU2/kcH9rFAiB48diSmaXDv45K7UCuTkMQLjbQa3QHC1oYNbleVN/VdGyAMBsIWtfl8L4uuPrAQmDV/bg==}
peerDependencies:
react: ^18.2.0
@@ -6622,6 +6653,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-aria/utils@3.25.3':
+ resolution: {integrity: sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-aria/virtualizer@3.10.1':
resolution: {integrity: sha512-y34w+n/B3nwwj18QHIZlkNj5Fn2rt5CbQE4BBWAM8jYZ5ypwF77i2toxhGTuk1Oo1/hgTX7JYIgDIAQbNraBcg==}
peerDependencies:
@@ -6636,8 +6672,8 @@ packages:
'@react-bootstrap/babel-preset@2.2.0':
resolution: {integrity: sha512-lJNNow6APKf1pH5/R60i7c/QGYbx/VCKdqzWWIMDyyXvNDGFwcM2T0DNOBqe9Rjz8rEROS/mKGLN3C1Im6+adQ==}
- '@react-hook/intersection-observer@3.1.1':
- resolution: {integrity: sha512-OTDx8/wFaRvzFtKl1dEUEXSOqK2zVJHporiTTdC2xO++0e9FEx9wIrPis5q3lqtXeZH9zYGLbk+aB75qNFbbuw==}
+ '@react-hook/intersection-observer@3.1.2':
+ resolution: {integrity: sha512-mWU3BMkmmzyYMSuhO9wu3eJVP21N8TcgYm9bZnTrMwuM818bEk+0NRM3hP+c/TqA9Ln5C7qE53p1H0QMtzYdvQ==}
peerDependencies:
react: ^18.2.0
@@ -6661,6 +6697,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-stately/collections@3.11.0':
+ resolution: {integrity: sha512-TiJeJjHMPSbbeAhmCXLJNSCk0fa5XnCvEuYw6HtQzDnYiq1AD7KAwkpjC5NfKkjqF3FLXs/v9RDm/P69q6rYzw==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-stately/combobox@3.8.4':
resolution: {integrity: sha512-iLVGvKRRz0TeJXZhZyK783hveHpYA6xovOSdzSD+WGYpiPXo1QrcrNoH3AE0Z2sHtorU+8nc0j58vh5PB+m2AA==}
peerDependencies:
@@ -6676,16 +6717,21 @@ packages:
peerDependencies:
react: ^18.2.0
- '@react-stately/flags@3.0.3':
- resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==}
+ '@react-stately/flags@3.0.4':
+ resolution: {integrity: sha512-RNJEkOALwKg+JeYsfNlfPc4GXm7hiBLX0yuHOkRapWEyDOfi0cinkV/TZG4goOZdQ5tBpHmemf2qqiHAxqHlzQ==}
'@react-stately/form@3.0.3':
resolution: {integrity: sha512-92YYBvlHEWUGUpXgIaQ48J50jU9XrxfjYIN8BTvvhBHdD63oWgm8DzQnyT/NIAMzdLnhkg7vP+fjG8LjHeyIAg==}
peerDependencies:
react: ^18.2.0
- '@react-stately/grid@3.8.7':
- resolution: {integrity: sha512-he3TXCLAhF5C5z1/G4ySzcwyt7PEiWcVIupxebJQqRyFrNWemSuv+7tolnStmG8maMVIyV3P/3j4eRBbdSlOIg==}
+ '@react-stately/form@3.0.6':
+ resolution: {integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==}
+ peerDependencies:
+ react: ^18.2.0
+
+ '@react-stately/grid@3.9.3':
+ resolution: {integrity: sha512-P5KgCNYwm/n8bbLx6527li89RQWoESikrsg2MMyUpUd6IJ321t2pGONGRRQzxE0SBMolPRDJKV0Do2OlsjYKhQ==}
peerDependencies:
react: ^18.2.0
@@ -6699,11 +6745,21 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-stately/list@3.11.0':
+ resolution: {integrity: sha512-O+BxXcbtoLZWn4QIT54RoFUaM+QaJQm6s0ZBJ3Jv4ILIhukVOc55ra+aWMVlXFQSpbf6I3hyVP6cz1yyvd5Rtw==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-stately/menu@3.7.1':
resolution: {integrity: sha512-mX1w9HHzt+xal1WIT2xGrTQsoLvDwuB2R1Er1MBABs//MsJzccycatcgV/J/28m6tO5M9iuFQQvLV+i1dCtodg==}
peerDependencies:
react: ^18.2.0
+ '@react-stately/overlays@3.6.11':
+ resolution: {integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-stately/overlays@3.6.7':
resolution: {integrity: sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==}
peerDependencies:
@@ -6714,13 +6770,13 @@ packages:
peerDependencies:
react: ^18.2.0
- '@react-stately/select@3.6.4':
- resolution: {integrity: sha512-whZgF1N53D0/dS8tOFdrswB0alsk5Q5620HC3z+5f2Hpi8gwgAZ8TYa+2IcmMYRiT+bxVuvEc/NirU9yPmqGbA==}
+ '@react-stately/select@3.6.8':
+ resolution: {integrity: sha512-fLAVzGeYSdYdBdrEVws6Pb1ywFPdapA0eWphoW5s3fS0/pKcVWwbCHeHlaBEi1ISyqEubQZFGQdeFKm/M46Hew==}
peerDependencies:
react: ^18.2.0
- '@react-stately/selection@3.15.1':
- resolution: {integrity: sha512-6TQnN9L0UY9w19B7xzb1P6mbUVBtW840Cw1SjgNXCB3NPaCf59SwqClYzoj8O2ZFzMe8F/nUJtfU1NS65/OLlw==}
+ '@react-stately/selection@3.17.0':
+ resolution: {integrity: sha512-It3LRTaFOavybuDBvBH2mvCh73OL4awqvN4tZ0JzLzMtaYSBe9+YmFasYrzB0o7ca17B2q1tpUmsNWaAgIqbLA==}
peerDependencies:
react: ^18.2.0
@@ -6744,6 +6800,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-stately/toggle@3.7.8':
+ resolution: {integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-stately/tooltip@3.4.9':
resolution: {integrity: sha512-P7CDJsdoKarz32qFwf3VNS01lyC+63gXpDZG31pUu+EO5BeQd4WKN/AH1Beuswpr4GWzxzFc1aXQgERFGVzraA==}
peerDependencies:
@@ -6759,6 +6820,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-stately/utils@3.10.4':
+ resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-stately/virtualizer@3.7.1':
resolution: {integrity: sha512-voHgE6EQ+oZaLv6u2umKxakvIKNkCQuUihqKACTjdslp7SJh4Mvs3oLBI0hf0JOh+rCcFIKDvQtFwy1fXFRYBA==}
peerDependencies:
@@ -6774,6 +6840,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-types/button@3.10.0':
+ resolution: {integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-types/button@3.9.4':
resolution: {integrity: sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==}
peerDependencies:
@@ -6789,6 +6860,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-types/checkbox@3.8.4':
+ resolution: {integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-types/combobox@3.11.1':
resolution: {integrity: sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==}
peerDependencies:
@@ -6799,8 +6875,8 @@ packages:
peerDependencies:
react: ^18.2.0
- '@react-types/dialog@3.5.10':
- resolution: {integrity: sha512-S9ga+edOLNLZw7/zVOnZdT5T40etpzUYBXEKdFPbxyPYnERvRxJAsC1/ASuBU9fQAXMRgLZzADWV+wJoGS/X9g==}
+ '@react-types/dialog@3.5.13':
+ resolution: {integrity: sha512-9k8daVcAqQsySkzDY6NIVlyGxtpEip4TKuLyzAehthbv78GQardD5fHdjQ6eXPRS4I2qZrmytrFFrlOnwWVGHw==}
peerDependencies:
react: ^18.2.0
@@ -6809,8 +6885,8 @@ packages:
peerDependencies:
react: ^18.2.0
- '@react-types/link@3.5.3':
- resolution: {integrity: sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==}
+ '@react-types/grid@3.2.9':
+ resolution: {integrity: sha512-eMw0d2UIZ4QTzGgD1wGGPw0cv67KjAOCp4TcwWjgDV7Wa5SVV/UvOmpnIVDyfhkG/4KRI5OR9h+isy76B726qA==}
peerDependencies:
react: ^18.2.0
@@ -6819,8 +6895,8 @@ packages:
peerDependencies:
react: ^18.2.0
- '@react-types/listbox@3.4.9':
- resolution: {integrity: sha512-S5G+WmNKUIOPZxZ4svWwWQupP3C6LmVfnf8QQmPDvwYXGzVc0WovkqUWyhhjJirFDswTXRCO9p0yaTHHIlkdwQ==}
+ '@react-types/listbox@3.5.2':
+ resolution: {integrity: sha512-ML/Bt/MeO0FiixcuFQ+smpu1WguxTOqHDjSnhc1vcNxVQFWQOhyVy01LAY2J/T9TjfjyYGD41vyMTI0f6fcLEQ==}
peerDependencies:
react: ^18.2.0
@@ -6829,6 +6905,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-types/overlays@3.8.10':
+ resolution: {integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-types/overlays@3.8.7':
resolution: {integrity: sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==}
peerDependencies:
@@ -6849,18 +6930,28 @@ packages:
peerDependencies:
react: ^18.2.0
+ '@react-types/select@3.9.7':
+ resolution: {integrity: sha512-Jva4ixfB4EEdy+WmZkUoLiQI7vVfHPxM73VuL7XDxvAO+YKiIztDTcU720QVNhxTMmQvCxfRBXWar8aodCjLiw==}
+ peerDependencies:
+ react: ^18.2.0
+
'@react-types/shared@3.23.1':
resolution: {integrity: sha512-5d+3HbFDxGZjhbMBeFHRQhexMFt4pUce3okyRtUVKbbedQFUrtXSBg9VszgF2RTeQDKDkMCIQDtz5ccP/Lk1gw==}
peerDependencies:
react: ^18.2.0
- '@react-types/slider@3.7.3':
- resolution: {integrity: sha512-F8qFQaD2mqug2D0XeWMmjGBikiwbdERFlhFzdvNGbypPLz3AZICBKp1ZLPWdl0DMuy03G/jy6Gl4mDobl7RT2g==}
+ '@react-types/shared@3.25.0':
+ resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==}
+ peerDependencies:
+ react: ^18.2.0
+
+ '@react-types/slider@3.7.6':
+ resolution: {integrity: sha512-z72wnEzSge6qTD9TUoUPp1A4j4jXk/MVii6rGE78XeE/Pq7HyyjU5bCagryMr9PC9MKa/oTiHcshKqWBDf57GA==}
peerDependencies:
react: ^18.2.0
- '@react-types/switch@3.5.3':
- resolution: {integrity: sha512-Nb6+J5MrPaFa8ZNFKGMzAsen/NNzl5UG/BbC65SLGPy7O0VDa/sUpn7dcu8V2xRpRwwIN/Oso4v63bt2sgdkgA==}
+ '@react-types/switch@3.5.6':
+ resolution: {integrity: sha512-gJ8t2yTCgcitz4ON4ELcLLmtlDkn2MUjjfu3ez/cwA1X/NUluPYkhXj5Z6H+KOlnveqrKCZDRoTgK74cQ6Cvfg==}
peerDependencies:
react: ^18.2.0
@@ -6890,8 +6981,8 @@ packages:
peerDependencies:
react: ^18.2.0
- '@rollup/pluginutils@5.1.0':
- resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -6899,8 +6990,26 @@ packages:
rollup:
optional: true
- '@rushstack/eslint-patch@1.10.2':
- resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
+ '@rushstack/eslint-patch@1.10.4':
+ resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
+
+ '@shikijs/core@1.22.2':
+ resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==}
+
+ '@shikijs/engine-javascript@1.22.2':
+ resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==}
+
+ '@shikijs/engine-oniguruma@1.22.2':
+ resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==}
+
+ '@shikijs/types@1.22.2':
+ resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==}
+
+ '@shikijs/vscode-textmate@9.3.0':
+ resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -6943,70 +7052,70 @@ packages:
'@stitches/core@1.2.8':
resolution: {integrity: sha512-Gfkvwk9o9kE9r9XNBmJRfV8zONvXThnm1tcuojL04Uy5uRyqg93DC83lDebl0rocZCfKSjUv+fWYtMQmEDJldg==}
- '@storybook/addon-a11y@7.6.17':
- resolution: {integrity: sha512-UYHJAKQpJMCu4X4O/325UqozYrkhPn2VyQdwPgC+uiOKZvrtni4uRbpOspeyjC0wXH1tDbY8WZvxwvwQryYkpA==}
+ '@storybook/addon-a11y@7.6.20':
+ resolution: {integrity: sha512-t19O2KW+8NF8mdxAZdubpe0s/3x7z5cl4LdyiNQgYxcUGjhjAUD+C3UvEUsRxG71ZAID/VC8SX+G2HX5TENGHA==}
- '@storybook/addon-actions@7.6.17':
- resolution: {integrity: sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==}
+ '@storybook/addon-actions@7.6.20':
+ resolution: {integrity: sha512-c/GkEQ2U9BC/Ew/IMdh+zvsh4N6y6n7Zsn2GIhJgcu9YEAa5aF2a9/pNgEGBMOABH959XE8DAOMERw/5qiLR8g==}
- '@storybook/addon-backgrounds@7.6.17':
- resolution: {integrity: sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==}
+ '@storybook/addon-backgrounds@7.6.20':
+ resolution: {integrity: sha512-a7ukoaXT42vpKsMxkseIeO3GqL0Zst2IxpCTq5dSlXiADrcemSF/8/oNpNW9C4L6F1Zdt+WDtECXslEm017FvQ==}
- '@storybook/addon-controls@7.6.17':
- resolution: {integrity: sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==}
+ '@storybook/addon-controls@7.6.20':
+ resolution: {integrity: sha512-06ZT5Ce1sZW52B0s6XuokwjkKO9GqHlTUHvuflvd8wifxKlCmRvNUxjBvwh+ccGJ49ZS73LbMSLFgtmBEkCxbg==}
- '@storybook/addon-docs@7.6.17':
- resolution: {integrity: sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==}
+ '@storybook/addon-docs@7.6.20':
+ resolution: {integrity: sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
- '@storybook/addon-essentials@7.6.17':
- resolution: {integrity: sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==}
+ '@storybook/addon-essentials@7.6.20':
+ resolution: {integrity: sha512-hCupSOiJDeOxJKZSgH0x5Mb2Xqii6mps21g5hpxac1XjhQtmGflShxi/xOHhK3sNqrbgTSbScfpUP3hUlZO/2Q==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
- '@storybook/addon-highlight@7.6.17':
- resolution: {integrity: sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==}
+ '@storybook/addon-highlight@7.6.20':
+ resolution: {integrity: sha512-7/x7xFdFyqCki5Dm3uBePldUs9l98/WxJ7rTHQuYqlX7kASwyN5iXPzuhmMRUhlMm/6G6xXtLabIpzwf1sFurA==}
- '@storybook/addon-links@7.6.17':
- resolution: {integrity: sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==}
+ '@storybook/addon-links@7.6.20':
+ resolution: {integrity: sha512-iomSnBD90CA4MinesYiJkFX2kb3P1Psd/a1Y0ghlFEsHD4uMId9iT6sx2s16DYMja0SlPkrbWYnGukqaCjZpRw==}
peerDependencies:
react: ^18.2.0
peerDependenciesMeta:
react:
optional: true
- '@storybook/addon-mdx-gfm@7.6.17':
- resolution: {integrity: sha512-Dh1jcegykRMAhQCpAh5NZzRnJMtk+QzYrxKZlY/EbXNRmxrvhrrCDjovf9ntqFlA6vQjDtkwNu3ZVcMBKLXmiw==}
+ '@storybook/addon-mdx-gfm@7.6.20':
+ resolution: {integrity: sha512-htfiooRdIYIjdKpxFjJAT+b90iatraI7yfmgF8VmpGTPqjyjGDZccUFCaE7op9S2smLZi4zYYGd+fqA5NtykkQ==}
- '@storybook/addon-measure@7.6.17':
- resolution: {integrity: sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==}
+ '@storybook/addon-measure@7.6.20':
+ resolution: {integrity: sha512-i2Iq08bGfI7gZbG6Lb8uF/L287tnaGUR+2KFEmdBjH6+kgjWLiwfpanoPQpy4drm23ar0gUjX+L3Ri03VI5/Xg==}
- '@storybook/addon-outline@7.6.17':
- resolution: {integrity: sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==}
+ '@storybook/addon-outline@7.6.20':
+ resolution: {integrity: sha512-TdsIQZf/TcDsGoZ1XpO+9nBc4OKqcMIzY4SrI8Wj9dzyFLQ37s08gnZr9POci8AEv62NTUOVavsxcafllkzqDQ==}
- '@storybook/addon-toolbars@7.6.17':
- resolution: {integrity: sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==}
+ '@storybook/addon-toolbars@7.6.20':
+ resolution: {integrity: sha512-5Btg4i8ffWTDHsU72cqxC8nIv9N3E3ObJAc6k0llrmPBG/ybh3jxmRfs8fNm44LlEXaZ5qrK/petsXX3UbpIFg==}
- '@storybook/addon-viewport@7.6.17':
- resolution: {integrity: sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==}
+ '@storybook/addon-viewport@7.6.20':
+ resolution: {integrity: sha512-i8mIw8BjLWAVHEQsOTE6UPuEGQvJDpsu1XZnOCkpfTfPMz73m+3td/PmLG7mMT2wPnLu9IZncKLCKTAZRbt/YQ==}
'@storybook/addons@7.6.17':
resolution: {integrity: sha512-Ok18Y698Ccyg++MoUNJNHY0cXUvo8ETFIRLJk1g9ElJ70j6kPgNnzW2pAtZkBNmswHtofZ7pT156cj96k/LgfA==}
- '@storybook/blocks@7.6.17':
- resolution: {integrity: sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==}
+ '@storybook/blocks@7.6.20':
+ resolution: {integrity: sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
- '@storybook/builder-manager@7.6.17':
- resolution: {integrity: sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==}
+ '@storybook/builder-manager@7.6.20':
+ resolution: {integrity: sha512-e2GzpjLaw6CM/XSmc4qJRzBF8GOoOyotyu3JrSPTYOt4RD8kjUsK4QlismQM1DQRu8i39aIexxmRbiJyD74xzQ==}
- '@storybook/builder-vite@7.6.17':
- resolution: {integrity: sha512-2Q32qalI401EsKKr9Hkk8TAOcHEerqwsjCpQgTNJnCu6GgCVKoVUcb99oRbR9Vyg0xh+jb19XiWqqQujFtLYlQ==}
+ '@storybook/builder-vite@7.6.20':
+ resolution: {integrity: sha512-q3vf8heE7EaVYTWlm768ewaJ9lh6v/KfoPPeHxXxzSstg4ByP9kg4E1mrfAo/l6broE9E9zo3/Q4gsM/G/rw8Q==}
peerDependencies:
'@preact/preset-vite': '*'
typescript: '>= 4.3.x'
@@ -7023,48 +7132,57 @@ packages:
'@storybook/channels@7.6.17':
resolution: {integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==}
- '@storybook/cli@7.6.17':
- resolution: {integrity: sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==}
+ '@storybook/channels@7.6.20':
+ resolution: {integrity: sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==}
+
+ '@storybook/cli@7.6.20':
+ resolution: {integrity: sha512-ZlP+BJyqg7HlnXf7ypjG2CKMI/KVOn03jFIiClItE/jQfgR6kRFgtjRU7uajh427HHfjv9DRiur8nBzuO7vapA==}
hasBin: true
'@storybook/client-logger@7.6.17':
resolution: {integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==}
- '@storybook/codemod@7.6.17':
- resolution: {integrity: sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==}
+ '@storybook/client-logger@7.6.20':
+ resolution: {integrity: sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==}
+
+ '@storybook/codemod@7.6.20':
+ resolution: {integrity: sha512-8vmSsksO4XukNw0TmqylPmk7PxnfNfE21YsxFa7mnEBmEKQcZCQsNil4ZgWfG0IzdhTfhglAN4r++Ew0WE+PYA==}
- '@storybook/components@7.6.17':
- resolution: {integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==}
+ '@storybook/components@7.6.20':
+ resolution: {integrity: sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
- '@storybook/core-client@7.6.17':
- resolution: {integrity: sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==}
+ '@storybook/core-client@7.6.20':
+ resolution: {integrity: sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==}
- '@storybook/core-common@7.6.17':
- resolution: {integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==}
+ '@storybook/core-common@7.6.20':
+ resolution: {integrity: sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==}
'@storybook/core-events@7.6.17':
resolution: {integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==}
- '@storybook/core-server@7.6.17':
- resolution: {integrity: sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==}
+ '@storybook/core-events@7.6.20':
+ resolution: {integrity: sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==}
- '@storybook/csf-plugin@7.6.17':
- resolution: {integrity: sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==}
+ '@storybook/core-server@7.6.20':
+ resolution: {integrity: sha512-qC5BdbqqwMLTdCwMKZ1Hbc3+3AaxHYWLiJaXL9e8s8nJw89xV8c8l30QpbJOGvcDmsgY6UTtXYaJ96OsTr7MrA==}
- '@storybook/csf-tools@7.6.17':
- resolution: {integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==}
+ '@storybook/csf-plugin@7.6.20':
+ resolution: {integrity: sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==}
- '@storybook/csf@0.1.4':
- resolution: {integrity: sha512-B9UI/lsQMjF+oEfZCI6YXNoeuBcGZoOP5x8yKbe2tIEmsMjSztFKkpPzi5nLCnBk/MBtl6QJeI3ksJnbsWPkOw==}
+ '@storybook/csf-tools@7.6.20':
+ resolution: {integrity: sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==}
+
+ '@storybook/csf@0.1.11':
+ resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==}
'@storybook/docs-mdx@0.1.0':
resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
- '@storybook/docs-tools@7.6.17':
- resolution: {integrity: sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==}
+ '@storybook/docs-tools@7.6.20':
+ resolution: {integrity: sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==}
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
@@ -7072,40 +7190,46 @@ packages:
'@storybook/manager-api@7.6.17':
resolution: {integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==}
- '@storybook/manager@7.6.17':
- resolution: {integrity: sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==}
+ '@storybook/manager-api@7.6.20':
+ resolution: {integrity: sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==}
+
+ '@storybook/manager@7.6.20':
+ resolution: {integrity: sha512-0Cf6WN0t7yEG2DR29tN5j+i7H/TH5EfPppg9h9/KiQSoFHk+6KLoy2p5do94acFU+Ro4+zzxvdCGbcYGKuArpg==}
'@storybook/mdx2-csf@1.1.0':
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
- '@storybook/node-logger@7.6.17':
- resolution: {integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==}
+ '@storybook/node-logger@7.6.20':
+ resolution: {integrity: sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==}
- '@storybook/postinstall@7.6.17':
- resolution: {integrity: sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==}
+ '@storybook/postinstall@7.6.20':
+ resolution: {integrity: sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==}
'@storybook/preview-api@7.6.17':
resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==}
- '@storybook/preview@7.6.17':
- resolution: {integrity: sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==}
+ '@storybook/preview-api@7.6.20':
+ resolution: {integrity: sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==}
- '@storybook/react-dom-shim@7.6.17':
- resolution: {integrity: sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==}
+ '@storybook/preview@7.6.20':
+ resolution: {integrity: sha512-cxYlZ5uKbCYMHoFpgleZqqGWEnqHrk5m5fT8bYSsDsdQ+X5wPcwI/V+v8dxYAdQcMphZVIlTjo6Dno9WG8qmVA==}
+
+ '@storybook/react-dom-shim@7.6.20':
+ resolution: {integrity: sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
- '@storybook/react-vite@7.6.17':
- resolution: {integrity: sha512-4dIm3CuRl44X1TLzN3WoZh/bChzJF7Ud28li9atj9C8db0bb/y0zl8cahrsRFoR7/LyfqdOVLqaztrnA5SsWfg==}
+ '@storybook/react-vite@7.6.20':
+ resolution: {integrity: sha512-uKuBFyGPZxpfR8vpDU/2OE9v7iTaxwL7ldd7k1swYd1rTSAPacTnEHSMl1R5AjUhkdI7gRmGN9q7qiVfK2XJCA==}
engines: {node: '>=16'}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
- '@storybook/react@7.6.17':
- resolution: {integrity: sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==}
+ '@storybook/react@7.6.20':
+ resolution: {integrity: sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==}
engines: {node: '>=16.0.0'}
peerDependencies:
react: ^18.2.0
@@ -7118,8 +7242,11 @@ packages:
'@storybook/router@7.6.17':
resolution: {integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==}
- '@storybook/telemetry@7.6.17':
- resolution: {integrity: sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==}
+ '@storybook/router@7.6.20':
+ resolution: {integrity: sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==}
+
+ '@storybook/telemetry@7.6.20':
+ resolution: {integrity: sha512-dmAOCWmOscYN6aMbhCMmszQjoycg7tUPRVy2kTaWg6qX10wtMrvEtBV29W4eMvqdsoRj5kcvoNbzRdYcWBUOHQ==}
'@storybook/theming@7.6.17':
resolution: {integrity: sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==}
@@ -7127,74 +7254,83 @@ packages:
react: ^18.2.0
react-dom: ^18.2.0
+ '@storybook/theming@7.6.20':
+ resolution: {integrity: sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
'@storybook/types@7.6.17':
resolution: {integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==}
- '@swc/core-darwin-arm64@1.4.13':
- resolution: {integrity: sha512-36P72FLpm5iq85IvoEjBvi22DiqkkEIanJ1M0E8bkxcFHUbjBrYfPY9T6cpPyK5oQqkaTBvNAc3j1BlVD6IH6w==}
+ '@storybook/types@7.6.20':
+ resolution: {integrity: sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==}
+
+ '@swc/core-darwin-arm64@1.8.0':
+ resolution: {integrity: sha512-TIus1/SE/Ud4g84hCnchcagu+LfyndSDy5r5qf64nflojejDidPU9Fp1InzQhQpEgIpntnZID/KFCP5rQnvsIw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.4.13':
- resolution: {integrity: sha512-ye7OgKpDdyA8AMIVVdmD1ICDaFXgoEXORnVO8bBHyul0WN71yUBZMX+YxEx2lpWtiftA2vY/1MAuOR80vHkBCw==}
+ '@swc/core-darwin-x64@1.8.0':
+ resolution: {integrity: sha512-yCb1FHCX/HUmNRGB1X3CFJ1WPKXMosZVUe3K2TrosCGvytwgaLoW5FS0bZg5Qv6cEUERQBg75cJnOUPwLLRCVg==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.4.13':
- resolution: {integrity: sha512-+x593Jlmu4c3lJtZUKRejWpV2MAij1Js5nmQLLdjo6ChR2D4B2rzj3iMiKn5gITew7fraF9t3fvXALdWh7HmUg==}
+ '@swc/core-linux-arm-gnueabihf@1.8.0':
+ resolution: {integrity: sha512-6TdjVdiLaSW+eGiHKEojMDlx673nowrPHa6nM6toWgRzy8tIZgjPOguVKJDoMnoHuvO7SkOLCUiMRw0rTskypA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.4.13':
- resolution: {integrity: sha512-0x8OVw4dfyNerrs/9eZX9wNnmvwbwXSMCi+LbE6Xt1pXOIwvoLtFIXcV3NsrlkFboO3sr5UAQIwDxKqbIZA9pQ==}
+ '@swc/core-linux-arm64-gnu@1.8.0':
+ resolution: {integrity: sha512-TU2YcTornnyZiJUabRuk7Xtvzaep11FwK77IkFomjN9/Os5s25B8ea652c2fAQMe9RsM84FPVmX303ohxavjKQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.4.13':
- resolution: {integrity: sha512-Z9c4JiequtZvngPcxbCuAOkmWBxi2vInZbjjhD5I+Q9oiJdXUz1t2USGwsGPS41Xvk1BOA3ecK2Sn1ilY3titg==}
+ '@swc/core-linux-arm64-musl@1.8.0':
+ resolution: {integrity: sha512-2CdPTEKxx2hJIj/B0fn8L8k2coo/FDS95smzXyi2bov5FcrP6Ohboq8roFBYgj38fkHusXjY8qt+cCH7yXWAdg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.4.13':
- resolution: {integrity: sha512-ChatHtk+vX0Ke5QG+jO+rIapw/KwZsi9MedCBHFXHH6iWF4z8d51cJeN68ykcn+vAXzjNeFNdlNy5Vbkd1zAqg==}
+ '@swc/core-linux-x64-gnu@1.8.0':
+ resolution: {integrity: sha512-14StQBifCs/AMsySdU95OmwNJr9LOVqo6rcTFt2b7XaWpe/AyeuMJFxcndLgUewksJHpfepzCTwNdbcYmuNo6A==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.4.13':
- resolution: {integrity: sha512-0Pz39YR530mXpsztwQkmEKdkkZy4fY4Smdh4pkm6Ly8Nndyo0te/l4bcAGqN24Jp7aVwF/QSy14SAtw4HRjU9g==}
+ '@swc/core-linux-x64-musl@1.8.0':
+ resolution: {integrity: sha512-qemJnAQlYqKCfWNqVv5SG8uGvw8JotwU86cuFUkq35oTB+dsSFM3b83+B1giGTKKFOh2nfWT7bvPXTKk+aUjew==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.4.13':
- resolution: {integrity: sha512-LVZfhlD+jHcAbz5NN+gAJ1BEasB0WpcvUzcsJt0nQSRsojgzPzFjJ+fzEBnvT7SMtqKkrnVJ0OmDYeh88bDRpw==}
+ '@swc/core-win32-arm64-msvc@1.8.0':
+ resolution: {integrity: sha512-fXt5vZbnrVdXZzGj2qRnZtY3uh+NtLCaFjS2uD9w8ssdbjhbDZYlJCj2JINOjv35ttEfAD2goiYmVa5P/Ypl+g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.4.13':
- resolution: {integrity: sha512-78hxHWUvUZtWsnhcf8DKwhBcNFJw+j4y4fN2B9ioXmBWX2tIyw+BqUHOrismOtjPihaZmwe/Ok2e4qmkawE2fw==}
+ '@swc/core-win32-ia32-msvc@1.8.0':
+ resolution: {integrity: sha512-W4FA2vSJ+bGYiTj6gspxghSdKQNLfLMo65AH07u797x7I+YJj8amnFY/fQRlroDv5Dez/FHTv14oPlTlNFUpIw==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.4.13':
- resolution: {integrity: sha512-WSfy1u2Xde6jU7UpHIInCUMW98Zw9iZglddKUAvmr1obkZji5U6EX0Oca3asEJdZPFb+2lMLjt0Mh5a1YisROg==}
+ '@swc/core-win32-x64-msvc@1.8.0':
+ resolution: {integrity: sha512-Il4y8XwKDV0Bnk0IpA00kGcSQC6I9XOIinW5egTutnwIDfDE+qsD0j+0isW5H76GetY3/Ze0lVxeOXLAUgpegA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.4.13':
- resolution: {integrity: sha512-rOtusBE+2gaeRkAJn5E4zp5yzZekZOypzSOz5ZG6P1hFbd+Cc26fWEdK6sUSnrkkvTd0Oj33KXLB/4UkbK/UHA==}
+ '@swc/core@1.8.0':
+ resolution: {integrity: sha512-EF8C5lp1RKMp3426tAKwQyVbg4Zcn/2FDax3cz8EcOXYQJM/ctB687IvBm9Ciej1wMcQ/dMRg+OB4Xl8BGLBoA==}
engines: {node: '>=10'}
peerDependencies:
- '@swc/helpers': ^0.5.0
+ '@swc/helpers': '*'
peerDependenciesMeta:
'@swc/helpers':
optional: true
@@ -7202,36 +7338,36 @@ packages:
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+ '@swc/helpers@0.5.13':
+ resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
+
'@swc/helpers@0.5.2':
resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
- '@swc/helpers@0.5.9':
- resolution: {integrity: sha512-XI76sLwMJoLjJTOK5RblBZkouOJG3X3hjxLCzLnyN1ifAiKQc6Hck3uvnU4Z/dV/Dyk36Ffj8FLvDLV2oWvKTw==}
-
- '@swc/jest@0.2.36':
- resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==}
+ '@swc/jest@0.2.37':
+ resolution: {integrity: sha512-CR2BHhmXKGxTiFr21DYPRHQunLkX3mNIFGFkxBGji6r9uyIR5zftTOVYj1e0sFNMV2H7mf/+vpaglqaryBtqfQ==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
'@swc/core': '*'
- '@swc/types@0.1.6':
- resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==}
+ '@swc/types@0.1.14':
+ resolution: {integrity: sha512-PbSmTiYCN+GMrvfjrMo9bdY+f2COnwbdnoMw7rqU/PI5jXpKjxOGZ0qqZCImxnT81NkNsKnmEpvu+hRXLBeCJg==}
'@szmarczak/http-timer@5.0.1':
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
- '@tailwindcss/typography@0.5.12':
- resolution: {integrity: sha512-CNwpBpconcP7ppxmuq3qvaCxiRWnbhANpY/ruH4L5qs2GCiVDJXde/pjj2HWPV1+Q4G9+V/etrwUYopdcjAlyg==}
+ '@tailwindcss/typography@0.5.15':
+ resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==}
peerDependencies:
- tailwindcss: '>=3.0.0 || insiders'
+ tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
'@testing-library/dom@10.4.0':
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
- '@testing-library/jest-dom@6.6.2':
- resolution: {integrity: sha512-P6GJD4yqc9jZLbe98j/EkyQDTPgqftohZF5FBkHY5BUERZmcf4HeO2k0XaefEg329ux2p21i1A1DmyQ1kKw2Jw==}
+ '@testing-library/jest-dom@6.6.3':
+ resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
'@testing-library/react@16.0.1':
@@ -7298,8 +7434,8 @@ packages:
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.20.5':
- resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
+ '@types/babel__traverse@7.20.6':
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
'@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
@@ -7310,11 +7446,11 @@ packages:
'@types/canvas-confetti@1.6.4':
resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==}
- '@types/color-convert@2.0.3':
- resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==}
+ '@types/color-convert@2.0.4':
+ resolution: {integrity: sha512-Ub1MmDdyZ7mX//g25uBAoH/mWGd9swVbt8BseymnaE18SU4po/PjmCrHxqIIRjBo3hV/vh1KGr0eMxUhp+t+dQ==}
- '@types/color-name@1.1.4':
- resolution: {integrity: sha512-hulKeREDdLFesGQjl96+4aoJSHY5b2GRjagzzcqCfIrWhe5vkCqIvrLbqzBaI1q94Vg8DNJZZqTR5ocdWmWclg==}
+ '@types/color-name@1.1.5':
+ resolution: {integrity: sha512-j2K5UJqGTxeesj6oQuGpMgifpT5k9HprgQd8D1Y0lOFqKHl3PJu5GMeS4Y5EgjS55AE6OQxf8mPED9uaGbf4Cg==}
'@types/color@3.0.6':
resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==}
@@ -7340,8 +7476,8 @@ packages:
'@types/ejs@3.1.5':
resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==}
- '@types/emscripten@1.39.10':
- resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==}
+ '@types/emscripten@1.39.13':
+ resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==}
'@types/escodegen@0.0.6':
resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
@@ -7352,8 +7488,8 @@ packages:
'@types/eslint-visitor-keys@1.0.0':
resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
- '@types/eslint@8.56.9':
- resolution: {integrity: sha512-W4W3KcqzjJ0sHg2vAq9vfml6OhsJ53TcUjUqfzzZf/EChUtwspszj/S0pzMxnfRcO55/iGq47dscXw71Fxc4Zg==}
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
'@types/estree-jsx@1.0.5':
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
@@ -7361,11 +7497,11 @@ packages:
'@types/estree@0.0.51':
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/express-serve-static-core@4.19.0':
- resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
+ '@types/express-serve-static-core@4.19.6':
+ resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -7448,8 +7584,8 @@ packages:
'@types/lodash.omit@4.5.9':
resolution: {integrity: sha512-zuAVFLUPJMOzsw6yawshsYGgq2hWUHtsZgeXHZmSFhaQQFC6EQ021uDKHkSjOpNhSvtNSU9165/o3o/Q51GpTw==}
- '@types/lodash@4.17.5':
- resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==}
+ '@types/lodash@4.17.13':
+ resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
'@types/marked@5.0.2':
resolution: {integrity: sha512-OucS4KMHhFzhz27KxmWg7J+kIYqyqoW5kdIEI319hqARQQUTqhao3M/F+uFnDXD0Rg72iDDZxZNxq5gvctmLlg==}
@@ -7487,8 +7623,8 @@ packages:
'@types/node@15.14.9':
resolution: {integrity: sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==}
- '@types/node@18.19.31':
- resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==}
+ '@types/node@18.19.64':
+ resolution: {integrity: sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==}
'@types/node@20.2.5':
resolution: {integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==}
@@ -7508,14 +7644,14 @@ packages:
'@types/pretty-hrtime@1.0.3':
resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==}
- '@types/prismjs@1.26.3':
- resolution: {integrity: sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw==}
+ '@types/prismjs@1.26.5':
+ resolution: {integrity: sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==}
- '@types/prop-types@15.7.12':
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
- '@types/qs@6.9.14':
- resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==}
+ '@types/qs@6.9.16':
+ resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
@@ -7565,8 +7701,8 @@ packages:
'@types/tough-cookie@4.0.5':
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
'@types/unist@3.0.3':
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
@@ -7580,8 +7716,8 @@ packages:
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- '@types/yargs@17.0.32':
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+ '@types/yargs@17.0.33':
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
'@typescript-eslint/eslint-plugin@5.62.0':
resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
@@ -7730,8 +7866,8 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@vercel/analytics@1.2.2':
- resolution: {integrity: sha512-X0rctVWkQV1e5Y300ehVNqpOfSOufo7ieA5PIdna8yX/U7Vjz0GFsGf4qvAhxV02uQ2CVt7GYcrFfddXXK2Y4A==}
+ '@vercel/analytics@1.3.2':
+ resolution: {integrity: sha512-n/Ws7skBbW+fUBMeg+jrT30+GP00jTHvCcL4fuVrShuML0uveEV/4vVUdvqEVnDgXIGfLm0GXW5EID2mCcRXhg==}
peerDependencies:
next: '>= 13'
react: ^18.2.0
@@ -7833,11 +7969,6 @@ packages:
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
- acorn-import-assertions@1.9.0:
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
- peerDependencies:
- acorn: ^8
-
acorn-jsx@3.0.1:
resolution: {integrity: sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==}
@@ -7850,8 +7981,8 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- acorn-walk@8.3.2:
- resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
acorn@3.3.0:
@@ -7874,8 +8005,8 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -7907,14 +8038,14 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- ajv@8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@4.23.3:
- resolution: {integrity: sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==}
+ algoliasearch@4.24.0:
+ resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
- anser@2.1.1:
- resolution: {integrity: sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==}
+ anser@2.3.0:
+ resolution: {integrity: sha512-pGGR7Nq1K/i9KGs29PvHDXA8AsfZ3OiYRMDClT3FIC085Kbns9CJ7ogq9MEiGnrjd9THOGoh7B+kWzePHzZyJQ==}
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -7959,13 +8090,10 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
- ansi-sequence-parser@1.1.1:
- resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==}
-
ansi-styles@2.2.1:
resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
engines: {node: '>=0.10.0'}
@@ -8027,6 +8155,10 @@ packages:
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
+
arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
@@ -8088,11 +8220,9 @@ packages:
resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
- array.prototype.toreversed@1.1.2:
- resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
-
- array.prototype.tosorted@1.1.3:
- resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
+ array.prototype.tosorted@1.1.4:
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
+ engines: {node: '>= 0.4'}
arraybuffer.prototype.slice@1.0.3:
resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
@@ -8128,15 +8258,15 @@ packages:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- astring@1.8.6:
- resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
+ astring@1.9.0:
+ resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
hasBin: true
async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -8149,8 +8279,8 @@ packages:
autolinker@0.28.1:
resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==}
- autoprefixer@10.4.19:
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ autoprefixer@10.4.20:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -8160,19 +8290,16 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axe-core@4.7.0:
- resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
- engines: {node: '>=4'}
-
- axe-core@4.9.0:
- resolution: {integrity: sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==}
+ axe-core@4.10.2:
+ resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
engines: {node: '>=4'}
- axobject-query@3.2.1:
- resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
- b4a@1.6.6:
- resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
+ b4a@1.6.7:
+ resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
babel-core@7.0.0-bridge.0:
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
@@ -8208,8 +8335,8 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- babel-plugin-polyfill-corejs2@0.4.10:
- resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ babel-plugin-polyfill-corejs2@0.4.11:
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -8218,13 +8345,13 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.1:
- resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==}
+ babel-plugin-polyfill-regenerator@0.6.2:
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -8236,8 +8363,8 @@ packages:
babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
- babel-preset-current-node-syntax@1.0.1:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -8257,20 +8384,23 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- bare-events@2.2.2:
- resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==}
+ bare-events@2.5.0:
+ resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==}
+
+ bare-fs@2.3.5:
+ resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==}
- bare-fs@2.2.3:
- resolution: {integrity: sha512-amG72llr9pstfXOBOHve1WjiuKKAMnebcmMbPWDZ7BCevAoJLpugjuAPRsDINEyjT0a6tbaVx3DctkXIRbLuJw==}
+ bare-os@2.4.4:
+ resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==}
- bare-os@2.2.1:
- resolution: {integrity: sha512-OwPyHgBBMkhC29Hl3O4/YfxW9n7mdTr2+SsO29XBWKKJsbgj3mnorDB80r5TiCQgQstgE5ga1qNYrpes6NvX2w==}
+ bare-path@2.1.3:
+ resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
- bare-path@2.1.1:
- resolution: {integrity: sha512-OHM+iwRDRMDBsSW7kl3dO62JyHdBKO3B25FB9vNQBPcGHMo4+eA8Yj41Lfbk3pS/seDY+siNge0LdRTulAau/A==}
+ bare-stream@2.3.2:
+ resolution: {integrity: sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A==}
- base-x@3.0.9:
- resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
+ base-x@3.0.10:
+ resolution: {integrity: sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==}
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -8304,8 +8434,8 @@ packages:
bl@5.1.0:
resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
boolbase@1.0.0:
@@ -8332,8 +8462,8 @@ packages:
resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
engines: {node: '>=0.10.0'}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
breakword@1.0.6:
@@ -8345,8 +8475,8 @@ packages:
browserify-zlib@0.1.4:
resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==}
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -8369,9 +8499,6 @@ packages:
buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- builtins@5.1.0:
- resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
-
bundle-require@3.1.2:
resolution: {integrity: sha512-Of6l6JBAxiyQ5axFxUM6dYeP/W7X2Sozeo/4EYB9sJhL+dqL7TKjg+shwxp6jlu/6ZSERfsYtIpSJ1/x3XkAEA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -8382,10 +8509,6 @@ packages:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
- bytes@3.0.0:
- resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
- engines: {node: '>= 0.8'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
@@ -8445,11 +8568,11 @@ packages:
resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
engines: {node: '>=14.16'}
- caniuse-lite@1.0.30001609:
- resolution: {integrity: sha512-JFPQs34lHKx1B5t1EpQpWH4c+29zIyn/haGsbpfq3suuV9v56enjFt23zqijxGTMwy1p/4H2tjnQMY+p1WoAyA==}
+ caniuse-lite@1.0.30001677:
+ resolution: {integrity: sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==}
- canvas-confetti@1.9.2:
- resolution: {integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==}
+ canvas-confetti@1.9.3:
+ resolution: {integrity: sha512-rFfTURMvmVEX1gyXFgn5QMn81bYk70qa0HLzcIOSVEyl57n6o9ItHeBtUSWdvKAPY0xlvBHno4/v3QPrT83q9g==}
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -8523,8 +8646,8 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- chrome-trace-event@1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ chrome-trace-event@1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
ci-info@3.9.0:
@@ -8534,8 +8657,8 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- cjs-module-lexer@1.2.3:
- resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
+ cjs-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
@@ -8572,8 +8695,8 @@ packages:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- cli-table3@0.6.4:
- resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==}
+ cli-table3@0.6.5:
+ resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
cli-truncate@3.1.0:
@@ -8624,8 +8747,8 @@ packages:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
- clsx@2.1.0:
- resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
cmdk@0.2.1:
@@ -8721,8 +8844,8 @@ packages:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- comment-json@4.2.3:
- resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==}
+ comment-json@4.2.5:
+ resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
engines: {node: '>= 6'}
commitlint-plugin-function-rules@1.7.1:
@@ -8754,8 +8877,8 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ compression@1.7.5:
+ resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==}
engines: {node: '>= 0.8.0'}
compute-scroll-into-view@3.1.0:
@@ -8776,6 +8899,9 @@ packages:
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
@@ -8804,8 +8930,8 @@ packages:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- contentlayer2@0.5.1:
- resolution: {integrity: sha512-lsLaYijf5OrHXdi7WgHRHpBxWZr+EIB++IAwJj4svOId+2IW9GNTUW4hixKsAp6e/lzOl7ZnW1o1zk6tCLvOSA==}
+ contentlayer2@0.5.3:
+ resolution: {integrity: sha512-0vHdTWsuTgY/dMKxhCc8wILoeaCK5ye42i1gRd1jOoKFXQ6q/eMnSp+gSE81V8wbBa2jv7cjP90xpiRfzaXTWw==}
engines: {node: '>=18'}
hasBin: true
@@ -8828,19 +8954,19 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.6.0:
- resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
copy-descriptor@0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- core-js-compat@3.36.1:
- resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
+ core-js-compat@3.39.0:
+ resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
- core-js@3.36.1:
- resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==}
+ core-js@3.39.0:
+ resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -8863,6 +8989,15 @@ packages:
typescript:
optional: true
+ cosmiconfig@9.0.0:
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
create-jest@29.7.0:
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -9016,6 +9151,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decamelize-keys@1.1.1:
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
@@ -9149,8 +9293,9 @@ packages:
resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==}
engines: {node: '>=12'}
- detect-port@1.5.1:
- resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
+ detect-port@1.6.1:
+ resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
+ engines: {node: '>= 4.0.0'}
hasBin: true
devlop@1.1.0:
@@ -9264,8 +9409,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.4.736:
- resolution: {integrity: sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q==}
+ electron-to-chromium@1.5.50:
+ resolution: {integrity: sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -9288,6 +9433,10 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
@@ -9298,8 +9447,8 @@ packages:
resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
engines: {node: '>=6.9.0'}
- enhanced-resolve@5.16.0:
- resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
enquirer@2.4.1:
@@ -9321,8 +9470,8 @@ packages:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- envinfo@7.12.0:
- resolution: {integrity: sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg==}
+ envinfo@7.14.0:
+ resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==}
engines: {node: '>=4'}
hasBin: true
@@ -9348,15 +9497,15 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.0.18:
- resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==}
+ es-iterator-helpers@1.1.0:
+ resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==}
engines: {node: '>= 0.4'}
es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
- es-module-lexer@1.5.0:
- resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==}
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
@@ -9384,6 +9533,12 @@ packages:
resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
engines: {node: '>=0.12'}
+ esast-util-from-estree@2.0.0:
+ resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
+
+ esast-util-from-js@2.0.1:
+ resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
+
esbuild-android-64@0.15.18:
resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==}
engines: {node: '>=12'}
@@ -9488,8 +9643,8 @@ packages:
peerDependencies:
esbuild: ^0.14.36 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^0.20.0
- esbuild-register@3.5.0:
- resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
+ esbuild-register@3.6.0:
+ resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
peerDependencies:
esbuild: '>=0.12 <1'
@@ -9527,13 +9682,8 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.20.2:
- resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
- engines: {node: '>=12'}
- hasBin: true
-
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-carriage@1.3.1:
@@ -9587,8 +9737,8 @@ packages:
eslint-plugin-react: ^7.21.5
eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0
- eslint-config-next@13.5.6:
- resolution: {integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==}
+ eslint-config-next@13.5.7:
+ resolution: {integrity: sha512-pdeUuL9KZ8qFzzKqCbxk6FXwG9dNEnot/3+qSFJqxdSGgkFUH8cgZus/meyCi2S0cTAsDbBEE030E6zvL9pUYQ==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -9644,12 +9794,18 @@ packages:
eslint: '*'
eslint-plugin-import: '*'
- eslint-import-resolver-typescript@3.6.1:
- resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
+ eslint-import-resolver-typescript@3.6.3:
+ resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
eslint-loader@4.0.2:
resolution: {integrity: sha512-EDpXor6lsjtTzZpLUn7KmXs02+nIjGcgees9BYjNkWra3jVq5vVa8IoCKgzT2M7dNNeoMBtaSG83Bd40N3poLw==}
@@ -9659,8 +9815,8 @@ packages:
eslint: ^6.0.0 || ^7.0.0
webpack: ^4.0.0 || ^5.0.0
- eslint-module-utils@2.8.1:
- resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ eslint-module-utils@2.12.0:
+ resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -9692,12 +9848,12 @@ packages:
peerDependencies:
eslint: ^7.1.0
- eslint-plugin-import@2.29.1:
- resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
@@ -9712,11 +9868,11 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-jsx-a11y@6.8.0:
- resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
eslint-plugin-node@11.1.0:
resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
@@ -9735,23 +9891,23 @@ packages:
eslint-config-prettier:
optional: true
- eslint-plugin-promise@6.1.1:
- resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
+ eslint-plugin-promise@6.6.0:
+ resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-react-hooks@4.6.0:
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ eslint-plugin-react-hooks@4.6.2:
+ resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.34.1:
- resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==}
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
eslint-plugin-unused-imports@2.0.0:
resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==}
@@ -9842,8 +9998,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -9867,11 +10023,14 @@ packages:
estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+ estree-util-scope@1.0.0:
+ resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
+
estree-util-to-js@2.0.0:
resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
- estree-util-value-to-estree@3.1.2:
- resolution: {integrity: sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag==}
+ estree-util-value-to-estree@3.2.1:
+ resolution: {integrity: sha512-Vt2UOjyPbNQQgT5eJh+K5aATti0OjCIAGc9SgMdOFYbohuifsWclR74l0iZTJwePMgWYdX1hlVS+dedH9XV8kw==}
estree-util-visit@2.0.0:
resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
@@ -9939,8 +10098,8 @@ packages:
exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
- express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ express@4.21.1:
+ resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
engines: {node: '>= 0.10.0'}
ext@1.7.0:
@@ -9994,6 +10153,9 @@ packages:
fast-memoize@2.5.2:
resolution: {integrity: sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==}
+ fast-uri@3.0.3:
+ resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
+
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
@@ -10043,12 +10205,12 @@ packages:
resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
find-cache-dir@2.1.0:
@@ -10112,8 +10274,8 @@ packages:
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- flow-parser@0.233.0:
- resolution: {integrity: sha512-E/mv51GYJfLuRX6fZnw4M52gBxYa8pkHUOgNEZOcQK2RTXS8YXeU5rlalkTcY99UpwbeNVCSUFKaavpOksi/pQ==}
+ flow-parser@0.251.1:
+ resolution: {integrity: sha512-8ZuLqJPlL/T9K3zFdr1m88Lx8JOoJluTTdyvN4uH5NT9zoIIFqbCDoXVhkHh022k2lhuAyFF27cu0BYKh5SmDA==}
engines: {node: '>=0.4.0'}
for-each@0.3.3:
@@ -10127,16 +10289,16 @@ packages:
resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==}
engines: {node: '>=0.10.0'}
- foreground-child@3.1.1:
- resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
form-data-encoder@2.1.4:
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
engines: {node: '>= 14.17'}
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ form-data@4.0.1:
+ resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -10173,8 +10335,8 @@ packages:
react-dom:
optional: true
- framer-motion@11.2.12:
- resolution: {integrity: sha512-lCjkV4nA9rWOy2bhR4RZzkp2xpB++kFmUZ6D44V9VQaxk+JDmbDd5lq+u58DjJIIllE8AZEXp9OG/TyDN4FB/w==}
+ framer-motion@11.11.11:
+ resolution: {integrity: sha512-tuDH23ptJAKUHGydJQII9PhABNJBpB+z0P1bmgKK9QFIssHGlfPd6kxMq00LSKwE27WFsb2z0ovY0bpUyMvfRw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.2.0
@@ -10303,8 +10465,8 @@ packages:
resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.7.3:
- resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
@@ -10345,9 +10507,8 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
- engines: {node: '>=16 || 14 >=14.17'}
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
glob@7.1.7:
@@ -10395,8 +10556,8 @@ packages:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
- globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
globby@11.1.0:
@@ -10543,8 +10704,8 @@ packages:
hast-util-to-html@9.0.3:
resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==}
- hast-util-to-jsx-runtime@2.3.0:
- resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
+ hast-util-to-jsx-runtime@2.3.2:
+ resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==}
hast-util-to-string@1.0.4:
resolution: {integrity: sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w==}
@@ -10597,14 +10758,14 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- htmlnano@2.1.0:
- resolution: {integrity: sha512-jVGRE0Ep9byMBKEu0Vxgl8dhXYOUk0iNQ2pjsG+BcRB0u0oDF5A9p/iBGMg/PGKYUyMD0OAGu8dVT5Lzj8S58g==}
+ htmlnano@2.1.1:
+ resolution: {integrity: sha512-kAERyg/LuNZYmdqgCdYvugyLWNFAm8MWXpQMz1pLpetmCbFwoMxvkSoaAMlFrOC4OKTWI4KlZGT/RsNxg4ghOw==}
peerDependencies:
- cssnano: ^6.0.0
+ cssnano: ^7.0.0
postcss: ^8.3.11
- purgecss: ^5.0.0
+ purgecss: ^6.0.0
relateurl: ^0.2.7
- srcset: 4.0.0
+ srcset: 5.0.1
svgo: ^3.0.2
terser: ^5.10.0
uncss: ^0.17.3
@@ -10690,16 +10851,16 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@6.0.4:
- resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==}
+ ignore-walk@6.0.5:
+ resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ignore@4.0.6:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
imagescript@1.3.0:
@@ -10719,8 +10880,8 @@ packages:
engines: {node: '>=6'}
hasBin: true
- import-local@3.1.0:
- resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
engines: {node: '>=8'}
hasBin: true
@@ -10753,8 +10914,8 @@ packages:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
- ini@4.1.2:
- resolution: {integrity: sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==}
+ ini@4.1.3:
+ resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
inline-style-parser@0.1.1:
@@ -10786,8 +10947,8 @@ packages:
intersection-observer@0.10.0:
resolution: {integrity: sha512-fn4bQ0Xq8FTej09YC/jqKZwtijpvARlRp6wxL5WTA6yPe2YWSJ5RJh7Nm79rK2qB0wr6iDQzH60XGq5V/7u8YQ==}
- intl-messageformat@10.5.11:
- resolution: {integrity: sha512-eYq5fkFBVxc7GIFDzpFQkDOZgNayNTQn4Oufe8jw6YY6OHVw70/4pA3FyCsQ0Gb2DnvEJEMmN2tOaXUGByM+kg==}
+ intl-messageformat@10.7.5:
+ resolution: {integrity: sha512-CflbRvJiahVmnfxq/lO+DCM1/8ji4vC4rTnz6ZJEKKodViB+EWgY9M4EqXVRQ+3K0Ng5qwSyqybPP+KSfS4KZw==}
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
@@ -10796,9 +10957,6 @@ packages:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
- ip@2.0.1:
- resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -10863,6 +11021,9 @@ packages:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
+ is-bun-module@1.2.1:
+ resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
+
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
@@ -10871,8 +11032,9 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
is-data-descriptor@1.0.1:
resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
@@ -11042,9 +11204,6 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- is-reference@3.0.2:
- resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
-
is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -11172,15 +11331,15 @@ packages:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
- iterator.prototype@1.1.2:
- resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ engines: {node: '>= 0.4'}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
- jake@10.8.7:
- resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
+ jake@10.9.2:
+ resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
engines: {node: '>=10'}
hasBin: true
@@ -11332,15 +11491,15 @@ packages:
node-notifier:
optional: true
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
+ jiti@1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
- joi@17.12.3:
- resolution: {integrity: sha512-2RRziagf555owrm9IRVtdKynOBeITiDpuZqIpgwqXShPncPKNiRQoiGsl/T8SQdq+8ugRzH2LqY67irr2y/d+g==}
+ joi@17.13.3:
+ resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
@@ -11385,9 +11544,9 @@ packages:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
json-buffer@3.0.1:
@@ -11399,8 +11558,8 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.1:
- resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==}
+ json-parse-even-better-errors@3.0.2:
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
json-parse-helpfulerror@1.0.3:
@@ -11424,8 +11583,8 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-parser@3.2.1:
- resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
@@ -11467,8 +11626,8 @@ packages:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- language-subtag-registry@0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
+ language-subtag-registry@0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
language-tags@1.0.9:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
@@ -11502,70 +11661,76 @@ packages:
resolution: {integrity: sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==}
engines: {node: '>=10.13.0'}
- lightningcss-darwin-arm64@1.24.1:
- resolution: {integrity: sha512-1jQ12jBy+AE/73uGQWGSafK5GoWgmSiIQOGhSEXiFJSZxzV+OXIx+a9h2EYHxdJfX864M+2TAxWPWb0Vv+8y4w==}
+ lightningcss-darwin-arm64@1.28.1:
+ resolution: {integrity: sha512-VG3vvzM0m/rguCdm76DdobNeNJnHK+jWcdkNLFWHLh9YCotRvbRIt45JxwcHlIF8TDqWStVLTdghq5NaigVCBQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.24.1:
- resolution: {integrity: sha512-R4R1d7VVdq2mG4igMU+Di8GPf0b64ZLnYVkubYnGG0Qxq1KaXQtAzcLI43EkpnoWvB/kUg8JKCWH4S13NfiLcQ==}
+ lightningcss-darwin-x64@1.28.1:
+ resolution: {integrity: sha512-O7ORdislvKfMohFl4Iq7fxKqdJOuuxArcglVI3amuFO5DJ0wfV3Gxgi1JRo49slfr7OVzJQEHLG4muTWYM5cTQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.24.1:
- resolution: {integrity: sha512-z6NberUUw5ALES6Ixn2shmjRRrM1cmEn1ZQPiM5IrZ6xHHL5a1lPin9pRv+w6eWfcrEo+qGG6R9XfJrpuY3e4g==}
+ lightningcss-freebsd-x64@1.28.1:
+ resolution: {integrity: sha512-b7sF89B31kYYijxVcFO7l5u6UNA862YstNu+3YbLl/IQKzveL4a5cwR5cdpG+OOhErg/c2u9WCmzZoX2I5GBvw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.24.1:
- resolution: {integrity: sha512-NLQLnBQW/0sSg74qLNI8F8QKQXkNg4/ukSTa+XhtkO7v3BnK19TS1MfCbDHt+TTdSgNEBv0tubRuapcKho2EWw==}
+ lightningcss-linux-arm-gnueabihf@1.28.1:
+ resolution: {integrity: sha512-p61kXwvhUDLLzkWHjzSFfUBW/F0iy3jr3CWi3k8SKULtJEsJXTI9DqRm9EixxMSe2AMBQBt4auTYiQL4B1N51A==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.24.1:
- resolution: {integrity: sha512-AQxWU8c9E9JAjAi4Qw9CvX2tDIPjgzCTrZCSXKELfs4mCwzxRkHh2RCxX8sFK19RyJoJAjA/Kw8+LMNRHS5qEg==}
+ lightningcss-linux-arm64-gnu@1.28.1:
+ resolution: {integrity: sha512-iO+fN9hOMmzfwqcG2/BgUtMKD48H2JO/SXU44fyIwpY2veb65QF5xiRrQ9l1FwIxbGK3231KBYCtAqv+xf+NsQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.24.1:
- resolution: {integrity: sha512-JCgH/SrNrhqsguUA0uJUM1PvN5+dVuzPIlXcoWDHSv2OU/BWlj2dUYr3XNzEw748SmNZPfl2NjQrAdzaPOn1lA==}
+ lightningcss-linux-arm64-musl@1.28.1:
+ resolution: {integrity: sha512-dnMHeXEmCUzHHZjaDpQBYuBKcN9nPC3nPFKl70bcj5Bkn5EmkcgEqm5p035LKOgvAwk1XwLpQCML6pXmCwz0NQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.24.1:
- resolution: {integrity: sha512-TYdEsC63bHV0h47aNRGN3RiK7aIeco3/keN4NkoSQ5T8xk09KHuBdySltWAvKLgT8JvR+ayzq8ZHnL1wKWY0rw==}
+ lightningcss-linux-x64-gnu@1.28.1:
+ resolution: {integrity: sha512-7vWDISaMUn+oo2TwRdf2hl/BLdPxvywv9JKEqNZB/0K7bXwV4XE9wN/C2sAp1gGuh6QBA8lpjF4JIPt3HNlCHA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.24.1:
- resolution: {integrity: sha512-HLfzVik3RToot6pQ2Rgc3JhfZkGi01hFetHt40HrUMoeKitLoqUUT5owM6yTZPTytTUW9ukLBJ1pc3XNMSvlLw==}
+ lightningcss-linux-x64-musl@1.28.1:
+ resolution: {integrity: sha512-IHCu9tVGP+x5BCpA2rF3D04DBokcBza/a8AuHQU+1AiMKubuMegPwcL7RatBgK4ztFHeYnnD5NdhwhRfYMAtNA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-win32-x64-msvc@1.24.1:
- resolution: {integrity: sha512-joEupPjYJ7PjZtDsS5lzALtlAudAbgIBMGJPNeFe5HfdmJXFd13ECmEM+5rXNxYVMRHua2w8132R6ab5Z6K9Ow==}
+ lightningcss-win32-arm64-msvc@1.28.1:
+ resolution: {integrity: sha512-Erm72kHmMg/3h350PTseskz+eEGBM17Fuu79WW2Qqt0BfWSF1jHHc12lkJCWMYl5jcBHPs5yZdgNHtJ7IJS3Uw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.28.1:
+ resolution: {integrity: sha512-ZPQtvx+uQBzrSdHH8p4H3M9Alue+x369TPZAA3b4K3d92FPhpZCuBG04+HQzspam9sVeID9mI6f3VRAs2ezaEA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss@1.24.1:
- resolution: {integrity: sha512-kUpHOLiH5GB0ERSv4pxqlL0RYKnOXtgGtVe7shDGfhS0AZ4D1ouKFYAcLcZhql8aMspDNzaUCumGHZ78tb2fTg==}
+ lightningcss@1.28.1:
+ resolution: {integrity: sha512-KRDkHlLlNj3DWh79CDt93fPlRJh2W1AuHV0ZSZAMMuN7lqlsZTV5842idfS1urWG8q9tc17velp1gCXhY7sLnQ==}
engines: {node: '>= 12.0.0'}
lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- lilconfig@3.1.1:
- resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ lilconfig@3.1.2:
+ resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -11720,8 +11885,8 @@ packages:
loglevel-colored-level-prefix@1.0.0:
resolution: {integrity: sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==}
- loglevel@1.9.1:
- resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
+ loglevel@1.9.2:
+ resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
engines: {node: '>= 0.6.0'}
long@5.2.3:
@@ -11745,9 +11910,8 @@ packages:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
- engines: {node: 14 || >=16.14}
+ lru-cache@10.4.3:
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -11774,9 +11938,8 @@ packages:
resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
engines: {node: '>=12'}
- magic-string@0.30.9:
- resolution: {integrity: sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==}
- engines: {node: '>=12'}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
@@ -11839,11 +12002,11 @@ packages:
resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==}
engines: {node: '>=0.10.0'}
- markdown-table@3.0.3:
- resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ markdown-table@3.0.4:
+ resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- markdown-to-jsx@7.4.7:
- resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==}
+ markdown-to-jsx@7.5.0:
+ resolution: {integrity: sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==}
engines: {node: '>= 10'}
peerDependencies:
react: ^18.2.0
@@ -11858,8 +12021,9 @@ packages:
engines: {node: '>= 16'}
hasBin: true
- match-sorter@6.3.4:
- resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==}
+ match-sorter@6.4.0:
+ resolution: {integrity: sha512-d4664ahzdL1QTTvmK1iI0JsrxWeJ6gn33qkYtnPg3mcn+naBLtXSgSPOe+X2vUgtgGwaAk3eiaj7gwKjjMAq+Q==}
+ deprecated: This was arguably a breaking change. Not in API, but more results can be returned. Upgrade to the next major when you are ready for that
math-random@1.0.4:
resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==}
@@ -11876,8 +12040,8 @@ packages:
mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
- mdast-util-from-markdown@2.0.1:
- resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
mdast-util-frontmatter@2.0.1:
resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
@@ -11942,8 +12106,8 @@ packages:
mdast-util-to-markdown@1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
- mdast-util-to-markdown@2.1.0:
- resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
+ mdast-util-to-markdown@2.1.2:
+ resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
mdast-util-to-string@1.1.0:
resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==}
@@ -11967,8 +12131,8 @@ packages:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- memfs@4.12.0:
- resolution: {integrity: sha512-74wDsex5tQDSClVkeK1vtxqYCAgCoXxx+K4NSHzgU/muYVYByFqa+0RnrPO9NM6naWm1+G9JmZ0p6QHhXmeYfA==}
+ memfs@4.14.0:
+ resolution: {integrity: sha512-JUeY0F/fQZgIod31Ja1eJgiSxLn7BfQlCnqhwXFBzFHEw63OdLK7VJUJ7bnzNsWgCyoUP5tEp1VRY8rDaYzqOA==}
engines: {node: '>= 4.0.0'}
memoizerific@1.11.3:
@@ -11990,8 +12154,8 @@ packages:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
engines: {node: '>=10'}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -12214,6 +12378,10 @@ packages:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
mime-db@1.25.0:
resolution: {integrity: sha512-5k547tI4Cy+Lddr/hdjNbBEWBwSl8EBc5aSdKvedav8DReADgWJzcYiktaRIw3GtGC1jjwldXtTzvqJZmtvC7w==}
engines: {node: '>= 0.6'}
@@ -12222,6 +12390,10 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.53.0:
+ resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.13:
resolution: {integrity: sha512-ryBDp1Z/6X90UvjUK3RksH0IBPM137T7cmg4OgD5wQBojlAiUwuok0QeELkim/72EtcYuNlmbkrcGuxj3Kl0YQ==}
engines: {node: '>= 0.6'}
@@ -12275,8 +12447,8 @@ packages:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
- minimatch@9.0.4:
- resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
minimist-options@4.1.0:
@@ -12294,16 +12466,16 @@ packages:
resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- minipass-fetch@3.0.4:
- resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==}
+ minipass-fetch@3.0.5:
+ resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
- minipass-json-stream@1.0.1:
- resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==}
+ minipass-json-stream@1.0.2:
+ resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==}
minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
@@ -12321,8 +12493,8 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
@@ -12352,6 +12524,9 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ mlly@1.7.2:
+ resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
+
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
@@ -12373,12 +12548,12 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msgpackr-extract@3.0.2:
- resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==}
+ msgpackr-extract@3.0.3:
+ resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
hasBin: true
- msgpackr@1.10.1:
- resolution: {integrity: sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==}
+ msgpackr@1.11.2:
+ resolution: {integrity: sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==}
mute-stream@0.0.7:
resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==}
@@ -12411,13 +12586,17 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@0.6.4:
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- next-contentlayer2@0.5.1:
- resolution: {integrity: sha512-thDT4nsPAP6lHZlaHIPI25urR0+XDVSUexoZytze7PAAcEBRfiddrklA7JYZR7rhFgaCspDg1ryc7Six6lYUgw==}
+ next-contentlayer2@0.5.3:
+ resolution: {integrity: sha512-xNuiAJxeQOABiWsjJ6hFv/Ovb9vRujBgamaEjvYXiVecrBtCIyCDF3WpdDx4krfAd9WJRW8TN6OLpyZsG2ApjA==}
peerDependencies:
- contentlayer2: 0.5.1
+ contentlayer2: 0.5.3
next: '>=12.0.0'
react: ^18.2.0
react-dom: ^18.2.0
@@ -12460,16 +12639,15 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-abi@3.57.0:
- resolution: {integrity: sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==}
+ node-abi@3.71.0:
+ resolution: {integrity: sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==}
engines: {node: '>=10'}
node-addon-api@6.1.0:
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
- node-addon-api@7.1.0:
- resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
- engines: {node: ^16 || ^18 || >= 20}
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
@@ -12495,14 +12673,14 @@ packages:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- node-gyp-build-optional-packages@5.0.7:
- resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==}
- hasBin: true
-
node-gyp-build-optional-packages@5.1.1:
resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
hasBin: true
+ node-gyp-build-optional-packages@5.2.2:
+ resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
+ hasBin: true
+
node-gyp@9.4.1:
resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==}
engines: {node: ^12.13 || ^14.13 || >=16}
@@ -12515,8 +12693,8 @@ packages:
resolution: {integrity: sha512-qmXJJt3YETFt/e0dtMADVpvck6EvN01Jig086o+J3M6G++mWA7iJ3Pqz4m4kvlynh73Iz2/rcZzxq7xTiF+aIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nopt@6.0.0:
resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
@@ -12546,12 +12724,12 @@ packages:
resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
engines: {node: '>=14.16'}
- npm-bundled@3.0.0:
- resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
+ npm-bundled@3.0.1:
+ resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- npm-check-updates@16.14.18:
- resolution: {integrity: sha512-9iaRe9ohx9ykdbLjPRIYcq1A0RkrPYUx9HmQK1JIXhfxtJCNE/+497H9Z4PGH6GWRALbz5KF+1iZoySK2uSEpQ==}
+ npm-check-updates@16.14.20:
+ resolution: {integrity: sha512-sYbIhun4DrjO7NFOTdvs11nCar0etEhZTsEjL47eM0TuiGMhmYughRCxG2SpGRmGAQ7AkwN7bw2lWzoE7q6yOQ==}
engines: {node: '>=14.14'}
hasBin: true
@@ -12606,11 +12784,11 @@ packages:
nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- nwsapi@2.2.7:
- resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
+ nwsapi@2.2.13:
+ resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
- nypm@0.3.8:
- resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
+ nypm@0.3.12:
+ resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -12630,8 +12808,9 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.13.1:
- resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ object-inspect@1.13.2:
+ resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ engines: {node: '>= 0.4'}
object-is@1.1.6:
resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
@@ -12665,10 +12844,6 @@ packages:
resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
engines: {node: '>= 0.4'}
- object.hasown@1.1.4:
- resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
- engines: {node: '>= 0.4'}
-
object.map@1.0.1:
resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==}
engines: {node: '>=0.10.0'}
@@ -12681,8 +12856,8 @@ packages:
resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
- ohash@1.1.3:
- resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
+ ohash@1.1.4:
+ resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
@@ -12707,8 +12882,11 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
- oo-ascii-tree@1.97.0:
- resolution: {integrity: sha512-LVwQ1J6icSJ2buccnLCWdDtxxTwB0HXoB7PLPap4u90T9pAs2HqE35DpV6nV/6O1aVEO4OzwDeE2gLCUCkoGWQ==}
+ oniguruma-to-js@0.4.3:
+ resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==}
+
+ oo-ascii-tree@1.104.0:
+ resolution: {integrity: sha512-2cScXtwxt5WVIi3+vdkbKoHSeRepRcibnFhdV2ojGxVvj1KU0m0EHfBCsal6XEg1vBkMgTIxnxVd+E/l/Fam3w==}
engines: {node: '>= 14.17.0'}
open@8.4.2:
@@ -12723,8 +12901,8 @@ packages:
resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
engines: {node: '>= 0.8.0'}
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
ora@5.4.1:
@@ -12735,8 +12913,8 @@ packages:
resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- ordered-binary@1.5.1:
- resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==}
+ ordered-binary@1.5.3:
+ resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==}
os-homedir@1.0.2:
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
@@ -12804,6 +12982,9 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
package-json@8.1.1:
resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
engines: {node: '>=14.16'}
@@ -12838,9 +13019,9 @@ packages:
resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
engines: {node: '>=0.8'}
- parse-github-url@1.0.2:
- resolution: {integrity: sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==}
- engines: {node: '>=0.10.0'}
+ parse-github-url@1.0.3:
+ resolution: {integrity: sha512-tfalY5/4SqGaV/GIGzWyHnFjlpTPTNpENR9Ea2lLldSJ8EWXMsvacWucqY3m3I4YPtas15IxTLQVQ5NSYXPrww==}
+ engines: {node: '>= 0.10'}
hasBin: true
parse-json@4.0.0:
@@ -12864,6 +13045,9 @@ packages:
parse5@7.2.0:
resolution: {integrity: sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==}
+ parse5@7.2.1:
+ resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -12920,12 +13104,12 @@ packages:
resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
engines: {node: '>=0.10.0'}
- path-scurry@1.10.2:
- resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
- engines: {node: '>=16 || 14 >=14.17'}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-to-regexp@0.1.10:
+ resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
@@ -12944,16 +13128,17 @@ packages:
pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pidtree@0.3.1:
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
engines: {node: '>=0.10'}
@@ -12992,6 +13177,9 @@ packages:
resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
engines: {node: '>=10'}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
+
plop@3.1.1:
resolution: {integrity: sha512-NuctKmuNUACXBQn25bBr5oj/75nHxdKGwjA/+b7cVoj1sp+gTVqcc8eAr4QcNJgMPsZWRJBN2kMkgmsqbqV9gg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -13045,8 +13233,8 @@ packages:
ts-node:
optional: true
- postcss-nested@6.0.1:
- resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ postcss-nested@6.2.0:
+ resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
@@ -13055,8 +13243,8 @@ packages:
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-value-parser@4.2.0:
@@ -13066,8 +13254,8 @@ packages:
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
posthtml-parser@0.10.2:
@@ -13091,8 +13279,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- preferred-pm@3.1.3:
- resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==}
+ preferred-pm@3.1.4:
+ resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==}
engines: {node: '>=10'}
prelude-ls@1.1.2:
@@ -13180,8 +13368,8 @@ packages:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
engines: {node: '>=10'}
- prompts-ncu@3.0.0:
- resolution: {integrity: sha512-qyz9UxZ5MlPKWVhWrCmSZ1ahm2GVYdjLb8og2sg0IPth1KRuhcggHGuijz0e41dkx35p1t1q3GRISGH7QGALFA==}
+ prompts-ncu@3.0.1:
+ resolution: {integrity: sha512-2OjeOtQciLYeNPIXCLDxw2CdwlpnTcxKLtc/5iDJ6usMiOzj77FcLjGwx2qQ3+VerLsilzCnGntDeYBp06OZsQ==}
engines: {node: '>= 14'}
prompts@2.4.2:
@@ -13200,8 +13388,8 @@ packages:
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- protobufjs@7.2.6:
- resolution: {integrity: sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw==}
+ protobufjs@7.4.0:
+ resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==}
engines: {node: '>=12.0.0'}
proxy-addr@2.0.7:
@@ -13223,8 +13411,8 @@ packages:
pump@2.0.1:
resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
- pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ pump@3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
pumpify@1.5.1:
resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
@@ -13244,12 +13432,8 @@ packages:
pure-rand@6.1.0:
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
-
- qs@6.12.1:
- resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
querystring@0.2.0:
@@ -13318,12 +13502,12 @@ packages:
peerDependencies:
typescript: '>= 4.3.x'
- react-docgen@7.0.3:
- resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
+ react-docgen@7.1.0:
+ resolution: {integrity: sha512-APPU8HB2uZnpl6Vt/+0AFoVYgSRtfiP6FLrZgPPTDmqSb2R4qZRbgd0A3VzIFxDt5e+Fozjx79WjLWnF69DK8g==}
engines: {node: '>=16.14.0'}
- react-dom@18.2.0:
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ react-dom@18.3.1:
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
react: ^18.2.0
@@ -13336,9 +13520,9 @@ packages:
react-error-overlay@6.0.9:
resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==}
- react-hook-form@7.51.3:
- resolution: {integrity: sha512-cvJ/wbHdhYx8aviSWh28w9ImjmVsb5Y05n1+FW786vEZQJV5STNM0pW6ujS+oiBecb0ARBxJFyAnXj9+GHXACQ==}
- engines: {node: '>=12.22.0'}
+ react-hook-form@7.53.1:
+ resolution: {integrity: sha512-6aiQeBda4zjcuaugWvim9WsGqisoUk+etmFEsSUMm451/Ic8L/UAb7sRtMj3V+Hdzm6mMjU1VhiSzYUZeBm0Vg==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
@@ -13356,8 +13540,8 @@ packages:
react-is@18.1.0:
resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
- react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
react-live@2.4.1:
resolution: {integrity: sha512-r+32f7oV/kBs3QZBRvaT+9vOkQW47UZrDpgwUe5FiIMOl7sdo5pmISgb7Zpj5PGHgY6XQaiXs3FEh+IWw3KbRg==}
@@ -13371,11 +13555,11 @@ packages:
peerDependencies:
react: ^18.2.0
- react-multi-ref@1.0.1:
- resolution: {integrity: sha512-zgQKmduv95vtXIkze6583pRW7Y+mNj7R0bYgxIRWOrsEfxBQaK+MZ6yjTiZ/qcFV4bYGM74nE9isb+YRBNIw2g==}
+ react-multi-ref@1.0.2:
+ resolution: {integrity: sha512-6oS5yzrZ4UrdMHbF6QAnnaoIe9h8R+Xv4m8uJWVK8/Q4RCc6RTT0XJ/LZ7llVgFcVbnDHeUAcVIhtRgFyzjJpA==}
- react-refresh@0.14.0:
- resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
+ react-refresh@0.14.2:
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
react-refresh@0.9.0:
@@ -13412,8 +13596,8 @@ packages:
'@types/react':
optional: true
- react-remove-scroll@2.5.9:
- resolution: {integrity: sha512-bvHCLBrFfM2OgcrpPY2YW84sPdS2o2HKWJUf1xGyGLnSoEnOTOBpahIarjRuYtN0ryahCeP242yf+5TrBX/pZA==}
+ react-remove-scroll@2.6.0:
+ resolution: {integrity: sha512-I2U4JVEsQenxDAKaVa3VZ/JeJZe0/2DxPWL8Tj8yLKctQJQiZM52pn/GWFpSp8dftjM3pSAHVJZscAnC/y+ySQ==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -13438,19 +13622,19 @@ packages:
'@types/react':
optional: true
- react-textarea-autosize@8.5.3:
- resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
+ react-textarea-autosize@8.5.4:
+ resolution: {integrity: sha512-eSSjVtRLcLfFwFcariT77t9hcbVJHQV76b51QjQGarQIHml2+gM2lms0n3XrhnDmgK5B+/Z7TmQk5OHNzqYm/A==}
engines: {node: '>=10'}
peerDependencies:
react: ^18.2.0
- react-wrap-balancer@1.1.0:
- resolution: {integrity: sha512-EhF3jOZm5Fjx+Cx41e423qOv2c2aOvXAtym2OHqrGeMUnwERIyNsRBgnfT3plB170JmuYvts8K2KSPEIerKr5A==}
+ react-wrap-balancer@1.1.1:
+ resolution: {integrity: sha512-AB+l7FPRWl6uZ28VcJ8skkwLn2+UC62bjiw8tQUrZPlEWDVnR9MG0lghyn7EyxuJSsFEpht4G+yh2WikEqQ/5Q==}
peerDependencies:
react: ^18.2.0
- react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -13492,8 +13676,8 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- recast@0.23.6:
- resolution: {integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==}
+ recast@0.23.9:
+ resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
engines: {node: '>= 4'}
rechoir@0.6.2:
@@ -13504,6 +13688,18 @@ packages:
resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
engines: {node: '>= 10.13.0'}
+ recma-build-jsx@1.0.0:
+ resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
+
+ recma-jsx@1.0.0:
+ resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
+
+ recma-parse@1.0.0:
+ resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
+
+ recma-stringify@1.0.0:
+ resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
+
redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
@@ -13515,8 +13711,8 @@ packages:
refractor@3.3.1:
resolution: {integrity: sha512-vaN6R56kLMuBszHSWlwTpcZ8KTMG6aUCok4GrxYDT20UIOXxOc5o6oDc8tNTzSlH3m2sI+Eu9Jo2kVdDcUTWYw==}
- regenerate-unicode-properties@10.1.1:
- resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
regenerate-unicode-properties@9.0.0:
@@ -13539,8 +13735,11 @@ packages:
resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
engines: {node: '>=0.10.0'}
- regexp.prototype.flags@1.5.2:
- resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ regex@4.4.0:
+ resolution: {integrity: sha512-uCUSuobNVeqUupowbdZub6ggI5/JZkYyJdDogddJr60L764oxC2pMZov1fQ3wM9bdyzUILDG+Sqx6NAKAz9rKQ==}
+
+ regexp.prototype.flags@1.5.3:
+ resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
engines: {node: '>= 0.4'}
regexpp@2.0.1:
@@ -13555,8 +13754,8 @@ packages:
resolution: {integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==}
engines: {node: '>=4'}
- regexpu-core@5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ regexpu-core@6.1.1:
+ resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
engines: {node: '>=4'}
registry-auth-token@5.0.2:
@@ -13570,12 +13769,15 @@ packages:
regjsgen@0.5.2:
resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
- regjsparser@0.7.0:
- resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.11.2:
+ resolution: {integrity: sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==}
hasBin: true
- regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ regjsparser@0.7.0:
+ resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==}
hasBin: true
rehype-parse@9.0.1:
@@ -13587,6 +13789,9 @@ packages:
peerDependencies:
shiki: ^1.3.0
+ rehype-recma@1.0.0:
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
+
rehype-slug@6.0.0:
resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
@@ -13611,8 +13816,8 @@ packages:
remark-mdx-frontmatter@4.0.0:
resolution: {integrity: sha512-PZzAiDGOEfv1Ua7exQ8S5kKxkD8CDaSb4nM+1Mprs6u8dyvQifakh+kCj6NovfGXW+bTvrhjaR3srzjS2qJHKg==}
- remark-mdx@3.0.1:
- resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==}
+ remark-mdx@3.1.0:
+ resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
@@ -13747,8 +13952,8 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rfdc@1.3.1:
- resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
@@ -13765,13 +13970,12 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.5:
- resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==}
- engines: {node: '>=14'}
+ rimraf@5.0.10:
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
- rollup@3.29.4:
- resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
+ rollup@3.29.5:
+ resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
@@ -13820,8 +14024,8 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
+ scheduler@0.23.2:
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
@@ -13868,13 +14072,13 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
sentence-case@3.0.4:
@@ -13883,8 +14087,8 @@ packages:
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
server-only@0.0.1:
@@ -13944,8 +14148,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- shiki@0.14.7:
- resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==}
+ shiki@1.22.2:
+ resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==}
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
@@ -14043,8 +14247,8 @@ packages:
resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-resolve@0.5.3:
@@ -14087,8 +14291,8 @@ packages:
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- spawn-command@0.0.2-1:
- resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==}
+ spawn-command@0.0.2:
+ resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
spawn-please@2.0.2:
resolution: {integrity: sha512-KM8coezO6ISQ89c1BzyWNtcn2V2kAVtwIXd3cN/V5a0xPYc1F/vydrRc01wsKFEQ/p+V1a4sw4z2yMITIXrgGw==}
@@ -14106,8 +14310,8 @@ packages:
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.17:
- resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==}
+ spdx-license-ids@3.0.20:
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
@@ -14126,8 +14330,8 @@ packages:
resolution: {integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==}
engines: {node: '>=12'}
- ssri@10.0.5:
- resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==}
+ ssri@10.0.6:
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ssri@9.0.1:
@@ -14171,8 +14375,8 @@ packages:
react-dom:
optional: true
- storybook@7.6.17:
- resolution: {integrity: sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==}
+ storybook@7.6.20:
+ resolution: {integrity: sha512-Wt04pPTO71pwmRmsgkyZhNo4Bvdb/1pBAMsIFb9nQLykEdzzpXjvingxFFvdOG4nIowzwgxD+CLlyRqVJqnATw==}
hasBin: true
stream-shift@1.0.3:
@@ -14185,8 +14389,8 @@ packages:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
- streamx@2.16.1:
- resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
+ streamx@2.20.1:
+ resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==}
strict-event-emitter@0.4.6:
resolution: {integrity: sha512-12KWeb+wixJohmnwNFerbyiBrAlq5qJLwIt38etRtKtmmHyDSoGlIqFE9wx+4IwG0aDjI7GV8tc8ZccjWZZtTg==}
@@ -14222,6 +14426,10 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
+
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
engines: {node: '>= 0.4'}
@@ -14230,6 +14438,9 @@ packages:
resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==}
engines: {node: '>= 0.4'}
+ string.prototype.repeat@1.0.0:
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
+
string.prototype.trim@1.2.9:
resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
@@ -14398,8 +14609,8 @@ packages:
peerDependencies:
tailwindcss: '*'
- tailwindcss@3.4.3:
- resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
+ tailwindcss@3.4.14:
+ resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -14414,8 +14625,8 @@ packages:
tar-fs@2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
- tar-fs@3.0.5:
- resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
+ tar-fs@3.0.6:
+ resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==}
tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
@@ -14463,8 +14674,8 @@ packages:
uglify-js:
optional: true
- terser@5.30.3:
- resolution: {integrity: sha512-STdUgOUx8rLbMGO9IOwHLpCqolkDITFFQSMYYwKE1N2lY6MVSaeoi10z/EhWxRc6ybqoVmKSkhKYH/XUpl7vSA==}
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
engines: {node: '>=10'}
hasBin: true
@@ -14472,6 +14683,9 @@ packages:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
+ text-decoder@1.2.1:
+ resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==}
+
text-extensions@1.9.0:
resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
engines: {node: '>=0.10'}
@@ -14520,10 +14734,6 @@ packages:
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
@@ -14540,8 +14750,8 @@ packages:
resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
engines: {node: '>=0.10.0'}
- tocbot@4.25.0:
- resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==}
+ tocbot@4.31.0:
+ resolution: {integrity: sha512-Zd9tt6EQn2bvLSHIcug/Z1Sukyn/XJ62dMK9SjIbtHSDkI+Du40CmBvds6BedzXZe1sS1iPGl4Wup/k4cJkVhQ==}
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
@@ -14561,8 +14771,8 @@ packages:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
- tough-cookie@4.1.3:
- resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
+ tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
tr46@0.0.3:
@@ -14616,8 +14826,8 @@ packages:
'@swc/wasm':
optional: true
- ts-pattern@5.4.0:
- resolution: {integrity: sha512-hgfOMfjlrARCnYtGD/xEAkFHDXuSyuqjzFSltyQCbN689uNvoQL20TVN2XFcLMjfNuwSsQGU+xtH6MrjIwhwUg==}
+ ts-pattern@5.5.0:
+ resolution: {integrity: sha512-jqbIpTsa/KKTJYWgPNsFNbLVpwCgzXfFJ1ukNn4I8hMwyQzHMJnk/BqWzggB0xpkILuKzaO/aMYhS0SkaJyKXg==}
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
@@ -14625,8 +14835,8 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tsup@6.4.0:
resolution: {integrity: sha512-4OlbqIK/SF+cJp0mMqPM2pKULvgj/1S2Gm3I1aFoFGIryUOyIqPZBoqKkqVQT6uFtWJ5AHftIv0riXKfHox1zQ==}
@@ -14759,8 +14969,8 @@ packages:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- type@2.7.2:
- resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
+ type@2.7.3:
+ resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
typed-array-buffer@1.0.2:
resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
@@ -14794,16 +15004,16 @@ packages:
engines: {node: '>=4.2.0'}
hasBin: true
- typescript@5.6.2:
- resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.5.3:
- resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ ufo@1.5.4:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
- uglify-js@3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -14821,16 +15031,16 @@ packages:
resolution: {integrity: sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==}
engines: {node: '>=0.10.0'}
- unicode-canonical-property-names-ecmascript@2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ unicode-canonical-property-names-ecmascript@2.0.1:
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ unicode-match-property-value-ecmascript@2.2.0:
+ resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
@@ -14926,9 +15136,14 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin@1.10.1:
- resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
+ unplugin@1.15.0:
+ resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==}
engines: {node: '>=14.0.0'}
+ peerDependencies:
+ webpack-sources: ^3
+ peerDependenciesMeta:
+ webpack-sources:
+ optional: true
unset-value@1.0.0:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
@@ -14938,8 +15153,8 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- update-browserslist-db@1.0.13:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -15013,8 +15228,8 @@ packages:
'@types/react':
optional: true
- use-sync-external-store@1.2.0:
- resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
+ use-sync-external-store@1.2.2:
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
peerDependencies:
react: ^18.2.0
@@ -15061,8 +15276,8 @@ packages:
v8-compile-cache@2.4.0:
resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
- v8-to-istanbul@9.2.0:
- resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
+ v8-to-istanbul@9.3.0:
+ resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
engines: {node: '>=10.12.0'}
v8flags@4.0.1:
@@ -15072,8 +15287,8 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- validate-npm-package-name@5.0.0:
- resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
+ validate-npm-package-name@5.0.1:
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
vary@1.1.2:
@@ -15095,8 +15310,8 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite@4.5.3:
- resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==}
+ vite@4.5.5:
+ resolution: {integrity: sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -15126,12 +15341,6 @@ packages:
vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- vscode-oniguruma@1.7.0:
- resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
-
- vscode-textmate@8.0.0:
- resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
-
vue-eslint-parser@2.0.3:
resolution: {integrity: sha512-ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw==}
engines: {node: '>=4'}
@@ -15158,8 +15367,8 @@ packages:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
- watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
@@ -15210,11 +15419,11 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- webpack-virtual-modules@0.6.1:
- resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
+ webpack-virtual-modules@0.6.2:
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.91.0:
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ webpack@5.96.1:
+ resolution: {integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -15244,8 +15453,8 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-builtin-type@1.1.3:
- resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
@@ -15255,8 +15464,8 @@ packages:
which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- which-pm@2.0.0:
- resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==}
+ which-pm@2.2.0:
+ resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==}
engines: {node: '>=8.15'}
which-typed-array@1.1.15:
@@ -15327,8 +15536,8 @@ packages:
resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==}
engines: {node: '>=4'}
- ws@6.2.2:
- resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ ws@6.2.3:
+ resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -15338,8 +15547,8 @@ packages:
utf-8-validate:
optional: true
- ws@7.5.9:
- resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
+ ws@7.5.10:
+ resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -15350,8 +15559,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -15404,8 +15613,8 @@ packages:
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
- yaml@2.4.1:
- resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
+ yaml@2.6.0:
+ resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
engines: {node: '>= 14'}
hasBin: true
@@ -15446,18 +15655,18 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
zod@3.21.4:
resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
- zod@3.22.4:
- resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
+ zod@3.23.8:
+ resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- zustand@4.5.2:
- resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==}
+ zustand@4.5.5:
+ resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==}
engines: {node: '>=12.7.0'}
peerDependencies:
'@types/react': '>=16.8'
@@ -15476,85 +15685,83 @@ packages:
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
'@adobe/css-tools@4.4.0': {}
- '@algolia/cache-browser-local-storage@4.23.3':
+ '@algolia/cache-browser-local-storage@4.24.0':
dependencies:
- '@algolia/cache-common': 4.23.3
+ '@algolia/cache-common': 4.24.0
- '@algolia/cache-common@4.23.3': {}
+ '@algolia/cache-common@4.24.0': {}
- '@algolia/cache-in-memory@4.23.3':
+ '@algolia/cache-in-memory@4.24.0':
dependencies:
- '@algolia/cache-common': 4.23.3
+ '@algolia/cache-common': 4.24.0
- '@algolia/client-account@4.23.3':
+ '@algolia/client-account@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-analytics@4.23.3':
+ '@algolia/client-analytics@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-common@4.23.3':
+ '@algolia/client-common@4.24.0':
dependencies:
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-personalization@4.23.3':
+ '@algolia/client-personalization@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-search@4.23.3':
+ '@algolia/client-search@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/logger-common@4.23.3': {}
+ '@algolia/logger-common@4.24.0': {}
- '@algolia/logger-console@4.23.3':
+ '@algolia/logger-console@4.24.0':
dependencies:
- '@algolia/logger-common': 4.23.3
+ '@algolia/logger-common': 4.24.0
- '@algolia/recommend@4.23.3':
+ '@algolia/recommend@4.24.0':
dependencies:
- '@algolia/cache-browser-local-storage': 4.23.3
- '@algolia/cache-common': 4.23.3
- '@algolia/cache-in-memory': 4.23.3
- '@algolia/client-common': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/logger-common': 4.23.3
- '@algolia/logger-console': 4.23.3
- '@algolia/requester-browser-xhr': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/requester-node-http': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/requester-browser-xhr@4.23.3':
+ '@algolia/requester-browser-xhr@4.24.0':
dependencies:
- '@algolia/requester-common': 4.23.3
+ '@algolia/requester-common': 4.24.0
- '@algolia/requester-common@4.23.3': {}
+ '@algolia/requester-common@4.24.0': {}
- '@algolia/requester-node-http@4.23.3':
+ '@algolia/requester-node-http@4.24.0':
dependencies:
- '@algolia/requester-common': 4.23.3
+ '@algolia/requester-common': 4.24.0
- '@algolia/transporter@4.23.3':
+ '@algolia/transporter@4.24.0':
dependencies:
- '@algolia/cache-common': 4.23.3
- '@algolia/logger-common': 4.23.3
- '@algolia/requester-common': 4.23.3
+ '@algolia/cache-common': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
'@alloc/quick-lru@5.2.0': {}
@@ -15567,11 +15774,11 @@ snapshots:
dependencies:
default-browser-id: 3.0.0
- '@babel/cli@7.24.1(@babel/core@7.24.4)':
+ '@babel/cli@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@jridgewell/trace-mapping': 0.3.25
- commander: 4.1.1
+ commander: 6.2.1
convert-source-map: 2.0.0
fs-readdir-recursive: 1.1.0
glob: 7.2.3
@@ -15583,878 +15790,915 @@ snapshots:
'@babel/code-frame@7.12.11':
dependencies:
- '@babel/highlight': 7.24.2
+ '@babel/highlight': 7.25.9
- '@babel/code-frame@7.24.2':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.24.2
- picocolors: 1.0.0
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.24.4': {}
+ '@babel/compat-data@7.26.2': {}
- '@babel/core@7.24.4':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helpers': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.4
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.24.4':
+ '@babel/generator@7.26.2':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.22.5':
+ '@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.26.0
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-compilation-targets@7.23.6':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
+ '@babel/compat-data': 7.26.2
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)':
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.1.1
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.4)':
+ '@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/traverse': 7.24.1
- debug: 4.3.4
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.4)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- debug: 4.3.4
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-environment-visitor@7.22.20': {}
-
- '@babel/helper-function-name@7.23.0':
- dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
-
- '@babel/helper-hoist-variables@7.22.5':
- dependencies:
- '@babel/types': 7.24.0
-
- '@babel/helper-member-expression-to-functions@7.23.0':
+ '@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-imports@7.24.3':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-optimise-call-expression@7.22.5':
+ '@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.24.0
-
- '@babel/helper-plugin-utils@7.24.0': {}
+ '@babel/types': 7.26.0
- '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.22.20
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-simple-access@7.22.5':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ '@babel/helper-simple-access@7.25.9':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-split-export-declaration@7.22.6':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/types': 7.24.0
-
- '@babel/helper-string-parser@7.24.1': {}
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-validator-identifier@7.22.20': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-option@7.23.5': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-wrap-function@7.22.20':
- dependencies:
- '@babel/helper-function-name': 7.23.0
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helpers@7.24.4':
+ '@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/highlight@7.24.2':
+ '@babel/helpers@7.26.0':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
+ '@babel/highlight@7.25.9':
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.25.9
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.0
+ picocolors: 1.1.1
- '@babel/parser@7.24.4':
+ '@babel/parser@7.26.2':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.26.0
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.4)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.4)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/template': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
-
- '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4)':
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-simple-access': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.4)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
-
- '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
-
- '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/preset-env@7.24.4(@babel/core@7.24.4)':
- dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.4)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4)
- core-js-compat: 3.36.1
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.1(@babel/core@7.24.4)':
+ '@babel/preset-flow@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.0
esutils: 2.0.3
- '@babel/preset-react@7.24.1(@babel/core@7.24.4)':
+ '@babel/preset-react@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.4)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/preset-typescript@7.24.1(@babel/core@7.24.4)':
+ '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/register@7.23.7(@babel/core@7.24.4)':
+ '@babel/register@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
pirates: 4.0.6
source-map-support: 0.5.21
- '@babel/regjsgen@0.8.0': {}
-
- '@babel/runtime@7.24.4':
+ '@babel/runtime@7.26.0':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.24.0':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- '@babel/traverse@7.24.1':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
- debug: 4.3.4
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.0':
+ '@babel/types@7.26.0':
dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
'@base2/pretty-print-object@1.0.1': {}
@@ -16462,7 +16706,7 @@ snapshots:
'@changesets/apply-release-plan@6.1.4':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/config': 2.3.1
'@changesets/get-version-range-type': 0.3.2
'@changesets/git': 2.0.0
@@ -16474,16 +16718,16 @@ snapshots:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.6.3
'@changesets/assemble-release-plan@5.2.4':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.6
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
- semver: 7.6.0
+ semver: 7.6.3
'@changesets/changelog-git@0.1.14':
dependencies:
@@ -16499,7 +16743,7 @@ snapshots:
'@changesets/cli@2.24.1':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/apply-release-plan': 6.1.4
'@changesets/assemble-release-plan': 5.2.4
'@changesets/changelog-git': 0.1.14
@@ -16526,7 +16770,7 @@ snapshots:
meow: 6.1.1
outdent: 0.5.0
p-limit: 2.3.0
- preferred-pm: 3.1.3
+ preferred-pm: 3.1.4
resolve-from: 5.0.0
semver: 5.7.2
spawndamnit: 2.0.0
@@ -16541,7 +16785,7 @@ snapshots:
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
'@changesets/errors@0.1.4':
dependencies:
@@ -16553,7 +16797,7 @@ snapshots:
'@manypkg/get-packages': 1.1.3
chalk: 2.4.2
fs-extra: 7.0.1
- semver: 7.6.0
+ semver: 7.6.3
'@changesets/get-github-info@0.5.2(encoding@0.1.13)':
dependencies:
@@ -16564,7 +16808,7 @@ snapshots:
'@changesets/get-release-plan@3.0.12':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/assemble-release-plan': 5.2.4
'@changesets/config': 2.3.1
'@changesets/pre': 1.0.14
@@ -16576,7 +16820,7 @@ snapshots:
'@changesets/git@1.5.0':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -16585,12 +16829,12 @@ snapshots:
'@changesets/git@2.0.0':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
spawndamnit: 2.0.0
'@changesets/logger@0.0.5':
@@ -16604,7 +16848,7 @@ snapshots:
'@changesets/pre@1.0.14':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -16612,7 +16856,7 @@ snapshots:
'@changesets/read@0.5.9':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/git': 2.0.0
'@changesets/logger': 0.0.5
'@changesets/parse': 0.3.16
@@ -16629,76 +16873,76 @@ snapshots:
'@changesets/write@0.1.9':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/types': 5.1.0
fs-extra: 7.0.1
human-id: 1.0.2
prettier: 1.19.1
- '@codemirror/autocomplete@6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)':
+ '@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)':
dependencies:
- '@codemirror/language': 6.10.1
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
- '@lezer/common': 1.2.1
+ '@codemirror/view': 6.34.1
+ '@lezer/common': 1.2.3
- '@codemirror/commands@6.3.3':
+ '@codemirror/commands@6.7.1':
dependencies:
- '@codemirror/language': 6.10.1
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
- '@lezer/common': 1.2.1
+ '@codemirror/view': 6.34.1
+ '@lezer/common': 1.2.3
- '@codemirror/lang-css@6.2.1(@codemirror/view@6.26.3)':
+ '@codemirror/lang-css@6.3.0(@codemirror/view@6.34.1)':
dependencies:
- '@codemirror/autocomplete': 6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
- '@codemirror/language': 6.10.1
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
- '@lezer/common': 1.2.1
- '@lezer/css': 1.1.8
+ '@lezer/common': 1.2.3
+ '@lezer/css': 1.1.9
transitivePeerDependencies:
- '@codemirror/view'
'@codemirror/lang-html@6.4.9':
dependencies:
- '@codemirror/autocomplete': 6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
- '@codemirror/lang-css': 6.2.1(@codemirror/view@6.26.3)
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.34.1)
'@codemirror/lang-javascript': 6.2.2
- '@codemirror/language': 6.10.1
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
- '@lezer/common': 1.2.1
- '@lezer/css': 1.1.8
- '@lezer/html': 1.3.9
+ '@codemirror/view': 6.34.1
+ '@lezer/common': 1.2.3
+ '@lezer/css': 1.1.9
+ '@lezer/html': 1.3.10
'@codemirror/lang-javascript@6.2.2':
dependencies:
- '@codemirror/autocomplete': 6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
- '@codemirror/language': 6.10.1
- '@codemirror/lint': 6.5.0
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)
+ '@codemirror/language': 6.10.3
+ '@codemirror/lint': 6.8.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
- '@lezer/common': 1.2.1
- '@lezer/javascript': 1.4.14
+ '@codemirror/view': 6.34.1
+ '@lezer/common': 1.2.3
+ '@lezer/javascript': 1.4.19
- '@codemirror/language@6.10.1':
+ '@codemirror/language@6.10.3':
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
- '@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.0
+ '@codemirror/view': 6.34.1
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
style-mod: 4.1.2
- '@codemirror/lint@6.5.0':
+ '@codemirror/lint@6.8.2':
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
+ '@codemirror/view': 6.34.1
crelt: 1.0.6
'@codemirror/state@6.4.1': {}
- '@codemirror/view@6.26.3':
+ '@codemirror/view@6.34.1':
dependencies:
'@codemirror/state': 6.4.1
style-mod: 4.1.2
@@ -16709,36 +16953,37 @@ snapshots:
outvariant: 1.4.0
strict-event-emitter: 0.4.6
- '@codesandbox/sandpack-client@2.13.8':
+ '@codesandbox/sandpack-client@2.19.8':
dependencies:
'@codesandbox/nodebox': 0.1.8
buffer: 6.0.3
dequal: 2.0.3
+ mime-db: 1.53.0
outvariant: 1.4.0
static-browser-server: 1.0.3
- '@codesandbox/sandpack-react@2.13.8(@lezer/common@1.2.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@codesandbox/sandpack-react@2.19.9(@lezer/common@1.2.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@codemirror/autocomplete': 6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
- '@codemirror/commands': 6.3.3
- '@codemirror/lang-css': 6.2.1(@codemirror/view@6.26.3)
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)
+ '@codemirror/commands': 6.7.1
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.34.1)
'@codemirror/lang-html': 6.4.9
'@codemirror/lang-javascript': 6.2.2
- '@codemirror/language': 6.10.1
+ '@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.26.3
- '@codesandbox/sandpack-client': 2.13.8
- '@lezer/highlight': 1.2.0
- '@react-hook/intersection-observer': 3.1.1(react@18.2.0)
+ '@codemirror/view': 6.34.1
+ '@codesandbox/sandpack-client': 2.19.8
+ '@lezer/highlight': 1.2.1
+ '@react-hook/intersection-observer': 3.1.2(react@18.3.1)
'@stitches/core': 1.2.8
- anser: 2.1.1
+ anser: 2.3.0
clean-set: 1.1.2
dequal: 2.0.3
escape-carriage: 1.3.1
lz-string: 1.5.0
- react: 18.2.0
+ react: 18.3.1
react-devtools-inline: 4.4.0
- react-dom: 18.2.0(react@18.2.0)
+ react-dom: 18.3.1(react@18.3.1)
react-is: 17.0.2
transitivePeerDependencies:
- '@lezer/common'
@@ -16746,11 +16991,11 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@17.8.1(@swc/core@1.4.13(@swc/helpers@0.5.9))':
+ '@commitlint/cli@17.8.1(@swc/core@1.8.0(@swc/helpers@0.5.13))':
dependencies:
'@commitlint/format': 17.8.1
'@commitlint/lint': 17.8.1
- '@commitlint/load': 17.8.1(@swc/core@1.4.13(@swc/helpers@0.5.9))
+ '@commitlint/load': 17.8.1(@swc/core@1.8.0(@swc/helpers@0.5.13))
'@commitlint/read': 17.8.1
'@commitlint/types': 17.8.1
execa: 5.1.1
@@ -16769,7 +17014,7 @@ snapshots:
'@commitlint/config-validator@17.8.1':
dependencies:
'@commitlint/types': 17.8.1
- ajv: 8.12.0
+ ajv: 8.17.1
'@commitlint/ensure@17.8.1':
dependencies:
@@ -16799,7 +17044,7 @@ snapshots:
'@commitlint/rules': 17.8.1
'@commitlint/types': 17.8.1
- '@commitlint/load@17.8.1(@swc/core@1.4.13(@swc/helpers@0.5.9))':
+ '@commitlint/load@17.8.1(@swc/core@1.8.0(@swc/helpers@0.5.13))':
dependencies:
'@commitlint/config-validator': 17.8.1
'@commitlint/execute-rule': 17.8.1
@@ -16808,12 +17053,12 @@ snapshots:
'@types/node': 20.5.1
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@4.9.5)
- cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@4.9.5))(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5)
+ cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@4.9.5))(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@15.14.9)(typescript@4.9.5)
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- '@swc/core'
@@ -16862,34 +17107,36 @@ snapshots:
dependencies:
chalk: 4.1.2
- '@contentlayer2/cli@0.5.1(esbuild@0.20.2)':
+ '@contentlayer2/cli@0.5.3(acorn@8.14.0)(esbuild@0.18.20)':
dependencies:
- '@contentlayer2/core': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/utils': 0.5.1
+ '@contentlayer2/core': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/utils': 0.5.3
clipanion: 3.2.1(typanion@3.14.0)
typanion: 3.14.0
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- esbuild
- markdown-wasm
- supports-color
- '@contentlayer2/client@0.5.1(esbuild@0.20.2)':
+ '@contentlayer2/client@0.5.3(acorn@8.14.0)(esbuild@0.18.20)':
dependencies:
- '@contentlayer2/core': 0.5.1(esbuild@0.20.2)
+ '@contentlayer2/core': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- esbuild
- markdown-wasm
- supports-color
- '@contentlayer2/core@0.5.1(esbuild@0.20.2)':
+ '@contentlayer2/core@0.5.3(acorn@8.14.0)(esbuild@0.18.20)':
dependencies:
- '@contentlayer2/utils': 0.5.1
+ '@contentlayer2/utils': 0.5.3
camel-case: 4.1.2
- comment-json: 4.2.3
+ comment-json: 4.2.5
gray-matter: 4.0.3
- mdx-bundler: 10.0.3(esbuild@0.20.2)
+ mdx-bundler: 10.0.3(acorn@8.14.0)(esbuild@0.18.20)
rehype-stringify: 10.0.1
remark-frontmatter: 5.0.0
remark-parse: 11.0.0
@@ -16898,60 +17145,63 @@ snapshots:
type-fest: 4.26.1
unified: 11.0.5
optionalDependencies:
- esbuild: 0.20.2
+ esbuild: 0.18.20
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- supports-color
- '@contentlayer2/source-files@0.5.1(esbuild@0.20.2)':
+ '@contentlayer2/source-files@0.5.3(acorn@8.14.0)(esbuild@0.18.20)':
dependencies:
- '@contentlayer2/core': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/utils': 0.5.1
+ '@contentlayer2/core': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/utils': 0.5.3
chokidar: 3.6.0
fast-glob: 3.3.2
gray-matter: 4.0.3
imagescript: 1.3.0
- micromatch: 4.0.5
- ts-pattern: 5.4.0
+ micromatch: 4.0.8
+ ts-pattern: 5.5.0
unified: 11.0.5
- yaml: 2.4.1
- zod: 3.22.4
+ yaml: 2.6.0
+ zod: 3.23.8
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- esbuild
- markdown-wasm
- supports-color
- '@contentlayer2/source-remote-files@0.5.1(esbuild@0.20.2)':
+ '@contentlayer2/source-remote-files@0.5.3(acorn@8.14.0)(esbuild@0.18.20)':
dependencies:
- '@contentlayer2/core': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/source-files': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/utils': 0.5.1
+ '@contentlayer2/core': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/source-files': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/utils': 0.5.3
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- esbuild
- markdown-wasm
- supports-color
- '@contentlayer2/utils@0.5.1':
+ '@contentlayer2/utils@0.5.3':
dependencies:
'@effect-ts/core': 0.60.5
- '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0))
- '@effect-ts/otel-sdk-trace-node': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-node@1.23.0(@opentelemetry/api@1.8.0))
+ '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))
+ '@effect-ts/otel-sdk-trace-node': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-node@1.27.0(@opentelemetry/api@1.9.0))
'@js-temporal/polyfill': 0.4.4
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/exporter-trace-otlp-grpc': 0.51.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-node': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-trace-otlp-grpc': 0.51.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-node': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
chokidar: 3.6.0
hash-wasm: 4.11.0
inflection: 3.0.0
- memfs: 4.12.0
- oo-ascii-tree: 1.97.0
- ts-pattern: 5.4.0
+ memfs: 4.14.0
+ oo-ascii-tree: 1.104.0
+ ts-pattern: 5.5.0
type-fest: 4.26.1
'@corex/deepmerge@4.0.43': {}
@@ -16962,12 +17212,12 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
- '@docusaurus/types@2.0.0-beta.3(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack-cli@3.3.12(webpack@5.91.0))':
+ '@docusaurus/types@2.0.0-beta.3(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))':
dependencies:
commander: 5.1.0
- joi: 17.12.3
+ joi: 17.13.3
querystring: 0.2.0
- webpack: 5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack-cli@3.3.12(webpack@5.91.0))
+ webpack: 5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@swc/core'
@@ -16975,9 +17225,9 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils@2.0.0-beta.3(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack-cli@3.3.12(webpack@5.91.0))':
+ '@docusaurus/utils@2.0.0-beta.3(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))':
dependencies:
- '@docusaurus/types': 2.0.0-beta.3(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack-cli@3.3.12(webpack@5.91.0))
+ '@docusaurus/types': 2.0.0-beta.3(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))
'@types/github-slugger': 1.3.0
chalk: 4.1.2
escape-string-regexp: 4.0.0
@@ -16985,7 +17235,7 @@ snapshots:
gray-matter: 4.0.3
lodash: 4.17.21
resolve-pathname: 3.0.0
- tslib: 2.6.2
+ tslib: 2.8.1
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -16996,21 +17246,21 @@ snapshots:
dependencies:
'@effect-ts/system': 0.57.5
- '@effect-ts/otel-sdk-trace-node@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-node@1.23.0(@opentelemetry/api@1.8.0))':
+ '@effect-ts/otel-sdk-trace-node@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-node@1.27.0(@opentelemetry/api@1.9.0))':
dependencies:
'@effect-ts/core': 0.60.5
- '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0))
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-node': 1.23.0(@opentelemetry/api@1.8.0)
+ '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-node': 1.27.0(@opentelemetry/api@1.9.0)
- '@effect-ts/otel@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0))':
+ '@effect-ts/otel@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))':
dependencies:
'@effect-ts/core': 0.60.5
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
'@effect-ts/system@0.57.5': {}
@@ -17022,172 +17272,103 @@ snapshots:
'@emotion/memoize@0.7.4':
optional: true
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
- '@esbuild-plugins/node-resolve@0.2.2(esbuild@0.20.2)':
+ '@esbuild-plugins/node-resolve@0.2.2(esbuild@0.18.20)':
dependencies:
'@types/resolve': 1.20.6
- debug: 4.3.4
- esbuild: 0.20.2
+ debug: 4.3.7
+ esbuild: 0.18.20
escape-string-regexp: 4.0.0
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@esbuild/aix-ppc64@0.20.2':
- optional: true
-
'@esbuild/android-arm64@0.18.20':
optional: true
- '@esbuild/android-arm64@0.20.2':
- optional: true
-
'@esbuild/android-arm@0.15.18':
optional: true
'@esbuild/android-arm@0.18.20':
optional: true
- '@esbuild/android-arm@0.20.2':
- optional: true
-
'@esbuild/android-x64@0.18.20':
optional: true
- '@esbuild/android-x64@0.20.2':
- optional: true
-
'@esbuild/darwin-arm64@0.18.20':
optional: true
- '@esbuild/darwin-arm64@0.20.2':
- optional: true
-
'@esbuild/darwin-x64@0.18.20':
optional: true
- '@esbuild/darwin-x64@0.20.2':
- optional: true
-
'@esbuild/freebsd-arm64@0.18.20':
optional: true
- '@esbuild/freebsd-arm64@0.20.2':
- optional: true
-
'@esbuild/freebsd-x64@0.18.20':
optional: true
- '@esbuild/freebsd-x64@0.20.2':
- optional: true
-
'@esbuild/linux-arm64@0.18.20':
optional: true
- '@esbuild/linux-arm64@0.20.2':
- optional: true
-
'@esbuild/linux-arm@0.18.20':
optional: true
- '@esbuild/linux-arm@0.20.2':
- optional: true
-
'@esbuild/linux-ia32@0.18.20':
optional: true
- '@esbuild/linux-ia32@0.20.2':
- optional: true
-
'@esbuild/linux-loong64@0.15.18':
optional: true
'@esbuild/linux-loong64@0.18.20':
optional: true
- '@esbuild/linux-loong64@0.20.2':
- optional: true
-
'@esbuild/linux-mips64el@0.18.20':
optional: true
- '@esbuild/linux-mips64el@0.20.2':
- optional: true
-
'@esbuild/linux-ppc64@0.18.20':
optional: true
- '@esbuild/linux-ppc64@0.20.2':
- optional: true
-
'@esbuild/linux-riscv64@0.18.20':
optional: true
- '@esbuild/linux-riscv64@0.20.2':
- optional: true
-
'@esbuild/linux-s390x@0.18.20':
optional: true
- '@esbuild/linux-s390x@0.20.2':
- optional: true
-
'@esbuild/linux-x64@0.18.20':
optional: true
- '@esbuild/linux-x64@0.20.2':
- optional: true
-
'@esbuild/netbsd-x64@0.18.20':
optional: true
- '@esbuild/netbsd-x64@0.20.2':
- optional: true
-
'@esbuild/openbsd-x64@0.18.20':
optional: true
- '@esbuild/openbsd-x64@0.20.2':
- optional: true
-
'@esbuild/sunos-x64@0.18.20':
optional: true
- '@esbuild/sunos-x64@0.20.2':
- optional: true
-
'@esbuild/win32-arm64@0.18.20':
optional: true
- '@esbuild/win32-arm64@0.20.2':
- optional: true
-
'@esbuild/win32-ia32@0.18.20':
optional: true
- '@esbuild/win32-ia32@0.20.2':
- optional: true
-
'@esbuild/win32-x64@0.18.20':
optional: true
- '@esbuild/win32-x64@0.20.2':
- optional: true
-
- '@eslint-community/eslint-utils@4.4.0(eslint@7.32.0)':
+ '@eslint-community/eslint-utils@4.4.1(eslint@7.32.0)':
dependencies:
eslint: 7.32.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint-community/regexpp@4.12.1': {}
'@eslint/eslintrc@0.4.3':
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.7
espree: 7.3.1
globals: 13.24.0
ignore: 4.0.6
@@ -17200,59 +17381,60 @@ snapshots:
'@fal-works/esbuild-plugin-global-externals@2.1.2': {}
- '@floating-ui/core@1.6.0':
+ '@floating-ui/core@1.6.8':
dependencies:
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/dom@1.6.3':
+ '@floating-ui/dom@1.6.12':
dependencies:
- '@floating-ui/core': 1.6.0
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/core': 1.6.8
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/dom': 1.6.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@floating-ui/dom': 1.6.12
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@floating-ui/utils@0.2.1': {}
+ '@floating-ui/utils@0.2.8': {}
- '@formatjs/ecma402-abstract@1.18.2':
+ '@formatjs/ecma402-abstract@2.2.3':
dependencies:
- '@formatjs/intl-localematcher': 0.5.4
- tslib: 2.6.2
+ '@formatjs/fast-memoize': 2.2.3
+ '@formatjs/intl-localematcher': 0.5.7
+ tslib: 2.8.1
- '@formatjs/fast-memoize@2.2.0':
+ '@formatjs/fast-memoize@2.2.3':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
- '@formatjs/icu-messageformat-parser@2.7.6':
+ '@formatjs/icu-messageformat-parser@2.9.3':
dependencies:
- '@formatjs/ecma402-abstract': 1.18.2
- '@formatjs/icu-skeleton-parser': 1.8.0
- tslib: 2.6.2
+ '@formatjs/ecma402-abstract': 2.2.3
+ '@formatjs/icu-skeleton-parser': 1.8.7
+ tslib: 2.8.1
- '@formatjs/icu-skeleton-parser@1.8.0':
+ '@formatjs/icu-skeleton-parser@1.8.7':
dependencies:
- '@formatjs/ecma402-abstract': 1.18.2
- tslib: 2.6.2
+ '@formatjs/ecma402-abstract': 2.2.3
+ tslib: 2.8.1
- '@formatjs/intl-localematcher@0.5.4':
+ '@formatjs/intl-localematcher@0.5.7':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
'@gar/promisify@1.1.3': {}
- '@grpc/grpc-js@1.10.6':
+ '@grpc/grpc-js@1.12.2':
dependencies:
- '@grpc/proto-loader': 0.7.12
+ '@grpc/proto-loader': 0.7.13
'@js-sdsl/ordered-map': 4.4.2
- '@grpc/proto-loader@0.7.12':
+ '@grpc/proto-loader@0.7.13':
dependencies:
lodash.camelcase: 4.3.0
long: 5.2.3
- protobufjs: 7.2.6
+ protobufjs: 7.4.0
yargs: 17.7.2
'@hapi/hoek@9.3.0': {}
@@ -17264,7 +17446,7 @@ snapshots:
'@humanwhocodes/config-array@0.5.0':
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -17275,29 +17457,29 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify/react@4.1.1(react@18.2.0)':
+ '@iconify/react@4.1.1(react@18.3.1)':
dependencies:
'@iconify/types': 2.0.0
- react: 18.2.0
+ react: 18.3.1
'@iconify/types@2.0.0': {}
- '@internationalized/date@3.5.4':
+ '@internationalized/date@3.5.6':
dependencies:
- '@swc/helpers': 0.5.9
+ '@swc/helpers': 0.5.13
- '@internationalized/message@3.1.4':
+ '@internationalized/message@3.1.5':
dependencies:
- '@swc/helpers': 0.5.9
- intl-messageformat: 10.5.11
+ '@swc/helpers': 0.5.13
+ intl-messageformat: 10.7.5
- '@internationalized/number@3.5.3':
+ '@internationalized/number@3.5.4':
dependencies:
- '@swc/helpers': 0.5.9
+ '@swc/helpers': 0.5.13
- '@internationalized/string@3.2.3':
+ '@internationalized/string@3.2.4':
dependencies:
- '@swc/helpers': 0.5.9
+ '@swc/helpers': 0.5.13
'@isaacs/cliui@8.0.2':
dependencies:
@@ -17327,7 +17509,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))':
+ '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
@@ -17341,7 +17523,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ jest-config: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -17353,7 +17535,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -17427,7 +17609,7 @@ snapshots:
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
- v8-to-istanbul: 9.2.0
+ v8-to-istanbul: 9.3.0
transitivePeerDependencies:
- supports-color
@@ -17457,7 +17639,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -17468,7 +17650,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -17481,23 +17663,23 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
'@types/node': 15.14.9
- '@types/yargs': 17.0.32
+ '@types/yargs': 17.0.33
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.6.3)(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))':
dependencies:
glob: 7.2.3
glob-promise: 4.2.2(glob@7.2.3)
magic-string: 0.27.0
- react-docgen-typescript: 2.2.2(typescript@5.6.2)
- vite: 4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3)
+ react-docgen-typescript: 2.2.2(typescript@5.6.3)
+ vite: 4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
@@ -17509,70 +17691,70 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@js-sdsl/ordered-map@4.4.2': {}
'@js-temporal/polyfill@0.4.4':
dependencies:
jsbi: 4.3.0
- tslib: 2.6.2
+ tslib: 2.8.1
- '@jsonjoy.com/base64@1.1.2(tslib@2.6.2)':
+ '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
- '@jsonjoy.com/json-pack@1.1.0(tslib@2.6.2)':
+ '@jsonjoy.com/json-pack@1.1.0(tslib@2.8.1)':
dependencies:
- '@jsonjoy.com/base64': 1.1.2(tslib@2.6.2)
- '@jsonjoy.com/util': 1.4.0(tslib@2.6.2)
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
hyperdyperid: 1.2.0
- thingies: 1.21.0(tslib@2.6.2)
- tslib: 2.6.2
+ thingies: 1.21.0(tslib@2.8.1)
+ tslib: 2.8.1
- '@jsonjoy.com/util@1.4.0(tslib@2.6.2)':
+ '@jsonjoy.com/util@1.5.0(tslib@2.8.1)':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
'@juggle/resize-observer@3.4.0': {}
- '@lezer/common@1.2.1': {}
+ '@lezer/common@1.2.3': {}
- '@lezer/css@1.1.8':
+ '@lezer/css@1.1.9':
dependencies:
- '@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.0
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
- '@lezer/highlight@1.2.0':
+ '@lezer/highlight@1.2.1':
dependencies:
- '@lezer/common': 1.2.1
+ '@lezer/common': 1.2.3
- '@lezer/html@1.3.9':
+ '@lezer/html@1.3.10':
dependencies:
- '@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.0
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
- '@lezer/javascript@1.4.14':
+ '@lezer/javascript@1.4.19':
dependencies:
- '@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.0
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
- '@lezer/lr@1.4.0':
+ '@lezer/lr@1.4.2':
dependencies:
- '@lezer/common': 1.2.1
+ '@lezer/common': 1.2.3
'@lmdb/lmdb-darwin-arm64@2.8.5':
optional: true
@@ -17594,14 +17776,14 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -17614,33 +17796,36 @@ snapshots:
refractor: 3.3.1
unist-util-visit: 2.0.3
- '@mdx-js/esbuild@3.0.1(esbuild@0.20.2)':
+ '@mdx-js/esbuild@3.1.0(acorn@8.14.0)(esbuild@0.18.20)':
dependencies:
- '@mdx-js/mdx': 3.0.1
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
'@types/unist': 3.0.3
- esbuild: 0.20.2
+ esbuild: 0.18.20
+ source-map: 0.7.4
vfile: 6.0.3
vfile-message: 4.0.2
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/mdx@3.0.1':
+ '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
'@types/mdx': 2.0.13
collapse-white-space: 2.1.0
devlop: 1.1.0
- estree-util-build-jsx: 3.0.1
estree-util-is-identifier-name: 3.0.0
- estree-util-to-js: 2.0.0
+ estree-util-scope: 1.0.0
estree-walker: 3.0.3
- hast-util-to-estree: 3.1.0
- hast-util-to-jsx-runtime: 2.3.0
+ hast-util-to-jsx-runtime: 2.3.2
markdown-extensions: 2.0.0
- periscopic: 3.1.0
- remark-mdx: 3.0.1
+ recma-build-jsx: 1.0.0
+ recma-jsx: 1.0.0(acorn@8.14.0)
+ recma-stringify: 1.0.0
+ rehype-recma: 1.0.0
+ remark-mdx: 3.1.0
remark-parse: 11.0.0
remark-rehype: 11.1.1
source-map: 0.7.4
@@ -17650,45 +17835,46 @@ snapshots:
unist-util-visit: 5.0.0
vfile: 6.0.3
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/react@2.3.0(react@18.2.0)':
+ '@mdx-js/react@2.3.0(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.13
'@types/react': 18.2.8
- react: 18.2.0
+ react: 18.3.1
'@mischnic/json-sourcemap@0.1.1':
dependencies:
- '@lezer/common': 1.2.1
- '@lezer/lr': 1.4.0
+ '@lezer/common': 1.2.3
+ '@lezer/lr': 1.4.2
json5: 2.2.3
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2':
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2':
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
optional: true
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2':
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
optional: true
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2':
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
optional: true
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2':
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
optional: true
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2':
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
optional: true
'@ndelangen/get-tarball@3.0.9':
dependencies:
gunzip-maybe: 1.4.2
- pump: 3.0.0
+ pump: 3.0.2
tar-fs: 2.1.1
- '@next/bundle-analyzer@13.5.6':
+ '@next/bundle-analyzer@13.5.7':
dependencies:
webpack-bundle-analyzer: 4.7.0
transitivePeerDependencies:
@@ -17697,9 +17883,9 @@ snapshots:
'@next/env@13.5.1': {}
- '@next/env@13.5.6': {}
+ '@next/env@13.5.7': {}
- '@next/eslint-plugin-next@13.5.6':
+ '@next/eslint-plugin-next@13.5.7':
dependencies:
glob: 7.1.7
@@ -17745,14 +17931,16 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
+ '@nolyfill/is-core-module@1.0.39': {}
+
'@npmcli/fs@2.1.2':
dependencies:
'@gar/promisify': 1.1.3
- semver: 7.6.0
+ semver: 7.6.3
- '@npmcli/fs@3.1.0':
+ '@npmcli/fs@3.1.1':
dependencies:
- semver: 7.6.0
+ semver: 7.6.3
'@npmcli/git@4.1.0':
dependencies:
@@ -17762,14 +17950,14 @@ snapshots:
proc-log: 3.0.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.6.0
+ semver: 7.6.3
which: 3.0.1
transitivePeerDependencies:
- bluebird
- '@npmcli/installed-package-contents@2.0.2':
+ '@npmcli/installed-package-contents@2.1.0':
dependencies:
- npm-bundled: 3.0.0
+ npm-bundled: 3.0.1
npm-normalize-package-bin: 3.0.1
'@npmcli/move-file@2.0.1':
@@ -17798,191 +17986,186 @@ snapshots:
'@opentelemetry/api-logs@0.51.1':
dependencies:
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api': 1.9.0
- '@opentelemetry/api@1.8.0': {}
-
- '@opentelemetry/context-async-hooks@1.23.0(@opentelemetry/api@1.8.0)':
- dependencies:
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api@1.9.0': {}
- '@opentelemetry/core@1.23.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/context-async-hooks@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/semantic-conventions': 1.23.0
+ '@opentelemetry/api': 1.9.0
- '@opentelemetry/core@1.24.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/core@1.24.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.24.1
- '@opentelemetry/core@1.26.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.27.0
- '@opentelemetry/exporter-trace-otlp-grpc@0.51.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/exporter-trace-otlp-grpc@0.51.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.10.6
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/otlp-grpc-exporter-base': 0.51.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/otlp-transformer': 0.51.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
+ '@grpc/grpc-js': 1.12.2
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-grpc-exporter-base': 0.51.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.51.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base@0.51.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/otlp-exporter-base@0.51.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-grpc-exporter-base@0.51.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/otlp-grpc-exporter-base@0.51.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.10.6
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/otlp-exporter-base': 0.51.1(@opentelemetry/api@1.8.0)
- protobufjs: 7.2.6
+ '@grpc/grpc-js': 1.12.2
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.51.1(@opentelemetry/api@1.9.0)
+ protobufjs: 7.4.0
- '@opentelemetry/otlp-transformer@0.51.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/otlp-transformer@0.51.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.51.1
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-logs': 0.51.1(@opentelemetry/api-logs@0.51.1)(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-metrics': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-logs': 0.51.1(@opentelemetry/api-logs@0.51.1)(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-b3@1.23.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/propagator-b3@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-jaeger@1.23.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/propagator-jaeger@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources@1.23.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/resources@1.24.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/semantic-conventions': 1.23.0
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.24.1
- '@opentelemetry/resources@1.24.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/resources@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/semantic-conventions': 1.24.1
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.27.0
- '@opentelemetry/sdk-logs@0.51.1(@opentelemetry/api-logs@0.51.1)(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/sdk-logs@0.51.1(@opentelemetry/api-logs@0.51.1)(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.51.1
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics@1.24.1(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/sdk-metrics@1.24.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.9.0)
lodash.merge: 4.6.2
- '@opentelemetry/sdk-trace-base@1.23.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/semantic-conventions': 1.23.0
-
- '@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0)':
- dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
- '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.24.1
- '@opentelemetry/sdk-trace-node@1.23.0(@opentelemetry/api@1.8.0)':
+ '@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@opentelemetry/api': 1.8.0
- '@opentelemetry/context-async-hooks': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/propagator-b3': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/propagator-jaeger': 1.23.0(@opentelemetry/api@1.8.0)
- '@opentelemetry/sdk-trace-base': 1.23.0(@opentelemetry/api@1.8.0)
- semver: 7.6.0
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.27.0
- '@opentelemetry/semantic-conventions@1.23.0': {}
+ '@opentelemetry/sdk-trace-node@1.27.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/context-async-hooks': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/propagator-b3': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/propagator-jaeger': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
+ semver: 7.6.3
'@opentelemetry/semantic-conventions@1.24.1': {}
'@opentelemetry/semantic-conventions@1.27.0': {}
- '@parcel/bundler-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/bundler-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
'@parcel/graph': 3.2.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/cache@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/cache@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)':
dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
- '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/logger': 2.12.0
'@parcel/utils': 2.12.0
lmdb: 2.8.5
+ transitivePeerDependencies:
+ - '@swc/helpers'
'@parcel/codeframe@2.12.0':
dependencies:
chalk: 4.1.2
- '@parcel/compressor-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/compressor-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/config-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)(postcss@8.4.38)(srcset@4.0.0)(terser@5.30.3)(typescript@4.9.5)':
- dependencies:
- '@parcel/bundler-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/compressor-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
- '@parcel/namer-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/optimizer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(postcss@8.4.38)(srcset@4.0.0)(terser@5.30.3)(typescript@4.9.5)
- '@parcel/optimizer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/optimizer-svgo': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/optimizer-swc': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
- '@parcel/packager-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/packager-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/packager-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/packager-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/packager-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/packager-wasm': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/resolver-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/runtime-browser-hmr': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/runtime-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/runtime-react-refresh': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/runtime-service-worker': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-babel': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-json': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-postcss': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-posthtml': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-react-refresh-wrap': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/transformer-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/config-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.36.0)(typescript@4.9.5)':
+ dependencies:
+ '@parcel/bundler-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/compressor-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
+ '@parcel/namer-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/optimizer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/optimizer-htmlnano': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(postcss@8.4.47)(terser@5.36.0)(typescript@4.9.5)
+ '@parcel/optimizer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/optimizer-svgo': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/optimizer-swc': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
+ '@parcel/packager-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/packager-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/packager-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/packager-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/packager-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/packager-wasm': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/resolver-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/runtime-browser-hmr': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/runtime-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/runtime-react-refresh': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/runtime-service-worker': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-babel': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-css': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-html': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-image': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-js': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-json': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-postcss': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-posthtml': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-raw': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-react-refresh-wrap': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/transformer-svg': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@swc/helpers'
- cssnano
@@ -17994,33 +18177,33 @@ snapshots:
- typescript
- uncss
- '@parcel/core@2.12.0(@swc/helpers@0.5.9)':
+ '@parcel/core@2.12.0(@swc/helpers@0.5.13)':
dependencies:
'@mischnic/json-sourcemap': 0.1.1
- '@parcel/cache': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/cache': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
'@parcel/events': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/graph': 3.2.0
'@parcel/logger': 2.12.0
- '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/profiler': 2.12.0
'@parcel/rust': 2.12.0
'@parcel/source-map': 2.1.1
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
abortcontroller-polyfill: 1.7.5
- base-x: 3.0.9
- browserslist: 4.23.0
+ base-x: 3.0.10
+ browserslist: 4.24.2
clone: 2.1.2
dotenv: 7.0.0
dotenv-expand: 5.1.0
json5: 2.2.3
- msgpackr: 1.10.1
+ msgpackr: 1.11.2
nullthrows: 1.1.1
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@swc/helpers'
@@ -18031,14 +18214,14 @@ snapshots:
'@parcel/events@2.12.0': {}
- '@parcel/fs@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)':
+ '@parcel/fs@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)':
dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/rust': 2.12.0
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
- '@parcel/watcher': 2.4.1
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/watcher': 2.5.0
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@swc/helpers'
@@ -18055,42 +18238,42 @@ snapshots:
dependencies:
chalk: 4.1.2
- '@parcel/namer-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/namer-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/node-resolver-core@3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/node-resolver-core@3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@mischnic/json-sourcemap': 0.1.1
'@parcel/diagnostic': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/rust': 2.12.0
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/optimizer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/optimizer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.12.0
- browserslist: 4.23.0
- lightningcss: 1.24.1
+ browserslist: 4.24.2
+ lightningcss: 1.28.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(postcss@8.4.38)(srcset@4.0.0)(terser@5.30.3)(typescript@4.9.5)':
+ '@parcel/optimizer-htmlnano@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(postcss@8.4.47)(terser@5.36.0)(typescript@4.9.5)':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- htmlnano: 2.1.0(postcss@8.4.38)(srcset@4.0.0)(svgo@2.8.0)(terser@5.30.3)(typescript@4.9.5)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ htmlnano: 2.1.1(postcss@8.4.47)(svgo@2.8.0)(terser@5.36.0)(typescript@4.9.5)
nullthrows: 1.1.1
posthtml: 0.16.6
svgo: 2.8.0
@@ -18105,109 +18288,109 @@ snapshots:
- typescript
- uncss
- '@parcel/optimizer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/optimizer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
'@parcel/utils': 2.12.0
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
- '@parcel/optimizer-svgo@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/optimizer-svgo@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
svgo: 2.8.0
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/optimizer-swc@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)':
+ '@parcel/optimizer-swc@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.12.0
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@swc/helpers'
- '@parcel/package-manager@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)':
+ '@parcel/package-manager@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)':
dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/logger': 2.12.0
- '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
- semver: 7.6.0
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
+ semver: 7.6.3
transitivePeerDependencies:
- '@swc/helpers'
- '@parcel/packager-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/packager-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.12.0
- lightningcss: 1.24.1
+ lightningcss: 1.28.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/packager-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/packager-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/packager-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/packager-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
'@parcel/source-map': 2.1.1
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
globals: 13.24.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/packager-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/packager-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/packager-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/packager-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
posthtml: 0.16.6
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/packager-wasm@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/packager-wasm@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/plugin@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/plugin@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
transitivePeerDependencies:
- '@parcel/core'
@@ -18215,69 +18398,69 @@ snapshots:
dependencies:
'@parcel/diagnostic': 2.12.0
'@parcel/events': 2.12.0
- chrome-trace-event: 1.0.3
+ chrome-trace-event: 1.0.4
- '@parcel/reporter-cli@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/reporter-cli@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
chalk: 4.1.2
term-size: 2.2.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/reporter-dev-server@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/reporter-dev-server@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/reporter-tracer@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/reporter-tracer@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
- chrome-trace-event: 1.0.3
+ chrome-trace-event: 1.0.4
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/resolver-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/resolver-default@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/node-resolver-core': 3.3.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/runtime-browser-hmr@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/runtime-browser-hmr@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/runtime-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/runtime-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/runtime-react-refresh@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/runtime-react-refresh@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
react-error-overlay: 6.0.9
react-refresh: 0.9.0
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/runtime-service-worker@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/runtime-service-worker@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -18289,135 +18472,135 @@ snapshots:
dependencies:
detect-libc: 1.0.3
- '@parcel/transformer-babel@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-babel@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.12.0
- browserslist: 4.23.0
+ browserslist: 4.24.2
json5: 2.2.3
nullthrows: 1.1.1
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-css@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.12.0
- browserslist: 4.23.0
- lightningcss: 1.24.1
+ browserslist: 4.24.2
+ lightningcss: 1.28.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-html@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
- semver: 7.6.0
+ semver: 7.6.3
srcset: 4.0.0
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-image@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
nullthrows: 1.1.1
- '@parcel/transformer-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-js@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.12.0
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@swc/helpers': 0.5.9
- browserslist: 4.23.0
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@swc/helpers': 0.5.13
+ browserslist: 4.24.2
nullthrows: 1.1.1
regenerator-runtime: 0.13.11
- semver: 7.6.0
+ semver: 7.6.3
- '@parcel/transformer-json@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-json@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
json5: 2.2.3
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-postcss@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-postcss@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
'@parcel/utils': 2.12.0
clone: 2.1.2
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-posthtml@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-posthtml@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-raw@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-react-refresh-wrap@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-react-refresh-wrap@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
react-refresh: 0.9.0
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/transformer-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
+ '@parcel/transformer-svg@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
dependencies:
'@parcel/diagnostic': 2.12.0
- '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/plugin': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/rust': 2.12.0
nullthrows: 1.1.1
posthtml: 0.16.6
posthtml-parser: 0.10.2
posthtml-render: 3.0.0
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@parcel/core'
- '@parcel/types@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)':
+ '@parcel/types@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)':
dependencies:
- '@parcel/cache': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/cache': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
- '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
+ '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/source-map': 2.1.1
- '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/workers': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
utility-types: 3.11.0
transitivePeerDependencies:
- '@parcel/core'
@@ -18434,69 +18617,73 @@ snapshots:
chalk: 4.1.2
nullthrows: 1.1.1
- '@parcel/watcher-android-arm64@2.4.1':
+ '@parcel/watcher-android-arm64@2.5.0':
optional: true
- '@parcel/watcher-darwin-arm64@2.4.1':
+ '@parcel/watcher-darwin-arm64@2.5.0':
optional: true
- '@parcel/watcher-darwin-x64@2.4.1':
+ '@parcel/watcher-darwin-x64@2.5.0':
optional: true
- '@parcel/watcher-freebsd-x64@2.4.1':
+ '@parcel/watcher-freebsd-x64@2.5.0':
optional: true
- '@parcel/watcher-linux-arm-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-musl@2.5.0':
optional: true
- '@parcel/watcher-linux-arm64-musl@2.4.1':
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
optional: true
- '@parcel/watcher-linux-x64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
optional: true
- '@parcel/watcher-linux-x64-musl@2.4.1':
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
optional: true
- '@parcel/watcher-win32-arm64@2.4.1':
+ '@parcel/watcher-linux-x64-musl@2.5.0':
optional: true
- '@parcel/watcher-win32-ia32@2.4.1':
+ '@parcel/watcher-win32-arm64@2.5.0':
optional: true
- '@parcel/watcher-win32-x64@2.4.1':
+ '@parcel/watcher-win32-ia32@2.5.0':
optional: true
- '@parcel/watcher@2.4.1':
+ '@parcel/watcher-win32-x64@2.5.0':
+ optional: true
+
+ '@parcel/watcher@2.5.0':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
- micromatch: 4.0.5
- node-addon-api: 7.1.0
+ micromatch: 4.0.8
+ node-addon-api: 7.1.1
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.1
- '@parcel/watcher-darwin-arm64': 2.4.1
- '@parcel/watcher-darwin-x64': 2.4.1
- '@parcel/watcher-freebsd-x64': 2.4.1
- '@parcel/watcher-linux-arm-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-musl': 2.4.1
- '@parcel/watcher-linux-x64-glibc': 2.4.1
- '@parcel/watcher-linux-x64-musl': 2.4.1
- '@parcel/watcher-win32-arm64': 2.4.1
- '@parcel/watcher-win32-ia32': 2.4.1
- '@parcel/watcher-win32-x64': 2.4.1
-
- '@parcel/workers@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))':
- dependencies:
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
+ '@parcel/watcher-android-arm64': 2.5.0
+ '@parcel/watcher-darwin-arm64': 2.5.0
+ '@parcel/watcher-darwin-x64': 2.5.0
+ '@parcel/watcher-freebsd-x64': 2.5.0
+ '@parcel/watcher-linux-arm-glibc': 2.5.0
+ '@parcel/watcher-linux-arm-musl': 2.5.0
+ '@parcel/watcher-linux-arm64-glibc': 2.5.0
+ '@parcel/watcher-linux-arm64-musl': 2.5.0
+ '@parcel/watcher-linux-x64-glibc': 2.5.0
+ '@parcel/watcher-linux-x64-musl': 2.5.0
+ '@parcel/watcher-win32-arm64': 2.5.0
+ '@parcel/watcher-win32-ia32': 2.5.0
+ '@parcel/watcher-win32-x64': 2.5.0
+
+ '@parcel/workers@2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))':
+ dependencies:
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
'@parcel/logger': 2.12.0
'@parcel/profiler': 2.12.0
- '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/types': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/utils': 2.12.0
nullthrows: 1.1.1
@@ -18509,13 +18696,13 @@ snapshots:
dependencies:
graceful-fs: 4.2.10
- '@pnpm/npm-conf@2.2.2':
+ '@pnpm/npm-conf@2.3.1':
dependencies:
'@pnpm/config.env-replace': 1.1.0
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@polka/url@1.0.0-next.25': {}
+ '@polka/url@1.0.0-next.28': {}
'@protobufjs/aspromise@1.1.2': {}
@@ -18542,1228 +18729,1451 @@ snapshots:
'@radix-ui/number@1.0.1':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
+
+ '@radix-ui/number@1.1.0': {}
'@radix-ui/primitive@1.0.0':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@radix-ui/primitive@1.0.1':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
+
+ '@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-compose-refs@1.0.0(react@18.2.0)':
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.2.8
+ '@types/react-dom': 18.2.4
+
+ '@radix-ui/react-compose-refs@1.0.0(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.8)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
+
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.8)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
+
+ '@radix-ui/react-context@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-context@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-context@1.0.0(react@18.2.0)':
+ '@radix-ui/react-context@1.1.0(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
- '@radix-ui/react-context@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-context@1.1.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-dialog@1.0.0(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-dialog@1.0.0(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
- '@radix-ui/react-context': 1.0.0(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-id': 1.0.0(react@18.2.0)
- '@radix-ui/react-portal': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-slot': 1.0.0(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
+ '@radix-ui/react-context': 1.0.0(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.0.0(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.0.0(react@18.3.1)
+ '@radix-ui/react-portal': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.0(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.0(react@18.3.1)
aria-hidden: 1.2.4
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.4(@types/react@18.2.8)(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-remove-scroll: 2.5.4(@types/react@18.2.8)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- '@radix-ui/react-direction@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-direction@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-direction@1.1.0(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
+
+ '@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.0(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.0.0(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-focus-guards@1.0.0(react@18.2.0)':
+ '@radix-ui/react-focus-guards@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
- '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-focus-scope@1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-focus-scope@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-id@1.0.0(react@18.2.0)':
+ '@radix-ui/react-id@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
+ react: 18.3.1
- '@radix-ui/react-id@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-id@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.24.4
- '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.8)(react@18.2.0)
+ '@radix-ui/react-id@1.1.0(@types/react@18.2.8)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
+
+ '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.8)(react@18.3.1)
'@radix-ui/rect': 1.0.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-portal@1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-portal@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-presence@1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-presence@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-presence@1.1.1(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-primitive@1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-primitive@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-slot': 1.0.0(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-slot': 1.0.0(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/number': 1.0.1
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.2.8
+ '@types/react-dom': 18.2.4
+
+ '@radix-ui/react-scroll-area@1.2.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
aria-hidden: 1.2.4
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.8)(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-remove-scroll: 2.5.5(@types/react@18.2.8)(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-separator@1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-slot@1.0.0(react@18.2.0)':
+ '@radix-ui/react-slot@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
+ react: 18.3.1
- '@radix-ui/react-slot@1.0.2(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-slot@1.0.2(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
+
+ '@radix-ui/react-toggle-group@1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-toggle': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-toggle@1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-toolbar@1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-separator': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-toggle-group': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
- '@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0)':
+ '@radix-ui/react-use-callback-ref@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+
+ '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.8)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
- '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0)':
+ '@radix-ui/react-use-controllable-state@1.0.0(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
+ react: 18.3.1
+
+ '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
- '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-use-escape-keydown@1.0.0(react@18.2.0)':
+ '@radix-ui/react-use-escape-keydown@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
+ react: 18.3.1
- '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0)':
+ '@radix-ui/react-use-layout-effect@1.0.0(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
- '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.8
+
+ '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.8)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
'@radix-ui/rect': 1.0.1
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-use-size@1.0.1(@types/react@18.2.8)(react@18.2.0)':
+ '@radix-ui/react-use-size@1.0.1(@types/react@18.2.8)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.2.0)
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.8)(react@18.3.1)
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
'@radix-ui/rect@1.0.1':
dependencies:
- '@babel/runtime': 7.24.4
-
- '@react-aria/breadcrumbs@3.5.13(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/link': 3.7.1(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/breadcrumbs': 3.7.5(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/button@3.9.5(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/toggle': 3.7.4(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/calendar@3.5.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@internationalized/date': 3.5.4
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/live-announcer': 3.3.4
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/calendar': 3.5.1(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/calendar': 3.4.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/checkbox@3.14.3(react@18.2.0)':
- dependencies:
- '@react-aria/form': 3.0.5(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/toggle': 3.10.4(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/checkbox': 3.6.5(react@18.2.0)
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/toggle': 3.7.4(react@18.2.0)
- '@react-types/checkbox': 3.8.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/combobox@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/listbox': 3.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/live-announcer': 3.3.4
- '@react-aria/menu': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/textfield': 3.14.5(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/combobox': 3.8.4(react@18.2.0)
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/combobox': 3.11.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/datepicker@3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@internationalized/date': 3.5.4
- '@internationalized/number': 3.5.3
- '@internationalized/string': 3.2.3
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/form': 3.0.5(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/spinbutton': 3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/datepicker': 3.9.4(react@18.2.0)
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/calendar': 3.4.6(react@18.2.0)
- '@react-types/datepicker': 3.7.4(react@18.2.0)
- '@react-types/dialog': 3.5.10(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/dialog@3.5.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/dialog': 3.5.10(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/focus@3.17.1(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- clsx: 2.1.0
- react: 18.2.0
-
- '@react-aria/form@3.0.5(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/grid@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/live-announcer': 3.3.4
- '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/grid': 3.8.7(react@18.2.0)
- '@react-stately/selection': 3.15.1(react@18.2.0)
- '@react-stately/virtualizer': 3.7.1(react@18.2.0)
- '@react-types/checkbox': 3.8.1(react@18.2.0)
- '@react-types/grid': 3.2.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/i18n@3.11.1(react@18.2.0)':
- dependencies:
- '@internationalized/date': 3.5.4
- '@internationalized/message': 3.1.4
- '@internationalized/number': 3.5.3
- '@internationalized/string': 3.2.3
- '@react-aria/ssr': 3.9.4(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/interactions@3.21.3(react@18.2.0)':
- dependencies:
- '@react-aria/ssr': 3.9.4(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/label@3.7.8(react@18.2.0)':
- dependencies:
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/link@3.7.1(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/link': 3.5.5(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/listbox@3.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/list': 3.10.5(react@18.2.0)
- '@react-types/listbox': 3.4.9(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/live-announcer@3.3.4':
- dependencies:
- '@swc/helpers': 0.5.9
-
- '@react-aria/menu@3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/menu': 3.7.1(react@18.2.0)
- '@react-stately/tree': 3.8.1(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/menu': 3.9.9(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/overlays@3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/ssr': 3.9.4(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.12(react@18.2.0)
- '@react-stately/overlays': 3.6.7(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/overlays': 3.8.7(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/progress@3.4.13(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/progress': 3.5.4(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/radio@3.10.4(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/form': 3.0.5(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/radio': 3.10.4(react@18.2.0)
- '@react-types/radio': 3.8.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/selection@3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/selection': 3.15.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/slider@3.7.8(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/slider': 3.5.4(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/slider': 3.7.3(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/spinbutton@3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/live-announcer': 3.3.4
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/button': 3.9.4(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/ssr@3.9.4(react@18.2.0)':
- dependencies:
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/switch@3.6.4(react@18.2.0)':
- dependencies:
- '@react-aria/toggle': 3.10.4(react@18.2.0)
- '@react-stately/toggle': 3.7.4(react@18.2.0)
- '@react-types/switch': 3.5.3(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/table@3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/grid': 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/live-announcer': 3.3.4
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.12(react@18.2.0)
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/flags': 3.0.3
- '@react-stately/table': 3.11.8(react@18.2.0)
- '@react-stately/virtualizer': 3.7.1(react@18.2.0)
- '@react-types/checkbox': 3.8.1(react@18.2.0)
- '@react-types/grid': 3.2.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/table': 3.9.5(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/tabs@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/tabs': 3.6.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/tabs': 3.3.7(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/textfield@3.14.5(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/form': 3.0.5(react@18.2.0)
- '@react-aria/label': 3.7.8(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/textfield': 3.9.3(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/toggle@3.10.4(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/toggle': 3.7.4(react@18.2.0)
- '@react-types/checkbox': 3.8.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/tooltip@3.7.4(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.17.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/tooltip': 3.4.9(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/tooltip': 3.4.9(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-aria/utils@3.24.1(react@18.2.0)':
- dependencies:
- '@react-aria/ssr': 3.9.4(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- clsx: 2.1.0
- react: 18.2.0
-
- '@react-aria/virtualizer@3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.11.1(react@18.2.0)
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-stately/virtualizer': 3.7.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/visually-hidden@3.8.12(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.21.3(react@18.2.0)
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+
+ '@react-aria/breadcrumbs@3.5.13(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/link': 3.7.1(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/breadcrumbs': 3.7.5(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/button@3.9.5(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/toggle': 3.7.4(react@18.3.1)
+ '@react-types/button': 3.9.4(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/calendar@3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/calendar': 3.5.1(react@18.3.1)
+ '@react-types/button': 3.9.4(react@18.3.1)
+ '@react-types/calendar': 3.4.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/checkbox@3.14.3(react@18.3.1)':
+ dependencies:
+ '@react-aria/form': 3.0.5(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/toggle': 3.10.9(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/checkbox': 3.6.5(react@18.3.1)
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-stately/toggle': 3.7.4(react@18.3.1)
+ '@react-types/checkbox': 3.8.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/combobox@3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/textfield': 3.14.5(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/combobox': 3.8.4(react@18.3.1)
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-types/button': 3.9.4(react@18.3.1)
+ '@react-types/combobox': 3.11.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/datepicker@3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@internationalized/number': 3.5.4
+ '@internationalized/string': 3.2.4
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/form': 3.0.5(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/datepicker': 3.9.4(react@18.3.1)
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-types/button': 3.9.4(react@18.3.1)
+ '@react-types/calendar': 3.4.6(react@18.3.1)
+ '@react-types/datepicker': 3.7.4(react@18.3.1)
+ '@react-types/dialog': 3.5.13(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/dialog@3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/dialog': 3.5.13(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/focus@3.17.1(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ clsx: 2.1.1
+ react: 18.3.1
+
+ '@react-aria/focus@3.18.4(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.22.4(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ clsx: 2.1.1
+ react: 18.3.1
+
+ '@react-aria/form@3.0.5(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/grid@3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.18.4(react@18.3.1)
+ '@react-aria/i18n': 3.12.3(react@18.3.1)
+ '@react-aria/interactions': 3.22.4(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-stately/collections': 3.11.0(react@18.3.1)
+ '@react-stately/grid': 3.9.3(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-types/checkbox': 3.8.4(react@18.3.1)
+ '@react-types/grid': 3.2.9(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/i18n@3.11.1(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@internationalized/message': 3.1.5
+ '@internationalized/number': 3.5.4
+ '@internationalized/string': 3.2.4
+ '@react-aria/ssr': 3.9.4(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/i18n@3.12.3(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@internationalized/message': 3.1.5
+ '@internationalized/number': 3.5.4
+ '@internationalized/string': 3.2.4
+ '@react-aria/ssr': 3.9.6(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/interactions@3.21.3(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.4(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/interactions@3.22.4(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.6(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/label@3.7.8(react@18.3.1)':
+ dependencies:
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/link@3.7.1(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/link': 3.5.5(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/listbox@3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/list': 3.10.5(react@18.3.1)
+ '@react-types/listbox': 3.5.2(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/live-announcer@3.4.0':
+ dependencies:
+ '@swc/helpers': 0.5.13
+
+ '@react-aria/menu@3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/menu': 3.7.1(react@18.3.1)
+ '@react-stately/tree': 3.8.1(react@18.3.1)
+ '@react-types/button': 3.9.4(react@18.3.1)
+ '@react-types/menu': 3.9.9(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/overlays@3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/ssr': 3.9.4(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.12(react@18.3.1)
+ '@react-stately/overlays': 3.6.7(react@18.3.1)
+ '@react-types/button': 3.9.4(react@18.3.1)
+ '@react-types/overlays': 3.8.7(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/progress@3.4.13(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/progress': 3.5.4(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/radio@3.10.4(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/form': 3.0.5(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/radio': 3.10.4(react@18.3.1)
+ '@react-types/radio': 3.8.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/selection@3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/selection@3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.18.4(react@18.3.1)
+ '@react-aria/i18n': 3.12.3(react@18.3.1)
+ '@react-aria/interactions': 3.22.4(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/slider@3.7.8(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/slider': 3.5.4(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/slider': 3.7.6(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/spinbutton@3.6.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.3(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-types/button': 3.10.0(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/ssr@3.9.4(react@18.3.1)':
+ dependencies:
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/ssr@3.9.6(react@18.3.1)':
+ dependencies:
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/switch@3.6.4(react@18.3.1)':
+ dependencies:
+ '@react-aria/toggle': 3.10.9(react@18.3.1)
+ '@react-stately/toggle': 3.7.4(react@18.3.1)
+ '@react-types/switch': 3.5.6(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/table@3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.12(react@18.3.1)
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/flags': 3.0.4
+ '@react-stately/table': 3.11.8(react@18.3.1)
+ '@react-stately/virtualizer': 3.7.1(react@18.3.1)
+ '@react-types/checkbox': 3.8.1(react@18.3.1)
+ '@react-types/grid': 3.2.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/table': 3.9.5(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/tabs@3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/tabs': 3.6.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/tabs': 3.3.7(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/textfield@3.14.5(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/form': 3.0.5(react@18.3.1)
+ '@react-aria/label': 3.7.8(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/textfield': 3.9.3(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/toggle@3.10.9(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.18.4(react@18.3.1)
+ '@react-aria/interactions': 3.22.4(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-stately/toggle': 3.7.8(react@18.3.1)
+ '@react-types/checkbox': 3.8.4(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/tooltip@3.7.4(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.17.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/tooltip': 3.4.9(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/tooltip': 3.4.9(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-aria/utils@3.24.1(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.4(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ clsx: 2.1.1
+ react: 18.3.1
+
+ '@react-aria/utils@3.25.3(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.6(react@18.3.1)
+ '@react-stately/utils': 3.10.4(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ clsx: 2.1.1
+ react: 18.3.1
+
+ '@react-aria/virtualizer@3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.11.1(react@18.3.1)
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-stately/virtualizer': 3.7.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@react-aria/visually-hidden@3.8.12(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.21.3(react@18.3.1)
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
'@react-bootstrap/babel-preset@2.2.0':
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4)
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
babel-plugin-add-module-exports: 1.0.4
- babel-plugin-dev-expression: 0.2.3(@babel/core@7.24.4)
- babel-plugin-transform-next-use-client: 1.1.1(@babel/core@7.24.4)
+ babel-plugin-dev-expression: 0.2.3(@babel/core@7.26.0)
+ babel-plugin-transform-next-use-client: 1.1.1(@babel/core@7.26.0)
babel-plugin-transform-react-remove-prop-types: 0.4.24
babel-preset-env-modules: 1.0.1
transitivePeerDependencies:
- supports-color
- '@react-hook/intersection-observer@3.1.1(react@18.2.0)':
+ '@react-hook/intersection-observer@3.1.2(react@18.3.1)':
dependencies:
- '@react-hook/passive-layout-effect': 1.2.1(react@18.2.0)
+ '@react-hook/passive-layout-effect': 1.2.1(react@18.3.1)
intersection-observer: 0.10.0
- react: 18.2.0
+ react: 18.3.1
+
+ '@react-hook/passive-layout-effect@1.2.1(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+
+ '@react-stately/calendar@3.5.1(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/calendar': 3.4.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/checkbox@3.6.5(react@18.3.1)':
+ dependencies:
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/checkbox': 3.8.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/collections@3.10.7(react@18.3.1)':
+ dependencies:
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/collections@3.11.0(react@18.3.1)':
+ dependencies:
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/combobox@3.8.4(react@18.3.1)':
+ dependencies:
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-stately/list': 3.10.5(react@18.3.1)
+ '@react-stately/overlays': 3.6.7(react@18.3.1)
+ '@react-stately/select': 3.6.8(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/combobox': 3.11.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/data@3.11.4(react@18.3.1)':
+ dependencies:
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/datepicker@3.9.4(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@internationalized/string': 3.2.4
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-stately/overlays': 3.6.7(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/datepicker': 3.7.4(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/flags@3.0.4':
+ dependencies:
+ '@swc/helpers': 0.5.13
+
+ '@react-stately/form@3.0.3(react@18.3.1)':
+ dependencies:
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-hook/passive-layout-effect@1.2.1(react@18.2.0)':
+ '@react-stately/form@3.0.6(react@18.3.1)':
dependencies:
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/grid@3.9.3(react@18.3.1)':
+ dependencies:
+ '@react-stately/collections': 3.11.0(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-types/grid': 3.2.9(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/layout@3.13.9(react@18.3.1)':
+ dependencies:
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/table': 3.11.8(react@18.3.1)
+ '@react-stately/virtualizer': 3.7.1(react@18.3.1)
+ '@react-types/grid': 3.2.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/table': 3.9.5(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/list@3.10.5(react@18.3.1)':
+ dependencies:
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/list@3.11.0(react@18.3.1)':
+ dependencies:
+ '@react-stately/collections': 3.11.0(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-stately/utils': 3.10.4(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/menu@3.7.1(react@18.3.1)':
+ dependencies:
+ '@react-stately/overlays': 3.6.7(react@18.3.1)
+ '@react-types/menu': 3.9.9(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/overlays@3.6.11(react@18.3.1)':
+ dependencies:
+ '@react-stately/utils': 3.10.4(react@18.3.1)
+ '@react-types/overlays': 3.8.10(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/overlays@3.6.7(react@18.3.1)':
+ dependencies:
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/overlays': 3.8.7(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/calendar@3.5.1(react@18.2.0)':
+ '@react-stately/radio@3.10.4(react@18.3.1)':
dependencies:
- '@internationalized/date': 3.5.4
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/calendar': 3.4.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/form': 3.0.3(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/radio': 3.8.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/checkbox@3.6.5(react@18.2.0)':
+ '@react-stately/select@3.6.8(react@18.3.1)':
dependencies:
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/checkbox': 3.8.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/form': 3.0.6(react@18.3.1)
+ '@react-stately/list': 3.11.0(react@18.3.1)
+ '@react-stately/overlays': 3.6.11(react@18.3.1)
+ '@react-types/select': 3.9.7(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/collections@3.10.7(react@18.2.0)':
+ '@react-stately/selection@3.17.0(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/collections': 3.11.0(react@18.3.1)
+ '@react-stately/utils': 3.10.4(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/combobox@3.8.4(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/list': 3.10.5(react@18.2.0)
- '@react-stately/overlays': 3.6.7(react@18.2.0)
- '@react-stately/select': 3.6.4(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/combobox': 3.11.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/slider@3.5.4(react@18.3.1)':
+ dependencies:
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/slider': 3.7.6(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/data@3.11.4(react@18.2.0)':
+ '@react-stately/table@3.11.8(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/datepicker@3.9.4(react@18.2.0)':
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/flags': 3.0.4
+ '@react-stately/grid': 3.9.3(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/grid': 3.2.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/table': 3.9.5(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/tabs@3.6.6(react@18.3.1)':
dependencies:
- '@internationalized/date': 3.5.4
- '@internationalized/string': 3.2.3
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/overlays': 3.6.7(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/datepicker': 3.7.4(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/flags@3.0.3':
- dependencies:
- '@swc/helpers': 0.5.9
-
- '@react-stately/form@3.0.3(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/grid@3.8.7(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/selection': 3.15.1(react@18.2.0)
- '@react-types/grid': 3.2.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/layout@3.13.9(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/table': 3.11.8(react@18.2.0)
- '@react-stately/virtualizer': 3.7.1(react@18.2.0)
- '@react-types/grid': 3.2.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/table': 3.9.5(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/list@3.10.5(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/selection': 3.15.1(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/menu@3.7.1(react@18.2.0)':
+ '@react-stately/list': 3.10.5(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-types/tabs': 3.3.7(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
+
+ '@react-stately/toggle@3.7.4(react@18.3.1)':
dependencies:
- '@react-stately/overlays': 3.6.7(react@18.2.0)
- '@react-types/menu': 3.9.9(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
-
- '@react-stately/overlays@3.6.7(react@18.2.0)':
- dependencies:
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/overlays': 3.8.7(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/checkbox': 3.8.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/radio@3.10.4(react@18.2.0)':
+ '@react-stately/toggle@3.7.8(react@18.3.1)':
dependencies:
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/radio': 3.8.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/utils': 3.10.4(react@18.3.1)
+ '@react-types/checkbox': 3.8.4(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/select@3.6.4(react@18.2.0)':
+ '@react-stately/tooltip@3.4.9(react@18.3.1)':
dependencies:
- '@react-stately/form': 3.0.3(react@18.2.0)
- '@react-stately/list': 3.10.5(react@18.2.0)
- '@react-stately/overlays': 3.6.7(react@18.2.0)
- '@react-types/select': 3.9.4(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/overlays': 3.6.7(react@18.3.1)
+ '@react-types/tooltip': 3.4.9(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/selection@3.15.1(react@18.2.0)':
+ '@react-stately/tree@3.8.1(react@18.3.1)':
dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-stately/collections': 3.10.7(react@18.3.1)
+ '@react-stately/selection': 3.17.0(react@18.3.1)
+ '@react-stately/utils': 3.10.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/slider@3.5.4(react@18.2.0)':
+ '@react-stately/utils@3.10.1(react@18.3.1)':
dependencies:
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/slider': 3.7.3(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/table@3.11.8(react@18.2.0)':
+ '@react-stately/utils@3.10.4(react@18.3.1)':
dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/flags': 3.0.3
- '@react-stately/grid': 3.8.7(react@18.2.0)
- '@react-stately/selection': 3.15.1(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/grid': 3.2.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/table': 3.9.5(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/tabs@3.6.6(react@18.2.0)':
+ '@react-stately/virtualizer@3.7.1(react@18.3.1)':
dependencies:
- '@react-stately/list': 3.10.5(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@react-types/tabs': 3.3.7(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-aria/utils': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ '@swc/helpers': 0.5.13
+ react: 18.3.1
- '@react-stately/toggle@3.7.4(react@18.2.0)':
+ '@react-types/accordion@3.0.0-alpha.21(react@18.3.1)':
dependencies:
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/checkbox': 3.8.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-stately/tooltip@3.4.9(react@18.2.0)':
+ '@react-types/breadcrumbs@3.7.5(react@18.3.1)':
dependencies:
- '@react-stately/overlays': 3.6.7(react@18.2.0)
- '@react-types/tooltip': 3.4.9(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-types/link': 3.5.5(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-stately/tree@3.8.1(react@18.2.0)':
+ '@react-types/button@3.10.0(react@18.3.1)':
dependencies:
- '@react-stately/collections': 3.10.7(react@18.2.0)
- '@react-stately/selection': 3.15.1(react@18.2.0)
- '@react-stately/utils': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-stately/utils@3.10.1(react@18.2.0)':
+ '@react-types/button@3.9.4(react@18.3.1)':
dependencies:
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-stately/virtualizer@3.7.1(react@18.2.0)':
+ '@react-types/calendar@3.4.6(react@18.3.1)':
dependencies:
- '@react-aria/utils': 3.24.1(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- '@swc/helpers': 0.5.9
- react: 18.2.0
+ '@internationalized/date': 3.5.6
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/accordion@3.0.0-alpha.21(react@18.2.0)':
+ '@react-types/checkbox@3.8.1(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/breadcrumbs@3.7.5(react@18.2.0)':
+ '@react-types/checkbox@3.8.4(react@18.3.1)':
dependencies:
- '@react-types/link': 3.5.5(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/button@3.9.4(react@18.2.0)':
+ '@react-types/combobox@3.11.1(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/calendar@3.4.6(react@18.2.0)':
+ '@react-types/datepicker@3.7.4(react@18.3.1)':
dependencies:
- '@internationalized/date': 3.5.4
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@internationalized/date': 3.5.6
+ '@react-types/calendar': 3.4.6(react@18.3.1)
+ '@react-types/overlays': 3.8.7(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/checkbox@3.8.1(react@18.2.0)':
+ '@react-types/dialog@3.5.13(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/overlays': 3.8.10(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/combobox@3.11.1(react@18.2.0)':
+ '@react-types/grid@3.2.6(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/datepicker@3.7.4(react@18.2.0)':
+ '@react-types/grid@3.2.9(react@18.3.1)':
dependencies:
- '@internationalized/date': 3.5.4
- '@react-types/calendar': 3.4.6(react@18.2.0)
- '@react-types/overlays': 3.8.7(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/dialog@3.5.10(react@18.2.0)':
+ '@react-types/link@3.5.5(react@18.3.1)':
dependencies:
- '@react-types/overlays': 3.8.7(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/grid@3.2.6(react@18.2.0)':
+ '@react-types/listbox@3.5.2(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/link@3.5.3(react@18.2.0)':
+ '@react-types/menu@3.9.9(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/overlays': 3.8.7(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/link@3.5.5(react@18.2.0)':
+ '@react-types/overlays@3.8.10(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/listbox@3.4.9(react@18.2.0)':
+ '@react-types/overlays@3.8.7(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/menu@3.9.9(react@18.2.0)':
+ '@react-types/progress@3.5.4(react@18.3.1)':
dependencies:
- '@react-types/overlays': 3.8.7(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/overlays@3.8.7(react@18.2.0)':
+ '@react-types/radio@3.8.1(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/progress@3.5.4(react@18.2.0)':
+ '@react-types/select@3.9.4(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/radio@3.8.1(react@18.2.0)':
+ '@react-types/select@3.9.7(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/select@3.9.4(react@18.2.0)':
+ '@react-types/shared@3.23.1(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ react: 18.3.1
- '@react-types/shared@3.23.1(react@18.2.0)':
+ '@react-types/shared@3.25.0(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
- '@react-types/slider@3.7.3(react@18.2.0)':
+ '@react-types/slider@3.7.6(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/switch@3.5.3(react@18.2.0)':
+ '@react-types/switch@3.5.6(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ react: 18.3.1
- '@react-types/table@3.9.5(react@18.2.0)':
+ '@react-types/table@3.9.5(react@18.3.1)':
dependencies:
- '@react-types/grid': 3.2.6(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/grid': 3.2.6(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/tabs@3.3.7(react@18.2.0)':
+ '@react-types/tabs@3.3.7(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/textfield@3.9.3(react@18.2.0)':
+ '@react-types/textfield@3.9.3(react@18.3.1)':
dependencies:
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@react-types/tooltip@3.4.9(react@18.2.0)':
+ '@react-types/tooltip@3.4.9(react@18.3.1)':
dependencies:
- '@react-types/overlays': 3.8.7(react@18.2.0)
- '@react-types/shared': 3.23.1(react@18.2.0)
- react: 18.2.0
+ '@react-types/overlays': 3.8.7(react@18.3.1)
+ '@react-types/shared': 3.23.1(react@18.3.1)
+ react: 18.3.1
- '@rehooks/local-storage@2.4.5(react@18.2.0)':
+ '@rehooks/local-storage@2.4.5(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
- '@rollup/pluginutils@5.1.0(rollup@3.29.4)':
+ '@rollup/pluginutils@5.1.3(rollup@3.29.5)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 3.29.4
+ rollup: 3.29.5
+
+ '@rtsao/scc@1.1.0': {}
- '@rushstack/eslint-patch@1.10.2': {}
+ '@rushstack/eslint-patch@1.10.4': {}
+
+ '@shikijs/core@1.22.2':
+ dependencies:
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.3
+
+ '@shikijs/engine-javascript@1.22.2':
+ dependencies:
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ oniguruma-to-js: 0.4.3
+
+ '@shikijs/engine-oniguruma@1.22.2':
+ dependencies:
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+
+ '@shikijs/types@1.22.2':
+ dependencies:
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
+ '@shikijs/vscode-textmate@9.3.0': {}
'@sideway/address@4.1.5':
dependencies:
@@ -19808,29 +20218,29 @@ snapshots:
'@stitches/core@1.2.8': {}
- '@storybook/addon-a11y@7.6.17':
+ '@storybook/addon-a11y@7.6.20':
dependencies:
- '@storybook/addon-highlight': 7.6.17
- axe-core: 4.9.0
+ '@storybook/addon-highlight': 7.6.20
+ axe-core: 4.10.2
- '@storybook/addon-actions@7.6.17':
+ '@storybook/addon-actions@7.6.20':
dependencies:
- '@storybook/core-events': 7.6.17
+ '@storybook/core-events': 7.6.20
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.3.1
uuid: 9.0.1
- '@storybook/addon-backgrounds@7.6.17':
+ '@storybook/addon-backgrounds@7.6.20':
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
ts-dedent: 2.2.0
- '@storybook/addon-controls@7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addon-controls@7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@storybook/blocks': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/blocks': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -19841,26 +20251,26 @@ snapshots:
- react-dom
- supports-color
- '@storybook/addon-docs@7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addon-docs@7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack-sources@3.2.3)':
dependencies:
'@jest/transform': 29.7.0
- '@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/client-logger': 7.6.17
- '@storybook/components': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/csf-plugin': 7.6.17
- '@storybook/csf-tools': 7.6.17
+ '@mdx-js/react': 2.3.0(react@18.3.1)
+ '@storybook/blocks': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/components': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/csf-plugin': 7.6.20(webpack-sources@3.2.3)
+ '@storybook/csf-tools': 7.6.20
'@storybook/global': 5.0.0
'@storybook/mdx2-csf': 1.1.0
- '@storybook/node-logger': 7.6.17
- '@storybook/postinstall': 7.6.17
- '@storybook/preview-api': 7.6.17
- '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.17
+ '@storybook/node-logger': 7.6.20
+ '@storybook/postinstall': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ '@storybook/react-dom-shim': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/theming': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/types': 7.6.20
fs-extra: 11.2.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
remark-external-links: 8.0.0
remark-slug: 6.1.0
ts-dedent: 2.2.0
@@ -19869,101 +20279,103 @@ snapshots:
- '@types/react-dom'
- encoding
- supports-color
-
- '@storybook/addon-essentials@7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@storybook/addon-actions': 7.6.17
- '@storybook/addon-backgrounds': 7.6.17
- '@storybook/addon-controls': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/addon-docs': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/addon-highlight': 7.6.17
- '@storybook/addon-measure': 7.6.17
- '@storybook/addon-outline': 7.6.17
- '@storybook/addon-toolbars': 7.6.17
- '@storybook/addon-viewport': 7.6.17
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/node-logger': 7.6.17
- '@storybook/preview-api': 7.6.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ - webpack-sources
+
+ '@storybook/addon-essentials@7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack-sources@3.2.3)':
+ dependencies:
+ '@storybook/addon-actions': 7.6.20
+ '@storybook/addon-backgrounds': 7.6.20
+ '@storybook/addon-controls': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/addon-docs': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack-sources@3.2.3)
+ '@storybook/addon-highlight': 7.6.20
+ '@storybook/addon-measure': 7.6.20
+ '@storybook/addon-outline': 7.6.20
+ '@storybook/addon-toolbars': 7.6.20
+ '@storybook/addon-viewport': 7.6.20
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/manager-api': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/node-logger': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- encoding
- supports-color
+ - webpack-sources
- '@storybook/addon-highlight@7.6.17':
+ '@storybook/addon-highlight@7.6.20':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/addon-links@7.6.17(react@18.2.0)':
+ '@storybook/addon-links@7.6.20(react@18.3.1)':
dependencies:
- '@storybook/csf': 0.1.4
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
ts-dedent: 2.2.0
optionalDependencies:
- react: 18.2.0
+ react: 18.3.1
- '@storybook/addon-mdx-gfm@7.6.17':
+ '@storybook/addon-mdx-gfm@7.6.20':
dependencies:
- '@storybook/node-logger': 7.6.17
+ '@storybook/node-logger': 7.6.20
remark-gfm: 3.0.1
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- '@storybook/addon-measure@7.6.17':
+ '@storybook/addon-measure@7.6.20':
dependencies:
'@storybook/global': 5.0.0
tiny-invariant: 1.3.3
- '@storybook/addon-outline@7.6.17':
+ '@storybook/addon-outline@7.6.20':
dependencies:
'@storybook/global': 5.0.0
ts-dedent: 2.2.0
- '@storybook/addon-toolbars@7.6.17': {}
+ '@storybook/addon-toolbars@7.6.20': {}
- '@storybook/addon-viewport@7.6.17':
+ '@storybook/addon-viewport@7.6.20':
dependencies:
memoizerific: 1.11.3
- '@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/addons@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/manager-api': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/preview-api': 7.6.17
'@storybook/types': 7.6.17
transitivePeerDependencies:
- react
- react-dom
- '@storybook/blocks@7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/blocks@7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@storybook/channels': 7.6.17
- '@storybook/client-logger': 7.6.17
- '@storybook/components': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.4
- '@storybook/docs-tools': 7.6.17(encoding@0.1.13)
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/components': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
+ '@storybook/docs-tools': 7.6.20(encoding@0.1.13)
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/preview-api': 7.6.17
- '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.17
- '@types/lodash': 4.17.5
+ '@storybook/manager-api': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/preview-api': 7.6.20
+ '@storybook/theming': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/types': 7.6.20
+ '@types/lodash': 4.17.13
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.4.7(react@18.2.0)
+ markdown-to-jsx: 7.5.0(react@18.3.1)
memoizerific: 1.11.3
polished: 4.3.1
- react: 18.2.0
- react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-dom: 18.3.1(react@18.3.1)
telejson: 7.2.0
- tocbot: 4.25.0
+ tocbot: 4.31.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -19972,12 +20384,12 @@ snapshots:
- encoding
- supports-color
- '@storybook/builder-manager@7.6.17(encoding@0.1.13)':
+ '@storybook/builder-manager@7.6.20(encoding@0.1.13)':
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/manager': 7.6.17
- '@storybook/node-logger': 7.6.17
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/manager': 7.6.20
+ '@storybook/node-logger': 7.6.20
'@types/ejs': 3.1.5
'@types/find-cache-dir': 3.2.1
'@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20)
@@ -19985,7 +20397,7 @@ snapshots:
ejs: 3.1.10
esbuild: 0.18.20
esbuild-plugin-alias: 0.2.1
- express: 4.19.2
+ express: 4.21.1
find-cache-dir: 3.3.2
fs-extra: 11.2.0
process: 0.11.10
@@ -19994,54 +20406,64 @@ snapshots:
- encoding
- supports-color
- '@storybook/builder-vite@7.6.17(encoding@0.1.13)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))':
+ '@storybook/builder-vite@7.6.20(encoding@0.1.13)(typescript@5.6.3)(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
- '@storybook/channels': 7.6.17
- '@storybook/client-logger': 7.6.17
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/csf-plugin': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/preview': 7.6.17
- '@storybook/preview-api': 7.6.17
- '@storybook/types': 7.6.17
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/csf-plugin': 7.6.20(webpack-sources@3.2.3)
+ '@storybook/node-logger': 7.6.20
+ '@storybook/preview': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ '@storybook/types': 7.6.20
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
- express: 4.19.2
+ express: 4.21.1
find-cache-dir: 3.3.2
fs-extra: 11.2.0
- magic-string: 0.30.9
- rollup: 3.29.4
- vite: 4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3)
+ magic-string: 0.30.12
+ rollup: 3.29.5
+ vite: 4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- encoding
- supports-color
+ - webpack-sources
'@storybook/channels@7.6.17':
dependencies:
'@storybook/client-logger': 7.6.17
'@storybook/core-events': 7.6.17
'@storybook/global': 5.0.0
- qs: 6.12.1
+ qs: 6.13.0
+ telejson: 7.2.0
+ tiny-invariant: 1.3.3
+
+ '@storybook/channels@7.6.20':
+ dependencies:
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/global': 5.0.0
+ qs: 6.13.0
telejson: 7.2.0
tiny-invariant: 1.3.3
- '@storybook/cli@7.6.17(encoding@0.1.13)':
+ '@storybook/cli@7.6.20(encoding@0.1.13)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 7.6.17
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/core-events': 7.6.17
- '@storybook/core-server': 7.6.17(encoding@0.1.13)
- '@storybook/csf-tools': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/telemetry': 7.6.17(encoding@0.1.13)
- '@storybook/types': 7.6.17
+ '@storybook/codemod': 7.6.20
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/core-events': 7.6.20
+ '@storybook/core-server': 7.6.20(encoding@0.1.13)
+ '@storybook/csf-tools': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/telemetry': 7.6.20(encoding@0.1.13)
+ '@storybook/types': 7.6.20
'@types/semver': 7.5.8
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
@@ -20049,23 +20471,23 @@ snapshots:
commander: 6.2.1
cross-spawn: 7.0.3
detect-indent: 6.1.0
- envinfo: 7.12.0
+ envinfo: 7.14.0
execa: 5.1.1
- express: 4.19.2
+ express: 4.21.1
find-up: 5.0.0
fs-extra: 11.2.0
get-npm-tarball-url: 2.1.0
get-port: 5.1.1
giget: 1.2.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.4(@babel/core@7.24.4))
+ jscodeshift: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
prompts: 2.4.2
puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
- semver: 7.6.0
+ semver: 7.6.3
strip-json-comments: 3.1.1
tempy: 1.0.1
ts-dedent: 2.2.0
@@ -20080,65 +20502,69 @@ snapshots:
dependencies:
'@storybook/global': 5.0.0
- '@storybook/codemod@7.6.17':
+ '@storybook/client-logger@7.6.20':
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.4
- '@storybook/csf-tools': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/types': 7.6.17
+ '@storybook/global': 5.0.0
+
+ '@storybook/codemod@7.6.20':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
+ '@storybook/csf': 0.1.11
+ '@storybook/csf-tools': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/types': 7.6.20
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.4(@babel/core@7.24.4))
+ jscodeshift: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
lodash: 4.17.21
prettier: 2.8.8
- recast: 0.23.6
+ recast: 0.23.9
transitivePeerDependencies:
- supports-color
- '@storybook/components@7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/components@7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/client-logger': 7.6.17
- '@storybook/csf': 0.1.4
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-toolbar': 1.1.0(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.17
+ '@storybook/theming': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/types': 7.6.20
memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
util-deprecate: 1.0.2
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- '@storybook/core-client@7.6.17':
+ '@storybook/core-client@7.6.20':
dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/preview-api': 7.6.17
+ '@storybook/client-logger': 7.6.20
+ '@storybook/preview-api': 7.6.20
- '@storybook/core-common@7.6.17(encoding@0.1.13)':
+ '@storybook/core-common@7.6.20(encoding@0.1.13)':
dependencies:
- '@storybook/core-events': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/types': 7.6.17
+ '@storybook/core-events': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/types': 7.6.20
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.31
+ '@types/node': 18.19.64
'@types/node-fetch': 2.6.11
'@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
esbuild: 0.18.20
- esbuild-register: 3.5.0(esbuild@0.18.20)
+ esbuild-register: 3.6.0(esbuild@0.18.20)
file-system-cache: 2.3.0
find-cache-dir: 3.3.2
find-up: 5.0.0
fs-extra: 11.2.0
- glob: 10.3.12
+ glob: 10.4.5
handlebars: 4.7.8
lazy-universal-dotenv: 4.0.0
node-fetch: 2.7.0(encoding@0.1.13)
@@ -20155,87 +20581,91 @@ snapshots:
dependencies:
ts-dedent: 2.2.0
- '@storybook/core-server@7.6.17(encoding@0.1.13)':
+ '@storybook/core-events@7.6.20':
+ dependencies:
+ ts-dedent: 2.2.0
+
+ '@storybook/core-server@7.6.20(encoding@0.1.13)':
dependencies:
'@aw-web-design/x-default-browser': 1.4.126
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 7.6.17(encoding@0.1.13)
- '@storybook/channels': 7.6.17
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.4
- '@storybook/csf-tools': 7.6.17
+ '@storybook/builder-manager': 7.6.20(encoding@0.1.13)
+ '@storybook/channels': 7.6.20
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
+ '@storybook/csf-tools': 7.6.20
'@storybook/docs-mdx': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/manager': 7.6.17
- '@storybook/node-logger': 7.6.17
- '@storybook/preview-api': 7.6.17
- '@storybook/telemetry': 7.6.17(encoding@0.1.13)
- '@storybook/types': 7.6.17
+ '@storybook/manager': 7.6.20
+ '@storybook/node-logger': 7.6.20
+ '@storybook/preview-api': 7.6.20
+ '@storybook/telemetry': 7.6.20(encoding@0.1.13)
+ '@storybook/types': 7.6.20
'@types/detect-port': 1.3.5
- '@types/node': 18.19.31
+ '@types/node': 18.19.64
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.8
better-opn: 3.0.2
chalk: 4.1.2
- cli-table3: 0.6.4
- compression: 1.7.4
- detect-port: 1.5.1
- express: 4.19.2
+ cli-table3: 0.6.5
+ compression: 1.7.5
+ detect-port: 1.6.1
+ express: 4.21.1
fs-extra: 11.2.0
globby: 11.1.0
- ip: 2.0.1
lodash: 4.17.21
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
read-pkg-up: 7.0.1
- semver: 7.6.0
+ semver: 7.6.3
telejson: 7.2.0
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util: 0.12.5
util-deprecate: 1.0.2
- watchpack: 2.4.1
- ws: 8.16.0
+ watchpack: 2.4.2
+ ws: 8.18.0
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
- '@storybook/csf-plugin@7.6.17':
+ '@storybook/csf-plugin@7.6.20(webpack-sources@3.2.3)':
dependencies:
- '@storybook/csf-tools': 7.6.17
- unplugin: 1.10.1
+ '@storybook/csf-tools': 7.6.20
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- supports-color
+ - webpack-sources
- '@storybook/csf-tools@7.6.17':
+ '@storybook/csf-tools@7.6.20':
dependencies:
- '@babel/generator': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
- '@storybook/csf': 0.1.4
- '@storybook/types': 7.6.17
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ '@storybook/csf': 0.1.11
+ '@storybook/types': 7.6.20
fs-extra: 11.2.0
- recast: 0.23.6
+ recast: 0.23.9
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- '@storybook/csf@0.1.4':
+ '@storybook/csf@0.1.11':
dependencies:
type-fest: 2.19.0
'@storybook/docs-mdx@0.1.0': {}
- '@storybook/docs-tools@7.6.17(encoding@0.1.13)':
+ '@storybook/docs-tools@7.6.20(encoding@0.1.13)':
dependencies:
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/preview-api': 7.6.17
- '@storybook/types': 7.6.17
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/preview-api': 7.6.20
+ '@storybook/types': 7.6.20
'@types/doctrine': 0.0.3
assert: 2.1.0
doctrine: 3.0.0
@@ -20246,15 +20676,15 @@ snapshots:
'@storybook/global@5.0.0': {}
- '@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/manager-api@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@storybook/channels': 7.6.17
'@storybook/client-logger': 7.6.17
'@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.4
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
'@storybook/router': 7.6.17
- '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/theming': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/types': 7.6.17
dequal: 2.0.3
lodash: 4.17.21
@@ -20266,50 +20696,87 @@ snapshots:
- react
- react-dom
- '@storybook/manager@7.6.17': {}
+ '@storybook/manager-api@7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
+ '@storybook/global': 5.0.0
+ '@storybook/router': 7.6.20
+ '@storybook/theming': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/types': 7.6.20
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ store2: 2.14.3
+ telejson: 7.2.0
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - react
+ - react-dom
+
+ '@storybook/manager@7.6.20': {}
'@storybook/mdx2-csf@1.1.0': {}
- '@storybook/node-logger@7.6.17': {}
+ '@storybook/node-logger@7.6.20': {}
- '@storybook/postinstall@7.6.17': {}
+ '@storybook/postinstall@7.6.20': {}
'@storybook/preview-api@7.6.17':
dependencies:
'@storybook/channels': 7.6.17
'@storybook/client-logger': 7.6.17
'@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.4
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
'@storybook/types': 7.6.17
- '@types/qs': 6.9.14
+ '@types/qs': 6.9.16
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.12.1
+ qs: 6.13.0
synchronous-promise: 2.0.17
ts-dedent: 2.2.0
util-deprecate: 1.0.2
- '@storybook/preview@7.6.17': {}
+ '@storybook/preview-api@7.6.20':
+ dependencies:
+ '@storybook/channels': 7.6.20
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-events': 7.6.20
+ '@storybook/csf': 0.1.11
+ '@storybook/global': 5.0.0
+ '@storybook/types': 7.6.20
+ '@types/qs': 6.9.16
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ qs: 6.13.0
+ synchronous-promise: 2.0.17
+ ts-dedent: 2.2.0
+ util-deprecate: 1.0.2
+
+ '@storybook/preview@7.6.20': {}
- '@storybook/react-dom-shim@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/react-dom-shim@7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- '@storybook/react-vite@7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@3.29.4)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))':
+ '@storybook/react-vite@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.5)(typescript@5.6.3)(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- '@storybook/builder-vite': 7.6.17(encoding@0.1.13)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))
- '@storybook/react': 7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.6.2)
- '@vitejs/plugin-react': 3.1.0(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))
- magic-string: 0.30.9
- react: 18.2.0
- react-docgen: 7.0.3
- react-dom: 18.2.0(react@18.2.0)
- vite: 4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.6.3)(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.5)
+ '@storybook/builder-vite': 7.6.20(encoding@0.1.13)(typescript@5.6.3)(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@storybook/react': 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
+ '@vitejs/plugin-react': 3.1.0(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))
+ magic-string: 0.30.12
+ react: 18.3.1
+ react-docgen: 7.1.0
+ react-dom: 18.3.1(react@18.3.1)
+ vite: 4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0)
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -20317,19 +20784,20 @@ snapshots:
- supports-color
- typescript
- vite-plugin-glimmerx
+ - webpack-sources
- '@storybook/react@7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@4.9.5)':
+ '@storybook/react@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/core-client': 7.6.17
- '@storybook/docs-tools': 7.6.17(encoding@0.1.13)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-client': 7.6.20
+ '@storybook/docs-tools': 7.6.20(encoding@0.1.13)
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.17
- '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.17
+ '@storybook/preview-api': 7.6.20
+ '@storybook/react-dom-shim': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/types': 7.6.20
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.31
+ '@types/node': 18.19.64
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -20337,9 +20805,9 @@ snapshots:
html-tags: 3.3.1
lodash: 4.17.21
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ts-dedent: 2.2.0
type-fest: 2.19.0
util-deprecate: 1.0.2
@@ -20349,18 +20817,18 @@ snapshots:
- encoding
- supports-color
- '@storybook/react@7.6.17(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.6.2)':
+ '@storybook/react@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)':
dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/core-client': 7.6.17
- '@storybook/docs-tools': 7.6.17(encoding@0.1.13)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-client': 7.6.20
+ '@storybook/docs-tools': 7.6.20(encoding@0.1.13)
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.17
- '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/types': 7.6.17
+ '@storybook/preview-api': 7.6.20
+ '@storybook/react-dom-shim': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/types': 7.6.20
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.31
+ '@types/node': 18.19.64
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -20368,14 +20836,14 @@ snapshots:
html-tags: 3.3.1
lodash: 4.17.21
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ts-dedent: 2.2.0
type-fest: 2.19.0
util-deprecate: 1.0.2
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- encoding
- supports-color
@@ -20384,13 +20852,19 @@ snapshots:
dependencies:
'@storybook/client-logger': 7.6.17
memoizerific: 1.11.3
- qs: 6.12.1
+ qs: 6.13.0
- '@storybook/telemetry@7.6.17(encoding@0.1.13)':
+ '@storybook/router@7.6.20':
dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/core-common': 7.6.17(encoding@0.1.13)
- '@storybook/csf-tools': 7.6.17
+ '@storybook/client-logger': 7.6.20
+ memoizerific: 1.11.3
+ qs: 6.13.0
+
+ '@storybook/telemetry@7.6.20(encoding@0.1.13)':
+ dependencies:
+ '@storybook/client-logger': 7.6.20
+ '@storybook/core-common': 7.6.20(encoding@0.1.13)
+ '@storybook/csf-tools': 7.6.20
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -20400,14 +20874,23 @@ snapshots:
- encoding
- supports-color
- '@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/theming@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
'@storybook/client-logger': 7.6.17
'@storybook/global': 5.0.0
memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@storybook/theming@7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@storybook/client-logger': 7.6.20
+ '@storybook/global': 5.0.0
+ memoizerific: 1.11.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
'@storybook/types@7.6.17':
dependencies:
@@ -20416,71 +20899,78 @@ snapshots:
'@types/express': 4.17.21
file-system-cache: 2.3.0
- '@swc/core-darwin-arm64@1.4.13':
+ '@storybook/types@7.6.20':
+ dependencies:
+ '@storybook/channels': 7.6.20
+ '@types/babel__core': 7.20.5
+ '@types/express': 4.17.21
+ file-system-cache: 2.3.0
+
+ '@swc/core-darwin-arm64@1.8.0':
optional: true
- '@swc/core-darwin-x64@1.4.13':
+ '@swc/core-darwin-x64@1.8.0':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.4.13':
+ '@swc/core-linux-arm-gnueabihf@1.8.0':
optional: true
- '@swc/core-linux-arm64-gnu@1.4.13':
+ '@swc/core-linux-arm64-gnu@1.8.0':
optional: true
- '@swc/core-linux-arm64-musl@1.4.13':
+ '@swc/core-linux-arm64-musl@1.8.0':
optional: true
- '@swc/core-linux-x64-gnu@1.4.13':
+ '@swc/core-linux-x64-gnu@1.8.0':
optional: true
- '@swc/core-linux-x64-musl@1.4.13':
+ '@swc/core-linux-x64-musl@1.8.0':
optional: true
- '@swc/core-win32-arm64-msvc@1.4.13':
+ '@swc/core-win32-arm64-msvc@1.8.0':
optional: true
- '@swc/core-win32-ia32-msvc@1.4.13':
+ '@swc/core-win32-ia32-msvc@1.8.0':
optional: true
- '@swc/core-win32-x64-msvc@1.4.13':
+ '@swc/core-win32-x64-msvc@1.8.0':
optional: true
- '@swc/core@1.4.13(@swc/helpers@0.5.9)':
+ '@swc/core@1.8.0(@swc/helpers@0.5.13)':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.6
+ '@swc/types': 0.1.14
optionalDependencies:
- '@swc/core-darwin-arm64': 1.4.13
- '@swc/core-darwin-x64': 1.4.13
- '@swc/core-linux-arm-gnueabihf': 1.4.13
- '@swc/core-linux-arm64-gnu': 1.4.13
- '@swc/core-linux-arm64-musl': 1.4.13
- '@swc/core-linux-x64-gnu': 1.4.13
- '@swc/core-linux-x64-musl': 1.4.13
- '@swc/core-win32-arm64-msvc': 1.4.13
- '@swc/core-win32-ia32-msvc': 1.4.13
- '@swc/core-win32-x64-msvc': 1.4.13
- '@swc/helpers': 0.5.9
+ '@swc/core-darwin-arm64': 1.8.0
+ '@swc/core-darwin-x64': 1.8.0
+ '@swc/core-linux-arm-gnueabihf': 1.8.0
+ '@swc/core-linux-arm64-gnu': 1.8.0
+ '@swc/core-linux-arm64-musl': 1.8.0
+ '@swc/core-linux-x64-gnu': 1.8.0
+ '@swc/core-linux-x64-musl': 1.8.0
+ '@swc/core-win32-arm64-msvc': 1.8.0
+ '@swc/core-win32-ia32-msvc': 1.8.0
+ '@swc/core-win32-x64-msvc': 1.8.0
+ '@swc/helpers': 0.5.13
'@swc/counter@0.1.3': {}
- '@swc/helpers@0.5.2':
+ '@swc/helpers@0.5.13':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
- '@swc/helpers@0.5.9':
+ '@swc/helpers@0.5.2':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
- '@swc/jest@0.2.36(@swc/core@1.4.13(@swc/helpers@0.5.9))':
+ '@swc/jest@0.2.37(@swc/core@1.8.0(@swc/helpers@0.5.13))':
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
'@swc/counter': 0.1.3
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.3.1
- '@swc/types@0.1.6':
+ '@swc/types@0.1.14':
dependencies:
'@swc/counter': 0.1.3
@@ -20488,18 +20978,18 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tailwindcss/typography@0.5.12(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2)))':
+ '@tailwindcss/typography@0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3)))':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3))
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.4
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.0
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -20507,22 +20997,22 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.6.2':
+ '@testing-library/jest-dom@6.6.3':
dependencies:
'@adobe/css-tools': 4.4.0
- aria-query: 5.3.0
+ aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
'@testing-library/dom': 10.4.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
'@types/react-dom': 18.2.4
@@ -20548,39 +21038,39 @@ snapshots:
'@tufjs/models@1.0.4':
dependencies:
'@tufjs/canonical-json': 1.0.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
'@types/acorn@4.0.6':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/aria-query@5.0.4': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.26.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- '@types/babel__traverse@7.20.5':
+ '@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.26.0
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 15.14.9
+ '@types/node': 20.2.5
'@types/buble@0.20.5':
dependencies:
@@ -20588,19 +21078,19 @@ snapshots:
'@types/canvas-confetti@1.6.4': {}
- '@types/color-convert@2.0.3':
+ '@types/color-convert@2.0.4':
dependencies:
- '@types/color-name': 1.1.4
+ '@types/color-name': 1.1.5
- '@types/color-name@1.1.4': {}
+ '@types/color-name@1.1.5': {}
'@types/color@3.0.6':
dependencies:
- '@types/color-convert': 2.0.3
+ '@types/color-convert': 2.0.4
'@types/connect@3.4.38':
dependencies:
- '@types/node': 15.14.9
+ '@types/node': 20.2.5
'@types/cross-spawn@6.0.6':
dependencies:
@@ -20618,42 +21108,42 @@ snapshots:
'@types/ejs@3.1.5': {}
- '@types/emscripten@1.39.10': {}
+ '@types/emscripten@1.39.13': {}
'@types/escodegen@0.0.6': {}
'@types/eslint-scope@3.7.7':
dependencies:
- '@types/eslint': 8.56.9
- '@types/estree': 1.0.5
+ '@types/eslint': 9.6.1
+ '@types/estree': 1.0.6
'@types/eslint-visitor-keys@1.0.0': {}
- '@types/eslint@8.56.9':
+ '@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/json-schema': 7.0.15
'@types/estree-jsx@1.0.5':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/estree@0.0.51': {}
- '@types/estree@1.0.5': {}
+ '@types/estree@1.0.6': {}
- '@types/express-serve-static-core@4.19.0':
+ '@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 15.14.9
- '@types/qs': 6.9.14
+ '@types/node': 20.2.5
+ '@types/qs': 6.9.16
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.0
- '@types/qs': 6.9.14
+ '@types/express-serve-static-core': 4.19.6
+ '@types/qs': 6.9.16
'@types/serve-static': 1.15.7
'@types/find-cache-dir@3.2.1': {}
@@ -20675,7 +21165,7 @@ snapshots:
'@types/hast@2.3.10':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/hast@3.0.4':
dependencies:
@@ -20726,35 +21216,35 @@ snapshots:
'@types/lodash.debounce@4.0.9':
dependencies:
- '@types/lodash': 4.17.5
+ '@types/lodash': 4.17.13
'@types/lodash.foreach@4.5.9':
dependencies:
- '@types/lodash': 4.17.5
+ '@types/lodash': 4.17.13
'@types/lodash.get@4.4.9':
dependencies:
- '@types/lodash': 4.17.5
+ '@types/lodash': 4.17.13
'@types/lodash.kebabcase@4.1.9':
dependencies:
- '@types/lodash': 4.17.5
+ '@types/lodash': 4.17.13
'@types/lodash.mapkeys@4.6.9':
dependencies:
- '@types/lodash': 4.17.5
+ '@types/lodash': 4.17.13
'@types/lodash.omit@4.5.9':
dependencies:
- '@types/lodash': 4.17.5
+ '@types/lodash': 4.17.13
- '@types/lodash@4.17.5': {}
+ '@types/lodash@4.17.13': {}
'@types/marked@5.0.2': {}
'@types/mdast@3.0.15':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/mdast@4.0.4':
dependencies:
@@ -20775,13 +21265,13 @@ snapshots:
'@types/node-fetch@2.6.11':
dependencies:
'@types/node': 20.2.5
- form-data: 4.0.0
+ form-data: 4.0.1
'@types/node@12.20.55': {}
'@types/node@15.14.9': {}
- '@types/node@18.19.31':
+ '@types/node@18.19.64':
dependencies:
undici-types: 5.26.5
@@ -20797,11 +21287,11 @@ snapshots:
'@types/pretty-hrtime@1.0.3': {}
- '@types/prismjs@1.26.3': {}
+ '@types/prismjs@1.26.5': {}
- '@types/prop-types@15.7.12': {}
+ '@types/prop-types@15.7.13': {}
- '@types/qs@6.9.14': {}
+ '@types/qs@6.9.16': {}
'@types/range-parser@1.2.7': {}
@@ -20811,13 +21301,13 @@ snapshots:
'@types/react@18.2.8':
dependencies:
- '@types/prop-types': 15.7.12
+ '@types/prop-types': 15.7.13
'@types/scheduler': 0.23.0
csstype: 3.1.3
'@types/refractor@3.4.1':
dependencies:
- '@types/prismjs': 1.26.3
+ '@types/prismjs': 1.26.5
'@types/resolve@1.20.6': {}
@@ -20834,12 +21324,12 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 15.14.9
+ '@types/node': 20.2.5
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 15.14.9
+ '@types/node': 20.2.5
'@types/send': 0.17.4
'@types/shelljs@0.8.15':
@@ -20855,7 +21345,7 @@ snapshots:
'@types/tough-cookie@4.0.5': {}
- '@types/unist@2.0.10': {}
+ '@types/unist@2.0.11': {}
'@types/unist@3.0.3': {}
@@ -20865,23 +21355,23 @@ snapshots:
'@types/yargs-parser@21.0.3': {}
- '@types/yargs@17.0.32':
+ '@types/yargs@17.0.33':
dependencies:
'@types/yargs-parser': 21.0.3
'@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
+ '@eslint-community/regexpp': 4.12.1
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
'@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
- debug: 4.3.4
+ debug: 4.3.7
eslint: 7.32.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare-lite: 1.4.0
- semver: 7.6.0
+ semver: 7.6.3
tsutils: 3.21.0(typescript@4.9.5)
optionalDependencies:
typescript: 4.9.5
@@ -20946,7 +21436,7 @@ snapshots:
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5)
- debug: 4.3.4
+ debug: 4.3.7
eslint: 7.32.0
optionalDependencies:
typescript: 4.9.5
@@ -20958,22 +21448,22 @@ snapshots:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
- debug: 4.3.4
+ debug: 4.3.7
eslint: 7.32.0
optionalDependencies:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.2)':
+ '@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2)
- debug: 4.3.4
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
+ debug: 4.3.7
eslint: 7.32.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
@@ -20991,7 +21481,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
'@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
- debug: 4.3.4
+ debug: 4.3.7
eslint: 7.32.0
tsutils: 3.21.0(typescript@4.9.5)
optionalDependencies:
@@ -21014,11 +21504,11 @@ snapshots:
dependencies:
'@typescript-eslint/types': 3.10.1
'@typescript-eslint/visitor-keys': 3.10.1
- debug: 4.3.4
+ debug: 4.3.7
glob: 7.2.3
is-glob: 4.0.3
lodash: 4.17.21
- semver: 7.6.0
+ semver: 7.6.3
tsutils: 3.21.0(typescript@3.9.10)
optionalDependencies:
typescript: 3.9.10
@@ -21029,10 +21519,10 @@ snapshots:
dependencies:
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/visitor-keys': 4.33.0
- debug: 4.3.4
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.6.3
tsutils: 3.21.0(typescript@4.9.5)
optionalDependencies:
typescript: 4.9.5
@@ -21043,33 +21533,33 @@ snapshots:
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.6.3
tsutils: 3.21.0(typescript@4.9.5)
optionalDependencies:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
- tsutils: 3.21.0(typescript@5.6.2)
+ semver: 7.6.3
+ tsutils: 3.21.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
'@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@7.32.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
@@ -21077,7 +21567,7 @@ snapshots:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
eslint: 7.32.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
@@ -21098,21 +21588,21 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@vercel/analytics@1.2.2(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
+ '@vercel/analytics@1.3.2(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
server-only: 0.0.1
optionalDependencies:
- next: 13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
+ next: 13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
- '@vitejs/plugin-react@3.1.0(vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3))':
+ '@vitejs/plugin-react@3.1.0(vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0))':
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
magic-string: 0.27.0
- react-refresh: 0.14.0
- vite: 4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3)
+ react-refresh: 0.14.2
+ vite: 4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
@@ -21199,7 +21689,7 @@ snapshots:
'@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)':
dependencies:
esbuild: 0.18.20
- tslib: 2.6.2
+ tslib: 2.8.1
'@yarnpkg/fslib@2.10.3':
dependencies:
@@ -21208,7 +21698,7 @@ snapshots:
'@yarnpkg/libzip@2.3.0':
dependencies:
- '@types/emscripten': 1.39.10
+ '@types/emscripten': 1.39.13
tslib: 1.14.1
JSONStream@1.3.5:
@@ -21229,12 +21719,8 @@ snapshots:
acorn-globals@7.0.1:
dependencies:
- acorn: 8.11.3
- acorn-walk: 8.3.2
-
- acorn-import-assertions@1.9.0(acorn@8.11.3):
- dependencies:
- acorn: 8.11.3
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
acorn-jsx@3.0.1:
dependencies:
@@ -21248,13 +21734,15 @@ snapshots:
dependencies:
acorn: 7.4.1
- acorn-jsx@5.3.2(acorn@8.11.3):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.11.3
+ acorn: 8.14.0
acorn-walk@7.2.0: {}
- acorn-walk@8.3.2: {}
+ acorn-walk@8.3.4:
+ dependencies:
+ acorn: 8.14.0
acorn@3.3.0: {}
@@ -21264,7 +21752,7 @@ snapshots:
acorn@7.4.1: {}
- acorn@8.11.3: {}
+ acorn@8.14.0: {}
address@1.2.2: {}
@@ -21272,7 +21760,7 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -21296,32 +21784,32 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.12.0:
+ ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
+ fast-uri: 3.0.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- uri-js: 4.4.1
- algoliasearch@4.23.3:
- dependencies:
- '@algolia/cache-browser-local-storage': 4.23.3
- '@algolia/cache-common': 4.23.3
- '@algolia/cache-in-memory': 4.23.3
- '@algolia/client-account': 4.23.3
- '@algolia/client-analytics': 4.23.3
- '@algolia/client-common': 4.23.3
- '@algolia/client-personalization': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/logger-common': 4.23.3
- '@algolia/logger-console': 4.23.3
- '@algolia/recommend': 4.23.3
- '@algolia/requester-browser-xhr': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/requester-node-http': 4.23.3
- '@algolia/transporter': 4.23.3
-
- anser@2.1.1: {}
+ algoliasearch@4.24.0:
+ dependencies:
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-account': 4.24.0
+ '@algolia/client-analytics': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-personalization': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/recommend': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ anser@2.3.0: {}
ansi-align@3.0.1:
dependencies:
@@ -21353,9 +21841,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
-
- ansi-sequence-parser@1.1.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@2.2.1: {}
@@ -21401,12 +21887,14 @@ snapshots:
aria-hidden@1.2.4:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
aria-query@5.3.0:
dependencies:
dequal: 2.0.3
+ aria-query@5.3.2: {}
+
arr-diff@4.0.0: {}
arr-flatten@1.1.0: {}
@@ -21473,14 +21961,7 @@ snapshots:
es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
- array.prototype.toreversed@1.1.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
- array.prototype.tosorted@1.1.3:
+ array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -21517,17 +21998,17 @@ snapshots:
ast-types@0.16.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
astral-regex@1.0.0: {}
astral-regex@2.0.0: {}
- astring@1.8.6: {}
+ astring@1.9.0: {}
async-limiter@1.0.1: {}
- async@3.2.5: {}
+ async@3.2.6: {}
asynckit@0.4.0: {}
@@ -21537,53 +22018,49 @@ snapshots:
dependencies:
gulp-header: 1.8.12
- autoprefixer@10.4.19(postcss@8.4.38):
+ autoprefixer@10.4.20(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001609
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001677
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.38
+ picocolors: 1.1.1
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.0.0
- axe-core@4.7.0: {}
+ axe-core@4.10.2: {}
- axe-core@4.9.0: {}
+ axobject-query@4.1.0: {}
- axobject-query@3.2.1:
- dependencies:
- dequal: 2.0.3
+ b4a@1.6.7: {}
- b4a@1.6.6: {}
-
- babel-core@7.0.0-bridge.0(@babel/core@7.24.4):
+ babel-core@7.0.0-bridge.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
babel-eslint@10.1.0(eslint@7.32.0):
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
eslint: 7.32.0
eslint-visitor-keys: 1.3.0
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- babel-jest@29.7.0(@babel/core@7.24.4):
+ babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.24.4)
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -21592,13 +22069,13 @@ snapshots:
babel-plugin-add-module-exports@1.0.4: {}
- babel-plugin-dev-expression@0.2.3(@babel/core@7.24.4):
+ babel-plugin-dev-expression@0.2.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.9
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -21608,104 +22085,112 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
- babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.4):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4)
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.4):
+ babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.24.4)
- core-js-compat: 3.36.1
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4)
- core-js-compat: 3.36.1
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.4):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- babel-plugin-transform-next-use-client@1.1.1(@babel/core@7.24.4):
+ babel-plugin-transform-next-use-client@1.1.1(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4):
- dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
babel-preset-env-modules@1.0.1:
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.4)
- browserslist: 4.23.0
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.26.0)
+ browserslist: 4.24.2
lodash: 4.17.21
transitivePeerDependencies:
- supports-color
- babel-preset-jest@29.6.3(@babel/core@7.24.4):
+ babel-preset-jest@29.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
bail@2.0.2: {}
balanced-match@1.0.2: {}
- bare-events@2.2.2:
+ bare-events@2.5.0:
optional: true
- bare-fs@2.2.3:
+ bare-fs@2.3.5:
dependencies:
- bare-events: 2.2.2
- bare-path: 2.1.1
- streamx: 2.16.1
+ bare-events: 2.5.0
+ bare-path: 2.1.3
+ bare-stream: 2.3.2
+ optional: true
+
+ bare-os@2.4.4:
optional: true
- bare-os@2.2.1:
+ bare-path@2.1.3:
+ dependencies:
+ bare-os: 2.4.4
optional: true
- bare-path@2.1.1:
+ bare-stream@2.3.2:
dependencies:
- bare-os: 2.2.1
+ streamx: 2.20.1
optional: true
- base-x@3.0.9:
+ base-x@3.0.10:
dependencies:
safe-buffer: 5.2.1
@@ -21747,7 +22232,7 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- body-parser@1.20.2:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -21757,7 +22242,7 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
@@ -21807,9 +22292,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- braces@3.0.2:
+ braces@3.0.3:
dependencies:
- fill-range: 7.0.1
+ fill-range: 7.1.1
breakword@1.0.6:
dependencies:
@@ -21821,12 +22306,12 @@ snapshots:
dependencies:
pako: 0.2.9
- browserslist@4.23.0:
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001609
- electron-to-chromium: 1.4.736
- node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ caniuse-lite: 1.0.30001677
+ electron-to-chromium: 1.5.50
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
bser@2.1.1:
dependencies:
@@ -21855,10 +22340,6 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtins@5.1.0:
- dependencies:
- semver: 7.6.0
-
bundle-require@3.1.2(esbuild@0.15.18):
dependencies:
esbuild: 0.15.18
@@ -21868,8 +22349,6 @@ snapshots:
dependencies:
streamsearch: 1.1.0
- bytes@3.0.0: {}
-
bytes@3.1.2: {}
cac@6.7.14: {}
@@ -21899,16 +22378,16 @@ snapshots:
cacache@17.1.4:
dependencies:
- '@npmcli/fs': 3.1.0
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
- glob: 10.3.12
+ glob: 10.4.5
lru-cache: 7.18.3
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-collect: 1.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 4.0.0
- ssri: 10.0.5
+ ssri: 10.0.6
tar: 6.2.1
unique-filename: 3.0.0
@@ -21949,7 +22428,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.2
+ tslib: 2.8.1
camelcase-css@2.0.1: {}
@@ -21965,14 +22444,14 @@ snapshots:
camelcase@7.0.1: {}
- caniuse-lite@1.0.30001609: {}
+ caniuse-lite@1.0.30001677: {}
- canvas-confetti@1.9.2: {}
+ canvas-confetti@1.9.3: {}
capital-case@1.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
upper-case-first: 2.0.2
ccount@2.0.1: {}
@@ -22016,7 +22495,7 @@ snapshots:
path-case: 3.0.4
sentence-case: 3.0.4
snake-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
char-regex@1.0.2: {}
@@ -22041,7 +22520,7 @@ snapshots:
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
@@ -22054,7 +22533,7 @@ snapshots:
chownr@2.0.0: {}
- chrome-trace-event@1.0.3: {}
+ chrome-trace-event@1.0.4: {}
ci-info@3.9.0: {}
@@ -22062,7 +22541,7 @@ snapshots:
dependencies:
consola: 3.2.3
- cjs-module-lexer@1.2.3: {}
+ cjs-module-lexer@1.4.1: {}
class-utils@0.3.6:
dependencies:
@@ -22095,7 +22574,7 @@ snapshots:
cli-spinners@2.9.2: {}
- cli-table3@0.6.4:
+ cli-table3@0.6.5:
dependencies:
string-width: 4.2.3
optionalDependencies:
@@ -22153,13 +22632,13 @@ snapshots:
clsx@1.2.1: {}
- clsx@2.1.0: {}
+ clsx@2.1.1: {}
- cmdk@0.2.1(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ cmdk@0.2.1(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
@@ -22226,7 +22705,7 @@ snapshots:
commander@7.2.0: {}
- comment-json@4.2.3:
+ comment-json@4.2.5:
dependencies:
array-timsort: 1.0.3
core-util-is: 1.0.3
@@ -22255,16 +22734,16 @@ snapshots:
compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
- compression@1.7.4:
+ compression@1.7.5:
dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
+ bytes: 3.1.2
compressible: 2.0.18
debug: 2.6.9(supports-color@6.1.0)
+ negotiator: 0.6.4
on-headers: 1.0.2
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
@@ -22291,11 +22770,13 @@ snapshots:
lodash: 4.17.21
rxjs: 7.8.1
shell-quote: 1.8.1
- spawn-command: 0.0.2-1
+ spawn-command: 0.0.2
supports-color: 8.1.1
tree-kill: 1.2.2
yargs: 17.7.2
+ confbox@0.1.8: {}
+
config-chain@1.1.13:
dependencies:
ini: 1.3.8
@@ -22318,7 +22799,7 @@ snapshots:
constant-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
upper-case: 2.0.2
content-disposition@0.5.4:
@@ -22327,16 +22808,17 @@ snapshots:
content-type@1.0.5: {}
- contentlayer2@0.5.1(esbuild@0.20.2):
+ contentlayer2@0.5.3(acorn@8.14.0)(esbuild@0.18.20):
dependencies:
- '@contentlayer2/cli': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/client': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/core': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/source-files': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/source-remote-files': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/utils': 0.5.1
+ '@contentlayer2/cli': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/client': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/core': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/source-files': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/source-remote-files': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/utils': 0.5.3
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- esbuild
- markdown-wasm
- supports-color
@@ -22360,23 +22842,23 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie@0.6.0: {}
+ cookie@0.7.1: {}
copy-descriptor@0.1.1: {}
- core-js-compat@3.36.1:
+ core-js-compat@3.39.0:
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.2
- core-js@3.36.1: {}
+ core-js@3.39.0: {}
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@4.9.5))(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5):
+ cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@4.9.5))(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5):
dependencies:
'@types/node': 20.5.1
cosmiconfig: 8.3.6(typescript@4.9.5)
- ts-node: 10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@15.14.9)(typescript@4.9.5)
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)
typescript: 4.9.5
cosmiconfig@8.3.6(typescript@4.9.5):
@@ -22388,13 +22870,22 @@ snapshots:
optionalDependencies:
typescript: 4.9.5
- create-jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5)):
+ cosmiconfig@9.0.0(typescript@4.9.5):
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ optionalDependencies:
+ typescript: 4.9.5
+
+ create-jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ jest-config: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -22491,7 +22982,7 @@ snapshots:
d@1.0.2:
dependencies:
es5-ext: 0.10.64
- type: 2.7.2
+ type: 2.7.3
damerau-levenshtein@1.0.8: {}
@@ -22527,7 +23018,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
debounce@1.2.1: {}
@@ -22545,6 +23036,10 @@ snapshots:
dependencies:
ms: 2.1.2
+ debug@4.3.7:
+ dependencies:
+ ms: 2.1.3
+
decamelize-keys@1.1.1:
dependencies:
decamelize: 1.2.0
@@ -22652,10 +23147,10 @@ snapshots:
dependencies:
execa: 5.1.1
- detect-port@1.5.1:
+ detect-port@1.6.1:
dependencies:
address: 1.2.2
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -22721,7 +23216,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
dot-prop@5.3.0:
dependencies:
@@ -22756,9 +23251,9 @@ snapshots:
ejs@3.1.10:
dependencies:
- jake: 10.8.7
+ jake: 10.9.2
- electron-to-chromium@1.4.736: {}
+ electron-to-chromium@1.5.50: {}
emittery@0.13.1: {}
@@ -22772,6 +23267,8 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
@@ -22787,7 +23284,7 @@ snapshots:
memory-fs: 0.5.0
tapable: 1.1.3
- enhanced-resolve@5.16.0:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -22805,7 +23302,7 @@ snapshots:
env-paths@2.2.1: {}
- envinfo@7.12.0: {}
+ envinfo@7.14.0: {}
err-code@2.0.3: {}
@@ -22834,7 +23331,7 @@ snapshots:
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
- globalthis: 1.0.3
+ globalthis: 1.0.4
gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
@@ -22850,10 +23347,10 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.13.1
+ object-inspect: 1.13.2
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
safe-array-concat: 1.1.2
safe-regex-test: 1.0.3
string.prototype.trim: 1.2.9
@@ -22872,7 +23369,7 @@ snapshots:
es-errors@1.3.0: {}
- es-iterator-helpers@1.0.18:
+ es-iterator-helpers@1.1.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -22881,17 +23378,17 @@ snapshots:
es-set-tostringtag: 2.0.3
function-bind: 1.1.2
get-intrinsic: 1.2.4
- globalthis: 1.0.3
+ globalthis: 1.0.4
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.7
- iterator.prototype: 1.1.2
+ iterator.prototype: 1.1.3
safe-array-concat: 1.1.2
es-module-lexer@0.9.3: {}
- es-module-lexer@1.5.0: {}
+ es-module-lexer@1.5.4: {}
es-object-atoms@1.0.0:
dependencies:
@@ -22931,6 +23428,20 @@ snapshots:
d: 1.0.2
ext: 1.7.0
+ esast-util-from-estree@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+
+ esast-util-from-js@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ acorn: 8.14.0
+ esast-util-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
esbuild-android-64@0.15.18:
optional: true
@@ -22981,13 +23492,13 @@ snapshots:
esbuild-plugin-alias@0.2.1: {}
- esbuild-plugin-raw@0.1.8(esbuild@0.20.2):
+ esbuild-plugin-raw@0.1.8(esbuild@0.18.20):
dependencies:
- esbuild: 0.20.2
+ esbuild: 0.18.20
- esbuild-register@3.5.0(esbuild@0.18.20):
+ esbuild-register@3.6.0(esbuild@0.18.20):
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
esbuild: 0.18.20
transitivePeerDependencies:
- supports-color
@@ -23054,33 +23565,7 @@ snapshots:
'@esbuild/win32-ia32': 0.18.20
'@esbuild/win32-x64': 0.18.20
- esbuild@0.20.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
- '@esbuild/linux-riscv64': 0.20.2
- '@esbuild/linux-s390x': 0.20.2
- '@esbuild/linux-x64': 0.20.2
- '@esbuild/netbsd-x64': 0.20.2
- '@esbuild/openbsd-x64': 0.20.2
- '@esbuild/sunos-x64': 0.20.2
- '@esbuild/win32-arm64': 0.20.2
- '@esbuild/win32-ia32': 0.20.2
- '@esbuild/win32-x64': 0.20.2
-
- escalade@3.1.2: {}
+ escalade@3.2.0: {}
escape-carriage@1.3.1: {}
@@ -23104,19 +23589,19 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-airbnb-base@14.2.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint@7.32.0):
+ eslint-config-airbnb-base@14.2.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint@7.32.0):
dependencies:
confusing-browser-globals: 1.0.11
eslint: 7.32.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
object.assign: 4.1.5
object.entries: 1.1.8
- eslint-config-airbnb-typescript@12.3.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5):
+ eslint-config-airbnb-typescript@12.3.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5):
dependencies:
'@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5)
- eslint-config-airbnb: 18.2.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)
- eslint-config-airbnb-base: 14.2.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint@7.32.0)
+ eslint-config-airbnb: 18.2.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0)
+ eslint-config-airbnb-base: 14.2.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint@7.32.0)
transitivePeerDependencies:
- eslint
- eslint-plugin-import
@@ -23126,40 +23611,41 @@ snapshots:
- supports-color
- typescript
- eslint-config-airbnb@18.2.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0):
+ eslint-config-airbnb@18.2.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0):
dependencies:
eslint: 7.32.0
- eslint-config-airbnb-base: 14.2.1(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint@7.32.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(eslint@7.32.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
+ eslint-config-airbnb-base: 14.2.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint@7.32.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@7.32.0)
+ eslint-plugin-react: 7.37.2(eslint@7.32.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0)
object.assign: 4.1.5
object.entries: 1.1.8
- eslint-config-next@13.5.6(eslint@7.32.0)(typescript@5.6.2):
+ eslint-config-next@13.5.7(eslint@7.32.0)(typescript@5.6.3):
dependencies:
- '@next/eslint-plugin-next': 13.5.6
- '@rushstack/eslint-patch': 1.10.2
- '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.6.2)
+ '@next/eslint-plugin-next': 13.5.7
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.6.3)
eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@7.32.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.6.1)(eslint@7.32.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(eslint@7.32.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@7.32.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@7.32.0)
+ eslint-plugin-react: 7.37.2(eslint@7.32.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- supports-color
eslint-config-prettier@8.10.0(eslint@7.32.0):
dependencies:
eslint: 7.32.0
- eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jest@24.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.0(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5):
+ eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0))(eslint-plugin-jest@24.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.37.2(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5):
dependencies:
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
@@ -23167,10 +23653,10 @@ snapshots:
confusing-browser-globals: 1.0.11
eslint: 7.32.0
eslint-plugin-flowtype: 5.10.0(eslint@7.32.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0)
- eslint-plugin-react: 7.34.1(eslint@7.32.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@7.32.0)
+ eslint-plugin-react: 7.37.2(eslint@7.32.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0)
optionalDependencies:
eslint-plugin-jest: 24.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)
typescript: 4.9.5
@@ -23185,16 +23671,16 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0):
+ eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.31.0)(eslint@7.32.0):
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
eslint: 7.32.0
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
glob: 7.2.3
is-glob: 4.0.3
resolve: 1.22.8
@@ -23202,24 +23688,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@7.32.0):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@7.32.0):
dependencies:
- debug: 4.3.4
- enhanced-resolve: 5.16.0
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.3.7
+ enhanced-resolve: 5.17.1
eslint: 7.32.0
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@7.32.0))(eslint@7.32.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.6.1)(eslint@7.32.0)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@7.32.0))(eslint@7.32.0)
fast-glob: 3.3.2
- get-tsconfig: 4.7.3
- is-core-module: 2.13.1
+ get-tsconfig: 4.8.1
+ is-bun-module: 1.2.1
is-glob: 4.0.3
+ optionalDependencies:
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-loader@4.0.2(eslint@7.32.0)(webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)):
+ eslint-loader@4.0.2(eslint@7.32.0)(webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12)):
dependencies:
eslint: 7.32.0
find-cache-dir: 3.3.2
@@ -23227,27 +23715,27 @@ snapshots:
loader-utils: 2.0.4
object-hash: 2.2.0
schema-utils: 2.7.1
- webpack: 5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)
+ webpack: 5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12)
- eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0))(eslint@7.32.0):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.31.0)(eslint@7.32.0))(eslint@7.32.0):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0)
+ eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.31.0)(eslint@7.32.0)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@7.32.0))(eslint@7.32.0):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@7.32.0))(eslint@7.32.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.6.3)
eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@7.32.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@7.32.0)
transitivePeerDependencies:
- supports-color
@@ -23263,35 +23751,9 @@ snapshots:
lodash: 4.17.21
string-natural-compare: 3.0.1
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0):
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 7.32.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0))(eslint@7.32.0)
- hasown: 2.0.2
- is-core-module: 2.13.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.0
- semver: 6.3.1
- tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.6.1)(eslint@7.32.0):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0):
dependencies:
+ '@rtsao/scc': 1.1.0
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
@@ -23300,15 +23762,16 @@ snapshots:
doctrine: 2.1.0
eslint: 7.32.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@7.32.0))(eslint@7.32.0)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.31.0)(eslint@7.32.0))(eslint@7.32.0)
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
object.groupby: 1.0.3
object.values: 1.2.0
semver: 6.3.1
+ string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
'@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5)
@@ -23327,32 +23790,31 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@7.32.0):
dependencies:
- '@babel/runtime': 7.24.4
- aria-query: 5.3.0
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.7.0
- axobject-query: 3.2.1
+ axe-core: 4.10.2
+ axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.18
eslint: 7.32.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
- object.entries: 1.1.8
object.fromentries: 2.0.8
+ safe-regex-test: 1.0.3
+ string.prototype.includes: 2.0.1
eslint-plugin-node@11.1.0(eslint@7.32.0):
dependencies:
eslint: 7.32.0
eslint-plugin-es: 3.0.1(eslint@7.32.0)
eslint-utils: 2.1.0
- ignore: 5.3.1
+ ignore: 5.3.2
minimatch: 3.1.2
resolve: 1.22.8
semver: 6.3.1
@@ -23365,35 +23827,35 @@ snapshots:
optionalDependencies:
eslint-config-prettier: 8.10.0(eslint@7.32.0)
- eslint-plugin-promise@6.1.1(eslint@7.32.0):
+ eslint-plugin-promise@6.6.0(eslint@7.32.0):
dependencies:
eslint: 7.32.0
- eslint-plugin-react-hooks@4.6.0(eslint@7.32.0):
+ eslint-plugin-react-hooks@4.6.2(eslint@7.32.0):
dependencies:
eslint: 7.32.0
- eslint-plugin-react@7.34.1(eslint@7.32.0):
+ eslint-plugin-react@7.37.2(eslint@7.32.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
- array.prototype.toreversed: 1.1.2
- array.prototype.tosorted: 1.1.3
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.1.0
eslint: 7.32.0
estraverse: 5.3.0
+ hasown: 2.0.2
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
object.entries: 1.1.8
object.fromentries: 2.0.8
- object.hasown: 1.1.4
object.values: 1.2.0
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
string.prototype.matchall: 4.0.11
+ string.prototype.repeat: 1.0.0
eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0):
dependencies:
@@ -23440,17 +23902,17 @@ snapshots:
eslint@5.16.0:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.26.2
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
- debug: 4.3.4
+ debug: 4.3.7
doctrine: 3.0.0
eslint-scope: 4.0.3
eslint-utils: 1.4.3
eslint-visitor-keys: 1.3.0
espree: 5.0.1
- esquery: 1.5.0
+ esquery: 1.6.0
esutils: 2.0.3
file-entry-cache: 5.0.1
functional-red-black-tree: 1.0.1
@@ -23487,7 +23949,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.7
doctrine: 3.0.0
enquirer: 2.4.1
escape-string-regexp: 4.0.0
@@ -23495,7 +23957,7 @@ snapshots:
eslint-utils: 2.1.0
eslint-visitor-keys: 2.1.0
espree: 7.3.1
- esquery: 1.5.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
@@ -23512,10 +23974,10 @@ snapshots:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
progress: 2.0.3
regexpp: 3.2.0
- semver: 7.6.0
+ semver: 7.6.3
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
table: 6.8.2
@@ -23529,7 +23991,7 @@ snapshots:
d: 1.0.2
es5-ext: 0.10.64
event-emitter: 0.3.5
- type: 2.7.2
+ type: 2.7.3
espree@3.5.4:
dependencies:
@@ -23556,7 +24018,7 @@ snapshots:
esprima@4.0.1: {}
- esquery@1.5.0:
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -23570,7 +24032,7 @@ snapshots:
estree-util-attach-comments@3.0.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-util-build-jsx@3.0.1:
dependencies:
@@ -23581,15 +24043,20 @@ snapshots:
estree-util-is-identifier-name@3.0.0: {}
+ estree-util-scope@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ devlop: 1.1.0
+
estree-util-to-js@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
- astring: 1.8.6
+ astring: 1.9.0
source-map: 0.7.4
- estree-util-value-to-estree@3.1.2:
+ estree-util-value-to-estree@3.2.1:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-util-visit@2.0.0:
dependencies:
@@ -23600,7 +24067,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
esutils@2.0.3: {}
@@ -23685,34 +24152,34 @@ snapshots:
exponential-backoff@3.1.1: {}
- express@4.19.2:
+ express@4.21.1:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.6.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9(supports-color@6.1.0)
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -23723,7 +24190,7 @@ snapshots:
ext@1.7.0:
dependencies:
- type: 2.7.2
+ type: 2.7.3
extend-shallow@2.0.1:
dependencies:
@@ -23778,7 +24245,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -23786,6 +24253,8 @@ snapshots:
fast-memoize@2.5.2: {}
+ fast-uri@3.0.3: {}
+
fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -23849,14 +24318,14 @@ snapshots:
repeat-string: 1.6.1
to-regex-range: 2.1.1
- fill-range@7.0.1:
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9(supports-color@6.1.0)
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -23898,7 +24367,7 @@ snapshots:
find-yarn-workspace-root2@1.2.16:
dependencies:
- micromatch: 4.0.5
+ micromatch: 4.0.8
pkg-dir: 4.2.0
findup-sync@3.0.0(supports-color@6.1.0):
@@ -23914,7 +24383,7 @@ snapshots:
dependencies:
detect-file: 1.0.0
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.8
resolve-dir: 1.0.1
fined@2.0.0:
@@ -23945,7 +24414,7 @@ snapshots:
flatted@3.3.1: {}
- flow-parser@0.233.0: {}
+ flow-parser@0.251.1: {}
for-each@0.3.3:
dependencies:
@@ -23957,14 +24426,14 @@ snapshots:
dependencies:
for-in: 1.0.2
- foreground-child@3.1.1:
+ foreground-child@3.3.0:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
form-data-encoder@2.1.4: {}
- form-data@4.0.0:
+ form-data@4.0.1:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -23986,21 +24455,21 @@ snapshots:
dependencies:
map-cache: 0.2.2
- framer-motion@10.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ framer-motion@10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- framer-motion@11.2.12(@emotion/is-prop-valid@0.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ framer-motion@11.11.11(@emotion/is-prop-valid@0.8.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
fresh@0.5.2: {}
@@ -24042,7 +24511,7 @@ snapshots:
fs-minipass@3.0.3:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
fs-readdir-recursive@1.1.0: {}
@@ -24111,7 +24580,7 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.2.4
- get-tsconfig@4.7.3:
+ get-tsconfig@4.8.1:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -24123,8 +24592,8 @@ snapshots:
consola: 3.2.3
defu: 6.1.4
node-fetch-native: 1.6.4
- nypm: 0.3.8
- ohash: 1.1.3
+ nypm: 0.3.12
+ ohash: 1.1.4
pathe: 1.1.2
tar: 6.2.1
@@ -24157,13 +24626,14 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.3.12:
+ glob@10.4.5:
dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.4
- minipass: 7.0.4
- path-scurry: 1.10.2
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
glob@7.1.7:
dependencies:
@@ -24229,16 +24699,17 @@ snapshots:
dependencies:
type-fest: 0.20.2
- globalthis@1.0.3:
+ globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
+ gopd: 1.0.1
globby@11.1.0:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -24246,7 +24717,7 @@ snapshots:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 4.0.0
@@ -24322,7 +24793,7 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.4
+ uglify-js: 3.19.3
hard-rejection@2.1.0: {}
@@ -24384,7 +24855,7 @@ snapshots:
'@types/hast': 3.0.4
devlop: 1.1.0
hast-util-from-parse5: 8.0.1
- parse5: 7.2.0
+ parse5: 7.2.1
vfile: 6.0.3
vfile-message: 4.0.2
@@ -24411,7 +24882,7 @@ snapshots:
hast-util-to-estree@3.1.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
@@ -24444,9 +24915,9 @@ snapshots:
stringify-entities: 4.0.4
zwitch: 2.0.4
- hast-util-to-jsx-runtime@2.3.0:
+ hast-util-to-jsx-runtime@2.3.2:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/hast': 3.0.4
'@types/unist': 3.0.3
comma-separated-tokens: 2.0.3
@@ -24493,7 +24964,7 @@ snapshots:
header-case@2.0.4:
dependencies:
capital-case: 1.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
homedir-polyfill@1.0.3:
dependencies:
@@ -24523,16 +24994,15 @@ snapshots:
html-void-elements@3.0.0: {}
- htmlnano@2.1.0(postcss@8.4.38)(srcset@4.0.0)(svgo@2.8.0)(terser@5.30.3)(typescript@4.9.5):
+ htmlnano@2.1.1(postcss@8.4.47)(svgo@2.8.0)(terser@5.36.0)(typescript@4.9.5):
dependencies:
- cosmiconfig: 8.3.6(typescript@4.9.5)
+ cosmiconfig: 9.0.0(typescript@4.9.5)
posthtml: 0.16.6
timsort: 0.3.0
optionalDependencies:
- postcss: 8.4.38
- srcset: 4.0.0
+ postcss: 8.4.47
svgo: 2.8.0
- terser: 5.30.3
+ terser: 5.36.0
transitivePeerDependencies:
- typescript
@@ -24557,7 +25027,7 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -24569,14 +25039,14 @@ snapshots:
https-proxy-agent@4.0.0:
dependencies:
agent-base: 5.1.1
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -24606,13 +25076,13 @@ snapshots:
ieee754@1.2.1: {}
- ignore-walk@6.0.4:
+ ignore-walk@6.0.5:
dependencies:
- minimatch: 9.0.4
+ minimatch: 9.0.5
ignore@4.0.6: {}
- ignore@5.3.1: {}
+ ignore@5.3.2: {}
imagescript@1.3.0: {}
@@ -24628,7 +25098,7 @@ snapshots:
pkg-dir: 3.0.0
resolve-cwd: 2.0.0
- import-local@3.1.0:
+ import-local@3.2.0:
dependencies:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
@@ -24652,7 +25122,7 @@ snapshots:
ini@2.0.0: {}
- ini@4.1.2: {}
+ ini@4.1.3: {}
inline-style-parser@0.1.1: {}
@@ -24704,12 +25174,12 @@ snapshots:
intersection-observer@0.10.0: {}
- intl-messageformat@10.5.11:
+ intl-messageformat@10.7.5:
dependencies:
- '@formatjs/ecma402-abstract': 1.18.2
- '@formatjs/fast-memoize': 2.2.0
- '@formatjs/icu-messageformat-parser': 2.7.6
- tslib: 2.6.2
+ '@formatjs/ecma402-abstract': 2.2.3
+ '@formatjs/fast-memoize': 2.2.3
+ '@formatjs/icu-messageformat-parser': 2.9.3
+ tslib: 2.8.1
invariant@2.2.4:
dependencies:
@@ -24720,8 +25190,6 @@ snapshots:
jsbn: 1.1.0
sprintf-js: 1.1.3
- ip@2.0.1: {}
-
ipaddr.js@1.9.1: {}
is-absolute-url@3.0.3: {}
@@ -24784,13 +25252,17 @@ snapshots:
is-buffer@2.0.5: {}
+ is-bun-module@1.2.1:
+ dependencies:
+ semver: 7.6.3
+
is-callable@1.2.7: {}
is-ci@3.0.1:
dependencies:
ci-info: 3.9.0
- is-core-module@2.13.1:
+ is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -24916,10 +25388,6 @@ snapshots:
is-potential-custom-element-name@1.0.1: {}
- is-reference@3.0.2:
- dependencies:
- '@types/estree': 1.0.5
-
is-regex@1.1.4:
dependencies:
call-bind: 1.0.7
@@ -25006,8 +25474,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -25016,11 +25484,11 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
@@ -25032,7 +25500,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -25043,7 +25511,7 @@ snapshots:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- iterator.prototype@1.1.2:
+ iterator.prototype@1.1.3:
dependencies:
define-properties: 1.2.1
get-intrinsic: 1.2.4
@@ -25051,15 +25519,15 @@ snapshots:
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
- jackspeak@2.3.6:
+ jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jake@10.8.7:
+ jake@10.9.2:
dependencies:
- async: 3.2.5
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -25096,16 +25564,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5)):
+ jest-cli@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ create-jest: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ import-local: 3.2.0
+ jest-config: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -25115,12 +25583,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5)):
+ jest-config@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5)):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.4)
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -25134,14 +25602,14 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 15.14.9
- ts-node: 10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@15.14.9)(typescript@4.9.5)
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -25202,7 +25670,7 @@ snapshots:
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
@@ -25221,12 +25689,12 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -25299,7 +25767,7 @@ snapshots:
'@jest/types': 29.6.3
'@types/node': 15.14.9
chalk: 4.1.2
- cjs-module-lexer: 1.2.3
+ cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -25317,15 +25785,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -25336,7 +25804,7 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
@@ -25358,11 +25826,11 @@ snapshots:
leven: 3.1.0
pretty-format: 29.7.0
- jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))):
+ jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))):
dependencies:
ansi-escapes: 6.2.1
chalk: 5.3.0
- jest: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ jest: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
jest-regex-util: 29.6.3
jest-watcher: 29.7.0
slash: 5.1.0
@@ -25393,23 +25861,23 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5)):
+ jest@29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
'@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ import-local: 3.2.0
+ jest-cli: 29.7.0(@types/node@15.14.9)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
- jiti@1.21.0: {}
+ jiti@1.21.6: {}
jju@1.4.0: {}
- joi@17.12.3:
+ joi@17.13.3:
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -25434,37 +25902,37 @@ snapshots:
jsbn@1.1.0: {}
- jscodeshift@0.15.2(@babel/preset-env@7.24.4(@babel/core@7.24.4)):
- dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-flow': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/register': 7.23.7(@babel/core@7.24.4)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.4)
+ jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-flow': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/register': 7.25.9(@babel/core@7.26.0)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.0)
chalk: 4.1.2
- flow-parser: 0.233.0
+ flow-parser: 0.251.1
graceful-fs: 4.2.11
- micromatch: 4.0.5
+ micromatch: 4.0.8
neo-async: 2.6.2
node-dir: 0.1.17
- recast: 0.23.6
+ recast: 0.23.9
temp: 0.8.4
write-file-atomic: 2.4.3
optionalDependencies:
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.11.3
+ acorn: 8.14.0
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -25472,22 +25940,22 @@ snapshots:
decimal.js: 10.4.3
domexception: 4.0.0
escodegen: 2.1.0
- form-data: 4.0.0
+ form-data: 4.0.1
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.7
+ nwsapi: 2.2.13
parse5: 7.2.0
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.3
+ tough-cookie: 4.1.4
w3c-xmlserializer: 4.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.16.0
+ ws: 8.18.0
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -25496,7 +25964,7 @@ snapshots:
jsesc@0.5.0: {}
- jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
json-buffer@3.0.1: {}
@@ -25504,7 +25972,7 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.1: {}
+ json-parse-even-better-errors@3.0.2: {}
json-parse-helpfulerror@1.0.3:
dependencies:
@@ -25522,7 +25990,7 @@ snapshots:
json5@2.2.3: {}
- jsonc-parser@3.2.1: {}
+ jsonc-parser@3.3.1: {}
jsonfile@4.0.0:
optionalDependencies:
@@ -25563,11 +26031,11 @@ snapshots:
kleur@4.1.5: {}
- language-subtag-registry@0.3.22: {}
+ language-subtag-registry@0.3.23: {}
language-tags@1.0.9:
dependencies:
- language-subtag-registry: 0.3.22
+ language-subtag-registry: 0.3.23
latest-version@7.0.0:
dependencies:
@@ -25606,50 +26074,54 @@ snapshots:
rechoir: 0.8.0
resolve: 1.22.8
- lightningcss-darwin-arm64@1.24.1:
+ lightningcss-darwin-arm64@1.28.1:
+ optional: true
+
+ lightningcss-darwin-x64@1.28.1:
optional: true
- lightningcss-darwin-x64@1.24.1:
+ lightningcss-freebsd-x64@1.28.1:
optional: true
- lightningcss-freebsd-x64@1.24.1:
+ lightningcss-linux-arm-gnueabihf@1.28.1:
optional: true
- lightningcss-linux-arm-gnueabihf@1.24.1:
+ lightningcss-linux-arm64-gnu@1.28.1:
optional: true
- lightningcss-linux-arm64-gnu@1.24.1:
+ lightningcss-linux-arm64-musl@1.28.1:
optional: true
- lightningcss-linux-arm64-musl@1.24.1:
+ lightningcss-linux-x64-gnu@1.28.1:
optional: true
- lightningcss-linux-x64-gnu@1.24.1:
+ lightningcss-linux-x64-musl@1.28.1:
optional: true
- lightningcss-linux-x64-musl@1.24.1:
+ lightningcss-win32-arm64-msvc@1.28.1:
optional: true
- lightningcss-win32-x64-msvc@1.24.1:
+ lightningcss-win32-x64-msvc@1.28.1:
optional: true
- lightningcss@1.24.1:
+ lightningcss@1.28.1:
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.24.1
- lightningcss-darwin-x64: 1.24.1
- lightningcss-freebsd-x64: 1.24.1
- lightningcss-linux-arm-gnueabihf: 1.24.1
- lightningcss-linux-arm64-gnu: 1.24.1
- lightningcss-linux-arm64-musl: 1.24.1
- lightningcss-linux-x64-gnu: 1.24.1
- lightningcss-linux-x64-musl: 1.24.1
- lightningcss-win32-x64-msvc: 1.24.1
+ lightningcss-darwin-arm64: 1.28.1
+ lightningcss-darwin-x64: 1.28.1
+ lightningcss-freebsd-x64: 1.28.1
+ lightningcss-linux-arm-gnueabihf: 1.28.1
+ lightningcss-linux-arm64-gnu: 1.28.1
+ lightningcss-linux-arm64-musl: 1.28.1
+ lightningcss-linux-x64-gnu: 1.28.1
+ lightningcss-linux-x64-musl: 1.28.1
+ lightningcss-win32-arm64-msvc: 1.28.1
+ lightningcss-win32-x64-msvc: 1.28.1
lilconfig@2.1.0: {}
- lilconfig@3.1.1: {}
+ lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
@@ -25682,17 +26154,17 @@ snapshots:
colorette: 2.0.20
eventemitter3: 5.0.1
log-update: 5.0.1
- rfdc: 1.3.1
+ rfdc: 1.4.1
wrap-ansi: 8.1.0
optionalDependencies:
enquirer: 2.4.1
lmdb@2.8.5:
dependencies:
- msgpackr: 1.10.1
+ msgpackr: 1.11.2
node-addon-api: 6.1.0
node-gyp-build-optional-packages: 5.1.1
- ordered-binary: 1.5.1
+ ordered-binary: 1.5.3
weak-lru-cache: 1.2.2
optionalDependencies:
'@lmdb/lmdb-darwin-arm64': 2.8.5
@@ -25823,9 +26295,9 @@ snapshots:
loglevel-colored-level-prefix@1.0.0:
dependencies:
chalk: 1.1.3
- loglevel: 1.9.1
+ loglevel: 1.9.2
- loglevel@1.9.1: {}
+ loglevel@1.9.2: {}
long@5.2.3: {}
@@ -25841,11 +26313,11 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
lowercase-keys@3.0.0: {}
- lru-cache@10.2.0: {}
+ lru-cache@10.4.3: {}
lru-cache@4.1.5:
dependencies:
@@ -25870,11 +26342,11 @@ snapshots:
magic-string@0.27.0:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
- magic-string@0.30.9:
+ magic-string@0.30.12:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
make-dir@2.1.0:
dependencies:
@@ -25887,7 +26359,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.6.0
+ semver: 7.6.3
make-error@1.3.6: {}
@@ -25905,7 +26377,7 @@ snapshots:
minipass-fetch: 2.1.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
- negotiator: 0.6.3
+ negotiator: 0.6.4
promise-retry: 2.0.1
socks-proxy-agent: 7.0.0
ssri: 9.0.1
@@ -25923,13 +26395,13 @@ snapshots:
is-lambda: 1.0.1
lru-cache: 7.18.3
minipass: 5.0.0
- minipass-fetch: 3.0.4
+ minipass-fetch: 3.0.5
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
- negotiator: 0.6.3
+ negotiator: 0.6.4
promise-retry: 2.0.1
socks-proxy-agent: 7.0.0
- ssri: 10.0.5
+ ssri: 10.0.6
transitivePeerDependencies:
- supports-color
@@ -25961,11 +26433,11 @@ snapshots:
markdown-link@0.1.1: {}
- markdown-table@3.0.3: {}
+ markdown-table@3.0.4: {}
- markdown-to-jsx@7.4.7(react@18.2.0):
+ markdown-to-jsx@7.5.0(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
markdown-toc@1.2.0:
dependencies:
@@ -25984,9 +26456,9 @@ snapshots:
marked@5.1.2: {}
- match-sorter@6.3.4:
+ match-sorter@6.4.0:
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
remove-accents: 0.5.0
math-random@1.0.4: {}
@@ -26012,7 +26484,7 @@ snapshots:
mdast-util-from-markdown@1.3.1:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -26026,7 +26498,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-from-markdown@2.0.1:
+ mdast-util-from-markdown@2.0.2:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
@@ -26048,8 +26520,8 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
escape-string-regexp: 5.0.0
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
micromark-extension-frontmatter: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -26079,8 +26551,8 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -26093,15 +26565,15 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-gfm-table@1.0.7:
dependencies:
'@types/mdast': 3.0.15
- markdown-table: 3.0.3
+ markdown-table: 3.0.4
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -26111,9 +26583,9 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- markdown-table: 3.0.3
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ markdown-table: 3.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -26126,8 +26598,8 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -26145,13 +26617,13 @@ snapshots:
mdast-util-gfm@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
mdast-util-gfm-task-list-item: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -26161,8 +26633,8 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -26174,8 +26646,8 @@ snapshots:
'@types/unist': 3.0.3
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
parse-entities: 4.0.1
stringify-entities: 4.0.4
unist-util-stringify-position: 4.0.0
@@ -26185,11 +26657,11 @@ snapshots:
mdast-util-mdx@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-mdx-expression: 2.0.1
mdast-util-mdx-jsx: 3.1.3
mdast-util-mdxjs-esm: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -26199,8 +26671,8 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -26229,7 +26701,7 @@ snapshots:
mdast-util-to-markdown@1.5.0:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -26237,13 +26709,14 @@ snapshots:
unist-util-visit: 4.1.2
zwitch: 2.0.4
- mdast-util-to-markdown@2.1.0:
+ mdast-util-to-markdown@2.1.2:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
+ micromark-util-classify-character: 2.0.0
micromark-util-decode-string: 2.0.0
unist-util-visit: 5.0.0
zwitch: 2.0.4
@@ -26260,29 +26733,30 @@ snapshots:
mdn-data@2.0.14: {}
- mdx-bundler@10.0.3(esbuild@0.20.2):
+ mdx-bundler@10.0.3(acorn@8.14.0)(esbuild@0.18.20):
dependencies:
- '@babel/runtime': 7.24.4
- '@esbuild-plugins/node-resolve': 0.2.2(esbuild@0.20.2)
+ '@babel/runtime': 7.26.0
+ '@esbuild-plugins/node-resolve': 0.2.2(esbuild@0.18.20)
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@mdx-js/esbuild': 3.0.1(esbuild@0.20.2)
- esbuild: 0.20.2
+ '@mdx-js/esbuild': 3.1.0(acorn@8.14.0)(esbuild@0.18.20)
+ esbuild: 0.18.20
gray-matter: 4.0.3
remark-frontmatter: 5.0.0
remark-mdx-frontmatter: 4.0.0
uuid: 9.0.1
vfile: 6.0.3
transitivePeerDependencies:
+ - acorn
- supports-color
media-typer@0.3.0: {}
- memfs@4.12.0:
+ memfs@4.14.0:
dependencies:
- '@jsonjoy.com/json-pack': 1.1.0(tslib@2.6.2)
- '@jsonjoy.com/util': 1.4.0(tslib@2.6.2)
- tree-dump: 1.0.2(tslib@2.6.2)
- tslib: 2.6.2
+ '@jsonjoy.com/json-pack': 1.1.0(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
+ tree-dump: 1.0.2(tslib@2.8.1)
+ tslib: 2.8.1
memoizerific@1.11.3:
dependencies:
@@ -26323,7 +26797,7 @@ snapshots:
type-fest: 0.18.1
yargs-parser: 20.2.9
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -26504,7 +26978,7 @@ snapshots:
micromark-extension-mdx-expression@3.0.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-factory-mdx-expression: 2.0.2
micromark-factory-space: 2.0.0
@@ -26516,7 +26990,7 @@ snapshots:
micromark-extension-mdx-jsx@3.0.1:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
micromark-factory-mdx-expression: 2.0.2
@@ -26533,7 +27007,7 @@ snapshots:
micromark-extension-mdxjs-esm@3.0.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
micromark-util-character: 2.1.0
@@ -26545,8 +27019,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.1
micromark-extension-mdx-md: 2.0.0
@@ -26582,7 +27056,7 @@ snapshots:
micromark-factory-mdx-expression@2.0.2:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-factory-space: 2.0.0
micromark-util-character: 2.1.0
@@ -26699,7 +27173,7 @@ snapshots:
micromark-util-events-to-acorn@2.0.2:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/unist': 3.0.3
devlop: 1.1.0
estree-util-visit: 2.0.0
@@ -26764,7 +27238,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -26786,7 +27260,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -26825,13 +27299,20 @@ snapshots:
micromatch@4.0.5:
dependencies:
- braces: 3.0.2
+ braces: 3.0.3
+ picomatch: 2.3.1
+
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
picomatch: 2.3.1
mime-db@1.25.0: {}
mime-db@1.52.0: {}
+ mime-db@1.53.0: {}
+
mime-types@2.1.13:
dependencies:
mime-db: 1.25.0
@@ -26866,7 +27347,7 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.4:
+ minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -26890,9 +27371,9 @@ snapshots:
optionalDependencies:
encoding: 0.1.13
- minipass-fetch@3.0.4:
+ minipass-fetch@3.0.5:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-sized: 1.0.3
minizlib: 2.1.2
optionalDependencies:
@@ -26902,7 +27383,7 @@ snapshots:
dependencies:
minipass: 3.3.6
- minipass-json-stream@1.0.1:
+ minipass-json-stream@1.0.2:
dependencies:
jsonparse: 1.3.1
minipass: 3.3.6
@@ -26921,7 +27402,7 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.0.4: {}
+ minipass@7.1.2: {}
minizlib@2.1.2:
dependencies:
@@ -26945,6 +27426,13 @@ snapshots:
mkdirp@1.0.4: {}
+ mlly@1.7.2:
+ dependencies:
+ acorn: 8.14.0
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ ufo: 1.5.4
+
mri@1.2.0: {}
mrmime@1.0.1: {}
@@ -26957,21 +27445,21 @@ snapshots:
ms@2.1.3: {}
- msgpackr-extract@3.0.2:
+ msgpackr-extract@3.0.3:
dependencies:
- node-gyp-build-optional-packages: 5.0.7
+ node-gyp-build-optional-packages: 5.2.2
optionalDependencies:
- '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.2
- '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.2
- '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.2
- '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.2
- '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.2
- '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.2
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
optional: true
- msgpackr@1.10.1:
+ msgpackr@1.11.2:
optionalDependencies:
- msgpackr-extract: 3.0.2
+ msgpackr-extract: 3.0.3
mute-stream@0.0.7: {}
@@ -27009,48 +27497,51 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@0.6.4: {}
+
neo-async@2.6.2: {}
- next-contentlayer2@0.5.1(contentlayer2@0.5.1(esbuild@0.20.2))(esbuild@0.20.2)(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ next-contentlayer2@0.5.3(acorn@8.14.0)(contentlayer2@0.5.3(acorn@8.14.0)(esbuild@0.18.20))(esbuild@0.18.20)(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@contentlayer2/core': 0.5.1(esbuild@0.20.2)
- '@contentlayer2/utils': 0.5.1
- contentlayer2: 0.5.1(esbuild@0.20.2)
- next: 13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@contentlayer2/core': 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ '@contentlayer2/utils': 0.5.3
+ contentlayer2: 0.5.3(acorn@8.14.0)(esbuild@0.18.20)
+ next: 13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@effect-ts/otel-node'
+ - acorn
- esbuild
- markdown-wasm
- supports-color
- next-sitemap@4.2.3(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)):
+ next-sitemap@4.2.3(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
dependencies:
'@corex/deepmerge': 4.0.43
- '@next/env': 13.5.6
+ '@next/env': 13.5.7
fast-glob: 3.3.2
minimist: 1.2.8
- next: 13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ next: 13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- next-themes@0.2.1(next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ next-themes@0.2.1(next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- next: 13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ next: 13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
next-tick@1.1.0: {}
- next@13.5.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ next@13.5.1(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 13.5.1
'@swc/helpers': 0.5.2
busboy: 1.6.0
- caniuse-lite: 1.0.30001609
+ caniuse-lite: 1.0.30001677
postcss: 8.4.14
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.26.0)(react@18.3.1)
watchpack: 2.4.0
zod: 3.21.4
optionalDependencies:
@@ -27063,7 +27554,7 @@ snapshots:
'@next/swc-win32-arm64-msvc': 13.5.1
'@next/swc-win32-ia32-msvc': 13.5.1
'@next/swc-win32-x64-msvc': 13.5.1
- '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api': 1.9.0
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -27073,15 +27564,15 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.2
+ tslib: 2.8.1
- node-abi@3.57.0:
+ node-abi@3.71.0:
dependencies:
- semver: 7.6.0
+ semver: 7.6.3
node-addon-api@6.1.0: {}
- node-addon-api@7.1.0: {}
+ node-addon-api@7.1.1: {}
node-dir@0.1.17:
dependencies:
@@ -27103,13 +27594,15 @@ snapshots:
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- node-gyp-build-optional-packages@5.0.7:
- optional: true
-
node-gyp-build-optional-packages@5.1.1:
dependencies:
detect-libc: 2.0.3
+ node-gyp-build-optional-packages@5.2.2:
+ dependencies:
+ detect-libc: 2.0.3
+ optional: true
+
node-gyp@9.4.1:
dependencies:
env-paths: 2.2.1
@@ -27120,7 +27613,7 @@ snapshots:
nopt: 6.0.0
npmlog: 6.0.2
rimraf: 3.0.2
- semver: 7.6.0
+ semver: 7.6.3
tar: 6.2.1
which: 2.0.2
transitivePeerDependencies:
@@ -27145,7 +27638,7 @@ snapshots:
title-case: 3.0.3
upper-case: 2.0.2
- node-releases@2.0.14: {}
+ node-releases@2.0.18: {}
nopt@6.0.0:
dependencies:
@@ -27161,15 +27654,15 @@ snapshots:
normalize-package-data@3.0.3:
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.13.1
- semver: 7.6.0
+ is-core-module: 2.15.1
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-package-data@5.0.0:
dependencies:
hosted-git-info: 6.1.1
- is-core-module: 2.13.1
- semver: 7.6.0
+ is-core-module: 2.15.1
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -27178,15 +27671,15 @@ snapshots:
normalize-url@8.0.1: {}
- npm-bundled@3.0.0:
+ npm-bundled@3.0.1:
dependencies:
npm-normalize-package-bin: 3.0.1
- npm-check-updates@16.14.18:
+ npm-check-updates@16.14.20:
dependencies:
'@types/semver-utils': 1.1.3
chalk: 5.3.0
- cli-table3: 0.6.4
+ cli-table3: 0.6.5
commander: 10.0.1
fast-memoize: 2.5.2
find-up: 5.0.0
@@ -27194,22 +27687,22 @@ snapshots:
get-stdin: 8.0.0
globby: 11.1.0
hosted-git-info: 5.2.1
- ini: 4.1.2
+ ini: 4.1.3
js-yaml: 4.1.0
json-parse-helpfulerror: 1.0.3
jsonlines: 0.1.1
lodash: 4.17.21
make-fetch-happen: 11.1.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
p-map: 4.0.0
pacote: 15.2.0
- parse-github-url: 1.0.2
+ parse-github-url: 1.0.3
progress: 2.0.3
- prompts-ncu: 3.0.0
+ prompts-ncu: 3.0.1
rc-config-loader: 4.1.3
remote-git-tags: 3.0.0
- rimraf: 5.0.5
- semver: 7.6.0
+ rimraf: 5.0.10
+ semver: 7.6.3
semver-utils: 1.1.4
source-map-support: 0.5.21
spawn-please: 2.0.2
@@ -27223,7 +27716,7 @@ snapshots:
npm-install-checks@6.3.0:
dependencies:
- semver: 7.6.0
+ semver: 7.6.3
npm-normalize-package-bin@3.0.1: {}
@@ -27231,26 +27724,26 @@ snapshots:
dependencies:
hosted-git-info: 6.1.1
proc-log: 3.0.0
- semver: 7.6.0
- validate-npm-package-name: 5.0.0
+ semver: 7.6.3
+ validate-npm-package-name: 5.0.1
npm-packlist@7.0.4:
dependencies:
- ignore-walk: 6.0.4
+ ignore-walk: 6.0.5
npm-pick-manifest@8.0.2:
dependencies:
npm-install-checks: 6.3.0
npm-normalize-package-bin: 3.0.1
npm-package-arg: 10.1.0
- semver: 7.6.0
+ semver: 7.6.3
npm-registry-fetch@14.0.5:
dependencies:
make-fetch-happen: 11.1.1
minipass: 5.0.0
- minipass-fetch: 3.0.4
- minipass-json-stream: 1.0.1
+ minipass-fetch: 3.0.5
+ minipass-json-stream: 1.0.2
minizlib: 2.1.2
npm-package-arg: 10.1.0
proc-log: 3.0.0
@@ -27292,15 +27785,16 @@ snapshots:
nullthrows@1.1.1: {}
- nwsapi@2.2.7: {}
+ nwsapi@2.2.13: {}
- nypm@0.3.8:
+ nypm@0.3.12:
dependencies:
citty: 0.1.6
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- ufo: 1.5.3
+ pkg-types: 1.2.1
+ ufo: 1.5.4
object-assign@4.1.1: {}
@@ -27314,7 +27808,7 @@ snapshots:
object-hash@3.0.0: {}
- object-inspect@1.13.1: {}
+ object-inspect@1.13.2: {}
object-is@1.1.6:
dependencies:
@@ -27360,12 +27854,6 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
- object.hasown@1.1.4:
- dependencies:
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
-
object.map@1.0.1:
dependencies:
for-own: 1.0.0
@@ -27381,7 +27869,7 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.0.0
- ohash@1.1.3: {}
+ ohash@1.1.4: {}
on-finished@2.4.1:
dependencies:
@@ -27405,7 +27893,11 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
- oo-ascii-tree@1.97.0: {}
+ oniguruma-to-js@0.4.3:
+ dependencies:
+ regex: 4.4.0
+
+ oo-ascii-tree@1.104.0: {}
open@8.4.2:
dependencies:
@@ -27424,14 +27916,14 @@ snapshots:
type-check: 0.3.2
word-wrap: 1.2.5
- optionator@0.9.3:
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
ora@5.4.1:
dependencies:
@@ -27457,7 +27949,7 @@ snapshots:
strip-ansi: 7.1.0
wcwidth: 1.0.1
- ordered-binary@1.5.1: {}
+ ordered-binary@1.5.3: {}
os-homedir@1.0.2: {}
@@ -27485,7 +27977,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@3.0.0:
dependencies:
@@ -27511,17 +28003,19 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.1: {}
+
package-json@8.1.1:
dependencies:
got: 12.6.1
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.6.0
+ semver: 7.6.3
pacote@15.2.0:
dependencies:
'@npmcli/git': 4.1.0
- '@npmcli/installed-package-contents': 2.0.2
+ '@npmcli/installed-package-contents': 2.1.0
'@npmcli/promise-spawn': 6.0.2
'@npmcli/run-script': 6.0.2
cacache: 17.1.4
@@ -27536,7 +28030,7 @@ snapshots:
read-package-json: 6.0.4
read-package-json-fast: 3.0.2
sigstore: 1.9.0
- ssri: 10.0.5
+ ssri: 10.0.6
tar: 6.2.1
transitivePeerDependencies:
- bluebird
@@ -27547,20 +28041,20 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
- parcel@2.12.0(@swc/helpers@0.5.9)(postcss@8.4.38)(srcset@4.0.0)(terser@5.30.3)(typescript@4.9.5):
+ parcel@2.12.0(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.36.0)(typescript@4.9.5):
dependencies:
- '@parcel/config-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)(postcss@8.4.38)(srcset@4.0.0)(terser@5.30.3)(typescript@4.9.5)
- '@parcel/core': 2.12.0(@swc/helpers@0.5.9)
+ '@parcel/config-default': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)(postcss@8.4.47)(terser@5.36.0)(typescript@4.9.5)
+ '@parcel/core': 2.12.0(@swc/helpers@0.5.13)
'@parcel/diagnostic': 2.12.0
'@parcel/events': 2.12.0
- '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
+ '@parcel/fs': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
'@parcel/logger': 2.12.0
- '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)
- '@parcel/reporter-cli': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
- '@parcel/reporter-tracer': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.9))
+ '@parcel/package-manager': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))(@swc/helpers@0.5.13)
+ '@parcel/reporter-cli': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/reporter-dev-server': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
+ '@parcel/reporter-tracer': 2.12.0(@parcel/core@2.12.0(@swc/helpers@0.5.13))
'@parcel/utils': 2.12.0
chalk: 4.1.2
commander: 7.2.0
@@ -27591,7 +28085,7 @@ snapshots:
parse-entities@4.0.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -27606,7 +28100,7 @@ snapshots:
map-cache: 0.2.2
path-root: 0.1.1
- parse-github-url@1.0.2: {}
+ parse-github-url@1.0.3: {}
parse-json@4.0.0:
dependencies:
@@ -27615,7 +28109,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -27630,19 +28124,23 @@ snapshots:
dependencies:
entities: 4.5.0
+ parse5@7.2.1:
+ dependencies:
+ entities: 4.5.0
+
parseurl@1.3.3: {}
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
pascalcase@0.1.1: {}
path-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
path-exists@3.0.0: {}
@@ -27668,12 +28166,12 @@ snapshots:
dependencies:
path-root-regex: 0.1.2
- path-scurry@1.10.2:
+ path-scurry@1.11.1:
dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.4
+ lru-cache: 10.4.3
+ minipass: 7.1.2
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.10: {}
path-type@3.0.0:
dependencies:
@@ -27691,16 +28189,12 @@ snapshots:
pend@1.2.0: {}
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
- picocolors@1.0.0: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pidtree@0.3.1: {}
pidtree@0.6.0: {}
@@ -27725,6 +28219,12 @@ snapshots:
dependencies:
find-up: 5.0.0
+ pkg-types@1.2.1:
+ dependencies:
+ confbox: 0.1.8
+ mlly: 1.7.2
+ pathe: 1.1.2
+
plop@3.1.1:
dependencies:
'@types/liftoff': 4.0.3
@@ -27738,59 +28238,67 @@ snapshots:
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
posix-character-classes@0.1.1: {}
possible-typed-array-names@1.0.0: {}
- postcss-import@15.1.0(postcss@8.4.38):
+ postcss-import@15.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.38):
+ postcss-js@4.0.1(postcss@8.4.47):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5)):
+ postcss-load-config@3.1.4(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5)):
dependencies:
lilconfig: 2.1.0
yaml: 1.10.2
optionalDependencies:
- postcss: 8.4.38
- ts-node: 10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@15.14.9)(typescript@4.9.5)
+ postcss: 8.4.47
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)
+
+ postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)):
+ dependencies:
+ lilconfig: 3.1.2
+ yaml: 2.6.0
+ optionalDependencies:
+ postcss: 8.4.47
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)
- postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2)):
+ postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3)):
dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.1
+ lilconfig: 3.1.2
+ yaml: 2.6.0
optionalDependencies:
- postcss: 8.4.38
- ts-node: 10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2)
+ postcss: 8.4.47
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3)
- postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2)):
+ postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@5.6.3)):
dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.1
+ lilconfig: 3.1.2
+ yaml: 2.6.0
optionalDependencies:
- postcss: 8.4.38
- ts-node: 10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2)
+ postcss: 8.4.47
+ ts-node: 10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@5.6.3)
- postcss-nested@6.0.1(postcss@8.4.38):
+ postcss-nested@6.2.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-selector-parser@6.0.10:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@6.0.16:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -27800,14 +28308,14 @@ snapshots:
postcss@8.4.14:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.2.0
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
- postcss@8.4.38:
+ postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.2.0
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
posthtml-parser@0.10.2:
dependencies:
@@ -27834,19 +28342,19 @@ snapshots:
minimist: 1.2.8
mkdirp-classic: 0.5.3
napi-build-utils: 1.0.2
- node-abi: 3.57.0
- pump: 3.0.0
+ node-abi: 3.71.0
+ pump: 3.0.2
rc: 1.2.8
simple-get: 4.0.1
tar-fs: 2.1.1
tunnel-agent: 0.6.0
- preferred-pm@3.1.3:
+ preferred-pm@3.1.4:
dependencies:
find-up: 5.0.0
find-yarn-workspace-root2: 1.2.16
path-exists: 4.0.0
- which-pm: 2.0.0
+ which-pm: 2.2.0
prelude-ls@1.1.2: {}
@@ -27859,12 +28367,12 @@ snapshots:
camelcase-keys: 6.2.2
chalk: 2.4.2
common-tags: 1.8.2
- core-js: 3.36.1
+ core-js: 3.39.0
eslint: 5.16.0
find-up: 4.1.0
get-stdin: 7.0.0
glob: 7.2.3
- ignore: 5.3.1
+ ignore: 5.3.2
lodash.memoize: 4.1.2
loglevel-colored-level-prefix: 1.0.0
messageformat: 2.3.0
@@ -27895,7 +28403,7 @@ snapshots:
dependencies:
'@typescript-eslint/parser': 1.13.0(eslint@5.16.0)
common-tags: 1.8.2
- core-js: 3.36.1
+ core-js: 3.39.0
dlv: 1.1.3
eslint: 5.16.0
indent-string: 4.0.0
@@ -27932,13 +28440,13 @@ snapshots:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.1
pretty-hrtime@1.0.3: {}
- prism-react-renderer@1.3.5(react@18.2.0):
+ prism-react-renderer@1.3.5(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
prismjs@1.23.0:
optionalDependencies:
@@ -27959,7 +28467,7 @@ snapshots:
err-code: 2.0.3
retry: 0.12.0
- prompts-ncu@3.0.0:
+ prompts-ncu@3.0.1:
dependencies:
kleur: 4.1.5
sisteransi: 1.0.5
@@ -27983,7 +28491,7 @@ snapshots:
proto-list@1.2.4: {}
- protobufjs@7.2.6:
+ protobufjs@7.4.0:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -27995,7 +28503,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 15.14.9
+ '@types/node': 20.2.5
long: 5.2.3
proxy-addr@2.0.7:
@@ -28016,7 +28524,7 @@ snapshots:
end-of-stream: 1.4.4
once: 1.4.0
- pump@3.0.0:
+ pump@3.0.2:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
@@ -28036,7 +28544,7 @@ snapshots:
puppeteer-core@2.1.1:
dependencies:
'@types/mime-types': 2.1.4
- debug: 4.3.4
+ debug: 4.3.7
extract-zip: 1.7.0
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -28044,7 +28552,7 @@ snapshots:
progress: 2.0.3
proxy-from-env: 1.1.0
rimraf: 2.7.1
- ws: 6.2.2
+ ws: 6.2.3
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -28052,11 +28560,7 @@ snapshots:
pure-rand@6.1.0: {}
- qs@6.11.0:
- dependencies:
- side-channel: 1.0.6
-
- qs@6.12.1:
+ qs@6.13.0:
dependencies:
side-channel: 1.0.6
@@ -28097,7 +28601,7 @@ snapshots:
rc-config-loader@4.1.3:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
js-yaml: 4.1.0
json5: 2.2.3
require-from-string: 2.0.2
@@ -28111,26 +28615,26 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-devtools-inline@4.4.0:
dependencies:
es6-symbol: 3.1.4
- react-docgen-typescript@2.2.2(typescript@5.6.2):
+ react-docgen-typescript@2.2.2(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
- react-docgen@7.0.3:
+ react-docgen@7.1.0:
dependencies:
- '@babel/core': 7.24.4
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.20.5
+ '@types/babel__traverse': 7.20.6
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
@@ -28139,29 +28643,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-dom@18.2.0(react@18.2.0):
+ react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
+ react: 18.3.1
+ scheduler: 0.23.2
- react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@base2/pretty-print-object': 1.0.1
is-plain-object: 5.0.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-is: 18.1.0
react-error-overlay@6.0.9: {}
- react-hook-form@7.51.3(react@18.2.0):
+ react-hook-form@7.53.1(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
- react-icons@4.12.0(react@18.2.0):
+ react-icons@4.12.0(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
react-is@16.13.1: {}
@@ -28169,106 +28673,106 @@ snapshots:
react-is@18.1.0: {}
- react-is@18.2.0: {}
+ react-is@18.3.1: {}
- react-live@2.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-live@2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@types/buble': 0.20.5
buble: 0.19.6
- core-js: 3.36.1
+ core-js: 3.39.0
dom-iterator: 1.0.0
- prism-react-renderer: 1.3.5(react@18.2.0)
+ prism-react-renderer: 1.3.5(react@18.3.1)
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-simple-code-editor: 0.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-simple-code-editor: 0.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
unescape: 1.0.1
- react-lorem-component@0.13.0(react@18.2.0):
+ react-lorem-component@0.13.0(react@18.3.1):
dependencies:
create-react-class: 15.7.0
lorem-ipsum: 1.0.6
object-assign: 4.1.1
- react: 18.2.0
+ react: 18.3.1
seedable-random: 0.0.1
- react-multi-ref@1.0.1:
+ react-multi-ref@1.0.2:
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
- react-refresh@0.14.0: {}
+ react-refresh@0.14.2: {}
react-refresh@0.9.0: {}
- react-remove-scroll-bar@2.3.6(@types/react@18.2.8)(react@18.2.0):
+ react-remove-scroll-bar@2.3.6(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.2.0)
- tslib: 2.6.2
+ react: 18.3.1
+ react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.3.1)
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 18.2.8
- react-remove-scroll@2.5.4(@types/react@18.2.8)(react@18.2.0):
+ react-remove-scroll@2.5.4(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
- react-remove-scroll-bar: 2.3.6(@types/react@18.2.8)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.2.0)
- tslib: 2.6.2
- use-callback-ref: 1.3.2(@types/react@18.2.8)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.2.0)
+ react: 18.3.1
+ react-remove-scroll-bar: 2.3.6(@types/react@18.2.8)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.3.1)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.2(@types/react@18.2.8)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
- react-remove-scroll@2.5.5(@types/react@18.2.8)(react@18.2.0):
+ react-remove-scroll@2.5.5(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
- react-remove-scroll-bar: 2.3.6(@types/react@18.2.8)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.2.0)
- tslib: 2.6.2
- use-callback-ref: 1.3.2(@types/react@18.2.8)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.2.0)
+ react: 18.3.1
+ react-remove-scroll-bar: 2.3.6(@types/react@18.2.8)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.3.1)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.2(@types/react@18.2.8)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
- react-remove-scroll@2.5.9(@types/react@18.2.8)(react@18.2.0):
+ react-remove-scroll@2.6.0(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
- react-remove-scroll-bar: 2.3.6(@types/react@18.2.8)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.2.0)
- tslib: 2.6.2
- use-callback-ref: 1.3.2(@types/react@18.2.8)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.2.0)
+ react: 18.3.1
+ react-remove-scroll-bar: 2.3.6(@types/react@18.2.8)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.3.1)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.2(@types/react@18.2.8)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
- react-simple-code-editor@0.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-simple-code-editor@0.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- react-style-singleton@2.2.1(@types/react@18.2.8)(react@18.2.0):
+ react-style-singleton@2.2.1(@types/react@18.2.8)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
- react: 18.2.0
- tslib: 2.6.2
+ react: 18.3.1
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 18.2.8
- react-textarea-autosize@8.5.3(@types/react@18.2.8)(react@18.2.0):
+ react-textarea-autosize@8.5.4(@types/react@18.2.8)(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.2.0
- use-composed-ref: 1.3.0(react@18.2.0)
- use-latest: 1.2.1(@types/react@18.2.8)(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+ use-composed-ref: 1.3.0(react@18.3.1)
+ use-latest: 1.2.1(@types/react@18.2.8)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react-wrap-balancer@1.1.0(react@18.2.0):
+ react-wrap-balancer@1.1.1(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
- react@18.2.0:
+ react@18.3.1:
dependencies:
loose-envify: 1.4.0
@@ -28278,13 +28782,13 @@ snapshots:
read-package-json-fast@3.0.2:
dependencies:
- json-parse-even-better-errors: 3.0.1
+ json-parse-even-better-errors: 3.0.2
npm-normalize-package-bin: 3.0.1
read-package-json@6.0.4:
dependencies:
- glob: 10.3.12
- json-parse-even-better-errors: 3.0.1
+ glob: 10.4.5
+ json-parse-even-better-errors: 3.0.2
normalize-package-data: 5.0.0
npm-normalize-package-bin: 3.0.1
@@ -28334,13 +28838,13 @@ snapshots:
dependencies:
picomatch: 2.3.1
- recast@0.23.6:
+ recast@0.23.9:
dependencies:
ast-types: 0.16.1
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.6.2
+ tslib: 2.8.1
rechoir@0.6.2:
dependencies:
@@ -28350,6 +28854,36 @@ snapshots:
dependencies:
resolve: 1.22.8
+ recma-build-jsx@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-build-jsx: 3.0.1
+ vfile: 6.0.3
+
+ recma-jsx@1.0.0(acorn@8.14.0):
+ dependencies:
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ estree-util-to-js: 2.0.0
+ recma-parse: 1.0.0
+ recma-stringify: 1.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - acorn
+
+ recma-parse@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ esast-util-from-js: 2.0.1
+ unified: 11.0.5
+ vfile: 6.0.3
+
+ recma-stringify@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-to-js: 2.0.0
+ unified: 11.0.5
+ vfile: 6.0.3
+
redent@3.0.0:
dependencies:
indent-string: 4.0.0
@@ -28362,8 +28896,8 @@ snapshots:
es-abstract: 1.23.3
es-errors: 1.3.0
get-intrinsic: 1.2.4
- globalthis: 1.0.3
- which-builtin-type: 1.1.3
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.4
refractor@3.3.1:
dependencies:
@@ -28371,7 +28905,7 @@ snapshots:
parse-entities: 2.0.0
prismjs: 1.23.0
- regenerate-unicode-properties@10.1.1:
+ regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
@@ -28387,14 +28921,16 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.26.0
regex-not@1.0.2:
dependencies:
extend-shallow: 3.0.2
safe-regex: 1.1.0
- regexp.prototype.flags@1.5.2:
+ regex@4.4.0: {}
+
+ regexp.prototype.flags@1.5.3:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -28412,20 +28948,20 @@ snapshots:
regjsgen: 0.5.2
regjsparser: 0.7.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
+ unicode-match-property-value-ecmascript: 2.2.0
- regexpu-core@5.3.2:
+ regexpu-core@6.1.1:
dependencies:
- '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
- regjsparser: 0.9.1
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.11.2
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
+ unicode-match-property-value-ecmascript: 2.2.0
registry-auth-token@5.0.2:
dependencies:
- '@pnpm/npm-conf': 2.2.2
+ '@pnpm/npm-conf': 2.3.1
registry-url@6.0.1:
dependencies:
@@ -28433,11 +28969,13 @@ snapshots:
regjsgen@0.5.2: {}
- regjsparser@0.7.0:
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.11.2:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.0.2
- regjsparser@0.9.1:
+ regjsparser@0.7.0:
dependencies:
jsesc: 0.5.0
@@ -28447,16 +28985,24 @@ snapshots:
hast-util-from-html: 2.0.3
unified: 11.0.5
- rehype-pretty-code@0.14.0(shiki@0.14.7):
+ rehype-pretty-code@0.14.0(shiki@1.22.2):
dependencies:
'@types/hast': 3.0.4
hast-util-to-string: 3.0.1
parse-numeric-range: 1.3.0
rehype-parse: 9.0.1
- shiki: 0.14.7
+ shiki: 1.22.2
unified: 11.0.5
unist-util-visit: 5.0.0
+ rehype-recma@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ hast-util-to-estree: 3.1.0
+ transitivePeerDependencies:
+ - supports-color
+
rehype-slug@6.0.0:
dependencies:
'@types/hast': 3.0.4
@@ -28519,12 +29065,12 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
estree-util-is-identifier-name: 3.0.0
- estree-util-value-to-estree: 3.1.2
+ estree-util-value-to-estree: 3.2.1
toml: 3.0.0
unified: 11.0.5
- yaml: 2.4.1
+ yaml: 2.6.0
- remark-mdx@3.0.1:
+ remark-mdx@3.1.0:
dependencies:
mdast-util-mdx: 3.0.0
micromark-extension-mdxjs: 3.0.0
@@ -28534,7 +29080,7 @@ snapshots:
remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
micromark-util-types: 2.0.0
unified: 11.0.5
transitivePeerDependencies:
@@ -28557,7 +29103,7 @@ snapshots:
remark-stringify@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.2
unified: 11.0.5
remark@15.0.1:
@@ -28627,13 +29173,13 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -28662,7 +29208,7 @@ snapshots:
reusify@1.0.4: {}
- rfdc@1.3.1: {}
+ rfdc@1.4.1: {}
rimraf@2.6.3:
dependencies:
@@ -28676,11 +29222,11 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@5.0.5:
+ rimraf@5.0.10:
dependencies:
- glob: 10.3.12
+ glob: 10.4.5
- rollup@3.29.4:
+ rollup@3.29.5:
optionalDependencies:
fsevents: 2.3.3
@@ -28701,7 +29247,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
sade@1.8.1:
dependencies:
@@ -28734,7 +29280,7 @@ snapshots:
dependencies:
xmlchars: 2.2.0
- scheduler@0.23.0:
+ scheduler@0.23.2:
dependencies:
loose-envify: 1.4.0
@@ -28766,7 +29312,7 @@ snapshots:
semver-diff@4.0.0:
dependencies:
- semver: 7.6.0
+ semver: 7.6.3
semver-utils@1.1.4: {}
@@ -28780,11 +29326,9 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.6.0:
- dependencies:
- lru-cache: 6.0.0
+ semver@7.6.3: {}
- send@0.18.0:
+ send@0.19.0:
dependencies:
debug: 2.6.9(supports-color@6.1.0)
depd: 2.0.0
@@ -28805,19 +29349,19 @@ snapshots:
sentence-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
upper-case-first: 2.0.2
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
@@ -28864,9 +29408,9 @@ snapshots:
detect-libc: 2.0.3
node-addon-api: 6.1.0
prebuild-install: 7.1.2
- semver: 7.6.0
+ semver: 7.6.3
simple-get: 4.0.1
- tar-fs: 3.0.5
+ tar-fs: 3.0.6
tunnel-agent: 0.6.0
shebang-command@1.2.0:
@@ -28889,19 +29433,21 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- shiki@0.14.7:
+ shiki@1.22.2:
dependencies:
- ansi-sequence-parser: 1.1.1
- jsonc-parser: 3.2.1
- vscode-oniguruma: 1.7.0
- vscode-textmate: 8.0.0
+ '@shikijs/core': 1.22.2
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
- object-inspect: 1.13.1
+ object-inspect: 1.13.2
signal-exit@3.0.7: {}
@@ -28931,13 +29477,13 @@ snapshots:
sirv@1.0.19:
dependencies:
- '@polka/url': 1.0.0-next.25
+ '@polka/url': 1.0.0-next.28
mrmime: 1.0.1
totalist: 1.1.0
sirv@2.0.4:
dependencies:
- '@polka/url': 1.0.0-next.25
+ '@polka/url': 1.0.0-next.28
mrmime: 2.0.0
totalist: 3.0.1
@@ -28982,7 +29528,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
snapdragon-node@2.1.1:
dependencies:
@@ -29010,7 +29556,7 @@ snapshots:
socks-proxy-agent@7.0.0:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.7
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -29020,7 +29566,7 @@ snapshots:
ip-address: 9.0.5
smart-buffer: 4.2.0
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-resolve@0.5.3:
dependencies:
@@ -29058,7 +29604,7 @@ snapshots:
space-separated-tokens@2.0.2: {}
- spawn-command@0.0.2-1: {}
+ spawn-command@0.0.2: {}
spawn-please@2.0.2:
dependencies:
@@ -29072,16 +29618,16 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.17
+ spdx-license-ids: 3.0.20
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.17
+ spdx-license-ids: 3.0.20
- spdx-license-ids@3.0.17: {}
+ spdx-license-ids@3.0.20: {}
split-string@3.1.0:
dependencies:
@@ -29097,9 +29643,9 @@ snapshots:
srcset@4.0.0: {}
- ssri@10.0.5:
+ ssri@10.0.6:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
ssri@9.0.1:
dependencies:
@@ -29115,7 +29661,7 @@ snapshots:
dependencies:
'@open-draft/deferred-promise': 2.2.0
dotenv: 16.4.5
- mime-db: 1.52.0
+ mime-db: 1.53.0
outvariant: 1.4.0
static-extend@0.1.2:
@@ -29131,26 +29677,26 @@ snapshots:
store2@2.14.3: {}
- storybook-dark-mode@3.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ storybook-dark-mode@3.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@storybook/addons': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/components': 7.6.17(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/core-events': 7.6.17
+ '@storybook/addons': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/components': 7.6.20(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/core-events': 7.6.20
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/manager-api': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/theming': 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
fast-deep-equal: 3.1.3
memoizerific: 1.11.3
optionalDependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- storybook@7.6.17(encoding@0.1.13):
+ storybook@7.6.20(encoding@0.1.13):
dependencies:
- '@storybook/cli': 7.6.17(encoding@0.1.13)
+ '@storybook/cli': 7.6.20(encoding@0.1.13)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -29165,12 +29711,13 @@ snapshots:
streamsearch@1.1.0: {}
- streamx@2.16.1:
+ streamx@2.20.1:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
+ text-decoder: 1.2.1
optionalDependencies:
- bare-events: 2.2.2
+ bare-events: 2.5.0
strict-event-emitter@0.4.6: {}
@@ -29211,6 +29758,12 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
+ string.prototype.includes@2.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+
string.prototype.matchall@4.0.11:
dependencies:
call-bind: 1.0.7
@@ -29222,7 +29775,7 @@ snapshots:
gopd: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
set-function-name: 2.0.2
side-channel: 1.0.6
@@ -29233,6 +29786,11 @@ snapshots:
es-abstract: 1.23.3
es-object-atoms: 1.0.0
+ string.prototype.repeat@1.0.0:
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+
string.prototype.trim@1.2.9:
dependencies:
call-bind: 1.0.7
@@ -29283,7 +29841,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom-string@1.0.0: {}
@@ -29321,18 +29879,18 @@ snapshots:
dependencies:
inline-style-parser: 0.2.4
- styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.2.0):
+ styled-jsx@5.1.1(@babel/core@7.26.0)(react@18.3.1):
dependencies:
client-only: 0.0.1
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
sucrase@3.35.0:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.12
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -29365,14 +29923,14 @@ snapshots:
css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
- picocolors: 1.0.0
+ picocolors: 1.1.1
stable: 0.1.8
- swr@2.2.5(react@18.2.0):
+ swr@2.2.5(react@18.3.1):
dependencies:
client-only: 0.0.1
- react: 18.2.0
- use-sync-external-store: 1.2.0(react@18.2.0)
+ react: 18.3.1
+ use-sync-external-store: 1.2.2(react@18.3.1)
symbol-tree@3.2.4: {}
@@ -29387,7 +29945,7 @@ snapshots:
table@6.8.2:
dependencies:
- ajv: 8.12.0
+ ajv: 8.17.1
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -29395,17 +29953,17 @@ snapshots:
tailwind-merge@1.14.0: {}
- tailwind-variants@0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2))):
+ tailwind-variants@0.1.20(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5))):
dependencies:
tailwind-merge: 1.14.0
- tailwindcss: 3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5))
- tailwind-variants@0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2))):
+ tailwind-variants@0.1.20(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3))):
dependencies:
tailwind-merge: 1.14.0
- tailwindcss: 3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3))
- tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2)):
+ tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -29415,24 +29973,24 @@ snapshots:
fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.0
+ jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2))
- postcss-nested: 6.0.1(postcss@8.4.38)
- postcss-selector-parser: 6.0.16
+ picocolors: 1.1.1
+ postcss: 8.4.47
+ postcss-import: 15.1.0(postcss@8.4.47)
+ postcss-js: 4.0.1(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5))
+ postcss-nested: 6.2.0(postcss@8.4.47)
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.3(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2)):
+ tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -29442,18 +30000,45 @@ snapshots:
fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.0
+ jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
+ normalize-path: 3.0.0
+ object-hash: 3.0.0
+ picocolors: 1.1.1
+ postcss: 8.4.47
+ postcss-import: 15.1.0(postcss@8.4.47)
+ postcss-js: 4.0.1(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3))
+ postcss-nested: 6.2.0(postcss@8.4.47)
+ postcss-selector-parser: 6.1.2
+ resolve: 1.22.8
+ sucrase: 3.35.0
+ transitivePeerDependencies:
+ - ts-node
+
+ tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@5.6.3)):
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ arg: 5.0.2
+ chokidar: 3.6.0
+ didyoumean: 1.2.2
+ dlv: 1.1.3
+ fast-glob: 3.3.2
+ glob-parent: 6.0.2
+ is-glob: 4.0.3
+ jiti: 1.21.6
+ lilconfig: 2.1.0
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2))
- postcss-nested: 6.0.1(postcss@8.4.38)
- postcss-selector-parser: 6.0.16
+ picocolors: 1.1.1
+ postcss: 8.4.47
+ postcss-import: 15.1.0(postcss@8.4.47)
+ postcss-js: 4.0.1(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@5.6.3))
+ postcss-nested: 6.2.0(postcss@8.4.47)
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -29467,16 +30052,16 @@ snapshots:
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
- pump: 3.0.0
+ pump: 3.0.2
tar-stream: 2.2.0
- tar-fs@3.0.5:
+ tar-fs@3.0.6:
dependencies:
- pump: 3.0.0
+ pump: 3.0.2
tar-stream: 3.1.7
optionalDependencies:
- bare-fs: 2.2.3
- bare-path: 2.1.1
+ bare-fs: 2.3.5
+ bare-path: 2.1.3
tar-stream@2.2.0:
dependencies:
@@ -29488,9 +30073,9 @@ snapshots:
tar-stream@3.1.7:
dependencies:
- b4a: 1.6.6
+ b4a: 1.6.7
fast-fifo: 1.3.2
- streamx: 2.16.1
+ streamx: 2.20.1
tar@6.2.1:
dependencies:
@@ -29521,34 +30106,34 @@ snapshots:
term-size@2.2.1: {}
- terser-webpack-plugin@5.3.10(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.30.3
- webpack: 5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)
+ terser: 5.36.0
+ webpack: 5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12)
optionalDependencies:
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
esbuild: 0.15.18
- terser-webpack-plugin@5.3.10(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.30.3
- webpack: 5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)
+ terser: 5.36.0
+ webpack: 5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1))
optionalDependencies:
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
- esbuild: 0.20.2
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
+ esbuild: 0.18.20
- terser@5.30.3:
+ terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.11.3
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -29558,6 +30143,8 @@ snapshots:
glob: 7.2.3
minimatch: 3.1.2
+ text-decoder@1.2.1: {}
+
text-extensions@1.9.0: {}
text-table@0.2.0: {}
@@ -29570,9 +30157,9 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thingies@1.21.0(tslib@2.6.2):
+ thingies@1.21.0(tslib@2.8.1):
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
through2@2.0.5:
dependencies:
@@ -29594,7 +30181,7 @@ snapshots:
title-case@3.0.3:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
tmp@0.0.33:
dependencies:
@@ -29602,8 +30189,6 @@ snapshots:
tmpl@1.0.5: {}
- to-fast-properties@2.0.0: {}
-
to-object-path@0.3.0:
dependencies:
kind-of: 3.2.2
@@ -29624,7 +30209,7 @@ snapshots:
regex-not: 1.0.2
safe-regex: 1.1.0
- tocbot@4.25.0: {}
+ tocbot@4.31.0: {}
toidentifier@1.0.1: {}
@@ -29636,7 +30221,7 @@ snapshots:
totalist@3.0.1: {}
- tough-cookie@4.1.3:
+ tough-cookie@4.1.4:
dependencies:
psl: 1.9.0
punycode: 2.3.1
@@ -29653,9 +30238,9 @@ snapshots:
dependencies:
punycode: 2.3.1
- tree-dump@1.0.2(tslib@2.6.2):
+ tree-dump@1.0.2(tslib@2.8.1):
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
tree-kill@1.2.2: {}
@@ -29669,7 +30254,7 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@15.14.9)(typescript@4.9.5):
+ ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@15.14.9)(typescript@4.9.5):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
@@ -29677,8 +30262,8 @@ snapshots:
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 15.14.9
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
@@ -29687,9 +30272,9 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
- ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.2.5)(typescript@5.6.2):
+ ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.2.5)(typescript@5.6.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
@@ -29697,20 +30282,20 @@ snapshots:
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 20.2.5
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.6.2
+ typescript: 5.6.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
optional: true
- ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@5.6.2):
+ ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@5.6.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
@@ -29718,20 +30303,20 @@ snapshots:
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 20.5.1
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.6.2
+ typescript: 5.6.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
optional: true
- ts-pattern@5.4.0: {}
+ ts-pattern@5.5.0: {}
tsconfig-paths@3.15.0:
dependencies:
@@ -29742,27 +30327,27 @@ snapshots:
tslib@1.14.1: {}
- tslib@2.6.2: {}
+ tslib@2.8.1: {}
- tsup@6.4.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5):
+ tsup@6.4.0(@swc/core@1.8.0(@swc/helpers@0.5.13))(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))(typescript@4.9.5):
dependencies:
bundle-require: 3.1.2(esbuild@0.15.18)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.4
+ debug: 4.3.7
esbuild: 0.15.18
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.4.13(@swc/helpers@0.5.9))(@types/node@20.5.1)(typescript@4.9.5))
+ postcss-load-config: 3.1.4(postcss@8.4.47)(ts-node@10.9.2(@swc/core@1.8.0(@swc/helpers@0.5.13))(@types/node@20.5.1)(typescript@4.9.5))
resolve-from: 5.0.0
- rollup: 3.29.4
+ rollup: 3.29.5
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
optionalDependencies:
- '@swc/core': 1.4.13(@swc/helpers@0.5.9)
- postcss: 8.4.38
+ '@swc/core': 1.8.0(@swc/helpers@0.5.13)
+ postcss: 8.4.47
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
@@ -29778,15 +30363,15 @@ snapshots:
tslib: 1.14.1
typescript: 4.9.5
- tsutils@3.21.0(typescript@5.6.2):
+ tsutils@3.21.0(typescript@5.6.3):
dependencies:
tslib: 1.14.1
- typescript: 5.6.2
+ typescript: 5.6.3
tsx@3.14.0:
dependencies:
esbuild: 0.18.20
- get-tsconfig: 4.7.3
+ get-tsconfig: 4.8.1
source-map-support: 0.5.21
optionalDependencies:
fsevents: 2.3.3
@@ -29804,7 +30389,7 @@ snapshots:
tuf-js@1.1.7:
dependencies:
'@tufjs/models': 1.0.4
- debug: 4.3.4
+ debug: 4.3.7
make-fetch-happen: 11.1.1
transitivePeerDependencies:
- supports-color
@@ -29877,7 +30462,7 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.35
- type@2.7.2: {}
+ type@2.7.3: {}
typed-array-buffer@1.0.2:
dependencies:
@@ -29921,11 +30506,11 @@ snapshots:
typescript@4.9.5: {}
- typescript@5.6.2: {}
+ typescript@5.6.3: {}
- ufo@1.5.3: {}
+ ufo@1.5.4: {}
- uglify-js@3.17.4:
+ uglify-js@3.19.3:
optional: true
unbox-primitive@1.0.2:
@@ -29943,20 +30528,20 @@ snapshots:
dependencies:
extend-shallow: 2.0.1
- unicode-canonical-property-names-ecmascript@2.0.0: {}
+ unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-canonical-property-names-ecmascript: 2.0.1
unicode-property-aliases-ecmascript: 2.1.0
- unicode-match-property-value-ecmascript@2.1.0: {}
+ unicode-match-property-value-ecmascript@2.2.0: {}
unicode-property-aliases-ecmascript@2.1.0: {}
unified@10.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -30009,7 +30594,7 @@ snapshots:
unist-util-is@5.2.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is@6.0.0:
dependencies:
@@ -30025,7 +30610,7 @@ snapshots:
unist-util-stringify-position@3.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position@4.0.0:
dependencies:
@@ -30033,12 +30618,12 @@ snapshots:
unist-util-visit-parents@3.1.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents@5.1.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents@6.0.1:
@@ -30048,13 +30633,13 @@ snapshots:
unist-util-visit@2.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
unist-util-visit@4.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -30072,12 +30657,12 @@ snapshots:
unpipe@1.0.0: {}
- unplugin@1.10.1:
+ unplugin@1.15.0(webpack-sources@3.2.3):
dependencies:
- acorn: 8.11.3
- chokidar: 3.6.0
+ acorn: 8.14.0
+ webpack-virtual-modules: 0.6.2
+ optionalDependencies:
webpack-sources: 3.2.3
- webpack-virtual-modules: 0.6.1
unset-value@1.0.0:
dependencies:
@@ -30086,11 +30671,11 @@ snapshots:
untildify@4.0.0: {}
- update-browserslist-db@1.0.13(browserslist@4.23.0):
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.23.0
- escalade: 3.1.2
- picocolors: 1.0.0
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
update-notifier@6.0.2:
dependencies:
@@ -30105,17 +30690,17 @@ snapshots:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.6.0
+ semver: 7.6.3
semver-diff: 4.0.0
xdg-basedir: 5.1.0
upper-case-first@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
upper-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
uri-js@4.4.1:
dependencies:
@@ -30128,54 +30713,54 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- use-callback-ref@1.3.2(@types/react@18.2.8)(react@18.2.0):
+ use-callback-ref@1.3.2(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
- tslib: 2.6.2
+ react: 18.3.1
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 18.2.8
- use-composed-ref@1.3.0(react@18.2.0):
+ use-composed-ref@1.3.0(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
- use-isomorphic-layout-effect@1.1.2(@types/react@18.2.8)(react@18.2.0):
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
optionalDependencies:
'@types/react': 18.2.8
- use-latest@1.2.1(@types/react@18.2.8)(react@18.2.0):
+ use-latest@1.2.1(@types/react@18.2.8)(react@18.3.1):
dependencies:
- react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.8)(react@18.2.0)
+ react: 18.3.1
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.8)(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
- use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ use-resize-observer@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@juggle/resize-observer': 3.4.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- use-sidecar@1.1.2(@types/react@18.2.8)(react@18.2.0):
+ use-sidecar@1.1.2(@types/react@18.2.8)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
- react: 18.2.0
- tslib: 2.6.2
+ react: 18.3.1
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 18.2.8
- use-sync-external-store@1.2.0(react@18.2.0):
+ use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
use@3.1.1: {}
- usehooks-ts@2.16.0(react@18.2.0):
+ usehooks-ts@2.16.0(react@18.3.1):
dependencies:
lodash.debounce: 4.0.8
- react: 18.2.0
+ react: 18.3.1
util-deprecate@1.0.2: {}
@@ -30206,7 +30791,7 @@ snapshots:
v8-compile-cache@2.4.0: {}
- v8-to-istanbul@9.2.0:
+ v8-to-istanbul@9.3.0:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
'@types/istanbul-lib-coverage': 2.0.6
@@ -30219,9 +30804,7 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- validate-npm-package-name@5.0.0:
- dependencies:
- builtins: 5.1.0
+ validate-npm-package-name@5.0.1: {}
vary@1.1.2: {}
@@ -30232,7 +30815,7 @@ snapshots:
vfile-message@3.1.4:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
vfile-message@4.0.2:
@@ -30242,7 +30825,7 @@ snapshots:
vfile@5.3.7:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
@@ -30252,23 +30835,19 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite@4.5.3(@types/node@20.5.1)(lightningcss@1.24.1)(terser@5.30.3):
+ vite@4.5.5(@types/node@20.5.1)(lightningcss@1.28.1)(terser@5.36.0):
dependencies:
esbuild: 0.18.20
- postcss: 8.4.38
- rollup: 3.29.4
+ postcss: 8.4.47
+ rollup: 3.29.5
optionalDependencies:
'@types/node': 20.5.1
fsevents: 2.3.3
- lightningcss: 1.24.1
- terser: 5.30.3
+ lightningcss: 1.28.1
+ terser: 5.36.0
vlq@1.0.1: {}
- vscode-oniguruma@1.7.0: {}
-
- vscode-textmate@8.0.0: {}
-
vue-eslint-parser@2.0.3(eslint@5.16.0):
dependencies:
debug: 3.2.7
@@ -30276,19 +30855,19 @@ snapshots:
eslint-scope: 3.7.3
eslint-visitor-keys: 1.3.0
espree: 3.5.4
- esquery: 1.5.0
+ esquery: 1.6.0
lodash: 4.17.21
transitivePeerDependencies:
- supports-color
vue-eslint-parser@7.1.1(eslint@7.32.0):
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-visitor-keys: 1.3.0
espree: 6.2.1
- esquery: 1.5.0
+ esquery: 1.6.0
lodash: 4.17.21
transitivePeerDependencies:
- supports-color
@@ -30308,7 +30887,7 @@ snapshots:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- watchpack@2.4.1:
+ watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -30332,37 +30911,37 @@ snapshots:
webpack-bundle-analyzer@4.10.2:
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
commander: 7.2.0
debounce: 1.2.1
escape-string-regexp: 4.0.0
gzip-size: 6.0.0
html-escaper: 2.0.2
opener: 1.5.2
- picocolors: 1.0.0
+ picocolors: 1.1.1
sirv: 2.0.4
- ws: 7.5.9
+ ws: 7.5.10
transitivePeerDependencies:
- bufferutil
- utf-8-validate
webpack-bundle-analyzer@4.7.0:
dependencies:
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
chalk: 4.1.2
commander: 7.2.0
gzip-size: 6.0.0
lodash: 4.17.21
opener: 1.5.2
sirv: 1.0.19
- ws: 7.5.9
+ ws: 7.5.10
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- webpack-cli@3.3.12(webpack@5.91.0):
+ webpack-cli@3.3.12(webpack@5.96.1):
dependencies:
chalk: 2.4.2
cross-spawn: 6.0.5
@@ -30374,7 +30953,7 @@ snapshots:
loader-utils: 1.4.2
supports-color: 6.1.0
v8-compile-cache: 2.4.0
- webpack: 5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12)
+ webpack: 5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12)
yargs: 13.3.2
webpack-merge@5.10.0:
@@ -30385,21 +30964,20 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-virtual-modules@0.6.1: {}
+ webpack-virtual-modules@0.6.2: {}
- webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12):
+ webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ acorn: 8.14.0
+ browserslist: 4.24.2
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -30410,29 +30988,28 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12))
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.15.18)(webpack-cli@3.3.12))
+ watchpack: 2.4.2
webpack-sources: 3.2.3
optionalDependencies:
- webpack-cli: 3.3.12(webpack@5.91.0)
+ webpack-cli: 3.3.12(webpack@5.96.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack-cli@3.3.12(webpack@5.91.0)):
+ webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1)):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ acorn: 8.14.0
+ browserslist: 4.24.2
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -30443,11 +31020,11 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.20.2)(webpack@5.91.0(@swc/core@1.4.13(@swc/helpers@0.5.9))(esbuild@0.15.18)(webpack-cli@3.3.12))
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack@5.96.1(@swc/core@1.8.0(@swc/helpers@0.5.13))(esbuild@0.18.20)(webpack-cli@3.3.12(webpack@5.96.1)))
+ watchpack: 2.4.2
webpack-sources: 3.2.3
optionalDependencies:
- webpack-cli: 3.3.12(webpack@5.91.0)
+ webpack-cli: 3.3.12(webpack@5.96.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -30483,7 +31060,7 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-builtin-type@1.1.3:
+ which-builtin-type@1.1.4:
dependencies:
function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
@@ -30507,7 +31084,7 @@ snapshots:
which-module@2.0.1: {}
- which-pm@2.0.0:
+ which-pm@2.2.0:
dependencies:
load-yaml-file: 0.2.0
path-exists: 4.0.0
@@ -30594,13 +31171,13 @@ snapshots:
dependencies:
mkdirp: 0.5.6
- ws@6.2.2:
+ ws@6.2.3:
dependencies:
async-limiter: 1.0.1
- ws@7.5.9: {}
+ ws@7.5.10: {}
- ws@8.16.0: {}
+ ws@8.18.0: {}
xdg-basedir@5.1.0: {}
@@ -30626,7 +31203,7 @@ snapshots:
yaml@2.3.1: {}
- yaml@2.4.1: {}
+ yaml@2.6.0: {}
yargs-parser@13.1.2:
dependencies:
@@ -30672,7 +31249,7 @@ snapshots:
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -30688,17 +31265,17 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
zod@3.21.4: {}
- zod@3.22.4: {}
+ zod@3.23.8: {}
- zustand@4.5.2(@types/react@18.2.8)(react@18.2.0):
+ zustand@4.5.5(@types/react@18.2.8)(react@18.3.1):
dependencies:
- use-sync-external-store: 1.2.0(react@18.2.0)
+ use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
'@types/react': 18.2.8
- react: 18.2.0
+ react: 18.3.1
zwitch@2.0.4: {}