mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-21 08:51:18 +00:00
Compare commits
3 Commits
@mdjs/mdjs
...
@rocket/se
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
758caffdf9 | ||
|
|
302227e8a9 | ||
|
|
04a31220fb |
@@ -38,6 +38,6 @@
|
|||||||
"testing"
|
"testing"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"plugins-manager": "^0.2.0"
|
"plugins-manager": "^0.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,12 +43,12 @@
|
|||||||
"remark"
|
"remark"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mdjs/mdjs-preview": "^0.3.1",
|
"@mdjs/mdjs-preview": "^0.3.2",
|
||||||
"@mdjs/mdjs-story": "^0.1.1",
|
"@mdjs/mdjs-story": "^0.1.2",
|
||||||
"@types/unist": "^2.0.3",
|
"@types/unist": "^2.0.3",
|
||||||
"es-module-lexer": "^0.3.26",
|
"es-module-lexer": "^0.3.26",
|
||||||
"github-markdown-css": "^4.0.0",
|
"github-markdown-css": "^4.0.0",
|
||||||
"plugins-manager": "^0.2.0",
|
"plugins-manager": "^0.2.1",
|
||||||
"rehype-autolink-headings": "^5.0.1",
|
"rehype-autolink-headings": "^5.0.1",
|
||||||
"rehype-prism-template": "^0.4.1",
|
"rehype-prism-template": "^0.4.1",
|
||||||
"rehype-raw": "^5.0.0",
|
"rehype-raw": "^5.0.0",
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @rocket/search
|
# @rocket/search
|
||||||
|
|
||||||
|
## 0.3.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 302227e: Add variable for border-radius of SearchCombobox
|
||||||
|
|
||||||
## 0.3.1
|
## 0.3.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@rocket/search",
|
"name": "@rocket/search",
|
||||||
"version": "0.3.1",
|
"version": "0.3.2",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ export class RocketSearchCombobox extends LionCombobox {
|
|||||||
display: flex;
|
display: flex;
|
||||||
border: 1px solid var(--rocket-search-input-border-color, #dfe1e5);
|
border: 1px solid var(--rocket-search-input-border-color, #dfe1e5);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 24px;
|
border-radius: var(--rocket-search-input-border-radius, 24px);
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user