Compare commits

...

3 Commits

Author SHA1 Message Date
github-actions[bot]
758caffdf9 Version Packages 2021-03-25 07:14:15 +01:00
qa46hx
302227e8a9 feat(search): add variable for border-radius of SearchCombobox 2021-03-24 23:20:56 +01:00
Thomas Allmer
04a31220fb chore: align versions across the mono repo 2021-03-15 21:03:07 +01:00
5 changed files with 12 additions and 6 deletions

View File

@@ -38,6 +38,6 @@
"testing"
],
"dependencies": {
"plugins-manager": "^0.2.0"
"plugins-manager": "^0.2.1"
}
}

View File

@@ -43,12 +43,12 @@
"remark"
],
"dependencies": {
"@mdjs/mdjs-preview": "^0.3.1",
"@mdjs/mdjs-story": "^0.1.1",
"@mdjs/mdjs-preview": "^0.3.2",
"@mdjs/mdjs-story": "^0.1.2",
"@types/unist": "^2.0.3",
"es-module-lexer": "^0.3.26",
"github-markdown-css": "^4.0.0",
"plugins-manager": "^0.2.0",
"plugins-manager": "^0.2.1",
"rehype-autolink-headings": "^5.0.1",
"rehype-prism-template": "^0.4.1",
"rehype-raw": "^5.0.0",

View File

@@ -1,5 +1,11 @@
# @rocket/search
## 0.3.2
### Patch Changes
- 302227e: Add variable for border-radius of SearchCombobox
## 0.3.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@rocket/search",
"version": "0.3.1",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},

View File

@@ -138,7 +138,7 @@ export class RocketSearchCombobox extends LionCombobox {
display: flex;
border: 1px solid var(--rocket-search-input-border-color, #dfe1e5);
box-shadow: none;
border-radius: 24px;
border-radius: var(--rocket-search-input-border-radius, 24px);
padding: 5px 0;
}