@selectwin/kit 0.1.28 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/SelectSkeleton.d.ts +6 -0
- package/dist/index.js +739 -736
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/SelectSkeleton.d.ts
CHANGED
|
@@ -7,11 +7,17 @@ declare function SkeletonDisplay({ size }: {
|
|
|
7
7
|
declare function SkeletonThumbnail({ size }: {
|
|
8
8
|
size?: 'small' | 'medium' | 'large';
|
|
9
9
|
}): import("react").JSX.Element;
|
|
10
|
+
/** Área de conteúdo não-textual carregando (chart, mapa, imagem, preview): retângulo
|
|
11
|
+
* shimmer com 100% da largura do pai e a altura dada. */
|
|
12
|
+
declare function SkeletonBlock({ height }: {
|
|
13
|
+
height?: number | string;
|
|
14
|
+
}): import("react").JSX.Element;
|
|
10
15
|
export declare const SelectSkeleton: (({ lines }: {
|
|
11
16
|
lines?: number;
|
|
12
17
|
}) => import("react").JSX.Element) & {
|
|
13
18
|
Body: typeof SkeletonBody;
|
|
14
19
|
Display: typeof SkeletonDisplay;
|
|
15
20
|
Thumbnail: typeof SkeletonThumbnail;
|
|
21
|
+
Block: typeof SkeletonBlock;
|
|
16
22
|
};
|
|
17
23
|
export {};
|