Skip to content

Commit aa7636d

Browse files
committed
removed search input
1 parent 4734ec4 commit aa7636d

File tree

8 files changed

+15
-27
lines changed

8 files changed

+15
-27
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ Custom Eelement for Open-API spec viewing
1818

1919
## Roadmap
2020
- Allow replacing logo
21+
- Search API Functionality
2122
- Provide a console to try out the APIs
2223
- Enable OAuth, HTTP and Token based Authentication process

dist/rapidoc-min.js

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

dist/rapidoc-min.js.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/report.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ No Build steps!, No Frameworks!, Just copy the below script in an html, and open
55
<html>
66
<head>
77
<meta charset="utf-8"> <!-- Important: The Custom element uses utf8 charecters -->
8-
<script src="https://unpkg.com/[email protected].0/dist/rapidoc-min.js"></script>
8+
<script src="https://unpkg.com/[email protected].1/dist/rapidoc-min.js"></script>
99
</head>
1010
<body>
1111
<rapi-doc
@@ -15,10 +15,6 @@ No Build steps!, No Frameworks!, Just copy the below script in an html, and open
1515
</html>
1616
```
1717

18-
## Include from CDN
19-
```html
20-
<script src="https://unpkg.com/[email protected]/dist/rapidoc-min.js"></script>
21-
```
2218
## Branding, Styling and Personalization
2319
Style the element using standard `css`. You can apply borders, padding, width, height etc in accordance to your brand requierment. You can also use many attributes
2420

docs/rapidoc-min.js

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rapidoc",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "RapiDoc - Open API spec viewer with built in console",
55
"author": "Mrinmoy Majumdar <[email protected]>",
66
"repository": {

src/rapidoc.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,6 @@ class RapiDoc extends LitElement {
136136
<input id="spec-url" type="text" class="header-input" style="border-radius: 2px 0 0 2px;" placeholder="Spec URL" value="${this.specUrl}" @change="${this.onSepcUrlChange}">
137137
</div>
138138
<div style="flex:1"></div>
139-
<div style="display:flex; flex-direction:column; margin-right:8px; align-items:flex-end;">
140-
<input class="header-input" style="width:100px;" type="text" placeholder="Search" @keyup="${debounce(this.onSearch, 200)}">
141-
</div>
142139
</div>`}
143140
144141
${this.showInfo==='false' || !this.resolvedSpec || !this.resolvedSpec.info ?``:html`

0 commit comments

Comments
 (0)