This commit is contained in:
Ling53666
2025-08-18 09:11:51 +08:00
commit 02554225da
2516 changed files with 133155 additions and 0 deletions

View File

@ -0,0 +1,6 @@
<view
a:if="{{loading}}"
class="ant-skeleton-title {{animate ? 'ant-skeleton-title-animate' : ''}} {{className || ''}}"
style="{{style}}"
></view>
<slot a:else></slot>

View File

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

View File

@ -0,0 +1,3 @@
import { Component } from '../../_util/simply';
import { SkeletonTitleDefaultProps } from './props';
Component(SkeletonTitleDefaultProps);

View File

@ -0,0 +1,4 @@
{
"component": true,
"usingComponents": {}
}

View File

@ -0,0 +1,12 @@
@import '../variable.less';
.@{skeletonPrefix}-title {
&-animate {
.skeleton-animation();
}
height: 40 * @rpx;
width: 45%;
margin-bottom: 40 * @rpx;
border-radius: @default-radius;
background: @skeleton-fill;
}

View File

@ -0,0 +1,4 @@
import { ISkeletonBaseProps } from '../props';
export interface SkeletonTitleProps extends ISkeletonBaseProps {
}
export declare const SkeletonTitleDefaultProps: Partial<SkeletonTitleProps>;

View File

@ -0,0 +1,3 @@
import { __assign } from "tslib";
import { SkeletonDefaultBaseProps } from '../props';
export var SkeletonTitleDefaultProps = __assign({}, SkeletonDefaultBaseProps);