kui-basic 1.1.258 → 1.1.259
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/cjs/index.js +4 -4
- package/index.d.ts +8 -6
- package/index.js +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -895,12 +895,14 @@ type SnowfallType = (props: SnowfallAnimationProps) => React.ReactElement
|
|
|
895
895
|
|
|
896
896
|
declare const SnowfallAnimation: SnowfallType
|
|
897
897
|
|
|
898
|
-
type LoaderWithSparklesProps =
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
898
|
+
type LoaderWithSparklesProps = {
|
|
899
|
+
height?: string
|
|
900
|
+
} & React.HTMLAttributes<HTMLDivElement>
|
|
901
|
+
|
|
902
|
+
type LoaderWithSparklesType = (
|
|
903
|
+
props: LoaderWithSparklesProps
|
|
904
|
+
) => React.ReactElement
|
|
905
|
+
|
|
904
906
|
declare const LoaderWithSparkles: LoaderWithSparklesType
|
|
905
907
|
|
|
906
908
|
type TextOverflowProps = {
|