You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
880 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.overflow = void 0;
var parser_1 = require("../syntax/parser");
exports.overflow = {
name: 'overflow',
initialValue: 'visible',
prefix: false,
type: 1 /* LIST */,
parse: function (_context, tokens) {
return tokens.filter(parser_1.isIdentToken).map(function (overflow) {
switch (overflow.value) {
case 'hidden':
return 1 /* HIDDEN */;
case 'scroll':
return 2 /* SCROLL */;
case 'clip':
return 3 /* CLIP */;
case 'auto':
return 4 /* AUTO */;
case 'visible':
default:
return 0 /* VISIBLE */;
}
});
}
};
//# sourceMappingURL=overflow.js.map