Comparing version 2.0.0-rc.9 to 2.0.0-rc.10
@@ -36,2 +36,3 @@ 'use strict'; | ||
* Implementation of the Metal Clay Icon. | ||
* @extends Component | ||
*/ | ||
@@ -60,6 +61,6 @@ var ClayIcon = function (_Component) { | ||
* CSS classes to be applied to the element. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?string|undefined} | ||
* @default undefined | ||
* @type {?(string|undefined)} | ||
*/ | ||
@@ -70,6 +71,6 @@ elementClasses: _metalState.Config.string(), | ||
* Flag to indicate if the svg is focusable or not | ||
* @default false | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?bool} | ||
* @default false | ||
*/ | ||
@@ -80,6 +81,6 @@ focusable: _metalState.Config.bool().value(false), | ||
* Id to be applied to the element. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?string|undefined} | ||
* @default undefined | ||
* @type {?(string|undefined)} | ||
*/ | ||
@@ -90,6 +91,6 @@ id: _metalState.Config.string(), | ||
* The path to the SVG spritemap file containing the icons. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {!string} | ||
* @default undefined | ||
*/ | ||
@@ -100,6 +101,6 @@ spritemap: _metalState.Config.string().required(), | ||
* The name of the Clay SVG Icon e.g. `plus`. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {!string} | ||
* @default undefined | ||
*/ | ||
@@ -110,6 +111,6 @@ symbol: _metalState.Config.string().required(), | ||
* The title of the Clay SVG Icon. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?string|undefined} | ||
* @default undefined | ||
* @type {?(string|undefined)} | ||
*/ | ||
@@ -116,0 +117,0 @@ title: _metalState.Config.string() |
{ | ||
"name": "clay-icon", | ||
"version": "2.0.0-rc.9", | ||
"version": "2.0.0-rc.10", | ||
"description": "Clay Icon Component", | ||
@@ -41,4 +41,4 @@ "license": "BSD", | ||
"babel-preset-env": "^1.6.0", | ||
"browserslist-config-clay-components": "^2.0.0-rc.9", | ||
"clay": "^2.0.0-rc.9", | ||
"browserslist-config-clay-components": "^2.0.0-rc.10", | ||
"clay": "^2.0.0-rc.10", | ||
"metal-dom": "^2.13.2", | ||
@@ -45,0 +45,0 @@ "metal-tools-soy": "^6.0.0", |
@@ -10,2 +10,3 @@ import Component from 'metal-component'; | ||
* Implementation of the Metal Clay Icon. | ||
* @extends Component | ||
*/ | ||
@@ -22,6 +23,6 @@ class ClayIcon extends Component {} | ||
* CSS classes to be applied to the element. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?string|undefined} | ||
* @default undefined | ||
* @type {?(string|undefined)} | ||
*/ | ||
@@ -32,6 +33,6 @@ elementClasses: Config.string(), | ||
* Flag to indicate if the svg is focusable or not | ||
* @default false | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?bool} | ||
* @default false | ||
*/ | ||
@@ -42,6 +43,6 @@ focusable: Config.bool().value(false), | ||
* Id to be applied to the element. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?string|undefined} | ||
* @default undefined | ||
* @type {?(string|undefined)} | ||
*/ | ||
@@ -52,6 +53,6 @@ id: Config.string(), | ||
* The path to the SVG spritemap file containing the icons. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {!string} | ||
* @default undefined | ||
*/ | ||
@@ -62,6 +63,6 @@ spritemap: Config.string().required(), | ||
* The name of the Clay SVG Icon e.g. `plus`. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {!string} | ||
* @default undefined | ||
*/ | ||
@@ -72,6 +73,6 @@ symbol: Config.string().required(), | ||
* The title of the Clay SVG Icon. | ||
* @default undefined | ||
* @instance | ||
* @memberof ClayIcon | ||
* @type {?string|undefined} | ||
* @default undefined | ||
* @type {?(string|undefined)} | ||
*/ | ||
@@ -78,0 +79,0 @@ title: Config.string(), |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34872
421