chore: bump prettier v3 and format all code (#12111)

* chore: bump prettier v3 and format all code

* chore: mjs config

* chore: revert

* chore: revert

* chore: update lock
This commit is contained in:
neverland 2023-07-22 14:14:14 +08:00 committed by GitHub
parent b601ca1e0b
commit 3dcc92a5c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
209 changed files with 565 additions and 543 deletions

View File

@ -1,4 +0,0 @@
{
"singleQuote": true,
"proseWrap": "never"
}

View File

@ -25,6 +25,6 @@
"eslint": "^8.31.0", "eslint": "^8.31.0",
"husky": "^8.0.1", "husky": "^8.0.1",
"nano-staged": "^0.8.0", "nano-staged": "^0.8.0",
"prettier": "^2.7.1" "prettier": "^3.0.0"
} }
} }

View File

@ -69,14 +69,14 @@ export class VanGenerator {
// see https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows // see https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows
const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace( const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace(
/\\/g, /\\/g,
'/' '/',
); );
const templateFiles = glob.sync( const templateFiles = glob.sync(
join(templatePath, '**', '*').replace(/\\/g, '/'), join(templatePath, '**', '*').replace(/\\/g, '/'),
{ {
dot: true, dot: true,
} },
); );
templateFiles.forEach((filePath) => { templateFiles.forEach((filePath) => {
@ -109,8 +109,8 @@ export class VanGenerator {
consola.success(`Successfully created ${color.yellow(name)}.`); consola.success(`Successfully created ${color.yellow(name)}.`);
consola.success( consola.success(
`Run ${color.yellow( `Run ${color.yellow(
`cd ${name} && git init && yarn && yarn dev` `cd ${name} && git init && yarn && yarn dev`,
)} to start development!` )} to start development!`,
); );
} }
} }

View File

@ -3900,7 +3900,7 @@ type CascaderOption = {
const makeOption = ( const makeOption = (
text: string, text: string,
value: string, value: string,
children?: CascaderOption[] children?: CascaderOption[],
): CascaderOption => ({ ): CascaderOption => ({
text, text,
value, value,

View File

@ -35,7 +35,7 @@ const transformSFC = (code, path) => {
if (descriptor.script) { if (descriptor.script) {
const content = descriptor.script.content.replace( const content = descriptor.script.content.replace(
'export default', 'export default',
'const script =' 'const script =',
); );
output.push(content); output.push(content);
} else if (descriptor.scriptSetup) { } else if (descriptor.scriptSetup) {
@ -88,7 +88,7 @@ module.exports = {
code = transformJsx(code, path); code = transformJsx(code, path);
} }
return { return {
code: transformScript(code) code: transformScript(code),
}; };
}, },
}; };

View File

@ -14,14 +14,12 @@ function getPostcssPlugins(rootConfig) {
const plugins = rootConfig.plugins || []; const plugins = rootConfig.plugins || [];
if (Array.isArray(plugins)) { if (Array.isArray(plugins)) {
const hasAutoprefixerPlugin = plugins.find( const hasAutoprefixerPlugin = plugins.find((plugin) => {
(plugin) => { if (typeof plugin === 'object') {
if (typeof plugin === 'object') { return plugin.postcssPlugin === 'autoprefixer';
return plugin.postcssPlugin === 'autoprefixer';
}
return plugin === 'autoprefixer';
} }
); return plugin === 'autoprefixer';
});
if (hasAutoprefixerPlugin) { if (hasAutoprefixerPlugin) {
return plugins; return plugins;
} }

View File

@ -81,7 +81,7 @@
"picocolors": "^1.0.0", "picocolors": "^1.0.0",
"postcss": "^8.4.23", "postcss": "^8.4.23",
"postcss-load-config": "^4.0.1", "postcss-load-config": "^4.0.1",
"prettier": "^2.7.1", "prettier": "^3.0.0",
"release-it": "^15.4.1", "release-it": "^15.4.1",
"terser": "^5.16.1", "terser": "^5.16.1",
"transliteration": "^2.3.5", "transliteration": "^2.3.5",

View File

@ -40,7 +40,7 @@ export function syncPathToParent() {
type: 'replacePath', type: 'replacePath',
value: getCurrentDir(), value: getCurrentDir(),
}, },
'*' '*',
); );
} }
@ -53,7 +53,7 @@ export function syncPathToChild() {
type: 'replacePath', type: 'replacePath',
value: getCurrentDir(), value: getCurrentDir(),
}, },
'*' '*',
); );
}); });
} }
@ -68,7 +68,7 @@ export function syncThemeToChild(theme) {
type: 'updateTheme', type: 'updateTheme',
value: theme, value: theme,
}, },
'*' '*',
); );
}); });
} }

View File

@ -6,9 +6,20 @@ body {
overflow-x: auto; overflow-x: auto;
color: var(--van-doc-text-color-2); color: var(--van-doc-text-color-2);
font-size: 16px; font-size: 16px;
font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', font-family:
Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Open Sans',
'Hiragino Sans GB', 'Microsoft Yahei', sans-serif; -apple-system,
BlinkMacSystemFont,
'Helvetica Neue',
Helvetica,
Segoe UI,
Arial,
Roboto,
'PingFang SC',
'miui',
'Hiragino Sans GB',
'Microsoft Yahei',
sans-serif;
background-color: var(--van-doc-background); background-color: var(--van-doc-background);
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }

View File

@ -107,11 +107,11 @@ export default {
const navItems = this.config.nav.reduce( const navItems = this.config.nav.reduce(
(result, nav) => [...result, ...nav.items], (result, nav) => [...result, ...nav.items],
[] [],
); );
const current = navItems.find( const current = navItems.find(
(item) => item.path === this.$route.meta.name (item) => item.path === this.$route.meta.name,
); );
if (current && current.title) { if (current && current.title) {

View File

@ -108,7 +108,9 @@ export default {
cursor: pointer; cursor: pointer;
opacity: 0.6; opacity: 0.6;
outline: none; outline: none;
transition: opacity 0.2s, background 0.2s; transition:
opacity 0.2s,
background 0.2s;
// expand click area // expand click area
&::after { &::after {

View File

@ -142,7 +142,7 @@ export default {
const action = val ? 'add' : 'remove'; const action = val ? 'add' : 'remove';
document.body[`${action}EventListener`]( document.body[`${action}EventListener`](
'click', 'click',
this.checkHideVersionPop this.checkHideVersionPop,
); );
this.showVersionPop = val; this.showVersionPop = val;

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -15,10 +15,7 @@
<meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" /> <meta http-equiv="Expires" content="0" />
<% if (headHtml) { %> <% if (headHtml) { %> <%= headHtml %> <% } %> <% if (baiduAnalytics) { %>
<%= headHtml %>
<% } %>
<% if (baiduAnalytics) { %>
<script> <script>
var _hmt = _hmt || []; var _hmt = _hmt || [];
(function () { (function () {

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -15,16 +15,12 @@
<meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" /> <meta http-equiv="Expires" content="0" />
<% if (headHtml) { %> <% if (headHtml) { %> <%= headHtml %> <% } %> <% if (enableVConsole) { %>
<%= headHtml %>
<% } %>
<% if (enableVConsole) { %>
<script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script> <script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
<script> <script>
var vConsole = new window.VConsole(); var vConsole = new window.VConsole();
</script> </script>
<% } %> <% } %> <% if (baiduAnalytics) { %>
<% if (baiduAnalytics) { %>
<script> <script>
// avoid to load analytics in iframe // avoid to load analytics in iframe
if (window.top === window) { if (window.top === window) {

View File

@ -31,17 +31,17 @@ export default {
if (darkModeClass) { if (darkModeClass) {
document.documentElement.classList.toggle( document.documentElement.classList.toggle(
darkModeClass, darkModeClass,
newVal === 'dark' newVal === 'dark',
); );
} }
if (lightModeClass) { if (lightModeClass) {
document.documentElement.classList.toggle( document.documentElement.classList.toggle(
lightModeClass, lightModeClass,
newVal === 'light' newVal === 'light',
); );
} }
}, },
{ immediate: true } { immediate: true },
); );
}, },
}; };

View File

@ -27,27 +27,27 @@ program
.description('Run unit tests through jest') .description('Run unit tests through jest')
.option( .option(
'--watch', '--watch',
'Watch files for changes and rerun tests related to changed files' 'Watch files for changes and rerun tests related to changed files',
) )
.option( .option(
'--clearCache', '--clearCache',
'Clears the configured Jest cache directory and then exits' 'Clears the configured Jest cache directory and then exits',
) )
.option( .option(
'--changedSince <changedSince>', '--changedSince <changedSince>',
'Runs tests related to the changes since the provided branch or commit hash' 'Runs tests related to the changes since the provided branch or commit hash',
) )
.option( .option(
'--logHeapUsage', '--logHeapUsage',
'Logs the heap usage after every test. Useful to debug memory leaks' 'Logs the heap usage after every test. Useful to debug memory leaks',
) )
.option( .option(
'--runInBand', '--runInBand',
'Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests' 'Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests',
) )
.option( .option(
'--updateSnapshot', '--updateSnapshot',
'Re-record every snapshot that fails during this test run' 'Re-record every snapshot that fails during this test run',
) )
.option('--debug', 'Print debugging info about your Jest config') .option('--debug', 'Print debugging info about your Jest config')
.action(async (options) => { .action(async (options) => {

View File

@ -66,7 +66,7 @@ async function preCompileDir(dir: string) {
return compileSfc(filePath); return compileSfc(filePath);
} }
return Promise.resolve(); return Promise.resolve();
}) }),
); );
} }
@ -78,7 +78,7 @@ async function compileDir(dir: string, format: Format) {
return isDir(filePath) return isDir(filePath)
? compileDir(filePath, format) ? compileDir(filePath, format)
: compileFile(filePath, format); : compileFile(filePath, format);
}) }),
); );
} }

