api-console-assets
Version:
This repo only exists to publish api console components to npm
50 lines (45 loc) • 1.9 kB
HTML
<!--
@license
Copyright 2016 The Advanced REST client authors <arc@mulesoft.com>
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>Authorization panel demo</title>
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html">
<link rel="import" href="../../iron-demo-helpers/demo-snippet.html">
<style is="custom-style" include="demo-pages-shared-styles">
.vertical-section-container {
max-width: 600px;
}
</style>
</head>
<body unresolved>
<div class="vertical-section-container centered">
<h3>Authorization panel</h3>
<dl>
<dt><a href="basic.html">Basic usage</a></dt>
<dd>A usage as a single element</dd>
<dt><a href="raml.html">With RAML</a></dt>
<dd>Demo page for usage with RAML data.</dd>
<dt><a href="meta-data.html">With `iron-meta` support</a></dt>
<dd>Sets supported authorization methods list via `iron-meta`.</dd>
<dt><a href="raml-meta.html">With `iron-meta` and RAML support</a></dt>
<dd>Sets supported authorization methods list via `iron-meta` and RAML selection.</dd>
</dl>
</div>
</body>
</html>