diff --git a/package.json b/package.json
index a6fd49e..f18289d 100644
--- a/package.json
+++ b/package.json
@@ -55,8 +55,8 @@
"vite": "^3.1.0",
"vite-plugin-md": "^0.20.0",
"vite-svg-loader": "^3.6.0",
- "vitepress": "^1.0.0-alpha.19",
- "vitepress-theme-demoblock": "1.3.2",
+ "vitepress": "1.0.0-alpha.8",
+ "vitepress-theme-demoblock": "1.4.2",
"vue-tsc": "^0.40.4"
},
"lint-staged": {
diff --git a/packages/.DS_Store b/packages/.DS_Store
index 2587bee..85bd9bf 100644
Binary files a/packages/.DS_Store and b/packages/.DS_Store differ
diff --git a/packages/ui-vue/components/index.ts b/packages/ui-vue/components/index.ts
new file mode 100644
index 0000000..eb158f8
--- /dev/null
+++ b/packages/ui-vue/components/index.ts
@@ -0,0 +1 @@
+export * from './button-edit';
diff --git a/packages/ui-vue/components/popover/src/popover.component.tsx b/packages/ui-vue/components/popover/src/popover.component.tsx
index b7c84ae..df71c91 100644
--- a/packages/ui-vue/components/popover/src/popover.component.tsx
+++ b/packages/ui-vue/components/popover/src/popover.component.tsx
@@ -13,20 +13,13 @@ export default defineComponent({
const shouldShowTitle = computed(() => !!props.title);
- const popoverClass = computed(()=>{
+ const popoverClass = computed(() => {
const originPopover = `popover in popover-${position.value}`;
- const bsPopover = `bs-popover-${position.value}`
- const popoverClassObject = {
- 'popover in pop'
- };
-
- '[class]':
- '"popover in popover-" + placement + " " + "bs-popover-" + placement + " " + placement + " " + containerClass',
- '[class.show]': '!isBs3',
- '[class.bs3]': 'isBs3',
- role: 'tooltip',
- style: 'display:block;'
- })
+ const bsPopover = `bs-popover-${position.value}`;
+ const popoverClassObject = {} as any;
+ popoverClassObject[originPopover] = true;
+ popoverClassObject[bsPopover] = true;
+ });
const popoverContainerClass = computed(() => ({
'popover-content': true,
diff --git a/packages/ui-vue/components/switch/src/switch.component.tsx b/packages/ui-vue/components/switch/src/switch.component.tsx
index eebf330..7084723 100644
--- a/packages/ui-vue/components/switch/src/switch.component.tsx
+++ b/packages/ui-vue/components/switch/src/switch.component.tsx
@@ -11,22 +11,6 @@ export default defineComponent({
const checked = ref(props.checked);
const modelValue = ref(props.modelValue);
- function getColor(flag = '') {
- if (flag === 'borderColor') {
- return this.defaultBoColor;
- }
- if (flag === 'switchColor') {
- if (this.reverse) {
- return !this.checked ? this.switchColor : this.switchOffColor || this.switchColor;
- }
- return this.checked ? this.switchColor : this.switchOffColor || this.switchColor;
- }
- if (this.reverse) {
- return !this.checked ? this.color : this.defaultBgColor;
- }
- return this.checked ? this.color : this.defaultBgColor;
- }
-
function getBackgroundColor() {
return '';
}
diff --git a/packages/ui-vue/docs/.vitepress/theme/index.ts b/packages/ui-vue/docs/.vitepress/theme/index.ts
new file mode 100644
index 0000000..506bfc9
--- /dev/null
+++ b/packages/ui-vue/docs/.vitepress/theme/index.ts
@@ -0,0 +1,15 @@
+// import farris from '../../../components/index';
+import buttonEdit from '../../../components/button-edit';
+import DefaultTheme from 'vitepress/theme';
+import 'vitepress-theme-demoblock/theme/styles/index.css';
+import { registerComponents } from './register-components.js';
+
+import '../../../public/assets/farris-all.css';
+
+export default {
+ ...DefaultTheme,
+ enhanceApp({ app }) {
+ app.use(buttonEdit);
+ registerComponents(app);
+ }
+};
diff --git a/packages/ui-vue/docs/.vitepress/theme/register-components.js b/packages/ui-vue/docs/.vitepress/theme/register-components.js
new file mode 100644
index 0000000..4d1f752
--- /dev/null
+++ b/packages/ui-vue/docs/.vitepress/theme/register-components.js
@@ -0,0 +1,6 @@
+import Demo from 'vitepress-theme-demoblock/components/Demo.vue'
+import DemoBlock from 'vitepress-theme-demoblock/components/DemoBlock.vue'
+export function registerComponents(app) {
+ app.component('Demo', Demo)
+ app.component('DemoBlock', DemoBlock)
+}
diff --git a/packages/ui-vue/docs/components/button-edit/index.md b/packages/ui-vue/docs/components/button-edit/index.md
index 076d88a..ecf91da 100644
--- a/packages/ui-vue/docs/components/button-edit/index.md
+++ b/packages/ui-vue/docs/components/button-edit/index.md
@@ -1,7 +1,27 @@
# Button Edit 按钮输入框
+Button Edit 是允许在其编辑器内部嵌入按钮的文本输入框。开发者可以自定义输入框的按钮,以便于实现丰富的录入交互形式。
+
## 基本用法
+:::demo 使用`v-model`对输入值做双向绑定。
+
+```vue
+
+
+
+
+ 输入框文本:
+ {{ text }}
+
+
+```
+
+:::
+
## 对齐方式
## 状态
@@ -20,4 +40,4 @@
## 事件
-## 插槽
\ No newline at end of file
+## 插槽
diff --git a/packages/ui-vue/package.json b/packages/ui-vue/package.json
index 3709e66..33aee98 100644
--- a/packages/ui-vue/package.json
+++ b/packages/ui-vue/package.json
@@ -55,8 +55,8 @@
"vite": "^3.1.0",
"vite-plugin-md": "^0.20.0",
"vite-svg-loader": "^3.6.0",
- "vitepress": "^1.0.0-alpha.19",
- "vitepress-theme-demoblock": "1.3.2",
+ "vitepress": "1.0.0-alpha.8",
+ "vitepress-theme-demoblock": "1.4.2",
"vue-tsc": "^0.40.4"
}
}
diff --git a/packages/ui-vue/src/components/tabs.vue b/packages/ui-vue/src/components/tabs.vue
index 125d0ca..91aa6ef 100644
--- a/packages/ui-vue/src/components/tabs.vue
+++ b/packages/ui-vue/src/components/tabs.vue
@@ -1,13 +1,15 @@
-
- Content of Tab Page 0
- Content of Tab Page 1
- Content of Tab Page 2
- Content of Tab Page 3
-
-
\ No newline at end of file
+
+ Content of Tab Page 0
+ Content of Tab Page 1
+ Content of Tab Page 2
+ Content of Tab Page 3
+
+
diff --git a/yarn.lock b/yarn.lock
index b2076f0..ddcbdfe 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3094,16 +3094,16 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.10.2.tgz#d718479e2789d8a94b63e00f23f1898ba239253a"
integrity sha512-/QJ0Z9qfhAFtKRY+r57ziY4BSbGUTGsPRMpB/Ron3QPwBZM4OZAZHdTa4a8PafCwU5DTatXG8TMDoP8z+oDqJw==
+"@vitejs/plugin-vue@^3.0.3":
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.1.2.tgz#3cd52114e8871a0b5e7bd7d837469c032e503036"
+ integrity sha512-3zxKNlvA3oNaKDYX0NBclgxTQ1xaFdL7PzwF6zj9tGFziKwmBa3Q/6XcJQxudlT81WxDjEhHmevvIC4Orc1LhQ==
+
"@vitejs/plugin-vue@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.1.0.tgz#3a423ea6943a450e806da412a911150e928598ed"
integrity sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==
-"@vitejs/plugin-vue@^3.1.2":
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-3.1.2.tgz#3cd52114e8871a0b5e7bd7d837469c032e503036"
- integrity sha512-3zxKNlvA3oNaKDYX0NBclgxTQ1xaFdL7PzwF6zj9tGFziKwmBa3Q/6XcJQxudlT81WxDjEhHmevvIC4Orc1LhQ==
-
"@volar/code-gen@0.40.13":
version "0.40.13"
resolved "https://registry.yarnpkg.com/@volar/code-gen/-/code-gen-0.40.13.tgz#cd69a67b11462b93d79ea2139f9f1e0a76e15111"
@@ -3177,16 +3177,6 @@
estree-walker "^2.0.2"
source-map "^0.6.1"
-"@vue/compiler-core@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.40.tgz#c785501f09536748121e937fb87605bbb1ada8e5"
- integrity sha512-2Dc3Stk0J/VyQ4OUr2yEC53kU28614lZS+bnrCbFSAIftBJ40g/2yQzf4mPBiFuqguMB7hyHaujdgZAQ67kZYA==
- dependencies:
- "@babel/parser" "^7.16.4"
- "@vue/shared" "3.2.40"
- estree-walker "^2.0.2"
- source-map "^0.6.1"
-
"@vue/compiler-dom@3.2.39", "@vue/compiler-dom@^3.2.38":
version "3.2.39"
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.39.tgz#bd69d35c1a48fe2cea4ab9e96d2a3a735d146fdf"
@@ -3195,14 +3185,6 @@
"@vue/compiler-core" "3.2.39"
"@vue/shared" "3.2.39"
-"@vue/compiler-dom@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.40.tgz#c225418773774db536174d30d3f25ba42a33e7e4"
- integrity sha512-OZCNyYVC2LQJy4H7h0o28rtk+4v+HMQygRTpmibGoG9wZyomQiS5otU7qo3Wlq5UfHDw2RFwxb9BJgKjVpjrQw==
- dependencies:
- "@vue/compiler-core" "3.2.40"
- "@vue/shared" "3.2.40"
-
"@vue/compiler-sfc@3.2.39", "@vue/compiler-sfc@^3.2.0", "@vue/compiler-sfc@^3.2.1", "@vue/compiler-sfc@^3.2.20", "@vue/compiler-sfc@^3.2.38":
version "3.2.39"
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.39.tgz#8fe29990f672805b7c5a2ecfa5b05e681c862ea2"
@@ -3219,22 +3201,6 @@
postcss "^8.1.10"
source-map "^0.6.1"
-"@vue/compiler-sfc@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.40.tgz#61823283efc84d25d9d2989458f305d32a2ed141"
- integrity sha512-tzqwniIN1fu1PDHC3CpqY/dPCfN/RN1thpBC+g69kJcrl7mbGiHKNwbA6kJ3XKKy8R6JLKqcpVugqN4HkeBFFg==
- dependencies:
- "@babel/parser" "^7.16.4"
- "@vue/compiler-core" "3.2.40"
- "@vue/compiler-dom" "3.2.40"
- "@vue/compiler-ssr" "3.2.40"
- "@vue/reactivity-transform" "3.2.40"
- "@vue/shared" "3.2.40"
- estree-walker "^2.0.2"
- magic-string "^0.25.7"
- postcss "^8.1.10"
- source-map "^0.6.1"
-
"@vue/compiler-ssr@3.2.39":
version "3.2.39"
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.39.tgz#4f3bfb535cb98b764bee45e078700e03ccc60633"
@@ -3243,18 +3209,10 @@
"@vue/compiler-dom" "3.2.39"
"@vue/shared" "3.2.39"
-"@vue/compiler-ssr@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.40.tgz#67df95a096c63e9ec4b50b84cc6f05816793629c"
- integrity sha512-80cQcgasKjrPPuKcxwuCx7feq+wC6oFl5YaKSee9pV3DNq+6fmCVwEEC3vvkf/E2aI76rIJSOYHsWSEIxK74oQ==
- dependencies:
- "@vue/compiler-dom" "3.2.40"
- "@vue/shared" "3.2.40"
-
-"@vue/devtools-api@^6.4.2":
- version "6.4.2"
- resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.4.2.tgz#faf303a70cd9f8662896d663a195df41a8af1e53"
- integrity sha512-6hNZ23h1M2Llky+SIAmVhL7s6BjLtZBCzjIz9iRSBUsysjE7kC39ulW0dH4o/eZtycmSt4qEr6RDVGTIuWu+ow==
+"@vue/devtools-api@^6.2.1":
+ version "6.4.3"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.4.3.tgz#784aa9e397adde727ca892c3574f5f1cfb2bc1c2"
+ integrity sha512-9WCRwdROJvWcHAdyrR7SZMM/qUvllDZnpndHXokThkUsjnJ2xe4/pvsH9FZrxFe22L+JmDKczL79HjLJ7DK9rg==
"@vue/reactivity-transform@3.2.39":
version "3.2.39"
@@ -3267,17 +3225,6 @@
estree-walker "^2.0.2"
magic-string "^0.25.7"
-"@vue/reactivity-transform@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.40.tgz#dc24b9074b26f0d9dd2034c6349f5bb2a51c86ac"
- integrity sha512-HQUCVwEaacq6fGEsg2NUuGKIhUveMCjOk8jGHqLXPI2w6zFoPrlQhwWEaINTv5kkZDXKEnCijAp+4gNEHG03yw==
- dependencies:
- "@babel/parser" "^7.16.4"
- "@vue/compiler-core" "3.2.40"
- "@vue/shared" "3.2.40"
- estree-walker "^2.0.2"
- magic-string "^0.25.7"
-
"@vue/reactivity@3.2.38":
version "3.2.38"
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.38.tgz#d576fdcea98eefb96a1f1ad456e289263e87292e"
@@ -3292,13 +3239,6 @@
dependencies:
"@vue/shared" "3.2.39"
-"@vue/reactivity@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.40.tgz#ae65496f5b364e4e481c426f391568ed7d133cca"
- integrity sha512-N9qgGLlZmtUBMHF9xDT4EkD9RdXde1Xbveb+niWMXuHVWQP5BzgRmE3SFyUBBcyayG4y1lhoz+lphGRRxxK4RA==
- dependencies:
- "@vue/shared" "3.2.40"
-
"@vue/runtime-core@3.2.39":
version "3.2.39"
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.39.tgz#dc1faccab11b3e81197aba33fb30c9447c1d2c84"
@@ -3307,14 +3247,6 @@
"@vue/reactivity" "3.2.39"
"@vue/shared" "3.2.39"
-"@vue/runtime-core@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.40.tgz#e814358bf1b0ff6d4a6b4f8f62d9f341964fb275"
- integrity sha512-U1+rWf0H8xK8aBUZhnrN97yoZfHbjgw/bGUzfgKPJl69/mXDuSg8CbdBYBn6VVQdR947vWneQBFzdhasyzMUKg==
- dependencies:
- "@vue/reactivity" "3.2.40"
- "@vue/shared" "3.2.40"
-
"@vue/runtime-dom@3.2.39":
version "3.2.39"
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.39.tgz#4a8cb132bcef316e8151c5ed07fc7272eb064614"
@@ -3324,15 +3256,6 @@
"@vue/shared" "3.2.39"
csstype "^2.6.8"
-"@vue/runtime-dom@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.40.tgz#975119feac5ab703aa9bbbf37c9cc966602c8eab"
- integrity sha512-AO2HMQ+0s2+MCec8hXAhxMgWhFhOPJ/CyRXnmTJ6XIOnJFLrH5Iq3TNwvVcODGR295jy77I6dWPj+wvFoSYaww==
- dependencies:
- "@vue/runtime-core" "3.2.40"
- "@vue/shared" "3.2.40"
- csstype "^2.6.8"
-
"@vue/server-renderer@3.2.39", "@vue/server-renderer@^3.2.1":
version "3.2.39"
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.39.tgz#4358292d925233b0d8b54cf0513eaece8b2351c5"
@@ -3341,14 +3264,6 @@
"@vue/compiler-ssr" "3.2.39"
"@vue/shared" "3.2.39"
-"@vue/server-renderer@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.40.tgz#55eaac31f7105c3907e1895129bf4efb6b0ce393"
- integrity sha512-gtUcpRwrXOJPJ4qyBpU3EyxQa4EkV8I4f8VrDePcGCPe4O/hd0BPS7v9OgjIQob6Ap8VDz9G+mGTKazE45/95w==
- dependencies:
- "@vue/compiler-ssr" "3.2.40"
- "@vue/shared" "3.2.40"
-
"@vue/shared@3.2.38":
version "3.2.38"
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.38.tgz#e823f0cb2e85b6bf43430c0d6811b1441c300f3c"
@@ -3359,11 +3274,6 @@
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.39.tgz#302df167559a1a5156da162d8cc6760cef67f8e3"
integrity sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==
-"@vue/shared@3.2.40":
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.40.tgz#e57799da2a930b975321981fcee3d1e90ed257ae"
- integrity sha512-0PLQ6RUtZM0vO3teRfzGi4ltLUO5aO+kLgwh4Um3THSR03rpQWLTuRCkuO5A41ITzwdWeKdPHtSARuPkoo5pCQ==
-
"@vue/test-utils@^2.0.0":
version "2.0.2"
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.2.tgz#0b5edd683366153d5bc5a91edc62f292118710eb"
@@ -3459,7 +3369,7 @@
"@vueuse/shared" "9.2.0"
vue-demi "*"
-"@vueuse/core@^9.3.0":
+"@vueuse/core@^9.1.0":
version "9.3.0"
resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-9.3.0.tgz#74d855bd19cb5eadd2edb30c871918fac881e8b8"
integrity sha512-64Rna8IQDWpdrJxgitDg7yv1yTp41ZmvV8zlLEylK4QQLWAhz1OFGZDPZ8bU4lwcGgbEJ2sGi2jrdNh4LttUSQ==
@@ -3968,7 +3878,7 @@ bl@^5.0.0:
inherits "^2.0.4"
readable-stream "^3.4.0"
-body-scroll-lock@4.0.0-beta.0:
+body-scroll-lock@^4.0.0-beta.0:
version "4.0.0-beta.0"
resolved "https://registry.yarnpkg.com/body-scroll-lock/-/body-scroll-lock-4.0.0-beta.0.tgz#4f78789d10e6388115c0460cd6d7d4dd2bbc4f7e"
integrity sha512-a7tP5+0Mw3YlUJcGAKUqIBkYYGlYxk2fnCasq/FUph1hadxlTRjF+gAcZksxANnaMnALjxEddmSi/H3OR8ugcQ==
@@ -10286,7 +10196,7 @@ vite@^2.4.4:
optionalDependencies:
fsevents "~2.3.2"
-vite@^3.1.4:
+vite@^3.0.8:
version "3.1.4"
resolved "https://registry.yarnpkg.com/vite/-/vite-3.1.4.tgz#b75824b819d8354a6f36e4b988943c7e4947e155"
integrity sha512-JoQI08aBjY9lycL7jcEq4p9o1xUjq5aRvdH4KWaXtkSx7e7RpAh9D3IjzDWRD4Fg44LS3oDAIOG/Kq1L+82psA==
@@ -10298,10 +10208,10 @@ vite@^3.1.4:
optionalDependencies:
fsevents "~2.3.2"
-vitepress-theme-demoblock@1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/vitepress-theme-demoblock/-/vitepress-theme-demoblock-1.3.2.tgz#d423818ee38041b33ecdf9738b3ad3cf4775e40b"
- integrity sha512-uyzdb28sq2hSNzU4KeITNayWNPYUqvUWcahcqQZVvAoPlSr1tF9vGraRQWEhAFW//MII3tM/mncYLfICJfmISw==
+vitepress-theme-demoblock@1.4.2:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/vitepress-theme-demoblock/-/vitepress-theme-demoblock-1.4.2.tgz#0b55695e53d3cd142d5351f93f62d651ed057df1"
+ integrity sha512-OMIRg1JJI8NvBVLFu2G0cd+gT5IzXZfTsV7yws7GfRXZE3Q4qLO5cR1+ngNnFZw44ID1oLk+Yu9HZM+AJYtgWA==
dependencies:
camelcase "^6.2.0"
globby "^11.0.2"
@@ -10312,6 +10222,21 @@ vitepress-theme-demoblock@1.3.2:
vitepress "^0.16.1"
yaml "^2.0.0-6"
+vitepress@1.0.0-alpha.8:
+ version "1.0.0-alpha.8"
+ resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-1.0.0-alpha.8.tgz#b6a3b503c2ea3ed0a44a16539849c02fa996c090"
+ integrity sha512-kTRN5DCagvMqr9OjylSV9/waGg0IHrxL0hBVuJoz7ykleZq2qR02n5CaiFq5QrSB/VRBGqiVsFQzet9vJsXS8g==
+ dependencies:
+ "@docsearch/css" "^3.2.1"
+ "@docsearch/js" "^3.2.1"
+ "@vitejs/plugin-vue" "^3.0.3"
+ "@vue/devtools-api" "^6.2.1"
+ "@vueuse/core" "^9.1.0"
+ body-scroll-lock "^4.0.0-beta.0"
+ shiki "^0.11.1"
+ vite "^3.0.8"
+ vue "^3.2.37"
+
vitepress@^0.16.1:
version "0.16.1"
resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-0.16.1.tgz#70ba4326a4bdc7152f264868c0775615c0bc16d5"
@@ -10345,21 +10270,6 @@ vitepress@^0.16.1:
vite "^2.4.4"
vue "^3.2.1"
-vitepress@^1.0.0-alpha.19:
- version "1.0.0-alpha.19"
- resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-1.0.0-alpha.19.tgz#a73d1fc4f499d2498d5f71009c7ce4470662e4b8"
- integrity sha512-0FIUZB6JGXio7SELDDUkyQoMjmO/UAXqDXmznzOsBKsdZ3EHlyb6NaP/V/BMfN5S8+GV88ScbIL0jd/pDzkLBg==
- dependencies:
- "@docsearch/css" "^3.2.1"
- "@docsearch/js" "^3.2.1"
- "@vitejs/plugin-vue" "^3.1.2"
- "@vue/devtools-api" "^6.4.2"
- "@vueuse/core" "^9.3.0"
- body-scroll-lock "4.0.0-beta.0"
- shiki "^0.11.1"
- vite "^3.1.4"
- vue "^3.2.40"
-
vitest@^0.19.1:
version "0.19.1"
resolved "https://registry.yarnpkg.com/vitest/-/vitest-0.19.1.tgz#8a89f4c873132d778d4206dbfbd6791c12f6d921"
@@ -10432,17 +10342,6 @@ vue@^3.2.1, vue@^3.2.37:
"@vue/server-renderer" "3.2.39"
"@vue/shared" "3.2.39"
-vue@^3.2.40:
- version "3.2.40"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.40.tgz#23f387f6f9b3a0767938db6751e4fb5900f0ee34"
- integrity sha512-1mGHulzUbl2Nk3pfvI5aXYYyJUs1nm4kyvuz38u4xlQkLUn1i2R7nDbI4TufECmY8v1qNBHYy62bCaM+3cHP2A==
- dependencies:
- "@vue/compiler-dom" "3.2.40"
- "@vue/compiler-sfc" "3.2.40"
- "@vue/runtime-dom" "3.2.40"
- "@vue/server-renderer" "3.2.40"
- "@vue/shared" "3.2.40"
-
w3c-hr-time@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"