Skip to content

Commit

Permalink
Dropdown improvements (#715)
Browse files Browse the repository at this point in the history
* Better spacing for options with description

* Fix export of accordion body directive
  • Loading branch information
mpellerin42 authored Jun 10, 2024
1 parent f2014aa commit 7dab68d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 2.66.1 (2024-06-10)

### Improvements

- **Dropdown**: better spacing for options with description

### Bugfix

- **Accordion**: Fix export of accordion body directive

# 2.66.0 (2024-06-07)

### Feature
Expand Down
2 changes: 1 addition & 1 deletion projects/pastanaga-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@guillotinaweb/pastanaga-angular",
"description": "Provides Pastanaga UI elements as Angular components",
"version": "2.66.0",
"version": "2.66.1",
"license": "MIT",
"keywords": [
"angular",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './accordion-item.component';
2 changes: 1 addition & 1 deletion projects/pastanaga-angular/src/lib/accordion/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './accordion.component';
export * from './accordion-item/accordion-item.component';
export * from './accordion-item';
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@
}

&.pa-option-with-description {
padding: rhythm(0.25) $padding-menu-option-side;

.pa-option-content {
margin-bottom: calc(-1 * #{rhythm(0.5)});
}
padding: rhythm(1) $padding-menu-option-side;
}

.pa-option-text-wrapper {
Expand Down

0 comments on commit 7dab68d

Please sign in to comment.