<Alert> Component
<Alert> is a UI for displaying feedback messages.
Here the demo:
<Alert> Component<Alert> is a UI for displaying feedback messages.
Here the demo:
<Alert> ComponentThere are 2 ways to install <Alert> component into your react app project:
expanded PropertyExpands/Collapses the <Alert>.
The possible values are:
undefinedtruefalseHere the preview:
onExpandedChange PropertySets a callback function to be called when the user closes the <Alert>.
The callback function parameters:
event: ExpandedChangeEventicon PropertySelect an icon set (a string value) corresponding to the icon image.
There are 2 types of icon sets: Built-in icon set and Custom icon set.
There a pretty much of common icon sets that ready to use for general projects.
To add custom icons, for example a logo icon, follow these steps:
lazy PropertyDetermines whenever the <Alert>'s children should be rendered or not when the <Alert expanded={false}>.
The possible values are:
undefinedfalsetrueDetermines how the <Alert> should be floating on the target DOM reference.
floatingOn PropertyDetermines the target DOM reference where the <Alert> should be floating on.
If not set (undefined), the <Alert> becomes a normal element flow.
Here the preview:
floatingPlacement PropertyDetermines the location where the <Alert> should be floating on the target DOM reference.
Here the preview:
floatingPlacement='top'floatingStrategy PropertyDetermines the technical strategy how the <Alert> can float.
In most cases, you should not worry about the detail mechanism how the <Alert> can float.
The possible values are:
undefined'absolute''fixed'floatingAutoFlip PropertyAutomatically flips the floatingPlacement to opposite direction when the <Alert> is about to be clipped.
The possible values are:
undefinedtruefalseHere the preview:
floatingAutoShift PropertyAutomatically shifts the floatingPlacement to nearest safe position when the <Alert> is about to be clipped.
The possible values are:
undefinedtruefalseHere the preview:
floatingOffset PropertyThe distance (in pixel) between the <Alert> and the target DOM reference.
The possible values are:
undefined0Here the preview:
<Alert floatingOffset={0}>
floatingShift PropertyThe distance (in pixel) between the <Alert> and the default floatingPlacement location.
The possible values are:
undefined0Here the preview:
<Alert floatingShift={0}>
onFloatingUpdate PropertySets a callback function to be called when the <Alert> updates the position relative to the target DOM reference.
The callback function parameters:
event: FloatingPositionThe alternative appearances of the <Alert> layout without changing the <Alert>'s functionality.
size PropertyDefines the alternative size of the <Alert>.
The possible values are:
undefined'sm''md''lg'Here the preview:
theme PropertyDefines the contextual theme of the <Alert>.
The possible values are:
undefined'primary''secondary''success''info''warning''danger''light''dark'Here the preview:
gradient PropertyActivates a 3D mode of the <Alert>.
The possible values are:
undefined'inherit'truefalseHere the preview:
outlined PropertyActivates an outlined mode (background-less, contrast foreground, and contrast border) of the <Alert>.
The possible values are:
undefined'inherit'truefalseHere the preview:
mild PropertyActivates a mild mode (mild background, contrast foreground, and contrast border) of the <Alert>.
The possible values are:
undefined'inherit'truefalseHere the preview:
nude PropertyActivates an nude mode (background-less, padding-less, and border-less) of the <Alert>.
The possible values are:
undefinedtruefalseHere the preview:
Overwrites the internal (sub) components used as the composition of <Alert> component.
iconComponent PropertyOverwrites the internal <Icon> component used as the composition of <Alert> component.
<Alert iconComponent={
<MyCustomIcon />
} />controlComponent PropertyOverwrites the internal <CloseButton> component used as the composition of <Alert> component.
<Alert controlComponent={
<MyCustomCloseButton />
} />Because <Alert> is made from <Popup>, so all properties from <Popup> are inherited.
There are several variables of <Alert> you can customize. Changing the variables affects all <Alert> instance and other components that depend on <Alert>.
Here the exposed variables:
The example of accessing, modifying, & adding variables: