kui-basic 1.1.185 → 1.1.187
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/ParticlesExplosion/cjs/index.js +1 -1
- package/ParticlesExplosion/cjs/index.js.map +1 -1
- package/ParticlesExplosion/index.d.ts +7 -2
- package/ParticlesExplosion/index.js +1 -1
- package/ParticlesExplosion/index.js.map +1 -1
- package/Snowfall/cjs/index.js +2 -0
- package/Snowfall/cjs/index.js.map +1 -0
- package/Snowfall/cjs/package.json +6 -0
- package/Snowfall/index.js +2 -0
- package/Snowfall/index.js.map +1 -0
- package/Snowfall/package.json +6 -0
- package/SnowfallAnimation/cjs/index.js +2 -0
- package/SnowfallAnimation/cjs/index.js.map +1 -0
- package/SnowfallAnimation/cjs/package.json +6 -0
- package/SnowfallAnimation/index.d.ts +12 -0
- package/SnowfallAnimation/index.js +2 -0
- package/SnowfallAnimation/index.js.map +1 -0
- package/SnowfallAnimation/package.json +6 -0
- package/cjs/index.js +4 -4
- package/cjs/index.js.map +1 -1
- package/index.d.ts +35 -1
- package/index.js +4 -4
- package/index.js.map +1 -1
- package/package.json +3 -2
package/index.d.ts
CHANGED
|
@@ -851,4 +851,38 @@ type NewYearGarlandType = (
|
|
|
851
851
|
|
|
852
852
|
declare const NewYearGarland: NewYearGarlandType
|
|
853
853
|
|
|
854
|
-
|
|
854
|
+
interface ParticlesExplosionProps
|
|
855
|
+
extends React.DetailedHTMLProps<
|
|
856
|
+
React.HTMLAttributes<HTMLDivElement>,
|
|
857
|
+
HTMLDivElement
|
|
858
|
+
>,
|
|
859
|
+
React.AriaAttributes {
|
|
860
|
+
particleElement?: ReactNode
|
|
861
|
+
count?: number
|
|
862
|
+
colors: string[]
|
|
863
|
+
bezierMedian?: number
|
|
864
|
+
duration?: number
|
|
865
|
+
force?: number
|
|
866
|
+
size?: number
|
|
867
|
+
delay?: string
|
|
868
|
+
width?: number
|
|
869
|
+
height?: number | string
|
|
870
|
+
htmlTag?: string
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
type ParticlesExplosionType = (
|
|
874
|
+
props: ParticlesExplosionProps
|
|
875
|
+
) => React.ReactElement
|
|
876
|
+
|
|
877
|
+
declare const ParticlesExplosion: ParticlesExplosionType
|
|
878
|
+
|
|
879
|
+
type SnowfallProps = React.DetailedHTMLProps<
|
|
880
|
+
React.HTMLAttributes<HTMLDivElement>,
|
|
881
|
+
HTMLDivElement
|
|
882
|
+
>
|
|
883
|
+
|
|
884
|
+
type SnowfallType = (props: SnowfallProps) => React.ReactElement
|
|
885
|
+
|
|
886
|
+
declare const SnowfallAnimation: SnowfallType
|
|
887
|
+
|
|
888
|
+
export { Accordion, AccordionDetails, AccordionDetailsType, AccordionProps, AccordionSummary, AccordionSummaryProps, AccordionSummaryType, AccordionType, AppBar, AppBarProps, AppBarType, BackgroundColors, BackgroundColorsType, Box, BoxProps, BoxSizing, BoxType, BrandColors, BreakpointsType, Button, ButtonBorder, ButtonProps, ButtonSizes, ButtonThemes, ButtonType, ButtonTypes, Caption, CaptionAlign, CaptionColorGroups, CaptionColors, CaptionProps, CaptionSizes, CaptionType, CaptionVariants, CaptionWeight, Checkbox, CheckboxProps, CheckboxType, CircularProgress, CircularProgressType, ColorOption, ColorsType, Container, ContainerType, CountryItem, Divider, DividerProps, DividerType, ErrorColorsType, ErrorComponent, ErrorComponentProps, GreyColors, Grid, GridAlignItems, GridDirections, GridJustify, GridProps, GridSizing, GridType, GridWrap, Heading, HeadingColorGroups, HeadingColors, HeadingProps, HeadingSizes, HeadingType, IconButton, IconButtonProps, IconButtonType, InfoColorsType, Input, InputFile, InputFileProps, InputFileType, InputMessage, InputMessageProps, InputMessageType, InputMessageVariant, InputProps, InputType, InputWithAdornments, InputWithAdornmentsProps, InputWithAdornmentsType, InputWithCountryDropdown, InputWithCountryDropdownProps, InputWithCountryDropdownType, InputWithMask, InputWithMaskProps, InputWithMaskType, LinearProgress, LinearProgressType, MenuPanel, MenuPanelProps, MenuPanelType, Modal, ModalProps, ModalSizes, ModalType, NewYearGarland, NewYearGarlandProps, NewYearGarlandType, Palette, ParticlesExplosion, ParticlesExplosionProps, ParticlesExplosionType, PopperBase as Popper, PopperBaseProps, PopperStylesProps, PrimaryColorsType, PurpleColorsType, Radio, RadioProps, RadioType, SecondaryColorsType, SettingsType, ShadowsType, Skeleton, SkeletonType, SnowfallAnimation, SnowfallProps, SnowfallType, SuccessColorsType, Switch, SwitchProps, SwitchSizes, SwitchType, Tab, TabChangeHandlerType, TabProps, TabType, Tabs, TabsIndicatorPositions, TabsPanel, TabsPanelProps, TabsPanelType, TabsProps, TabsType, Text, TextColors, TextProps, TextSizes, TextType, TextWeight, ThemeInterface, ThemeType, ToolBar, ToolBarType, Tooltip, TooltipProps, TooltipStylesProps, TooltipToggleMethods, theme, themeOld };
|