6.1.11 • Published 2 years ago

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

Weekly downloads
249
License
Apache-2.0
Repository
github
Last release
2 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

2 years ago

6.1.9

2 years ago

6.1.5

2 years ago

6.1.7

2 years ago

6.1.2

2 years ago

6.1.4

2 years ago

6.1.1

2 years ago

6.0.16

2 years ago

6.0.13

2 years ago

6.0.11

2 years ago

6.0.10

2 years ago

6.0.1

2 years ago

6.0.2

2 years ago

6.0.4

2 years ago

5.0.26

3 years ago

5.0.20

3 years ago

5.0.17

3 years ago

5.0.15

3 years ago

5.0.12

3 years ago

5.0.13

3 years ago

5.0.14

3 years ago

5.0.11

3 years ago

5.0.9

3 years ago

5.0.10

3 years ago

5.0.8

3 years ago

5.0.7

3 years ago

5.0.6

3 years ago

5.0.5

3 years ago

5.0.4

3 years ago

5.0.3

3 years ago

5.0.2

3 years ago

5.0.1

3 years ago

4.3.6

3 years ago

4.3.8

3 years ago

5.0.0

3 years ago

4.3.5

3 years ago

4.3.4

3 years ago

4.3.3

3 years ago

4.3.2

3 years ago

4.3.1

3 years ago

4.3.0

3 years ago

4.2.84

3 years ago

4.2.83

3 years ago

4.2.81

3 years ago

4.2.82

3 years ago

4.2.80

3 years ago

4.2.78

3 years ago

4.2.77

3 years ago

4.2.76

3 years ago

4.2.75

3 years ago

4.2.72

3 years ago

4.2.73

3 years ago

4.2.74

3 years ago

4.2.70

3 years ago

4.2.71

3 years ago

4.2.69

3 years ago

4.2.68

3 years ago

4.2.66

3 years ago

4.2.67

3 years ago

4.2.64

3 years ago

4.2.65

3 years ago

4.2.63

3 years ago

4.2.62

3 years ago

4.2.61

3 years ago

4.2.60

3 years ago

4.2.59

3 years ago

4.2.58

3 years ago

4.2.57

3 years ago

4.2.56

3 years ago

4.2.55

3 years ago

4.2.53

3 years ago

4.2.54

3 years ago

4.2.52

3 years ago

4.2.51

3 years ago

4.2.50

3 years ago

4.2.49

3 years ago

4.2.48

3 years ago

4.2.47

3 years ago

4.2.45

3 years ago

4.2.46

3 years ago

4.2.43

3 years ago

4.2.44

3 years ago

4.2.40

3 years ago

4.2.39

4 years ago

4.2.38

4 years ago

4.2.37

4 years ago

4.2.36

4 years ago

4.2.34

4 years ago

4.2.33

4 years ago

4.2.31

4 years ago

4.2.32

4 years ago

4.2.30

4 years ago

4.2.29

4 years ago

4.2.27

4 years ago

4.2.26

4 years ago

4.2.25

4 years ago

4.2.20

4 years ago

4.2.19

4 years ago

4.2.18

4 years ago

4.2.16

4 years ago

4.2.15

4 years ago

4.2.14

4 years ago

4.2.13

4 years ago