|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
-
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
-
- var _RuleList = require('../RuleList');
-
- var _RuleList2 = _interopRequireDefault(_RuleList);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- /**
- * Rule for @keyframes
- */
- var KeyframesRule = function () {
- function KeyframesRule(key, frames, options) {
- _classCallCheck(this, KeyframesRule);
-
- this.type = 'keyframes';
- this.isProcessed = false;
-
- this.key = key;
- this.options = options;
- this.rules = new _RuleList2['default'](_extends({}, options, { parent: this }));
-
- for (var name in frames) {
- this.rules.add(name, frames[name], _extends({}, this.options, {
- parent: this,
- selector: name
- }));
- }
-
- this.rules.process();
- }
-
- /**
- * Generates a CSS string.
- */
-
-
- _createClass(KeyframesRule, [{
- key: 'toString',
- value: function toString() {
- var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : { indent: 1 };
-
- var inner = this.rules.toString(options);
- if (inner) inner += '\n';
- return this.key + ' {\n' + inner + '}';
- }
- }]);
-
- return KeyframesRule;
- }();
-
- exports['default'] = KeyframesRule;
|