View File

@ -64,7 +64,7 @@ export async function changelog(): Promise<void> {
headerPartial, headerPartial,
commitPartial, commitPartial,
transform, transform,
} },
) )
.pipe(createWriteStream(DIST_FILE)) .pipe(createWriteStream(DIST_FILE))
.on('close', () => { .on('close', () => {

View File

@ -11,7 +11,7 @@ type RunCommandMessages = {
function runCommand( function runCommand(
cmd: string, cmd: string,
options: string[], options: string[],
messages: RunCommandMessages messages: RunCommandMessages,
) { ) {
const spinner = createSpinner(messages.start).start(); const spinner = createSpinner(messages.start).start();
@ -40,7 +40,7 @@ function eslint() {
start: 'Running eslint...', start: 'Running eslint...',
succeed: 'ESLint Passed.', succeed: 'ESLint Passed.',
failed: 'ESLint failed!', failed: 'ESLint failed!',
} },
); );
} }

View File

@ -39,6 +39,6 @@ const IMPORT_STYLE_RE = /import\s+?(?:(?:".*?")|(?:'.*?'))[\s]*?(?:;|$|)/g;
// "import 'a.less';" => "import 'a.css';" // "import 'a.less';" => "import 'a.css';"
export function replaceCSSImportExt(code: string) { export function replaceCSSImportExt(code: string) {
return code.replace(IMPORT_STYLE_RE, (str) => return code.replace(IMPORT_STYLE_RE, (str) =>
str.replace(`.${CSS_LANG}`, '.css') str.replace(`.${CSS_LANG}`, '.css'),
); );
} }

View File

@ -42,7 +42,7 @@ export function getComponents() {
} }
return false; return false;
}) }),
); );
} }
@ -65,7 +65,7 @@ export function camelize(str: string): string {
export function pascalize(str: string): string { export function pascalize(str: string): string {
return camelize(str).replace( return camelize(str).replace(
pascalizeRE, pascalizeRE,
(_, c1, c2) => c1.toUpperCase() + c2 (_, c1, c2) => c1.toUpperCase() + c2,
); );
} }
@ -116,7 +116,7 @@ export function smartOutputFile(filePath: string, content: string) {
export async function mergeCustomViteConfig( export async function mergeCustomViteConfig(
config: InlineConfig, config: InlineConfig,
mode: 'production' | 'development' mode: 'production' | 'development',
): Promise<InlineConfig> { ): Promise<InlineConfig> {
const vantConfig = getVantConfig(); const vantConfig = getVantConfig();
const configureVite = vantConfig.build?.configureVite; const configureVite = vantConfig.build?.configureVite;
@ -127,7 +127,7 @@ export async function mergeCustomViteConfig(
command: mode === 'development' ? 'serve' : 'build', command: mode === 'development' ? 'serve' : 'build',
}, },
undefined, undefined,
process.cwd() process.cwd(),
); );
if (configureVite) { if (configureVite) {

View File

@ -38,9 +38,9 @@ export async function compileBundles() {
build( build(
await mergeCustomViteConfig( await mergeCustomViteConfig(
getViteConfigForPackage(config), getViteConfigForPackage(config),
'production' 'production',
) ),
) ),
) ),
); );
} }

View File

@ -10,7 +10,7 @@ const { readFileSync, removeSync, outputFileSync } = fse;
export async function compileScript( export async function compileScript(
filePath: string, filePath: string,
format: Format format: Format,
): Promise<void> { ): Promise<void> {
if (filePath.includes('.d.ts')) { if (filePath.includes('.d.ts')) {
return; return;

View File

@ -127,7 +127,7 @@ export async function compileSfc(filePath: string): Promise<any> {
} }
outputFile(scriptFilePath, script).then(resolve); outputFile(scriptFilePath, script).then(resolve);
}) }),
); );
} }
@ -150,7 +150,7 @@ export async function compileSfc(filePath: string): Promise<any> {
// } // }
return outputFile(cssFilePath, styleSource); return outputFile(cssFilePath, styleSource);
}) }),
); );
return Promise.all(tasks); return Promise.all(tasks);

View File

