forked from googlearchive/paper-checkbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Closure compiler externs and an eventtype enum for paper-checkbox…
…. This is dependent on the externs for paper-radio-button (googlearchive/paper-radio-button#8) and Polymer (Polymer/polymer#769).
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* @license | ||
* Copyright (c) 2014 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. | ||
*/ | ||
|
||
goog.provide('PaperCheckboxEventType'); | ||
|
||
|
||
/** | ||
* Constants for event names fired by paper-checkbox elements. | ||
* @enum {string} | ||
*/ | ||
PaperCheckboxEventType = { | ||
// Fired when the checked state changes due to user interaction. | ||
CHANGE: 'change', | ||
// Fired when the checked state changes. | ||
CORE_CHANGE: 'core-change' | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* @fileoverview Closure compiler externs for paper-checkbox. See docs at | ||
* https://www.polymer-project.org/docs/elements/paper-elements.html#paper-checkbox. | ||
* | ||
* @license | ||
* Copyright (c) 2014 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. | ||
*/ | ||
|
||
|
||
/** @constructor @extends {PaperRadioButtonElement} */ | ||
var PaperCheckboxElement = function() {}; | ||
|