diff --git a/.github/workflows/pr-docs-build.yml b/.github/workflows/pr-docs-build.yml index 0171775c75297..91f8c2e55ef9e 100644 --- a/.github/workflows/pr-docs-build.yml +++ b/.github/workflows/pr-docs-build.yml @@ -2,6 +2,10 @@ name: PR Docs Build on: pull_request +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} + cancel-in-progress: true + jobs: build: name: Build diff --git a/.github/workflows/publish-docs-deploy-manual.yml b/.github/workflows/publish-docs-deploy-manual.yml index 7cd6f91460772..5d1c22a6f65f9 100644 --- a/.github/workflows/publish-docs-deploy-manual.yml +++ b/.github/workflows/publish-docs-deploy-manual.yml @@ -51,7 +51,7 @@ jobs: DOC_ENV: production - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4.3.4 with: token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages @@ -61,7 +61,7 @@ jobs: commit-message: website deploy - name: Deploy to vercel - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4.3.4 with: token: ${{ secrets.EP_BOT_TOKEN }} branch: main diff --git a/.github/workflows/publish-docs-deploy.yml b/.github/workflows/publish-docs-deploy.yml index 7f27ed931a9ff..3a7e8614a5903 100644 --- a/.github/workflows/publish-docs-deploy.yml +++ b/.github/workflows/publish-docs-deploy.yml @@ -58,7 +58,7 @@ jobs: DOC_ENV: production - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4.3.4 with: token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages @@ -68,7 +68,7 @@ jobs: commit-message: website deploy - name: Deploy to vercel - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4.3.4 with: token: ${{ secrets.EP_BOT_TOKEN }} branch: main diff --git a/.github/workflows/staging-docs.yml b/.github/workflows/staging-docs.yml index a55280b23dba4..5f050a6965e68 100644 --- a/.github/workflows/staging-docs.yml +++ b/.github/workflows/staging-docs.yml @@ -5,6 +5,10 @@ on: branches: - 'dev' +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} + cancel-in-progress: true + jobs: build: name: Build @@ -62,7 +66,7 @@ jobs: NODE_OPTIONS: --max-old-space-size=4096 - name: Deploy staging website - uses: JamesIves/github-pages-deploy-action@v4.3.3 + uses: JamesIves/github-pages-deploy-action@v4.3.4 with: token: ${{ secrets.EP_BOT_TOKEN }} branch: main diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index b03666287c41c..5726d239e5826 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -4,6 +4,10 @@ name: ๐Ÿงช Unit Test on: pull_request +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} + cancel-in-progress: true + jobs: build: name: Unit Test (${{ matrix.node-name }}) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 1763129b7e564..14b544aca3f33 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -1,5 +1,53 @@ ## Changelog +### 2.2.7 + +_2022-07-01_ + +#### Features + +- Components close all messages of the specified type (#8415 by @Lete114) +- Components [message-box] add autofocus attribute (#8445 by @YunYouJun) +- Components [autocomplete] expose blur event (#8364 by @tolking) + +#### Bug fixes + +- Components [tabs] fix change acitve cannot scroll in view (#8332 by @xiahouwei) +- Components [select] collapse-tags-tooltip drop first item (#8344 by @chenxch) +- Components [message-box] the focus error when used ElMessageBox (#8336 by @LinZhanMing) +- Components [autocomplete] the popup still appears after select (#8350 by @tolking) +- Components [tooltip] not disappear when change (#8301 by @sunnyCoCosun) +- Components [space] missing empty string size (#8039 by @HeftyKoo) +- Components [message]: offset (#8379 by @sxzz) +- Components [select] multiple init height (#8423 by @chenxch) +- Theme-chalk [pagination] style if selected value is disabled (#8447 by @ryuhangyeong) +- Components [select] fix select dropdown width (#8396 by @Cheerwhy) (#8435) +- Components [select-v2] fix select-v2 dropdown width (#8442 by @Cheerwhy) +- Components [popover] fix dark mode background color (#8133 by @holazz) +- Components [color-picker] can't select predefine value (#8205 by @btea) +- Components [radio] Divide attrs into label and input (#8476 by @chenxch) +- Components [tabs] name is number 0 become a string (#8469 by @chenxch) +- Style(components): [transfer] modify import order (#8345 by @holazz) + +#### Refactors + +- Components [image-viewer] simplify emits type checking (#8329 by @ryuhangyeong) +- Components [dialog] using addUnit in the use-dialog (#8304 by @ryuhangyeong) +- Components [switch] deprecate value prop (#8335 by @sxzz) +- Components [upload] use JSX in Unit test (#8268 by @sxzz) +- Components [descriptions] use JSX in Unit test (#8351 by @ryuhangyeong) +- Components [message] fix typings and switch to script setup (#8378 by @sxzz) +- Components [switch] switch to script-setup syntax (#7792 by @chenxch) +- Components [space] refactor (#8386 by @holazz) +- Components [slider] use JSX in Unit test (#8225 by @holazz) +- Components [popover] switch to script-setup syntax (#8273 by @holazz) +- Add ts-nocheck and check all files (#8401 by @sxzz) +- Components [space] use JSX in Unit test (#8433 by @holazz) +- Components [popconfirm] changed button type (#8436 by @ryuhangyeong) +- Components [drawer] replace with addUnit (#8463 by @ryuhangyeong) +- Components [only-child] simplify conditions (#8480 by @ryuhangyeong) +- Components [transfer] switch to script-setup syntax (#8343 by @holazz) + ### 2.2.6 _2022-06-17_ diff --git a/docs/.vitepress/vitepress/styles/css-vars.scss b/docs/.vitepress/vitepress/styles/css-vars.scss index 32fb45bcaafac..5ea845a25f563 100644 --- a/docs/.vitepress/vitepress/styles/css-vars.scss +++ b/docs/.vitepress/vitepress/styles/css-vars.scss @@ -1,4 +1,5 @@ @use './mixins' as *; + // css variables :root { // layouts @@ -14,6 +15,7 @@ --bg-brand-color: var(--el-color-primary-light-9); --bg-color: var(--el-bg-color); + --bg-color-filter: #ffffffb3; --bg-color-soft: #fafafa; --bg-color-mute: #f2f2f2; --border-color: var(--el-border-color); @@ -53,7 +55,7 @@ --content-min-width: 16rem; --content-max-width: 48rem; - --nav-z-index: 20; + --nav-z-index: 10; --sub-nav-z-index: 10; --sidebar-z-index: 40; --overlay-z-index: 30; @@ -77,4 +79,5 @@ .dark { --bg-color-soft: #242424; --bg-color-mute: #2c2c2c; + --bg-color-filter: #141414b3; } diff --git a/docs/.vitepress/vitepress/styles/navbar.scss b/docs/.vitepress/vitepress/styles/navbar.scss index 04fbd74b1bc28..04c6ac36f5942 100644 --- a/docs/.vitepress/vitepress/styles/navbar.scss +++ b/docs/.vitepress/vitepress/styles/navbar.scss @@ -8,8 +8,11 @@ @include with-bg; position: relative; border-bottom: 1px solid var(--border-color); - padding: 0 12px 0 24px; height: var(--header-height); + padding: 0 12px 0 24px; + backdrop-filter: saturate(50%) blur(8px); + background: var(--bg-color-filter); + -webkit-backdrop-filter: saturate(50%) blur(8px); top: 0; @include respond-to('md') { @@ -54,6 +57,7 @@ left: 0; position: relative; z-index: var(--nav-z-index); + @include respond-to('lg') { position: fixed; width: 100%; @@ -63,9 +67,11 @@ .menu + .appearance { margin-left: 8px; } + .menu + .social-links { margin-left: 12px; } + .appearance + .social-links { margin-left: 12px; } diff --git a/docs/components.d.ts b/docs/components.d.ts index 7ac5da590a881..ef28b33d287ca 100644 --- a/docs/components.d.ts +++ b/docs/components.d.ts @@ -1,6 +1,6 @@ // generated by unplugin-vue-components // We suggest you to commit this file into source control -// Read more: https://github.com/vuejs/vue-next/pull/3399 +// Read more: https://github.com/vuejs/core/pull/3399 import '@vue/runtime-core' declare module '@vue/runtime-core' { diff --git a/docs/en-US/component/autocomplete.md b/docs/en-US/component/autocomplete.md index 8adf61498b18b..d35bc2f9cbdcf 100644 --- a/docs/en-US/component/autocomplete.md +++ b/docs/en-US/component/autocomplete.md @@ -60,18 +60,13 @@ autocomplete/remote-search ## Autocomplete Slots -| Name | Description | -| ------- | ------------------------------- | -| prefix | content as Input prefix | -| suffix | content as Input suffix | -| prepend | content to prepend before Input | -| append | content to append after Input | - -## Autocomplete Scoped Slot - -| Name | Description | -| ---- | --------------------------------------------------------------------- | -| โ€” | Custom content for input suggestions. The scope parameter is { item } | +| Name | Description | +| ------- | --------------------------------------------------------------------- | +| โ€” | Custom content for input suggestions. The scope parameter is { item } | +| prefix | content as Input prefix | +| suffix | content as Input suffix | +| prepend | content to prepend before Input | +| append | content to append after Input | ## Autocomplete Events @@ -85,3 +80,4 @@ autocomplete/remote-search | Method | Description | Parameters | | ------ | ----------------------- | ---------- | | focus | focus the input element | โ€” | +| blur | blur the input element | โ€” | diff --git a/docs/en-US/component/dropdown.md b/docs/en-US/component/dropdown.md index 77a4feaca9433..62fb6574db001 100644 --- a/docs/en-US/component/dropdown.md +++ b/docs/en-US/component/dropdown.md @@ -79,22 +79,22 @@ dropdown/sizes ## Dropdown Attributes -| Attribute | Description | Type | Accepted Values | Default | -| -------------- | --------------------------------------------------------------------------------------------------------------------- | --------------- | ------------------------------------------------------------------ | ------------------------------------------------------- | -| type | menu button type, refer to `Button` Component, only works when `split-button` is true | string | โ€” | โ€” | -| size | menu size, also works on the split button | string | large / default / small | default | -| max-height | the max height of menu | string / number | โ€” | โ€” | -| split-button | whether a button group is displayed | boolean | โ€” | false | -| disabled | Whether to disable | boolean | โ€” | false | -| placement | placement of pop menu | string | top/top-start/top-end/bottom/bottom-start/bottom-end | bottom | -| trigger | how to trigger | string | hover/click/contextmenu | hover | -| hide-on-click | whether to hide menu after clicking menu-item | boolean | โ€” | true | -| show-timeout | Delay time before show a dropdown (only works when trigger is `hover`) | number | โ€” | 250 | -| hide-timeout | Delay time before hide a dropdown (only works when trigger is `hover`) | number | โ€” | 150 | -| role | The ARIA role attribute for the dropdown menu. Depending on the use case, you may want to change this to 'navigation' | string | โ€” | 'menu' | -| tabindex | [tabindex](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of Dropdown | number | โ€” | 0 | -| popper-class | custom class name for Dropdown's dropdown | string | โ€” | โ€” | -| popper-options | [popper.js](https://popper.js.org/documentation.html) parameters | Object | refer to [popper.js](https://popper.js.org/documentation.html) doc | `{ boundariesElement: 'body', gpuAcceleration: false }` | +| Attribute | Description | Type | Accepted Values | Default | +| -------------- | --------------------------------------------------------------------------------------------------------------------- | --------------- | -------------------------------------------------------- | ------------------------------------------------------- | +| type | menu button type, refer to `Button` Component, only works when `split-button` is true | string | โ€” | โ€” | +| size | menu size, also works on the split button | string | large / default / small | default | +| max-height | the max height of menu | string / number | โ€” | โ€” | +| split-button | whether a button group is displayed | boolean | โ€” | false | +| disabled | Whether to disable | boolean | โ€” | false | +| placement | placement of pop menu | string | top/top-start/top-end/bottom/bottom-start/bottom-end | bottom | +| trigger | how to trigger | string | hover/click/contextmenu | hover | +| hide-on-click | whether to hide menu after clicking menu-item | boolean | โ€” | true | +| show-timeout | Delay time before show a dropdown (only works when trigger is `hover`) | number | โ€” | 250 | +| hide-timeout | Delay time before hide a dropdown (only works when trigger is `hover`) | number | โ€” | 150 | +| role | The ARIA role attribute for the dropdown menu. Depending on the use case, you may want to change this to 'navigation' | string | โ€” | 'menu' | +| tabindex | [tabindex](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of Dropdown | number | โ€” | 0 | +| popper-class | custom class name for Dropdown's dropdown | string | โ€” | โ€” | +| popper-options | [popper.js](https://popper.js.org/docs/v2/) parameters | Object | refer to [popper.js](https://popper.js.org/docs/v2/) doc | `{ boundariesElement: 'body', gpuAcceleration: false }` | ## Dropdown Slots diff --git a/docs/en-US/component/message-box.md b/docs/en-US/component/message-box.md index b1e31f6d773a3..b003d3fb0124f 100644 --- a/docs/en-US/component/message-box.md +++ b/docs/en-US/component/message-box.md @@ -95,6 +95,16 @@ message-box/centered-content ::: +## Customized Icon + +The icon can be customized to any Vue component or [render function (JSX)](https://vuejs.org/guide/extras/render-function.html). + +:::demo + +message-box/customized-icon + +::: + ## Draggable MessageBox can be draggable. @@ -144,6 +154,7 @@ The corresponding methods are: `ElMessageBox`, `ElMessageBox.alert`, `ElMessageB | Attribute | Description | Type | Accepted Values | Default | | ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | ------------------------------------------------ | +| autofocus | auto focus when open MessageBox | boolean | โ€” | true | | title | title of the MessageBox | string | โ€” | โ€” | | message | content of the MessageBox | string | โ€” | โ€” | | dangerouslyUseHTMLString | whether `message` is treated as HTML string | boolean | โ€” | false | diff --git a/docs/en-US/component/popconfirm.md b/docs/en-US/component/popconfirm.md index 7ee0fb6add84d..2c00ad93a5bb0 100644 --- a/docs/en-US/component/popconfirm.md +++ b/docs/en-US/component/popconfirm.md @@ -39,18 +39,18 @@ popconfirm/trigger-event ## Attributes -| Attribute | Description | Type | Accepted Values | Default | -| ----------------- | ----------------------------------------------------------------------------------- | ------------------ | --------------- | -------------- | -| title | Title | String | โ€” | โ€” | -| confirmButtonText | Confirm button text | String | โ€” | โ€” | -| cancelButtonText | Cancel button text | String | โ€” | โ€” | -| confirmButtonType | Confirm button type | String | โ€” | Primary | -| cancelButtonType | Cancel button type | String | โ€” | Text | -| icon | Icon Component | String / Component | โ€” | QuestionFilled | -| iconColor | Icon color | String | โ€” | #f90 | -| hideIcon | is hide Icon | Boolean | โ€” | false | -| teleported | whether popconfirm is teleported to the body | boolean | true / false | true | -| persistent | when popconfirm inactive and `persistent` is `false` , popconfirm will be destroyed | boolean | โ€” | false | +| Attribute | Description | Type | Accepted Values | Default | +| ------------------- | ----------------------------------------------------------------------------------- | ------------------ | -------------------------------------------------- | -------------- | +| title | Title | String | โ€” | โ€” | +| confirm-button-text | Confirm button text | String | โ€” | โ€” | +| cancel-button-text | Cancel button text | String | โ€” | โ€” | +| confirm-button-type | Confirm button type | String | primary / success / warning / danger / info / text | primary | +| cancel-button-type | Cancel button type | String | primary / success / warning / danger / info / text | text | +| icon | Icon Component | String / Component | โ€” | QuestionFilled | +| icon-color | Icon color | String | โ€” | #f90 | +| hide-icon | is hide Icon | Boolean | โ€” | false | +| teleported | whether popconfirm is teleported to the body | boolean | true / false | true | +| persistent | when popconfirm inactive and `persistent` is `false` , popconfirm will be destroyed | boolean | โ€” | false | ## Slots diff --git a/docs/en-US/component/select-v2.md b/docs/en-US/component/select-v2.md index 4db73ee6cca8a..8222a178b5111 100644 --- a/docs/en-US/component/select-v2.md +++ b/docs/en-US/component/select-v2.md @@ -151,7 +151,7 @@ select-v2/remote-search | popper-append-to-body(deprecated) | whether to append the popper menu to body. If the positioning of the popper is wrong, you can try to set this prop to false | boolean | - | false | | teleported | whether select dropdown is teleported to the body | boolean | true / false | true | | persistent | when select dropdown is inactive and `persistent` is `false`, select dropdown will be destroyed | boolean | true / false | true | -| popper-options | Customized popper option see more at [popper.js](https://popper.js.org/documentation.html) | object | - | - | +| popper-options | Customized popper option see more at [popper.js](https://popper.js.org/docs/v2/) | object | - | - | | automatic-dropdown | for non-filterable Select, this prop decides if the option menu pops up when the input is focused | boolean | - | false | | height | The height of the dropdown panel, 34px for each item | number | - | 170 | | scrollbar-always-on | Controls whether the scrollbar is always displayed | boolean | - | false | diff --git a/docs/en-US/component/tooltip.md b/docs/en-US/component/tooltip.md index 6aa81fbdd3e2a..d0cf060eea163 100644 --- a/docs/en-US/component/tooltip.md +++ b/docs/en-US/component/tooltip.md @@ -154,7 +154,7 @@ tooltip/animations | offset | offset of the Tooltip | number | โ€” | 0 | | transition | animation name | string | โ€” | el-fade-in-linear | | visible-arrow (will deprecate in 2.1.0 ) | whether an arrow is displayed. For more information, check [ElPopper](https://github.com/element-plus/element-plus/tree/dev/packages/components/popper) page | boolean | โ€” | true | -| popper-options | [popper.js](https://popper.js.org/documentation.html) parameters | Object | refer to [popper.js](https://popper.js.org/documentation.html) doc | `{ boundariesElement: 'body', gpuAcceleration: false }` | +| popper-options | [popper.js](https://popper.js.org/docs/v2/) parameters | Object | refer to [popper.js](https://popper.js.org/docs/v2/) doc | `{ boundariesElement: 'body', gpuAcceleration: false }` | | show-after | delay of appearance, in millisecond | number | โ€” | 0 | | show-arrow | whether the tooltip content has an arrow | boolean | true / false | true | | hide-after | delay of disappear, in millisecond | number | โ€” | 200 | diff --git a/docs/examples/config-provider/usage.vue b/docs/examples/config-provider/usage.vue index 281824ee8dc00..9fe5e75fb63a1 100644 --- a/docs/examples/config-provider/usage.vue +++ b/docs/examples/config-provider/usage.vue @@ -1,37 +1,24 @@ diff --git a/docs/examples/message-box/alert.vue b/docs/examples/message-box/alert.vue index 92772c412dfb7..1d29dbbab493f 100644 --- a/docs/examples/message-box/alert.vue +++ b/docs/examples/message-box/alert.vue @@ -8,6 +8,8 @@ import type { Action } from 'element-plus' const open = () => { ElMessageBox.alert('This is a message', 'Title', { + // if you want to disable its autofocus + // autofocus: false, confirmButtonText: 'OK', callback: (action: Action) => { ElMessage({ diff --git a/docs/examples/message-box/customized-icon.vue b/docs/examples/message-box/customized-icon.vue new file mode 100644 index 0000000000000..17d095724e335 --- /dev/null +++ b/docs/examples/message-box/customized-icon.vue @@ -0,0 +1,20 @@ + + + diff --git a/docs/examples/tag/theme.vue b/docs/examples/tag/theme.vue index dfe32eb5d0db4..4cadb36759c0d 100644 --- a/docs/examples/tag/theme.vue +++ b/docs/examples/tag/theme.vue @@ -21,6 +21,28 @@ {{ item.label }} +
+ Light + + {{ item.label }} + + + {{ item.label }} + +
Plain {{ node.label }} Append - Delete + Delete @@ -89,6 +89,7 @@ const renderContent = ( h( 'a', { + style: 'margin-left: 8px', onClick: () => remove(node, data), }, 'Delete' diff --git a/docs/package.json b/docs/package.json index abba5e190d4f5..6d4aaa864a3ea 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,10 +10,10 @@ }, "dependencies": { "@docsearch/js": "^3.1.0", - "@element-plus/icons-vue": "^2.0.5", + "@element-plus/icons-vue": "^2.0.6", "@element-plus/metadata": "workspace:*", "@vue/shared": "^3.2.37", - "@vueuse/core": "^8.6.0", + "@vueuse/core": "^8.7.5", "axios": "^0.27.2", "clipboard-copy": "^4.0.1", "element-plus": "npm:element-plus@latest", @@ -29,7 +29,7 @@ "@element-plus/build": "workspace:*", "@element-plus/build-constants": "workspace:*", "@element-plus/build-utils": "workspace:*", - "@iconify-json/ri": "^1.1.2", + "@iconify-json/ri": "^1.1.3", "@types/markdown-it": "^12.2.3", "@vitejs/plugin-vue-jsx": "^1.3.10", "chalk": "^4.1.2", @@ -38,13 +38,13 @@ "escape-html": "^1.0.3", "fast-glob": "^3.2.11", "markdown-it-container": "^3.0.0", - "octokit": "^1.7.2", + "octokit": "^1.8.1", "prismjs": "^1.28.0", "unocss": "0.33.5", - "unplugin-icons": "^0.14.3", - "unplugin-vue-components": "^0.19.6", + "unplugin-icons": "^0.14.6", + "unplugin-vue-components": "^0.20.1", "unplugin-vue-define-options": "^0.6.1", - "vite": "^2.9.12", + "vite": "^2.9.13", "vite-plugin-inspect": "^0.5.0", "vite-plugin-mkcert": "^1.7.2", "vite-plugin-pwa": "^0.12.0", diff --git a/internal/build-utils/package.json b/internal/build-utils/package.json index 44278df24105f..8e55fffdab662 100644 --- a/internal/build-utils/package.json +++ b/internal/build-utils/package.json @@ -16,7 +16,7 @@ "stub": "unbuild --stub" }, "dependencies": { - "@pnpm/find-workspace-packages": "^4.0.12", + "@pnpm/find-workspace-packages": "^4.0.16", "@pnpm/logger": "^4.0.0", "consola": "^2.15.3" }, diff --git a/internal/build/package.json b/internal/build/package.json index 497e3ae8cb8dc..272f5829ceee0 100644 --- a/internal/build/package.json +++ b/internal/build/package.json @@ -16,28 +16,28 @@ }, "dependencies": { "@element-plus/build-constants": "^0.0.1", - "@pnpm/find-workspace-packages": "^4.0.12", + "@pnpm/find-workspace-packages": "^4.0.16", "@pnpm/logger": "^4.0.0", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", "@vitejs/plugin-vue": "^2.3.3", "@vitejs/plugin-vue-jsx": "^1.3.10", "chalk": "^5.0.1", "components-helper": "^2.0.0", "consola": "^2.15.3", - "esbuild": "^0.14.43", + "esbuild": "^0.14.47", "fast-glob": "^3.2.11", "fs-extra": "^10.1.0", "gulp": "^4.0.2", "lodash": "^4.17.21", - "rollup": "^2.75.6", + "rollup": "^2.75.7", "rollup-plugin-esbuild": "^4.9.1", "ts-morph": "^14.0.0", "unplugin-vue-define-options": "^0.6.1" }, "devDependencies": { - "@esbuild-kit/cjs-loader": "^2.1.0", - "@pnpm/types": "^8.1.0", + "@esbuild-kit/cjs-loader": "^2.2.1", + "@pnpm/types": "^8.4.0", "unbuild": "^0.7.4", "vue": "^3.2.37" } diff --git a/internal/build/src/tasks/types-definitions.ts b/internal/build/src/tasks/types-definitions.ts index 1aa49de2af24e..078f406b92d1d 100644 --- a/internal/build/src/tasks/types-definitions.ts +++ b/internal/build/src/tasks/types-definitions.ts @@ -1,6 +1,6 @@ import process from 'process' import path from 'path' -import fs from 'fs/promises' +import { mkdir, readFile, writeFile } from 'fs/promises' import consola from 'consola' import * as vueCompiler from 'vue/compiler-sfc' import glob from 'fast-glob' @@ -14,7 +14,6 @@ import { projRoot, } from '@element-plus/build-utils' import { pathRewriter } from '../utils' -import typeUnsafeStricter from '../type-unsafe-stricter.json' import type { CompilerOptions, SourceFile } from 'ts-morph' const TSCONFIG_PATH = path.resolve(projRoot, 'tsconfig.web.json') @@ -41,8 +40,8 @@ export const generateTypesDefinitions = async () => { const sourceFiles = await addSourceFiles(project) consola.success('Added source files') - typeCheck(project, typeUnsafeStricter) - consola.success('Stricter type check passed!') + typeCheck(project) + consola.success('Type check passed!') await project.emit({ emitOnlyDtsFiles: true, @@ -64,11 +63,11 @@ export const generateTypesDefinitions = async () => { const subTasks = emitFiles.map(async (outputFile) => { const filepath = outputFile.getFilePath() - await fs.mkdir(path.dirname(filepath), { + await mkdir(path.dirname(filepath), { recursive: true, }) - await fs.writeFile( + await writeFile( filepath, pathRewriter('esm')(outputFile.getText()), 'utf8' @@ -109,11 +108,14 @@ async function addSourceFiles(project: Project) { await Promise.all([ ...filePaths.map(async (file) => { if (file.endsWith('.vue')) { - const content = await fs.readFile(file, 'utf-8') + const content = await readFile(file, 'utf-8') + const hasTsNoCheck = content.includes('@ts-nocheck') + const sfc = vueCompiler.parse(content) const { script, scriptSetup } = sfc.descriptor if (script || scriptSetup) { - let content = script?.content ?? '' + let content = + (hasTsNoCheck ? '// @ts-nocheck\n' : '') + (script?.content ?? '') if (scriptSetup) { const compiled = vueCompiler.compileScript(sfc.descriptor, { @@ -135,7 +137,7 @@ async function addSourceFiles(project: Project) { } }), ...epPaths.map(async (file) => { - const content = await fs.readFile(path.resolve(epRoot, file), 'utf-8') + const content = await readFile(path.resolve(epRoot, file), 'utf-8') sourceFiles.push( project.createSourceFile(path.resolve(pkgRoot, file), content) ) @@ -145,21 +147,8 @@ async function addSourceFiles(project: Project) { return sourceFiles } -function typeCheck(project: Project, paths: string[]) { - // Type unsafe list. The TS errors are not all fixed yet, so we need a list of which files are not fixed with TS errors to prevent accidental TS errors. - const typeUnsafePaths = paths.map((_path) => { - let paths = path.resolve(projRoot, _path) - if (_path.endsWith('/')) paths += path.sep - return paths - }) - - const diagnostics = project.getPreEmitDiagnostics().filter((diagnostic) => { - const filePath = diagnostic.getSourceFile()?.getFilePath()! - if (!filePath) return false - const file = path.normalize(filePath) - return !typeUnsafePaths.some((safePath) => file.startsWith(safePath)) - }) - +function typeCheck(project: Project) { + const diagnostics = project.getPreEmitDiagnostics() if (diagnostics.length > 0) { consola.error(project.formatDiagnosticsWithColorAndContext(diagnostics)) const err = new Error('Failed to generate dts.') diff --git a/internal/build/src/type-unsafe-stricter.json b/internal/build/src/type-unsafe-stricter.json deleted file mode 100644 index 5922df6cde9f8..0000000000000 --- a/internal/build/src/type-unsafe-stricter.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - "packages/components/cascader-panel/", - "packages/components/cascader/", - "packages/components/checkbox/", - "packages/components/col/", - "packages/components/color-picker/", - "packages/components/descriptions/", - "packages/components/dialog/", - "packages/components/drawer/", - "packages/components/dropdown/", - "packages/components/focus-trap/", - "packages/components/infinite-scroll/", - "packages/components/input-number/", - "packages/components/input/", - "packages/components/loading/", - "packages/components/menu/", - "packages/components/message-box/", - "packages/components/message/", - "packages/components/notification/", - "packages/components/option-group/", - "packages/components/option/", - "packages/components/overlay/", - "packages/components/popconfirm/", - "packages/components/popover/", - "packages/components/popper/", - "packages/components/result/", - "packages/components/roving-focus-group/", - "packages/components/scrollbar/", - "packages/components/select-v2/", - "packages/components/select/", - "packages/components/skeleton-item/", - "packages/components/skeleton/", - "packages/components/slider/", - "packages/components/space/", - "packages/components/steps/", - "packages/components/table-column/", - "packages/components/table-v2/", - "packages/components/table/", - "packages/components/tabs/", - "packages/components/time-select/", - "packages/components/timeline-item/", - "packages/components/timeline/", - "packages/components/tooltip-v2/", - "packages/components/tooltip/", - "packages/components/transfer/", - "packages/components/tree-select/", - "packages/components/tree-v2/", - "packages/components/tree/", - "packages/components/virtual-list/", - "packages/components/visual-hidden/", - "packages/directives/" -] diff --git a/internal/eslint-config/index.js b/internal/eslint-config/index.js index be96f56ad0a8c..62bb77b2df8d8 100644 --- a/internal/eslint-config/index.js +++ b/internal/eslint-config/index.js @@ -195,6 +195,7 @@ module.exports = defineConfig({ 'error', { disallowTypeAnnotations: false }, ], + '@typescript-eslint/ban-ts-comment': ['off', { 'ts-ignore': false }], // vue 'vue/no-v-html': 'off', diff --git a/internal/eslint-config/package.json b/internal/eslint-config/package.json index f817e92a095c0..e12ea96bec085 100644 --- a/internal/eslint-config/package.json +++ b/internal/eslint-config/package.json @@ -14,23 +14,23 @@ "eslint": "^8.0.0" }, "dependencies": { - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.30.0", + "@typescript-eslint/parser": "^5.30.0", "eslint-config-prettier": "^8.5.0", "eslint-define-config": "^1.5.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsonc": "^2.3.0", "eslint-plugin-markdown": "^2.2.1", - "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-prettier": "^4.1.0", "eslint-plugin-unicorn": "^42.0.0", "eslint-plugin-vue": "^9.1.1", "jsonc-eslint-parser": "^2.1.0", - "prettier": "^2.7.0", - "typescript": "^4.7.3", + "prettier": "^2.7.1", + "typescript": "^4.7.4", "yaml-eslint-parser": "^1.0.1" }, "devDependencies": { - "eslint": "^8.17.0" + "eslint": "^8.18.0" } } diff --git a/internal/metadata/package.json b/internal/metadata/package.json index 7db6462c1c3a9..ab084ba60a9c8 100644 --- a/internal/metadata/package.json +++ b/internal/metadata/package.json @@ -29,7 +29,7 @@ "fast-glob": "^3.2.11", "lodash-es": "^4.17.21", "npm-run-all": "^4.1.5", - "octokit": "^1.7.2", - "tsx": "^3.4.2" + "octokit": "^1.8.1", + "tsx": "^3.6.0" } } diff --git a/package.json b/package.json index 2b3c2444fe56f..2db9455e83450 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "private": true, - "packageManager": "pnpm@7.2.1", + "packageManager": "pnpm@7.3.0", "workspaces": [ "packages/*", "play", "docs" ], "scripts": { - "cz": "git-cz", + "cz": "czg", "test": "vitest", "test:coverage": "vitest --coverage", "test:ssr": "vitest --config ./ssr-testing/vitest.config.ts", @@ -25,7 +25,7 @@ "lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 && pretty-quick --check --branch dev", "lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json && pretty-quick --branch dev", "lint:commit": "commitlint --from $(git merge-base origin/dev HEAD) --to HEAD > ./commit-lint.txt", - "typecheck": "run-p typecheck:node typecheck:vite-config", + "typecheck": "run-p typecheck:web typecheck:play typecheck:node typecheck:vite-config typecheck:vitest", "typecheck:web": "vue-tsc -p tsconfig.web.json --composite false --noEmit", "typecheck:node": "tsc -p tsconfig.node.json --noEmit", "typecheck:play": "vue-tsc -p tsconfig.play.json --composite false --noEmit", @@ -48,18 +48,18 @@ "@element-plus/constants": "workspace:*", "@element-plus/directives": "workspace:*", "@element-plus/hooks": "workspace:*", - "@element-plus/icons-vue": "^2.0.5", + "@element-plus/icons-vue": "^2.0.6", "@element-plus/locale": "workspace:*", "@element-plus/test-utils": "workspace:*", "@element-plus/theme-chalk": "workspace:*", "@element-plus/tokens": "workspace:*", "@element-plus/utils": "workspace:*", - "@floating-ui/dom": "^0.5.3", + "@floating-ui/dom": "^0.5.4", "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", "@types/lodash": "^4.14.182", "@types/lodash-es": "^4.17.6", - "@vueuse/core": "^8.6.0", - "async-validator": "^4.1.1", + "@vueuse/core": "^8.7.5", + "async-validator": "^4.2.5", "dayjs": "^1.11.3", "escape-html": "^1.0.3", "lodash": "^4.17.21", @@ -69,15 +69,15 @@ "normalize-wheel-es": "^1.1.2" }, "devDependencies": { - "@commitlint/cli": "^17.0.2", - "@commitlint/config-conventional": "^17.0.2", + "@commitlint/cli": "^17.0.3", + "@commitlint/config-conventional": "^17.0.3", "@element-plus/build": "workspace:^0.0.1", "@element-plus/build-utils": "workspace:^0.0.1", "@element-plus/eslint-config": "workspace:*", - "@esbuild-kit/cjs-loader": "^2.1.0", - "@pnpm/find-workspace-packages": "^4.0.12", + "@esbuild-kit/cjs-loader": "^2.2.1", + "@pnpm/find-workspace-packages": "^4.0.16", "@pnpm/logger": "^4.0.0", - "@pnpm/types": "^8.1.0", + "@pnpm/types": "^8.4.0", "@types/fs-extra": "^9.0.13", "@types/gulp": "^4.0.9", "@types/jsdom": "^16.2.14", @@ -85,40 +85,40 @@ "@types/sass": "^1.43.1", "@vitejs/plugin-vue": "^2.3.3", "@vitejs/plugin-vue-jsx": "^1.3.10", - "@vitest/ui": "0.14.2", + "@vitest/ui": "0.16.0", "@vue/test-utils": "^2.0.0", "@vue/tsconfig": "^0.1.3", "c8": "^7.11.3", "chalk": "^5.0.1", - "commitizen": "^4.2.4", - "concurrently": "^7.2.1", + "concurrently": "^7.2.2", "consola": "^2.15.3", "csstype": "^2.6.20", - "cz-git": "^1.3.4", - "eslint": "^8.17.0", + "cz-git": "^1.3.8", + "czg": "^1.3.8", + "eslint": "^8.18.0", "eslint-define-config": "^1.5.1", "expect-type": "^0.13.0", "fast-glob": "^3.2.11", "husky": "^8.0.1", "jsdom": "16.4.0", - "lint-staged": "^13.0.1", + "lint-staged": "^13.0.3", "npm-run-all": "^4.1.5", - "prettier": "^2.7.0", + "prettier": "^2.7.1", "pretty-quick": "^3.1.3", - "puppeteer": "^14.4.0", + "puppeteer": "^15.1.1", "resize-observer-polyfill": "^1.5.1", "rimraf": "^3.0.2", - "sass": "^1.52.3", + "sass": "^1.53.0", "ts-morph": "^14.0.0", - "tsx": "^3.4.2", - "type-fest": "^2.13.1", - "typescript": "^4.7.3", + "tsx": "^3.6.0", + "type-fest": "^2.14.0", + "typescript": "^4.7.4", "unplugin-element-plus": "^0.4.0", "unplugin-vue-define-options": "^0.6.1", "vitest": "0.12.6", "vue": "^3.2.37", "vue-router": "^4.0.16", - "vue-tsc": "^0.37.8" + "vue-tsc": "^0.38.2" }, "engines": { "node": ">= 16" diff --git a/packages/components/autocomplete/src/autocomplete.vue b/packages/components/autocomplete/src/autocomplete.vue index ddcceab278e59..066c4db61a63d 100644 --- a/packages/components/autocomplete/src/autocomplete.vue +++ b/packages/components/autocomplete/src/autocomplete.vue @@ -14,6 +14,8 @@ :transition="`${ns.namespace.value}-zoom-in-top`" persistent @before-show="onSuggestionShow" + @show="onShow" + @hide="onHide" >
diff --git a/packages/components/message/src/method.ts b/packages/components/message/src/method.ts new file mode 100644 index 0000000000000..f6972a1d7e367 --- /dev/null +++ b/packages/components/message/src/method.ts @@ -0,0 +1,183 @@ +import { createVNode, render } from 'vue' +import { isClient } from '@vueuse/core' +import { + debugWarn, + isElement, + isFunction, + isNumber, + isString, + isVNode, +} from '@element-plus/utils' +import { useZIndex } from '@element-plus/hooks' +import { messageConfig } from '@element-plus/components/config-provider/src/config-provider' +import MessageConstructor from './message.vue' +import { messageDefaults, messageTypes } from './message' +import { instances } from './instance' + +import type { MessageContext } from './instance' +import type { AppContext } from 'vue' +import type { + Message, + MessageFn, + MessageHandler, + MessageInstance, + MessageOptions, + MessageParams, + MessageParamsNormalized, + messageType, +} from './message' + +let seed = 1 + +// TODO: Since Notify.ts is basically the same like this file. So we could do some encapsulation against them to reduce code duplication. + +const normalizeOptions = (params?: MessageParams) => { + const options: MessageOptions = + !params || isString(params) || isVNode(params) || isFunction(params) + ? { message: params } + : params + + const normalized = { + ...messageDefaults, + ...options, + } + + if (isString(normalized.appendTo)) { + let appendTo = document.querySelector(normalized.appendTo) + + // should fallback to default value with a warning + if (!isElement(appendTo)) { + debugWarn( + 'ElMessage', + 'the appendTo option is not an HTMLElement. Falling back to document.body.' + ) + appendTo = document.body + } + + normalized.appendTo = appendTo + } + + return normalized as MessageParamsNormalized +} + +const closeMessage = (instance: MessageContext) => { + const idx = instances.indexOf(instance) + if (idx === -1) return + + instances.splice(idx, 1) + const { handler } = instance + handler.close() +} + +const createMessage = ( + { appendTo, ...options }: MessageParamsNormalized, + context?: AppContext | null +): MessageContext => { + const { nextZIndex } = useZIndex() + + const id = `message_${seed++}` + const userOnClose = options.onClose + + const container = document.createElement('div') + + const props = { + ...options, + zIndex: options.zIndex ?? nextZIndex(), + id, + onClose: () => { + userOnClose?.() + closeMessage(instance) + }, + + // clean message element preventing mem leak + onDestroy: () => { + // since the element is destroy, then the VNode should be collected by GC as well + // we do not want cause any mem leak because we have returned vm as a reference to users + // so that we manually set it to false. + render(null, container) + }, + } + const vnode = createVNode( + MessageConstructor, + props, + isFunction(props.message) || isVNode(props.message) + ? { default: props.message } + : null + ) + vnode.appContext = context || message._context + + render(vnode, container) + // instances will remove this item when close function gets called. So we do not need to worry about it. + appendTo.appendChild(container.firstElementChild!) + + const vm = vnode.component!.proxy as MessageInstance + const handler: MessageHandler = { + // instead of calling the onClose function directly, setting this value so that we can have the full lifecycle + // for out component, so that all closing steps will not be skipped. + close: () => { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore `visible` from defineExpose + vm.visible = false + }, + } + + const instance: MessageContext = { + id, + vnode, + vm, + handler, + props: (vnode.component as any).props, + } + + return instance +} + +const message: MessageFn & + Partial & { _context: AppContext | null } = ( + options = {}, + context +) => { + if (!isClient) return { close: () => undefined } + + if (isNumber(messageConfig.max) && instances.length >= messageConfig.max) { + return { close: () => undefined } + } + + const normalized = normalizeOptions(options) + + if (normalized.grouping && instances.length) { + const instance = instances.find( + ({ vnode: vm }) => vm.props?.message === normalized.message + ) + if (instance) { + instance.props.repeatNum += 1 + instance.props.type = normalized.type + return instance.handler + } + } + + const instance = createMessage(normalized, context) + + instances.push(instance) + return instance.handler +} + +messageTypes.forEach((type) => { + message[type] = (options = {}, appContext) => { + const normalized = normalizeOptions(options) + return message({ ...normalized, type }, appContext) + } +}) + +export function closeAll(type?: messageType): void { + for (const instance of instances) { + if (!type || type === instance.props.type) { + instance.handler.close() + } + } +} + +message.closeAll = closeAll +message._context = null + +export default message as Message diff --git a/packages/components/notification/__tests__/notification.test.ts b/packages/components/notification/__tests__/notification.test.ts index b50c5d7a62ca4..ddff2cf779b3a 100644 --- a/packages/components/notification/__tests__/notification.test.ts +++ b/packages/components/notification/__tests__/notification.test.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { h, nextTick } from 'vue' import { describe, expect, test, vi } from 'vitest' import makeMount from '@element-plus/test-utils/make-mount' diff --git a/packages/components/notification/src/notification.vue b/packages/components/notification/src/notification.vue index 3ba4069a44ac5..89f3e27809a70 100644 --- a/packages/components/notification/src/notification.vue +++ b/packages/components/notification/src/notification.vue @@ -39,6 +39,7 @@ diff --git a/packages/components/popover/src/popover.ts b/packages/components/popover/src/popover.ts index dec7f228d664a..857fb264211dd 100644 --- a/packages/components/popover/src/popover.ts +++ b/packages/components/popover/src/popover.ts @@ -1,11 +1,13 @@ -import { buildProps } from '@element-plus/utils' +import { buildProps, isBoolean } from '@element-plus/utils' import { useTooltipContentProps, useTooltipTriggerProps, } from '@element-plus/components/tooltip' import { dropdownProps } from '@element-plus/components/dropdown' +import type { ExtractPropTypes } from 'vue' +import type Popover from './popover.vue' -export const usePopoverProps = buildProps({ +export const popoverProps = buildProps({ trigger: useTooltipTriggerProps.trigger, placement: dropdownProps.placement, disabled: useTooltipTriggerProps.disabled, @@ -56,3 +58,15 @@ export const usePopoverProps = buildProps({ default: true, }, } as const) +export type PopoverProps = ExtractPropTypes + +export const popoverEmits = { + 'update:visible': (value: boolean) => isBoolean(value), + 'before-enter': () => true, + 'before-leave': () => true, + 'after-enter': () => true, + 'after-leave': () => true, +} +export type PopoverEmits = typeof popoverEmits + +export type PopoverInstance = InstanceType diff --git a/packages/components/popover/src/popover.vue b/packages/components/popover/src/popover.vue new file mode 100644 index 0000000000000..daaf2b7784cdc --- /dev/null +++ b/packages/components/popover/src/popover.vue @@ -0,0 +1,109 @@ + + diff --git a/packages/components/popper/src/content.vue b/packages/components/popper/src/content.vue index b0273a3f90ced..10e4ad519f95b 100644 --- a/packages/components/popper/src/content.vue +++ b/packages/components/popper/src/content.vue @@ -24,6 +24,7 @@ diff --git a/packages/components/space/src/space.ts b/packages/components/space/src/space.ts index ca9aebe304caf..fc850683ca097 100644 --- a/packages/components/space/src/space.ts +++ b/packages/components/space/src/space.ts @@ -16,7 +16,7 @@ import { isValidElementNode, } from '@element-plus/utils' import { componentSizes } from '@element-plus/constants' -import Item from './item.vue' +import Item from './item' import { useSpace } from './use-space' import type { ExtractPropTypes, StyleValue, VNode, VNodeChild } from 'vue' @@ -58,15 +58,9 @@ export const spaceProps = buildProps({ validator: (val: unknown) => isVNode(val) || isNumber(val) || isString(val), }, - wrap: { - type: Boolean, - default: false, - }, + wrap: Boolean, - fill: { - type: Boolean, - default: false, - }, + fill: Boolean, fillRatio: { type: Number, @@ -79,7 +73,7 @@ export const spaceProps = buildProps({ validator: (val: unknown): val is [number, number] | number => { return ( isNumber(val) || - (isArray(val) && val.length === 2 && val.every((i) => isNumber(i))) + (isArray(val) && val.length === 2 && val.every(isNumber)) ) }, }, diff --git a/packages/components/space/src/use-space.ts b/packages/components/space/src/use-space.ts index 30ac6f1c045c8..25a06d2626921 100644 --- a/packages/components/space/src/use-space.ts +++ b/packages/components/space/src/use-space.ts @@ -1,16 +1,15 @@ import { computed, ref, watchEffect } from 'vue' -import { isNumber } from '@element-plus/utils' +import { isArray, isNumber } from '@element-plus/utils' import { useNamespace } from '@element-plus/hooks' -import type { SpaceProps } from './space' +import type { SpaceProps } from './space' import type { CSSProperties, StyleValue } from 'vue' -import type { ComponentSize } from '@element-plus/constants' -const SIZE_MAP: Record = { +const SIZE_MAP = { small: 8, default: 12, large: 16, -} +} as const export function useSpace(props: SpaceProps) { const ns = useNamespace('space') @@ -48,7 +47,7 @@ export function useSpace(props: SpaceProps) { const { size = 'small', wrap, direction: dir, fill } = props // when the specified size have been given - if (Array.isArray(size)) { + if (isArray(size)) { const [h = 0, v = 0] = size horizontalSize.value = h verticalSize.value = v @@ -57,7 +56,7 @@ export function useSpace(props: SpaceProps) { if (isNumber(size)) { val = size } else { - val = SIZE_MAP[size] || SIZE_MAP.small + val = SIZE_MAP[size || 'small'] || SIZE_MAP.small } if ((wrap || fill) && dir === 'horizontal') { diff --git a/packages/components/steps/src/item.ts b/packages/components/steps/src/item.ts index 8662f7202f96c..8d78a64f81bd0 100644 --- a/packages/components/steps/src/item.ts +++ b/packages/components/steps/src/item.ts @@ -16,7 +16,7 @@ export const stepProps = buildProps({ }, status: { type: String, - values: ['', 'wait', 'process', 'finish', 'error', 'success'] as const, + values: ['', 'wait', 'process', 'finish', 'error', 'success'], default: '', }, } as const) diff --git a/packages/components/steps/src/item.vue b/packages/components/steps/src/item.vue index b483717c90845..3384f27cc4589 100644 --- a/packages/components/steps/src/item.vue +++ b/packages/components/steps/src/item.vue @@ -46,6 +46,7 @@ diff --git a/packages/components/table-v2/src/composables/use-columns.ts b/packages/components/table-v2/src/composables/use-columns.ts index 1f383b16cf33d..664adf2ac9b8c 100644 --- a/packages/components/table-v2/src/composables/use-columns.ts +++ b/packages/components/table-v2/src/composables/use-columns.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { computed, unref } from 'vue' import { isObject } from '@element-plus/utils' import { SortOrder, oppositeOrderMap } from '../constants' diff --git a/packages/components/table-v2/src/table-v2.tsx b/packages/components/table-v2/src/table-v2.tsx index 689fde9b11220..70ae1d146de49 100644 --- a/packages/components/table-v2/src/table-v2.tsx +++ b/packages/components/table-v2/src/table-v2.tsx @@ -1,3 +1,4 @@ +// @ts-nocheck import { defineComponent, provide, unref } from 'vue' import { useNamespace } from '@element-plus/hooks' import { useTable } from './use-table' diff --git a/packages/components/table/__tests__/table-column.test.ts b/packages/components/table/__tests__/table-column.test.ts index 58164d695ac83..42896f3b34003 100644 --- a/packages/components/table/__tests__/table-column.test.ts +++ b/packages/components/table/__tests__/table-column.test.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { describe, expect, it, vi } from 'vitest' import triggerEvent from '@element-plus/test-utils/trigger-event' import ElTable from '../src/table.vue' diff --git a/packages/components/table/__tests__/table.test.ts b/packages/components/table/__tests__/table.test.ts index 62db958dd0efe..f988ac5dc7293 100644 --- a/packages/components/table/__tests__/table.test.ts +++ b/packages/components/table/__tests__/table.test.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { nextTick } from 'vue' import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' import ElCheckbox from '@element-plus/components/checkbox' diff --git a/packages/components/table/src/config.ts b/packages/components/table/src/config.ts index 01041578a049a..dd9cd09614567 100644 --- a/packages/components/table/src/config.ts +++ b/packages/components/table/src/config.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { h } from 'vue' import ElCheckbox from '@element-plus/components/checkbox' import { ElIcon } from '@element-plus/components/icon' diff --git a/packages/components/table/src/filter-panel.vue b/packages/components/table/src/filter-panel.vue index 3bd1a4831c32f..50ef60122d885 100644 --- a/packages/components/table/src/filter-panel.vue +++ b/packages/components/table/src/filter-panel.vue @@ -87,6 +87,7 @@ diff --git a/packages/components/transfer/src/transfer-panel.ts b/packages/components/transfer/src/transfer-panel.ts new file mode 100644 index 0000000000000..face80afe9d81 --- /dev/null +++ b/packages/components/transfer/src/transfer-panel.ts @@ -0,0 +1,40 @@ +import { buildProps, definePropType } from '@element-plus/utils' +import { transferCheckedChangeFn, transferProps } from './transfer' + +import type { ExtractPropTypes, VNode } from 'vue' +import type { TransferDataItem, TransferKey } from './transfer' +import type TransferPanel from './transfer-panel.vue' + +export interface TransferPanelState { + checked: TransferKey[] + allChecked: boolean + query: string + inputHover: boolean + checkChangeByUser: boolean +} + +export const CHECKED_CHANGE_EVENT = 'checked-change' + +export const transferPanelProps = buildProps({ + data: transferProps.data, + optionRender: { + type: definePropType<(option: TransferDataItem) => VNode | VNode[]>( + Function + ), + }, + placeholder: String, + title: String, + filterable: Boolean, + format: transferProps.format, + filterMethod: transferProps.filterMethod, + defaultChecked: transferProps.leftDefaultChecked, + props: transferProps.props, +} as const) +export type TransferPanelProps = ExtractPropTypes + +export const transferPanelEmits = { + [CHECKED_CHANGE_EVENT]: transferCheckedChangeFn, +} +export type TransferPanelEmits = typeof transferPanelEmits + +export type TransferPanelInstance = InstanceType diff --git a/packages/components/transfer/src/transfer-panel.vue b/packages/components/transfer/src/transfer-panel.vue index 74a7a10412b7b..a635a324d3d31 100644 --- a/packages/components/transfer/src/transfer-panel.vue +++ b/packages/components/transfer/src/transfer-panel.vue @@ -18,30 +18,27 @@ :class="ns.be('panel', 'filter')" size="default" :placeholder="placeholder" - :prefix-icon="SearchIcon" + :prefix-icon="Search" clearable @mouseenter="inputHover = true" @mouseleave="inputHover = false" /> - + -

+

{{ hasNoMatch ? t('el.transfer.noMatch') : t('el.transfer.noData') }}

@@ -51,81 +48,59 @@
- diff --git a/packages/components/transfer/src/transfer.ts b/packages/components/transfer/src/transfer.ts index 2227f71360726..08d37ce8c0fb8 100644 --- a/packages/components/transfer/src/transfer.ts +++ b/packages/components/transfer/src/transfer.ts @@ -1,67 +1,113 @@ -import { CHANGE_EVENT } from '@element-plus/constants' +import { isNil } from 'lodash-unified' +import { + buildProps, + definePropType, + isArray, + mutable, +} from '@element-plus/utils' +import { CHANGE_EVENT, UPDATE_MODEL_EVENT } from '@element-plus/constants' -import type { VNode } from 'vue' +import type { ExtractPropTypes, h as H, VNode } from 'vue' +import type Transfer from './transfer.vue' -export { CHANGE_EVENT } +export type TransferKey = string | number +export type TransferDirection = 'left' | 'right' -export type Key = string | number +export type TransferDataItem = Record -export type DataItem = { - key: Key - label: string - disabled: boolean +export interface TransferFormat { + noChecked?: string + hasChecked?: string } -export type Format = { - noChecked: string - hasChecked: string +export interface TransferPropsAlias { + label?: string + key?: string + disabled?: string } -export type Props = { - label: string - key: string - disabled: string +export interface TransferCheckedState { + leftChecked: TransferKey[] + rightChecked: TransferKey[] } -export type TargetOrder = 'original' | 'push' | 'unshift' +export const LEFT_CHECK_CHANGE_EVENT = 'left-check-change' +export const RIGHT_CHECK_CHANGE_EVENT = 'right-check-change' -export interface TransferProps { - data: DataItem[] - titles: [string, string] - buttonTexts: [string, string] - filterPlaceholder: string - filterMethod?: (query: string, item: DataItem) => boolean - leftDefaultChecked: Key[] - rightDefaultChecked: Key[] - renderContent?: (h, option) => VNode - modelValue: Key[] - format: Format - filterable: boolean - props: Props - targetOrder: TargetOrder -} +export const transferProps = buildProps({ + data: { + type: definePropType(Array), + default: () => [], + }, + titles: { + type: definePropType<[string, string]>(Array), + default: () => [], + }, + buttonTexts: { + type: definePropType<[string, string]>(Array), + default: () => [], + }, + filterPlaceholder: String, + filterMethod: { + type: definePropType<(query: string, item: TransferDataItem) => boolean>( + Function + ), + }, + leftDefaultChecked: { + type: definePropType(Array), + default: () => [], + }, + rightDefaultChecked: { + type: definePropType(Array), + default: () => [], + }, + renderContent: { + type: definePropType< + (h: typeof H, option: TransferDataItem) => VNode | VNode[] + >(Function), + }, + modelValue: { + type: definePropType(Array), + default: () => [], + }, + format: { + type: definePropType(Object), + default: () => ({}), + }, + filterable: Boolean, + props: { + type: definePropType(Object), + default: () => + mutable({ + label: 'label', + key: 'key', + disabled: 'disabled', + } as const), + }, + targetOrder: { + type: String, + values: ['original', 'push', 'unshift'], + default: 'original', + }, +} as const) +export type TransferProps = ExtractPropTypes -export interface TransferCheckedState { - leftChecked: Key[] - rightChecked: Key[] -} +export const transferCheckedChangeFn = ( + value: TransferKey[], + movedKeys?: TransferKey[] +) => [value, movedKeys].every(isArray) || (isArray(value) && isNil(movedKeys)) -export interface TransferPanelProps { - data: DataItem[] - optionRender: ({ option: VNode }) => VNode - placeholder: string - title: string - filterable: boolean - format: Format - filterMethod: (query: string, item: DataItem) => boolean - defaultChecked: Key[] - props: Props +export const transferEmits = { + [CHANGE_EVENT]: ( + value: TransferKey[], + direction: TransferDirection, + movedKeys: TransferKey[] + ) => + [value, movedKeys].every(isArray) && ['left', 'right'].includes(direction), + [UPDATE_MODEL_EVENT]: (value: TransferKey[]) => isArray(value), + [LEFT_CHECK_CHANGE_EVENT]: transferCheckedChangeFn, + [RIGHT_CHECK_CHANGE_EVENT]: transferCheckedChangeFn, } +export type TransferEmits = typeof transferEmits -export interface TransferPanelState { - checked: Key[] - allChecked: boolean - query: string - inputHover: boolean - checkChangeByUser: boolean -} +export type TransferInstance = InstanceType diff --git a/packages/components/transfer/src/transfer.vue b/packages/components/transfer/src/transfer.vue new file mode 100644 index 0000000000000..c3ecc1b43bf73 --- /dev/null +++ b/packages/components/transfer/src/transfer.vue @@ -0,0 +1,161 @@ + + + diff --git a/packages/components/transfer/src/useCheckedChange.ts b/packages/components/transfer/src/useCheckedChange.ts deleted file mode 100644 index 505c71a925afe..0000000000000 --- a/packages/components/transfer/src/useCheckedChange.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Key, TransferCheckedState } from './transfer' - -export const LEFT_CHECK_CHANGE_EVENT = 'left-check-change' -export const RIGHT_CHECK_CHANGE_EVENT = 'right-check-change' -export const useCheckedChange = (checkedState: TransferCheckedState, emit) => { - const onSourceCheckedChange = (val: Key[], movedKeys: Key[]) => { - checkedState.leftChecked = val - if (movedKeys === undefined) return - emit(LEFT_CHECK_CHANGE_EVENT, val, movedKeys) - } - - const onTargetCheckedChange = (val: Key[], movedKeys: Key[]) => { - checkedState.rightChecked = val - if (movedKeys === undefined) return - emit(RIGHT_CHECK_CHANGE_EVENT, val, movedKeys) - } - - return { - onSourceCheckedChange, - onTargetCheckedChange, - } -} diff --git a/packages/components/transfer/src/useComputedData.ts b/packages/components/transfer/src/useComputedData.ts deleted file mode 100644 index 6b78e6a73079e..0000000000000 --- a/packages/components/transfer/src/useComputedData.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { computed } from 'vue' - -import type { TransferProps } from './transfer' - -export const useComputedData = (props: TransferProps) => { - const propsKey = computed(() => props.props.key) - - const dataObj = computed(() => { - return props.data.reduce( - (o, cur) => (o[cur[propsKey.value]] = cur) && o, - {} - ) - }) - - const sourceData = computed(() => { - return props.data.filter( - (item) => !props.modelValue.includes(item[propsKey.value]) - ) - }) - - const targetData = computed(() => { - if (props.targetOrder === 'original') { - return props.data.filter((item) => - props.modelValue.includes(item[propsKey.value]) - ) - } else { - return props.modelValue.reduce((arr, cur) => { - const val = dataObj.value[cur] - if (val) { - arr.push(val) - } - return arr - }, []) - } - }) - - return { - propsKey, - sourceData, - targetData, - } -} diff --git a/packages/components/transfer/style/css.ts b/packages/components/transfer/style/css.ts index 94a2ab85f8b24..333781f58cd08 100644 --- a/packages/components/transfer/style/css.ts +++ b/packages/components/transfer/style/css.ts @@ -1,6 +1,6 @@ import '@element-plus/components/base/style/css' -import '@element-plus/theme-chalk/el-transfer.css' import '@element-plus/components/input/style/css' import '@element-plus/components/button/style/css' import '@element-plus/components/checkbox/style/css' import '@element-plus/components/checkbox-group/style/css' +import '@element-plus/theme-chalk/el-transfer.css' diff --git a/packages/components/transfer/style/index.ts b/packages/components/transfer/style/index.ts index ab161fb05528d..f8f7c1e3fbaa6 100644 --- a/packages/components/transfer/style/index.ts +++ b/packages/components/transfer/style/index.ts @@ -1,6 +1,6 @@ import '@element-plus/components/base/style' -import '@element-plus/theme-chalk/src/transfer.scss' import '@element-plus/components/input/style' import '@element-plus/components/button/style' import '@element-plus/components/checkbox/style' import '@element-plus/components/checkbox-group/style' +import '@element-plus/theme-chalk/src/transfer.scss' diff --git a/packages/components/tree-select/src/select.ts b/packages/components/tree-select/src/select.ts index f8a7beaf9b1db..ee784cbe777a9 100644 --- a/packages/components/tree-select/src/select.ts +++ b/packages/components/tree-select/src/select.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import { computed, nextTick, toRefs } from 'vue' import { pick } from 'lodash-unified' import ElSelect from '@element-plus/components/select' diff --git a/packages/components/tree-select/src/tree-select.vue b/packages/components/tree-select/src/tree-select.vue index 0b2bb3e41bf65..c4b595229e2be 100644 --- a/packages/components/tree-select/src/tree-select.vue +++ b/packages/components/tree-select/src/tree-select.vue @@ -1,4 +1,5 @@ diff --git a/play/main.ts b/play/main.ts index 5a19faa86a1ec..9553dfbbd9ce1 100644 --- a/play/main.ts +++ b/play/main.ts @@ -1,5 +1,5 @@ import { createApp } from 'vue' -import '@element-plus/theme-chalk/src/index.scss' +import '@element-plus/theme-chalk/src/dark/css-vars.scss' ;(async () => { const apps = import.meta.glob('./src/*.vue') const name = location.pathname.replace(/^\//, '') || 'App' diff --git a/play/package.json b/play/package.json index 542bed444b21b..4e8f80a0507cb 100644 --- a/play/package.json +++ b/play/package.json @@ -7,13 +7,13 @@ "preview": "vite preview" }, "dependencies": { - "@element-plus/icons-vue": "^2.0.5", + "@element-plus/icons-vue": "^2.0.6", "vue": "^3.2.37" }, "devDependencies": { "@vitejs/plugin-vue": "^2.3.3", - "unplugin-vue-components": "^0.19.6", - "vite": "^2.9.12", + "unplugin-vue-components": "^0.20.1", + "vite": "^2.9.13", "vite-plugin-inspect": "^0.5.0", "vite-plugin-mkcert": "^1.7.2" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9451e36a3186e..e4813dd268e12 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,8 +4,8 @@ importers: .: specifiers: - '@commitlint/cli': ^17.0.2 - '@commitlint/config-conventional': ^17.0.2 + '@commitlint/cli': ^17.0.3 + '@commitlint/config-conventional': ^17.0.3 '@element-plus/build': workspace:^0.0.1 '@element-plus/build-utils': workspace:^0.0.1 '@element-plus/components': workspace:* @@ -13,17 +13,17 @@ importers: '@element-plus/directives': workspace:* '@element-plus/eslint-config': workspace:* '@element-plus/hooks': workspace:* - '@element-plus/icons-vue': ^2.0.5 + '@element-plus/icons-vue': ^2.0.6 '@element-plus/locale': workspace:* '@element-plus/test-utils': workspace:* '@element-plus/theme-chalk': workspace:* '@element-plus/tokens': workspace:* '@element-plus/utils': workspace:* - '@esbuild-kit/cjs-loader': ^2.1.0 - '@floating-ui/dom': ^0.5.3 - '@pnpm/find-workspace-packages': ^4.0.12 + '@esbuild-kit/cjs-loader': ^2.2.1 + '@floating-ui/dom': ^0.5.4 + '@pnpm/find-workspace-packages': ^4.0.16 '@pnpm/logger': ^4.0.0 - '@pnpm/types': ^8.1.0 + '@pnpm/types': ^8.4.0 '@popperjs/core': npm:@sxzz/popperjs-es@^2.11.7 '@types/fs-extra': ^9.0.13 '@types/gulp': ^4.0.9 @@ -34,66 +34,66 @@ importers: '@types/sass': ^1.43.1 '@vitejs/plugin-vue': ^2.3.3 '@vitejs/plugin-vue-jsx': ^1.3.10 - '@vitest/ui': 0.14.2 + '@vitest/ui': 0.16.0 '@vue/test-utils': ^2.0.0 '@vue/tsconfig': ^0.1.3 - '@vueuse/core': ^8.6.0 - async-validator: ^4.1.1 + '@vueuse/core': ^8.7.5 + async-validator: ^4.2.5 c8: ^7.11.3 chalk: ^5.0.1 - commitizen: ^4.2.4 - concurrently: ^7.2.1 + concurrently: ^7.2.2 consola: ^2.15.3 csstype: ^2.6.20 - cz-git: ^1.3.4 + cz-git: ^1.3.8 + czg: ^1.3.8 dayjs: ^1.11.3 escape-html: ^1.0.3 - eslint: ^8.17.0 + eslint: ^8.18.0 eslint-define-config: ^1.5.1 expect-type: ^0.13.0 fast-glob: ^3.2.11 husky: ^8.0.1 jsdom: 16.4.0 - lint-staged: ^13.0.1 + lint-staged: ^13.0.3 lodash: ^4.17.21 lodash-es: ^4.17.21 lodash-unified: ^1.0.2 memoize-one: ^6.0.0 normalize-wheel-es: ^1.1.2 npm-run-all: ^4.1.5 - prettier: ^2.7.0 + prettier: ^2.7.1 pretty-quick: ^3.1.3 - puppeteer: ^14.4.0 + puppeteer: ^15.1.1 resize-observer-polyfill: ^1.5.1 rimraf: ^3.0.2 - sass: ^1.52.3 + sass: ^1.53.0 ts-morph: ^14.0.0 - tsx: ^3.4.2 - type-fest: ^2.13.1 - typescript: ^4.7.3 + tsx: ^3.6.0 + type-fest: ^2.14.0 + typescript: ^4.7.4 unplugin-element-plus: ^0.4.0 unplugin-vue-define-options: ^0.6.1 vitest: 0.12.6 vue: ^3.2.37 vue-router: ^4.0.16 - vue-tsc: ^0.37.8 + vue-tsc: ^0.38.2 dependencies: '@element-plus/components': link:packages/components '@element-plus/constants': link:packages/constants '@element-plus/directives': link:packages/directives '@element-plus/hooks': link:packages/hooks - '@element-plus/icons-vue': 2.0.5_vue@3.2.37 + '@element-plus/icons-vue': 2.0.6_vue@3.2.37 '@element-plus/locale': link:packages/locale '@element-plus/test-utils': link:packages/test-utils '@element-plus/theme-chalk': link:packages/theme-chalk '@element-plus/tokens': link:packages/tokens '@element-plus/utils': link:packages/utils - '@floating-ui/dom': 0.5.3 + '@floating-ui/dom': 0.5.4 '@popperjs/core': /@sxzz/popperjs-es/2.11.7 '@types/lodash': 4.14.182 '@types/lodash-es': 4.17.6 - '@vueuse/core': 8.6.0_vue@3.2.37 - async-validator: 4.1.1 + '@vueuse/core': 8.7.5_vue@3.2.37 + async-validator: 4.2.5 dayjs: 1.11.3 escape-html: 1.0.3 lodash: 4.17.21 @@ -102,15 +102,15 @@ importers: memoize-one: 6.0.0 normalize-wheel-es: 1.1.2 devDependencies: - '@commitlint/cli': 17.0.2 - '@commitlint/config-conventional': 17.0.2 + '@commitlint/cli': 17.0.3 + '@commitlint/config-conventional': 17.0.3 '@element-plus/build': link:internal/build '@element-plus/build-utils': link:internal/build-utils '@element-plus/eslint-config': link:internal/eslint-config - '@esbuild-kit/cjs-loader': 2.1.0 - '@pnpm/find-workspace-packages': 4.0.12_@pnpm+logger@4.0.0 + '@esbuild-kit/cjs-loader': 2.2.1 + '@pnpm/find-workspace-packages': 4.0.16_@pnpm+logger@4.0.0 '@pnpm/logger': 4.0.0 - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 '@types/fs-extra': 9.0.13 '@types/gulp': 4.0.9 '@types/jsdom': 16.2.14 @@ -118,40 +118,40 @@ importers: '@types/sass': 1.43.1 '@vitejs/plugin-vue': 2.3.3_vue@3.2.37 '@vitejs/plugin-vue-jsx': 1.3.10 - '@vitest/ui': 0.14.2 + '@vitest/ui': 0.16.0 '@vue/test-utils': 2.0.0_vue@3.2.37 '@vue/tsconfig': 0.1.3_@types+node@17.0.40 c8: 7.11.3 chalk: 5.0.1 - commitizen: 4.2.4 - concurrently: 7.2.1 + concurrently: 7.2.2 consola: 2.15.3 csstype: 2.6.20 - cz-git: 1.3.4 - eslint: 8.17.0 + cz-git: 1.3.8 + czg: 1.3.8 + eslint: 8.18.0 eslint-define-config: 1.5.1 expect-type: 0.13.0 fast-glob: 3.2.11 husky: 8.0.1 jsdom: 16.4.0 - lint-staged: 13.0.1 + lint-staged: 13.0.3 npm-run-all: 4.1.5 - prettier: 2.7.0 - pretty-quick: 3.1.3_prettier@2.7.0 - puppeteer: 14.4.0 + prettier: 2.7.1 + pretty-quick: 3.1.3_prettier@2.7.1 + puppeteer: 15.1.1 resize-observer-polyfill: 1.5.1 rimraf: 3.0.2 - sass: 1.52.3 + sass: 1.53.0 ts-morph: 14.0.0 - tsx: 3.4.2 - type-fest: 2.13.1 - typescript: 4.7.3 + tsx: 3.6.0 + type-fest: 2.14.0 + typescript: 4.7.4 unplugin-element-plus: 0.4.0 unplugin-vue-define-options: 0.6.1_vue@3.2.37 - vitest: 0.12.6_p3hsn2gyxkuoma7fybu4bszcau + vitest: 0.12.6_s3h4fu5cxhimy2a3bowqsjsovu vue: 3.2.37 vue-router: 4.0.16_vue@3.2.37 - vue-tsc: 0.37.8_typescript@4.7.3 + vue-tsc: 0.38.2_typescript@4.7.4 docs: specifiers: @@ -161,13 +161,13 @@ importers: '@element-plus/build': workspace:* '@element-plus/build-constants': workspace:* '@element-plus/build-utils': workspace:* - '@element-plus/icons-vue': ^2.0.5 + '@element-plus/icons-vue': ^2.0.6 '@element-plus/metadata': workspace:* - '@iconify-json/ri': ^1.1.2 + '@iconify-json/ri': ^1.1.3 '@types/markdown-it': ^12.2.3 '@vitejs/plugin-vue-jsx': ^1.3.10 '@vue/shared': ^3.2.37 - '@vueuse/core': ^8.6.0 + '@vueuse/core': ^8.7.5 axios: ^0.27.2 chalk: ^4.1.2 clipboard-copy: ^4.0.1 @@ -180,14 +180,14 @@ importers: markdown-it-container: ^3.0.0 normalize.css: ^8.0.1 nprogress: ^0.2.0 - octokit: ^1.7.2 + octokit: ^1.8.1 prism-theme-vars: ^0.2.3 prismjs: ^1.28.0 unocss: 0.33.5 - unplugin-icons: ^0.14.3 - unplugin-vue-components: ^0.19.6 + unplugin-icons: ^0.14.6 + unplugin-vue-components: ^0.20.1 unplugin-vue-define-options: ^0.6.1 - vite: ^2.9.12 + vite: ^2.9.13 vite-plugin-inspect: ^0.5.0 vite-plugin-mkcert: ^1.7.2 vite-plugin-pwa: ^0.12.0 @@ -195,13 +195,13 @@ importers: vue: ^3.2.37 dependencies: '@docsearch/js': 3.1.0 - '@element-plus/icons-vue': 2.0.5_vue@3.2.37 + '@element-plus/icons-vue': 2.0.6_vue@3.2.37 '@element-plus/metadata': link:../internal/metadata '@vue/shared': 3.2.37 - '@vueuse/core': 8.6.0_vue@3.2.37 + '@vueuse/core': 8.7.5_vue@3.2.37 axios: 0.27.2 clipboard-copy: 4.0.1 - element-plus: 2.2.5_vue@3.2.37 + element-plus: 2.2.6_vue@3.2.37 markdown-it: 13.0.1 normalize.css: 8.0.1 nprogress: 0.2.0 @@ -213,7 +213,7 @@ importers: '@element-plus/build': link:../internal/build '@element-plus/build-constants': link:../internal/build-constants '@element-plus/build-utils': link:../internal/build-utils - '@iconify-json/ri': 1.1.2 + '@iconify-json/ri': 1.1.3 '@types/markdown-it': 12.2.3 '@vitejs/plugin-vue-jsx': 1.3.10 chalk: 4.1.2 @@ -222,38 +222,38 @@ importers: escape-html: 1.0.3 fast-glob: 3.2.11 markdown-it-container: 3.0.0 - octokit: 1.7.2 + octokit: 1.8.1 prismjs: 1.28.0 - unocss: 0.33.5_vite@2.9.12 - unplugin-icons: 0.14.3_vite@2.9.12 - unplugin-vue-components: 0.19.6_vite@2.9.12+vue@3.2.37 - unplugin-vue-define-options: 0.6.1_vite@2.9.12+vue@3.2.37 - vite: 2.9.12 - vite-plugin-inspect: 0.5.0_vite@2.9.12 + unocss: 0.33.5_vite@2.9.13 + unplugin-icons: 0.14.6_vite@2.9.13 + unplugin-vue-components: 0.20.1_vite@2.9.13+vue@3.2.37 + unplugin-vue-define-options: 0.6.1_vite@2.9.13+vue@3.2.37 + vite: 2.9.13 + vite-plugin-inspect: 0.5.0_vite@2.9.13 vite-plugin-mkcert: 1.7.2 - vite-plugin-pwa: 0.12.0_vite@2.9.12 + vite-plugin-pwa: 0.12.0_vite@2.9.13 vitepress: 0.22.4 internal/build: specifiers: '@element-plus/build-constants': ^0.0.1 - '@esbuild-kit/cjs-loader': ^2.1.0 - '@pnpm/find-workspace-packages': ^4.0.12 + '@esbuild-kit/cjs-loader': ^2.2.1 + '@pnpm/find-workspace-packages': ^4.0.16 '@pnpm/logger': ^4.0.0 - '@pnpm/types': ^8.1.0 - '@rollup/plugin-commonjs': ^22.0.0 + '@pnpm/types': ^8.4.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@vitejs/plugin-vue': ^2.3.3 '@vitejs/plugin-vue-jsx': ^1.3.10 chalk: ^5.0.1 components-helper: ^2.0.0 consola: ^2.15.3 - esbuild: ^0.14.43 + esbuild: ^0.14.47 fast-glob: ^3.2.11 fs-extra: ^10.1.0 gulp: ^4.0.2 lodash: ^4.17.21 - rollup: ^2.75.6 + rollup: ^2.75.7 rollup-plugin-esbuild: ^4.9.1 ts-morph: ^14.0.0 unbuild: ^0.7.4 @@ -261,27 +261,27 @@ importers: vue: ^3.2.37 dependencies: '@element-plus/build-constants': link:../build-constants - '@pnpm/find-workspace-packages': 4.0.12_@pnpm+logger@4.0.0 + '@pnpm/find-workspace-packages': 4.0.16_@pnpm+logger@4.0.0 '@pnpm/logger': 4.0.0 - '@rollup/plugin-commonjs': 22.0.0_rollup@2.75.6 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 '@vitejs/plugin-vue': 2.3.3_vue@3.2.37 '@vitejs/plugin-vue-jsx': 1.3.10 chalk: 5.0.1 components-helper: 2.0.0 consola: 2.15.3 - esbuild: 0.14.43 + esbuild: 0.14.47 fast-glob: 3.2.11 fs-extra: 10.1.0 gulp: 4.0.2 lodash: 4.17.21 - rollup: 2.75.6 - rollup-plugin-esbuild: 4.9.1_2uefy6dldbldonrghlgjus4ieu + rollup: 2.75.7 + rollup-plugin-esbuild: 4.9.1_qrpxjnto46iodaa4efitqiw3he ts-morph: 14.0.0 - unplugin-vue-define-options: 0.6.1_m375ryyfrmfofwntyuzleomjpq + unplugin-vue-define-options: 0.6.1_z4bu4wu5k7xudjmnmksyrigboq devDependencies: - '@esbuild-kit/cjs-loader': 2.1.0 - '@pnpm/types': 8.1.0 + '@esbuild-kit/cjs-loader': 2.2.1 + '@pnpm/types': 8.4.0 unbuild: 0.7.4 vue: 3.2.37 @@ -293,12 +293,12 @@ importers: internal/build-utils: specifiers: - '@pnpm/find-workspace-packages': ^4.0.12 + '@pnpm/find-workspace-packages': ^4.0.16 '@pnpm/logger': ^4.0.0 consola: ^2.15.3 unbuild: ^0.7.4 dependencies: - '@pnpm/find-workspace-packages': 4.0.12_@pnpm+logger@4.0.0 + '@pnpm/find-workspace-packages': 4.0.16_@pnpm+logger@4.0.0 '@pnpm/logger': 4.0.0 consola: 2.15.3 devDependencies: @@ -306,40 +306,40 @@ importers: internal/eslint-config: specifiers: - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 - eslint: ^8.17.0 + '@typescript-eslint/eslint-plugin': ^5.30.0 + '@typescript-eslint/parser': ^5.30.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 eslint-define-config: ^1.5.1 eslint-plugin-eslint-comments: ^3.2.0 eslint-plugin-import: ^2.26.0 eslint-plugin-jsonc: ^2.3.0 eslint-plugin-markdown: ^2.2.1 - eslint-plugin-prettier: ^4.0.0 + eslint-plugin-prettier: ^4.1.0 eslint-plugin-unicorn: ^42.0.0 eslint-plugin-vue: ^9.1.1 jsonc-eslint-parser: ^2.1.0 - prettier: ^2.7.0 - typescript: ^4.7.3 + prettier: ^2.7.1 + typescript: ^4.7.4 yaml-eslint-parser: ^1.0.1 dependencies: - '@typescript-eslint/eslint-plugin': 5.28.0_7yumg2qjgbp7maccqlfhx2vudu - '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 - eslint-config-prettier: 8.5.0_eslint@8.17.0 + '@typescript-eslint/eslint-plugin': 5.30.0_5mtqsiui4sk53pmkx7i7ue45wm + '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint-config-prettier: 8.5.0_eslint@8.18.0 eslint-define-config: 1.5.1 - eslint-plugin-eslint-comments: 3.2.0_eslint@8.17.0 - eslint-plugin-import: 2.26.0_wyrfqmvemfacbroyi3ypviy7f4 - eslint-plugin-jsonc: 2.3.0_eslint@8.17.0 - eslint-plugin-markdown: 2.2.1_eslint@8.17.0 - eslint-plugin-prettier: 4.0.0_nguwan5pqsajixjz57ffz7bkde - eslint-plugin-unicorn: 42.0.0_eslint@8.17.0 - eslint-plugin-vue: 9.1.1_eslint@8.17.0 + eslint-plugin-eslint-comments: 3.2.0_eslint@8.18.0 + eslint-plugin-import: 2.26.0_wno36sjfnklvt2ocf7qbhb2izy + eslint-plugin-jsonc: 2.3.0_eslint@8.18.0 + eslint-plugin-markdown: 2.2.1_eslint@8.18.0 + eslint-plugin-prettier: 4.1.0_xu6ewijrtliw5q5lksq5uixwby + eslint-plugin-unicorn: 42.0.0_eslint@8.18.0 + eslint-plugin-vue: 9.1.1_eslint@8.18.0 jsonc-eslint-parser: 2.1.0 - prettier: 2.7.0 - typescript: 4.7.3 + prettier: 2.7.1 + typescript: 4.7.4 yaml-eslint-parser: 1.0.1 devDependencies: - eslint: 8.17.0 + eslint: 8.18.0 internal/metadata: specifiers: @@ -353,8 +353,8 @@ importers: fast-glob: ^3.2.11 lodash-es: ^4.17.21 npm-run-all: ^4.1.5 - octokit: ^1.7.2 - tsx: ^3.4.2 + octokit: ^1.8.1 + tsx: ^3.6.0 devDependencies: '@element-plus/build': link:../build '@element-plus/build-constants': link:../build-constants @@ -366,8 +366,8 @@ importers: fast-glob: 3.2.11 lodash-es: 4.17.21 npm-run-all: 4.1.5 - octokit: 1.7.2 - tsx: 3.4.2 + octokit: 1.8.1 + tsx: 3.6.0 packages/components: specifiers: {} @@ -381,14 +381,14 @@ importers: packages/element-plus: specifiers: '@ctrl/tinycolor': ^3.4.1 - '@element-plus/icons-vue': ^2.0.5 - '@floating-ui/dom': ^0.5.3 + '@element-plus/icons-vue': ^2.0.6 + '@floating-ui/dom': ^0.5.4 '@popperjs/core': npm:@sxzz/popperjs-es@^2.11.7 '@types/lodash': ^4.14.182 '@types/lodash-es': ^4.17.6 '@types/node': '*' - '@vueuse/core': ^8.6.0 - async-validator: ^4.1.1 + '@vueuse/core': ^8.7.5 + async-validator: ^4.2.5 csstype: ^2.6.20 dayjs: ^1.11.3 escape-html: ^1.0.3 @@ -401,13 +401,13 @@ importers: vue-router: ^4.0.16 dependencies: '@ctrl/tinycolor': 3.4.1 - '@element-plus/icons-vue': 2.0.5_vue@3.2.37 - '@floating-ui/dom': 0.5.3 + '@element-plus/icons-vue': 2.0.6_vue@3.2.37 + '@floating-ui/dom': 0.5.4 '@popperjs/core': /@sxzz/popperjs-es/2.11.7 '@types/lodash': 4.14.182 '@types/lodash-es': 4.17.6 - '@vueuse/core': 8.6.0_vue@3.2.37 - async-validator: 4.1.1 + '@vueuse/core': 8.7.5_vue@3.2.37 + async-validator: 4.2.5 dayjs: 1.11.3 escape-html: 1.0.3 lodash: 4.17.21 @@ -433,7 +433,7 @@ importers: packages/theme-chalk: specifiers: '@element-plus/build': workspace:* - '@esbuild-kit/cjs-loader': ^2.1.0 + '@esbuild-kit/cjs-loader': ^2.2.1 '@types/gulp-autoprefixer': ^0.0.33 '@types/gulp-clean-css': ^4.3.0 '@types/gulp-rename': ^2.0.1 @@ -444,7 +444,7 @@ importers: gulp-sass: ^5.1.0 devDependencies: '@element-plus/build': link:../../internal/build - '@esbuild-kit/cjs-loader': 2.1.0 + '@esbuild-kit/cjs-loader': 2.2.1 '@types/gulp-autoprefixer': 0.0.33 '@types/gulp-clean-css': 4.3.0 '@types/gulp-rename': 2.0.1 @@ -462,21 +462,21 @@ importers: play: specifiers: - '@element-plus/icons-vue': ^2.0.5 + '@element-plus/icons-vue': ^2.0.6 '@vitejs/plugin-vue': ^2.3.3 - unplugin-vue-components: ^0.19.6 - vite: ^2.9.12 + unplugin-vue-components: ^0.20.1 + vite: ^2.9.13 vite-plugin-inspect: ^0.5.0 vite-plugin-mkcert: ^1.7.2 vue: ^3.2.37 dependencies: - '@element-plus/icons-vue': 2.0.5_vue@3.2.37 + '@element-plus/icons-vue': 2.0.6_vue@3.2.37 vue: 3.2.37 devDependencies: - '@vitejs/plugin-vue': 2.3.3_vite@2.9.12+vue@3.2.37 - unplugin-vue-components: 0.19.6_vite@2.9.12+vue@3.2.37 - vite: 2.9.12 - vite-plugin-inspect: 0.5.0_vite@2.9.12 + '@vitejs/plugin-vue': 2.3.3_vite@2.9.13+vue@3.2.37 + unplugin-vue-components: 0.20.1_vite@2.9.13+vue@3.2.37 + vite: 2.9.13 + vite-plugin-inspect: 0.5.0_vite@2.9.13 vite-plugin-mkcert: 1.7.2 packages: @@ -1747,14 +1747,14 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@commitlint/cli/17.0.2: - resolution: {integrity: sha512-Axe89Js0YzGGd4gxo3JLlF7yIdjOVpG1LbOorGc6PfYF+drBh14PvarSDLzyd2TNqdylUCq9wb9/A88ZjIdyhA==} + /@commitlint/cli/17.0.3: + resolution: {integrity: sha512-oAo2vi5d8QZnAbtU5+0cR2j+A7PO8zuccux65R/EycwvsZrDVyW518FFrnJK2UQxbRtHFFIG+NjQ6vOiJV0Q8A==} engines: {node: '>=v14'} hasBin: true dependencies: '@commitlint/format': 17.0.0 - '@commitlint/lint': 17.0.0 - '@commitlint/load': 17.0.0 + '@commitlint/lint': 17.0.3 + '@commitlint/load': 17.0.3 '@commitlint/read': 17.0.0 '@commitlint/types': 17.0.0 execa: 5.1.1 @@ -1767,19 +1767,19 @@ packages: - '@swc/wasm' dev: true - /@commitlint/config-conventional/17.0.2: - resolution: {integrity: sha512-MfP0I/JbxKkzo+HXWB7B3WstGS4BiniotU3d3xQ9gK8cR0DbeZ4MuyGCWF65YDyrcDTS3WlrJ3ndSPA1pqhoPw==} + /@commitlint/config-conventional/17.0.3: + resolution: {integrity: sha512-HCnzTm5ATwwwzNVq5Y57poS0a1oOOcd5pc1MmBpLbGmSysc4i7F/++JuwtdFPu16sgM3H9J/j2zznRLOSGVO2A==} engines: {node: '>=v14'} dependencies: conventional-changelog-conventionalcommits: 5.0.0 dev: true - /@commitlint/config-validator/17.0.0: - resolution: {integrity: sha512-78IQjoZWR4kDHp/U5y17euEWzswJpPkA9TDL5F6oZZZaLIEreWzrDZD5PWtM8MsSRl/K2LDU/UrzYju2bKLMpA==} + /@commitlint/config-validator/17.0.3: + resolution: {integrity: sha512-3tLRPQJKapksGE7Kee9axv+9z5I2GDHitDH4q63q7NmNA0wkB+DAorJ0RHz2/K00Zb1/MVdHzhCga34FJvDihQ==} engines: {node: '>=v14'} dependencies: '@commitlint/types': 17.0.0 - ajv: 6.12.6 + ajv: 8.11.0 dev: true /@commitlint/ensure/17.0.0: @@ -1803,40 +1803,39 @@ packages: chalk: 4.1.2 dev: true - /@commitlint/is-ignored/17.0.0: - resolution: {integrity: sha512-UmacD0XM/wWykgdXn5CEWVS4XGuqzU+ZGvM2hwv85+SXGnIOaG88XHrt81u37ZeVt1riWW+YdOxcJW6+nd5v5w==} + /@commitlint/is-ignored/17.0.3: + resolution: {integrity: sha512-/wgCXAvPtFTQZxsVxj7owLeRf5wwzcXLaYmrZPR4a87iD4sCvUIRl1/ogYrtOyUmHwWfQsvjqIB4mWE/SqWSnA==} engines: {node: '>=v14'} dependencies: '@commitlint/types': 17.0.0 semver: 7.3.7 dev: true - /@commitlint/lint/17.0.0: - resolution: {integrity: sha512-5FL7VLvGJQby24q0pd4UdM8FNFcL+ER1T/UBf8A9KRL5+QXV1Rkl6Zhcl7+SGpGlVo6Yo0pm6aLW716LVKWLGg==} + /@commitlint/lint/17.0.3: + resolution: {integrity: sha512-2o1fk7JUdxBUgszyt41sHC/8Nd5PXNpkmuOo9jvGIjDHzOwXyV0PSdbEVTH3xGz9NEmjohFHr5l+N+T9fcxong==} engines: {node: '>=v14'} dependencies: - '@commitlint/is-ignored': 17.0.0 + '@commitlint/is-ignored': 17.0.3 '@commitlint/parse': 17.0.0 '@commitlint/rules': 17.0.0 '@commitlint/types': 17.0.0 dev: true - /@commitlint/load/17.0.0: - resolution: {integrity: sha512-XaiHF4yWQOPAI0O6wXvk+NYLtJn/Xb7jgZEeKd4C1ZWd7vR7u8z5h0PkWxSr0uLZGQsElGxv3fiZ32C5+q6M8w==} + /@commitlint/load/17.0.3: + resolution: {integrity: sha512-3Dhvr7GcKbKa/ey4QJ5MZH3+J7QFlARohUow6hftQyNjzoXXROm+RwpBes4dDFrXG1xDw9QPXA7uzrOShCd4bw==} engines: {node: '>=v14'} - requiresBuild: true dependencies: - '@commitlint/config-validator': 17.0.0 + '@commitlint/config-validator': 17.0.3 '@commitlint/execute-rule': 17.0.0 - '@commitlint/resolve-extends': 17.0.0 + '@commitlint/resolve-extends': 17.0.3 '@commitlint/types': 17.0.0 '@types/node': 17.0.40 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 2.0.1_fvkldoeufjjq5mlpfdkzhuqzdy + cosmiconfig-typescript-loader: 2.0.1_7oqjshy4scgohh2k2lzivplbau lodash: 4.17.21 resolve-from: 5.0.0 - typescript: 4.7.3 + typescript: 4.7.4 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -1866,11 +1865,11 @@ packages: git-raw-commits: 2.0.11 dev: true - /@commitlint/resolve-extends/17.0.0: - resolution: {integrity: sha512-wi60WiJmwaQ7lzMXK8Vbc18Hq9tE2j/6iv2AFfPUGV7fvfY6Sf1iNKuUHirSqR0fquUyufIXe4y/K9A6LVIIvw==} + /@commitlint/resolve-extends/17.0.3: + resolution: {integrity: sha512-H/RFMvrcBeJCMdnVC4i8I94108UDccIHrTke2tyQEg9nXQnR5/Hd6MhyNWkREvcrxh9Y+33JLb+PiPiaBxCtBA==} engines: {node: '>=v14'} dependencies: - '@commitlint/config-validator': 17.0.0 + '@commitlint/config-validator': 17.0.3 '@commitlint/types': 17.0.0 import-fresh: 3.3.0 lodash: 4.17.21 @@ -1959,40 +1958,33 @@ packages: '@docsearch/css': 3.1.0 algoliasearch: 4.13.1 - /@element-plus/icons-vue/2.0.5_vue@3.2.37: - resolution: {integrity: sha512-jvNWyKcdvPvMDLTWjghrPY+bYHKqh7hbAFIPe+HWR073zilzt33csREzmKx3VwhdlJUW5u0nCqN+0rwI8jlH+w==} + /@element-plus/icons-vue/2.0.6_vue@3.2.37: + resolution: {integrity: sha512-lPpG8hYkjL/Z97DH5Ei6w6o22Z4YdNglWCNYOPcB33JCF2A4wye6HFgSI7hEt9zdLyxlSpiqtgf9XcYU+m5mew==} peerDependencies: vue: ^3.2.0 dependencies: vue: 3.2.37 dev: false - /@esbuild-kit/cjs-loader/2.0.1: - resolution: {integrity: sha512-KmE8XouKm6m05jPIsf5CTIZZ4171GHd+PUts1mtti2tzoiD228qCRjpkCwg540c3fMUweKupO+PIpkJ9+Z7vPg==} + /@esbuild-kit/cjs-loader/2.2.1: + resolution: {integrity: sha512-pq2Z4DcqTBF7y1wQuIzFVqmHJVnmP6hgHEWN2ubPjeG7OzXMZ9NvozW+YA/MIeMdZWp1jcJ/EvXk2+mfEKoCDQ==} dependencies: - '@esbuild-kit/core-utils': 1.3.1 - get-tsconfig: 3.0.1 + '@esbuild-kit/core-utils': 2.0.2 + get-tsconfig: 4.0.7 dev: true - /@esbuild-kit/cjs-loader/2.1.0: - resolution: {integrity: sha512-KyX25VcC2564K5FnEhNDdzonC87VeSZoLz3h6R8x3d1myhxqGdoQkTQba3VCcuAkgdkn69d3Zhvj3xtGWldbEQ==} + /@esbuild-kit/core-utils/2.0.2: + resolution: {integrity: sha512-clNYQUsqtc36pzW5EufMsahcbLG45EaW3YDyf0DlaS0eCMkDXpxIlHwPC0rndUwG6Ytk9sMSD5k1qHbwYEC/OQ==} dependencies: - '@esbuild-kit/core-utils': 1.3.1 - get-tsconfig: 4.0.2 - dev: true - - /@esbuild-kit/core-utils/1.3.1: - resolution: {integrity: sha512-QXWJKf3mEIs+jgUCrY2YWJ2cr9e9asRYRwDhxit+wkCaQbSfV6fCCgs8KjRsrkIdMBcWsjbWnFKfwZ9kjILPrw==} - dependencies: - esbuild: 0.14.38 + esbuild: 0.14.47 source-map-support: 0.5.21 dev: true - /@esbuild-kit/esm-loader/2.1.5: - resolution: {integrity: sha512-G0HZSh53dXOb42xR14zEASXtVWFNX2itREVPnh6BWU2PcApbSzFEIUpknotpybuu6QupuW9sS9hVVpJjuyZlSw==} + /@esbuild-kit/esm-loader/2.3.1: + resolution: {integrity: sha512-CC0H91Oa02cczLswEoiLowTzWxvnS3tIBGkQa1BnieFK7HHV4whrBFGRlUD9rMHfyyoO55IuOqNujycXX+gI8A==} dependencies: - '@esbuild-kit/core-utils': 1.3.1 - get-tsconfig: 3.0.1 + '@esbuild-kit/core-utils': 2.0.2 + get-tsconfig: 4.0.7 dev: true /@eslint/eslintrc/1.3.0: @@ -2015,8 +2007,8 @@ packages: resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==} dev: false - /@floating-ui/dom/0.5.3: - resolution: {integrity: sha512-vpjWB1uC7rajvgA58uzlJZgtWqrdDQLw+XVA3w63ZTmsWwRmVd0Gl5Dy9VMAViI9cP7hBWaJt23Jy3AVgVYnoQ==} + /@floating-ui/dom/0.5.4: + resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==} dependencies: '@floating-ui/core': 0.7.3 dev: false @@ -2034,8 +2026,8 @@ packages: /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - /@iconify-json/ri/1.1.2: - resolution: {integrity: sha512-qLlDrpkxJi+aUxY2xipKC08aI2seaxFsrEWC3Wm5WJxTtZco+G8SUBpzNpQaKzjN4IwpzcZv8T37Q3aREXDk/A==} + /@iconify-json/ri/1.1.3: + resolution: {integrity: sha512-YQ45kQNpuHc2bso4fDGhooWou43qy7njD/I5l7vpjcujb+P/K2BfLASbWYTTUKu6lMersuFmO8F7NdGzy6eGWw==} dependencies: '@iconify/types': 1.1.0 dev: true @@ -2044,8 +2036,8 @@ packages: resolution: {integrity: sha512-Jh0llaK2LRXQoYsorIH8maClebsnzTcve+7U3rQUSnC11X4jtPnFuyatqFLvMxZ8MLG8dB4zfHsbPfuvxluONw==} dev: true - /@iconify/utils/1.0.32: - resolution: {integrity: sha512-m+rnw7qKHq/XF7DAi4BcFoEAcXBfqqMgQJh8brGEHeqE/RUvgDMjmxsHgWnVpFsG+VmjGyAiI7nwXdliCwEU0Q==} + /@iconify/utils/1.0.33: + resolution: {integrity: sha512-vGeAqo7aGPxOQmGdVoXFUOuyN+0V7Lcrx2EvaiRjxUD1x6Om0Tvq2bdm7E24l2Pz++4S0mWMCVFXe/17EtKImQ==} dependencies: '@antfu/install-pkg': 0.1.0 '@antfu/utils': 0.5.2 @@ -2133,8 +2125,8 @@ packages: '@octokit/auth-unauthenticated': 2.1.0 '@octokit/core': 3.6.0 '@octokit/oauth-app': 3.6.2 - '@octokit/plugin-paginate-rest': 2.17.0_@octokit+core@3.6.0 - '@octokit/types': 6.34.0 + '@octokit/plugin-paginate-rest': 2.19.0_@octokit+core@3.6.0 + '@octokit/types': 6.37.1 '@octokit/webhooks': 9.24.0 transitivePeerDependencies: - encoding @@ -2147,7 +2139,7 @@ packages: '@octokit/auth-oauth-user': 1.3.0 '@octokit/request': 5.6.3 '@octokit/request-error': 2.1.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 '@types/lru-cache': 5.1.1 deprecation: 2.3.1 lru-cache: 6.0.0 @@ -2163,7 +2155,7 @@ packages: '@octokit/auth-oauth-device': 3.1.2 '@octokit/auth-oauth-user': 1.3.0 '@octokit/request': 5.6.3 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 '@types/btoa-lite': 1.0.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.0 @@ -2176,7 +2168,7 @@ packages: dependencies: '@octokit/oauth-methods': 1.2.6 '@octokit/request': 5.6.3 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding @@ -2188,7 +2180,7 @@ packages: '@octokit/auth-oauth-device': 3.1.2 '@octokit/oauth-methods': 1.2.6 '@octokit/request': 5.6.3 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 btoa-lite: 1.0.0 universal-user-agent: 6.0.0 transitivePeerDependencies: @@ -2198,14 +2190,14 @@ packages: /@octokit/auth-token/2.5.0: resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} dependencies: - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 dev: true /@octokit/auth-unauthenticated/2.1.0: resolution: {integrity: sha512-+baofLfSL0CAv3CfGQ9rxiZZQEX8VNJMGuuS4PgrMRBUL52Ho5+hQYb63UJQshw7EXYMPDZxbXznc0y33cbPqw==} dependencies: '@octokit/request-error': 2.1.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 dev: true /@octokit/core/3.6.0: @@ -2215,7 +2207,7 @@ packages: '@octokit/graphql': 4.8.0 '@octokit/request': 5.6.3 '@octokit/request-error': 2.1.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 before-after-hook: 2.2.2 universal-user-agent: 6.0.0 transitivePeerDependencies: @@ -2225,7 +2217,7 @@ packages: /@octokit/endpoint/6.0.12: resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} dependencies: - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 dev: true @@ -2234,7 +2226,7 @@ packages: resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} dependencies: '@octokit/request': 5.6.3 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding @@ -2268,7 +2260,7 @@ packages: '@octokit/oauth-authorization-url': 4.3.3 '@octokit/request': 5.6.3 '@octokit/request-error': 2.1.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 btoa-lite: 1.0.0 transitivePeerDependencies: - encoding @@ -2278,6 +2270,10 @@ packages: resolution: {integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==} dev: true + /@octokit/openapi-types/12.4.0: + resolution: {integrity: sha512-Npcb7Pv30b33U04jvcD7l75yLU0mxhuX2Xqrn51YyZ5WTkF04bpbxLaZ6GcaTqu03WZQHoO/Gbfp95NGRueDUA==} + dev: true + /@octokit/plugin-paginate-rest/2.17.0_@octokit+core@3.6.0: resolution: {integrity: sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==} peerDependencies: @@ -2287,6 +2283,15 @@ packages: '@octokit/types': 6.34.0 dev: true + /@octokit/plugin-paginate-rest/2.19.0_@octokit+core@3.6.0: + resolution: {integrity: sha512-hQ4Qysg2hNmEMuZeJkvyzM4eSZiTifOKqYAMsW8FnxFKowhuwWICSgBQ9Gn9GpUmgKB7qaf1hFvMjYaTAg5jQA==} + peerDependencies: + '@octokit/core': '>=2' + dependencies: + '@octokit/core': 3.6.0 + '@octokit/types': 6.37.1 + dev: true + /@octokit/plugin-request-log/1.0.4_@octokit+core@3.6.0: resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} peerDependencies: @@ -2305,10 +2310,20 @@ packages: deprecation: 2.3.1 dev: true + /@octokit/plugin-rest-endpoint-methods/5.15.0_@octokit+core@3.6.0: + resolution: {integrity: sha512-Gsw9+Xm56jVhfbJoy4pt6eOOyf8/3K6CAnx1Sl7U2GhZWcg8MR6YgXWnpfdF69S2ViMXLA7nfvTDAsZpFlkLRw==} + peerDependencies: + '@octokit/core': '>=3' + dependencies: + '@octokit/core': 3.6.0 + '@octokit/types': 6.37.1 + deprecation: 2.3.1 + dev: true + /@octokit/plugin-retry/3.0.9: resolution: {integrity: sha512-r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ==} dependencies: - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 bottleneck: 2.19.5 dev: true @@ -2318,14 +2333,14 @@ packages: '@octokit/core': ^3.5.0 dependencies: '@octokit/core': 3.6.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 bottleneck: 2.19.5 dev: true /@octokit/request-error/2.1.0: resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} dependencies: - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 deprecation: 2.3.1 once: 1.4.0 dev: true @@ -2335,7 +2350,7 @@ packages: dependencies: '@octokit/endpoint': 6.0.12 '@octokit/request-error': 2.1.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 is-plain-object: 5.0.0 node-fetch: 2.6.7 universal-user-agent: 6.0.0 @@ -2360,6 +2375,12 @@ packages: '@octokit/openapi-types': 11.2.0 dev: true + /@octokit/types/6.37.1: + resolution: {integrity: sha512-Q1hXSP2YumHkDdD+V4wFKr7vJ9+8tjocixrTSb75JzJ4GpjSyu5B4kpgrXxO6GOs4nOmVyRwRgS4/RO/Lf9oEA==} + dependencies: + '@octokit/openapi-types': 12.4.0 + dev: true + /@octokit/webhooks-methods/2.0.0: resolution: {integrity: sha512-35cfQ4YWlnZnmZKmIxlGPUPLtbkF8lr/A/1Sk1eC0ddLMwQN06dOuLc+dI3YLQS+T+MoNt3DIQ0NynwgKPilig==} dev: true @@ -2377,41 +2398,43 @@ packages: aggregate-error: 3.1.0 dev: true - /@pnpm/cli-meta/3.0.2: - resolution: {integrity: sha512-UEjLTv19q+fjU8PiZLcOkMYTRihuDJE2P4FbqBw5Z9Dy0PljO82KWUxP0eZ2YgHAud0YaYHWUWDBe3QqoIqGgw==} - engines: {node: '>=14.19'} + /@pnpm/cli-meta/3.0.5: + resolution: {integrity: sha512-oIoIGI+TfvtIWD2qBfZy/McWadb2r/4I6W9Ul8VccGuKDh3QmvQkMx56PNJ3NHH/AzX/xU95hkEYxLRQ1Q5Quw==} + engines: {node: '>=14.6'} dependencies: - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 load-json-file: 6.2.0 - /@pnpm/cli-utils/0.7.12_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-hrm/IgUHNNrtVB1LT/La1USzHT42KrCIz++ATslqdm+Z/qGYv+YYCbKLW2Ox2yGMvL0sQ6d1ohc3rOou/YHrBw==} + /@pnpm/cli-utils/0.7.16_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-Has/Umgz2+yahUDPCAIx5bhqIfo7LQMOvFqr74+rBz4Gt6w517drARVa9oRgcJHO84roUkF/ygyZshjjsdV2Hw==} engines: {node: '>=14.6'} peerDependencies: '@pnpm/logger': ^4.0.0 dependencies: - '@pnpm/cli-meta': 3.0.2 - '@pnpm/config': 15.2.1_@pnpm+logger@4.0.0 - '@pnpm/default-reporter': 9.1.2_@pnpm+logger@4.0.0 + '@pnpm/cli-meta': 3.0.5 + '@pnpm/config': 15.5.0_@pnpm+logger@4.0.0 + '@pnpm/default-reporter': 9.1.6_@pnpm+logger@4.0.0 '@pnpm/error': 3.0.1 '@pnpm/logger': 4.0.0 - '@pnpm/manifest-utils': 3.0.3_@pnpm+logger@4.0.0 - '@pnpm/package-is-installable': 6.0.4_@pnpm+logger@4.0.0 - '@pnpm/read-project-manifest': 3.0.3 - '@pnpm/types': 8.1.0 + '@pnpm/manifest-utils': 3.0.6_@pnpm+logger@4.0.0 + '@pnpm/package-is-installable': 6.0.7_@pnpm+logger@4.0.0 + '@pnpm/read-project-manifest': 3.0.6 + '@pnpm/types': 8.4.0 chalk: 4.1.2 load-json-file: 6.2.0 - /@pnpm/config/15.2.1_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-W5MXEfuIgA6MsLmefgRZ/Fos0PTZSNEA9Sg9uWrKk6ni10hoVsODlTJ+kICvdVfzWFF7df/HZVh61pIsOccV9g==} + /@pnpm/config/15.5.0_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-NYGYwGjcbfNU9xgAaW5+f4GolfGWZq45lwoA096y0qSTIJwORIYa3cmdD62ZuYvNP9/6boLX1jjrehNSKcYlNQ==} engines: {node: '>=14.6'} dependencies: '@pnpm/constants': 6.1.0 '@pnpm/error': 3.0.1 + '@pnpm/git-utils': 0.1.0 + '@pnpm/matcher': 3.0.0 '@pnpm/npm-conf': 1.0.4 - '@pnpm/pnpmfile': 2.0.3_@pnpm+logger@4.0.0 - '@pnpm/read-project-manifest': 3.0.3 - '@pnpm/types': 8.1.0 + '@pnpm/pnpmfile': 2.0.6_@pnpm+logger@4.0.0 + '@pnpm/read-project-manifest': 3.0.6 + '@pnpm/types': 8.4.0 camelcase: 6.3.0 can-write-to-dir: 1.1.1 is-subdir: 1.2.0 @@ -2427,27 +2450,27 @@ packages: resolution: {integrity: sha512-L6AiU3OXv9kjKGTJN9j8n1TeJGDcLX9atQlZvAkthlvbXjvKc5SKNWESc/eXhr5nEfuMWhQhiKHDJCpYejmeCQ==} engines: {node: '>=14.19'} - /@pnpm/core-loggers/7.0.2_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-D37q2mJYkyfkCr9PZslUaF2y+IYPj2fesLtMp/S1e06t2x4ubtlOUvk3znoySmczYoj8ydAyYC7XEj5kighNZg==} - engines: {node: '>=14.19'} + /@pnpm/core-loggers/7.0.5_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-ZPJTBN766U++LgW2vM56WhEJKhBw/Aq20DbcFbiKjLda2X1BeyysgaCBfAli8qeLnB9HcjUCgR9fWddzkoPtIA==} + engines: {node: '>=14.6'} peerDependencies: '@pnpm/logger': ^4.0.0 dependencies: '@pnpm/logger': 4.0.0 - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 - /@pnpm/default-reporter/9.1.2_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-FYueWm+stmqsyyQLYRpn4TS8g5/52+yl5te9UF4nor8Y2qXO3AYi/7AqgOWdWuTBhSCmCp7ezGliI6IgVvfVaw==} + /@pnpm/default-reporter/9.1.6_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-snxU9RQyEBXrn18naHZuttf9RAcx5ysYGd2/4+t7Rseb8Kf6Dxfuz/HUrYCK82dLqil0dlevvF7ZqMP30wnrgg==} engines: {node: '>=14.6'} peerDependencies: '@pnpm/logger': ^4.0.0 dependencies: - '@pnpm/config': 15.2.1_@pnpm+logger@4.0.0 - '@pnpm/core-loggers': 7.0.2_@pnpm+logger@4.0.0 + '@pnpm/config': 15.5.0_@pnpm+logger@4.0.0 + '@pnpm/core-loggers': 7.0.5_@pnpm+logger@4.0.0 '@pnpm/error': 3.0.1 '@pnpm/logger': 4.0.0 - '@pnpm/render-peer-issues': 2.0.2 - '@pnpm/types': 8.1.0 + '@pnpm/render-peer-issues': 2.0.5 + '@pnpm/types': 8.4.0 ansi-diff: 1.1.1 boxen: 5.1.2 chalk: 4.1.2 @@ -2468,29 +2491,35 @@ packages: dependencies: '@pnpm/constants': 6.1.0 - /@pnpm/find-workspace-packages/4.0.12_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-kcKXwY1n7W/vZt+IxMOLdc2LfgZMvJ5RdgW09FdhfR/FjBsCCYbipHjtojV8KLvQ6tEQ2VPLTQ9NR74EGJDfbA==} + /@pnpm/find-workspace-packages/4.0.16_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-W/NmRUjmqw+MADjVVgzY0r2FSON6UhWxwU5b9qD1hiLZucdsGNEOm0YYqQfU80KJ3VT8t0xSc3JlZdPSntagBg==} engines: {node: '>=14.6'} dependencies: - '@pnpm/cli-utils': 0.7.12_@pnpm+logger@4.0.0 + '@pnpm/cli-utils': 0.7.16_@pnpm+logger@4.0.0 '@pnpm/constants': 6.1.0 - '@pnpm/types': 8.1.0 - find-packages: 9.0.3 + '@pnpm/types': 8.4.0 + find-packages: 9.0.6 read-yaml-file: 2.1.0 transitivePeerDependencies: - '@pnpm/logger' + /@pnpm/git-utils/0.1.0: + resolution: {integrity: sha512-W3zsG9585cKL+FqgcT+IfTgZX5C+CbNkFjOnJN+qbysT1N30+BbvEByCcDMsTy7QDrAk6oS7WU1Rym3U2xlh2Q==} + engines: {node: '>=14.6'} + dependencies: + execa: /safe-execa/0.1.1 + /@pnpm/graceful-fs/2.0.0: resolution: {integrity: sha512-ogUZCGf0/UILZt6d8PsO4gA4pXh7f0BumXeFkcCe4AQ65PXPKfAkHC0C30Lheh2EgFOpLZm3twDP1Eiww18gew==} engines: {node: '>=14.19'} dependencies: graceful-fs: 4.2.10 - /@pnpm/lockfile-types/4.0.2: - resolution: {integrity: sha512-IoHwZy4CkaAC67V04/KWRBhxtjA9XP5VEvz90ttxkdtO8hpTHz21vmsos2PbYU148oepKADpSM/9zk1hhBmPhg==} - engines: {node: '>=14.19'} + /@pnpm/lockfile-types/4.2.0: + resolution: {integrity: sha512-8/t9YrC8VSJgEJv/m1UQMNPHs3Tu4Ow7shpuIDPD5sqjNw3lICB9ybbPlO+6/bkb9/D8QizbBigbVsDybWR9Hw==} + engines: {node: '>=14.6'} dependencies: - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 /@pnpm/logger/4.0.0: resolution: {integrity: sha512-SIShw+k556e7S7tLZFVSIHjCdiVog1qWzcKW2RbLEHPItdisAFVNIe34kYd9fMSswTlSRLS/qRjw3ZblzWmJ9Q==} @@ -2499,16 +2528,22 @@ packages: bole: 4.0.0 ndjson: 2.0.0 - /@pnpm/manifest-utils/3.0.3_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-9G42k1p7vv126fkoEq4nwFkobozDQVrQmIVYH/IOxPHEaqVY5Lq+z+G+NdZkNuwBteK7vCN5+E8+ZEcod3xOQA==} - engines: {node: '>=14.19'} + /@pnpm/manifest-utils/3.0.6_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-7lmez3meuQeQjXXpZygC99D14QvoYdRVhuxac52Glor2/aWx2DTYSZ6AkzH5j7fuWiYVvNc9WmELYLptMkYhAw==} + engines: {node: '>=14.6'} dependencies: - '@pnpm/core-loggers': 7.0.2_@pnpm+logger@4.0.0 + '@pnpm/core-loggers': 7.0.5_@pnpm+logger@4.0.0 '@pnpm/error': 3.0.1 - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 transitivePeerDependencies: - '@pnpm/logger' + /@pnpm/matcher/3.0.0: + resolution: {integrity: sha512-EXbwjVoiX6PPYkMTJu/1V4wlqR3cY7Z4UpIdpoCEBurZgiD4MfxChLiKzcbiSC/DTMewjcwVhNT0BL+EAEj3yA==} + engines: {node: '>=14.19'} + dependencies: + escape-string-regexp: 4.0.0 + /@pnpm/network.ca-file/1.0.1: resolution: {integrity: sha512-gkINruT2KUhZLTaiHxwCOh1O4NVnFT0wLjWFBHmTz9vpKag/C/noIMJXBxFe4F0mYpUVX2puLwAieLYFg2NvoA==} engines: {node: '>=12.22.0'} @@ -2522,43 +2557,43 @@ packages: '@pnpm/network.ca-file': 1.0.1 config-chain: 1.1.13 - /@pnpm/package-is-installable/6.0.4_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-u7h8MaNF20i7Bu5voXYMnRcDmYqsnu1cIWIllQCkX+e1hNybE9zbzuYv+hUch+cs+OhXkc5I21qP3DaPnC/F0Q==} - engines: {node: '>=14.19'} + /@pnpm/package-is-installable/6.0.7_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-GLqVoc9p9txMP5e0USnSHLzZpBbpjPjGl6o+fco+rCHwE6wYPJWV7mTb9qhGwNXkQ8nlODB3ziRRxMlDIKs2qw==} + engines: {node: '>=14.6'} peerDependencies: '@pnpm/logger': ^4.0.0 dependencies: - '@pnpm/core-loggers': 7.0.2_@pnpm+logger@4.0.0 + '@pnpm/core-loggers': 7.0.5_@pnpm+logger@4.0.0 '@pnpm/error': 3.0.1 '@pnpm/logger': 4.0.0 - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 detect-libc: 2.0.1 execa: /safe-execa/0.1.1 mem: 8.1.1 semver: 7.3.7 - /@pnpm/pnpmfile/2.0.3_@pnpm+logger@4.0.0: - resolution: {integrity: sha512-/HF2z+TyJKIl+o1fd6H0VvRKJcsWjRdgo2xZw6RBf9XvHpvt4QgzeoQsX5P3mfFq2uIQVN0C0XXWVGcGnPWVEw==} - engines: {node: '>=14.19'} + /@pnpm/pnpmfile/2.0.6_@pnpm+logger@4.0.0: + resolution: {integrity: sha512-xnNdzRb/4i+vwnBsXFz1fKO7I3weR2yAbeYQ1kbsc4KSR1LwlaPXgvWcN8zwBZsIXp2QMlNFIiTuHzk1rHWsBw==} + engines: {node: '>=14.6'} peerDependencies: '@pnpm/logger': ^4.0.0 dependencies: - '@pnpm/core-loggers': 7.0.2_@pnpm+logger@4.0.0 + '@pnpm/core-loggers': 7.0.5_@pnpm+logger@4.0.0 '@pnpm/error': 3.0.1 - '@pnpm/lockfile-types': 4.0.2 + '@pnpm/lockfile-types': 4.2.0 '@pnpm/logger': 4.0.0 - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 chalk: 4.1.2 path-absolute: 1.0.1 - /@pnpm/read-project-manifest/3.0.3: - resolution: {integrity: sha512-gkiv/CrU/cM4iPrqRThAp3c/gBAe8qwNnK4pXYmeqTeKe+Wnzrjpg9x4l0L+jYPpV2I/OvmucMnU3a5anMRksQ==} - engines: {node: '>=14.19'} + /@pnpm/read-project-manifest/3.0.6: + resolution: {integrity: sha512-nKFODeo/K7kLSLXMJcGywANaiyL9JlLQHKG3SWJaAjkP3QBgYWqqXhGWx8ZPsk5z9k0RL0gPEpt3wod8FAbTPg==} + engines: {node: '>=14.6'} dependencies: '@pnpm/error': 3.0.1 '@pnpm/graceful-fs': 2.0.0 - '@pnpm/types': 8.1.0 - '@pnpm/write-project-manifest': 3.0.2 + '@pnpm/types': 8.4.0 + '@pnpm/write-project-manifest': 3.0.5 detect-indent: 6.1.0 fast-deep-equal: 3.1.3 is-windows: 1.0.2 @@ -2568,24 +2603,24 @@ packages: sort-keys: 4.2.0 strip-bom: 4.0.0 - /@pnpm/render-peer-issues/2.0.2: - resolution: {integrity: sha512-Bp34ugFIuDVi58K96aPs7MLi8F2btlhsyyh67JxqGrGHkNsqDRvBAofUVQNo0dIFc+wwjeJHnjbvLgIRVhN2Dg==} - engines: {node: '>=14.19'} + /@pnpm/render-peer-issues/2.0.5: + resolution: {integrity: sha512-J2FOgp7HheHWE+0WwaQkR2Ab+osg0yVO8H750+7MBw2PTvUyeNMVAdgy3ddIRYRaogT90jjpJFiywxSt9kd/4g==} + engines: {node: '>=14.6'} dependencies: - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 archy: 1.0.0 chalk: 4.1.2 cli-columns: 4.0.0 - /@pnpm/types/8.1.0: - resolution: {integrity: sha512-1AnX21D0vDE2yiNT85EWY9mEASgfPPNDun3bknLWULNjTfGCfiItZcTfmW4+hUgvFcoIW5PiTkpjxSMzHJ2BvA==} - engines: {node: '>=14.19'} + /@pnpm/types/8.4.0: + resolution: {integrity: sha512-sq/UdSq/jWCpYglw9SFmvR8qzUEi0p2oZIO0AHjkWWQg4Qrolf6DgD0WWmLiEP2WxHjbYeyD3ZzWzQor1+6cvw==} + engines: {node: '>=14.6'} - /@pnpm/write-project-manifest/3.0.2: - resolution: {integrity: sha512-+yJQaoSkM9Nfaj5Zf/whAWwYkVwn4XFMdIV9xklJiScSf3Qd9QpFBdi2NIlxxgZwC9eEQSwj6xO3Z+jnPpyl4w==} - engines: {node: '>=14.19'} + /@pnpm/write-project-manifest/3.0.5: + resolution: {integrity: sha512-d56Lz1bIGSvaGRFG9rNliOayq8dLyLiexRaFX3KVO9zCziLJ7i2SNkYlw3bUhDCRYKEDcWvr34zS7NwKRlkBgQ==} + engines: {node: '>=14.6'} dependencies: - '@pnpm/types': 8.1.0 + '@pnpm/types': 8.4.0 json5: 2.2.1 write-file-atomic: 3.0.3 write-yaml-file: 4.2.0 @@ -2637,20 +2672,20 @@ packages: rollup: 2.75.6 dev: true - /@rollup/plugin-commonjs/22.0.0_rollup@2.75.6: - resolution: {integrity: sha512-Ktvf2j+bAO+30awhbYoCaXpBcyPmJbaEUYClQns/+6SNCYFURbvBiNbWgHITEsIgDDWCDUclWRKEuf8cwZCFoQ==} + /@rollup/plugin-commonjs/22.0.1_rollup@2.75.7: + resolution: {integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 - resolve: 1.22.0 - rollup: 2.75.6 + resolve: 1.22.1 + rollup: 2.75.7 dev: false /@rollup/plugin-json/4.1.0_rollup@2.75.6: @@ -2690,6 +2725,22 @@ packages: is-module: 1.0.0 resolve: 1.22.0 rollup: 2.75.6 + dev: true + + /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.7: + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + '@types/resolve': 1.17.1 + deepmerge: 4.2.2 + is-builtin-module: 3.1.0 + is-module: 1.0.0 + resolve: 1.22.0 + rollup: 2.75.7 + dev: false /@rollup/plugin-replace/2.4.2_rollup@2.75.6: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} @@ -2721,6 +2772,19 @@ packages: estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.75.6 + dev: true + + /@rollup/pluginutils/3.1.0_rollup@2.75.7: + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.75.7 + dev: false /@rollup/pluginutils/4.2.1: resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} @@ -2993,6 +3057,10 @@ packages: '@types/node': 17.0.40 dev: true + /@types/web-bluetooth/0.0.14: + resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==} + dev: false + /@types/yauzl/2.10.0: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true @@ -3001,8 +3069,8 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.28.0_7yumg2qjgbp7maccqlfhx2vudu: - resolution: {integrity: sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==} + /@typescript-eslint/eslint-plugin/5.30.0_5mtqsiui4sk53pmkx7i7ue45wm: + resolution: {integrity: sha512-lvhRJ2pGe2V9MEU46ELTdiHgiAFZPKtLhiU5wlnaYpMc2+c1R8fh8i80ZAa665drvjHKUJyRRGg3gEm1If54ow==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -3012,24 +3080,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/type-utils': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 - '@typescript-eslint/utils': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/scope-manager': 5.30.0 + '@typescript-eslint/type-utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 - eslint: 8.17.0 + eslint: 8.18.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.3 - typescript: 4.7.3 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/parser/5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4: - resolution: {integrity: sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==} + /@typescript-eslint/parser/5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -3038,26 +3106,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.3 + '@typescript-eslint/scope-manager': 5.30.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.7.4 debug: 4.3.4 - eslint: 8.17.0 - typescript: 4.7.3 + eslint: 8.18.0 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/scope-manager/5.28.0: - resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} + /@typescript-eslint/scope-manager/5.30.0: + resolution: {integrity: sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/visitor-keys': 5.28.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/visitor-keys': 5.30.0 dev: false - /@typescript-eslint/type-utils/5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4: - resolution: {integrity: sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==} + /@typescript-eslint/type-utils/5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-GF8JZbZqSS+azehzlv/lmQQ3EU3VfWYzCczdZjJRxSEeXDQkqFhCBgFhallLDbPwQOEQ4MHpiPfkjKk7zlmeNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3066,22 +3134,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 - eslint: 8.17.0 - tsutils: 3.21.0_typescript@4.7.3 - typescript: 4.7.3 + eslint: 8.18.0 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/types/5.28.0: - resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} + /@typescript-eslint/types/5.30.0: + resolution: {integrity: sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false - /@typescript-eslint/typescript-estree/5.28.0_typescript@4.7.3: - resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} + /@typescript-eslint/typescript-estree/5.30.0_typescript@4.7.4: + resolution: {integrity: sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -3089,41 +3157,41 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/visitor-keys': 5.28.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/visitor-keys': 5.30.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.3 - typescript: 4.7.3 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/utils/5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4: - resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} + /@typescript-eslint/utils/5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.3 - eslint: 8.17.0 + '@typescript-eslint/scope-manager': 5.30.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.7.4 + eslint: 8.18.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint-utils: 3.0.0_eslint@8.18.0 transitivePeerDependencies: - supports-color - typescript dev: false - /@typescript-eslint/visitor-keys/5.28.0: - resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} + /@typescript-eslint/visitor-keys/5.30.0: + resolution: {integrity: sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/types': 5.30.0 eslint-visitor-keys: 3.3.0 dev: false @@ -3172,7 +3240,7 @@ packages: /@unocss/preset-icons/0.33.5: resolution: {integrity: sha512-fJMXN8IceVS6x+HbwLEcbfA1SC8qGi1s3MJNj6u/d1HyNlDLhSFZnSneAK/EnxfZJ+/dhv1zi16wFdZCXbrHkw==} dependencies: - '@iconify/utils': 1.0.32 + '@iconify/utils': 1.0.33 '@unocss/core': 0.33.5 ohmyfetch: 0.4.18 transitivePeerDependencies: @@ -3240,7 +3308,7 @@ packages: '@unocss/core': 0.33.5 dev: true - /@unocss/vite/0.33.5_vite@2.9.12: + /@unocss/vite/0.33.5_vite@2.9.13: resolution: {integrity: sha512-q2Wc+/vCwIlarK3FfmdM3c9OwwmoiUjzMtdgK8Y6qNIq/26S7pEk5upplhswR6M9kjqjDbIQOKgaVrhQFlLeVQ==} peerDependencies: vite: ^2.9.0 @@ -3255,7 +3323,7 @@ packages: '@unocss/scope': 0.33.5 '@unocss/transformer-directives': 0.33.5 magic-string: 0.26.2 - vite: 2.9.12 + vite: 2.9.13 dev: true /@vitejs/plugin-vue-jsx/1.3.10: @@ -3271,7 +3339,7 @@ packages: transitivePeerDependencies: - supports-color - /@vitejs/plugin-vue/2.3.3_vite@2.9.12+vue@3.2.37: + /@vitejs/plugin-vue/2.3.3_vite@2.9.13+vue@3.2.37: resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -3281,7 +3349,7 @@ packages: vite: optional: true dependencies: - vite: 2.9.12 + vite: 2.9.13 vue: 3.2.37 dev: true @@ -3297,38 +3365,38 @@ packages: dependencies: vue: 3.2.37 - /@vitest/ui/0.14.2: - resolution: {integrity: sha512-yV2paiv0/Obymx+9KV+KjM/FAbYF+PbnQiO2RFnZqDCgYwkkNmO1ZNNIetBeOzuNoi1BT1iPSKwtvL0PwCesDQ==} + /@vitest/ui/0.16.0: + resolution: {integrity: sha512-RwXYTFA2tVwUhuuTcdAaK5kIq+I3pnvNQUojPThZPZhS7ttKXkCgWwud0KXwnR04ofKc3HXEuzWPf6s7JD1vgw==} dependencies: sirv: 2.0.2 dev: true - /@volar/code-gen/0.37.8: - resolution: {integrity: sha512-znGxjKs/8TOqkWyarlLDQcCIpzCMt1bUPImLWdJtF2pAkdgZR0YzzXXoWV3eAwcO2JGCeL3lv2jddaswqDeQHQ==} + /@volar/code-gen/0.38.2: + resolution: {integrity: sha512-H81I6d7rZB7teqL+zhK/Xz1v0/kKkUwkB0Aq6b4+BTCqcJeiZkoWxd0gFhrhWTnUoqiM83lhoTGo2vkvx5YagQ==} dependencies: - '@volar/source-map': 0.37.8 + '@volar/source-map': 0.38.2 dev: true - /@volar/source-map/0.37.8: - resolution: {integrity: sha512-wlmzWIPhb7UAz/ZRGh8db5JoFPERjzRIodrdDn4YD9YejDEmxluRZ3vtYgUiGwJmtT/6UtB9YtPJWjr7XeMMNA==} + /@volar/source-map/0.38.2: + resolution: {integrity: sha512-DWcYbYt9SPwk0r4VmXk1F0v4X5+hCqH1JRkAWSeJymQyXCQ2OQDEbY2PF12a7y2qn4FUBD2gOba2TynAqI8ZFQ==} dev: true - /@volar/vue-code-gen/0.37.8: - resolution: {integrity: sha512-q1RaVjgMM2xRZTqIyJuiZaE2LGJIUnLRHScO02T2C26k+1Ah9z61BCOVBvA3BIh+JpPs7AhaAljiVxh7l/7TaA==} + /@volar/vue-code-gen/0.38.2: + resolution: {integrity: sha512-whLunD6phSGWBUHZKdTxeglrpzQu26ii8CRVapFdjfyMaVhQ7ESNeIAhkTVyg2ovOPc0PiDYPQEPzfWAADIWog==} dependencies: - '@volar/code-gen': 0.37.8 - '@volar/source-map': 0.37.8 + '@volar/code-gen': 0.38.2 + '@volar/source-map': 0.38.2 '@vue/compiler-core': 3.2.37 '@vue/compiler-dom': 3.2.37 '@vue/shared': 3.2.37 dev: true - /@volar/vue-typescript/0.37.8: - resolution: {integrity: sha512-Tcq7r7ArHXgJEGuMmhN9e5h+jj5tS3exygPnw82gnePKPCHhzegYQfBljhJ4GuVshVeheMmKYEJOkQ9pN+K35w==} + /@volar/vue-typescript/0.38.2: + resolution: {integrity: sha512-5IKvSK2m5yUmH6iu/tNScVlvJGuiHawTfSmjxaMs+/tod25WeK37LEdf+pdKtlJ30bYTQmmkAuEfG01QvvBRGQ==} dependencies: - '@volar/code-gen': 0.37.8 - '@volar/source-map': 0.37.8 - '@volar/vue-code-gen': 0.37.8 + '@volar/code-gen': 0.38.2 + '@volar/source-map': 0.38.2 + '@volar/vue-code-gen': 0.38.2 '@vue/compiler-sfc': 3.2.37 '@vue/reactivity': 3.2.37 dev: true @@ -3448,8 +3516,8 @@ packages: '@types/node': 17.0.40 dev: true - /@vueuse/core/8.6.0_vue@3.2.37: - resolution: {integrity: sha512-VirzExCm/N+QdrEWT7J4uSrvJ5hquKIAU9alQ37kUvIJk9XxCLxmfRnmekYc1kz2+6BnoyuKYXVmrMV351CB4w==} + /@vueuse/core/8.7.5_vue@3.2.37: + resolution: {integrity: sha512-tqgzeZGoZcXzoit4kOGLWJibDMLp0vdm6ZO41SSUQhkhtrPhAg6dbIEPiahhUu6sZAmSYvVrZgEr5aKD51nrLA==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -3459,18 +3527,19 @@ packages: vue: optional: true dependencies: - '@vueuse/metadata': 8.6.0 - '@vueuse/shared': 8.6.0_vue@3.2.37 + '@types/web-bluetooth': 0.0.14 + '@vueuse/metadata': 8.7.5 + '@vueuse/shared': 8.7.5_vue@3.2.37 vue: 3.2.37 vue-demi: 0.13.1_vue@3.2.37 dev: false - /@vueuse/metadata/8.6.0: - resolution: {integrity: sha512-F+CKPvaExsm7QgRr8y+ZNJFwXasn89rs5wth/HeX9lJ1q8XEt+HJ16Q5Sxh4rfG5YSKXrStveVge8TKvPjMjFA==} + /@vueuse/metadata/8.7.5: + resolution: {integrity: sha512-emJZKRQSaEnVqmlu39NpNp8iaW+bPC2kWykWoWOZMSlO/0QVEmO/rt8A5VhOEJTKLX3vwTevqbiRy9WJRwVOQg==} dev: false - /@vueuse/shared/8.6.0_vue@3.2.37: - resolution: {integrity: sha512-Y/IVywZo7IfEoSSEtCYpkVEmPV7pU35mEIxV7PbD/D3ly18B3mEsBaPbtDkNM/QP3zAZ5mn4nEkOfddX4uwuIA==} + /@vueuse/shared/8.7.5_vue@3.2.37: + resolution: {integrity: sha512-THXPvMBFmg6Gf6AwRn/EdTh2mhqwjGsB2Yfp374LNQSQVKRHtnJ0I42bsZTn7nuEliBxqUrGQm/lN6qUHmhJLw==} peerDependencies: '@vue/composition-api': ^1.1.0 vue: ^2.6.0 || ^3.2.0 @@ -3606,11 +3675,6 @@ packages: dependencies: ansi-split: 1.0.1 - /ansi-escapes/3.2.0: - resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} - engines: {node: '>=4'} - dev: true - /ansi-escapes/4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -3633,11 +3697,6 @@ packages: resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} engines: {node: '>=4'} - /ansi-regex/4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} - dev: true - /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -3872,8 +3931,8 @@ packages: async-done: 1.3.2 dev: false - /async-validator/4.1.1: - resolution: {integrity: sha512-p4DO/JXwjs8klJyJL8Q2oM4ks5fUTze/h5k10oPPKMiLe1fj3G1QMzPHNmN1Py4ycOk7WlO2DcGXv1qiESJCZA==} + /async-validator/4.2.5: + resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} dev: false /async/3.2.4: @@ -4237,11 +4296,6 @@ packages: unset-value: 1.0.0 dev: false - /cachedir/2.2.0: - resolution: {integrity: sha512-VvxA0xhNqIIfg0V9AmJkDg91DaJwryutH5rVEZAhcNi4iJFj9f+QxmAjgK1LT9I8OgToX27fypX6/MeCXVbBjQ==} - engines: {node: '>=6'} - dev: true - /call-bind/1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: @@ -4344,10 +4398,6 @@ packages: resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} dev: false - /chardet/0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true - /check-error/1.0.2: resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} dev: true @@ -4435,13 +4485,6 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /cli-cursor/2.1.0: - resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} - engines: {node: '>=4'} - dependencies: - restore-cursor: 2.0.0 - dev: true - /cli-cursor/3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} @@ -4465,10 +4508,6 @@ packages: string-width: 5.1.2 dev: true - /cli-width/2.2.1: - resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} - dev: true - /clipboard-copy/4.0.1: resolution: {integrity: sha512-wOlqdqziE/NNTUJsfSgXmBMIrYmfd5V0HCGsR8uAKHcg+h9NENWINcfRjtWGU77wDHC8B8ijV4hMTGYbrKovng==} dev: false @@ -4588,30 +4627,6 @@ packages: engines: {node: ^12.20.0 || >=14} dev: true - /commitizen/4.2.4: - resolution: {integrity: sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==} - engines: {node: '>= 10'} - hasBin: true - dependencies: - cachedir: 2.2.0 - cz-conventional-changelog: 3.2.0 - dedent: 0.7.0 - detect-indent: 6.0.0 - find-node-modules: 2.1.3 - find-root: 1.1.0 - fs-extra: 8.1.0 - glob: 7.1.4 - inquirer: 6.5.2 - is-utf8: 0.2.1 - lodash: 4.17.21 - minimist: 1.2.5 - strip-bom: 4.0.0 - strip-json-comments: 3.0.1 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - dev: true - /common-tags/1.8.2: resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} engines: {node: '>=4.0.0'} @@ -4651,15 +4666,15 @@ packages: typedarray: 0.0.6 dev: false - /concurrently/7.2.1: - resolution: {integrity: sha512-7cab/QyqipqghrVr9qZmoWbidu0nHsmxrpNqQ7r/67vfl1DWJElexehQnTH1p+87tDkihaAjM79xTZyBQh7HLw==} + /concurrently/7.2.2: + resolution: {integrity: sha512-DcQkI0ruil5BA/g7Xy3EWySGrFJovF5RYAYxwGvv9Jf9q9B1v3jPFP2tl6axExNf1qgF30kjoNYrangZ0ey4Aw==} engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0} hasBin: true dependencies: chalk: 4.1.2 date-fns: 2.28.0 lodash: 4.17.21 - rxjs: 6.6.7 + rxjs: 7.5.5 shell-quote: 1.7.3 spawn-command: 0.0.2-1 supports-color: 8.1.1 @@ -4693,10 +4708,6 @@ packages: q: 1.5.1 dev: true - /conventional-commit-types/3.0.0: - resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==} - dev: true - /conventional-commits-parser/3.2.4: resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} engines: {node: '>=10'} @@ -4742,7 +4753,7 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: false - /cosmiconfig-typescript-loader/2.0.1_fvkldoeufjjq5mlpfdkzhuqzdy: + /cosmiconfig-typescript-loader/2.0.1_7oqjshy4scgohh2k2lzivplbau: resolution: {integrity: sha512-B9s6sX/omXq7I6gC6+YgLmrBFMJhPWew7ty/X5Tuwtd2zOSgWaUdXjkuVwbe3qqcdETo60+1nSVMekq//LIXVA==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -4751,8 +4762,8 @@ packages: dependencies: '@types/node': 17.0.40 cosmiconfig: 7.0.1 - ts-node: 10.8.1_fvkldoeufjjq5mlpfdkzhuqzdy - typescript: 4.7.3 + ts-node: 10.8.1_7oqjshy4scgohh2k2lzivplbau + typescript: 4.7.4 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -4844,25 +4855,13 @@ packages: /csstype/2.6.20: resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} - /cz-conventional-changelog/3.2.0: - resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==} - engines: {node: '>= 10'} - dependencies: - chalk: 2.4.2 - commitizen: 4.2.4 - conventional-commit-types: 3.0.0 - lodash.map: 4.6.0 - longest: 2.0.1 - word-wrap: 1.2.3 - optionalDependencies: - '@commitlint/load': 17.0.0 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + /cz-git/1.3.8: + resolution: {integrity: sha512-hFyp/M6r870uMzX/6FjsqeZ5kbi++VR3j9TRMyUhwVurRhZ237AEeoV3KxJp5ySzTMMfSuliVHcmdpZOdJx9qA==} dev: true - /cz-git/1.3.4: - resolution: {integrity: sha512-px5btT/cux7LYD4v7jB7wXtVV2l5txTnO1R9rBeevsBhgJv+kHkIPcWzRx+Fr5HR/45l/jf1sIVIYRrhPKWo6A==} + /czg/1.3.8: + resolution: {integrity: sha512-Lr95D0zVCMmqhJxzq3f261r3meRHOf0xgFvfQfuPbA6Rvtfugwn26xQkATCut3S3kLOJBFaL9ISKVn4a8EGaEw==} + hasBin: true dev: true /d/1.0.1: @@ -4959,10 +4958,6 @@ packages: engines: {node: '>=0.10'} dev: false - /dedent/0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - dev: true - /deep-eql/3.0.1: resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} engines: {node: '>=0.12'} @@ -5041,11 +5036,7 @@ packages: /detect-file/1.0.0: resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} engines: {node: '>=0.10.0'} - - /detect-indent/6.0.0: - resolution: {integrity: sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA==} - engines: {node: '>=8'} - dev: true + dev: false /detect-indent/6.1.0: resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} @@ -5055,8 +5046,8 @@ packages: resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} engines: {node: '>=8'} - /devtools-protocol/0.0.1001819: - resolution: {integrity: sha512-G6OsIFnv/rDyxSqBa2lDLR6thp9oJioLsb2Gl+LbQlyoA9/OBAkrTU9jiCcQ8Pnh7z4d6slDiLaogR5hzgJLmQ==} + /devtools-protocol/0.0.1011705: + resolution: {integrity: sha512-OKvTvu9n3swmgYshvsyVHYX0+aPzCoYUnyXUacfQMmFtBtBKewV/gT4I9jkAbpTqtTi2E4S9MXLlvzBDUlqg0Q==} dev: true /diff/4.0.2: @@ -5145,19 +5136,19 @@ packages: /electron-to-chromium/1.4.147: resolution: {integrity: sha512-czclPqxLMPqPMkahKcske4TaS5lcznsc26ByBlEFDU8grTBVK9C5W6K9I6oEEhm4Ai4jTihGnys90xY1yjXcRg==} - /element-plus/2.2.5_vue@3.2.37: - resolution: {integrity: sha512-Kl0yn/PQca5YQo3M3NPBP4Xl71NQuMtDx5zNXZGVyl5FjdMujXiFB9SXKYGDUCgFU3d/Rl14vB4Fpmcl2Iz+Hw==} + /element-plus/2.2.6_vue@3.2.37: + resolution: {integrity: sha512-N9G4yWSxDt1YtreCJgt7UaSsXKuR4Fzb3ThzlBjbGDYDhcHijsrLL3qkdLZgeoSB13LRyr9pgP1ljNXdaYGa+g==} peerDependencies: vue: ^3.2.0 dependencies: '@ctrl/tinycolor': 3.4.1 - '@element-plus/icons-vue': 2.0.5_vue@3.2.37 - '@floating-ui/dom': 0.5.3 + '@element-plus/icons-vue': 2.0.6_vue@3.2.37 + '@floating-ui/dom': 0.5.4 '@popperjs/core': /@sxzz/popperjs-es/2.11.7 '@types/lodash': 4.14.182 '@types/lodash-es': 4.17.6 - '@vueuse/core': 8.6.0_vue@3.2.37 - async-validator: 4.1.1 + '@vueuse/core': 8.7.5_vue@3.2.37 + async-validator: 4.2.5 dayjs: 1.11.3 escape-html: 1.0.3 lodash: 4.17.21 @@ -5275,15 +5266,6 @@ packages: es6-symbol: 3.1.3 dev: false - /esbuild-android-64/0.14.38: - resolution: {integrity: sha512-aRFxR3scRKkbmNuGAK+Gee3+yFxkTJO/cx83Dkyzo4CnQl/2zVSurtG6+G86EQIZ+w+VYngVyK7P3HyTBKu3nw==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - /esbuild-android-64/0.14.42: resolution: {integrity: sha512-P4Y36VUtRhK/zivqGVMqhptSrFILAGlYp0Z8r9UQqHJ3iWztRCNWnlBzD9HRx0DbueXikzOiwyOri+ojAFfW6A==} engines: {node: '>=12'} @@ -5293,8 +5275,8 @@ packages: dev: true optional: true - /esbuild-android-64/0.14.43: - resolution: {integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==} + /esbuild-android-64/0.14.47: + resolution: {integrity: sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -5309,15 +5291,6 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.14.38: - resolution: {integrity: sha512-L2NgQRWuHFI89IIZIlpAcINy9FvBk6xFVZ7xGdOwIm8VyhX1vNCEqUJO3DPSSy945Gzdg98cxtNt8Grv1CsyhA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - /esbuild-android-arm64/0.14.42: resolution: {integrity: sha512-0cOqCubq+RWScPqvtQdjXG3Czb3AWI2CaKw3HeXry2eoA2rrPr85HF7IpdU26UWdBXgPYtlTN1LUiuXbboROhg==} engines: {node: '>=12'} @@ -5327,8 +5300,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.14.43: - resolution: {integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==} + /esbuild-android-arm64/0.14.47: + resolution: {integrity: sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -5343,15 +5316,6 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.14.38: - resolution: {integrity: sha512-5JJvgXkX87Pd1Og0u/NJuO7TSqAikAcQQ74gyJ87bqWRVeouky84ICoV4sN6VV53aTW+NE87qLdGY4QA2S7KNA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /esbuild-darwin-64/0.14.42: resolution: {integrity: sha512-ipiBdCA3ZjYgRfRLdQwP82rTiv/YVMtW36hTvAN5ZKAIfxBOyPXY7Cejp3bMXWgzKD8B6O+zoMzh01GZsCuEIA==} engines: {node: '>=12'} @@ -5361,8 +5325,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.14.43: - resolution: {integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==} + /esbuild-darwin-64/0.14.47: + resolution: {integrity: sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -5377,15 +5341,6 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.14.38: - resolution: {integrity: sha512-eqF+OejMI3mC5Dlo9Kdq/Ilbki9sQBw3QlHW3wjLmsLh+quNfHmGMp3Ly1eWm981iGBMdbtSS9+LRvR2T8B3eQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /esbuild-darwin-arm64/0.14.42: resolution: {integrity: sha512-bU2tHRqTPOaoH/4m0zYHbFWpiYDmaA0gt90/3BMEFaM0PqVK/a6MA2V/ypV5PO0v8QxN6gH5hBPY4YJ2lopXgA==} engines: {node: '>=12'} @@ -5395,8 +5350,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.14.43: - resolution: {integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==} + /esbuild-darwin-arm64/0.14.47: + resolution: {integrity: sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -5411,15 +5366,6 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.14.38: - resolution: {integrity: sha512-epnPbhZUt93xV5cgeY36ZxPXDsQeO55DppzsIgWM8vgiG/Rz+qYDLmh5ts3e+Ln1wA9dQ+nZmVHw+RjaW3I5Ig==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /esbuild-freebsd-64/0.14.42: resolution: {integrity: sha512-75h1+22Ivy07+QvxHyhVqOdekupiTZVLN1PMwCDonAqyXd8TVNJfIRFrdL8QmSJrOJJ5h8H1I9ETyl2L8LQDaw==} engines: {node: '>=12'} @@ -5429,8 +5375,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.14.43: - resolution: {integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==} + /esbuild-freebsd-64/0.14.47: + resolution: {integrity: sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -5445,15 +5391,6 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.14.38: - resolution: {integrity: sha512-/9icXUYJWherhk+y5fjPI5yNUdFPtXHQlwP7/K/zg8t8lQdHVj20SqU9/udQmeUo5pDFHMYzcEFfJqgOVeKNNQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /esbuild-freebsd-arm64/0.14.42: resolution: {integrity: sha512-W6Jebeu5TTDQMJUJVarEzRU9LlKpNkPBbjqSu+GUPTHDCly5zZEQq9uHkmHHl7OKm+mQ2zFySN83nmfCeZCyNA==} engines: {node: '>=12'} @@ -5463,8 +5400,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.14.43: - resolution: {integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==} + /esbuild-freebsd-arm64/0.14.47: + resolution: {integrity: sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -5479,15 +5416,6 @@ packages: dev: true optional: true - /esbuild-linux-32/0.14.38: - resolution: {integrity: sha512-QfgfeNHRFvr2XeHFzP8kOZVnal3QvST3A0cgq32ZrHjSMFTdgXhMhmWdKzRXP/PKcfv3e2OW9tT9PpcjNvaq6g==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-32/0.14.42: resolution: {integrity: sha512-Ooy/Bj+mJ1z4jlWcK5Dl6SlPlCgQB9zg1UrTCeY8XagvuWZ4qGPyYEWGkT94HUsRi2hKsXvcs6ThTOjBaJSMfg==} engines: {node: '>=12'} @@ -5497,8 +5425,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.14.43: - resolution: {integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==} + /esbuild-linux-32/0.14.47: + resolution: {integrity: sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -5513,15 +5441,6 @@ packages: dev: true optional: true - /esbuild-linux-64/0.14.38: - resolution: {integrity: sha512-uuZHNmqcs+Bj1qiW9k/HZU3FtIHmYiuxZ/6Aa+/KHb/pFKr7R3aVqvxlAudYI9Fw3St0VCPfv7QBpUITSmBR1Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-64/0.14.42: resolution: {integrity: sha512-2L0HbzQfbTuemUWfVqNIjOfaTRt9zsvjnme6lnr7/MO9toz/MJ5tZhjqrG6uDWDxhsaHI2/nsDgrv8uEEN2eoA==} engines: {node: '>=12'} @@ -5531,8 +5450,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.14.43: - resolution: {integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==} + /esbuild-linux-64/0.14.47: + resolution: {integrity: sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -5547,15 +5466,6 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.14.38: - resolution: {integrity: sha512-FiFvQe8J3VKTDXG01JbvoVRXQ0x6UZwyrU4IaLBZeq39Bsbatd94Fuc3F1RGqPF5RbIWW7RvkVQjn79ejzysnA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-arm/0.14.42: resolution: {integrity: sha512-STq69yzCMhdRaWnh29UYrLSr/qaWMm/KqwaRF1pMEK7kDiagaXhSL1zQGXbYv94GuGY/zAwzK98+6idCMUOOCg==} engines: {node: '>=12'} @@ -5565,8 +5475,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.14.43: - resolution: {integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==} + /esbuild-linux-arm/0.14.47: + resolution: {integrity: sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -5581,15 +5491,6 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.14.38: - resolution: {integrity: sha512-HlMGZTEsBrXrivr64eZ/EO0NQM8H8DuSENRok9d+Jtvq8hOLzrxfsAT9U94K3KOGk2XgCmkaI2KD8hX7F97lvA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-arm64/0.14.42: resolution: {integrity: sha512-c3Ug3e9JpVr8jAcfbhirtpBauLxzYPpycjWulD71CF6ZSY26tvzmXMJYooQ2YKqDY4e/fPu5K8bm7MiXMnyxuA==} engines: {node: '>=12'} @@ -5599,8 +5500,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.14.43: - resolution: {integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==} + /esbuild-linux-arm64/0.14.47: + resolution: {integrity: sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -5615,15 +5516,6 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.14.38: - resolution: {integrity: sha512-qd1dLf2v7QBiI5wwfil9j0HG/5YMFBAmMVmdeokbNAMbcg49p25t6IlJFXAeLzogv1AvgaXRXvgFNhScYEUXGQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-mips64le/0.14.42: resolution: {integrity: sha512-QuvpHGbYlkyXWf2cGm51LBCHx6eUakjaSrRpUqhPwjh/uvNUYvLmz2LgPTTPwCqaKt0iwL+OGVL0tXA5aDbAbg==} engines: {node: '>=12'} @@ -5633,8 +5525,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.14.43: - resolution: {integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==} + /esbuild-linux-mips64le/0.14.47: + resolution: {integrity: sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -5649,15 +5541,6 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.14.38: - resolution: {integrity: sha512-mnbEm7o69gTl60jSuK+nn+pRsRHGtDPfzhrqEUXyCl7CTOCLtWN2bhK8bgsdp6J/2NyS/wHBjs1x8aBWwP2X9Q==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-ppc64le/0.14.42: resolution: {integrity: sha512-8ohIVIWDbDT+i7lCx44YCyIRrOW1MYlks9fxTo0ME2LS/fxxdoJBwHWzaDYhjvf8kNpA+MInZvyOEAGoVDrMHg==} engines: {node: '>=12'} @@ -5667,23 +5550,14 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.14.43: - resolution: {integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==} + /esbuild-linux-ppc64le/0.14.47: + resolution: {integrity: sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-riscv64/0.14.38: - resolution: {integrity: sha512-+p6YKYbuV72uikChRk14FSyNJZ4WfYkffj6Af0/Tw63/6TJX6TnIKE+6D3xtEc7DeDth1fjUOEqm+ApKFXbbVQ==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-riscv64/0.14.42: resolution: {integrity: sha512-DzDqK3TuoXktPyG1Lwx7vhaF49Onv3eR61KwQyxYo4y5UKTpL3NmuarHSIaSVlTFDDpcIajCDwz5/uwKLLgKiQ==} engines: {node: '>=12'} @@ -5693,23 +5567,14 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.14.43: - resolution: {integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==} + /esbuild-linux-riscv64/0.14.47: + resolution: {integrity: sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true optional: true - /esbuild-linux-s390x/0.14.38: - resolution: {integrity: sha512-0zUsiDkGJiMHxBQ7JDU8jbaanUY975CdOW1YDrurjrM0vWHfjv9tLQsW9GSyEb/heSK1L5gaweRjzfUVBFoybQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-s390x/0.14.42: resolution: {integrity: sha512-YFRhPCxl8nb//Wn6SiS5pmtplBi4z9yC2gLrYoYI/tvwuB1jldir9r7JwAGy1Ck4D7sE7wBN9GFtUUX/DLdcEQ==} engines: {node: '>=12'} @@ -5719,8 +5584,8 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.14.43: - resolution: {integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==} + /esbuild-linux-s390x/0.14.47: + resolution: {integrity: sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -5735,15 +5600,6 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.14.38: - resolution: {integrity: sha512-cljBAApVwkpnJZfnRVThpRBGzCi+a+V9Ofb1fVkKhtrPLDYlHLrSYGtmnoTVWDQdU516qYI8+wOgcGZ4XIZh0Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - /esbuild-netbsd-64/0.14.42: resolution: {integrity: sha512-QYSD2k+oT9dqB/4eEM9c+7KyNYsIPgzYOSrmfNGDIyJrbT1d+CFVKvnKahDKNJLfOYj8N4MgyFaU9/Ytc6w5Vw==} engines: {node: '>=12'} @@ -5753,8 +5609,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.14.43: - resolution: {integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==} + /esbuild-netbsd-64/0.14.47: + resolution: {integrity: sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -5769,15 +5625,6 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.14.38: - resolution: {integrity: sha512-CDswYr2PWPGEPpLDUO50mL3WO/07EMjnZDNKpmaxUPsrW+kVM3LoAqr/CE8UbzugpEiflYqJsGPLirThRB18IQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - /esbuild-openbsd-64/0.14.42: resolution: {integrity: sha512-M2meNVIKWsm2HMY7+TU9AxM7ZVwI9havdsw6m/6EzdXysyCFFSoaTQ/Jg03izjCsK17FsVRHqRe26Llj6x0MNA==} engines: {node: '>=12'} @@ -5787,8 +5634,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.14.43: - resolution: {integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==} + /esbuild-openbsd-64/0.14.47: + resolution: {integrity: sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -5803,15 +5650,6 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.14.38: - resolution: {integrity: sha512-2mfIoYW58gKcC3bck0j7lD3RZkqYA7MmujFYmSn9l6TiIcAMpuEvqksO+ntBgbLep/eyjpgdplF7b+4T9VJGOA==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - /esbuild-sunos-64/0.14.42: resolution: {integrity: sha512-uXV8TAZEw36DkgW8Ak3MpSJs1ofBb3Smkc/6pZ29sCAN1KzCAQzsje4sUwugf+FVicrHvlamCOlFZIXgct+iqQ==} engines: {node: '>=12'} @@ -5821,8 +5659,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.14.43: - resolution: {integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==} + /esbuild-sunos-64/0.14.47: + resolution: {integrity: sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -5837,15 +5675,6 @@ packages: dev: true optional: true - /esbuild-windows-32/0.14.38: - resolution: {integrity: sha512-L2BmEeFZATAvU+FJzJiRLFUP+d9RHN+QXpgaOrs2klshoAm1AE6Us4X6fS9k33Uy5SzScn2TpcgecbqJza1Hjw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild-windows-32/0.14.42: resolution: {integrity: sha512-4iw/8qWmRICWi9ZOnJJf9sYt6wmtp3hsN4TdI5NqgjfOkBVMxNdM9Vt3626G1Rda9ya2Q0hjQRD9W1o+m6Lz6g==} engines: {node: '>=12'} @@ -5855,8 +5684,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.14.43: - resolution: {integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==} + /esbuild-windows-32/0.14.47: + resolution: {integrity: sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -5871,15 +5700,6 @@ packages: dev: true optional: true - /esbuild-windows-64/0.14.38: - resolution: {integrity: sha512-Khy4wVmebnzue8aeSXLC+6clo/hRYeNIm0DyikoEqX+3w3rcvrhzpoix0S+MF9vzh6JFskkIGD7Zx47ODJNyCw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild-windows-64/0.14.42: resolution: {integrity: sha512-j3cdK+Y3+a5H0wHKmLGTJcq0+/2mMBHPWkItR3vytp/aUGD/ua/t2BLdfBIzbNN9nLCRL9sywCRpOpFMx3CxzA==} engines: {node: '>=12'} @@ -5889,8 +5709,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.14.43: - resolution: {integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==} + /esbuild-windows-64/0.14.47: + resolution: {integrity: sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -5905,15 +5725,6 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.14.38: - resolution: {integrity: sha512-k3FGCNmHBkqdJXuJszdWciAH77PukEyDsdIryEHn9cKLQFxzhT39dSumeTuggaQcXY57UlmLGIkklWZo2qzHpw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild-windows-arm64/0.14.42: resolution: {integrity: sha512-+lRAARnF+hf8J0mN27ujO+VbhPbDqJ8rCcJKye4y7YZLV6C4n3pTRThAb388k/zqF5uM0lS5O201u0OqoWSicw==} engines: {node: '>=12'} @@ -5923,8 +5734,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.14.43: - resolution: {integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==} + /esbuild-windows-arm64/0.14.47: + resolution: {integrity: sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -5955,34 +5766,6 @@ packages: esbuild-windows-arm64: 0.13.15 dev: true - /esbuild/0.14.38: - resolution: {integrity: sha512-12fzJ0fsm7gVZX1YQ1InkOE5f9Tl7cgf6JPYXRJtPIoE0zkWAbHdPHVPPaLi9tYAcEBqheGzqLn/3RdTOyBfcA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - esbuild-android-64: 0.14.38 - esbuild-android-arm64: 0.14.38 - esbuild-darwin-64: 0.14.38 - esbuild-darwin-arm64: 0.14.38 - esbuild-freebsd-64: 0.14.38 - esbuild-freebsd-arm64: 0.14.38 - esbuild-linux-32: 0.14.38 - esbuild-linux-64: 0.14.38 - esbuild-linux-arm: 0.14.38 - esbuild-linux-arm64: 0.14.38 - esbuild-linux-mips64le: 0.14.38 - esbuild-linux-ppc64le: 0.14.38 - esbuild-linux-riscv64: 0.14.38 - esbuild-linux-s390x: 0.14.38 - esbuild-netbsd-64: 0.14.38 - esbuild-openbsd-64: 0.14.38 - esbuild-sunos-64: 0.14.38 - esbuild-windows-32: 0.14.38 - esbuild-windows-64: 0.14.38 - esbuild-windows-arm64: 0.14.38 - dev: true - /esbuild/0.14.42: resolution: {integrity: sha512-V0uPZotCEHokJdNqyozH6qsaQXqmZEOiZWrXnds/zaH/0SyrIayRXWRB98CENO73MIZ9T3HBIOsmds5twWtmgw==} engines: {node: '>=12'} @@ -6011,32 +5794,32 @@ packages: esbuild-windows-arm64: 0.14.42 dev: true - /esbuild/0.14.43: - resolution: {integrity: sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==} + /esbuild/0.14.47: + resolution: {integrity: sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - esbuild-android-64: 0.14.43 - esbuild-android-arm64: 0.14.43 - esbuild-darwin-64: 0.14.43 - esbuild-darwin-arm64: 0.14.43 - esbuild-freebsd-64: 0.14.43 - esbuild-freebsd-arm64: 0.14.43 - esbuild-linux-32: 0.14.43 - esbuild-linux-64: 0.14.43 - esbuild-linux-arm: 0.14.43 - esbuild-linux-arm64: 0.14.43 - esbuild-linux-mips64le: 0.14.43 - esbuild-linux-ppc64le: 0.14.43 - esbuild-linux-riscv64: 0.14.43 - esbuild-linux-s390x: 0.14.43 - esbuild-netbsd-64: 0.14.43 - esbuild-openbsd-64: 0.14.43 - esbuild-sunos-64: 0.14.43 - esbuild-windows-32: 0.14.43 - esbuild-windows-64: 0.14.43 - esbuild-windows-arm64: 0.14.43 + esbuild-android-64: 0.14.47 + esbuild-android-arm64: 0.14.47 + esbuild-darwin-64: 0.14.47 + esbuild-darwin-arm64: 0.14.47 + esbuild-freebsd-64: 0.14.47 + esbuild-freebsd-arm64: 0.14.47 + esbuild-linux-32: 0.14.47 + esbuild-linux-64: 0.14.47 + esbuild-linux-arm: 0.14.47 + esbuild-linux-arm64: 0.14.47 + esbuild-linux-mips64le: 0.14.47 + esbuild-linux-ppc64le: 0.14.47 + esbuild-linux-riscv64: 0.14.47 + esbuild-linux-s390x: 0.14.47 + esbuild-netbsd-64: 0.14.47 + esbuild-openbsd-64: 0.14.47 + esbuild-sunos-64: 0.14.47 + esbuild-windows-32: 0.14.47 + esbuild-windows-64: 0.14.47 + esbuild-windows-arm64: 0.14.47 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -6066,13 +5849,13 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier/8.5.0_eslint@8.17.0: + /eslint-config-prettier/8.5.0_eslint@8.18.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.17.0 + eslint: 8.18.0 dev: false /eslint-define-config/1.5.1: @@ -6088,7 +5871,7 @@ packages: - supports-color dev: false - /eslint-module-utils/2.7.3_cfsupm63rr3qvqifljk6nmy67u: + /eslint-module-utils/2.7.3_s24jsywy72ks6h3c4f2dacxdsa: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -6106,7 +5889,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -6114,18 +5897,18 @@ packages: - supports-color dev: false - /eslint-plugin-eslint-comments/3.2.0_eslint@8.17.0: + /eslint-plugin-eslint-comments/3.2.0_eslint@8.18.0: resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: eslint: '>=4.19.1' dependencies: escape-string-regexp: 1.0.5 - eslint: 8.17.0 + eslint: 8.18.0 ignore: 5.2.0 dev: false - /eslint-plugin-import/2.26.0_wyrfqmvemfacbroyi3ypviy7f4: + /eslint-plugin-import/2.26.0_wno36sjfnklvt2ocf7qbhb2izy: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -6135,14 +5918,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_ud6rd4xtew5bv4yhvkvu24pzm4 + '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.17.0 + eslint: 8.18.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_cfsupm63rr3qvqifljk6nmy67u + eslint-module-utils: 2.7.3_s24jsywy72ks6h3c4f2dacxdsa has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 @@ -6156,33 +5939,33 @@ packages: - supports-color dev: false - /eslint-plugin-jsonc/2.3.0_eslint@8.17.0: + /eslint-plugin-jsonc/2.3.0_eslint@8.18.0: resolution: {integrity: sha512-QqHj7Chw8vsALsCOhFxecRIepxpbcpmMon9yA1+GaYk1Am0GanHAwnTkeVX+/ysAb4QTkeGMZ+ZPK4TKrZ/VSw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - eslint: 8.17.0 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-utils: 3.0.0_eslint@8.18.0 jsonc-eslint-parser: 2.1.0 natural-compare: 1.4.0 dev: false - /eslint-plugin-markdown/2.2.1_eslint@8.17.0: + /eslint-plugin-markdown/2.2.1_eslint@8.18.0: resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - eslint: 8.17.0 + eslint: 8.18.0 mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color dev: false - /eslint-plugin-prettier/4.0.0_nguwan5pqsajixjz57ffz7bkde: - resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} - engines: {node: '>=6.0.0'} + /eslint-plugin-prettier/4.1.0_xu6ewijrtliw5q5lksq5uixwby: + resolution: {integrity: sha512-A3AXIEfTnq3D5qDFjWJdQ9c4BLhw/TqhSR+6+SVaoPJBAWciFEuJiNQh275OnjRrAi7yssZzuWBRw66VG2g6UA==} + engines: {node: '>=12.0.0'} peerDependencies: eslint: '>=7.28.0' eslint-config-prettier: '*' @@ -6191,13 +5974,13 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.17.0 - eslint-config-prettier: 8.5.0_eslint@8.17.0 - prettier: 2.7.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + prettier: 2.7.1 prettier-linter-helpers: 1.0.0 dev: false - /eslint-plugin-unicorn/42.0.0_eslint@8.17.0: + /eslint-plugin-unicorn/42.0.0_eslint@8.18.0: resolution: {integrity: sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==} engines: {node: '>=12'} peerDependencies: @@ -6206,8 +5989,8 @@ packages: '@babel/helper-validator-identifier': 7.16.7 ci-info: 3.3.1 clean-regexp: 1.0.0 - eslint: 8.17.0 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-utils: 3.0.0_eslint@8.18.0 esquery: 1.4.0 indent-string: 4.0.0 is-builtin-module: 3.1.0 @@ -6220,19 +6003,19 @@ packages: strip-indent: 3.0.0 dev: false - /eslint-plugin-vue/9.1.1_eslint@8.17.0: + /eslint-plugin-vue/9.1.1_eslint@8.18.0: resolution: {integrity: sha512-W9n5PB1X2jzC7CK6riG0oAcxjmKrjTF6+keL1rni8n57DZeilx/Fulz+IRJK3lYseLNAygN0I62L7DvioW40Tw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.17.0 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint: 8.18.0 + eslint-utils: 3.0.0_eslint@8.18.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.10 semver: 7.3.7 - vue-eslint-parser: 9.0.2_eslint@8.17.0 + vue-eslint-parser: 9.0.2_eslint@8.18.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -6253,13 +6036,13 @@ packages: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-utils/3.0.0_eslint@8.17.0: + /eslint-utils/3.0.0_eslint@8.18.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.17.0 + eslint: 8.18.0 eslint-visitor-keys: 2.1.0 /eslint-visitor-keys/2.1.0: @@ -6270,8 +6053,8 @@ packages: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint/8.17.0: - resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==} + /eslint/8.18.0: + resolution: {integrity: sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -6284,7 +6067,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.17.0 + eslint-utils: 3.0.0_eslint@8.18.0 eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 @@ -6427,6 +6210,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: homedir-polyfill: 1.0.3 + dev: false /expect-type/0.13.0: resolution: {integrity: sha512-CclevazQfrqo8EvbLPmP7osnb1SZXkw47XPPvUUpeMz4HuGzDltE7CaIt3RLyT9UQrwVK/LDn+KVcC0hcgjgDg==} @@ -6455,15 +6239,6 @@ packages: /extend/3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - /external-editor/3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - dev: true - /extglob/2.0.4: resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} engines: {node: '>=0.10.0'} @@ -6549,13 +6324,6 @@ packages: pend: 1.2.0 dev: true - /figures/2.0.0: - resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} - engines: {node: '>=4'} - dependencies: - escape-string-regexp: 1.0.5 - dev: true - /file-entry-cache/6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} @@ -6590,26 +6358,15 @@ packages: dependencies: to-regex-range: 5.0.1 - /find-node-modules/2.1.3: - resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} - dependencies: - findup-sync: 4.0.0 - merge: 2.1.1 - dev: true - - /find-packages/9.0.3: - resolution: {integrity: sha512-GkH9OzuxG4s4IkHKukmrKu7pAL2NGGI9TCCskRpUCiWjLfiSoezWJPmqMV8xafH9pxw73gkmWAG2pZqsVSWZ9Q==} - engines: {node: '>=14.19'} + /find-packages/9.0.6: + resolution: {integrity: sha512-D4IhAYrTKeg/FgcjVCpgCYrnTCKOzyNfqktYETB3ttk21kmjxSSK+bTqoAOIyKy88o0cmMfbohtAZt69mf848A==} + engines: {node: '>=14.6'} dependencies: - '@pnpm/read-project-manifest': 3.0.3 - '@pnpm/types': 8.1.0 + '@pnpm/read-project-manifest': 3.0.6 + '@pnpm/types': 8.4.0 fast-glob: 3.2.11 p-filter: 2.1.0 - /find-root/1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - dev: true - /find-up/1.1.2: resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} engines: {node: '>=0.10.0'} @@ -6664,16 +6421,6 @@ packages: - supports-color dev: false - /findup-sync/4.0.0: - resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==} - engines: {node: '>= 8'} - dependencies: - detect-file: 1.0.0 - is-glob: 4.0.3 - micromatch: 4.0.5 - resolve-dir: 1.0.1 - dev: true - /fined/1.2.0: resolution: {integrity: sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==} engines: {node: '>= 0.10'} @@ -6785,15 +6532,6 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra/8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} - dependencies: - graceful-fs: 4.2.10 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: true - /fs-extra/9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -6910,12 +6648,8 @@ packages: call-bind: 1.0.2 get-intrinsic: 1.1.1 - /get-tsconfig/3.0.1: - resolution: {integrity: sha512-+m30eQjbcf3xMNdnacXH5IDAKUMbI7Mhbf3e1BHif1FzBlUhBzBlmOVc7kL4+kB035l8OCyBdI3dNXZ3of9HqA==} - dev: true - - /get-tsconfig/4.0.2: - resolution: {integrity: sha512-mId66O9RChjqWtUrq793OhYTJGUM1InYWw9wLQ4APAazEbN/BAAAcR+/X7dPBNy6om1vdGFTP5RGHste86ZOqQ==} + /get-tsconfig/4.0.7: + resolution: {integrity: sha512-hI0ikvRti9TmxszXtfRaVxSU0yQ2HJK03MU14dG/exX/RrELbMTYJW0xOzGR6c2FsddZ3eZHZxDotEIPOw4D+A==} dev: true /get-value/2.0.6: @@ -6996,17 +6730,6 @@ packages: - supports-color dev: false - /glob/7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - /glob/7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -7031,6 +6754,7 @@ packages: global-prefix: 1.0.2 is-windows: 1.0.2 resolve-dir: 1.0.1 + dev: false /global-prefix/1.0.2: resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} @@ -7041,6 +6765,7 @@ packages: ini: 1.3.8 is-windows: 1.0.2 which: 1.3.1 + dev: false /globals/11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} @@ -7260,6 +6985,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: parse-passwd: 1.0.0 + dev: false /hookable/5.1.1: resolution: {integrity: sha512-7qam9XBFb+DijNBthaL1k/7lHU2TEMZkWSyuqmU3sCQze1wFm5w9AlEx30PD7a+QVAjOy6Ec2goFwe1YVyk2uA==} @@ -7387,25 +7113,6 @@ packages: /ini/1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - /inquirer/6.5.2: - resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} - engines: {node: '>=6.0.0'} - dependencies: - ansi-escapes: 3.2.0 - chalk: 2.4.2 - cli-cursor: 2.1.0 - cli-width: 2.2.1 - external-editor: 3.1.0 - figures: 2.0.0 - lodash: 4.17.21 - mute-stream: 0.0.7 - run-async: 2.4.1 - rxjs: 6.6.7 - string-width: 2.1.1 - strip-ansi: 5.2.0 - through: 2.3.8 - dev: true - /internal-slot/1.0.3: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} @@ -7572,11 +7279,6 @@ packages: number-is-nan: 1.0.1 dev: false - /is-fullwidth-code-point/2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - dev: true - /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -7745,6 +7447,7 @@ packages: /is-utf8/0.2.1: resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + dev: false /is-valid-glob/1.0.0: resolution: {integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==} @@ -7959,12 +7662,6 @@ packages: /jsonc-parser/3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} - /jsonfile/4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - optionalDependencies: - graceful-fs: 4.2.10 - dev: true - /jsonfile/6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: @@ -8114,7 +7811,7 @@ packages: is-plain-object: 2.0.4 object.map: 1.0.1 rechoir: 0.6.2 - resolve: 1.22.0 + resolve: 1.22.1 transitivePeerDependencies: - supports-color dev: false @@ -8133,8 +7830,8 @@ packages: uc.micro: 1.0.6 dev: false - /lint-staged/13.0.1: - resolution: {integrity: sha512-Ykaf4QTi0a02BF7cnq7JIPGOJxH4TkNMWhSlJdH9wOekd0X+gog47Jfh/0L31DqZe5AiydLGC7LkPqpaNm+Kvg==} + /lint-staged/13.0.3: + resolution: {integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: @@ -8278,10 +7975,6 @@ packages: resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} dev: true - /lodash.map/4.6.0: - resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} - dev: true - /lodash.merge/4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} @@ -8306,11 +7999,6 @@ packages: wrap-ansi: 6.2.0 dev: true - /longest/2.0.1: - resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==} - engines: {node: '>=0.10.0'} - dev: true - /loupe/2.3.4: resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==} dependencies: @@ -8402,7 +8090,7 @@ packages: dependencies: findup-sync: 2.0.0 micromatch: 3.1.10 - resolve: 1.22.0 + resolve: 1.22.1 stack-trace: 0.0.10 transitivePeerDependencies: - supports-color @@ -8468,10 +8156,6 @@ packages: /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - /merge/2.1.1: - resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} - dev: true - /merge2/1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} @@ -8523,11 +8207,6 @@ packages: dependencies: mime-db: 1.52.0 - /mimic-fn/1.2.0: - resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} - engines: {node: '>=4'} - dev: true - /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} @@ -8565,10 +8244,6 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.5: - resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} - dev: true - /minimist/1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} @@ -8675,10 +8350,6 @@ packages: engines: {node: '>= 0.10'} dev: false - /mute-stream/0.0.7: - resolution: {integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=} - dev: true - /nan/2.16.0: resolution: {integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==} requiresBuild: true @@ -8940,17 +8611,17 @@ packages: es-abstract: 1.20.1 dev: false - /octokit/1.7.2: - resolution: {integrity: sha512-C+iwOeUMWwbvHxGbLX5rAde5WuEVGe/hNQniU1haZAPMHqUz1+ppffvkP4v/2R3dkSLJnzceUG+ir0klNmEoBA==} + /octokit/1.8.1: + resolution: {integrity: sha512-xBLKFIivbl7wnLwxzLYuDO/JDNYxdyxoSjFrl/QMrY/fwGGQYYklvKUDTUyGMU0aXPrQtJ0IZnG3BXpCkDQzWg==} dependencies: '@octokit/app': 12.0.5 '@octokit/core': 3.6.0 '@octokit/oauth-app': 3.6.2 - '@octokit/plugin-paginate-rest': 2.17.0_@octokit+core@3.6.0 - '@octokit/plugin-rest-endpoint-methods': 5.13.0_@octokit+core@3.6.0 + '@octokit/plugin-paginate-rest': 2.19.0_@octokit+core@3.6.0 + '@octokit/plugin-rest-endpoint-methods': 5.15.0_@octokit+core@3.6.0 '@octokit/plugin-retry': 3.0.9 '@octokit/plugin-throttling': 3.6.2_@octokit+core@3.6.0 - '@octokit/types': 6.34.0 + '@octokit/types': 6.37.1 transitivePeerDependencies: - encoding dev: true @@ -8969,13 +8640,6 @@ packages: dependencies: wrappy: 1.0.2 - /onetime/2.0.1: - resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} - engines: {node: '>=4'} - dependencies: - mimic-fn: 1.2.0 - dev: true - /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -9025,11 +8689,6 @@ packages: lcid: 1.0.0 dev: false - /os-tmpdir/1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true - /p-defer/1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} engines: {node: '>=4'} @@ -9161,6 +8820,7 @@ packages: /parse-passwd/1.0.0: resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} engines: {node: '>=0.10.0'} + dev: false /parse5/5.1.1: resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} @@ -9399,8 +9059,8 @@ packages: fast-diff: 1.2.0 dev: false - /prettier/2.7.0: - resolution: {integrity: sha512-nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ==} + /prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} engines: {node: '>=10.13.0'} hasBin: true @@ -9424,7 +9084,7 @@ packages: dependencies: parse-ms: 2.1.0 - /pretty-quick/3.1.3_prettier@2.7.0: + /pretty-quick/3.1.3_prettier@2.7.1: resolution: {integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==} engines: {node: '>=10.13'} hasBin: true @@ -9437,7 +9097,7 @@ packages: ignore: 5.2.0 mri: 1.2.0 multimatch: 4.0.0 - prettier: 2.7.0 + prettier: 2.7.1 dev: true /printable-characters/1.0.42: @@ -9502,14 +9162,14 @@ packages: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} - /puppeteer/14.4.0: - resolution: {integrity: sha512-hAXoJX7IAmnRBwf4VrowoRdrS8hqWZsGuQ1Dg5R0AwDK5juaxnNO/obySo9+ytyF7pp9/VsmIA9yFE1GLSouCQ==} + /puppeteer/15.1.1: + resolution: {integrity: sha512-XMysu48uIcaYad/IelRTX3yxpHkcNdhdzPegnBEz9h1uEQfLhFcMJnjyvus51Sm+OPwr2gaKQhtyuIVaVKqd0Q==} engines: {node: '>=14.1.0'} requiresBuild: true dependencies: cross-fetch: 3.1.5 debug: 4.3.4 - devtools-protocol: 0.0.1001819 + devtools-protocol: 0.0.1011705 extract-zip: 2.0.1 https-proxy-agent: 5.0.1 pkg-dir: 4.2.0 @@ -9518,7 +9178,7 @@ packages: rimraf: 3.0.2 tar-fs: 2.1.1 unbzip2-stream: 1.4.3 - ws: 8.7.0 + ws: 8.8.0 transitivePeerDependencies: - bufferutil - encoding @@ -9857,6 +9517,7 @@ packages: dependencies: expand-tilde: 2.0.2 global-modules: 1.0.0 + dev: false /resolve-from/4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} @@ -9894,13 +9555,13 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /restore-cursor/2.0.0: - resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} - engines: {node: '>=4'} + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true dependencies: - onetime: 2.0.1 - signal-exit: 3.0.7 - dev: true + is-core-module: 2.9.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} @@ -9947,7 +9608,7 @@ packages: '@babel/code-frame': 7.16.7 dev: true - /rollup-plugin-esbuild/4.9.1_2uefy6dldbldonrghlgjus4ieu: + /rollup-plugin-esbuild/4.9.1_qrpxjnto46iodaa4efitqiw3he: resolution: {integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==} engines: {node: '>=12'} peerDependencies: @@ -9957,10 +9618,10 @@ packages: '@rollup/pluginutils': 4.2.1 debug: 4.3.4 es-module-lexer: 0.9.3 - esbuild: 0.14.43 + esbuild: 0.14.47 joycon: 3.1.1 jsonc-parser: 3.0.0 - rollup: 2.75.6 + rollup: 2.75.7 transitivePeerDependencies: - supports-color dev: false @@ -10001,24 +9662,20 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 - - /run-async/2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} dev: true + /rollup/2.75.7: + resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + /run-parallel/1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 - /rxjs/6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} - dependencies: - tslib: 1.14.1 - dev: true - /rxjs/7.5.5: resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} dependencies: @@ -10054,8 +9711,8 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sass/1.52.3: - resolution: {integrity: sha512-LNNPJ9lafx+j1ArtA7GyEJm9eawXN8KlA1+5dF6IZyoONg1Tyo/g+muOsENWJH/2Q1FHbbV4UwliU0cXMa/VIA==} + /sass/1.53.0: + resolution: {integrity: sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -10301,7 +9958,7 @@ packages: dev: false /spawn-command/0.0.2-1: - resolution: {integrity: sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=} + resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==} dev: true /spdx-correct/3.1.1: @@ -10406,14 +10063,6 @@ packages: strip-ansi: 3.0.1 dev: false - /string-width/2.1.1: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} - engines: {node: '>=4'} - dependencies: - is-fullwidth-code-point: 2.0.0 - strip-ansi: 4.0.0 - dev: true - /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -10494,20 +10143,6 @@ packages: ansi-regex: 2.1.1 dev: false - /strip-ansi/4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} - dependencies: - ansi-regex: 3.0.1 - dev: true - - /strip-ansi/5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} - dependencies: - ansi-regex: 4.1.1 - dev: true - /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -10556,11 +10191,6 @@ packages: dependencies: min-indent: 1.0.1 - /strip-json-comments/3.0.1: - resolution: {integrity: sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==} - engines: {node: '>=8'} - dev: true - /strip-json-comments/3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -10676,7 +10306,7 @@ packages: dev: true /text-table/0.2.0: - resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} /through/2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} @@ -10721,13 +10351,6 @@ packages: engines: {node: '>=14.0.0'} dev: true - /tmp/0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - dependencies: - os-tmpdir: 1.0.2 - dev: true - /to-absolute-glob/2.0.2: resolution: {integrity: sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=} engines: {node: '>=0.10.0'} @@ -10833,7 +10456,7 @@ packages: '@ts-morph/common': 0.13.0 code-block-writer: 11.0.0 - /ts-node/10.8.1_fvkldoeufjjq5mlpfdkzhuqzdy: + /ts-node/10.8.1_7oqjshy4scgohh2k2lzivplbau: resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: @@ -10859,7 +10482,7 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.7.3 + typescript: 4.7.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -10875,6 +10498,7 @@ packages: /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: false /tslib/2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} @@ -10882,23 +10506,23 @@ packages: /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tsutils/3.21.0_typescript@4.7.3: + /tsutils/3.21.0_typescript@4.7.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.7.3 + typescript: 4.7.4 dev: false - /tsx/3.4.2: - resolution: {integrity: sha512-Rd1gm2noOUiVynF+VFxo4bVBNbzS6haWKWtlQ0bEfCLLEqm+GG3R98D3Rqk6foQ3NnJk6JAWOx1ragwcAPj4Lg==} + /tsx/3.6.0: + resolution: {integrity: sha512-XzqSxPmyJnI7ZtEX/CLE/CSDkqbL7dK4jwtJRIZpV0EhCxWqtb1OqJPlUc4CVS3/MFdpt8ZxLpvPFohWRTHbzw==} hasBin: true dependencies: - '@esbuild-kit/cjs-loader': 2.0.1 - '@esbuild-kit/core-utils': 1.3.1 - '@esbuild-kit/esm-loader': 2.1.5 + '@esbuild-kit/cjs-loader': 2.2.1 + '@esbuild-kit/core-utils': 2.0.2 + '@esbuild-kit/esm-loader': 2.3.1 optionalDependencies: fsevents: 2.3.2 dev: true @@ -10958,8 +10582,8 @@ packages: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} - /type-fest/2.13.1: - resolution: {integrity: sha512-hXYyrPFwETT2swFLHeoKtJrvSF/ftG/sA15/8nGaLuaDGfVAaq8DYFpu4yOyV4tzp082WqnTEoMsm3flKMI2FQ==} + /type-fest/2.14.0: + resolution: {integrity: sha512-hQnTQkFjL5ik6HF2fTAM8ycbr94UbQXK364wF930VHb0dfBJ5JBP8qwrR8TaK9zwUEk7meruo2JAUDMwvuxd/w==} engines: {node: '>=12.20'} dev: true @@ -10984,6 +10608,12 @@ packages: resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} engines: {node: '>=4.2.0'} hasBin: true + dev: true + + /typescript/4.7.4: + resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} + engines: {node: '>=4.2.0'} + hasBin: true /uc.micro/1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} @@ -11145,16 +10775,11 @@ packages: resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} dev: true - /universalify/0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - dev: true - /universalify/2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} engines: {node: '>= 10.0.0'} - /unocss/0.33.5_vite@2.9.12: + /unocss/0.33.5_vite@2.9.13: resolution: {integrity: sha512-aSWxGP6LHWv9eKc0WrmuLnOG2V8jkYd6zvsvB3LhZtCBWFXHPJ25T+zZP1szLbejPgSVJVVpJhnIAjJOFXRM9g==} engines: {node: '>=14'} dependencies: @@ -11171,7 +10796,7 @@ packages: '@unocss/transformer-compile-class': 0.33.5 '@unocss/transformer-directives': 0.33.5 '@unocss/transformer-variant-group': 0.33.5 - '@unocss/vite': 0.33.5_vite@2.9.12 + '@unocss/vite': 0.33.5_vite@2.9.13 transitivePeerDependencies: - supports-color - vite @@ -11192,8 +10817,8 @@ packages: - webpack dev: true - /unplugin-icons/0.14.3_vite@2.9.12: - resolution: {integrity: sha512-PyyNMACpZ/EAiG3B6K1wPGZ151VGdlHIEx8/utgP546yVmPpV/xC1k1V2eEebf71fGm3WD6gzPrERNsbMgIVgg==} + /unplugin-icons/0.14.6_vite@2.9.13: + resolution: {integrity: sha512-8sxDiL4l+TV4zufZfrskgHZZSDFoGOCBgYsefRMM4inQ3Z6KhgMSuNyew7U7D/xG//rwxgD7bN+Dv+YAZEEfEw==} peerDependencies: '@svgr/core': '>=5.5.0' '@vue/compiler-sfc': ^3.0.2 @@ -11211,11 +10836,11 @@ packages: dependencies: '@antfu/install-pkg': 0.1.0 '@antfu/utils': 0.5.2 - '@iconify/utils': 1.0.32 + '@iconify/utils': 1.0.33 debug: 4.3.4 kolorist: 1.5.1 local-pkg: 0.4.1 - unplugin: 0.6.3_vite@2.9.12 + unplugin: 0.7.0_vite@2.9.13 transitivePeerDependencies: - esbuild - rollup @@ -11224,18 +10849,15 @@ packages: - webpack dev: true - /unplugin-vue-components/0.19.6_vite@2.9.12+vue@3.2.37: - resolution: {integrity: sha512-APvrJ9Hpid1MLT0G4PWerMJgARhNw6dzz0pcCwCxaO2DR7VyvDacMqjOQNC6ukq7FSw3wzD8VH+9i3EFXwkGmw==} + /unplugin-vue-components/0.20.1_vite@2.9.13+vue@3.2.37: + resolution: {integrity: sha512-I70rKUvnJXxBvvTvKhjMV6jXh48BdiUNn2jcQiTdZjqBA3Xgkze31tdc4KBX46yryIy0y6pVaZ9gVBNPrF785g==} engines: {node: '>=14'} peerDependencies: '@babel/parser': ^7.15.8 - '@babel/traverse': ^7.15.4 vue: 2 || 3 peerDependenciesMeta: '@babel/parser': optional: true - '@babel/traverse': - optional: true dependencies: '@antfu/utils': 0.5.2 '@rollup/pluginutils': 4.2.1 @@ -11245,8 +10867,8 @@ packages: local-pkg: 0.4.1 magic-string: 0.26.2 minimatch: 5.1.0 - resolve: 1.22.0 - unplugin: 0.6.3_vite@2.9.12 + resolve: 1.22.1 + unplugin: 0.7.0_vite@2.9.13 vue: 3.2.37 transitivePeerDependencies: - esbuild @@ -11256,7 +10878,7 @@ packages: - webpack dev: true - /unplugin-vue-define-options/0.6.1_m375ryyfrmfofwntyuzleomjpq: + /unplugin-vue-define-options/0.6.1_vite@2.9.13+vue@3.2.37: resolution: {integrity: sha512-YZQxE3vC7Tb4Ev10blfYPC23hR3t8UNynoVSt2bY9GtHB2usxpywPQqRj7xdUtuj6JsDfrZ9wRKKbEkcMEXI1A==} engines: {node: '>=14.17.0'} peerDependencies: @@ -11264,16 +10886,16 @@ packages: dependencies: '@rollup/pluginutils': 4.2.1 '@vue/compiler-sfc': 3.2.37 - unplugin: 0.6.3_2uefy6dldbldonrghlgjus4ieu + unplugin: 0.6.3_vite@2.9.13 vue: 3.2.37 transitivePeerDependencies: - esbuild - rollup - vite - webpack - dev: false + dev: true - /unplugin-vue-define-options/0.6.1_vite@2.9.12+vue@3.2.37: + /unplugin-vue-define-options/0.6.1_vue@3.2.37: resolution: {integrity: sha512-YZQxE3vC7Tb4Ev10blfYPC23hR3t8UNynoVSt2bY9GtHB2usxpywPQqRj7xdUtuj6JsDfrZ9wRKKbEkcMEXI1A==} engines: {node: '>=14.17.0'} peerDependencies: @@ -11281,7 +10903,7 @@ packages: dependencies: '@rollup/pluginutils': 4.2.1 '@vue/compiler-sfc': 3.2.37 - unplugin: 0.6.3_vite@2.9.12 + unplugin: 0.6.3 vue: 3.2.37 transitivePeerDependencies: - esbuild @@ -11290,7 +10912,7 @@ packages: - webpack dev: true - /unplugin-vue-define-options/0.6.1_vue@3.2.37: + /unplugin-vue-define-options/0.6.1_z4bu4wu5k7xudjmnmksyrigboq: resolution: {integrity: sha512-YZQxE3vC7Tb4Ev10blfYPC23hR3t8UNynoVSt2bY9GtHB2usxpywPQqRj7xdUtuj6JsDfrZ9wRKKbEkcMEXI1A==} engines: {node: '>=14.17.0'} peerDependencies: @@ -11298,14 +10920,14 @@ packages: dependencies: '@rollup/pluginutils': 4.2.1 '@vue/compiler-sfc': 3.2.37 - unplugin: 0.6.3 + unplugin: 0.6.3_qrpxjnto46iodaa4efitqiw3he vue: 3.2.37 transitivePeerDependencies: - esbuild - rollup - vite - webpack - dev: true + dev: false /unplugin/0.6.3: resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==} @@ -11329,7 +10951,7 @@ packages: webpack-virtual-modules: 0.4.3 dev: true - /unplugin/0.6.3_2uefy6dldbldonrghlgjus4ieu: + /unplugin/0.6.3_qrpxjnto46iodaa4efitqiw3he: resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==} peerDependencies: esbuild: '>=0.13' @@ -11347,13 +10969,13 @@ packages: optional: true dependencies: chokidar: 3.5.3 - esbuild: 0.14.43 - rollup: 2.75.6 + esbuild: 0.14.47 + rollup: 2.75.7 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.3 dev: false - /unplugin/0.6.3_vite@2.9.12: + /unplugin/0.6.3_vite@2.9.13: resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==} peerDependencies: esbuild: '>=0.13' @@ -11371,7 +10993,31 @@ packages: optional: true dependencies: chokidar: 3.5.3 - vite: 2.9.12 + vite: 2.9.13 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.4.3 + dev: true + + /unplugin/0.7.0_vite@2.9.13: + resolution: {integrity: sha512-OsiFrgybmqm5bGuaodvbLYhqUrvGuRHRMZDhddKEXTDbuQ1x+hR7M1WpQguXj03whVYjEYChhFo738cZH5RNig==} + peerDependencies: + esbuild: '>=0.13' + rollup: ^2.50.0 + vite: ^2.3.0 + webpack: 4 || 5 + peerDependenciesMeta: + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + dependencies: + acorn: 8.7.1 + chokidar: 3.5.3 + vite: 2.9.13 webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.3 dev: true @@ -11534,7 +11180,7 @@ packages: replace-ext: 1.0.1 dev: false - /vite-plugin-inspect/0.5.0_vite@2.9.12: + /vite-plugin-inspect/0.5.0_vite@2.9.13: resolution: {integrity: sha512-eArca+5jrNx1hQL+5s79eT5Xq4VXjJcihJhK8GT/+W2GqefVxFO1WO78RnD0HPI+hKSdEFo+B4z2zeaE8DTvWQ==} engines: {node: '>=14'} peerDependencies: @@ -11548,7 +11194,7 @@ packages: kolorist: 1.5.1 sirv: 2.0.2 ufo: 0.8.4 - vite: 2.9.12 + vite: 2.9.13 transitivePeerDependencies: - supports-color dev: true @@ -11561,7 +11207,7 @@ packages: axios: 0.21.4_debug@4.3.4 debug: 4.3.4 picocolors: 1.0.0 - vite: 2.9.12 + vite: 2.9.13 transitivePeerDependencies: - encoding - less @@ -11570,7 +11216,7 @@ packages: - supports-color dev: true - /vite-plugin-pwa/0.12.0_vite@2.9.12: + /vite-plugin-pwa/0.12.0_vite@2.9.13: resolution: {integrity: sha512-KYD+cnS5ExLF3T28NkfzBLZ53ehHlp+qMhHGFNh0zlVGpFHrJkL2v9wd4AMi7ZkBTffgeNatIFiv8rhCsMSxBQ==} peerDependencies: vite: ^2.0.0 @@ -11582,7 +11228,7 @@ packages: fast-glob: 3.2.11 pretty-bytes: 6.0.0 rollup: 2.75.6 - vite: 2.9.12 + vite: 2.9.13 workbox-build: 6.5.3 workbox-window: 6.5.3 transitivePeerDependencies: @@ -11590,7 +11236,7 @@ packages: - supports-color dev: true - /vite/2.9.10_sass@1.52.3: + /vite/2.9.10_sass@1.53.0: resolution: {integrity: sha512-TwZRuSMYjpTurLqXspct+HZE7ONiW9d+wSWgvADGxhDPPyoIcNywY+RX4ng+QpK30DCa1l/oZgi2PLZDibhzbQ==} engines: {node: '>=12.2.0'} hasBin: true @@ -11610,13 +11256,13 @@ packages: postcss: 8.4.14 resolve: 1.22.0 rollup: 2.75.6 - sass: 1.52.3 + sass: 1.53.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/2.9.12: - resolution: {integrity: sha512-suxC36dQo9Rq1qMB2qiRorNJtJAdxguu5TMvBHOc/F370KvqAe9t48vYp+/TbPKRNrMh/J55tOUmkuIqstZaew==} + /vite/2.9.13: + resolution: {integrity: sha512-AsOBAaT0AD7Mhe8DuK+/kE4aWYFMx/i0ZNi98hJclxb4e0OhQcZYUrvLjIaQ8e59Ui7txcvKMiJC1yftqpQoDw==} engines: {node: '>=12.2.0'} hasBin: true peerDependencies: @@ -11631,10 +11277,10 @@ packages: stylus: optional: true dependencies: - esbuild: 0.14.43 + esbuild: 0.14.47 postcss: 8.4.14 - resolve: 1.22.0 - rollup: 2.75.6 + resolve: 1.22.1 + rollup: 2.75.7 optionalDependencies: fsevents: 2.3.2 dev: true @@ -11646,9 +11292,9 @@ packages: dependencies: '@docsearch/css': 3.1.0 '@docsearch/js': 3.1.0 - '@vitejs/plugin-vue': 2.3.3_vite@2.9.12+vue@3.2.37 + '@vitejs/plugin-vue': 2.3.3_vite@2.9.13+vue@3.2.37 prismjs: 1.28.0 - vite: 2.9.12 + vite: 2.9.13 vue: 3.2.37 transitivePeerDependencies: - '@types/react' @@ -11659,7 +11305,7 @@ packages: - stylus dev: true - /vitest/0.12.6_p3hsn2gyxkuoma7fybu4bszcau: + /vitest/0.12.6_s3h4fu5cxhimy2a3bowqsjsovu: resolution: {integrity: sha512-YWbCTv0XKBuBw5YtuW/iufuguoi8QhGpYyi2g57Oo7akpscMkkWTAaZGgY0ux1oJJtO/pc/8GFt0EF32WFBUUQ==} engines: {node: '>=v14.16.0'} hasBin: true @@ -11680,14 +11326,14 @@ packages: dependencies: '@types/chai': 4.3.1 '@types/chai-subset': 1.3.3 - '@vitest/ui': 0.14.2 + '@vitest/ui': 0.16.0 c8: 7.11.3 chai: 4.3.6 jsdom: 16.4.0 local-pkg: 0.4.1 tinypool: 0.1.3 tinyspy: 0.3.2 - vite: 2.9.10_sass@1.52.3 + vite: 2.9.10_sass@1.53.0 transitivePeerDependencies: - less - sass @@ -11709,14 +11355,14 @@ packages: vue: 3.2.37 dev: false - /vue-eslint-parser/9.0.2_eslint@8.17.0: + /vue-eslint-parser/9.0.2_eslint@8.18.0: resolution: {integrity: sha512-uCPQwTGjOtAYrwnU+76pYxalhjsh7iFBsHwBqDHiOPTxtICDaraO4Szw54WFTNZTAEsgHHzqFOu1mmnBOBRzDA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.17.0 + eslint: 8.18.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 @@ -11736,14 +11382,14 @@ packages: vue: 3.2.37 dev: true - /vue-tsc/0.37.8_typescript@4.7.3: - resolution: {integrity: sha512-geFpG3qxmb7QIDlPeHCvWomsQHfcgFZ280Nbh3Fj/bQ+Bz0pplTE6rjAq/VLelg8KcbchO5PdACexxeS+mCZAA==} + /vue-tsc/0.38.2_typescript@4.7.4: + resolution: {integrity: sha512-+OMmpw9BZC9khul3I1HGtWchv7BCiaM7NvfdilVAiOFkjnivIoaW6jJm6YPQJaEPouePtpkDUWovyzgNxWdDsw==} hasBin: true peerDependencies: typescript: '*' dependencies: - '@volar/vue-typescript': 0.37.8 - typescript: 4.7.3 + '@volar/vue-typescript': 0.38.2 + typescript: 4.7.4 dev: true /vue/3.2.37: @@ -12074,8 +11720,8 @@ packages: optional: true dev: true - /ws/8.7.0: - resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==} + /ws/8.8.0: + resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 diff --git a/tsconfig.play.json b/tsconfig.play.json index c33a1d7667d99..f1ecdc86182d1 100644 --- a/tsconfig.play.json +++ b/tsconfig.play.json @@ -2,8 +2,7 @@ "extends": "./tsconfig.web.json", "compilerOptions": { "allowJs": true, - "lib": ["ESNext", "DOM", "DOM.Iterable"], - "types": [] + "lib": ["ESNext", "DOM", "DOM.Iterable"] }, "include": [ "packages", diff --git a/tsconfig.vitest.json b/tsconfig.vitest.json index f96be8b234045..894c897619406 100644 --- a/tsconfig.vitest.json +++ b/tsconfig.vitest.json @@ -3,8 +3,9 @@ "compilerOptions": { "composite": true, "lib": ["ES2021", "DOM", "DOM.Iterable"], - "types": ["node", "jsdom"] + "types": ["node", "jsdom", "unplugin-vue-define-options"], + "skipLibCheck": true }, "include": ["packages", "vitest.setup.ts"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.md"] } diff --git a/tsconfig.web.json b/tsconfig.web.json index 3792632c5c015..a4674b67a8606 100644 --- a/tsconfig.web.json +++ b/tsconfig.web.json @@ -4,7 +4,8 @@ "composite": true, "jsx": "preserve", "lib": ["ES2018", "DOM", "DOM.Iterable"], - "types": ["unplugin-vue-define-options"] + "types": ["unplugin-vue-define-options"], + "skipLibCheck": true }, "include": ["packages", "typings/components.d.ts", "typings/env.d.ts"], "exclude": [ @@ -13,6 +14,7 @@ "**/__tests__/**/*", "**/gulpfile.ts", "**/test-helper", - "packages/test-utils" + "packages/test-utils", + "**/*.md" ] }