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 @@
@keyframes ant-skeleton-loading{0%{background-position:100% 50%}100%{background-position:0 50%}}.ant-skeleton-title{height:20px;width:45%;margin-bottom:20px;border-radius:4px;background:#eee}.ant-skeleton-title-animate{background:linear-gradient(90deg,#eee 25%,rgba(204,204,204,.6) 37%,#eee 63%);background-size:400% 100%;animation:ant-skeleton-loading 1.4s ease infinite}

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,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);