Skip to content

Commit 0373835

Browse files
committed
fixes #1025 - tag not showing on navigation bar. and generated 9.3.6 build
1 parent d061ad8 commit 0373835

21 files changed

+61
-13269
lines changed

dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
docEl.addEventListener('before-try', (e) => {
44
e.detail.request.headers.append('AAA-BBB', 'CCC DDDD');
55
});
6-
});</script><body><rapi-doc spec-url="./specs/petstore.yaml" id="thedoc" theme="dark" render-style="view" schema-style="table" show-method-in-nav-bar="true" use-path-in-nav-bar="true" show-components="true" show-info="true" show-header="true" allow-search="false" allow-advanced-search="true" allow-spec-url-load="false" allow-spec-file-download="true" allow-server-selection="true" allow-authentication="true" update-route="false" match-type="regex" persist-auth="true" scroll-behavior="smooth"></rapi-doc></body></html>
6+
});</script><body><rapi-doc spec-url="https://api.apis.guru/v2/specs/azure.com/azureactivedirectory/2017-04-01/swagger.yaml" id="thedoc" theme="dark" render-style="read" schema-style="table" show-method-in-nav-bar="true" use-path-in-nav-bar="true" show-components="true" show-info="true" show-header="true" allow-search="false" allow-advanced-search="true" allow-spec-url-load="false" allow-spec-file-download="true" allow-server-selection="true" allow-authentication="true" update-route="false" match-type="regex" persist-auth="true" scroll-behavior="smooth"></rapi-doc></body></html>

dist/index.html.gz

49 Bytes
Binary file not shown.

dist/rapidoc-min.js

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

