first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

29
node_modules/vant/es/cell-group/CellGroup.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
import { type ExtractPropTypes } from 'vue';
export declare const cellGroupProps: {
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
};
export type CellGroupProps = ExtractPropTypes<typeof cellGroupProps>;
declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
}>> & Readonly<{}>, {
inset: boolean;
border: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;

44
node_modules/vant/es/cell-group/CellGroup.mjs generated vendored Normal file
View File

@@ -0,0 +1,44 @@
import { defineComponent, mergeProps as _mergeProps, createVNode as _createVNode, Fragment as _Fragment } from "vue";
import { truthProp, createNamespace, BORDER_TOP_BOTTOM } from "../utils/index.mjs";
import { useScopeId } from "../composables/use-scope-id.mjs";
const [name, bem] = createNamespace("cell-group");
const cellGroupProps = {
title: String,
inset: Boolean,
border: truthProp
};
var stdin_default = defineComponent({
name,
inheritAttrs: false,
props: cellGroupProps,
setup(props, {
slots,
attrs
}) {
const renderGroup = () => {
var _a;
return _createVNode("div", _mergeProps({
"class": [bem({
inset: props.inset
}), {
[BORDER_TOP_BOTTOM]: props.border && !props.inset
}]
}, attrs, useScopeId()), [(_a = slots.default) == null ? void 0 : _a.call(slots)]);
};
const renderTitle = () => _createVNode("div", {
"class": bem("title", {
inset: props.inset
})
}, [slots.title ? slots.title() : props.title]);
return () => {
if (props.title || slots.title) {
return _createVNode(_Fragment, null, [renderTitle(), renderGroup()]);
}
return renderGroup();
};
}
});
export {
cellGroupProps,
stdin_default as default
};

1
node_modules/vant/es/cell-group/index.css generated vendored Normal file
View File

@@ -0,0 +1 @@
:root,:host{--van-cell-group-background: var(--van-background-2);--van-cell-group-title-color: var(--van-text-color-2);--van-cell-group-title-padding: var(--van-padding-md) var(--van-padding-md);--van-cell-group-title-font-size: var(--van-font-size-md);--van-cell-group-title-line-height: 16px;--van-cell-group-inset-padding: 0 var(--van-padding-md);--van-cell-group-inset-radius: var(--van-radius-lg);--van-cell-group-inset-title-padding: var(--van-padding-md) var(--van-padding-md)}.van-cell-group{background:var(--van-cell-group-background)}.van-cell-group--inset{margin:var(--van-cell-group-inset-padding);border-radius:var(--van-cell-group-inset-radius);overflow:hidden}.van-cell-group__title{padding:var(--van-cell-group-title-padding);color:var(--van-cell-group-title-color);font-size:var(--van-cell-group-title-font-size);line-height:var(--van-cell-group-title-line-height)}.van-cell-group__title--inset{padding:var(--van-cell-group-inset-title-padding)}

27
node_modules/vant/es/cell-group/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
export declare const CellGroup: import("../utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
}>> & Readonly<{}>, {
inset: boolean;
border: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
export default CellGroup;
export { cellGroupProps } from './CellGroup';
export type { CellGroupProps } from './CellGroup';
export type { CellGroupThemeVars } from './types';
declare module 'vue' {
interface GlobalComponents {
VanCellGroup: typeof CellGroup;
}
}

10
node_modules/vant/es/cell-group/index.mjs generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import { withInstall } from "../utils/index.mjs";
import _CellGroup from "./CellGroup.mjs";
const CellGroup = withInstall(_CellGroup);
var stdin_default = CellGroup;
import { cellGroupProps } from "./CellGroup.mjs";
export {
CellGroup,
cellGroupProps,
stdin_default as default
};

1
node_modules/vant/es/cell-group/style/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export {};

2
node_modules/vant/es/cell-group/style/index.mjs generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import "../../style/base.css";
import "../index.css";

10
node_modules/vant/es/cell-group/types.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
export type CellGroupThemeVars = {
cellGroupBackground?: string;
cellGroupTitleColor?: string;
cellGroupTitlePadding?: string;
cellGroupTitleFontSize?: string;
cellGroupTitleLineHeight?: number | string;
cellGroupInsetPadding?: string;
cellGroupInsetRadius?: string;
cellGroupInsetTitlePadding?: string;
};

0
node_modules/vant/es/cell-group/types.mjs generated vendored Normal file
View File