Skip to content

Commit 412fa22

Browse files
committed
Chore(release): Publish version 2.3.2
1 parent ed30742 commit 412fa22

File tree

8 files changed

+47
-24
lines changed

8 files changed

+47
-24
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="2.3.2"></a>
2+
## [2.3.2](https://github.com/lmc-eu/cookie-consent-manager/compare/2.3.1...2.3.2) (2022-12-22)
3+
4+
### Bug Fixes
5+
6+
- Update button design tokens according to the latest design ([e23431a](https://github.com/lmc-eu/cookie-consent-manager/commit/e23431a))
7+
8+
### Chores
9+
10+
- Improve file name of the CSS theme map ([ed30742](https://github.com/lmc-eu/cookie-consent-manager/commit/ed30742))
11+
12+
113
<a name="2.3.1"></a>
214
## [2.3.1](https://github.com/lmc-eu/cookie-consent-manager/compare/2.3.0...2.3.1) (2022-12-15)
315

dist/LmcCookieConsentManager.css

Lines changed: 12 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/LmcCookieConsentManager.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/LmcCookieConsentManager.min.css

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/scss/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Order matters, do not alter.
22

33
@forward 'theme/default';
4-
@forward 'theme/vanilla';
4+
@forward 'theme/default-to-vanilla';
55
@forward 'style/typography';
66
@forward 'style/links';
77
@forward 'style/buttons';

dist/scss/theme/_vanilla.scss renamed to dist/scss/theme/_default-to-vanilla.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
//
44
// Assignment below is applied through `.cc_div` instead of `:root`, so it works for both light and
55
// dark theme.
6+
//
7+
// 1. We don't want to style scrollbars at this moment, but let's keep the options here to know they are still available.
68

79
.cc_div {
810
--cc-bg: var(--lmcccm-p-bg);
@@ -24,6 +26,6 @@
2426
--cc-section-border: var(--lmcccm-p-modal-section-border);
2527
--cc-cookie-table-border: var(--lmcccm-p-cookie-table-border);
2628
--cc-overlay-bg: var(--lmcccm-p-backdrop-color);
27-
//--cc-webkit-scrollbar-bg: #cfd5db;
28-
//--cc-webkit-scrollbar-bg-hover: #9199a0;
29+
// --cc-webkit-scrollbar-bg: #cfd5db; // 1.
30+
// --cc-webkit-scrollbar-bg-hover: #9199a0; // 1.
2931
}

dist/scss/theme/_default.scss

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,18 @@
5050
--lmcccm-p-btn-primary-active-border: var(--lmcccm-btn-primary-active-border, #{tokens.$action-primary-active});
5151
--lmcccm-p-btn-primary-active-bg: var(--lmcccm-btn-primary-active-bg, #{tokens.$action-primary-active});
5252
--lmcccm-p-btn-primary-active-text: var(--lmcccm-btn-primary-active-text, #{tokens.$text-primary-inverted-default});
53-
--lmcccm-p-btn-secondary-border: var(--lmcccm-btn-secondary-border, #{tokens.$action-primary-default});
54-
--lmcccm-p-btn-secondary-bg: var(--lmcccm-btn-secondary-bg, transparent);
55-
--lmcccm-p-btn-secondary-text: var(--lmcccm-btn-secondary-text, #{tokens.$action-primary-default});
56-
--lmcccm-p-btn-secondary-hover-border: var(--lmcccm-btn-secondary-hover-border, #{tokens.$action-primary-hover});
57-
--lmcccm-p-btn-secondary-hover-bg: var(--lmcccm-btn-secondary-hover-bg, transparent);
58-
--lmcccm-p-btn-secondary-hover-text: var(--lmcccm-btn-secondary-hover-text, #{tokens.$action-primary-hover});
59-
--lmcccm-p-btn-secondary-active-border: var(--lmcccm-btn-secondary-active-border, #{tokens.$action-primary-active});
60-
--lmcccm-p-btn-secondary-active-bg: var(--lmcccm-btn-secondary-active-bg, transparent);
61-
--lmcccm-p-btn-secondary-active-text: var(--lmcccm-btn-secondary-active-text, #{tokens.$action-primary-active});
53+
--lmcccm-p-btn-secondary-border: var(--lmcccm-btn-secondary-border, #{tokens.$action-secondary-default});
54+
--lmcccm-p-btn-secondary-bg: var(--lmcccm-btn-secondary-bg, #{tokens.$background-interactive-default});
55+
--lmcccm-p-btn-secondary-text: var(--lmcccm-btn-secondary-text, #{tokens.$text-primary-default});
56+
--lmcccm-p-btn-secondary-hover-border: var(--lmcccm-btn-secondary-hover-border, #{tokens.$action-secondary-hover});
57+
--lmcccm-p-btn-secondary-hover-bg: var(--lmcccm-btn-secondary-hover-bg, #{tokens.$background-interactive-hover});
58+
--lmcccm-p-btn-secondary-hover-text: var(--lmcccm-btn-secondary-hover-text, #{tokens.$text-primary-default});
59+
--lmcccm-p-btn-secondary-active-border: var(
60+
--lmcccm-btn-secondary-active-border,
61+
#{tokens.$action-secondary-active}
62+
);
63+
--lmcccm-p-btn-secondary-active-bg: var(--lmcccm-btn-secondary-active-bg, #{tokens.$background-interactive-active});
64+
--lmcccm-p-btn-secondary-active-text: var(--lmcccm-btn-secondary-active-text, #{tokens.$text-primary-default});
6265

6366
// Toggle
6467
--lmcccm-p-toggle-bg-off: var(--lmcccm-toggle-bg-off, #{tokens.$action-unselected-default});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lmc-eu/cookie-consent-manager",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "Cookie Consent Manager mainly for LMC products",
55
"keywords": [
66
"lmc-eu",

0 commit comments

Comments
 (0)