Blame view

bower_components/paper-dialog/paper-dialog.html 3.38 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
  <!--
  @license
  Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
  This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  Code distributed by Google as part of the polymer project is also
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  -->
  
  <link rel="import" href="../polymer/polymer.html">
  <link rel="import" href="../neon-animation/neon-animation-runner-behavior.html">
  <link rel="import" href="../paper-dialog-behavior/paper-dialog-behavior.html">
c5169e0e   Renato De Donato   a new hope
14
  <link rel="import" href="../paper-styles/paper-styles.html">
a1a3bc73   Luigi Serra   graphs updates
15
  
c5169e0e   Renato De Donato   a new hope
16
  <!--
73bcce88   luigser   COMPONENTS
17
18
  `<paper-dialog>` is a dialog with Material Design styling and optional animations when it is
  opened or closed. It provides styles for a header, content area, and an action area for buttons.
c5169e0e   Renato De Donato   a new hope
19
  You can use the `<paper-dialog-scrollable` element (in its own repository) if you need a scrolling
73bcce88   luigser   COMPONENTS
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  content area. See `Polymer.PaperDialogBehavior` for specifics.
  
  For example, the following code implements a dialog with a header, scrolling content area and
  buttons.
  
      <paper-dialog>
        <h2>Header</h2>
        <paper-dialog-scrollable>
          Lorem ipsum...
        </paper-dialog-scrollable>
        <div class="buttons">
          <paper-button dialog-dismiss>Cancel</paper-button>
          <paper-button dialog-confirm>Accept</paper-button>
        </div>
      </paper-dialog>
  
  ### Styling
  
  See the docs for `Polymer.PaperDialogBehavior` for the custom properties available for styling
  this element.
  
  ### Animations
  
  Set the `entry-animation` and/or `exit-animation` attributes to add an animation when the dialog
  is opened or closed. See the documentation in
  [PolymerElements/neon-animation](https://github.com/PolymerElements/neon-animation) for more info.
  
  For example:
  
      <link rel="import" href="components/neon-animation/animations/scale-up-animation.html">
      <link rel="import" href="components/neon-animation/animations/fade-out-animation.html">
  
      <paper-dialog entry-animation="scale-up-animation"
                    exit-animation="fade-out-animation">
        <h2>Header</h2>
        <div>Dialog body</div>
      </paper-dialog>
  
  ### Accessibility
  
  See the docs for `Polymer.PaperDialogBehavior` for accessibility features implemented by this
  element.
  
  @group Paper Elements
  @element paper-dialog
  @hero hero.svg
  @demo demo/index.html
  -->
  
  <dom-module id="paper-dialog">
c5169e0e   Renato De Donato   a new hope
70
71
72
  
    <link rel="import" type="css" href="../paper-dialog-behavior/paper-dialog-common.css">
  
73bcce88   luigser   COMPONENTS
73
    <template>
73bcce88   luigser   COMPONENTS
74
75
      <content></content>
    </template>
c5169e0e   Renato De Donato   a new hope
76
  
73bcce88   luigser   COMPONENTS
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  </dom-module>
  
  <script>
  
  (function() {
  
    Polymer({
  
      is: 'paper-dialog',
  
      behaviors: [
        Polymer.PaperDialogBehavior,
        Polymer.NeonAnimationRunnerBehavior
      ],
  
      listeners: {
        'neon-animation-finish': '_onNeonAnimationFinish'
      },
  
      _renderOpened: function() {
        if (this.withBackdrop) {
          this.backdropElement.open();
        }
        this.playAnimation('entry');
      },
  
      _renderClosed: function() {
        if (this.withBackdrop) {
          this.backdropElement.close();
        }
        this.playAnimation('exit');
      },
  
      _onNeonAnimationFinish: function() {
        if (this.opened) {
          this._finishRenderOpened();
        } else {
          this._finishRenderClosed();
        }
      }
  
    });
  
  })();
  
  </script>