Blame view

bower_components/paper-dropdown-menu/README.md 1.65 KB
c5169e0e   Renato De Donato   a new hope
1
2
  paper-dropdown-menu
  ===================
73bcce88   luigser   COMPONENTS
3
4
5
6
7
  
  `paper-dropdown-menu` is similar to a native browser select element.
  `paper-dropdown-menu` works with selectable content. The currently selected
  item is displayed in the control. If no item is selected, the `label` is
  displayed instead.
73bcce88   luigser   COMPONENTS
8
  The child element with the class `dropdown-content` will be used as the dropdown
c5169e0e   Renato De Donato   a new hope
9
  menu. It could be a `paper-menu` or element that triggers `iron-activate` when
73bcce88   luigser   COMPONENTS
10
  selecting its children.
73bcce88   luigser   COMPONENTS
11
12
  Example:
  
c5169e0e   Renato De Donato   a new hope
13
14
15
16
17
18
19
20
21
22
23
  ```html
  <paper-dropdown-menu label="Your favourite pastry">
    <paper-menu class="dropdown-content">
      <paper-item>Croissant</paper-item>
      <paper-item>Donut</paper-item>
      <paper-item>Financier</paper-item>
      <paper-item>Madeleine</paper-item>
    </paper-menu>
  </paper-dropdown-menu>
  ```
      
73bcce88   luigser   COMPONENTS
24
  This example renders a dropdown menu with 4 options.
73bcce88   luigser   COMPONENTS
25
  ### Styling
73bcce88   luigser   COMPONENTS
26
27
28
29
30
31
32
33
34
35
  The following custom properties and mixins are also available for styling:
  
  Custom property | Description | Default
  ----------------|-------------|----------
  `--paper-dropdown-menu` | A mixin that is applied to the element host | `{}`
  `--paper-dropdown-menu-disabled` | A mixin that is applied to the element host when disabled | `{}`
  `--paper-dropdown-menu-ripple` | A mixin that is applied to the internal ripple | `{}`
  `--paper-dropdown-menu-button` | A mixin that is applied to the internal menu button | `{}`
  `--paper-dropdown-menu-input` | A mixin that is applied to the internal paper input | `{}`
  `--paper-dropdown-menu-icon` | A mixin that is applied to the internal icon | `{}`
73bcce88   luigser   COMPONENTS
36
37
38
  You can also use any of the `paper-input-container` and `paper-menu-button`
  style mixins and custom properties to style the internal input and menu button
  respectively.