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

118
node_modules/vant/lib/circle/Circle.d.ts generated vendored Normal file
View File

@@ -0,0 +1,118 @@
import { type PropType, type ExtractPropTypes } from 'vue';
export type CircleStartPosition = 'top' | 'right' | 'bottom' | 'left';
export declare const circleProps: {
text: StringConstructor;
size: (NumberConstructor | StringConstructor)[];
fill: {
type: PropType<string>;
default: string;
};
rate: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
speed: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
color: PropType<string | Record<string, string>>;
clockwise: {
type: BooleanConstructor;
default: true;
};
layerColor: StringConstructor;
currentRate: {
type: NumberConstructor;
default: number;
};
strokeWidth: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
strokeLinecap: PropType<CanvasLineCap>;
startPosition: {
type: PropType<CircleStartPosition>;
default: CircleStartPosition;
};
};
export type CircleProps = ExtractPropTypes<typeof circleProps>;
declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
text: StringConstructor;
size: (NumberConstructor | StringConstructor)[];
fill: {
type: PropType<string>;
default: string;
};
rate: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
speed: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
color: PropType<string | Record<string, string>>;
clockwise: {
type: BooleanConstructor;
default: true;
};
layerColor: StringConstructor;
currentRate: {
type: NumberConstructor;
default: number;
};
strokeWidth: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
strokeLinecap: PropType<CanvasLineCap>;
startPosition: {
type: PropType<CircleStartPosition>;
default: CircleStartPosition;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:currentRate"[], "update:currentRate", import("vue").PublicProps, Readonly<ExtractPropTypes<{
text: StringConstructor;
size: (NumberConstructor | StringConstructor)[];
fill: {
type: PropType<string>;
default: string;
};
rate: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
speed: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
color: PropType<string | Record<string, string>>;
clockwise: {
type: BooleanConstructor;
default: true;
};
layerColor: StringConstructor;
currentRate: {
type: NumberConstructor;
default: number;
};
strokeWidth: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
strokeLinecap: PropType<CanvasLineCap>;
startPosition: {
type: PropType<CircleStartPosition>;
default: CircleStartPosition;
};
}>> & Readonly<{
"onUpdate:currentRate"?: ((...args: any[]) => any) | undefined;
}>, {
fill: string;
strokeWidth: string | number;
rate: string | number;
speed: string | number;
clockwise: boolean;
currentRate: number;
startPosition: CircleStartPosition;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;

171
node_modules/vant/lib/circle/Circle.js generated vendored Normal file
View File

@@ -0,0 +1,171 @@
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name2 in all)
__defProp(target, name2, { get: all[name2], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var stdin_exports = {};
__export(stdin_exports, {
circleProps: () => circleProps,
default: () => stdin_default
});
module.exports = __toCommonJS(stdin_exports);
var import_vue = require("vue");
var import_use = require("@vant/use");
var import_utils = require("../utils");
const [name, bem] = (0, import_utils.createNamespace)("circle");
let uid = 0;
const format = (rate) => Math.min(Math.max(+rate, 0), 100);
function getPath(clockwise, viewBoxSize) {
const sweepFlag = clockwise ? 1 : 0;
return `M ${viewBoxSize / 2} ${viewBoxSize / 2} m 0, -500 a 500, 500 0 1, ${sweepFlag} 0, 1000 a 500, 500 0 1, ${sweepFlag} 0, -1000`;
}
const circleProps = {
text: String,
size: import_utils.numericProp,
fill: (0, import_utils.makeStringProp)("none"),
rate: (0, import_utils.makeNumericProp)(100),
speed: (0, import_utils.makeNumericProp)(0),
color: [String, Object],
clockwise: import_utils.truthProp,
layerColor: String,
currentRate: (0, import_utils.makeNumberProp)(0),
strokeWidth: (0, import_utils.makeNumericProp)(40),
strokeLinecap: String,
startPosition: (0, import_utils.makeStringProp)("top")
};
var stdin_default = (0, import_vue.defineComponent)({
name,
props: circleProps,
emits: ["update:currentRate"],
setup(props, {
emit,
slots
}) {
const id = `van-circle-${uid++}`;
const viewBoxSize = (0, import_vue.computed)(() => +props.strokeWidth + 1e3);
const path = (0, import_vue.computed)(() => getPath(props.clockwise, viewBoxSize.value));
const svgStyle = (0, import_vue.computed)(() => {
const ROTATE_ANGLE_MAP = {
top: 0,
right: 90,
bottom: 180,
left: 270
};
const angleValue = ROTATE_ANGLE_MAP[props.startPosition];
if (angleValue) {
return {
transform: `rotate(${angleValue}deg)`
};
}
});
(0, import_vue.watch)(() => props.rate, (rate) => {
let rafId;
const startTime = Date.now();
const startRate = props.currentRate;
const endRate = format(rate);
const duration = Math.abs((startRate - endRate) * 1e3 / +props.speed);
const animate = () => {
const now = Date.now();
const progress = Math.min((now - startTime) / duration, 1);
const rate2 = progress * (endRate - startRate) + startRate;
emit("update:currentRate", format(parseFloat(rate2.toFixed(1))));
if (endRate > startRate ? rate2 < endRate : rate2 > endRate) {
rafId = (0, import_use.raf)(animate);
}
};
if (props.speed) {
if (rafId) {
(0, import_use.cancelRaf)(rafId);
}
rafId = (0, import_use.raf)(animate);
} else {
emit("update:currentRate", endRate);
}
}, {
immediate: true
});
const renderHover = () => {
const PERIMETER = 3140;
const {
strokeWidth,
currentRate,
strokeLinecap
} = props;
const offset = PERIMETER * currentRate / 100;
const color = (0, import_utils.isObject)(props.color) ? `url(#${id})` : props.color;
const style = {
stroke: color,
strokeWidth: `${+strokeWidth + 1}px`,
strokeLinecap,
strokeDasharray: `${offset}px ${PERIMETER}px`
};
return (0, import_vue.createVNode)("path", {
"d": path.value,
"style": style,
"class": bem("hover"),
"stroke": color
}, null);
};
const renderLayer = () => {
const style = {
fill: props.fill,
stroke: props.layerColor,
strokeWidth: `${props.strokeWidth}px`
};
return (0, import_vue.createVNode)("path", {
"class": bem("layer"),
"style": style,
"d": path.value
}, null);
};
const renderGradient = () => {
const {
color
} = props;
if (!(0, import_utils.isObject)(color)) {
return;
}
const Stops = Object.keys(color).sort((a, b) => parseFloat(a) - parseFloat(b)).map((key, index) => (0, import_vue.createVNode)("stop", {
"key": index,
"offset": key,
"stop-color": color[key]
}, null));
return (0, import_vue.createVNode)("defs", null, [(0, import_vue.createVNode)("linearGradient", {
"id": id,
"x1": "100%",
"y1": "0%",
"x2": "0%",
"y2": "0%"
}, [Stops])]);
};
const renderText = () => {
if (slots.default) {
return slots.default();
}
if (props.text) {
return (0, import_vue.createVNode)("div", {
"class": bem("text")
}, [props.text]);
}
};
return () => (0, import_vue.createVNode)("div", {
"class": bem(),
"style": (0, import_utils.getSizeStyle)(props.size)
}, [(0, import_vue.createVNode)("svg", {
"viewBox": `0 0 ${viewBoxSize.value} ${viewBoxSize.value}`,
"style": svgStyle.value
}, [renderGradient(), renderLayer(), renderHover()]), renderText()]);
}
});

1
node_modules/vant/lib/circle/index.css generated vendored Normal file
View File

@@ -0,0 +1 @@
:root,:host{--van-circle-size: 100px;--van-circle-color: var(--van-primary-color);--van-circle-layer-color: var(--van-white);--van-circle-text-color: var(--van-text-color);--van-circle-text-font-weight: var(--van-font-bold);--van-circle-text-font-size: var(--van-font-size-md);--van-circle-text-line-height: var(--van-line-height-md)}.van-circle{position:relative;display:inline-block;width:var(--van-circle-size);height:var(--van-circle-size);text-align:center}.van-circle svg{position:absolute;top:0;left:0;width:100%;height:100%}.van-circle__layer{stroke:var(--van-circle-layer-color)}.van-circle__hover{fill:none;stroke:var(--van-circle-color);stroke-linecap:round}.van-circle__text{position:absolute;top:50%;left:0;box-sizing:border-box;width:100%;padding:0 var(--van-padding-base);color:var(--van-circle-text-color);font-weight:var(--van-circle-text-font-weight);font-size:var(--van-circle-text-font-size);line-height:var(--van-circle-text-line-height);transform:translateY(-50%)}

88
node_modules/vant/lib/circle/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,88 @@
export declare const Circle: import("../utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
text: StringConstructor;
size: (NumberConstructor | StringConstructor)[];
fill: {
type: import("vue").PropType<string>;
default: string;
};
rate: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
speed: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
color: import("vue").PropType<string | Record<string, string>>;
clockwise: {
type: BooleanConstructor;
default: true;
};
layerColor: StringConstructor;
currentRate: {
type: NumberConstructor;
default: number;
};
strokeWidth: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
strokeLinecap: import("vue").PropType<CanvasLineCap>;
startPosition: {
type: import("vue").PropType<import("./Circle").CircleStartPosition>;
default: import("./Circle").CircleStartPosition;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:currentRate"[], "update:currentRate", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
text: StringConstructor;
size: (NumberConstructor | StringConstructor)[];
fill: {
type: import("vue").PropType<string>;
default: string;
};
rate: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
speed: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
color: import("vue").PropType<string | Record<string, string>>;
clockwise: {
type: BooleanConstructor;
default: true;
};
layerColor: StringConstructor;
currentRate: {
type: NumberConstructor;
default: number;
};
strokeWidth: {
type: (NumberConstructor | StringConstructor)[];
default: number;
};
strokeLinecap: import("vue").PropType<CanvasLineCap>;
startPosition: {
type: import("vue").PropType<import("./Circle").CircleStartPosition>;
default: import("./Circle").CircleStartPosition;
};
}>> & Readonly<{
"onUpdate:currentRate"?: ((...args: any[]) => any) | undefined;
}>, {
fill: string;
strokeWidth: string | number;
rate: string | number;
speed: string | number;
clockwise: boolean;
currentRate: number;
startPosition: import("./Circle").CircleStartPosition;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
export default Circle;
export { circleProps } from './Circle';
export type { CircleProps, CircleStartPosition } from './Circle';
export type { CircleThemeVars } from './types';
declare module 'vue' {
interface GlobalComponents {
VanCircle: typeof Circle;
}
}

39
node_modules/vant/lib/circle/index.js generated vendored Normal file
View File

@@ -0,0 +1,39 @@
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var stdin_exports = {};
__export(stdin_exports, {
Circle: () => Circle,
circleProps: () => import_Circle2.circleProps,
default: () => stdin_default
});
module.exports = __toCommonJS(stdin_exports);
var import_utils = require("../utils");
var import_Circle = __toESM(require("./Circle"));
var import_Circle2 = require("./Circle");
const Circle = (0, import_utils.withInstall)(import_Circle.default);
var stdin_default = Circle;

1
node_modules/vant/lib/circle/style/index.d.ts generated vendored Normal file
View File

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

2
node_modules/vant/lib/circle/style/index.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
require("../../style/base.css");
require("../index.css");

9
node_modules/vant/lib/circle/types.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
export type CircleThemeVars = {
circleSize?: string;
circleColor?: string;
circleLayerColor?: string;
circleTextColor?: string;
circleTextFontWeight?: string;
circleTextFontSize?: string;
circleTextLineHeight?: number | string;
};

15
node_modules/vant/lib/circle/types.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var stdin_exports = {};
module.exports = __toCommonJS(stdin_exports);