mirror of
https://github.com/azure/login.git
synced 2026-06-06 21:17:09 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
var parsers = require('../parsers');
|
|
|
|
var valid_keywords = ['top', 'center', 'bottom', 'left', 'right'];
|
|
|
|
var parse = function parse(v) {
|
|
if (v === '' || v === null) {
|
|
return undefined;
|
|
}
|
|
var parts = v.split(/\s+/);
|
|
if (parts.length > 2 || parts.length < 1) {
|
|
return undefined;
|
|
}
|
|
var types = [];
|
|
parts.forEach(function(part, index) {
|
|
types[index] = parsers.valueType(part);
|
|
});
|
|
if (parts.length === 1) {
|
|
if (types[0] === parsers.TYPES.LENGTH || types[0] === parsers.TYPES.PERCENT) {
|
|
return v;
|
|
}
|
|
if (types[0] === parsers.TYPES.KEYWORD) {
|
|
if (valid_keywords.indexOf(v.toLowerCase()) !== -1 || v.toLowerCase() === 'inherit') {
|
|
return v;
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
if (
|
|
(types[0] === parsers.TYPES.LENGTH || types[0] === parsers.TYPES.PERCENT) &&
|
|
(types[1] === parsers.TYPES.LENGTH || types[1] === parsers.TYPES.PERCENT)
|
|
) {
|
|
return v;
|
|
}
|
|
if (types[0] !== parsers.TYPES.KEYWORD || types[1] !== parsers.TYPES.KEYWORD) {
|
|
return undefined;
|
|
}
|
|
if (valid_keywords.indexOf(parts[0]) !== -1 && valid_keywords.indexOf(parts[1]) !== -1) {
|
|
return v;
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
module.exports.isValid = function isValid(v) {
|
|
return parse(v) !== undefined;
|
|
};
|
|
|
|
module.exports.definition = {
|
|
set: function(v) {
|
|
this._setProperty('background-position', parse(v));
|
|
},
|
|
get: function() {
|
|
return this.getPropertyValue('background-position');
|
|
},
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|