kui-basic 1.1.185 → 1.1.186
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/cjs/index.js +3 -3
- package/cjs/index.js.map +1 -1
- package/index.d.ts +26 -1
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -851,4 +851,29 @@ 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
|
+
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, 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 };
|