Skip to content

Commit

Permalink
W-10951379: 6.6.12 (#780)
Browse files Browse the repository at this point in the history
* fix(W-10921614): remove master word usage

* test(W-10951379): fix type labels

* 6.6.12
  • Loading branch information
carowright authored Apr 7, 2022
1 parent 2ac049f commit 4951fee
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion demo/apic-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ the License.
*/
import '../api-console.js';
import '../api-console-app.js';
import './api-console-master-styles.css';
import './api-console-demo-styles.css';
2 changes: 1 addition & 1 deletion demo/editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<title>API Console with RAML editor demo</title>

<link rel="stylesheet" type="text/css" crossorigin="anonymous" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,300,300italic,400italic,500,500italic,700,700italic">
<link rel="stylesheet" type="text/css" href="../api-console-master-styles.css">
<link rel="stylesheet" type="text/css" href="../api-console-demo-styles.css">
<style>
html, body {
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion demo/element/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>API Console element demo</title>
<link rel="stylesheet" type="text/css" crossorigin="anonymous" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,300,300italic,400italic,500,500italic,700,700italic">
<link rel="stylesheet" type="text/css" href="../api-console-master-styles.css">
<link rel="stylesheet" type="text/css" href="../api-console-demo-styles.css">
<style>
html, body {
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion demo/standalone/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>API Console standalone application demo</title>
<link rel="stylesheet" type="text/css" crossorigin="anonymous" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,300,300italic,400italic,500,500italic,700,700italic">
<link rel="stylesheet" type="text/css" href="../api-console-master-styles.css">
<link rel="stylesheet" type="text/css" href="../api-console-demo-styles.css">
<style>
html, body {
margin: 0;
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "api-console",
"description": "The API Console to automatically generate API documentation from RAML and OAS files.",
"version": "6.6.11",
"version": "6.6.12",
"license": "CPAL-1.0",
"main": "index.js",
"module": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion test/api-console-documentation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ describe('API Console documentation', () => {

testTypeDocumentation(docShadowRoot, displayName, description);
testNoExamplesTypeDocument(docShadowRoot);
await testTypeDocumentShape(docShadowRoot, [{ name: 'dateTimeOnlyType', type: 'Time', description, displayName }]);
await testTypeDocumentShape(docShadowRoot, [{ name: 'dateTimeOnlyType', type: 'DateTime', description, displayName }]);
await testTypeDocumentExample(docShadowRoot, '2015-07-04T21:00:00');
});
});
Expand Down

0 comments on commit 4951fee

Please sign in to comment.