diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5cadbc..ff411ca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v2.0.75 + +- Change clickbox for `Panel` toggle + ## v2.0.74 - Add `Repeat` to the `Icon` component diff --git a/package-lock.json b/package-lock.json index 2f85e98e..651c1290 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@lob/ui-components", - "version": "2.0.74", + "version": "2.0.75", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@lob/ui-components", - "version": "2.0.74", + "version": "2.0.75", "dependencies": { "date-fns": "^2.29.3", "date-fns-holiday-us": "^0.3.1", diff --git a/package.json b/package.json index 8505e3dd..22f314e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lob/ui-components", - "version": "2.0.74", + "version": "2.0.75", "engines": { "node": ">=20.2.0", "npm": ">=10.2.0" diff --git a/src/assets/styles/main.scss b/src/assets/styles/main.scss index cc2c2d89..ee5ab48a 100644 --- a/src/assets/styles/main.scss +++ b/src/assets/styles/main.scss @@ -42,13 +42,6 @@ @apply text-lg; } - .uic-panel-container { - @apply rounded-md; - @apply border-line-grey border; - @apply bg-white; - @apply w-full p-4; - } - // TODO Move to `@layer components` when that works .tile-container { @apply rounded-2xl; diff --git a/src/components/Panel/Panel.vue b/src/components/Panel/Panel.vue index 8d10f749..7eaff074 100644 --- a/src/components/Panel/Panel.vue +++ b/src/components/Panel/Panel.vue @@ -1,7 +1,7 @@