goog.provide('M.style.state');
/**
* @namespace M.style.state
*/
(function() {
/**
* Default style status
* @const
* @type {string}
* @public
* @api stable
*/
M.style.state.DEFAULT = 'default';
/**
* New style status
* @const
* @type {string}
* @public
* @api stable
*/
M.style.state.NEW = 'new';
/**
* Selected style status
* @const
* @type {string}
* @public
* @api stable
*/
M.style.state.SELECTED = 'selected';
})();