0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
parent 139e6a915e
commit 7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions

View file

@ -0,0 +1,9 @@
var DISALLOW_OF_CLAUSE = false;
module.exports = {
parse: function nth() {
return this.createSingleNodeList(
this.Nth(DISALLOW_OF_CLAUSE)
);
}
};

View file

@ -0,0 +1,9 @@
var ALLOW_OF_CLAUSE = true;
module.exports = {
parse: function nthWithOfClause() {
return this.createSingleNodeList(
this.Nth(ALLOW_OF_CLAUSE)
);
}
};

View file

@ -0,0 +1,7 @@
module.exports = {
parse: function selectorList() {
return this.createSingleNodeList(
this.SelectorList()
);
}
};

7
web/node_modules/css-tree/lib/syntax/pseudo/dir.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};

7
web/node_modules/css-tree/lib/syntax/pseudo/has.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.SelectorList()
);
}
};

12
web/node_modules/css-tree/lib/syntax/pseudo/index.js generated vendored Normal file
View file

@ -0,0 +1,12 @@
module.exports = {
'dir': require('./dir'),
'has': require('./has'),
'lang': require('./lang'),
'matches': require('./matches'),
'not': require('./not'),
'nth-child': require('./nth-child'),
'nth-last-child': require('./nth-last-child'),
'nth-last-of-type': require('./nth-last-of-type'),
'nth-of-type': require('./nth-of-type'),
'slotted': require('./slotted')
};

7
web/node_modules/css-tree/lib/syntax/pseudo/lang.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};

View file

@ -0,0 +1 @@
module.exports = require('./common/selectorList');

1
web/node_modules/css-tree/lib/syntax/pseudo/not.js generated vendored Normal file
View file

@ -0,0 +1 @@
module.exports = require('./common/selectorList');

View file

@ -0,0 +1 @@
module.exports = require('./common/nthWithOfClause');

View file

@ -0,0 +1 @@
module.exports = require('./common/nthWithOfClause');

View file

@ -0,0 +1 @@
module.exports = require('./common/nth');

View file

@ -0,0 +1 @@
module.exports = require('./common/nth');

View file

@ -0,0 +1,7 @@
module.exports = {
parse: function compoundSelector() {
return this.createSingleNodeList(
this.Selector()
);
}
};