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/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 = React.HTMLAttributes<HTMLDivElement>
899
-
900
- type LoaderWithSparklesType = (
901
- props: LoaderWithSparklesProps
902
- ) => React.ReactElement
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 = {