6.1.11 • Published 3 years ago

bpk-component-banner-alert-css v6.1.11

Weekly downloads
249
License
Apache-2.0
Repository
github
Last release
3 years ago

bpk-component-banner-alert

Backpack banner alert component.

Installation

npm install bpk-component-banner-alert --save-dev

Usage

Default

import React from 'react';
import BpkBannerAlert, { ALERT_TYPES } from 'bpk-component-banner-alert';

export default () => (
  <BpkBannerAlert
    message="Successful alert with more information."
    type={ALERT_TYPES.SUCCESS}
  />
);

Dismissable

import React, { Component } from 'react';
import { ALERT_TYPES, BpkBannerAlertDismissable } from 'bpk-component-banner-alert';

class DismissableBpkBannerAlert extends Component {
  constructor() {
    super();


    this.state = {
      show: true,
    };
  }

  setDismissed = () => {
    this.setState({
      show: false,
    });
  }

  render() {
    return (
      <BpkBannerAlertDismissable
        message="Successful alert with dismiss option."
        type={ALERT_TYPES.SUCCESS}
        onDismiss={this.setDismissed}
        show={this.state.show}
        dismissButtonLabel="Dismiss"
      />
    );
  }
}

export default () => (
  <DismissableBpkBannerAlert />
);

withBannerAlertState(BpkBannerAlert)

import React, { Component } from 'react';
import { ALERT_TYPES, withBannerAlertState, BpkBannerAlertDismissable, BpkBannerAlertExpandable } from 'bpk-component-banner-alert';

const BannerAlertDismissableState = withBannerAlertState(BpkBannerAlertDismissable);
const BannerAlertExpandableState = withBannerAlertState(BpkBannerAlertExpandable);

<BannerAlertDismissableState
  dismissButtonLabel="Dismiss"
  message="Successful alert with dismiss option."
  type={ALERT_TYPES.SUCCESS}
/>

<BannerAlertDismissableState
  message="Successful alert that will disappear after 5 seconds."
  hideAfter={5}
  type={ALERT_TYPES.SUCCESS}
/>

<BannerAlertExpandableState
  message="Successful alert with expandable option."
  type={ALERT_TYPES.SUCCESS}
  toggleButtonLabel="View more"
>
  Lorem ipsum dolor sit amet.
</BannerAlertExpandableState>

Props

BpkBannerAlert

PropertyPropTypeRequiredDefault Value
typeALERT_TYPES (one of)true-
messagenodetrue-
animateOnEnterboolfalsefalse
animateOnLeaveboolfalsefalse
bannerClassNamestringfalsenull
iconBpkIconfalsenull
showboolfalsetrue

BpkBannerAlertDismissable

PropertyPropTypeRequiredDefault Value
typeALERT_TYPES (one of)true-
messagenodetrue-
animateOnEnterboolfalsefalse
animateOnLeaveboolfalsefalse
bannerClassNamestringfalsenull
dismissButtonLabelstringfalsenull
iconBpkIconfalsenull
onDismissfuncfalsenull
showboolfalsetrue

BpkBannerAlertExpandable

PropertyPropTypeRequiredDefault Value
typeALERT_TYPES (one of)true-
messagenodetrue-
animateOnEnterboolfalsefalse
animateOnLeaveboolfalsefalse
bannerClassNamestringfalsenull
expandedboolfalsefalse
iconBpkIconfalsenull
onExpandTogglefuncfalsenull
showboolfalsetrue
toggleButtonLabelstringfalsenull

withBannerAlertState(BpkBannerAlert)

PropertyPropTypeRequiredDefault Value
hideAfternumberfalsenull
onHidefuncfalsenull

Theme Props

  • bannerAlertPrimaryColor
  • bannerAlertSuccessColor
  • bannerAlertWarnColor
  • bannerAlertErrorColor
6.1.11

3 years ago

6.1.9

3 years ago

6.1.5

3 years ago

6.1.7

3 years ago

6.1.2

3 years ago

6.1.4

3 years ago

6.1.1

3 years ago

6.0.16

3 years ago

6.0.13

3 years ago

6.0.11

3 years ago

6.0.10

3 years ago

6.0.1

4 years ago

6.0.2

4 years ago

6.0.4

4 years ago

5.0.26

4 years ago

5.0.20

4 years ago

5.0.17

4 years ago

5.0.15

4 years ago

5.0.12

4 years ago

5.0.13

4 years ago

5.0.14

4 years ago

5.0.11

4 years ago

5.0.9

4 years ago

5.0.10

4 years ago

5.0.8

4 years ago

5.0.7

4 years ago

5.0.6

4 years ago

5.0.5

4 years ago

5.0.4

4 years ago

5.0.3

4 years ago

5.0.2

4 years ago

5.0.1

4 years ago

4.3.6

4 years ago

4.3.8

4 years ago

5.0.0

4 years ago

4.3.5

4 years ago

4.3.4

4 years ago

4.3.3

4 years ago

4.3.2

4 years ago

4.3.1

4 years ago

4.3.0

4 years ago

4.2.84

4 years ago

4.2.83

4 years ago

4.2.81

4 years ago

4.2.82

4 years ago

4.2.80

4 years ago

4.2.78

4 years ago

4.2.77

4 years ago

4.2.76

4 years ago

4.2.75

4 years ago

4.2.72

4 years ago

4.2.73

4 years ago

4.2.74

4 years ago

4.2.70

4 years ago

4.2.71

4 years ago

4.2.69

4 years ago

4.2.68

4 years ago

4.2.66

4 years ago

4.2.67

4 years ago

4.2.64

4 years ago

4.2.65

4 years ago

4.2.63

4 years ago

4.2.62

4 years ago

4.2.61

4 years ago

4.2.60

4 years ago

4.2.59

4 years ago

4.2.58

4 years ago

4.2.57

4 years ago

4.2.56

4 years ago

4.2.55

4 years ago

4.2.53

4 years ago

4.2.54

4 years ago

4.2.52

4 years ago

4.2.51

4 years ago

4.2.50

4 years ago

4.2.49

4 years ago

4.2.48

4 years ago

4.2.47

5 years ago

4.2.45

5 years ago

4.2.46

5 years ago

4.2.43

5 years ago

4.2.44

5 years ago

4.2.40

5 years ago

4.2.39

5 years ago

4.2.38

5 years ago

4.2.37

5 years ago

4.2.36

5 years ago

4.2.34

5 years ago

4.2.33

5 years ago

4.2.31

5 years ago

4.2.32

5 years ago

4.2.30

5 years ago

4.2.29

5 years ago

4.2.27

5 years ago

4.2.26

5 years ago

4.2.25

5 years ago

4.2.20

5 years ago

4.2.19

5 years ago

4.2.18

5 years ago

4.2.16

5 years ago

4.2.15

5 years ago

4.2.14

5 years ago

4.2.13

5 years ago