Skip to content

Commit

Permalink
Chore(release): Publish version 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraM committed Dec 22, 2022
1 parent ed30742 commit 412fa22
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 24 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="2.3.2"></a>
## [2.3.2](https://github.com/lmc-eu/cookie-consent-manager/compare/2.3.1...2.3.2) (2022-12-22)

### Bug Fixes

- Update button design tokens according to the latest design ([e23431a](https://github.com/lmc-eu/cookie-consent-manager/commit/e23431a))

### Chores

- Improve file name of the CSS theme map ([ed30742](https://github.com/lmc-eu/cookie-consent-manager/commit/ed30742))


<a name="2.3.1"></a>
## [2.3.1](https://github.com/lmc-eu/cookie-consent-manager/compare/2.3.0...2.3.1) (2022-12-15)

Expand Down
21 changes: 12 additions & 9 deletions dist/LmcCookieConsentManager.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/LmcCookieConsentManager.css.map

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion dist/LmcCookieConsentManager.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/scss/index.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Order matters, do not alter.

@forward 'theme/default';
@forward 'theme/vanilla';
@forward 'theme/default-to-vanilla';
@forward 'style/typography';
@forward 'style/links';
@forward 'style/buttons';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
//
// Assignment below is applied through `.cc_div` instead of `:root`, so it works for both light and
// dark theme.
//
// 1. We don't want to style scrollbars at this moment, but let's keep the options here to know they are still available.

.cc_div {
--cc-bg: var(--lmcccm-p-bg);
Expand All @@ -24,6 +26,6 @@
--cc-section-border: var(--lmcccm-p-modal-section-border);
--cc-cookie-table-border: var(--lmcccm-p-cookie-table-border);
--cc-overlay-bg: var(--lmcccm-p-backdrop-color);
//--cc-webkit-scrollbar-bg: #cfd5db;
//--cc-webkit-scrollbar-bg-hover: #9199a0;
// --cc-webkit-scrollbar-bg: #cfd5db; // 1.
// --cc-webkit-scrollbar-bg-hover: #9199a0; // 1.
}
21 changes: 12 additions & 9 deletions dist/scss/theme/_default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,18 @@
--lmcccm-p-btn-primary-active-border: var(--lmcccm-btn-primary-active-border, #{tokens.$action-primary-active});
--lmcccm-p-btn-primary-active-bg: var(--lmcccm-btn-primary-active-bg, #{tokens.$action-primary-active});
--lmcccm-p-btn-primary-active-text: var(--lmcccm-btn-primary-active-text, #{tokens.$text-primary-inverted-default});
--lmcccm-p-btn-secondary-border: var(--lmcccm-btn-secondary-border, #{tokens.$action-primary-default});
--lmcccm-p-btn-secondary-bg: var(--lmcccm-btn-secondary-bg, transparent);
--lmcccm-p-btn-secondary-text: var(--lmcccm-btn-secondary-text, #{tokens.$action-primary-default});
--lmcccm-p-btn-secondary-hover-border: var(--lmcccm-btn-secondary-hover-border, #{tokens.$action-primary-hover});
--lmcccm-p-btn-secondary-hover-bg: var(--lmcccm-btn-secondary-hover-bg, transparent);
--lmcccm-p-btn-secondary-hover-text: var(--lmcccm-btn-secondary-hover-text, #{tokens.$action-primary-hover});
--lmcccm-p-btn-secondary-active-border: var(--lmcccm-btn-secondary-active-border, #{tokens.$action-primary-active});
--lmcccm-p-btn-secondary-active-bg: var(--lmcccm-btn-secondary-active-bg, transparent);
--lmcccm-p-btn-secondary-active-text: var(--lmcccm-btn-secondary-active-text, #{tokens.$action-primary-active});
--lmcccm-p-btn-secondary-border: var(--lmcccm-btn-secondary-border, #{tokens.$action-secondary-default});
--lmcccm-p-btn-secondary-bg: var(--lmcccm-btn-secondary-bg, #{tokens.$background-interactive-default});
--lmcccm-p-btn-secondary-text: var(--lmcccm-btn-secondary-text, #{tokens.$text-primary-default});
--lmcccm-p-btn-secondary-hover-border: var(--lmcccm-btn-secondary-hover-border, #{tokens.$action-secondary-hover});
--lmcccm-p-btn-secondary-hover-bg: var(--lmcccm-btn-secondary-hover-bg, #{tokens.$background-interactive-hover});
--lmcccm-p-btn-secondary-hover-text: var(--lmcccm-btn-secondary-hover-text, #{tokens.$text-primary-default});
--lmcccm-p-btn-secondary-active-border: var(
--lmcccm-btn-secondary-active-border,
#{tokens.$action-secondary-active}
);
--lmcccm-p-btn-secondary-active-bg: var(--lmcccm-btn-secondary-active-bg, #{tokens.$background-interactive-active});
--lmcccm-p-btn-secondary-active-text: var(--lmcccm-btn-secondary-active-text, #{tokens.$text-primary-default});

// Toggle
--lmcccm-p-toggle-bg-off: var(--lmcccm-toggle-bg-off, #{tokens.$action-unselected-default});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lmc-eu/cookie-consent-manager",
"version": "2.3.1",
"version": "2.3.2",
"description": "Cookie Consent Manager mainly for LMC products",
"keywords": [
"lmc-eu",
Expand Down

0 comments on commit 412fa22

Please sign in to comment.