@ -31,13 +31,13 @@ export async function compileSite(production = false) {
if (production) { if (production) {
const config = await mergeCustomViteConfig( const config = await mergeCustomViteConfig(
getViteConfigForSiteProd(), getViteConfigForSiteProd(),
'production' 'production',
); );
await build(config); await build(config);
} else { } else {
const config = await mergeCustomViteConfig( const config = await mergeCustomViteConfig(
getViteConfigForSiteDev(), getViteConfigForSiteDev(),
'development' 'development',
); );
const server = await createServer(config); const server = await createServer(config);
await server.listen(config.server?.port); await server.listen(config.server?.port);

View File

@ -81,7 +81,7 @@ function genEntry(params: {
} }
export function genComponentStyle( export function genComponentStyle(
options: { cache: boolean } = { cache: true } options: { cache: boolean } = { cache: true },
) { ) {
if (!options.cache) { if (!options.cache) {
const require = createRequire(import.meta.url); const require = createRequire(import.meta.url);

View File

@ -20,7 +20,7 @@ function getPathByName(name: string, pathResolver?: PathResolver) {
function genImports( function genImports(
names: string[], names: string[],
pathResolver?: PathResolver, pathResolver?: PathResolver,
namedExport?: boolean namedExport?: boolean,
): string { ): string {
return names return names
.map((name) => { .map((name) => {
@ -36,7 +36,7 @@ function genImports(
function genExports( function genExports(
names: string[], names: string[],
pathResolver?: PathResolver, pathResolver?: PathResolver,
namedExport?: boolean namedExport?: boolean,
): string { ): string {
if (namedExport) { if (namedExport) {
const exports = names const exports = names

View File

@ -38,7 +38,7 @@ function genConfig(demos: DemoItem[]) {
function demoFilter(nav: any[]) { function demoFilter(nav: any[]) {
return nav.filter((group) => { return nav.filter((group) => {
group.items = group.items.filter((item: any) => group.items = group.items.filter((item: any) =>
demoNames.includes(item.path) demoNames.includes(item.path),
); );
return group.items.length; return group.items.length;
}); });

View File

@ -106,13 +106,13 @@ export async function genStyleDepsMap() {
Object.keys(map).forEach((key) => { Object.keys(map).forEach((key) => {
map[key] = map[key].sort( map[key] = map[key].sort(
(a, b) => sequence.indexOf(a) - sequence.indexOf(b) (a, b) => sequence.indexOf(a) - sequence.indexOf(b),
); );
}); });
smartOutputFile( smartOutputFile(
STYLE_DEPS_JSON_FILE, STYLE_DEPS_JSON_FILE,
JSON.stringify({ map, sequence }, null, 2) JSON.stringify({ map, sequence }, null, 2),
); );
resolve(); resolve();

View File

@ -105,7 +105,7 @@ export function getDeps(filePath: string) {
export function replaceScriptImportExt( export function replaceScriptImportExt(
code: string, code: string,
filePath: string, filePath: string,
ext: string ext: string,
) { ) {
const imports = [...matchImports(code), ...matchExportFroms(code)]; const imports = [...matchImports(code), ...matchExportFroms(code)];
@ -132,7 +132,6 @@ export function replaceScriptImportExt(
return; return;
} }
const pathInfo = getPathByImport(line, filePath); const pathInfo = getPathByImport(line, filePath);
if (pathInfo) { if (pathInfo) {
@ -141,7 +140,7 @@ export function replaceScriptImportExt(
if (pathInfo.isIndex) { if (pathInfo.isIndex) {
const newLine = line.replace( const newLine = line.replace(
relativePath, relativePath,
`${relativePath}/index${ext}` `${relativePath}/index${ext}`,
); );
updateImport(index, newLine); updateImport(index, newLine);

View File

@ -77,7 +77,7 @@ function findTag(vueTags: VueTag[], name: string) {
export function formatter( export function formatter(
vueTags: VueTag[], vueTags: VueTag[],
articles: Articles, articles: Articles,
tagPrefix = '' tagPrefix = '',
) { ) {
if (!articles.length) { if (!articles.length) {
return; return;

View File

@ -36,7 +36,7 @@ export async function parseAndWrite(options: Options) {
const webTypes = genWebTypes(vueTags, options); const webTypes = genWebTypes(vueTags, options);
fse.outputFileSync( fse.outputFileSync(
join(options.outputDir, 'web-types.json'), join(options.outputDir, 'web-types.json'),
JSON.stringify(webTypes) JSON.stringify(webTypes),
); );
} }

View File

@ -2,7 +2,7 @@
export function toKebabCase(input: string): string { export function toKebabCase(input: string): string {
return input.replace( return input.replace(
/[A-Z]/g, /[A-Z]/g,
(val, index) => (index === 0 ? '' : '-') + val.toLowerCase() (val, index) => (index === 0 ? '' : '-') + val.toLowerCase(),
); );
} }

View File

@ -32,4 +32,3 @@
{{~/if}} {{~/if}}
/{{~@root.commit}}/{{hash}}) /{{~@root.commit}}/{{hash}})
{{~/if}} {{~/if}}

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,8 @@
font-style: normal; font-style: normal;
font-display: auto; font-display: auto;
font-family: 'vant-icon'; font-family: 'vant-icon';
src: url('//at.alicdn.com/t/c/font_2553510_ovbl29ce9ud.woff2?t=1672541115585') src:
url('//at.alicdn.com/t/c/font_2553510_ovbl29ce9ud.woff2?t=1672541115585')
format('woff2'), format('woff2'),
url('//at.alicdn.com/t/c/font_2553510_ovbl29ce9ud.woff?t=1672541115585') url('//at.alicdn.com/t/c/font_2553510_ovbl29ce9ud.woff?t=1672541115585')
format('woff'); format('woff');

View File

@ -20,7 +20,7 @@
pageX, pageX,
pageY, pageY,
screenX, screenX,
screenY screenY,
) { ) {
// auto set // auto set
return new Touch( return new Touch(
@ -35,7 +35,7 @@
clientY: pageY - window.pageYOffset, clientY: pageY - window.pageYOffset,
}, },
0, 0,
0 0,
); );
}; };
} }

View File

@ -12,7 +12,7 @@ export function useClickAway(
| Ref<Element | undefined> | Ref<Element | undefined>
| Array<Element | Ref<Element | undefined>>, | Array<Element | Ref<Element | undefined>>,
listener: EventListener, listener: EventListener,
options: UseClickAwayOptions = {} options: UseClickAwayOptions = {},
) { ) {
if (!inBrowser) { if (!inBrowser) {
return; return;

View File

@ -21,17 +21,17 @@ export type UseEventListenerOptions = {
export function useEventListener<K extends keyof DocumentEventMap>( export function useEventListener<K extends keyof DocumentEventMap>(
type: K, type: K,
listener: (event: DocumentEventMap[K]) => void, listener: (event: DocumentEventMap[K]) => void,
options?: UseEventListenerOptions options?: UseEventListenerOptions,
): () => void; ): () => void;
export function useEventListener( export function useEventListener(
type: string, type: string,
listener: EventListener, listener: EventListener,
options?: UseEventListenerOptions options?: UseEventListenerOptions,
): () => void; ): () => void;
export function useEventListener( export function useEventListener(
type: string, type: string,
listener: EventListener, listener: EventListener,
options: UseEventListenerOptions = {} options: UseEventListenerOptions = {},
) { ) {
if (!inBrowser) { if (!inBrowser) {
return; return;

View File

@ -10,10 +10,10 @@ const makeDOMRect = (width: number, height: number) =>
bottom: height, bottom: height,
width, width,
height, height,
} as DOMRect); }) as DOMRect;
export const useRect = ( export const useRect = (
elementOrRef: Element | Window | Ref<Element | Window | undefined> elementOrRef: Element | Window | Ref<Element | Window | undefined>,
) => { ) => {
const element = unref(elementOrRef); const element = unref(elementOrRef);

View File

@ -45,7 +45,7 @@ const findVNodeIndex = (vnodes: VNode[], vnode: VNode) => {
vnode.key !== undefined && vnode.key !== undefined &&
vnode.key !== null && vnode.key !== null &&
item.type === vnode.type && item.type === vnode.type &&
item.key === vnode.key item.key === vnode.key,
); );
} }
return index; return index;
@ -55,12 +55,12 @@ const findVNodeIndex = (vnodes: VNode[], vnode: VNode) => {
export function sortChildren( export function sortChildren(
parent: ComponentInternalInstance, parent: ComponentInternalInstance,
publicChildren: ComponentPublicInstance[], publicChildren: ComponentPublicInstance[],
internalChildren: ComponentInternalInstance[] internalChildren: ComponentInternalInstance[],
) { ) {
const vnodes = flattenVNodes(parent.subTree.children); const vnodes = flattenVNodes(parent.subTree.children);
internalChildren.sort( internalChildren.sort(
(a, b) => findVNodeIndex(vnodes, a.vnode) - findVNodeIndex(vnodes, b.vnode) (a, b) => findVNodeIndex(vnodes, a.vnode) - findVNodeIndex(vnodes, b.vnode),
); );
const orderedPublicChildren = internalChildren.map((item) => item.proxy!); const orderedPublicChildren = internalChildren.map((item) => item.proxy!);
@ -75,7 +75,7 @@ export function sortChildren(
export function useChildren< export function useChildren<
// eslint-disable-next-line // eslint-disable-next-line
Child extends ComponentPublicInstance = ComponentPublicInstance<{}, any>, Child extends ComponentPublicInstance = ComponentPublicInstance<{}, any>,
ProvideValue = never ProvideValue = never,
>(key: InjectionKey<ProvideValue>) { >(key: InjectionKey<ProvideValue>) {
const publicChildren: Child[] = reactive([]); const publicChildren: Child[] = reactive([]);
const internalChildren: ComponentInternalInstance[] = reactive([]); const internalChildren: ComponentInternalInstance[] = reactive([]);
@ -105,8 +105,8 @@ export function useChildren<
children: publicChildren, children: publicChildren,
internalChildren, internalChildren,
}, },
value value,
) ),
); );
}; };

View File

@ -18,7 +18,7 @@ function isElement(node: Element) {
// https://github.com/vant-ui/vant/issues/3823 // https://github.com/vant-ui/vant/issues/3823
export function getScrollParent( export function getScrollParent(
el: Element, el: Element,
root: ScrollElement | undefined = defaultRoot root: ScrollElement | undefined = defaultRoot,
) { ) {
let node = el; let node = el;
@ -35,7 +35,7 @@ export function getScrollParent(
export function useScrollParent( export function useScrollParent(
el: Ref<Element | undefined>, el: Ref<Element | undefined>,
root: ScrollElement | undefined = defaultRoot root: ScrollElement | undefined = defaultRoot,
) { ) {
const scrollParent = ref<Element | Window>(); const scrollParent = ref<Element | Window>();

View File

@ -46,7 +46,7 @@ export default {
() => { () => {
console.log('touch outside!'); console.log('touch outside!');
}, },
{ eventName: 'touchstart' } { eventName: 'touchstart' },
); );
return { root }; return { root };
@ -69,7 +69,7 @@ function useClickAway(
| Ref<Element | undefined> | Ref<Element | undefined>
| Array<Element | Ref<Element | undefined>>, | Array<Element | Ref<Element | undefined>>,
listener: EventListener, listener: EventListener,
options?: Options options?: Options,
): void; ): void;
``` ```

View File

@ -48,7 +48,7 @@ export default {
() => { () => {
console.log('touch outside!'); console.log('touch outside!');
}, },
{ eventName: 'touchstart' } { eventName: 'touchstart' },
); );
return { root }; return { root };
@ -71,7 +71,7 @@ function useClickAway(
| Ref<Element | undefined> | Ref<Element | undefined>
| Array<Element | Ref<Element | undefined>>, | Array<Element | Ref<Element | undefined>>,
listener: EventListener, listener: EventListener,
options?: Options options?: Options,
): void; ): void;
``` ```

View File

@ -25,7 +25,7 @@ export default {
() => { () => {
console.log('click body'); console.log('click body');
}, },
{ target: document.body } { target: document.body },
); );
}, },
}; };
@ -64,7 +64,7 @@ type Options = {
function useEventListener( function useEventListener(
type: string, type: string,
listener: EventListener, listener: EventListener,
options?: Options options?: Options,
): () => void; ): () => void;
``` ```

View File

@ -26,7 +26,7 @@ export default {
() => { () => {
console.log('click body'); console.log('click body');
}, },
{ target: document.body } { target: document.body },
); );
}, },
}; };
@ -65,7 +65,7 @@ type Options = {
function useEventListener( function useEventListener(
type: string, type: string,
listener: EventListener, listener: EventListener,
options?: Options options?: Options,
): () => void; ): () => void;
``` ```

View File

@ -36,7 +36,7 @@ export default {
```ts ```ts
function useRect( function useRect(
element: Element | Window | Ref<Element | Window | undefined> element: Element | Window | Ref<Element | Window | undefined>,
): DOMRect; ): DOMRect;
``` ```

View File

@ -36,7 +36,7 @@ export default {
```ts ```ts
function useRect( function useRect(
element: Element | Window | Ref<Element | Window | undefined> element: Element | Window | Ref<Element | Window | undefined>,
): DOMRect; ): DOMRect;
``` ```

View File

@ -26,7 +26,7 @@ export default {
() => { () => {
console.log('scroll'); console.log('scroll');
}, },
{ target: scrollParent } { target: scrollParent },
); );
return { root }; return { root };
@ -40,7 +40,7 @@ export default {
```ts ```ts
function useScrollParent( function useScrollParent(
element: Ref<Element | undefined> element: Ref<Element | undefined>,
): Ref<Element | Window | undefined>; ): Ref<Element | Window | undefined>;
``` ```

View File

@ -26,7 +26,7 @@ export default {
() => { () => {
console.log('scroll'); console.log('scroll');
}, },
{ target: scrollParent } { target: scrollParent },
); );
return { root }; return { root };
@ -40,7 +40,7 @@ export default {
```ts ```ts
function useScrollParent( function useScrollParent(
element: Ref<Element | undefined> element: Ref<Element | undefined>,
): Ref<Element | Window | undefined>; ): Ref<Element | Window | undefined>;
``` ```

View File

@ -46,7 +46,7 @@ export default {
```ts ```ts
function useToggle( function useToggle(
defaultValue: boolean defaultValue: boolean,
): [Ref<boolean>, (newValue: boolean) => void]; ): [Ref<boolean>, (newValue: boolean) => void];
``` ```

View File

@ -46,7 +46,7 @@ export default {
```ts ```ts
function useToggle( function useToggle(
defaultValue: boolean defaultValue: boolean,
): [Ref<boolean>, (newValue: boolean) => void]; ): [Ref<boolean>, (newValue: boolean) => void];
``` ```

View File

@ -181,7 +181,7 @@ test('should render description correctly', () => {
}); });
expect( expect(
wrapper.find('.van-action-sheet__description').html() wrapper.find('.van-action-sheet__description').html(),
).toMatchSnapshot(); ).toMatchSnapshot();
}); });
@ -209,7 +209,7 @@ test('should render description slot when match snapshot', () => {
}); });
expect( expect(
wrapper.find('.van-action-sheet__description').html() wrapper.find('.van-action-sheet__description').html(),
).toMatchSnapshot(); ).toMatchSnapshot();
}); });
@ -251,14 +251,14 @@ test('should allow to control safe-area with safe-area-inset-bottom prop', async
}); });
expect(wrapper.find('.van-action-sheet').classes()).toContain( expect(wrapper.find('.van-action-sheet').classes()).toContain(
'van-safe-area-bottom' 'van-safe-area-bottom',
); );
await wrapper.setProps({ await wrapper.setProps({
safeAreaInsetBottom: false, safeAreaInsetBottom: false,
}); });
expect(wrapper.find('.van-action-sheet').classes()).not.toContain( expect(wrapper.find('.van-action-sheet').classes()).not.toContain(
'van-safe-area-bottom' 'van-safe-area-bottom',
); );
}); });

View File

@ -111,7 +111,7 @@ export default defineComponent({
const detailFocused = ref(false); const detailFocused = ref(false);
const areaListLoaded = computed( const areaListLoaded = computed(
() => isObject(props.areaList) && Object.keys(props.areaList).length () => isObject(props.areaList) && Object.keys(props.areaList).length,
); );
const areaText = computed(() => { const areaText = computed(() => {
@ -128,7 +128,7 @@ export default defineComponent({
// hide bottom field when use search && detail get focused // hide bottom field when use search && detail get focused
const hideBottomFields = computed( const hideBottomFields = computed(
() => props.searchResult?.length && detailFocused.value () => props.searchResult?.length && detailFocused.value,
); );
const onFocus = (key: string) => { const onFocus = (key: string) => {
@ -247,7 +247,7 @@ export default defineComponent({
if ( if (
options && options &&
options.every( options.every(
(option) => option && option.value !== AREA_EMPTY_CODE (option) => option && option.value !== AREA_EMPTY_CODE,
) )
) { ) {
assignAreaText(options as PickerOption[]); assignAreaText(options as PickerOption[]);
@ -257,7 +257,7 @@ export default defineComponent({
{ {
deep: true, deep: true,
immediate: true, immediate: true,
} },
); );
return () => { return () => {

View File

@ -49,7 +49,7 @@ export default defineComponent({
const renderItem = ( const renderItem = (
item: AddressListAddress, item: AddressListAddress,
index: number, index: number,
disabled?: boolean disabled?: boolean,
) => { ) => {
const onEdit = () => const onEdit = () =>
emit(disabled ? 'editDisabled' : 'edit', item, index); emit(disabled ? 'editDisabled' : 'edit', item, index);

View File

@ -66,7 +66,7 @@ export default defineComponent({
emit('update:modelValue', lastCode); emit('update:modelValue', lastCode);
} }
}, },
{ deep: true } { deep: true },
); );
watch( watch(
@ -87,7 +87,7 @@ export default defineComponent({
codes.value = []; codes.value = [];
} }
}, },
{ immediate: true } { immediate: true },
); );
useExpose<PickerExpose>({ useExpose<PickerExpose>({

View File

@ -40,17 +40,17 @@ test('should watch modelValue prop and render correctly', async () => {
await later(); await later();
expect( expect(
wrapper.find('.van-picker-column__item--selected').html() wrapper.find('.van-picker-column__item--selected').html(),
).toMatchSnapshot(); ).toMatchSnapshot();
await wrapper.setProps({ modelValue: '120225' }); await wrapper.setProps({ modelValue: '120225' });
expect( expect(
wrapper.find('.van-picker-column__item--selected').html() wrapper.find('.van-picker-column__item--selected').html(),
).toMatchSnapshot(); ).toMatchSnapshot();
await wrapper.setProps({ modelValue: '' }); await wrapper.setProps({ modelValue: '' });
expect( expect(
wrapper.find('.van-picker-column__item--selected').html() wrapper.find('.van-picker-column__item--selected').html(),
).toMatchSnapshot(); ).toMatchSnapshot();
}); });

View File

@ -25,7 +25,7 @@ export const INHERIT_PROPS = [
const makeOption = ( const makeOption = (
text = '', text = '',
value = AREA_EMPTY_CODE, value = AREA_EMPTY_CODE,
children: PickerOption[] | undefined = undefined children: PickerOption[] | undefined = undefined,
): PickerOption => ({ ): PickerOption => ({
text, text,
value, value,
@ -52,7 +52,7 @@ export function formatDataForCascade({
makeOption( makeOption(
placeholder[0], placeholder[0],
AREA_EMPTY_CODE, AREA_EMPTY_CODE,
showCounty ? [] : undefined showCounty ? [] : undefined,
), ),
] ]
: []; : [];
@ -63,7 +63,7 @@ export function formatDataForCascade({
Object.keys(province).forEach((code) => { Object.keys(province).forEach((code) => {
provinceMap.set( provinceMap.set(
code.slice(0, 2), code.slice(0, 2),
makeOption(province[code], code, getProvinceChildren()) makeOption(province[code], code, getProvinceChildren()),
); );
}); });

View File

@ -68,7 +68,7 @@ export default defineComponent({
extend(getZIndexStyle(props.zIndex), { extend(getZIndexStyle(props.zIndex), {
right: addUnit(props.right), right: addUnit(props.right),
bottom: addUnit(props.bottom), bottom: addUnit(props.bottom),
}) }),
); );
const onClick = (event: MouseEvent) => { const onClick = (event: MouseEvent) => {
@ -97,7 +97,7 @@ export default defineComponent({
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
console.error( console.error(
`[Vant] BackTop: target element "${target}" was not found, the BackTop component will not be rendered.` `[Vant] BackTop: target element "${target}" was not found, the BackTop component will not be rendered.`,
); );
} }
} else { } else {

View File

@ -132,9 +132,9 @@ export default {
### Events ### Events
| 事件名 | 说明 | 回调参数 | | 事件名 | 说明 | 回调参数 |
| ----- | -------------- | ------------------- | | ------ | -------------- | ------------------- |
| click | 点击组件时触发 | _event: MouseEvent_ | | click | 点击组件时触发 | _event: MouseEvent_ |
### Slots ### Slots

View File

@ -84,7 +84,7 @@ export default defineComponent({
const { position } = props; const { position } = props;
const [offsetY, offsetX] = position.split('-') as [ const [offsetY, offsetX] = position.split('-') as [
'top' | 'bottom', 'top' | 'bottom',
'left' | 'right' 'left' | 'right',
]; ];
if (slots.default) { if (slots.default) {

View File

@ -49,7 +49,7 @@ export default defineComponent({
const createBarrageItem = ( const createBarrageItem = (
text: string | number, text: string | number,
delay: number = props.delay delay: number = props.delay,
) => { ) => {
const item = document.createElement('span'); const item = document.createElement('span');
item.className = className; item.className = className;
@ -69,7 +69,7 @@ export default defineComponent({
const appendBarrageItem = ({ id, text }: BarrageItem, i: number) => { const appendBarrageItem = ({ id, text }: BarrageItem, i: number) => {
const item = createBarrageItem( const item = createBarrageItem(
text, text,
isInitBarrage.value ? i * props.delay : undefined isInitBarrage.value ? i * props.delay : undefined,
); );
if (!props.autoPlay && isPlay.value === false) { if (!props.autoPlay && isPlay.value === false) {
item.style.animationPlayState = 'paused'; item.style.animationPlayState = 'paused';
@ -86,14 +86,14 @@ export default defineComponent({
item.addEventListener('animationend', () => { item.addEventListener('animationend', () => {
emit( emit(
'update:modelValue', 'update:modelValue',
[...props.modelValue].filter((v) => String(v.id) !== item.dataset.id) [...props.modelValue].filter((v) => String(v.id) !== item.dataset.id),
); );
}); });
}; };
const updateBarrages = ( const updateBarrages = (
newValue: BarrageItem[], newValue: BarrageItem[],
oldValue: BarrageItem[] oldValue: BarrageItem[],
) => { ) => {
const map = new Map(oldValue.map((item) => [item.id, item])); const map = new Map(oldValue.map((item) => [item.id, item]));
@ -109,7 +109,7 @@ export default defineComponent({
map.forEach((item) => { map.forEach((item) => {
// remove // remove
const index = barrageItems.findIndex( const index = barrageItems.findIndex(
(span) => span.dataset.id === String(item.id) (span) => span.dataset.id === String(item.id),
); );
if (index > -1) { if (index > -1) {
barrageItems[index].remove(); barrageItems[index].remove();
@ -123,7 +123,7 @@ export default defineComponent({
watch( watch(
() => props.modelValue.slice(), () => props.modelValue.slice(),
(newValue, oldValue) => updateBarrages(newValue ?? [], oldValue ?? []), (newValue, oldValue) => updateBarrages(newValue ?? [], oldValue ?? []),
{ deep: true } { deep: true },
); );
const rootStyle = ref<{ const rootStyle = ref<{

View File

@ -21,7 +21,10 @@
font-weight: bold; font-weight: bold;
white-space: nowrap; white-space: nowrap;
color: var(--van-barrage-color); color: var(--van-barrage-color);
text-shadow: 1px 0 1px #000000, 0 1px 1px #000000, 0 -1px 1px #000000, text-shadow:
1px 0 1px #000000,
0 1px 1px #000000,
0 -1px 1px #000000,
-1px 0 1px #000000; -1px 0 1px #000000;
user-select: none; user-select: none;
will-change: transform; will-change: transform;

View File

@ -59,21 +59,21 @@ test('should not auto play use play function when use play function', async () =
expect( expect(
(wrapper.find('.van-barrage__item') as HTMLSpanElement).style (wrapper.find('.van-barrage__item') as HTMLSpanElement).style
.animationPlayState .animationPlayState,
).toBe('paused'); ).toBe('paused');
barrage.value?.play(); barrage.value?.play();
expect( expect(
(wrapper.find('.van-barrage__item') as HTMLSpanElement).style (wrapper.find('.van-barrage__item') as HTMLSpanElement).style
.animationPlayState .animationPlayState,
).toBe('running'); ).toBe('running');
barrage.value?.pause(); barrage.value?.pause();
expect( expect(
(wrapper.find('.van-barrage__item') as HTMLSpanElement).style (wrapper.find('.van-barrage__item') as HTMLSpanElement).style
.animationPlayState .animationPlayState,
).toBe('paused'); ).toBe('paused');
}); });
@ -110,7 +110,7 @@ test('should emit "update:modelValue" when animationend', async () => {
expect( expect(
(wrapper.find('.van-barrage__item') as HTMLSpanElement).style (wrapper.find('.van-barrage__item') as HTMLSpanElement).style
.animationPlayState .animationPlayState,
).toBe('running'); ).toBe('running');
await wrapper.setProps({ await wrapper.setProps({
@ -130,7 +130,7 @@ test('should emit "update:modelValue" when animationend', async () => {
await trigger( await trigger(
wrapper.find('.van-barrage__item') as HTMLSpanElement, wrapper.find('.van-barrage__item') as HTMLSpanElement,
'animationend' 'animationend',
); );
expect(wrapper.emitted('change')?.[0][0]).toEqual([ expect(wrapper.emitted('change')?.[0][0]).toEqual([

View File

@ -122,7 +122,7 @@ export default defineComponent({
const limitDateRange = ( const limitDateRange = (
date: Date, date: Date,
minDate = props.minDate, minDate = props.minDate,
maxDate = props.maxDate maxDate = props.maxDate,
) => { ) => {
if (compareDay(date, minDate) === -1) { if (compareDay(date, minDate) === -1) {
return minDate; return minDate;
@ -149,11 +149,11 @@ export default defineComponent({
const start = limitDateRange( const start = limitDateRange(
defaultDate[0] || now, defaultDate[0] || now,
minDate, minDate,
allowSameDay ? maxDate : getPrevDay(maxDate) allowSameDay ? maxDate : getPrevDay(maxDate),
); );
const end = limitDateRange( const end = limitDateRange(
defaultDate[1] || now, defaultDate[1] || now,
allowSameDay ? minDate : getNextDay(minDate) allowSameDay ? minDate : getNextDay(minDate),
); );
return [start, end]; return [start, end];
} }
@ -184,7 +184,7 @@ export default defineComponent({
const [monthRefs, setMonthRefs] = useRefs<CalendarMonthInstance>(); const [monthRefs, setMonthRefs] = useRefs<CalendarMonthInstance>();
const dayOffset = computed(() => const dayOffset = computed(() =>
props.firstDayOfWeek ? +props.firstDayOfWeek % 7 : 0 props.firstDayOfWeek ? +props.firstDayOfWeek % 7 : 0,
); );
const months = computed(() => { const months = computed(() => {
@ -225,7 +225,7 @@ export default defineComponent({
const bottom = top + bodyHeight; const bottom = top + bodyHeight;
const heights = months.value.map((item, index) => const heights = months.value.map((item, index) =>
monthRefs.value[index].getHeight() monthRefs.value[index].getHeight(),
); );
const heightSum = heights.reduce((a, b) => a + b, 0); const heightSum = heights.reduce((a, b) => a + b, 0);
@ -377,12 +377,12 @@ export default defineComponent({
const getDisabledDate = ( const getDisabledDate = (
disabledDays: CalendarDayItem[], disabledDays: CalendarDayItem[],
startDay: Date, startDay: Date,
date: Date date: Date,
): Date | undefined => ): Date | undefined =>
disabledDays.find( disabledDays.find(
(day) => (day) =>
compareDay(startDay, day.date!) === -1 && compareDay(startDay, day.date!) === -1 &&
compareDay(day.date!, date) === -1 compareDay(day.date!, date) === -1,
)?.date; )?.date;
// disabled calendarDay // disabled calendarDay
@ -390,7 +390,7 @@ export default defineComponent({
monthRefs.value.reduce((arr, ref) => { monthRefs.value.reduce((arr, ref) => {
arr.push(...(ref.disabledDays?.value ?? [])); arr.push(...(ref.disabledDays?.value ?? []));
return arr; return arr;
}, [] as CalendarDayItem[]) }, [] as CalendarDayItem[]),
); );
const onClickDay = (item: CalendarDayItem) => { const onClickDay = (item: CalendarDayItem) => {
@ -416,7 +416,7 @@ export default defineComponent({
const disabledDay = getDisabledDate( const disabledDay = getDisabledDate(
disabledDays.value, disabledDays.value,
startDay, startDay,
date date,
); );
if (disabledDay) { if (disabledDay) {
@ -445,7 +445,7 @@ export default defineComponent({
const dates = currentDate.value as Date[]; const dates = currentDate.value as Date[];
const selectedIndex = dates.findIndex( const selectedIndex = dates.findIndex(
(dateItem: Date) => compareDay(dateItem, date) === 0 (dateItem: Date) => compareDay(dateItem, date) === 0,
); );
if (selectedIndex !== -1) { if (selectedIndex !== -1) {
@ -549,14 +549,14 @@ export default defineComponent({
watch(() => props.show, init); watch(() => props.show, init);
watch( watch(
() => [props.type, props.minDate, props.maxDate], () => [props.type, props.minDate, props.maxDate],
() => reset(getInitialDate(currentDate.value)) () => reset(getInitialDate(currentDate.value)),
); );
watch( watch(
() => props.defaultDate, () => props.defaultDate,
(value = null) => { (value = null) => {
currentDate.value = value; currentDate.value = value;
scrollToCurrentDate(); scrollToCurrentDate();
} },
); );
useExpose<CalendarExpose>({ useExpose<CalendarExpose>({

View File

@ -82,7 +82,7 @@ export default defineComponent({
}); });
const totalDay = computed(() => const totalDay = computed(() =>
getMonthEndDay(props.date.getFullYear(), props.date.getMonth() + 1) getMonthEndDay(props.date.getFullYear(), props.date.getMonth() + 1),
); );
const shouldRender = computed(() => visible.value || !props.lazyRender); const shouldRender = computed(() => visible.value || !props.lazyRender);
@ -92,7 +92,7 @@ export default defineComponent({
const getMultipleDayType = (day: Date) => { const getMultipleDayType = (day: Date) => {
const isSelected = (date: Date) => const isSelected = (date: Date) =>
(props.currentDate as Date[]).some( (props.currentDate as Date[]).some(
(item) => compareDay(item, date) === 0 (item) => compareDay(item, date) === 0,
); );
if (isSelected(day)) { if (isSelected(day)) {
@ -236,7 +236,7 @@ export default defineComponent({
}); });
const disabledDays = computed(() => const disabledDays = computed(() =>
days.value.filter((day) => day.type === 'disabled') days.value.filter((day) => day.type === 'disabled'),
); );
const scrollToDate = (body: Element, targetDate: Date) => { const scrollToDate = (body: Element, targetDate: Date) => {
@ -248,7 +248,7 @@ export default defineComponent({
setScrollTop( setScrollTop(
body, body,
daysRect.top + rowOffset + body.scrollTop - useRect(body).top daysRect.top + rowOffset + body.scrollTop - useRect(body).top,
); );
} }
}; };

View File

@ -65,7 +65,7 @@ test('select event when type is single', async () => {
wrapper.findAll('.van-calendar__day')[15].trigger('click'); wrapper.findAll('.van-calendar__day')[15].trigger('click');
expect(wrapper.emitted<[Date]>('select')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('select')![0][0]).toEqual(
new Date(2010, 0, 16) new Date(2010, 0, 16),
); );
}); });
@ -166,7 +166,7 @@ test('select event when type is multiple', async () => {
days[15].trigger('click'); days[15].trigger('click');
expect(wrapper.emitted<[Date]>('unselect')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('unselect')![0][0]).toEqual(
new Date(2010, 0, 16) new Date(2010, 0, 16),
); );
}); });
@ -205,7 +205,7 @@ test('confirm event when type is single', async () => {
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual(
new Date(2010, 0, 16) new Date(2010, 0, 16),
); );
}); });
@ -382,7 +382,7 @@ test('should render subtitle slot with params', async () => {
await later(); await later();
expect( expect(
wrapper.find('.van-calendar__header-subtitle').html() wrapper.find('.van-calendar__header-subtitle').html(),
).toMatchSnapshot(); ).toMatchSnapshot();
}); });
@ -420,7 +420,7 @@ test('should reset when type changed', async () => {
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual(
new Date(2010, 0, 10) new Date(2010, 0, 10),
); );
await wrapper.setProps({ await wrapper.setProps({
@ -449,13 +449,13 @@ test('default-date prop in single type', async () => {
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual(
new Date(2010, 0, 11) new Date(2010, 0, 11),
); );
await wrapper.setProps({ defaultDate: maxDate }); await wrapper.setProps({ defaultDate: maxDate });
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![1][0]).toEqual( expect(wrapper.emitted<[Date]>('confirm')![1][0]).toEqual(
new Date(2010, 0, 20) new Date(2010, 0, 20),
); );
}); });

View File

@ -134,7 +134,7 @@ test('min-date after current time', () => {
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual(
new Date(2200, 0, 1) new Date(2200, 0, 1),
); );
}); });
@ -150,7 +150,7 @@ test('min-date before current time', () => {
wrapper.find('.van-calendar__confirm').trigger('click'); wrapper.find('.van-calendar__confirm').trigger('click');
expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual( expect(wrapper.emitted<[Date]>('confirm')![0][0]).toEqual(
new Date(1800, 0, 2) new Date(1800, 0, 2),
); );
}); });
@ -195,7 +195,7 @@ test('first day of week', async () => {
expect(wrapper.findAll('.van-calendar__weekday')[0].text()).toEqual('Tue'); expect(wrapper.findAll('.van-calendar__weekday')[0].text()).toEqual('Tue');
const day = wrapper.find( const day = wrapper.find(
'.van-calendar__month:first-of-type .van-calendar__day' '.van-calendar__month:first-of-type .van-calendar__day',
); );
expect(day.text()).toEqual('1'); expect(day.text()).toEqual('1');
expect(day.attributes('style')).toContain(`margin-left: ${(100 * 4) / 7}%`); expect(day.attributes('style')).toContain(`margin-left: ${(100 * 4) / 7}%`);

View File

@ -69,12 +69,12 @@ export default defineComponent({
value: 'value', value: 'value',
children: 'children', children: 'children',
}, },
props.fieldNames props.fieldNames,
); );
const getSelectedOptionsByValue = ( const getSelectedOptionsByValue = (
options: CascaderOption[], options: CascaderOption[],
value: Numeric value: Numeric,
): CascaderOption[] | undefined => { ): CascaderOption[] | undefined => {
for (const option of options) { for (const option of options) {
if (option[valueKey] === value) { if (option[valueKey] === value) {
@ -84,7 +84,7 @@ export default defineComponent({
if (option[childrenKey]) { if (option[childrenKey]) {
const selectedOptions = getSelectedOptionsByValue( const selectedOptions = getSelectedOptionsByValue(
option[childrenKey], option[childrenKey],
value value,
); );
if (selectedOptions) { if (selectedOptions) {
return [option, ...selectedOptions]; return [option, ...selectedOptions];
@ -109,7 +109,7 @@ export default defineComponent({
}; };
const next = optionsCursor.find( const next = optionsCursor.find(
(item) => item[valueKey] === option[valueKey] (item) => item[valueKey] === option[valueKey],
); );
if (next) { if (next) {
optionsCursor = next[childrenKey]; optionsCursor = next[childrenKey];
@ -211,7 +211,7 @@ export default defineComponent({
const renderOption = ( const renderOption = (
option: CascaderOption, option: CascaderOption,
selectedOption: CascaderOption | null, selectedOption: CascaderOption | null,
tabIndex: number tabIndex: number,
) => { ) => {
const { disabled } = option; const { disabled } = option;
const selected = !!( const selected = !!(
@ -247,11 +247,11 @@ export default defineComponent({
const renderOptions = ( const renderOptions = (
options: CascaderOption[], options: CascaderOption[],
selectedOption: CascaderOption | null, selectedOption: CascaderOption | null,
tabIndex: number tabIndex: number,
) => ( ) => (
<ul role="menu" class={bem('options')}> <ul role="menu" class={bem('options')}>
{options.map((option) => {options.map((option) =>
renderOption(option, selectedOption, tabIndex) renderOption(option, selectedOption, tabIndex),
)} )}
</ul> </ul>
); );
@ -314,7 +314,7 @@ export default defineComponent({
} }
} }
updateTabs(); updateTabs();
} },
); );
return () => ( return () => (

View File

@ -146,7 +146,7 @@ const onFinish = (
{ {
value, value,
selectedOptions, selectedOptions,
}: { value: Numeric; selectedOptions: CascaderOption[] } }: { value: Numeric; selectedOptions: CascaderOption[] },
) => { ) => {
const result = selectedOptions const result = selectedOptions
.map((option) => option.text || option.name) .map((option) => option.text || option.name)

View File

@ -78,7 +78,7 @@ export default defineComponent({
watch( watch(
() => props.modelValue, () => props.modelValue,
(value) => emit('change', value) (value) => emit('change', value),
); );
useExpose<CheckboxGroupExpose>({ toggleAll }); useExpose<CheckboxGroupExpose>({ toggleAll });

View File

@ -84,7 +84,7 @@ export default defineComponent({
watch( watch(
() => props.modelValue, () => props.modelValue,
(value) => emit('change', value) (value) => emit('change', value),
); );
useExpose<CheckboxExpose>({ toggle, props, checked }); useExpose<CheckboxExpose>({ toggle, props, checked });

View File

@ -90,7 +90,7 @@ export default defineComponent({
const startRate = props.currentRate; const startRate = props.currentRate;
const endRate = format(rate); const endRate = format(rate);
const duration = Math.abs( const duration = Math.abs(
((startRate - endRate) * 1000) / +props.speed ((startRate - endRate) * 1000) / +props.speed,
); );
const animate = () => { const animate = () => {
@ -114,7 +114,7 @@ export default defineComponent({
emit('update:currentRate', endRate); emit('update:currentRate', endRate);
} }
}, },
{ immediate: true } { immediate: true },
); );
const renderHover = () => { const renderHover = () => {

View File

@ -53,7 +53,7 @@ export default defineComponent({
if (!parent) { if (!parent) {
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
console.error( console.error(
'[Vant] <CollapseItem> must be a child component of <Collapse>.' '[Vant] <CollapseItem> must be a child component of <Collapse>.',
); );
} }
return; return;
@ -122,7 +122,7 @@ export default defineComponent({
const { border, disabled, readonly } = props; const { border, disabled, readonly } = props;
const attrs = pick( const attrs = pick(
props, props,
Object.keys(cellSharedProps) as Array<keyof typeof cellSharedProps> Object.keys(cellSharedProps) as Array<keyof typeof cellSharedProps>,
); );
if (readonly) { if (readonly) {

View File

@ -47,17 +47,17 @@ export type CollapseInstance = ComponentPublicInstance<{
function validateModelValue( function validateModelValue(
modelValue: Numeric | Numeric[], modelValue: Numeric | Numeric[],
accordion: boolean accordion: boolean,
) { ) {
if (accordion && Array.isArray(modelValue)) { if (accordion && Array.isArray(modelValue)) {
console.error( console.error(
'[Vant] Collapse: "v-model" should not be Array in accordion mode' '[Vant] Collapse: "v-model" should not be Array in accordion mode',
); );
return false; return false;
} }
if (!accordion && !Array.isArray(modelValue)) { if (!accordion && !Array.isArray(modelValue)) {
console.error( console.error(
'[Vant] Collapse: "v-model" should be Array in non-accordion mode' '[Vant] Collapse: "v-model" should be Array in non-accordion mode',
); );
return false; return false;
} }
@ -87,7 +87,7 @@ export default defineComponent({
updateName((modelValue as Numeric[]).concat(name)); updateName((modelValue as Numeric[]).concat(name));
} else { } else {
updateName( updateName(
(modelValue as Numeric[]).filter((activeName) => activeName !== name) (modelValue as Numeric[]).filter((activeName) => activeName !== name),
); );
} }
}; };

View File

@ -231,7 +231,7 @@ test('should be readonly when using readonly prop', async () => {
await titles[0].trigger('click'); await titles[0].trigger('click');
expect(wrapper.vm.active).toEqual([]); expect(wrapper.vm.active).toEqual([]);
expect(wrapper.find('.van-collapse-item__title').classes()).not.toContain( expect(wrapper.find('.van-collapse-item__title').classes()).not.toContain(
'van-cell--clickable' 'van-cell--clickable',
); );
wrapper.unmount(); wrapper.unmount();

View File

@ -5,7 +5,7 @@ import { onPopupReopen } from './on-popup-reopen';
export const useHeight = ( export const useHeight = (
element: Element | Ref<Element | undefined>, element: Element | Ref<Element | undefined>,
withSafeArea?: boolean withSafeArea?: boolean,
) => { ) => {
const height = ref<number>(); const height = ref<number>();

View File

@ -10,8 +10,8 @@ export function useLazyRender(show: WatchSource<boolean | undefined>) {
inited.value = value; inited.value = value;
} }
}, },
{ immediate: true } { immediate: true },
); );
return (render: () => JSX.Element) => () => inited.value ? render() : null; return (render: () => JSX.Element) => () => (inited.value ? render() : null);
} }

View File

@ -9,7 +9,7 @@ const BODY_LOCK_CLASS = 'van-overflow-hidden';
export function useLockScroll( export function useLockScroll(
rootRef: Ref<HTMLElement | undefined>, rootRef: Ref<HTMLElement | undefined>,
shouldLock: () => boolean shouldLock: () => boolean,
) { ) {
const touch = useTouch(); const touch = useTouch();
const DIRECTION_UP = '01'; const DIRECTION_UP = '01';
@ -21,7 +21,7 @@ export function useLockScroll(
const direction = touch.deltaY.value > 0 ? DIRECTION_DOWN : DIRECTION_UP; const direction = touch.deltaY.value > 0 ? DIRECTION_DOWN : DIRECTION_UP;
const el = getScrollParent( const el = getScrollParent(
event.target as Element, event.target as Element,
rootRef.value rootRef.value,
) as HTMLElement; ) as HTMLElement;
const { scrollHeight, offsetHeight, scrollTop } = el; const { scrollHeight, offsetHeight, scrollTop } = el;
let status = '11'; let status = '11';

View File

@ -2,7 +2,7 @@ import { Ref, ref, watch } from 'vue';
export const useSyncPropRef = <T>( export const useSyncPropRef = <T>(
getProp: () => T, getProp: () => T,
setProp: (value: T) => void setProp: (value: T) => void,
) => { ) => {
const propRef = ref<T>(getProp()) as Ref<T>; const propRef = ref<T>(getProp()) as Ref<T>;

View File

@ -5,7 +5,7 @@ import { onMountedOrActivated } from '@vant/use';
// @Experimental // @Experimental
export function useVisibilityChange( export function useVisibilityChange(
target: Ref<Element | undefined>, target: Ref<Element | undefined>,
onChange: (visible: boolean) => void onChange: (visible: boolean) => void,
) { ) {
// compatibility: https://caniuse.com/#feat=intersectionobserver // compatibility: https://caniuse.com/#feat=intersectionobserver
if (!inBrowser || !window.IntersectionObserver) { if (!inBrowser || !window.IntersectionObserver) {
@ -17,7 +17,7 @@ export function useVisibilityChange(
// visibility changed // visibility changed
onChange(entries[0].intersectionRatio > 0); onChange(entries[0].intersectionRatio > 0);
}, },
{ root: document.body } { root: document.body },
); );
const observe = () => { const observe = () => {

View File

@ -66,9 +66,9 @@ export default defineComponent({
extend( extend(
{}, {},
props.themeVars, props.themeVars,
props.theme === 'dark' ? props.themeVarsDark : props.themeVarsLight props.theme === 'dark' ? props.themeVarsDark : props.themeVarsLight,
) ),
) ),
); );
if (inBrowser) { if (inBrowser) {
@ -87,7 +87,7 @@ export default defineComponent({
} }
addTheme(); addTheme();
}, },
{ immediate: true } { immediate: true },
); );
onActivated(addTheme); onActivated(addTheme);

View File

@ -56,7 +56,7 @@ test('should apply theme-vars-light in light mode', () => {
}); });
expect(wrapper.element.getAttribute('style')).toEqual( expect(wrapper.element.getAttribute('style')).toEqual(
'--van-rate-icon-full-color: blue;' '--van-rate-icon-full-color: blue;',
); );
}); });
@ -75,6 +75,6 @@ test('should apply theme-vars-dark in dark mode', () => {
}); });
expect(wrapper.element.getAttribute('style')).toEqual( expect(wrapper.element.getAttribute('style')).toEqual(
'--van-rate-icon-full-color: green;' '--van-rate-icon-full-color: green;',
); );
}); });

View File

@ -111,7 +111,7 @@ export default defineComponent({
watch( watch(
() => props.contactInfo, () => props.contactInfo,
(value) => extend(contact, DEFAULT_CONTACT, value) (value) => extend(contact, DEFAULT_CONTACT, value),
); );
return () => ( return () => (

View File

@ -50,7 +50,7 @@ test('should emit save event after submitting form', async () => {
await submitForm(wrapper); await submitForm(wrapper);
expect(wrapper.emitted<[ContactEditInfo]>('save')![0][0]).toEqual( expect(wrapper.emitted<[ContactEditInfo]>('save')![0][0]).toEqual(
contactInfo contactInfo,
); );
}); });
@ -59,7 +59,7 @@ test('should watch contact info', async () => {
await wrapper.setProps({ contactInfo }); await wrapper.setProps({ contactInfo });
await submitForm(wrapper); await submitForm(wrapper);
expect(wrapper.emitted<[ContactEditInfo]>('save')![0][0]).toEqual( expect(wrapper.emitted<[ContactEditInfo]>('save')![0][0]).toEqual(
contactInfo contactInfo,
); );
}); });

View File

@ -65,7 +65,7 @@ export default defineComponent({
nodes.push( nodes.push(
<Tag type="primary" round class={bem('item-tag')}> <Tag type="primary" round class={bem('item-tag')}>
{props.defaultTagText} {props.defaultTagText}
</Tag> </Tag>,
); );
} }

View File

@ -109,10 +109,10 @@ import type { ContactListItem, ContactListProps } from 'vant';
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。 组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。
| 名称 | 默认值 | 描述 | | 名称 | 默认值 | 描述 |
| ------------------------------------- | -------------------------- | ---- | | --- | --- | --- |
| --van-contact-list-padding | _var(--van-padding-sm) var(--van-padding-sm) 80px_ | - | | --van-contact-list-padding | _var(--van-padding-sm) var(--van-padding-sm) 80px_ | - |
| --van-contact-list-edit-icon-size | _16px_ | - | | --van-contact-list-edit-icon-size | _16px_ | - |
| --van-contact-list-add-button-z-index | _999_ | - | | --van-contact-list-add-button-z-index | _999_ | - |
| --van-contact-list-radio-color | _var(--van-primary-color)_ | - | | --van-contact-list-radio-color | _var(--van-primary-color)_ | - |
| --van-contact-list-item-padding | _var(--van-padding-md)_ | - | | --van-contact-list-item-padding | _var(--van-padding-md)_ | - |

View File

@ -75,7 +75,7 @@ export default defineComponent({
!props.exchangeButtonLoading && !props.exchangeButtonLoading &&
(props.exchangeButtonDisabled || (props.exchangeButtonDisabled ||
!currentCode.value || !currentCode.value ||
currentCode.value.length < props.exchangeMinLength) currentCode.value.length < props.exchangeMinLength),
); );
const updateListHeight = () => { const updateListHeight = () => {
@ -190,7 +190,7 @@ export default defineComponent({
() => props.code, () => props.code,
(value) => { (value) => {
currentCode.value = value; currentCode.value = value;
} },
); );
watch(windowHeight, updateListHeight); watch(windowHeight, updateListHeight);

View File

@ -3,7 +3,7 @@ import { padZero } from '../utils';
export function getDate(timeStamp: number) { export function getDate(timeStamp: number) {
const date = new Date(timeStamp * 1000); const date = new Date(timeStamp * 1000);
return `${date.getFullYear()}.${padZero(date.getMonth() + 1)}.${padZero( return `${date.getFullYear()}.${padZero(date.getMonth() + 1)}.${padZero(
date.getDate() date.getDate(),
)}`; )}`;
} }

View File

@ -63,7 +63,7 @@ export default defineComponent({
maxYear, maxYear,
'year', 'year',
props.formatter, props.formatter,
props.filter props.filter,
); );
}; };
@ -104,7 +104,7 @@ export default defineComponent({
maxMonth, maxMonth,
'month', 'month',
props.formatter, props.formatter,
props.filter props.filter,
); );
}; };
@ -133,12 +133,12 @@ export default defineComponent({
default: default:
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
throw new Error( throw new Error(
`[Vant] DatePicker: unsupported columns type: ${type}` `[Vant] DatePicker: unsupported columns type: ${type}`,
); );
} }
return []; return [];
} }
}) }),
); );
watch(currentValues, (newValues) => { watch(currentValues, (newValues) => {
@ -152,7 +152,7 @@ export default defineComponent({
(newValues, oldValues) => { (newValues, oldValues) => {
updatedByExternalSources.value = isSameValue( updatedByExternalSources.value = isSameValue(
oldValues, oldValues,
currentValues.value currentValues.value,
); );
newValues = formatValueRange(newValues, columns.value); newValues = formatValueRange(newValues, columns.value);
if (!isSameValue(newValues, currentValues.value)) { if (!isSameValue(newValues, currentValues.value)) {
@ -162,7 +162,7 @@ export default defineComponent({
}, },
{ {
immediate: true, immediate: true,
} },
); );
const onChange = (...args: unknown[]) => emit('change', ...args); const onChange = (...args: unknown[]) => emit('change', ...args);

View File

@ -27,7 +27,7 @@ test('should emit confirm event correctly', async () => {
], ],
selectedValues: ['2030', '01', '01'], selectedValues: ['2030', '01', '01'],
selectedIndexes: [0, 0, 0], selectedIndexes: [0, 0, 0],
} },
); );
}); });
@ -66,10 +66,12 @@ test('should allow to dynamically set value', async () => {
await wrapper.find('.van-picker__confirm').trigger('click'); await wrapper.find('.van-picker__confirm').trigger('click');
expect( expect(
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0]
.selectedValues,
).toEqual(['2020', '02', '02']); ).toEqual(['2020', '02', '02']);
expect( expect(
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![1][0].selectedValues wrapper.emitted<[PickerConfirmEventParams]>('confirm')![1][0]
.selectedValues,
).toEqual(['2020', '03', '03']); ).toEqual(['2020', '03', '03']);
}); });
@ -94,7 +96,8 @@ test('should render with max-date correctly', async () => {
await later(); await later();
await wrapper.find('.van-picker__confirm').trigger('click'); await wrapper.find('.van-picker__confirm').trigger('click');
expect( expect(
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0]
.selectedValues,
).toEqual(['2010', '01', '10']); ).toEqual(['2010', '01', '10']);
}); });
@ -119,7 +122,8 @@ test('should render with min-date correctly', async () => {
await later(); await later();
await wrapper.find('.van-picker__confirm').trigger('click'); await wrapper.find('.van-picker__confirm').trigger('click');
expect( expect(
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0]
.selectedValues,
).toEqual(['2000', '10', '10']); ).toEqual(['2000', '10', '10']);
}); });
@ -197,7 +201,8 @@ test('should update value correctly when dynamically change min-date', async ()
await wrapper.find('.van-picker__confirm').trigger('click'); await wrapper.find('.van-picker__confirm').trigger('click');
expect( expect(
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0]
.selectedValues,
).toEqual(['2020', '12', '20']); ).toEqual(['2020', '12', '20']);
}); });
@ -218,6 +223,7 @@ test('should be displayed correctly when modelValue updated by external sources'
await wrapper.find('.van-picker__confirm').trigger('click'); await wrapper.find('.van-picker__confirm').trigger('click');
expect( expect(
wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0].selectedValues wrapper.emitted<[PickerConfirmEventParams]>('confirm')![0][0]
.selectedValues,
).toEqual(['2024', '01']); ).toEqual(['2024', '01']);
}); });

View File

@ -12,7 +12,7 @@ import type { PickerOption } from '../picker';
type Filter = ( type Filter = (
columnType: string, columnType: string,
options: PickerOption[], options: PickerOption[],
values?: string[] values?: string[],
) => PickerOption[]; ) => PickerOption[];
export type TimeFilter = RequiredParams<Filter>; export type TimeFilter = RequiredParams<Filter>;
type Formatter = (type: string, option: PickerOption) => PickerOption; type Formatter = (type: string, option: PickerOption) => PickerOption;
@ -54,7 +54,7 @@ export const genOptions = <T extends string>(
type: T, type: T,
formatter: Formatter, formatter: Formatter,
filter?: Filter | TimeFilter, filter?: Filter | TimeFilter,
values?: string[] values?: string[],
) => { ) => {
const options = times(max - min + 1, (index) => { const options = times(max - min + 1, (index) => {
const value = padZero(min + index); const value = padZero(min + index);

View File

@ -135,7 +135,7 @@ export default defineComponent({
onEventType[event.key](); onEventType[event.key]();
emit('keydown', event); emit('keydown', event);
}, },
['enter', 'esc'] ['enter', 'esc'],
); );
const renderTitle = () => { const renderTitle = () => {

View File

@ -224,7 +224,7 @@ Vant 中导出了以下 Dialog 相关的辅助函数:
通过组件调用 `Dialog` 时,支持以下事件: 通过组件调用 `Dialog` 时,支持以下事件:
| 事件名 | 说明 | 回调参数 | | 事件名 | 说明 | 回调参数 |
| ------- | ------------------------ | -------- | | ------- | ------------------------ | -------- |
| confirm | 点击确认按钮时触发 | - | | confirm | 点击确认按钮时触发 | - |
| cancel | 点击取消按钮时触发 | - | | cancel | 点击取消按钮时触发 | - |

View File

@ -62,7 +62,7 @@ export function showDialog(options: DialogOptions) {
callback: (action: DialogAction) => { callback: (action: DialogAction) => {
(action === 'confirm' ? resolve : reject)(action); (action === 'confirm' ? resolve : reject)(action);
}, },
}) }),
); );
}); });
} }

View File

@ -152,7 +152,7 @@ test('should allow to disable confirm button', () => {
}, },
}); });
expect(wrapper.find('.van-dialog__confirm').classes()).toContain( expect(wrapper.find('.van-dialog__confirm').classes()).toContain(
'van-button--disabled' 'van-button--disabled',
); );
}); });
@ -166,6 +166,6 @@ test('should allow to disable cancel button', () => {
}, },
}); });
expect(wrapper.find('.van-dialog__cancel').classes()).toContain( expect(wrapper.find('.van-dialog__cancel').classes()).toContain(
'van-button--disabled' 'van-button--disabled',
); );
}); });

View File

@ -65,7 +65,7 @@ export default defineComponent({
if (!parent) { if (!parent) {
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
console.error( console.error(
'[Vant] <DropdownItem> must be a child component of <DropdownMenu>.' '[Vant] <DropdownItem> must be a child component of <DropdownMenu>.',
); );
} }
return; return;
@ -90,7 +90,7 @@ export default defineComponent({
const toggle = ( const toggle = (
show = !state.showPopup, show = !state.showPopup,
options: { immediate?: boolean } = {} options: { immediate?: boolean } = {},
) => { ) => {
if (show === state.showPopup) { if (show === state.showPopup) {
return; return;
@ -115,7 +115,7 @@ export default defineComponent({
} }
const match = props.options.find( const match = props.options.find(
(option) => option.value === props.modelValue (option) => option.value === props.modelValue,
); );
return match ? match.text : ''; return match ? match.text : '';

View File

@ -13,7 +13,7 @@ export type DropdownItemExpose = {
show?: boolean, show?: boolean,
options?: { options?: {
immediate?: boolean; immediate?: boolean;
} },
) => void; ) => void;
/** @private */ /** @private */
state: { state: {

View File

@ -65,7 +65,7 @@ export default defineComponent({
const scrollParent = useScrollParent(root); const scrollParent = useScrollParent(root);
const opened = computed(() => const opened = computed(() =>
children.some((item) => item.state.showWrapper) children.some((item) => item.state.showWrapper),
); );
const barStyle = computed<CSSProperties | undefined>(() => { const barStyle = computed<CSSProperties | undefined>(() => {

View File

@ -10,7 +10,7 @@ function renderWrapper(
direction?: DropdownMenuDirection | undefined; direction?: DropdownMenuDirection | undefined;
closeOnClickOutside?: boolean; closeOnClickOutside?: boolean;
icon?: string; icon?: string;
} = {} } = {},
) { ) {
return mount({ return mount({
setup() { setup() {
@ -242,14 +242,14 @@ test('toggle method', (done) => {
await later(); await later();
expect( expect(
wrapper.find('.van-dropdown-item__content').style.display wrapper.find('.van-dropdown-item__content').style.display,
).toEqual(''); ).toEqual('');
// hide // hide
item.value.toggle(false, { immediate: true }); item.value.toggle(false, { immediate: true });
await later(); await later();
expect( expect(
wrapper.find('.van-dropdown-item__content').style.display wrapper.find('.van-dropdown-item__content').style.display,
).toEqual('none'); ).toEqual('none');
done(); done();

Some files were not shown because too many files have changed in this diff Show More