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 @@
.ant-skeleton-input{width:200px;height:20px;border-radius:4px;background:#eee;display:inline-block}.ant-skeleton-input-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-input {{animate ? 'ant-skeleton-input-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 { SkeletonInputDefaultProps } from './props';
Component(SkeletonInputDefaultProps);

View File

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

View File

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

View File

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