3.0.1 • Published 21 days ago

@maggioli-design-system/mds-notification v3.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
21 days ago

mds-notification

Install

Install the component via npm by running the following command

npm install @maggioli-design-system/mds-notification

This package works also with yarn:

yarn add @maggioli-design-system/mds-notification

Import

Import the components in your project via TypeScript as follows:

import { defineCustomElements as dceMdsNotification } from '@maggioli-design-system/mds-notification/loader'

dceMdsNotification()

MdsNotification depends on MdsText, so you will have to import it as well:

import { defineCustomElements as dceMdsText } from '@maggioli-design-system/mds-text/loader'

dceMdsText()

You will have to import also the css style from @maggioli-design-system as follows:

@import '~@maggioli-design-system/styles/dist/css/colors-rgb.css`

If you need to support older browsers (i.e. IE or early version of Edge), you can wrap the defineCustomElements in another utility awailable in the same package:

import { applyPolyfills as apMdsNotification, defineCustomElements as dceMdsNotification } from '@maggioli-design-system/mds-notification/loader'

apMdsNotification().then(dceMdsNotification())

Use alias for defineCustomElements method to initialize multiple web components in the same place:

import { defineCustomElements as dceMdsComponentOne } from '@maggioli-design-system/mds-component-one/loader'
import { defineCustomElements as dceMdsComponentTwo } from '@maggioli-design-system/mds-component-two/loader'

dceMdsComponentOne()
dceMdsComponentTwo()

You can check how browser support works at this page.

Integration

How to use it in HTML

MdsNotification is meant to be used to support another HTML component (like an icon or a button) to notify the user of pending notifications.

The component accepts the following attributes:

  • target: (mandatory) specifies the id of the element to which is attached
  • value: specifies the number of notification to display (if set to the element will be hidden)
  • visible: specifies if the notification should be visible or not
<mds-notification target='my-button' value=22 visible=true></mds-notification>
<button id='my-button'>Click here!</button>

You can try it out on the component's Storybook website!

This is a web-component from Maggioli Design System Magma, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.

Properties

PropertyAttributeDescriptionTypeDefault
maxmaxSpecifies the maximum number that can be seen, assuming that the number is for example 9 and that this is exceeded with 15, the component shows +9number \| undefinedundefined
strategystrategySpecifies the position strategy of the notification"absolute" \| "disabled" \| "fixed"'fixed'
targettargetSpecifies the selector of the target element, this attribute is used with querySelector method.stringundefined
valuevalueSpecifies number of notifications to display, if it set to 0, the element will be hiddennumber0
visiblevisibleSpecifies if the notification is visiblebooleantrue

CSS Custom Properties

NameDescription
--mds-notification-colorSets the text color of the component
--mds-notification-dot-backgroundSets the background-color of the component
--mds-notification-dot-paddingSets the size of the component
--mds-notification-ring-colorSets the border color of ring around the notification
--mds-notification-ring-sizeSets the border size of ring around the notification
--mds-notification-sizeSets the size of the component
--mds-notification-translate-offset-xSets offset x positioning of the notification
--mds-notification-translate-offset-ySets offset y positioning of the notification

Dependencies

Depends on

Graph

graph TD;
  mds-notification --> mds-text
  style mds-notification fill:#f9f,stroke:#333,stroke-width:4px

Built with love @ Gruppo Maggioli from R&D Department

3.0.1

21 days ago

3.0.0

2 months ago

2.10.3

3 months ago

2.10.4

3 months ago

2.10.1

3 months ago

2.10.0

3 months ago

2.9.0

3 months ago

2.8.4

4 months ago

2.8.3

4 months ago

2.8.2

5 months ago

2.7.0

6 months ago

2.6.1

8 months ago

2.6.0

8 months ago

2.8.1

6 months ago

2.8.0

6 months ago

2.6.2

7 months ago

2.5.0

1 year ago

2.4.0

1 year ago

2.3.2

1 year ago

2.3.1

1 year ago

2.3.0

1 year ago

1.1.1

1 year ago

2.2.0

1 year ago

2.0.0

1 year ago

1.1.0

2 years ago

1.0.0

2 years ago