kui-basic 1.1.257 → 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 = {
@@ -910,6 +912,7 @@ type TextOverflowProps = {
910
912
  placement?: TooltipProps$1["placement"]
911
913
  strategy?: TooltipProps$1["strategy"]
912
914
  endText?: string | false
915
+ openAlways?: boolean
913
916
  } & CaptionProps$1
914
917
 
915
918
  type TextOverflowStylesProps = {