📝: 更新文档
This commit is contained in:
parent
f3b2d137b3
commit
b4e67b46c6
@ -34,7 +34,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@layui/icons-vue": "^1.0.9",
|
||||
"@layui/layer-vue": "^1.3.18",
|
||||
"@layui/layer-vue": "^1.4.0",
|
||||
"@vueuse/core": "^8.7.3",
|
||||
"async-validator": "^4.1.1",
|
||||
"cropperjs": "^1.5.12",
|
||||
|
@ -4,7 +4,7 @@
|
||||
::: title 基本介绍
|
||||
:::
|
||||
|
||||
::: describe 需要用户处理事务,又不希望跳转页面以致打断工作流程时,可以使用 Modal 在当前页面正中打开一个浮层,承载相应的操作。
|
||||
::: describe 需要用户处理事务,又不希望跳转页面以致打断工作流程时,承载相应的操作。
|
||||
:::
|
||||
|
||||
::: title 基本使用
|
||||
|
@ -52,7 +52,7 @@ import { layer } from "@layui/layer-vue"
|
||||
export default {
|
||||
setup() {
|
||||
const openSuccess = function() {
|
||||
layer.msg("成功消息", { icon : 1, time: 100000})
|
||||
layer.msg("成功消息", { icon : 1, time: 1000})
|
||||
}
|
||||
const openFailure = function() {
|
||||
layer.msg("失败消息", { icon : 2, time: 1000})
|
||||
|
@ -0,0 +1,133 @@
|
||||
::: anchor
|
||||
:::
|
||||
|
||||
::: title 基本介绍
|
||||
:::
|
||||
|
||||
::: describe 全局展示通知提醒信息。
|
||||
:::
|
||||
|
||||
::: title 基础使用
|
||||
:::
|
||||
|
||||
::: demo
|
||||
|
||||
<template>
|
||||
<lay-row :space="30" >
|
||||
<lay-col :span="24">
|
||||
<lay-button type="primary" @click="baseNotifiy">右上位置</lay-button>
|
||||
<lay-button type="primary" @click="baseNotifiyRB">右下位置</lay-button>
|
||||
<lay-button type="primary" @click="baseNotifiyLT">左上位置</lay-button>
|
||||
<lay-button type="primary" @click="baseNotifiyLB">左下位置</lay-button>
|
||||
</lay-col>
|
||||
</lay-row>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { layer } from "@layui/layer-vue"
|
||||
|
||||
const baseNotifiy = function() {
|
||||
layer.notifiy({
|
||||
title:"这是标题",
|
||||
content:"默认就是右上,也是用得最多的"
|
||||
})
|
||||
}
|
||||
const baseNotifiyRB = function() {
|
||||
layer.notifiy({
|
||||
title:"这是标题",
|
||||
content:"我出现在右下",
|
||||
offset:'rb',
|
||||
})
|
||||
}
|
||||
const baseNotifiyLT = function() {
|
||||
layer.notifiy({
|
||||
title:"这是标题",
|
||||
content:"我出现在左上",
|
||||
offset:'lt',
|
||||
})
|
||||
}
|
||||
const baseNotifiyLB = function() {
|
||||
layer.notifiy({
|
||||
title:"这是标题",
|
||||
content:"我出现在左下",
|
||||
offset:'lb',
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
:::
|
||||
|
||||
::: title 指定图标
|
||||
:::
|
||||
|
||||
::: demo
|
||||
|
||||
<template>
|
||||
<lay-row :space="30" >
|
||||
<lay-col :span="24">
|
||||
<lay-button type="primary" @click="NotifiySuccess">成功通知</lay-button>
|
||||
<lay-button type="primary" @click="NotifiyFailure">失败通知</lay-button>
|
||||
<lay-button type="primary" @click="NotifiyWarm">警告通知</lay-button>
|
||||
<lay-button type="primary" @click="NotifiyInfo">锁定通知</lay-button>
|
||||
</lay-col>
|
||||
</lay-row>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { layer } from "@layui/layer-vue"
|
||||
|
||||
const NotifiySuccess=function(){
|
||||
layer.notifiy({
|
||||
title:"Success",
|
||||
content:"默认就是右上,也是用得最多的",
|
||||
icon:1
|
||||
})
|
||||
}
|
||||
const NotifiyFailure=function(){
|
||||
layer.notifiy({
|
||||
title:"Error",
|
||||
content:"默认就是右上,也是用得最多的",
|
||||
icon:2
|
||||
})
|
||||
}
|
||||
const NotifiyWarm=function(){
|
||||
layer.notifiy({
|
||||
title:"Warming",
|
||||
content:"默认就是右上,也是用得最多的",
|
||||
icon:3
|
||||
})
|
||||
}
|
||||
const NotifiyInfo=function(){
|
||||
layer.notifiy({
|
||||
title:"Question",
|
||||
content:"默认就是右上,也是用得最多的",
|
||||
icon:4
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
:::
|
||||
|
||||
::: title 组件方法
|
||||
:::
|
||||
|
||||
```
|
||||
layer.notifiy(options)
|
||||
```
|
||||
|
||||
::: title 组件属性
|
||||
:::
|
||||
|
||||
::: table
|
||||
|
||||
| 属性 | 描述 | 备注 |
|
||||
| ------------------- | ------ | ----|
|
||||
| options | 选配属性 | { time: 加载时长, icon: 图标 } |
|
||||
|
||||
:::
|
||||
|
||||
::: contributor msg
|
||||
:::
|
||||
|
||||
::: previousNext msg
|
||||
:::
|
@ -0,0 +1,66 @@
|
||||
::: anchor
|
||||
:::
|
||||
|
||||
::: title 基本介绍
|
||||
:::
|
||||
|
||||
::: describe 预览图片。
|
||||
:::
|
||||
|
||||
::: title 指定图标
|
||||
:::
|
||||
|
||||
::: demo
|
||||
|
||||
<template>
|
||||
<lay-button @click="signleImg">图片查看</lay-button>
|
||||
<lay-button @click="signleImg2">图片标题</lay-button>
|
||||
<lay-button @click="groupImg">图片分组</lay-button>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { layer } from "@layui/layui-vue"
|
||||
|
||||
const signleImg = function() {
|
||||
layer.photos("http://www.pearadmin.com/assets/images/un1.svg")
|
||||
}
|
||||
const signleImg2 = function() {
|
||||
layer.photos({
|
||||
imgList:[{src:'http://www.pearadmin.com/assets/images/un2.svg',alt:'layer for vue'}]
|
||||
})
|
||||
}
|
||||
const groupImg = function() {
|
||||
layer.photos({
|
||||
imgList:[
|
||||
{ src:'http://www.pearadmin.com/assets/images/un8.svg', alt:'图片1'},
|
||||
{ src:'http://www.pearadmin.com/assets/images/un32.svg', alt:'图片2'}
|
||||
]
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
:::
|
||||
|
||||
::: title 组件方法
|
||||
:::
|
||||
|
||||
```
|
||||
layer.photos(options)
|
||||
```
|
||||
|
||||
::: title 组件属性
|
||||
:::
|
||||
|
||||
::: table
|
||||
|
||||
| 属性 | 描述 | 备注 |
|
||||
| ------------------- | ------ | ----|
|
||||
| options | 选配属性 | { time: 加载时长, icon: 图标 } |
|
||||
|
||||
:::
|
||||
|
||||
::: contributor msg
|
||||
:::
|
||||
|
||||
::: previousNext msg
|
||||
:::
|
@ -400,15 +400,25 @@ const zhCN = [
|
||||
meta: { title: "页头" },
|
||||
},
|
||||
{
|
||||
path: "/zh-CN/components/Cascader",
|
||||
path: "/zh-CN/components/cascader",
|
||||
component: () => import("../document/zh-CN/components/cascader.md"),
|
||||
meta: { title: "级联选择器" },
|
||||
},
|
||||
{
|
||||
path: "/zh-CN/components/Affix",
|
||||
path: "/zh-CN/components/affix",
|
||||
component: () => import("../document/zh-CN/components/affix.md"),
|
||||
meta: { title: "锚点" },
|
||||
},
|
||||
{
|
||||
path: "/zh-CN/components/notifiy",
|
||||
component: () => import("../document/zh-CN/components/notifiy.md"),
|
||||
meta: { title: "通知" },
|
||||
},
|
||||
{
|
||||
path: "/zh-CN/components/photo",
|
||||
component: () => import("../document/zh-CN/components/photo.md"),
|
||||
meta: { title: "相册" },
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
@ -14,7 +14,7 @@
|
||||
<li class="layui-col-sm12">
|
||||
<div class="alone">
|
||||
<a
|
||||
href="https://gitee.com/layui/layui-vue/tree/next/package/layer"
|
||||
href="http://layer.layui-vue.com/zh-CN/demo"
|
||||
target="_blank"
|
||||
>layer - vue<cite>通用型弹出层组件</cite></a
|
||||
>
|
||||
|
@ -372,7 +372,7 @@ const menus = [
|
||||
{
|
||||
id: 100,
|
||||
title: "锚点",
|
||||
subTitle: "Affix",
|
||||
subTitle: "affix",
|
||||
path: "/zh-CN/components/affix",
|
||||
},
|
||||
],
|
||||
@ -383,7 +383,7 @@ const menus = [
|
||||
children: [
|
||||
{
|
||||
id: 90,
|
||||
title: "弹层",
|
||||
title: "模态",
|
||||
subTitle: "modal",
|
||||
path: "/zh-CN/components/modal",
|
||||
},
|
||||
@ -411,6 +411,18 @@ const menus = [
|
||||
subTitle: "drawer",
|
||||
path: "/zh-CN/components/drawer",
|
||||
},
|
||||
{
|
||||
id: 94,
|
||||
title: "通知",
|
||||
subTitle: "notifiy",
|
||||
path: "/zh-CN/components/notifiy",
|
||||
},
|
||||
{
|
||||
id: 94,
|
||||
title: "相册",
|
||||
subTitle: "photo",
|
||||
path: "/zh-CN/components/photo",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
@ -3,18 +3,25 @@
|
||||
<div class="markdown-body light-scheme">
|
||||
<div class="alone-header">
|
||||
<img class="alone-logo" src="../assets/logo.png" />
|
||||
<a style="
|
||||
<a
|
||||
style="
|
||||
position: absolute;
|
||||
right: 16%;
|
||||
line-height: 60px;
|
||||
color: white;
|
||||
font-size: 15px;
|
||||
">{{ version }}</a>
|
||||
<a href="https://gitee.com/layui-vue/layer-vue" style="position: absolute; right: 10%; line-height: 75px">
|
||||
"
|
||||
>{{ version }}</a
|
||||
>
|
||||
<a
|
||||
href="https://gitee.com/layui-vue/layer-vue"
|
||||
style="position: absolute; right: 10%; line-height: 75px"
|
||||
>
|
||||
<svg width="1.7em" height="1.7em" viewBox="0 0 24 24">
|
||||
<path fill="#fff"
|
||||
d="M10.9,2.1c-4.6,0.5-8.3,4.2-8.8,8.7c-0.5,4.7,2.2,8.9,6.3,10.5C8.7,21.4,9,21.2,9,20.8v-1.6c0,0-0.4,0.1-0.9,0.1 c-1.4,0-2-1.2-2.1-1.9c-0.1-0.4-0.3-0.7-0.6-1C5.1,16.3,5,16.3,5,16.2C5,16,5.3,16,5.4,16c0.6,0,1.1,0.7,1.3,1c0.5,0.8,1.1,1,1.4,1 c0.4,0,0.7-0.1,0.9-0.2c0.1-0.7,0.4-1.4,1-1.8c-2.3-0.5-4-1.8-4-4c0-1.1,0.5-2.2,1.2-3C7.1,8.8,7,8.3,7,7.6C7,7.2,7,6.6,7.3,6 c0,0,1.4,0,2.8,1.3C10.6,7.1,11.3,7,12,7s1.4,0.1,2,0.3C15.3,6,16.8,6,16.8,6C17,6.6,17,7.2,17,7.6c0,0.8-0.1,1.2-0.2,1.4 c0.7,0.8,1.2,1.8,1.2,3c0,2.2-1.7,3.5-4,4c0.6,0.5,1,1.4,1,2.3v2.6c0,0.3,0.3,0.6,0.7,0.5c3.7-1.5,6.3-5.1,6.3-9.3 C22,6.1,16.9,1.4,10.9,2.1z">
|
||||
</path>
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M10.9,2.1c-4.6,0.5-8.3,4.2-8.8,8.7c-0.5,4.7,2.2,8.9,6.3,10.5C8.7,21.4,9,21.2,9,20.8v-1.6c0,0-0.4,0.1-0.9,0.1 c-1.4,0-2-1.2-2.1-1.9c-0.1-0.4-0.3-0.7-0.6-1C5.1,16.3,5,16.3,5,16.2C5,16,5.3,16,5.4,16c0.6,0,1.1,0.7,1.3,1c0.5,0.8,1.1,1,1.4,1 c0.4,0,0.7-0.1,0.9-0.2c0.1-0.7,0.4-1.4,1-1.8c-2.3-0.5-4-1.8-4-4c0-1.1,0.5-2.2,1.2-3C7.1,8.8,7,8.3,7,7.6C7,7.2,7,6.6,7.3,6 c0,0,1.4,0,2.8,1.3C10.6,7.1,11.3,7,12,7s1.4,0.1,2,0.3C15.3,6,16.8,6,16.8,6C17,6.6,17,7.2,17,7.6c0,0.8-0.1,1.2-0.2,1.4 c0.7,0.8,1.2,1.8,1.2,3c0,2.2-1.7,3.5-4,4c0.6,0.5,1,1.4,1,2.3v2.6c0,0.3,0.3,0.6,0.7,0.5c3.7-1.5,6.3-5.1,6.3-9.3 C22,6.1,16.9,1.4,10.9,2.1z"
|
||||
></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
@ -125,7 +132,7 @@ body {
|
||||
}
|
||||
|
||||
.layui-container {
|
||||
padding-bottom: 50px!important;
|
||||
padding-bottom: 50px !important;
|
||||
}
|
||||
|
||||
.layui-elem-field {
|
||||
|
@ -51,10 +51,7 @@ onMounted(() => {
|
||||
setTimeout(() => {
|
||||
//此处延迟加载class,以免影响弹出效果
|
||||
// @ts-ignore
|
||||
addClass(
|
||||
notifyRef.value.parentElement?.parentElement,
|
||||
"layui-layer-notify"
|
||||
);
|
||||
addClass(notifyRef.value.parentElement?.parentElement,"layui-layer-notify");
|
||||
}, 300);
|
||||
}
|
||||
});
|
||||
|
@ -12,8 +12,35 @@ import CloseBtn from "./CloseBtn.vue";
|
||||
import Resize from "./Resize.vue";
|
||||
import Photos from "./Photos.vue";
|
||||
import Notifiy from "./Notifiy.vue";
|
||||
import { Ref, ref, watch, computed, useSlots, VNodeTypes, nextTick, inject } from "vue";
|
||||
import { nextId, maxArea, maxOffset, getArea, calculateArea, calculateOffset, calculateContent, calculateType, minArea, minOffset, updateMinArrays, getDrawerAnimationClass, calculateDrawerArea, calculatePhotosArea, calculateNotifOffset, removeNotifiyFromQueen, getNotifyAnimationClass } from "../utils";
|
||||
import {
|
||||
Ref,
|
||||
ref,
|
||||
watch,
|
||||
computed,
|
||||
useSlots,
|
||||
VNodeTypes,
|
||||
nextTick,
|
||||
inject,
|
||||
} from "vue";
|
||||
import {
|
||||
nextId,
|
||||
maxArea,
|
||||
maxOffset,
|
||||
getArea,
|
||||
calculateArea,
|
||||
calculateOffset,
|
||||
calculateContent,
|
||||
calculateType,
|
||||
minArea,
|
||||
minOffset,
|
||||
updateMinArrays,
|
||||
getDrawerAnimationClass,
|
||||
calculateDrawerArea,
|
||||
calculatePhotosArea,
|
||||
calculateNotifOffset,
|
||||
removeNotifiyFromQueen,
|
||||
getNotifyAnimationClass,
|
||||
} from "../utils";
|
||||
import useResize from "../composable/useResize";
|
||||
import useMove from "../composable/useMove";
|
||||
import { zIndexKey } from "../tokens";
|
||||
@ -32,7 +59,21 @@ export interface LayModalProps {
|
||||
btn?: Record<string, Function>[] | false;
|
||||
move?: boolean | string;
|
||||
resize?: boolean | string;
|
||||
type?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | "dialog" | "page" | "iframe" | "loading" | "drawer" | "photos" | "notifiy";
|
||||
type?:
|
||||
| 0
|
||||
| 1
|
||||
| 2
|
||||
| 3
|
||||
| 4
|
||||
| 5
|
||||
| 6
|
||||
| "dialog"
|
||||
| "page"
|
||||
| "iframe"
|
||||
| "loading"
|
||||
| "drawer"
|
||||
| "photos"
|
||||
| "notifiy";
|
||||
content?: string | Function | object | VNodeTypes;
|
||||
isHtmlFragment?: boolean;
|
||||
shade?: boolean | string;
|
||||
@ -79,12 +120,12 @@ const props = withDefaults(defineProps<LayModalProps>(), {
|
||||
resize: false,
|
||||
isHtmlFragment: false,
|
||||
isOutAnim: true,
|
||||
destroy: () => { },
|
||||
success: () => { },
|
||||
end: () => { },
|
||||
full: () => { },
|
||||
min: () => { },
|
||||
restore: () => { },
|
||||
destroy: () => {},
|
||||
success: () => {},
|
||||
end: () => {},
|
||||
full: () => {},
|
||||
min: () => {},
|
||||
restore: () => {},
|
||||
yesText: "确定",
|
||||
isFunction: false,
|
||||
isMessage: false,
|
||||
@ -107,7 +148,7 @@ const offset: Ref<string[]> = ref(
|
||||
calculateOffset(props.offset, area.value, props.type)
|
||||
);
|
||||
const contentHeight = ref(
|
||||
calculateContent(props.title,area.value[1], props.btn, type, props.isMessage)
|
||||
calculateContent(props.title, area.value[1], props.btn, type, props.isMessage)
|
||||
);
|
||||
const index: Ref<number | Function> = ref(
|
||||
props.zIndex ?? inject(zIndexKey, 99999)
|
||||
@ -555,15 +596,33 @@ defineExpose({ reset, open, close });
|
||||
<template>
|
||||
<div>
|
||||
<!-- 遮盖层 -->
|
||||
<Shade :index="index" :visible="shadeVisible" :opacity="shadeOpacity" @shadeClick="shadeHandle"></Shade>
|
||||
<Shade
|
||||
:index="index"
|
||||
:visible="shadeVisible"
|
||||
:opacity="shadeOpacity"
|
||||
@shadeClick="shadeHandle"
|
||||
></Shade>
|
||||
<!-- 动画容器 -->
|
||||
<transition :enter-active-class="enterActiveClass" :leave-active-class="leaveActiveClass">
|
||||
<transition
|
||||
:enter-active-class="enterActiveClass"
|
||||
:leave-active-class="leaveActiveClass"
|
||||
>
|
||||
<!-- 弹出层 -->
|
||||
<div ref="layero" class="layui-layer layui-layer-border" :class="boxClasses" :style="styles" v-if="visible">
|
||||
<div
|
||||
ref="layero"
|
||||
class="layui-layer layui-layer-border"
|
||||
:class="boxClasses"
|
||||
:style="styles"
|
||||
v-if="visible"
|
||||
>
|
||||
<!-- 标题 -->
|
||||
<Title v-if="showTitle" :title="title"></Title>
|
||||
<!-- 内容 -->
|
||||
<div class="layui-layer-content" :style="{ height: contentHeight }" :class="contentClasses">
|
||||
<div
|
||||
class="layui-layer-content"
|
||||
:style="{ height: contentHeight }"
|
||||
:class="contentClasses"
|
||||
>
|
||||
<template v-if="type === 0 || type === 1 || type === 4">
|
||||
<i v-if="icon" :class="iconClass"></i>
|
||||
<slot v-if="slots.default"></slot>
|
||||
@ -575,24 +634,55 @@ defineExpose({ reset, open, close });
|
||||
</template>
|
||||
</template>
|
||||
<Iframe v-if="type === 2" :src="props.content"></Iframe>
|
||||
<Photos v-if="type === 5" :imgList="props.imgList" :startIndex="props.startIndex"
|
||||
@resetCalculationPohtosArea="resetCalculationPohtosArea"></Photos>
|
||||
<Notifiy v-if="type === 6" @close="closeHandle" :title="props.title" :content="props.content"
|
||||
:isHtmlFragment="props.isHtmlFragment" :icon="props.icon" :iconClass="iconClass"></Notifiy>
|
||||
<Photos
|
||||
v-if="type === 5"
|
||||
:imgList="props.imgList"
|
||||
:startIndex="props.startIndex"
|
||||
@resetCalculationPohtosArea="resetCalculationPohtosArea"
|
||||
></Photos>
|
||||
<Notifiy
|
||||
v-if="type === 6"
|
||||
@close="closeHandle"
|
||||
:title="props.title"
|
||||
:content="props.content"
|
||||
:isHtmlFragment="props.isHtmlFragment"
|
||||
:icon="props.icon"
|
||||
:iconClass="iconClass"
|
||||
></Notifiy>
|
||||
</div>
|
||||
<!-- 工具栏 -->
|
||||
<span class="layui-layer-setwin" v-if="type != 3 && type != 5 && type != 6">
|
||||
<a v-if="maxmin && !max" class="layui-layer-min" :class="[min ? 'layui-layer-ico layui-layer-maxmin' : '']"
|
||||
href="javascript:;" @click="minHandle">
|
||||
<span
|
||||
class="layui-layer-setwin"
|
||||
v-if="type != 3 && type != 5 && type != 6"
|
||||
>
|
||||
<a
|
||||
v-if="maxmin && !max"
|
||||
class="layui-layer-min"
|
||||
:class="[min ? 'layui-layer-ico layui-layer-maxmin' : '']"
|
||||
href="javascript:;"
|
||||
@click="minHandle"
|
||||
>
|
||||
<cite v-if="!min"></cite>
|
||||
</a>
|
||||
<a v-if="maxmin && !min" class="layui-layer-ico layui-layer-max" :class="[max ? 'layui-layer-maxmin' : '']"
|
||||
href="javascript:;" @click="maxHandle"></a>
|
||||
<CloseBtn v-if="closeBtn != false" :close-btn="closeBtn" @closeHandle="closeHandle" ></CloseBtn>
|
||||
<a
|
||||
v-if="maxmin && !min"
|
||||
class="layui-layer-ico layui-layer-max"
|
||||
:class="[max ? 'layui-layer-maxmin' : '']"
|
||||
href="javascript:;"
|
||||
@click="maxHandle"
|
||||
></a>
|
||||
<CloseBtn
|
||||
v-if="closeBtn != false"
|
||||
:close-btn="closeBtn"
|
||||
@closeHandle="closeHandle"
|
||||
></CloseBtn>
|
||||
</span>
|
||||
<!-- 操作栏 -->
|
||||
<div v-if="((btn && btn.length > 0) || type === 0) && !isMessage" class="layui-layer-btn"
|
||||
:class="[`layui-layer-btn-${btnAlign}`]">
|
||||
<div
|
||||
v-if="((btn && btn.length > 0) || type === 0) && !isMessage"
|
||||
class="layui-layer-btn"
|
||||
:class="[`layui-layer-btn-${btnAlign}`]"
|
||||
>
|
||||
<template v-if="btn && btn.length > 0">
|
||||
<template v-for="(b, index) in btn" :key="index">
|
||||
<a :class="[`layui-layer-btn${index}`]" @click="b.callback(id)">{{
|
||||
|
@ -144,21 +144,21 @@ export function calculateContent(
|
||||
}
|
||||
if (btn && btn.length > 0) {
|
||||
if (type == 0) {
|
||||
if(title) {
|
||||
if (title) {
|
||||
return "calc(" + height + " - 137px)";
|
||||
} else {
|
||||
return "calc(" + height + " - 86px)";
|
||||
}
|
||||
}
|
||||
if (type == 1) {
|
||||
if(title) {
|
||||
if (title) {
|
||||
return "calc(" + height + " - 102px)";
|
||||
} else {
|
||||
return "calc(" + height + " - 51px)";
|
||||
}
|
||||
}
|
||||
if (type == 2) {
|
||||
if(title) {
|
||||
if (title) {
|
||||
return "calc(" + height + " - 102px)";
|
||||
} else {
|
||||
return "calc(" + height + " - 51px)";
|
||||
@ -166,21 +166,21 @@ export function calculateContent(
|
||||
}
|
||||
} else {
|
||||
if (type == 0) {
|
||||
if(title) {
|
||||
if (title) {
|
||||
return isMessage ? height : "calc(" + height + " - 137px)";
|
||||
} else {
|
||||
return isMessage ? height : "calc(" + height + " - 86px)";
|
||||
}
|
||||
}
|
||||
if (type == 1) {
|
||||
if(title) {
|
||||
if (title) {
|
||||
return "calc(" + height + " - 51px)";
|
||||
} else {
|
||||
return "calc(" + height + " - 0px)";
|
||||
}
|
||||
}
|
||||
if (type == 2) {
|
||||
if(title) {
|
||||
if (title) {
|
||||
return "calc(" + height + " - 51px)";
|
||||
} else {
|
||||
return "calc(" + height + " - 0px)";
|
||||
|
193
pnpm-lock.yaml
193
pnpm-lock.yaml
@ -1,4 +1,4 @@
|
||||
lockfileVersion: 5.4
|
||||
lockfileVersion: 5.3
|
||||
|
||||
importers:
|
||||
|
||||
@ -46,10 +46,10 @@ importers:
|
||||
'@babel/preset-typescript': 7.16.7_@babel+core@7.17.9
|
||||
'@commitlint/cli': 16.2.3
|
||||
'@commitlint/config-conventional': 16.2.1
|
||||
'@rollup/plugin-babel': 5.3.1_hgifciwidddhnedalyprixjsri
|
||||
'@rollup/plugin-babel': 5.3.1_@babel+core@7.17.9+rollup@2.75.5
|
||||
'@types/node': 16.11.26
|
||||
'@typescript-eslint/eslint-plugin': 5.17.0_5rdn4wjq2cbymldojl25s4gqsy
|
||||
'@typescript-eslint/parser': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/eslint-plugin': 5.17.0_ec46de5930d083862c6e4af5d970d096
|
||||
'@typescript-eslint/parser': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@vitejs/plugin-vue': 2.3.3_vite@2.9.12+vue@3.2.37
|
||||
'@vue/compiler-sfc': 3.2.37
|
||||
'@vue/server-renderer': 3.2.37_vue@3.2.37
|
||||
@ -59,7 +59,7 @@ importers:
|
||||
cz-customizable: 6.3.0
|
||||
eslint: 8.12.0
|
||||
eslint-config-prettier: 8.5.0_eslint@8.12.0
|
||||
eslint-plugin-prettier: 4.0.0_6ler2d2uceywpuv5sikklk22gy
|
||||
eslint-plugin-prettier: 4.0.0_f2c91d0f54113167d2bd9214a5ab5a36
|
||||
eslint-plugin-vue: 8.5.0_eslint@8.12.0
|
||||
husky: 8.0.1
|
||||
less: 4.1.2
|
||||
@ -72,7 +72,7 @@ importers:
|
||||
package/component:
|
||||
specifiers:
|
||||
'@layui/icons-vue': ^1.0.9
|
||||
'@layui/layer-vue': ^1.3.18
|
||||
'@layui/layer-vue': ^1.4.0
|
||||
'@umijs/ssr-darkreader': ^4.9.45
|
||||
'@vueuse/core': ^8.7.3
|
||||
async-validator: ^4.1.1
|
||||
@ -85,13 +85,13 @@ importers:
|
||||
'@layui/icons-vue': link:../icons
|
||||
'@layui/layer-vue': link:../layer
|
||||
'@umijs/ssr-darkreader': 4.9.45
|
||||
'@vueuse/core': 8.7.3
|
||||
'@vueuse/core': 8.7.3_vue@3.2.37
|
||||
async-validator: 4.1.1
|
||||
cropperjs: 1.5.12
|
||||
dayjs: 1.11.0
|
||||
evtd: 0.2.3
|
||||
uuid: 8.3.2
|
||||
vue-i18n: 9.1.10
|
||||
vue-i18n: 9.1.10_vue@3.2.37
|
||||
|
||||
package/document-component:
|
||||
specifiers:
|
||||
@ -114,12 +114,12 @@ importers:
|
||||
vue-i18n: ^9.1.10
|
||||
vue-router: ^4.0.15
|
||||
dependencies:
|
||||
'@vueuse/core': 8.7.3
|
||||
'@vueuse/core': 8.7.3_vue@3.2.37
|
||||
axios: 0.27.2
|
||||
pinia: 2.0.14_typescript@4.7.3
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14
|
||||
vue-i18n: 9.1.10
|
||||
vue-router: 4.0.16
|
||||
pinia: 2.0.14_typescript@4.7.3+vue@3.2.37
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14+vue@3.2.37
|
||||
vue-i18n: 9.1.10_vue@3.2.37
|
||||
vue-router: 4.0.16_vue@3.2.37
|
||||
devDependencies:
|
||||
'@types/markdown-it': 12.2.3
|
||||
'@types/markdown-it-container': 2.0.5
|
||||
@ -131,7 +131,7 @@ importers:
|
||||
rimraf: 3.0.2
|
||||
rollup: 2.75.5
|
||||
typescript: 4.7.3
|
||||
vite: 2.9.8
|
||||
vite: 2.9.8_less@4.1.2
|
||||
vite-plugin-md: 0.13.1_vite@2.9.8
|
||||
|
||||
package/document-layer:
|
||||
@ -154,12 +154,12 @@ importers:
|
||||
vue-i18n: ^9.1.10
|
||||
vue-router: ^4.0.15
|
||||
dependencies:
|
||||
'@vueuse/core': 8.7.3
|
||||
'@vueuse/core': 8.7.3_vue@3.2.37
|
||||
axios: 0.27.2
|
||||
pinia: 2.0.14_typescript@4.7.3
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14
|
||||
vue-i18n: 9.1.10
|
||||
vue-router: 4.0.16
|
||||
pinia: 2.0.14_typescript@4.7.3+vue@3.2.37
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14+vue@3.2.37
|
||||
vue-i18n: 9.1.10_vue@3.2.37
|
||||
vue-router: 4.0.16_vue@3.2.37
|
||||
devDependencies:
|
||||
'@types/markdown-it': 12.2.3
|
||||
'@types/markdown-it-container': 2.0.5
|
||||
@ -170,7 +170,7 @@ importers:
|
||||
rimraf: 3.0.2
|
||||
rollup: 2.75.5
|
||||
typescript: 4.7.3
|
||||
vite: 2.9.8
|
||||
vite: 2.9.8_less@4.1.2
|
||||
vite-plugin-md: 0.13.1_vite@2.9.8
|
||||
|
||||
package/icons:
|
||||
@ -180,7 +180,7 @@ importers:
|
||||
specifiers:
|
||||
'@babel/plugin-transform-runtime': ^7.18.5
|
||||
devDependencies:
|
||||
'@babel/plugin-transform-runtime': 7.18.5
|
||||
'@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.17.9
|
||||
|
||||
packages:
|
||||
|
||||
@ -254,18 +254,6 @@ packages:
|
||||
'@babel/types': 7.17.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets/7.17.7:
|
||||
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.17.7
|
||||
'@babel/helper-validator-option': 7.16.7
|
||||
browserslist: 4.20.2
|
||||
semver: 6.3.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@ -308,23 +296,6 @@ packages:
|
||||
regexpu-core: 5.0.1
|
||||
dev: true
|
||||
|
||||
/@babel/helper-define-polyfill-provider/0.3.1:
|
||||
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.4.0-0
|
||||
dependencies:
|
||||
'@babel/helper-compilation-targets': 7.17.7
|
||||
'@babel/helper-module-imports': 7.16.7
|
||||
'@babel/helper-plugin-utils': 7.16.7
|
||||
'@babel/traverse': 7.17.9
|
||||
debug: 4.3.4
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.22.0
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
|
||||
peerDependencies:
|
||||
@ -1144,17 +1115,18 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.16.7
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-runtime/7.18.5:
|
||||
/@babel/plugin-transform-runtime/7.18.5_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.17.9
|
||||
'@babel/helper-module-imports': 7.16.7
|
||||
'@babel/helper-plugin-utils': 7.17.12
|
||||
babel-plugin-polyfill-corejs2: 0.3.1
|
||||
babel-plugin-polyfill-corejs3: 0.5.2
|
||||
babel-plugin-polyfill-regenerator: 0.3.1
|
||||
babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.9
|
||||
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.9
|
||||
babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.9
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -1483,7 +1455,7 @@ packages:
|
||||
'@types/node': 16.11.26
|
||||
chalk: 4.1.2
|
||||
cosmiconfig: 7.0.1
|
||||
cosmiconfig-typescript-loader: 1.0.7_tc7dbwo3rf7rurohhq5w5m2a4i
|
||||
cosmiconfig-typescript-loader: 1.0.7_98be30d9db897f1a45c73c3b6eb340e2
|
||||
lodash: 4.17.21
|
||||
resolve-from: 5.0.0
|
||||
typescript: 4.7.3
|
||||
@ -1695,7 +1667,7 @@ packages:
|
||||
fastq: 1.13.0
|
||||
dev: true
|
||||
|
||||
/@rollup/plugin-babel/5.3.1_hgifciwidddhnedalyprixjsri:
|
||||
/@rollup/plugin-babel/5.3.1_@babel+core@7.17.9+rollup@2.75.5:
|
||||
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
|
||||
engines: {node: '>= 10.0.0'}
|
||||
peerDependencies:
|
||||
@ -1797,7 +1769,7 @@ packages:
|
||||
resolution: {integrity: sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==}
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/eslint-plugin/5.17.0_5rdn4wjq2cbymldojl25s4gqsy:
|
||||
/@typescript-eslint/eslint-plugin/5.17.0_ec46de5930d083862c6e4af5d970d096:
|
||||
resolution: {integrity: sha512-qVstvQilEd89HJk3qcbKt/zZrfBZ+9h2ynpAGlWjWiizA7m/MtLT9RoX6gjtpE500vfIg8jogAkDzdCxbsFASQ==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1808,10 +1780,10 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/parser': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/scope-manager': 5.17.0
|
||||
'@typescript-eslint/type-utils': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/utils': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/type-utils': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/utils': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
debug: 4.3.4
|
||||
eslint: 8.12.0
|
||||
functional-red-black-tree: 1.0.1
|
||||
@ -1824,7 +1796,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/parser/5.17.0_x66lnsojg54lmfpjeg6pogs53i:
|
||||
/@typescript-eslint/parser/5.17.0_eslint@8.12.0+typescript@4.7.3:
|
||||
resolution: {integrity: sha512-aRzW9Jg5Rlj2t2/crzhA2f23SIYFlF9mchGudyP0uiD6SenIxzKoLjwzHbafgHn39dNV/TV7xwQkLfFTZlJ4ig==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1852,7 +1824,7 @@ packages:
|
||||
'@typescript-eslint/visitor-keys': 5.17.0
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/type-utils/5.17.0_x66lnsojg54lmfpjeg6pogs53i:
|
||||
/@typescript-eslint/type-utils/5.17.0_eslint@8.12.0+typescript@4.7.3:
|
||||
resolution: {integrity: sha512-3hU0RynUIlEuqMJA7dragb0/75gZmwNwFf/QJokWzPehTZousP/MNifVSgjxNcDCkM5HI2K22TjQWUmmHUINSg==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1862,7 +1834,7 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/utils': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
debug: 4.3.4
|
||||
eslint: 8.12.0
|
||||
tsutils: 3.21.0_typescript@4.7.3
|
||||
@ -1897,7 +1869,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/utils/5.17.0_x66lnsojg54lmfpjeg6pogs53i:
|
||||
/@typescript-eslint/utils/5.17.0_eslint@8.12.0+typescript@4.7.3:
|
||||
resolution: {integrity: sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -2002,6 +1974,7 @@ packages:
|
||||
'@vue/runtime-core': 3.2.37
|
||||
'@vue/shared': 3.2.37
|
||||
csstype: 2.6.20
|
||||
dev: false
|
||||
|
||||
/@vue/server-renderer/3.2.37_vue@3.2.37:
|
||||
resolution: {integrity: sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==}
|
||||
@ -2015,7 +1988,7 @@ packages:
|
||||
/@vue/shared/3.2.37:
|
||||
resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==}
|
||||
|
||||
/@vueuse/core/8.7.3:
|
||||
/@vueuse/core/8.7.3_vue@3.2.37:
|
||||
resolution: {integrity: sha512-jpBnyG9b4wXgk0Dz3I71lfhD0o53t1tZR+NoAQ+17zJy7MP/VDfGIkq8GcqpDwmptLCmGiGVipkPbWmDGMic8Q==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
@ -2027,15 +2000,16 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@vueuse/metadata': 8.7.3
|
||||
'@vueuse/shared': 8.7.3
|
||||
vue-demi: 0.12.5
|
||||
'@vueuse/shared': 8.7.3_vue@3.2.37
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
dev: false
|
||||
|
||||
/@vueuse/metadata/8.7.3:
|
||||
resolution: {integrity: sha512-spf9kgCsBEFbQb90I6SIqAWh1yP5T1JoJGj+/04+VTMIHXKzn3iecmHUalg8QEOCPNtnFQGNEw5OLg0L39eizg==}
|
||||
dev: false
|
||||
|
||||
/@vueuse/shared/8.7.3:
|
||||
/@vueuse/shared/8.7.3_vue@3.2.37:
|
||||
resolution: {integrity: sha512-PMc/h6cEakJ4+5VuNUGi7RnbA6CkLvtG2230x8w3zYJpW1P6Qphh9+dFFvHn7TX+RlaicF5ND0RX1NxWmAoW7w==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
@ -2046,7 +2020,8 @@ packages:
|
||||
vue:
|
||||
optional: true
|
||||
dependencies:
|
||||
vue-demi: 0.12.5
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
dev: false
|
||||
|
||||
/JSONStream/1.3.5:
|
||||
@ -2175,18 +2150,6 @@ packages:
|
||||
object.assign: 4.1.2
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs2/0.3.1:
|
||||
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.17.7
|
||||
'@babel/helper-define-polyfill-provider': 0.3.1
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
|
||||
peerDependencies:
|
||||
@ -2200,17 +2163,6 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs3/0.5.2:
|
||||
resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-define-polyfill-provider': 0.3.1
|
||||
core-js-compat: 3.21.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
|
||||
peerDependencies:
|
||||
@ -2223,16 +2175,6 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-regenerator/0.3.1:
|
||||
resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-define-polyfill-provider': 0.3.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
|
||||
peerDependencies:
|
||||
@ -2472,7 +2414,7 @@ packages:
|
||||
semver: 7.0.0
|
||||
dev: true
|
||||
|
||||
/cosmiconfig-typescript-loader/1.0.7_tc7dbwo3rf7rurohhq5w5m2a4i:
|
||||
/cosmiconfig-typescript-loader/1.0.7_98be30d9db897f1a45c73c3b6eb340e2:
|
||||
resolution: {integrity: sha512-PxBM//vKuwRmo7xqamKDL+q/FvGig+wKS5pOzaXO/DJbtNzbIYi1bDk251pftEdPRRetEN8RSIyF35n8zLtibA==}
|
||||
engines: {node: '>=12', npm: '>=6'}
|
||||
peerDependencies:
|
||||
@ -2481,7 +2423,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/node': 16.11.26
|
||||
cosmiconfig: 7.0.1
|
||||
ts-node: 10.7.0_tc7dbwo3rf7rurohhq5w5m2a4i
|
||||
ts-node: 10.7.0_98be30d9db897f1a45c73c3b6eb340e2
|
||||
typescript: 4.7.3
|
||||
transitivePeerDependencies:
|
||||
- '@swc/core'
|
||||
@ -2518,6 +2460,7 @@ packages:
|
||||
|
||||
/csstype/2.6.20:
|
||||
resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
|
||||
dev: false
|
||||
|
||||
/cz-conventional-changelog/3.2.0:
|
||||
resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==}
|
||||
@ -2576,11 +2519,6 @@ packages:
|
||||
|
||||
/debug/3.2.7:
|
||||
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
||||
peerDependencies:
|
||||
supports-color: '*'
|
||||
peerDependenciesMeta:
|
||||
supports-color:
|
||||
optional: true
|
||||
dependencies:
|
||||
ms: 2.1.2
|
||||
dev: true
|
||||
@ -2935,7 +2873,7 @@ packages:
|
||||
eslint: 8.12.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-prettier/4.0.0_6ler2d2uceywpuv5sikklk22gy:
|
||||
/eslint-plugin-prettier/4.0.0_f2c91d0f54113167d2bd9214a5ab5a36:
|
||||
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
peerDependencies:
|
||||
@ -3745,8 +3683,6 @@ packages:
|
||||
mime: 1.6.0
|
||||
needle: 2.9.1
|
||||
source-map: 0.6.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/levn/0.4.1:
|
||||
@ -3990,8 +3926,6 @@ packages:
|
||||
debug: 3.2.7
|
||||
iconv-lite: 0.4.24
|
||||
sax: 1.2.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
@ -4180,7 +4114,7 @@ packages:
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/pinia-plugin-persist/1.0.0_pinia@2.0.14:
|
||||
/pinia-plugin-persist/1.0.0_pinia@2.0.14+vue@3.2.37:
|
||||
resolution: {integrity: sha512-M4hBBd8fz/GgNmUPaaUsC29y1M09lqbXrMAHcusVoU8xlQi1TqgkWnnhvMikZwr7Le/hVyMx8KUcumGGrR6GVw==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.0.0
|
||||
@ -4190,11 +4124,12 @@ packages:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
dependencies:
|
||||
pinia: 2.0.14_typescript@4.7.3
|
||||
vue-demi: 0.12.5
|
||||
pinia: 2.0.14_typescript@4.7.3+vue@3.2.37
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
dev: false
|
||||
|
||||
/pinia/2.0.14_typescript@4.7.3:
|
||||
/pinia/2.0.14_typescript@4.7.3+vue@3.2.37:
|
||||
resolution: {integrity: sha512-0nPuZR4TetT/WcLN+feMSjWJku3SQU7dBbXC6uw+R6FLQJCsg+/0pzXyD82T1FmAYe0lsx+jnEDQ1BLgkRKlxA==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.4.0
|
||||
@ -4208,7 +4143,8 @@ packages:
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.1.4
|
||||
typescript: 4.7.3
|
||||
vue-demi: 0.12.5
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
dev: false
|
||||
|
||||
/postcss/8.4.13:
|
||||
@ -4705,7 +4641,7 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/ts-node/10.7.0_tc7dbwo3rf7rurohhq5w5m2a4i:
|
||||
/ts-node/10.7.0_98be30d9db897f1a45c73c3b6eb340e2:
|
||||
resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
@ -4785,6 +4721,7 @@ packages:
|
||||
resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
|
||||
engines: {node: '>=4.2.0'}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/uc.micro/1.0.6:
|
||||
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
|
||||
@ -4871,7 +4808,7 @@ packages:
|
||||
'@vue/runtime-core': 3.2.37
|
||||
gray-matter: 4.0.3
|
||||
markdown-it: 13.0.1
|
||||
vite: 2.9.8
|
||||
vite: 2.9.8_less@4.1.2
|
||||
dev: true
|
||||
|
||||
/vite/2.9.12_less@4.1.2:
|
||||
@ -4899,7 +4836,7 @@ packages:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/vite/2.9.8:
|
||||
/vite/2.9.8_less@4.1.2:
|
||||
resolution: {integrity: sha512-zsBGwn5UT3YS0NLSJ7hnR54+vUKfgzMUh/Z9CxF1YKEBVIe213+63jrFLmZphgGI5zXwQCSmqIdbPuE8NJywPw==}
|
||||
engines: {node: '>=12.2.0'}
|
||||
hasBin: true
|
||||
@ -4916,6 +4853,7 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
esbuild: 0.14.31
|
||||
less: 4.1.2
|
||||
postcss: 8.4.13
|
||||
resolve: 1.22.0
|
||||
rollup: 2.75.5
|
||||
@ -4923,7 +4861,7 @@ packages:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/vue-demi/0.12.5:
|
||||
/vue-demi/0.12.5_vue@3.2.37:
|
||||
resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
@ -4934,6 +4872,8 @@ packages:
|
||||
peerDependenciesMeta:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
dependencies:
|
||||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue-eslint-parser/8.3.0_eslint@8.12.0:
|
||||
@ -4954,7 +4894,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/vue-i18n/9.1.10:
|
||||
/vue-i18n/9.1.10_vue@3.2.37:
|
||||
resolution: {integrity: sha512-jpr7gV5KPk4n+sSPdpZT8Qx3XzTcNDWffRlHV/cT2NUyEf+sEgTTmLvnBAibjOFJ0zsUyZlVTAWH5DDnYep+1g==}
|
||||
engines: {node: '>= 10'}
|
||||
peerDependencies:
|
||||
@ -4964,14 +4904,16 @@ packages:
|
||||
'@intlify/shared': 9.1.10
|
||||
'@intlify/vue-devtools': 9.1.10
|
||||
'@vue/devtools-api': 6.1.4
|
||||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue-router/4.0.16:
|
||||
/vue-router/4.0.16_vue@3.2.37:
|
||||
resolution: {integrity: sha512-JcO7cb8QJLBWE+DfxGUL3xUDOae/8nhM1KVdnudadTAORbuxIC/xAydC5Zr/VLHUDQi1ppuTF5/rjBGzgzrJNA==}
|
||||
peerDependencies:
|
||||
vue: ^3.2.0
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.1.4
|
||||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue/3.2.37:
|
||||
@ -4982,6 +4924,7 @@ packages:
|
||||
'@vue/runtime-dom': 3.2.37
|
||||
'@vue/server-renderer': 3.2.37_vue@3.2.37
|
||||
'@vue/shared': 3.2.37
|
||||
dev: false
|
||||
|
||||
/which/1.3.1:
|
||||
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
|
||||
|
Loading…
Reference in New Issue
Block a user