mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
Merge branch 'dev' into next
This commit is contained in:
commit
66df033ec8
2
.npmrc
2
.npmrc
@ -1 +1,3 @@
|
|||||||
registry=https://registry.npmmirror.com/
|
registry=https://registry.npmmirror.com/
|
||||||
|
|
||||||
|
strict-peer-dependencies=false
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
"*.{ts,tsx,js,vue,less}": "prettier --write",
|
"*.{ts,tsx,js,vue,less}": "prettier --write",
|
||||||
"*.{ts,tsx,js,vue}": "eslint --fix"
|
"*.{ts,tsx,js,vue}": "eslint --fix"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@7.1.6",
|
"packageManager": "pnpm@7.11.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vant/cli": "workspace:*",
|
"@vant/cli": "workspace:*",
|
||||||
"@vant/eslint-config": "workspace:*",
|
"@vant/eslint-config": "workspace:*",
|
||||||
|
@ -31,6 +31,12 @@ yarn add stylelint@13 @vant/stylelint-config
|
|||||||
|
|
||||||
现在会默认生成 WebStorm 所需的 web-types.json 文件到 `lib/web-types.json` 目录下。
|
现在会默认生成 WebStorm 所需的 web-types.json 文件到 `lib/web-types.json` 目录下。
|
||||||
|
|
||||||
|
## v4.0.4
|
||||||
|
|
||||||
|
`2022-07-02`
|
||||||
|
|
||||||
|
- 修复构建 sfc 文件的类型定义时报错的问题
|
||||||
|
|
||||||
## v4.0.3
|
## v4.0.3
|
||||||
|
|
||||||
`2022-07-02`
|
`2022-07-02`
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vant/cli",
|
"name": "@vant/cli",
|
||||||
"version": "4.0.3",
|
"version": "4.0.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"typings": "lib/index.d.ts",
|
"typings": "lib/index.d.ts",
|
||||||
|
@ -87,11 +87,6 @@ export async function compileSfc(filePath: string): Promise<any> {
|
|||||||
new Promise((resolve) => {
|
new Promise((resolve) => {
|
||||||
let script = '';
|
let script = '';
|
||||||
|
|
||||||
// the generated render fn lacks type definitions
|
|
||||||
if (lang === 'ts') {
|
|
||||||
script += '// @ts-nocheck\n';
|
|
||||||
}
|
|
||||||
|
|
||||||
let bindingMetadata;
|
let bindingMetadata;
|
||||||
if (descriptor.scriptSetup) {
|
if (descriptor.scriptSetup) {
|
||||||
const { bindings, content } = compileScript(descriptor, {
|
const { bindings, content } = compileScript(descriptor, {
|
||||||
@ -125,6 +120,12 @@ export async function compileSfc(filePath: string): Promise<any> {
|
|||||||
|
|
||||||
script += `\n${EXPORT} ${VUEIDS}`;
|
script += `\n${EXPORT} ${VUEIDS}`;
|
||||||
|
|
||||||
|
// ts-nocheck should be placed on the first line
|
||||||
|
// the generated render fn lacks type definitions
|
||||||
|
if (lang === 'ts') {
|
||||||
|
script = '// @ts-nocheck\n' + script;
|
||||||
|
}
|
||||||
|
|
||||||
outputFile(scriptFilePath, script).then(resolve);
|
outputFile(scriptFilePath, script).then(resolve);
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
感谢你使用 Vant。
|
感谢你使用 Vant。
|
||||||
|
|
||||||
以下是关于向 Vant 提交反馈或代码的指南。在向 Vant 提交 issue 或者 PR 之前,请先花几分钟时间阅读以下文字。
|
以下是关于向 Vant 提交反馈或代码的指南。在向 Vant 提交 issue 或者 PR 之前,请先花几分钟时间阅读以下内容。
|
||||||
|
|
||||||
### Issue 规范
|
### Issue 规范
|
||||||
|
|
||||||
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
### 本地开发
|
### 本地开发
|
||||||
|
|
||||||
在进行本地开发前,请先确保你的开发环境中安装了 [Node.js >= 14](https://nodejs.org) 和 [pnpm](https://pnpm.io).
|
在进行本地开发前,请先确保你的开发环境中安装了 [Node.js >= 14.19.0](https://nodejs.org)。
|
||||||
|
|
||||||
按照下面的步骤操作,即可在本地开发 Vant 组件。
|
按照下面的步骤操作,即可在本地开发 Vant 组件。
|
||||||
|
|
||||||
@ -23,6 +23,12 @@
|
|||||||
# 克隆仓库
|
# 克隆仓库
|
||||||
git clone git@github.com:vant-ui/vant.git
|
git clone git@github.com:vant-ui/vant.git
|
||||||
|
|
||||||
|
# 启用 pnpm 包管理器
|
||||||
|
corepack enable
|
||||||
|
|
||||||
|
# 如果无法使用 corepack,你也可以手动安装 pnpm
|
||||||
|
npm install -g pnpm@7
|
||||||
|
|
||||||
# 安装依赖
|
# 安装依赖
|
||||||
pnpm i
|
pnpm i
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^16.11.56",
|
"@types/node": "^16.11.56",
|
||||||
|
"@types/jest": "^27.0.0",
|
||||||
"@vant/area-data": "workspace:*",
|
"@vant/area-data": "workspace:*",
|
||||||
"@vant/cli": "workspace:*",
|
"@vant/cli": "workspace:*",
|
||||||
"@vant/eslint-config": "workspace:*",
|
"@vant/eslint-config": "workspace:*",
|
||||||
|
@ -176,7 +176,7 @@ Vant exports following Dialog utility functions:
|
|||||||
| title | Title | _string_ | - |
|
| title | Title | _string_ | - |
|
||||||
| width | Width | _number \| string_ | `320px` |
|
| width | Width | _number \| string_ | `320px` |
|
||||||
| message | Message | _string \| () => JSX.ELement_ | - |
|
| message | Message | _string \| () => JSX.ELement_ | - |
|
||||||
| message-align | Message align, can be set to `left` `right` | _string_ | `center` |
|
| message-align | Message align, can be set to `left` `right` `justify` | _string_ | `center` |
|
||||||
| theme | Theme style, can be set to `round-button` | _string_ | `default` |
|
| theme | Theme style, can be set to `round-button` | _string_ | `default` |
|
||||||
| show-confirm-button | Whether to show confirm button | _boolean_ | `true` |
|
| show-confirm-button | Whether to show confirm button | _boolean_ | `true` |
|
||||||
| show-cancel-button | Whether to show cancel button | _boolean_ | `false` |
|
| show-cancel-button | Whether to show cancel button | _boolean_ | `false` |
|
||||||
|
@ -197,7 +197,7 @@ Vant 中导出了以下 Dialog 相关的辅助函数:
|
|||||||
| title | 标题 | _string_ | - |
|
| title | 标题 | _string_ | - |
|
||||||
| width | 弹窗宽度,默认单位为 `px` | _number \| string_ | `320px` |
|
| width | 弹窗宽度,默认单位为 `px` | _number \| string_ | `320px` |
|
||||||
| message | 文本内容,支持通过 `\n` 换行 | _string \| () => JSX.Element_ | - |
|
| message | 文本内容,支持通过 `\n` 换行 | _string \| () => JSX.Element_ | - |
|
||||||
| message-align | 内容水平对齐方式,可选值为 `left` `right` | _string_ | `center` |
|
| message-align | 内容水平对齐方式,可选值为 `left` `right` `justify` | _string_ | `center` |
|
||||||
| theme | 样式风格,可选值为 `round-button` | _string_ | `default` |
|
| theme | 样式风格,可选值为 `round-button` | _string_ | `default` |
|
||||||
| show-confirm-button | 是否展示确认按钮 | _boolean_ | `true` |
|
| show-confirm-button | 是否展示确认按钮 | _boolean_ | `true` |
|
||||||
| show-cancel-button | 是否展示取消按钮 | _boolean_ | `false` |
|
| show-cancel-button | 是否展示取消按钮 | _boolean_ | `false` |
|
||||||
|
@ -82,6 +82,10 @@ body {
|
|||||||
&--right {
|
&--right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--justify {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
|
@ -4,7 +4,7 @@ import type { Interceptor, Numeric } from '../utils';
|
|||||||
export type DialogTheme = 'default' | 'round-button';
|
export type DialogTheme = 'default' | 'round-button';
|
||||||
export type DialogAction = 'confirm' | 'cancel';
|
export type DialogAction = 'confirm' | 'cancel';
|
||||||
export type DialogMessage = string | (() => JSX.Element);
|
export type DialogMessage = string | (() => JSX.Element);
|
||||||
export type DialogMessageAlign = 'left' | 'center' | 'right';
|
export type DialogMessageAlign = 'left' | 'center' | 'right' | 'justify';
|
||||||
|
|
||||||
export type DialogOptions = {
|
export type DialogOptions = {
|
||||||
title?: string;
|
title?: string;
|
||||||
|
@ -44,6 +44,7 @@ export const imageProps = {
|
|||||||
fit: String as PropType<ImageFit>,
|
fit: String as PropType<ImageFit>,
|
||||||
position: String as PropType<ImagePosition>,
|
position: String as PropType<ImagePosition>,
|
||||||
round: Boolean,
|
round: Boolean,
|
||||||
|
block: Boolean,
|
||||||
width: numericProp,
|
width: numericProp,
|
||||||
height: numericProp,
|
height: numericProp,
|
||||||
radius: numericProp,
|
radius: numericProp,
|
||||||
@ -191,7 +192,10 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return () => (
|
return () => (
|
||||||
<div class={bem({ round: props.round })} style={style.value}>
|
<div
|
||||||
|
class={bem({ round: props.round, block: props.block })}
|
||||||
|
style={style.value}
|
||||||
|
>
|
||||||
{renderImage()}
|
{renderImage()}
|
||||||
{renderPlaceholder()}
|
{renderPlaceholder()}
|
||||||
{slots.default?.()}
|
{slots.default?.()}
|
||||||
|
@ -101,6 +101,7 @@ app.use(Lazyload);
|
|||||||
| height | Height | _number \| string_ | - |
|
| height | Height | _number \| string_ | - |
|
||||||
| radius | Border Radius | _number \| string_ | `0` |
|
| radius | Border Radius | _number \| string_ | `0` |
|
||||||
| round | Whether to be round | _boolean_ | `false` |
|
| round | Whether to be round | _boolean_ | `false` |
|
||||||
|
| block `3.6.3` | Whether the root node is a block element | _boolean_ | `false` |
|
||||||
| lazy-load | Whether to enable lazy load, should register [Lazyload](#/en-US/lazyload) component | _boolean_ | `false` |
|
| lazy-load | Whether to enable lazy load, should register [Lazyload](#/en-US/lazyload) component | _boolean_ | `false` |
|
||||||
| show-error | Whether to show error placeholder | _boolean_ | `true` |
|
| show-error | Whether to show error placeholder | _boolean_ | `true` |
|
||||||
| show-loading | Whether to show loading placeholder | _boolean_ | `true` |
|
| show-loading | Whether to show loading placeholder | _boolean_ | `true` |
|
||||||
|
@ -127,6 +127,7 @@ app.use(Lazyload);
|
|||||||
| height | 高度,默认单位为 `px` | _number \| string_ | - |
|
| height | 高度,默认单位为 `px` | _number \| string_ | - |
|
||||||
| radius | 圆角大小,默认单位为 `px` | _number \| string_ | `0` |
|
| radius | 圆角大小,默认单位为 `px` | _number \| string_ | `0` |
|
||||||
| round | 是否显示为圆形 | _boolean_ | `false` |
|
| round | 是否显示为圆形 | _boolean_ | `false` |
|
||||||
|
| block `3.6.3` | 是否将根节点设置为块级元素,默认情况下为 `inline-block` 元素 | _boolean_ | `false` |
|
||||||
| lazy-load | 是否开启图片懒加载,须配合 [Lazyload](#/zh-CN/lazyload) 组件使用 | _boolean_ | `false` |
|
| lazy-load | 是否开启图片懒加载,须配合 [Lazyload](#/zh-CN/lazyload) 组件使用 | _boolean_ | `false` |
|
||||||
| show-error | 是否展示图片加载失败提示 | _boolean_ | `true` |
|
| show-error | 是否展示图片加载失败提示 | _boolean_ | `true` |
|
||||||
| show-loading | 是否展示图片加载中提示 | _boolean_ | `true` |
|
| show-loading | 是否展示图片加载中提示 | _boolean_ | `true` |
|
||||||
|
@ -21,6 +21,10 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--block {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
&__img,
|
&__img,
|
||||||
&__error,
|
&__error,
|
||||||
&__loading {
|
&__loading {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import { isObject } from './validate';
|
||||||
import type { ComponentPublicInstance } from 'vue';
|
import type { ComponentPublicInstance } from 'vue';
|
||||||
|
|
||||||
export function noop() {}
|
export function noop() {}
|
||||||
@ -16,7 +17,7 @@ export function get(object: any, path: string): any {
|
|||||||
let result = object;
|
let result = object;
|
||||||
|
|
||||||
keys.forEach((key) => {
|
keys.forEach((key) => {
|
||||||
result = result[key] ?? '';
|
result = isObject(result) ? result[key] ?? '' : '';
|
||||||
});
|
});
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
64
pnpm-lock.yaml
generated
64
pnpm-lock.yaml
generated
@ -1,4 +1,4 @@
|
|||||||
lockfileVersion: 5.3
|
lockfileVersion: 5.4
|
||||||
|
|
||||||
importers:
|
importers:
|
||||||
|
|
||||||
@ -45,6 +45,7 @@ importers:
|
|||||||
|
|
||||||
packages/vant:
|
packages/vant:
|
||||||
specifiers:
|
specifiers:
|
||||||
|
'@types/jest': ^27.0.0
|
||||||
'@types/node': ^16.11.56
|
'@types/node': ^16.11.56
|
||||||
'@vant/area-data': workspace:*
|
'@vant/area-data': workspace:*
|
||||||
'@vant/cli': workspace:*
|
'@vant/cli': workspace:*
|
||||||
@ -62,6 +63,7 @@ importers:
|
|||||||
'@vant/popperjs': link:../vant-popperjs
|
'@vant/popperjs': link:../vant-popperjs
|
||||||
'@vant/use': link:../vant-use
|
'@vant/use': link:../vant-use
|
||||||
devDependencies:
|
devDependencies:
|
||||||
|
'@types/jest': 27.5.2
|
||||||
'@types/node': 16.11.56
|
'@types/node': 16.11.56
|
||||||
'@vant/area-data': link:../vant-area-data
|
'@vant/area-data': link:../vant-area-data
|
||||||
'@vant/cli': link:../vant-cli
|
'@vant/cli': link:../vant-cli
|
||||||
@ -136,7 +138,7 @@ importers:
|
|||||||
'@babel/core': 7.18.13
|
'@babel/core': 7.18.13
|
||||||
'@babel/preset-typescript': 7.18.6_@babel+core@7.18.13
|
'@babel/preset-typescript': 7.18.6_@babel+core@7.18.13
|
||||||
'@docsearch/css': 3.2.1
|
'@docsearch/css': 3.2.1
|
||||||
'@docsearch/js': 3.2.1_react-dom@18.2.0+react@18.2.0
|
'@docsearch/js': 3.2.1_biqbaboplfbrettd7655fr4n2y
|
||||||
'@types/jest': 27.5.2
|
'@types/jest': 27.5.2
|
||||||
'@vant/eslint-config': link:../vant-eslint-config
|
'@vant/eslint-config': link:../vant-eslint-config
|
||||||
'@vant/touch-emulator': link:../vant-touch-emulator
|
'@vant/touch-emulator': link:../vant-touch-emulator
|
||||||
@ -160,7 +162,7 @@ importers:
|
|||||||
jest-serializer-html: 7.1.0
|
jest-serializer-html: 7.1.0
|
||||||
less: 4.1.3
|
less: 4.1.3
|
||||||
markdown-it: 12.3.2
|
markdown-it: 12.3.2
|
||||||
markdown-it-anchor: 8.6.4_d643ca6eb40ae68ab966a77bead78073
|
markdown-it-anchor: 8.6.4_2zb4u3vubltivolgu556vv4aom
|
||||||
nano-staged: 0.8.0
|
nano-staged: 0.8.0
|
||||||
nanospinner: 1.1.0
|
nanospinner: 1.1.0
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
@ -211,11 +213,11 @@ importers:
|
|||||||
eslint-plugin-vue: ^9.4.0
|
eslint-plugin-vue: ^9.4.0
|
||||||
typescript: ^4.8.2
|
typescript: ^4.8.2
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/eslint-plugin': 5.36.1_586c56b3bc76dec8ef0f241fb0cda488
|
'@typescript-eslint/eslint-plugin': 5.36.1_lbwfnm54o3pmr3ypeqp3btnera
|
||||||
'@typescript-eslint/parser': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
eslint-config-airbnb-base: 15.0.0_281cc4e22b3419695ab0c330ccaae282
|
eslint-config-airbnb-base: 15.0.0_faomjyrlgqmwswvqymymzkxcqi
|
||||||
eslint-config-prettier: 8.5.0_eslint@8.23.0
|
eslint-config-prettier: 8.5.0_eslint@8.23.0
|
||||||
eslint-plugin-import: 2.26.0_b62f4c66ab291fb5cb0e4045c2ba4587
|
eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4
|
||||||
eslint-plugin-vue: 9.4.0_eslint@8.23.0
|
eslint-plugin-vue: 9.4.0_eslint@8.23.0
|
||||||
devDependencies:
|
devDependencies:
|
||||||
enhanced-resolve: 5.10.0
|
enhanced-resolve: 5.10.0
|
||||||
@ -914,10 +916,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-gaP6TxxwQC+K8D6TRx5WULUWKrcbzECOPA2KCVMuI+6C7dNiGUk5yXXzVhc5sld79XKYLnO9DRTI4mjXDYkh+g==}
|
resolution: {integrity: sha512-gaP6TxxwQC+K8D6TRx5WULUWKrcbzECOPA2KCVMuI+6C7dNiGUk5yXXzVhc5sld79XKYLnO9DRTI4mjXDYkh+g==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@docsearch/js/3.2.1_react-dom@18.2.0+react@18.2.0:
|
/@docsearch/js/3.2.1_biqbaboplfbrettd7655fr4n2y:
|
||||||
resolution: {integrity: sha512-H1PekEtSeS0msetR2YGGey2w7jQ2wAKfGODJvQTygSwMgUZ+2DHpzUgeDyEBIXRIfaBcoQneqrzsljM62pm6Xg==}
|
resolution: {integrity: sha512-H1PekEtSeS0msetR2YGGey2w7jQ2wAKfGODJvQTygSwMgUZ+2DHpzUgeDyEBIXRIfaBcoQneqrzsljM62pm6Xg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@docsearch/react': 3.2.1_react-dom@18.2.0+react@18.2.0
|
'@docsearch/react': 3.2.1_biqbaboplfbrettd7655fr4n2y
|
||||||
preact: 10.8.2
|
preact: 10.8.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@algolia/client-search'
|
- '@algolia/client-search'
|
||||||
@ -926,7 +928,7 @@ packages:
|
|||||||
- react-dom
|
- react-dom
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@docsearch/react/3.2.1_react-dom@18.2.0+react@18.2.0:
|
/@docsearch/react/3.2.1_biqbaboplfbrettd7655fr4n2y:
|
||||||
resolution: {integrity: sha512-EzTQ/y82s14IQC5XVestiK/kFFMe2aagoYFuTAIfIb/e+4FU7kSMKonRtLwsCiLQHmjvNQq+HO+33giJ5YVtaQ==}
|
resolution: {integrity: sha512-EzTQ/y82s14IQC5XVestiK/kFFMe2aagoYFuTAIfIb/e+4FU7kSMKonRtLwsCiLQHmjvNQq+HO+33giJ5YVtaQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@types/react': '>= 16.8.0 < 19.0.0'
|
'@types/react': '>= 16.8.0 < 19.0.0'
|
||||||
@ -1502,7 +1504,6 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
jest-matcher-utils: 27.5.1
|
jest-matcher-utils: 27.5.1
|
||||||
pretty-format: 27.5.1
|
pretty-format: 27.5.1
|
||||||
dev: false
|
|
||||||
|
|
||||||
/@types/json-buffer/3.0.0:
|
/@types/json-buffer/3.0.0:
|
||||||
resolution: {integrity: sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==}
|
resolution: {integrity: sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==}
|
||||||
@ -1581,7 +1582,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/yargs-parser': 21.0.0
|
'@types/yargs-parser': 21.0.0
|
||||||
|
|
||||||
/@typescript-eslint/eslint-plugin/5.36.1_586c56b3bc76dec8ef0f241fb0cda488:
|
/@typescript-eslint/eslint-plugin/5.36.1_lbwfnm54o3pmr3ypeqp3btnera:
|
||||||
resolution: {integrity: sha512-iC40UK8q1tMepSDwiLbTbMXKDxzNy+4TfPWgIL661Ym0sD42vRcQU93IsZIrmi+x292DBr60UI/gSwfdVYexCA==}
|
resolution: {integrity: sha512-iC40UK8q1tMepSDwiLbTbMXKDxzNy+4TfPWgIL661Ym0sD42vRcQU93IsZIrmi+x292DBr60UI/gSwfdVYexCA==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -1592,10 +1593,10 @@ packages:
|
|||||||
typescript:
|
typescript:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/parser': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
'@typescript-eslint/scope-manager': 5.36.1
|
'@typescript-eslint/scope-manager': 5.36.1
|
||||||
'@typescript-eslint/type-utils': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/type-utils': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
'@typescript-eslint/utils': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/utils': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
eslint: 8.23.0
|
eslint: 8.23.0
|
||||||
functional-red-black-tree: 1.0.1
|
functional-red-black-tree: 1.0.1
|
||||||
@ -1608,7 +1609,7 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@typescript-eslint/parser/5.36.1_eslint@8.23.0+typescript@4.8.2:
|
/@typescript-eslint/parser/5.36.1_yqf6kl63nyoq5megxukfnom5rm:
|
||||||
resolution: {integrity: sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A==}
|
resolution: {integrity: sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -1636,7 +1637,7 @@ packages:
|
|||||||
'@typescript-eslint/visitor-keys': 5.36.1
|
'@typescript-eslint/visitor-keys': 5.36.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@typescript-eslint/type-utils/5.36.1_eslint@8.23.0+typescript@4.8.2:
|
/@typescript-eslint/type-utils/5.36.1_yqf6kl63nyoq5megxukfnom5rm:
|
||||||
resolution: {integrity: sha512-xfZhfmoQT6m3lmlqDvDzv9TiCYdw22cdj06xY0obSznBsT///GK5IEZQdGliXpAOaRL34o8phEvXzEo/VJx13Q==}
|
resolution: {integrity: sha512-xfZhfmoQT6m3lmlqDvDzv9TiCYdw22cdj06xY0obSznBsT///GK5IEZQdGliXpAOaRL34o8phEvXzEo/VJx13Q==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -1647,7 +1648,7 @@ packages:
|
|||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/typescript-estree': 5.36.1_typescript@4.8.2
|
'@typescript-eslint/typescript-estree': 5.36.1_typescript@4.8.2
|
||||||
'@typescript-eslint/utils': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/utils': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
eslint: 8.23.0
|
eslint: 8.23.0
|
||||||
tsutils: 3.21.0_typescript@4.8.2
|
tsutils: 3.21.0_typescript@4.8.2
|
||||||
@ -1682,7 +1683,7 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@typescript-eslint/utils/5.36.1_eslint@8.23.0+typescript@4.8.2:
|
/@typescript-eslint/utils/5.36.1_yqf6kl63nyoq5megxukfnom5rm:
|
||||||
resolution: {integrity: sha512-lNj4FtTiXm5c+u0pUehozaUWhh7UYKnwryku0nxJlYUEWetyG92uw2pr+2Iy4M/u0ONMKzfrx7AsGBTCzORmIg==}
|
resolution: {integrity: sha512-lNj4FtTiXm5c+u0pUehozaUWhh7UYKnwryku0nxJlYUEWetyG92uw2pr+2Iy4M/u0ONMKzfrx7AsGBTCzORmIg==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -1967,7 +1968,6 @@ packages:
|
|||||||
/ansi-styles/5.2.0:
|
/ansi-styles/5.2.0:
|
||||||
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
dev: false
|
|
||||||
|
|
||||||
/ansi-styles/6.1.0:
|
/ansi-styles/6.1.0:
|
||||||
resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==}
|
resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==}
|
||||||
@ -2615,8 +2615,8 @@ packages:
|
|||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
is-text-path: 1.0.1
|
|
||||||
JSONStream: 1.3.5
|
JSONStream: 1.3.5
|
||||||
|
is-text-path: 1.0.1
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
meow: 8.1.2
|
meow: 8.1.2
|
||||||
split2: 3.2.2
|
split2: 3.2.2
|
||||||
@ -2836,7 +2836,6 @@ packages:
|
|||||||
/diff-sequences/27.5.1:
|
/diff-sequences/27.5.1:
|
||||||
resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
|
resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
|
||||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||||
dev: false
|
|
||||||
|
|
||||||
/diffable-html/4.1.0:
|
/diffable-html/4.1.0:
|
||||||
resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==}
|
resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==}
|
||||||
@ -3288,7 +3287,7 @@ packages:
|
|||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/eslint-config-airbnb-base/15.0.0_281cc4e22b3419695ab0c330ccaae282:
|
/eslint-config-airbnb-base/15.0.0_faomjyrlgqmwswvqymymzkxcqi:
|
||||||
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
|
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
|
||||||
engines: {node: ^10.12.0 || >=12.0.0}
|
engines: {node: ^10.12.0 || >=12.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -3297,7 +3296,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
confusing-browser-globals: 1.0.11
|
confusing-browser-globals: 1.0.11
|
||||||
eslint: 8.23.0
|
eslint: 8.23.0
|
||||||
eslint-plugin-import: 2.26.0_b62f4c66ab291fb5cb0e4045c2ba4587
|
eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4
|
||||||
object.assign: 4.1.2
|
object.assign: 4.1.2
|
||||||
object.entries: 1.1.5
|
object.entries: 1.1.5
|
||||||
semver: 6.3.0
|
semver: 6.3.0
|
||||||
@ -3321,7 +3320,7 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/eslint-module-utils/2.7.3_f6f598d58d3bd4640126d6600a4285f5:
|
/eslint-module-utils/2.7.3_632zrvmnhpkgiajg2zqauquf6u:
|
||||||
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
|
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -3339,7 +3338,7 @@ packages:
|
|||||||
eslint-import-resolver-webpack:
|
eslint-import-resolver-webpack:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/parser': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
eslint-import-resolver-node: 0.3.6
|
eslint-import-resolver-node: 0.3.6
|
||||||
find-up: 2.1.0
|
find-up: 2.1.0
|
||||||
@ -3347,7 +3346,7 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/eslint-plugin-import/2.26.0_b62f4c66ab291fb5cb0e4045c2ba4587:
|
/eslint-plugin-import/2.26.0_wyxuyzvlfep3lsyoibc4fosfq4:
|
||||||
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
|
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -3357,14 +3356,14 @@ packages:
|
|||||||
'@typescript-eslint/parser':
|
'@typescript-eslint/parser':
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/parser': 5.36.1_eslint@8.23.0+typescript@4.8.2
|
'@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm
|
||||||
array-includes: 3.1.5
|
array-includes: 3.1.5
|
||||||
array.prototype.flat: 1.3.0
|
array.prototype.flat: 1.3.0
|
||||||
debug: 2.6.9
|
debug: 2.6.9
|
||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
eslint: 8.23.0
|
eslint: 8.23.0
|
||||||
eslint-import-resolver-node: 0.3.6
|
eslint-import-resolver-node: 0.3.6
|
||||||
eslint-module-utils: 2.7.3_f6f598d58d3bd4640126d6600a4285f5
|
eslint-module-utils: 2.7.3_632zrvmnhpkgiajg2zqauquf6u
|
||||||
has: 1.0.3
|
has: 1.0.3
|
||||||
is-core-module: 2.9.0
|
is-core-module: 2.9.0
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
@ -4675,7 +4674,6 @@ packages:
|
|||||||
diff-sequences: 27.5.1
|
diff-sequences: 27.5.1
|
||||||
jest-get-type: 27.5.1
|
jest-get-type: 27.5.1
|
||||||
pretty-format: 27.5.1
|
pretty-format: 27.5.1
|
||||||
dev: false
|
|
||||||
|
|
||||||
/jest-docblock/27.5.1:
|
/jest-docblock/27.5.1:
|
||||||
resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==}
|
resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==}
|
||||||
@ -4728,7 +4726,6 @@ packages:
|
|||||||
/jest-get-type/27.5.1:
|
/jest-get-type/27.5.1:
|
||||||
resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
|
resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
|
||||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||||
dev: false
|
|
||||||
|
|
||||||
/jest-haste-map/27.5.1:
|
/jest-haste-map/27.5.1:
|
||||||
resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
|
resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
|
||||||
@ -4791,7 +4788,6 @@ packages:
|
|||||||
jest-diff: 27.5.1
|
jest-diff: 27.5.1
|
||||||
jest-get-type: 27.5.1
|
jest-get-type: 27.5.1
|
||||||
pretty-format: 27.5.1
|
pretty-format: 27.5.1
|
||||||
dev: false
|
|
||||||
|
|
||||||
/jest-message-util/27.5.1:
|
/jest-message-util/27.5.1:
|
||||||
resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
|
resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
|
||||||
@ -5353,7 +5349,7 @@ packages:
|
|||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/markdown-it-anchor/8.6.4_d643ca6eb40ae68ab966a77bead78073:
|
/markdown-it-anchor/8.6.4_2zb4u3vubltivolgu556vv4aom:
|
||||||
resolution: {integrity: sha512-Ul4YVYZNxMJYALpKtu+ZRdrryYt/GlQ5CK+4l1bp/gWXOG2QWElt6AqF3Mih/wfUKdZbNAZVXGR73/n6U/8img==}
|
resolution: {integrity: sha512-Ul4YVYZNxMJYALpKtu+ZRdrryYt/GlQ5CK+4l1bp/gWXOG2QWElt6AqF3Mih/wfUKdZbNAZVXGR73/n6U/8img==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@types/markdown-it': '*'
|
'@types/markdown-it': '*'
|
||||||
@ -6034,7 +6030,6 @@ packages:
|
|||||||
ansi-regex: 5.0.1
|
ansi-regex: 5.0.1
|
||||||
ansi-styles: 5.2.0
|
ansi-styles: 5.2.0
|
||||||
react-is: 17.0.2
|
react-is: 17.0.2
|
||||||
dev: false
|
|
||||||
|
|
||||||
/process-nextick-args/2.0.1:
|
/process-nextick-args/2.0.1:
|
||||||
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
||||||
@ -6157,7 +6152,6 @@ packages:
|
|||||||
|
|
||||||
/react-is/17.0.2:
|
/react-is/17.0.2:
|
||||||
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
|
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
|
||||||
dev: false
|
|
||||||
|
|
||||||
/react/18.2.0:
|
/react/18.2.0:
|
||||||
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
|
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user