提交 41410161 编写于 作者: V vben

chore: lint fix

上级 21bae3ad
......@@ -86,8 +86,10 @@ specifiers:
stylelint-config-html: ^1.0.0
stylelint-config-prettier: ^9.0.3
stylelint-config-recommended: ^7.0.0
stylelint-config-recommended-vue: ^1.3.0
stylelint-config-standard: ^25.0.0
stylelint-order: ^5.0.0
stylelint-processor-html: ^1.0.0
tinymce: ^5.10.3
ts-node: ^10.7.0
typescript: ^4.6.2
......@@ -205,8 +207,10 @@ devDependencies:
stylelint-config-html: 1.0.0_f552817e5b8b1b7dca381d844218922e
stylelint-config-prettier: 9.0.3_stylelint@14.6.0
stylelint-config-recommended: 7.0.0_stylelint@14.6.0
stylelint-config-recommended-vue: 1.3.0_f552817e5b8b1b7dca381d844218922e
stylelint-config-standard: 25.0.0_stylelint@14.6.0
stylelint-order: 5.0.0_stylelint@14.6.0
stylelint-processor-html: 1.0.0
ts-node: 10.7.0_e79e62fe450383fd2d418267dc75e645
typescript: 4.6.2
vite: 2.9.0-beta.3_less@4.1.2
......@@ -9086,6 +9090,20 @@ packages:
stylelint: 14.6.0
dev: true
/stylelint-config-recommended-vue/1.3.0_f552817e5b8b1b7dca381d844218922e:
resolution: {integrity: sha512-UEY/MZlBO2yiQdZoJm33trtqJ1MEDzBADhIAM0pTvfYbyXe5KwdbTtmALHETG1cXfDxuuUbJTvL9uENMy2Rjug==}
engines: {node: ^12 || >=14}
peerDependencies:
postcss-html: ^1.0.0
stylelint: '>=14.0.0'
dependencies:
postcss-html: 1.3.0
semver: 7.3.5
stylelint: 14.6.0
stylelint-config-html: 1.0.0_f552817e5b8b1b7dca381d844218922e
stylelint-config-recommended: 7.0.0_stylelint@14.6.0
dev: true
/stylelint-config-recommended/7.0.0_stylelint@14.6.0:
resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==}
peerDependencies:
......@@ -9113,6 +9131,13 @@ packages:
stylelint: 14.6.0
dev: true
/stylelint-processor-html/1.0.0:
resolution: {integrity: sha1-aJK2soVaRfApHNhFGR1pCBMKKRg=}
deprecated: 'Please use stylelint-processor-arbitrary-tags https://github.com/mapbox/stylelint-processor-arbitrary-tags '
dependencies:
htmlparser2: 3.10.1
dev: true
/stylelint/14.6.0:
resolution: {integrity: sha512-Xk2sqXYPi9nXgq70nBiZkbQm/QOOKd83NBTaBE1fXEWAEeRlgHnKC/E7kJFlT6K0SaNDOK5yIvR7GFPGsNLuOg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
......
......@@ -8,7 +8,7 @@
:trigger="['click']"
:dropMenuList="localeList"
:selectedKeys="selectedKeys"
@menuEvent="handleMenuEvent"
@menu-event="handleMenuEvent"
overlayClassName="app-locale-picker-overlay"
>
<span class="cursor-pointer flex items-center">
......
......@@ -22,7 +22,7 @@
<CopperModal
@register="register"
@uploadSuccess="handleUploadSuccess"
@upload-success="handleUploadSuccess"
:uploadApi="uploadApi"
:src="sourceValue"
/>
......
......@@ -31,18 +31,7 @@
v-for="icon in getPaginationList"
:key="icon"
:class="currentSelect === icon ? 'border border-primary' : ''"
class="
p-2
w-1/8
cursor-pointer
mr-1
mt-1
flex
justify-center
items-center
border border-solid
hover:border-primary
"
class="p-2 w-1/8 cursor-pointer mr-1 mt-1 flex justify-center items-center border border-solid hover:border-primary"
@click="handleClick(icon)"
:title="icon"
>
......
......@@ -4,7 +4,7 @@
</template>
<script lang="ts" setup>
import { computed,defineProps } from 'vue';
import { computed, defineProps } from 'vue';
import showdown from 'showdown';
const converter = new showdown.Converter();
......
......@@ -6,7 +6,7 @@
:openKeys="getOpenKeys"
:inlineIndent="inlineIndent"
:theme="theme"
@openChange="handleOpenChange"
@open-change="handleOpenChange"
:class="getMenuClass"
@click="handleMenuClick"
:subMenuOpenDelay="0.2"
......
......@@ -21,7 +21,7 @@
:overlayClassName="`${prefixCls}-menu-popover`"
v-else
:visible="getIsOpend"
@visibleChange="handleVisibleChange"
@visible-change="handleVisibleChange"
:overlayStyle="getOverlayStyle"
:align="{ offset: [0, 0] }"
>
......
......@@ -6,7 +6,7 @@
<Popover
placement="bottomLeft"
trigger="click"
@visibleChange="handleVisibleChange"
@visible-change="handleVisibleChange"
:overlayClassName="`${prefixCls}__cloumn-list`"
:getPopupContainer="getPopupContainer"
>
......
......@@ -18,6 +18,7 @@
name: 'DropdownMenuItem',
components: { MenuItem: Menu.Item, Icon },
props: {
// eslint-disable-next-line
key: propTypes.string,
text: propTypes.string,
icon: propTypes.string,
......
......@@ -66,7 +66,7 @@
:items="childrenMenus"
:theme="getMenuTheme"
mixSider
@menuClick="handleMenuClick"
@menu-click="handleMenuClick"
/>
</ScrollContainer>
<div
......
<template>
<Dropdown :dropMenuList="getDropMenuList" :trigger="getTrigger" @menuEvent="handleMenuEvent">
<Dropdown :dropMenuList="getDropMenuList" :trigger="getTrigger" @menu-event="handleMenuEvent">
<div :class="`${prefixCls}__info`" @contextmenu="handleContext" v-if="getIsTabs">
<span class="ml-1">{{ getTitle }}</span>
</div>
......
......@@ -3,7 +3,7 @@
:tab-list="tabListTitle"
v-bind="$attrs"
:active-tab-key="activeKey"
@tabChange="onTabChange"
@tab-change="onTabChange"
>
<p v-if="activeKey === 'tab1'">
<VisitAnalysis />
......
<template>
<PageWrapper title="卡片列表示例" content="基础封装">
<CardList :params="params" :api="demoListApi" @getMethod="getMethod" @delete="handleDel">
<CardList :params="params" :api="demoListApi" @get-method="getMethod" @delete="handleDel">
<template #header>
<Button type="primary" color="error"> 按钮1 </Button>
<Button type="primary" color="success"> 按钮2 </Button>
......
<template>
<PageWrapper title="点内外部触发事件">
<ClickOutSide @clickOutside="handleClickOutside" class="flex justify-center">
<ClickOutSide @click-outside="handleClickOutside" class="flex justify-center">
<div @click="innerClick" class="demo-box">
{{ text }}
</div>
......
......@@ -5,23 +5,7 @@
>
<div
:class="`${prefixCls}__unlock`"
class="
absolute
top-0
left-1/2
flex
pt-5
h-16
items-center
justify-center
sm:text-md
xl:text-xl
text-white
flex-col
cursor-pointer
transform
translate-x-1/2
"
class="absolute top-0 left-1/2 flex pt-5 h-16 items-center justify-center sm:text-md xl:text-xl text-white flex-col cursor-pointer transform translate-x-1/2"
@click="handleShowForm(false)"
v-show="showDate"
>
......
......@@ -32,23 +32,7 @@
<div class="flex w-full h-full py-5 xl:h-auto xl:py-0 xl:my-0 xl:w-6/12">
<div
:class="`${prefixCls}-form`"
class="
relative
w-full
px-5
py-8
mx-auto
my-auto
rounded-md
shadow-md
xl:ml-16 xl:bg-transparent
sm:px-8
xl:p-4 xl:shadow-none
sm:w-3/4
lg:w-2/4
xl:w-auto
enter-x
"
class="relative w-full px-5 py-8 mx-auto my-auto rounded-md shadow-md xl:ml-16 xl:bg-transparent sm:px-8 xl:p-4 xl:shadow-none sm:w-3/4 lg:w-2/4 xl:w-auto enter-x"
>
<LoginForm />
<ForgetPasswordForm />
......
module.exports = {
root: true,
plugins: ['stylelint-order'],
customSyntax: 'postcss-html',
extends: ['stylelint-config-standard', 'stylelint-config-prettier'],
processors: ['stylelint-processor-html'],
extends: [
'stylelint-config-standard',
'stylelint-config-prettier',
'stylelint-config-recommended-vue/less',
],
rules: {
'selector-class-pattern': null,
'selector-pseudo-class-no-unknown': [
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册