@performing/cookie-popup-gdpr
v1.0.17
Published
Simple and easy to use cookie popup for GDPR compliance
Downloads
99
Readme
Cookie Popup Gdpr
Simple cookie popup to ask consent.
Installation
npm install @performing/cookie-popup-gpdr
Usage
import '@performing/cookie-popup-gdpr'
import '@performing/cookie-popup-gdpr/dist/style.css'
useCookies({
description: 'We use cookies...',
acceptButtonText: 'Accept All',
rejectButtonText: 'Reject All',
saveButtonText: 'Save',
customizeButtonText: 'Customize',
}, {
necessary: {
default: true,
optional: false,
title: 'Necessary:',
description: 'This type of cookie is necessary',
},
statistics: {
default: false,
optional: true,
title: 'Statistics:',
description: 'This type of cookie is for gather statistics',
},
}, (p) => {
if (p.statistics) {
// gather statistics
}
});
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.