mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
feat(components): link component added
This commit is contained in:
parent
3285cee9ba
commit
dfb2134caa
3
.npmrc
3
.npmrc
@ -1,4 +1,5 @@
|
||||
strict-peer-dependencies=false
|
||||
enable-pre-post-scripts=true
|
||||
public-hoist-pattern[]=*typescript*
|
||||
public-hoist-pattern[]=*@stitches/react*
|
||||
public-hoist-pattern[]=*@stitches/react*
|
||||
public-hoist-pattern[]=*@react-types/*
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -45,7 +45,9 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@react-types/link": "^3.3.3",
|
||||
"@nextui-org/react": "workspace:*",
|
||||
"@nextui-org/spacer": "workspace:*",
|
||||
"@nextui-org/grid": "workspace:*",
|
||||
"@nextui-org/text": "workspace:*",
|
||||
"clean-package": "2.1.1",
|
||||
"react": "^17.0.2",
|
||||
"react-aria": "3.18.0"
|
||||
|
||||
@ -1,7 +1,44 @@
|
||||
import {styled} from "@nextui-org/system";
|
||||
import {cssFocusVisible} from "@nextui-org/shared-css";
|
||||
|
||||
export const StyledLink = styled("a", {}, cssFocusVisible);
|
||||
export const StyledLink = styled(
|
||||
"a",
|
||||
{
|
||||
display: "inline-flex",
|
||||
alignItems: "center",
|
||||
lineHeight: "inherit",
|
||||
textDecoration: "none",
|
||||
width: "fitContent",
|
||||
backgroundColor: "transparent",
|
||||
backgroundImage: "inherit",
|
||||
backgroundClip: "inherit",
|
||||
WebkitTextFillColor: "inherit",
|
||||
color: "$$linkColor",
|
||||
outline: "none",
|
||||
maxW: "max-content",
|
||||
"&:hover": {
|
||||
opacity: 0.8,
|
||||
},
|
||||
"@motion": {
|
||||
transition: "none",
|
||||
},
|
||||
variants: {
|
||||
underline: {
|
||||
true: {
|
||||
"&:hover, &:active, &:focus": {
|
||||
textDecoration: "underline",
|
||||
},
|
||||
},
|
||||
},
|
||||
animated: {
|
||||
true: {
|
||||
transition: "opacity 0.25s ease 0s, background 0.25s ease 0s",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
cssFocusVisible,
|
||||
);
|
||||
|
||||
export const StyledLinkIcon = styled("svg", {
|
||||
ml: "$1",
|
||||
|
||||
@ -34,18 +34,28 @@ export interface UseLinkProps extends HTMLNextUIProps<"a", AriaLinkProps> {
|
||||
}
|
||||
|
||||
export function useLink(props: UseLinkProps) {
|
||||
const {isExternal = false, color = "$link", block = false, autoFocus, ...otherProps} = props;
|
||||
const {
|
||||
isExternal = false,
|
||||
color = "$link",
|
||||
block = false,
|
||||
animated = true,
|
||||
autoFocus,
|
||||
...otherProps
|
||||
} = props;
|
||||
|
||||
const {isFocusVisible, focusProps}: IFocusRingAria<UseLinkProps> = useFocusRing({autoFocus});
|
||||
|
||||
const linkCss = useMemo(() => {
|
||||
let backgroundColor = isNormalColor(color as string)
|
||||
? `${color}Light`
|
||||
const isNormal = isNormalColor(color as string);
|
||||
|
||||
const linkColor = isNormal ? `$${color}` : color;
|
||||
const backgroundColor = isNormal
|
||||
? `${linkColor}Light`
|
||||
: getTokenValue("colors", color as string, 0.2);
|
||||
|
||||
if (block) {
|
||||
return {
|
||||
color,
|
||||
color: linkColor,
|
||||
padding: "$2 $4",
|
||||
borderRadius: "$base",
|
||||
"&:hover": {
|
||||
@ -54,10 +64,10 @@ export function useLink(props: UseLinkProps) {
|
||||
};
|
||||
}
|
||||
|
||||
return {color};
|
||||
return {color: linkColor};
|
||||
}, [color, block]);
|
||||
|
||||
return {linkCss, focusProps, isExternal, isFocusVisible, ...otherProps};
|
||||
return {linkCss, focusProps, isExternal, animated, isFocusVisible, ...otherProps};
|
||||
}
|
||||
|
||||
export type UseLinkReturn = ReturnType<typeof useLink>;
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
import React from "react";
|
||||
import {Meta} from "@storybook/react";
|
||||
import {Spacer, Grid, Text} from "@nextui-org/react";
|
||||
import {Spacer} from "@nextui-org/spacer";
|
||||
import {Grid} from "@nextui-org/grid";
|
||||
import {Text} from "@nextui-org/text";
|
||||
|
||||
import {Link} from "../src";
|
||||
|
||||
@ -20,38 +22,46 @@ export const Underline = () => (
|
||||
);
|
||||
|
||||
export const Variants = () => (
|
||||
<>
|
||||
<Text>
|
||||
<Grid.Container gap={1}>
|
||||
<Grid xs={12}>
|
||||
<Link href="#">{text}</Link>
|
||||
</Text>
|
||||
<Text>
|
||||
</Grid>
|
||||
<Grid xs={12}>
|
||||
<Link color="secondary" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Text>
|
||||
<Text>
|
||||
</Grid>
|
||||
<Grid xs={12}>
|
||||
<Link color="success" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Text>
|
||||
<Text>
|
||||
</Grid>
|
||||
<Grid xs={12}>
|
||||
<Link color="warning" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Grid>
|
||||
<Grid xs={12}>
|
||||
<Link color="error" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Text>
|
||||
</>
|
||||
</Grid>
|
||||
</Grid.Container>
|
||||
);
|
||||
|
||||
export const isExternal = () => (
|
||||
<>
|
||||
<Link isExternal href="#">
|
||||
{text}
|
||||
</Link>
|
||||
<Spacer y={0.5} />
|
||||
<Link isExternal color="primary" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</>
|
||||
<Grid.Container gap={1}>
|
||||
<Grid xs={12}>
|
||||
<Link isExternal href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Grid>
|
||||
<Grid xs={12}>
|
||||
<Link isExternal color="secondary" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Grid>
|
||||
</Grid.Container>
|
||||
);
|
||||
|
||||
export const Block = () => (
|
||||
@ -86,5 +96,10 @@ export const Block = () => (
|
||||
{text}
|
||||
</Link>
|
||||
</Grid>
|
||||
<Grid xs={12}>
|
||||
<Link block color="$pink600" href="#">
|
||||
{text}
|
||||
</Link>
|
||||
</Grid>
|
||||
</Grid.Container>
|
||||
);
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -39,7 +39,6 @@
|
||||
"postpack": "clean-package restore"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.6.2",
|
||||
"@nextui-org/system": "workspace:*",
|
||||
"@nextui-org/avatar": "workspace:*",
|
||||
"@nextui-org/col": "workspace:*",
|
||||
@ -48,7 +47,8 @@
|
||||
"@nextui-org/container": "workspace:*",
|
||||
"@nextui-org/badge": "workspace:*",
|
||||
"@nextui-org/grid": "workspace:*",
|
||||
"@nextui-org/text": "workspace:*"
|
||||
"@nextui-org/text": "workspace:*",
|
||||
"@nextui-org/link": "workspace:*"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16.8.0",
|
||||
|
||||
@ -7,3 +7,4 @@ export * from "@nextui-org/avatar";
|
||||
export * from "@nextui-org/badge";
|
||||
export * from "@nextui-org/grid";
|
||||
export * from "@nextui-org/text";
|
||||
export * from "@nextui-org/link";
|
||||
|
||||
@ -2,7 +2,8 @@
|
||||
"extends": "../../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
"@stitches/react": ["../../../node_modules/@stitches/react"]
|
||||
"@stitches/react": ["../../../node_modules/@stitches/react"],
|
||||
"@react-types/link": ["../../../node_modules/@react-types/link"]
|
||||
}
|
||||
},
|
||||
"include": ["src", "index.ts"]
|
||||
|
||||
@ -3,6 +3,8 @@ import {findUpSync} from "find-up";
|
||||
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -3,6 +3,8 @@ import {findUpSync} from "find-up";
|
||||
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -3,6 +3,8 @@ import {findUpSync} from "find-up";
|
||||
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -3,6 +3,8 @@ import {findUpSync} from "find-up";
|
||||
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -3,6 +3,8 @@ import {findUpSync} from "find-up";
|
||||
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -3,6 +3,8 @@ import {findUpSync} from "find-up";
|
||||
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
@ -4,7 +4,7 @@ import {findUpSync} from "find-up";
|
||||
export default defineConfig({
|
||||
clean: true,
|
||||
minify: false,
|
||||
treeshake: false,
|
||||
treeshake: true,
|
||||
format: ["cjs", "esm"],
|
||||
outExtension(ctx) {
|
||||
return {js: `.${ctx.format}.js`};
|
||||
|
||||
218
pnpm-lock.yaml
generated
218
pnpm-lock.yaml
generated
@ -404,10 +404,12 @@ importers:
|
||||
packages/components/link:
|
||||
specifiers:
|
||||
'@nextui-org/dom-utils': workspace:*
|
||||
'@nextui-org/react': workspace:*
|
||||
'@nextui-org/grid': workspace:*
|
||||
'@nextui-org/shared-css': workspace:*
|
||||
'@nextui-org/shared-utils': workspace:*
|
||||
'@nextui-org/spacer': workspace:*
|
||||
'@nextui-org/system': workspace:*
|
||||
'@nextui-org/text': workspace:*
|
||||
'@react-types/link': ^3.3.3
|
||||
clean-package: 2.1.1
|
||||
react: ^17.0.2
|
||||
@ -418,7 +420,9 @@ importers:
|
||||
'@nextui-org/shared-utils': link:../../utilities/shared-utils
|
||||
'@nextui-org/system': link:../../core/system
|
||||
devDependencies:
|
||||
'@nextui-org/react': link:../../core/react
|
||||
'@nextui-org/grid': link:../grid
|
||||
'@nextui-org/spacer': link:../spacer
|
||||
'@nextui-org/text': link:../text
|
||||
'@react-types/link': 3.3.3_react@17.0.2
|
||||
clean-package: 2.1.1
|
||||
react: 17.0.2
|
||||
@ -479,6 +483,7 @@ importers:
|
||||
'@nextui-org/col': workspace:*
|
||||
'@nextui-org/container': workspace:*
|
||||
'@nextui-org/grid': workspace:*
|
||||
'@nextui-org/link': workspace:*
|
||||
'@nextui-org/row': workspace:*
|
||||
'@nextui-org/spacer': workspace:*
|
||||
'@nextui-org/system': workspace:*
|
||||
@ -495,6 +500,7 @@ importers:
|
||||
'@nextui-org/col': link:../../components/col
|
||||
'@nextui-org/container': link:../../components/container
|
||||
'@nextui-org/grid': link:../../components/grid
|
||||
'@nextui-org/link': link:../../components/link
|
||||
'@nextui-org/row': link:../../components/row
|
||||
'@nextui-org/spacer': link:../../components/spacer
|
||||
'@nextui-org/system': link:../system
|
||||
@ -2044,7 +2050,7 @@ packages:
|
||||
babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3
|
||||
babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3
|
||||
babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3
|
||||
core-js-compat: 3.25.3
|
||||
core-js-compat: 3.25.4
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -2122,7 +2128,7 @@ packages:
|
||||
resolution: {integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
core-js-pure: 3.25.3
|
||||
core-js-pure: 3.25.4
|
||||
regenerator-runtime: 0.13.9
|
||||
|
||||
/@babel/runtime/7.19.0:
|
||||
@ -2870,7 +2876,7 @@ packages:
|
||||
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
|
||||
dependencies:
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
chalk: 4.1.2
|
||||
jest-message-util: 28.1.3
|
||||
jest-util: 28.1.3
|
||||
@ -2891,14 +2897,14 @@ packages:
|
||||
'@jest/test-result': 28.1.3
|
||||
'@jest/transform': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
ci-info: 3.4.0
|
||||
exit: 0.1.2
|
||||
graceful-fs: 4.2.10
|
||||
jest-changed-files: 28.1.3
|
||||
jest-config: 28.1.3_@types+node@16.11.62
|
||||
jest-config: 28.1.3_@types+node@16.11.63
|
||||
jest-haste-map: 28.1.3
|
||||
jest-message-util: 28.1.3
|
||||
jest-regex-util: 28.0.2
|
||||
@ -2926,7 +2932,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/fake-timers': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
jest-mock: 28.1.3
|
||||
dev: false
|
||||
|
||||
@ -2953,7 +2959,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/types': 28.1.3
|
||||
'@sinonjs/fake-timers': 9.1.2
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
jest-message-util: 28.1.3
|
||||
jest-mock: 28.1.3
|
||||
jest-util: 28.1.3
|
||||
@ -2985,7 +2991,7 @@ packages:
|
||||
'@jest/transform': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@jridgewell/trace-mapping': 0.3.15
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
chalk: 4.1.2
|
||||
collect-v8-coverage: 1.0.1
|
||||
exit: 0.1.2
|
||||
@ -3096,7 +3102,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
'@types/istanbul-reports': 3.0.1
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/yargs': 15.0.14
|
||||
chalk: 4.1.2
|
||||
dev: false
|
||||
@ -3108,7 +3114,7 @@ packages:
|
||||
'@jest/schemas': 28.1.3
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
'@types/istanbul-reports': 3.0.1
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/yargs': 17.0.13
|
||||
chalk: 4.1.2
|
||||
dev: false
|
||||
@ -3323,7 +3329,7 @@ packages:
|
||||
/@messageformat/parser/5.0.0:
|
||||
resolution: {integrity: sha512-WiDKhi8F0zQaFU8cXgqq69eYFarCnTVxKcvhAONufKf0oUxbqLMW6JX6rV4Hqh+BEQWGyKKKHY4g1XA6bCLylA==}
|
||||
dependencies:
|
||||
moo: 0.5.1
|
||||
moo: 0.5.2
|
||||
dev: false
|
||||
|
||||
/@messageformat/runtime/3.0.1:
|
||||
@ -4393,7 +4399,7 @@ packages:
|
||||
dependencies:
|
||||
ansi-html-community: 0.0.8
|
||||
common-path-prefix: 3.0.0
|
||||
core-js-pure: 3.25.3
|
||||
core-js-pure: 3.25.4
|
||||
error-stack-parser: 2.1.4
|
||||
find-up: 5.0.0
|
||||
html-entities: 2.3.3
|
||||
@ -5649,7 +5655,7 @@ packages:
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
axe-core: 4.4.3
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
react: 17.0.2
|
||||
@ -5678,7 +5684,7 @@ packages:
|
||||
'@storybook/core-events': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
fast-deep-equal: 3.1.3
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
@ -5712,7 +5718,7 @@ packages:
|
||||
'@storybook/core-events': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
memoizerific: 1.11.3
|
||||
react: 17.0.2
|
||||
@ -5742,7 +5748,7 @@ packages:
|
||||
'@storybook/node-logger': 6.5.12
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
lodash: 4.17.21
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
@ -5789,7 +5795,7 @@ packages:
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
fast-deep-equal: 3.1.3
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
@ -5882,7 +5888,7 @@ packages:
|
||||
'@storybook/builder-webpack5': 6.5.12_yfqaazeklgwsjlcznxhycavjk4
|
||||
'@storybook/core-common': 6.5.12_cima6w5nhv347slcqx5mgz6eyy
|
||||
'@storybook/node-logger': 6.5.12
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
regenerator-runtime: 0.13.9
|
||||
@ -5915,7 +5921,7 @@ packages:
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/router': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/qs': 6.9.7
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
prop-types: 15.8.1
|
||||
qs: 6.11.0
|
||||
@ -5942,7 +5948,7 @@ packages:
|
||||
'@storybook/components': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/core-events': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
@ -5965,7 +5971,7 @@ packages:
|
||||
'@storybook/components': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/core-events': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
@ -5991,7 +5997,7 @@ packages:
|
||||
'@storybook/router': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/source-loader': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
estraverse: 5.3.0
|
||||
loader-utils: 2.0.2
|
||||
prop-types: 15.8.1
|
||||
@ -6017,7 +6023,7 @@ packages:
|
||||
'@storybook/client-logger': 6.5.12
|
||||
'@storybook/components': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
regenerator-runtime: 0.13.9
|
||||
@ -6040,7 +6046,7 @@ packages:
|
||||
'@storybook/components': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/core-events': 6.5.12
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
memoizerific: 1.11.3
|
||||
prop-types: 15.8.1
|
||||
@ -6063,7 +6069,7 @@ packages:
|
||||
'@storybook/router': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/webpack-env': 1.18.0
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
@ -6083,7 +6089,7 @@ packages:
|
||||
'@storybook/router': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/semver': 7.3.2
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
fast-deep-equal: 3.1.3
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
@ -6124,12 +6130,12 @@ packages:
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/ui': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/webpack': 4.41.32
|
||||
autoprefixer: 9.8.8
|
||||
babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
|
||||
case-sensitive-paths-webpack-plugin: 2.4.0
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
css-loader: 3.6.0_webpack@4.46.0
|
||||
file-loader: 6.2.0_webpack@4.46.0
|
||||
find-up: 5.0.0
|
||||
@ -6192,12 +6198,12 @@ packages:
|
||||
'@storybook/semver': 7.3.2
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde
|
||||
babel-plugin-named-exports-order: 0.0.2
|
||||
browser-assert: 1.2.1
|
||||
case-sensitive-paths-webpack-plugin: 2.4.0
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
css-loader: 5.2.7_webpack@5.74.0
|
||||
fork-ts-checker-webpack-plugin: 6.5.2_kqqhyckqnvl4rtkkne4gkygef4
|
||||
glob: 7.2.3
|
||||
@ -6234,7 +6240,7 @@ packages:
|
||||
'@storybook/channels': 6.5.12
|
||||
'@storybook/client-logger': 6.5.12
|
||||
'@storybook/core-events': 6.5.12
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
qs: 6.11.0
|
||||
telejson: 6.0.8
|
||||
@ -6245,7 +6251,7 @@ packages:
|
||||
dependencies:
|
||||
'@storybook/channels': 6.5.12
|
||||
'@storybook/client-logger': 6.5.12
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
telejson: 6.0.8
|
||||
dev: false
|
||||
@ -6253,7 +6259,7 @@ packages:
|
||||
/@storybook/channels/6.5.12:
|
||||
resolution: {integrity: sha512-X5XaKbe4b7LXJ4sUakBo00x6pXnW78JkOonHoaKoWsccHLlEzwfBZpVVekhVZnqtCoLT23dB8wjKgA71RYWoiw==}
|
||||
dependencies:
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
ts-dedent: 2.2.0
|
||||
util-deprecate: 1.0.2
|
||||
dev: false
|
||||
@ -6273,7 +6279,7 @@ packages:
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/qs': 6.9.7
|
||||
'@types/webpack-env': 1.18.0
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
fast-deep-equal: 3.1.3
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
@ -6291,7 +6297,7 @@ packages:
|
||||
/@storybook/client-logger/6.5.12:
|
||||
resolution: {integrity: sha512-IrkMr5KZcudX935/C2balFbxLHhkvQnJ78rbVThHDVckQ7l3oIXTh66IMzldeOabVFDZEMiW8AWuGEYof+JtLw==}
|
||||
dependencies:
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
dev: false
|
||||
|
||||
@ -6304,7 +6310,7 @@ packages:
|
||||
'@storybook/client-logger': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
memoizerific: 1.11.3
|
||||
qs: 6.11.0
|
||||
react: 17.0.2
|
||||
@ -6336,7 +6342,7 @@ packages:
|
||||
'@storybook/ui': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
airbnb-js-shims: 2.2.1
|
||||
ansi-to-html: 0.6.15
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
qs: 6.11.0
|
||||
@ -6373,7 +6379,7 @@ packages:
|
||||
'@storybook/ui': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
airbnb-js-shims: 2.2.1
|
||||
ansi-to-html: 0.6.15
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
qs: 6.11.0
|
||||
@ -6421,13 +6427,13 @@ packages:
|
||||
'@babel/register': 7.18.9_@babel+core@7.19.3
|
||||
'@storybook/node-logger': 6.5.12
|
||||
'@storybook/semver': 7.3.2
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/pretty-hrtime': 1.0.1
|
||||
babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
|
||||
babel-plugin-macros: 3.1.0
|
||||
babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.19.3
|
||||
chalk: 4.1.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
express: 4.18.1
|
||||
file-system-cache: 1.1.0
|
||||
find-up: 5.0.0
|
||||
@ -6461,7 +6467,7 @@ packages:
|
||||
/@storybook/core-events/6.5.12:
|
||||
resolution: {integrity: sha512-0AMyMM19R/lHsYRfWqM8zZTXthasTAK2ExkSRzYi2GkIaVMxRKtM33YRwxKIpJ6KmIKIs8Ru3QCXu1mfCmGzNg==}
|
||||
dependencies:
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
dev: false
|
||||
|
||||
/@storybook/core-server/6.5.12_cjzoun63xnks5f33itzvayhqxa:
|
||||
@ -6494,7 +6500,7 @@ packages:
|
||||
'@storybook/semver': 7.3.2
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/telemetry': 6.5.12_cima6w5nhv347slcqx5mgz6eyy
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/node-fetch': 2.6.2
|
||||
'@types/pretty-hrtime': 1.0.1
|
||||
'@types/webpack': 4.41.32
|
||||
@ -6504,7 +6510,7 @@ packages:
|
||||
cli-table3: 0.6.3
|
||||
commander: 6.2.1
|
||||
compression: 1.7.4
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
cpy: 8.1.2
|
||||
detect-port: 1.5.1
|
||||
express: 4.18.1
|
||||
@ -6598,7 +6604,7 @@ packages:
|
||||
'@babel/types': 7.19.3
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/mdx1-csf': 0.0.1_@babel+core@7.19.3
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
fs-extra: 9.1.0
|
||||
global: 4.4.0
|
||||
regenerator-runtime: 0.13.9
|
||||
@ -6619,7 +6625,7 @@ packages:
|
||||
'@babel/core': 7.19.3
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
doctrine: 3.0.0
|
||||
lodash: 4.17.21
|
||||
regenerator-runtime: 0.13.9
|
||||
@ -6648,12 +6654,12 @@ packages:
|
||||
'@storybook/node-logger': 6.5.12
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/ui': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/webpack': 4.41.32
|
||||
babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
|
||||
case-sensitive-paths-webpack-plugin: 2.4.0
|
||||
chalk: 4.1.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
css-loader: 3.6.0_webpack@4.46.0
|
||||
express: 4.18.1
|
||||
file-loader: 6.2.0_webpack@4.46.0
|
||||
@ -6706,11 +6712,11 @@ packages:
|
||||
'@storybook/node-logger': 6.5.12
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/ui': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde
|
||||
case-sensitive-paths-webpack-plugin: 2.4.0
|
||||
chalk: 4.1.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
css-loader: 5.2.7_webpack@5.74.0
|
||||
express: 4.18.1
|
||||
find-up: 5.0.0
|
||||
@ -6768,7 +6774,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/npmlog': 4.1.4
|
||||
chalk: 4.1.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
npmlog: 5.0.1
|
||||
pretty-hrtime: 1.0.3
|
||||
dev: false
|
||||
@ -6776,7 +6782,7 @@ packages:
|
||||
/@storybook/postinstall/6.5.12:
|
||||
resolution: {integrity: sha512-6K73f9c2UO+w4Wtyo2BxEpEsnhPvMgqHSaJ9Yt6Tc90LaDGUbcVgy6PNibsRyuJ/KQ543WeiRO5rSZfm2uJU9A==}
|
||||
dependencies:
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
dev: false
|
||||
|
||||
/@storybook/preview-web/6.5.12_sfoxds7t5ydpegc3knd667wn6m:
|
||||
@ -6792,7 +6798,7 @@ packages:
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
ansi-to-html: 0.6.15
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
qs: 6.11.0
|
||||
@ -6869,14 +6875,14 @@ packages:
|
||||
'@storybook/semver': 7.3.2
|
||||
'@storybook/store': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@types/estree': 0.0.51
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/webpack-env': 1.18.0
|
||||
acorn: 7.4.1
|
||||
acorn-jsx: 5.3.2_acorn@7.4.1
|
||||
acorn-walk: 7.2.0
|
||||
babel-plugin-add-react-displayname: 0.0.5
|
||||
babel-plugin-react-docgen: 4.2.1
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
escodegen: 2.0.0
|
||||
fs-extra: 9.1.0
|
||||
global: 4.4.0
|
||||
@ -6922,7 +6928,7 @@ packages:
|
||||
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
dependencies:
|
||||
'@storybook/client-logger': 6.5.12
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
memoizerific: 1.11.3
|
||||
qs: 6.11.0
|
||||
react: 17.0.2
|
||||
@ -6935,7 +6941,7 @@ packages:
|
||||
engines: {node: '>=10'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
find-up: 4.1.0
|
||||
dev: false
|
||||
|
||||
@ -6948,7 +6954,7 @@ packages:
|
||||
'@storybook/addons': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/client-logger': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
estraverse: 5.3.0
|
||||
global: 4.4.0
|
||||
loader-utils: 2.0.2
|
||||
@ -6969,7 +6975,7 @@ packages:
|
||||
'@storybook/client-logger': 6.5.12
|
||||
'@storybook/core-events': 6.5.12
|
||||
'@storybook/csf': 0.0.2--canary.4566f4d.1
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
fast-deep-equal: 3.1.3
|
||||
global: 4.4.0
|
||||
lodash: 4.17.21
|
||||
@ -6990,7 +6996,7 @@ packages:
|
||||
'@storybook/client-logger': 6.5.12
|
||||
'@storybook/core-common': 6.5.12_cima6w5nhv347slcqx5mgz6eyy
|
||||
chalk: 4.1.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
detect-package-manager: 2.0.1
|
||||
fetch-retry: 5.0.3
|
||||
fs-extra: 9.1.0
|
||||
@ -7018,7 +7024,7 @@ packages:
|
||||
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
dependencies:
|
||||
'@storybook/client-logger': 6.5.12
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
memoizerific: 1.11.3
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
@ -7040,7 +7046,7 @@ packages:
|
||||
'@storybook/router': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@storybook/semver': 7.3.2
|
||||
'@storybook/theming': 6.5.12_sfoxds7t5ydpegc3knd667wn6m
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
memoizerific: 1.11.3
|
||||
qs: 6.11.0
|
||||
react: 17.0.2
|
||||
@ -7424,19 +7430,19 @@ packages:
|
||||
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
|
||||
dependencies:
|
||||
'@types/minimatch': 5.1.2
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
dev: false
|
||||
|
||||
/@types/glob/8.0.0:
|
||||
resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==}
|
||||
dependencies:
|
||||
'@types/minimatch': 5.1.2
|
||||
'@types/node': 18.7.23
|
||||
'@types/node': 18.8.0
|
||||
|
||||
/@types/graceful-fs/4.1.5:
|
||||
resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
dev: false
|
||||
|
||||
/@types/hast/2.3.4:
|
||||
@ -7495,7 +7501,7 @@ packages:
|
||||
/@types/jsdom/16.2.15:
|
||||
resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/parse5': 6.0.3
|
||||
'@types/tough-cookie': 4.0.2
|
||||
dev: false
|
||||
@ -7511,7 +7517,7 @@ packages:
|
||||
resolution: {integrity: sha512-Ny/PJkO6nxWAQnaet8q/oWz15lrfwvdvBpuY4treB0CSsBO1CG0fVuNLngR3m3bepQLd+E4c3Y3DlC2okpUvPw==}
|
||||
dependencies:
|
||||
'@types/fined': 1.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
dev: false
|
||||
|
||||
/@types/lodash/4.14.186:
|
||||
@ -7534,7 +7540,7 @@ packages:
|
||||
/@types/node-fetch/2.6.2:
|
||||
resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
form-data: 3.0.1
|
||||
dev: false
|
||||
|
||||
@ -7546,12 +7552,12 @@ packages:
|
||||
resolution: {integrity: sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==}
|
||||
dev: false
|
||||
|
||||
/@types/node/16.11.62:
|
||||
resolution: {integrity: sha512-K/ggecSdwAAy2NUW4WKmF4Rc03GKbsfP+k326UWgckoS+Rzd2PaWbjk76dSmqdLQvLTJAO9axiTUJ6488mFsYQ==}
|
||||
/@types/node/16.11.63:
|
||||
resolution: {integrity: sha512-3OxnrEQLBz8EIIaHpg3CibmTAEGkDBcHY4fL5cnBwg2vd2yvHrUDGWxK+MlYPeXWWIoJJW79dGtU+oeBr6166Q==}
|
||||
dev: false
|
||||
|
||||
/@types/node/18.7.23:
|
||||
resolution: {integrity: sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==}
|
||||
/@types/node/18.8.0:
|
||||
resolution: {integrity: sha512-u+h43R6U8xXDt2vzUaVP3VwjjLyOJk6uEciZS8OSyziUQGOwmk+l+4drxcsDboHXwyTaqS1INebghmWMRxq3LA==}
|
||||
|
||||
/@types/normalize-package-data/2.4.1:
|
||||
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
|
||||
@ -7663,7 +7669,7 @@ packages:
|
||||
resolution: {integrity: sha512-x9yaMvEh5BEaZKeVQC4vp3l+QoFj3BXcd4aYfuKSzIIyihjdVARAadYy3SMNIz0WCCdS2vB9JL/U6GQk5PaxQw==}
|
||||
dependencies:
|
||||
'@types/glob': 8.0.0
|
||||
'@types/node': 18.7.23
|
||||
'@types/node': 18.8.0
|
||||
|
||||
/@types/source-list-map/0.1.2:
|
||||
resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==}
|
||||
@ -7692,7 +7698,7 @@ packages:
|
||||
/@types/through/0.0.30:
|
||||
resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
dev: false
|
||||
|
||||
/@types/tough-cookie/4.0.2:
|
||||
@ -7720,7 +7726,7 @@ packages:
|
||||
/@types/webpack-sources/3.2.0:
|
||||
resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/source-list-map': 0.1.2
|
||||
source-map: 0.7.4
|
||||
dev: false
|
||||
@ -7728,7 +7734,7 @@ packages:
|
||||
/@types/webpack/4.41.32:
|
||||
resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
'@types/tapable': 1.0.8
|
||||
'@types/uglify-js': 3.17.0
|
||||
'@types/webpack-sources': 3.2.0
|
||||
@ -8867,7 +8873,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.19.3
|
||||
'@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.19.3
|
||||
core-js-compat: 3.25.3
|
||||
core-js-compat: 3.25.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
@ -8879,7 +8885,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.19.3
|
||||
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
|
||||
core-js-compat: 3.25.3
|
||||
core-js-compat: 3.25.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
@ -10071,18 +10077,18 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/core-js-compat/3.25.3:
|
||||
resolution: {integrity: sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ==}
|
||||
/core-js-compat/3.25.4:
|
||||
resolution: {integrity: sha512-gCEcIEEqCR6230WroNunK/653CWKhqyCKJ9b+uESqOt/WFJA8B4lTnnQFdpYY5vmBcwJAA90Bo5vXs+CVsf6iA==}
|
||||
dependencies:
|
||||
browserslist: 4.21.4
|
||||
dev: false
|
||||
|
||||
/core-js-pure/3.25.3:
|
||||
resolution: {integrity: sha512-T/7qvgv70MEvRkZ8p6BasLZmOVYKzOaWNBEHAU8FmveCJkl4nko2quqPQOmy6AJIp5MBanhz9no3A94NoRb0XA==}
|
||||
/core-js-pure/3.25.4:
|
||||
resolution: {integrity: sha512-qRbgm0ADrsNTU66UcW47YMJjXm+ShhUP2gkoEoAShT2BHO3cb5gGqLtmWpjnM6Wx9h5hMSF4uZ+jEV/8+4KCsw==}
|
||||
requiresBuild: true
|
||||
|
||||
/core-js/3.25.3:
|
||||
resolution: {integrity: sha512-y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ==}
|
||||
/core-js/3.25.4:
|
||||
resolution: {integrity: sha512-JDLxg61lFPFYQ7U0HKoyKwVUV63VbbVTb/K73Yf+k4Mf4ZBZxCjfyrWZjTk1ZM7ZrgFSqhSIOmuzYAxG2f/reQ==}
|
||||
requiresBuild: true
|
||||
dev: false
|
||||
|
||||
@ -14225,7 +14231,7 @@ packages:
|
||||
'@jest/expect': 28.1.3
|
||||
'@jest/test-result': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
chalk: 4.1.2
|
||||
co: 4.6.0
|
||||
dedent: 0.7.0
|
||||
@ -14311,7 +14317,7 @@ packages:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/jest-config/28.1.3_@types+node@16.11.62:
|
||||
/jest-config/28.1.3_@types+node@16.11.63:
|
||||
resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
|
||||
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
|
||||
peerDependencies:
|
||||
@ -14326,7 +14332,7 @@ packages:
|
||||
'@babel/core': 7.19.3
|
||||
'@jest/test-sequencer': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
babel-jest: 28.1.3_@babel+core@7.19.3
|
||||
chalk: 4.1.2
|
||||
ci-info: 3.4.0
|
||||
@ -14386,7 +14392,7 @@ packages:
|
||||
'@jest/fake-timers': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/jsdom': 16.2.15
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 15.14.9
|
||||
jest-mock: 28.1.3
|
||||
jest-util: 28.1.3
|
||||
jsdom: 19.0.0
|
||||
@ -14404,7 +14410,7 @@ packages:
|
||||
'@jest/environment': 28.1.3
|
||||
'@jest/fake-timers': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
jest-mock: 28.1.3
|
||||
jest-util: 28.1.3
|
||||
dev: false
|
||||
@ -14420,7 +14426,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
'@types/graceful-fs': 4.1.5
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
anymatch: 3.1.2
|
||||
fb-watchman: 2.0.2
|
||||
graceful-fs: 4.2.10
|
||||
@ -14443,7 +14449,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/types': 28.1.3
|
||||
'@types/graceful-fs': 4.1.5
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
anymatch: 3.1.2
|
||||
fb-watchman: 2.0.2
|
||||
graceful-fs: 4.2.10
|
||||
@ -14494,7 +14500,7 @@ packages:
|
||||
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
|
||||
dependencies:
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
dev: false
|
||||
|
||||
/jest-pnp-resolver/1.2.2_jest-resolve@28.1.3:
|
||||
@ -14553,7 +14559,7 @@ packages:
|
||||
'@jest/test-result': 28.1.3
|
||||
'@jest/transform': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
chalk: 4.1.2
|
||||
emittery: 0.10.2
|
||||
graceful-fs: 4.2.10
|
||||
@ -14607,7 +14613,7 @@ packages:
|
||||
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
graceful-fs: 4.2.10
|
||||
dev: false
|
||||
|
||||
@ -14647,7 +14653,7 @@ packages:
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.10
|
||||
is-ci: 2.0.0
|
||||
@ -14659,7 +14665,7 @@ packages:
|
||||
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
|
||||
dependencies:
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
chalk: 4.1.2
|
||||
ci-info: 3.4.0
|
||||
graceful-fs: 4.2.10
|
||||
@ -14700,7 +14706,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/test-result': 28.1.3
|
||||
'@jest/types': 28.1.3
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
emittery: 0.10.2
|
||||
@ -14712,7 +14718,7 @@ packages:
|
||||
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
|
||||
engines: {node: '>= 10.13.0'}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
merge-stream: 2.0.0
|
||||
supports-color: 7.2.0
|
||||
dev: false
|
||||
@ -14721,7 +14727,7 @@ packages:
|
||||
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
|
||||
engines: {node: '>= 10.13.0'}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
merge-stream: 2.0.0
|
||||
supports-color: 8.1.1
|
||||
dev: false
|
||||
@ -14730,7 +14736,7 @@ packages:
|
||||
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
|
||||
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
|
||||
dependencies:
|
||||
'@types/node': 16.11.62
|
||||
'@types/node': 16.11.63
|
||||
merge-stream: 2.0.0
|
||||
supports-color: 8.1.1
|
||||
dev: false
|
||||
@ -14986,7 +14992,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/runtime': 7.19.0
|
||||
app-root-dir: 1.0.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
dotenv: 8.6.0
|
||||
dotenv-expand: 5.1.0
|
||||
dev: false
|
||||
@ -15893,8 +15899,8 @@ packages:
|
||||
hasBin: true
|
||||
dev: false
|
||||
|
||||
/moo/0.5.1:
|
||||
resolution: {integrity: sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==}
|
||||
/moo/0.5.2:
|
||||
resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==}
|
||||
dev: false
|
||||
|
||||
/move-concurrently/1.0.1:
|
||||
@ -17254,7 +17260,7 @@ packages:
|
||||
camelcase-keys: 7.0.2
|
||||
chalk: 4.1.2
|
||||
common-tags: 1.8.2
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
eslint: 8.24.0
|
||||
find-up: 5.0.0
|
||||
get-stdin: 8.0.0
|
||||
@ -17846,7 +17852,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/buble': 0.20.1
|
||||
buble: 0.19.6
|
||||
core-js: 3.25.3
|
||||
core-js: 3.25.4
|
||||
dom-iterator: 1.0.0
|
||||
prism-react-renderer: 1.3.5_react@17.0.2
|
||||
prop-types: 15.8.1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user