dist/rapidoc-min.js.LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
/**
6666
* @preserve
67-
* RapiDoc 9.3.5 - WebComponent to View OpenAPI docs
67+
* RapiDoc 9.3.6 - WebComponent to View OpenAPI docs
6868
* License: MIT
6969
* Repo : https://github.com/rapi-doc/RapiDoc
7070
* Author : Mrinmoy Majumdar

dist/rapidoc-min.js.LICENSE.txt.gz

0 Bytes
Binary file not shown.

dist/rapidoc-min.js.gz

20 Bytes
Binary file not shown.

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/rapidoc-min.js.map.gz

13 Bytes
Binary file not shown.

dist/rapidoc.js

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

dist/report.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

docs/rapidoc-min.js

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

docs/rapidoc.js

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

docs/specs/temp.yaml

Lines changed: 20 additions & 184 deletions
Original file line numberDiff line numberDiff line change
@@ -1,188 +1,24 @@
11
openapi: 3.0.0
22
info:
3-
description: Contains all data types
4-
version: 1.0.0
5-
title: Testing different data-types
3+
title: Some API
4+
version: 0.1.0
65
paths:
7-
/nested-object-in-request-body:
8-
post:
9-
tags:
10-
- Test with various data types
11-
summary: Request Body accepting a JSON
12-
requestBody:
13-
content:
14-
application/json:
15-
schema:
16-
$ref: "#/components/schemas/test"
17-
responses:
18-
'200':
19-
description: 'Resp'
20-
content:
21-
application/json:
22-
schema:
23-
$ref: '#/components/schemas/testResponse'
24-
/foo:
25-
post:
26-
requestBody:
27-
content:
28-
application/json:
29-
schema:
30-
type: object
31-
additionalProperties:
6+
/some_path:
7+
get:
8+
parameters:
9+
- name: params
10+
in: query
11+
style: form
12+
explode: true
13+
schema:
14+
type: object
15+
properties:
16+
var1:
17+
type: string
18+
description: Something about var1
19+
var2:
3220
type: integer
33-
patternProperties:
34-
S_:
35-
type: integer
36-
properties:
37-
foo:
38-
type: string
39-
format: date-time
40-
required: true
41-
example:
42-
foo: "2025-11-18T12:59:50.033Z"
43-
components:
44-
schemas:
45-
category:
46-
type: object
47-
properties:
48-
catId:
49-
description: Category ID
50-
allOf:
51-
- $ref: '#/components/schemas/id'
52-
name:
53-
description: Category name
54-
type: string
55-
deprecated: true
56-
id:
57-
type: string
58-
format: uuid
59-
person:
60-
type: object
61-
required:
62-
- name
63-
- photoUrls
64-
properties:
65-
primaryEmail:
66-
type: string
67-
format: email
68-
dob:
69-
description: Date of Birth
70-
type: string
71-
format: date
72-
id:
73-
title: Unique ID
74-
description: SSN
75-
allOf:
76-
- $ref: '#/components/schemas/id'
77-
category:
78-
title: Person Category
79-
description: Categories this person belongs to
80-
allOf:
81-
- $ref: '#/components/schemas/category'
82-
country:
83-
type: object
84-
deprecated: true
85-
properties:
86-
countryCode:
87-
type: string
88-
countryName:
89-
type: string
90-
dependentIds:
91-
type: array
92-
deprecated: true
93-
description: IDs of Dependents .
94-
items:
95-
type: integer
96-
example:
97-
- 278
98-
- 279
99-
- 280
100-
- 281
101-
name:
102-
description: Name of the person
103-
type: string
104-
minLength: 4
105-
examples:
106-
empty:
107-
value:
108-
summary: No Name
109-
male-name:
110-
value: James
111-
summary: Male name
112-
female-name:
113-
value: Ria
114-
summary: Female Name
115-
gender-nutral-name:
116-
value: Charlie
117-
summary: Gender Neutral Name
118-
photoUrls:
119-
description: The list of URL to a cute photos featuring pet
120-
type: array
121-
maxItems: 20
122-
items:
123-
type: string
124-
format: url
125-
tags:
126-
title: TAGS
127-
description: Tags attached to the person
128-
type: array
129-
minItems: 1
130-
items:
131-
$ref: '#/components/schemas/tag'
132-
maritalStatus:
133-
type: string
134-
description: Marital status in case of adult
135-
enum:
136-
- married
137-
- unmarried
138-
- widowed
139-
phone:
140-
description: phone number in international format
141-
type: string
142-
pattern: '/^\+(?:[0-9]-?){6,14}[0-9]$/'
143-
example: +1-202-555-0192
144-
nullable: true
145-
tag:
146-
type: object
147-
properties:
148-
id:
149-
description: Tag ID
150-
allOf:
151-
- $ref: '#/components/schemas/id'
152-
name:
153-
description: Tag name
154-
type: string
155-
minLength: 1
156-
test:
157-
type: object
158-
properties:
159-
photoUrls:
160-
description: The list of URL to a cute photos featuring pet
161-
type: array
162-
maxItems: 20
163-
items:
164-
type: string
165-
format: url
166-
testResponse:
167-
type: object
168-
required:
169-
- url
170-
- tags
171-
properties:
172-
url:
173-
type: string
174-
nullable: true
175-
description: Generated URL
176-
tags:
177-
type: array
178-
items:
179-
allOf:
180-
- $ref: '#/components/schemas/tag'
181-
nullable: true
182-
cat:
183-
allOf:
184-
- $ref: '#/components/schemas/category'
185-
nullable: true
186-
187-
188-
21+
minimum: 10
22+
maximum: 100
23+
required:
24+
- var1

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
https://cesdev.eng.sonicwall.com/api/q/openapi
3232
-->
3333
<rapi-doc
34-
spec-url = "./specs/petstore.yaml"
34+
spec-url = "https://api.apis.guru/v2/specs/azure.com/azureactivedirectory/2017-04-01/swagger.yaml"
3535
id="thedoc"
3636
theme = "dark"
37-
render-style="view"
37+
render-style="read"
3838
schema-style="table"
3939
show-method-in-nav-bar = "true"
4040
use-path-in-nav-bar = "true"

0 commit comments

Comments
 (0)