Initial commit: GamePortrait 竖屏版 - 深色豪华主题

This commit is contained in:
li
2026-01-16 17:47:53 +08:00
commit 40976e4b45
26611 changed files with 2843638 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { type ExtractPropTypes } from 'vue';
export declare const skeletonTitleProps: {
round: BooleanConstructor;
titleWidth: (NumberConstructor | StringConstructor)[];
};
export type SkeletonTitleProps = ExtractPropTypes<typeof skeletonTitleProps>;
declare const _default: import("vue").DefineComponent<{
round: BooleanConstructor;
titleWidth: (NumberConstructor | StringConstructor)[];
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
round: BooleanConstructor;
titleWidth: (NumberConstructor | StringConstructor)[];
}>>, {
round: boolean;
}>;
export default _default;
+26
View File
@@ -0,0 +1,26 @@
import { createVNode as _createVNode } from "vue";
import { defineComponent } from "vue";
import { createNamespace, numericProp, addUnit } from "../utils/index.mjs";
const [name, bem] = createNamespace("skeleton-title");
const skeletonTitleProps = {
round: Boolean,
titleWidth: numericProp
};
var stdin_default = defineComponent({
name,
props: skeletonTitleProps,
setup(props) {
return () => _createVNode("h3", {
"class": bem([{
round: props.round
}]),
"style": {
width: addUnit(props.titleWidth)
}
}, null);
}
});
export {
stdin_default as default,
skeletonTitleProps
};
+1
View File
@@ -0,0 +1 @@
:root{--van-skeleton-title-width: 40%}.van-skeleton-title{height:var(--van-skeleton-paragraph-height);background:var(--van-skeleton-paragraph-background)}.van-skeleton-title--round{border-radius:var(--van-radius-max)}.van-skeleton-title{width:var(--van-skeleton-title-width);margin:0}.van-skeleton-title+.van-skeleton-paragraph{margin-top:20px}
+17
View File
@@ -0,0 +1,17 @@
export declare const SkeletonTitle: import("../utils").WithInstall<import("vue").DefineComponent<{
round: BooleanConstructor;
titleWidth: (NumberConstructor | StringConstructor)[];
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
round: BooleanConstructor;
titleWidth: (NumberConstructor | StringConstructor)[];
}>>, {
round: boolean;
}>>;
export default SkeletonTitle;
export { skeletonTitleProps } from './SkeletonTitle';
export type { SkeletonTitleProps } from './SkeletonTitle';
declare module 'vue' {
interface GlobalComponents {
VanSkeletonTitle: typeof SkeletonTitle;
}
}
+10
View File
@@ -0,0 +1,10 @@
import _SkeletonTitle from "./SkeletonTitle.mjs";
import { withInstall } from "../utils/index.mjs";
const SkeletonTitle = withInstall(_SkeletonTitle);
var stdin_default = SkeletonTitle;
import { skeletonTitleProps } from "./SkeletonTitle.mjs";
export {
SkeletonTitle,
stdin_default as default,
skeletonTitleProps
};
+1
View File
@@ -0,0 +1 @@
export {};
+2
View File
@@ -0,0 +1,2 @@
import "../../style/base.css";
import "../index.css";