update components
This commit is contained in:
parent
feb5e91986
commit
4da1e38cc5
26 changed files with 320 additions and 125 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "iron-menu-behavior",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "Provides accessible menu behavior",
|
||||
"authors": "The Polymer Authors",
|
||||
"keywords": [
|
||||
|
@ -34,11 +34,11 @@
|
|||
"web-component-tester": "^4.0.0",
|
||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||
},
|
||||
"_release": "1.1.2",
|
||||
"_release": "1.1.3",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.1.2",
|
||||
"commit": "8b09b6187b748499a0b8e9ddc789391d26e1d5d1"
|
||||
"tag": "v1.1.3",
|
||||
"commit": "9372abaa7925669fd1a34e9e73c973ed70a05f2f"
|
||||
},
|
||||
"_source": "git://github.com/polymerelements/iron-menu-behavior.git",
|
||||
"_target": "^1.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "iron-menu-behavior",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "Provides accessible menu behavior",
|
||||
"authors": "The Polymer Authors",
|
||||
"keywords": [
|
||||
|
|
|
@ -64,10 +64,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|||
<h3>Simple menu</h3>
|
||||
<div class="horizontal-section">
|
||||
<simple-menu>
|
||||
<a href="javascript:void(0)">Item 0</a>
|
||||
<a href="javascript:void(0)">Item 1</a>
|
||||
<a href="javascript:void(0)" disabled>Item 2</a>
|
||||
<a href="javascript:void(0)">Item 3</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 0</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 1</a>
|
||||
<a href="javascript:void(0)" role="menuitem" disabled>Item 2</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 3</a>
|
||||
</simple-menu>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -76,10 +76,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|||
<h3>Multi-select menu</h3>
|
||||
<div class="horizontal-section">
|
||||
<simple-menu multi>
|
||||
<a href="javascript:void(0)">Item 0</a>
|
||||
<a href="javascript:void(0)">Item 1</a>
|
||||
<a href="javascript:void(0)">Item 2</a>
|
||||
<a href="javascript:void(0)">Item 3</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 0</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 1</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 2</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 3</a>
|
||||
</simple-menu>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -89,10 +89,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|||
<h3>Simple menubar</h3>
|
||||
<div class="horizontal-section">
|
||||
<simple-menubar>
|
||||
<a href="javascript:void(0)">Item 0</a>
|
||||
<a href="javascript:void(0)">Item 1</a>
|
||||
<a href="javascript:void(0)" disabled>Item 2</a>
|
||||
<a href="javascript:void(0)">Item 3</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 0</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 1</a>
|
||||
<a href="javascript:void(0)" role="menuitem" disabled>Item 2</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 3</a>
|
||||
</simple-menubar>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -100,10 +100,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|||
<h3>Multi-select menubar</h3>
|
||||
<div class="horizontal-section">
|
||||
<simple-menubar multi>
|
||||
<a href="javascript:void(0)">Item 0</a>
|
||||
<a href="javascript:void(0)">Item 1</a>
|
||||
<a href="javascript:void(0)">Item 2</a>
|
||||
<a href="javascript:void(0)">Item 3</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 0</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 1</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 2</a>
|
||||
<a href="javascript:void(0)" role="menuitem">Item 3</a>
|
||||
</simple-menubar>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue