Project files
This commit is contained in:
20
receipeServer/frontend_old/node_modules/postcss-attribute-case-insensitive/LICENSE
generated
vendored
Normal file
20
receipeServer/frontend_old/node_modules/postcss-attribute-case-insensitive/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright 2020 Dmitry Semigradsky <semigradskyd@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
23
receipeServer/frontend_old/node_modules/postcss-attribute-case-insensitive/README.md
generated
vendored
Normal file
23
receipeServer/frontend_old/node_modules/postcss-attribute-case-insensitive/README.md
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# postcss-attribute-case-insensitive [![Build Status][ci-img]][ci]
|
||||
|
||||
[PostCSS] plugin to support [case insensitive attributes](https://www.w3.org/TR/selectors4/#attribute-case).
|
||||
|
||||
[](https://caniuse.com/#feat=css-case-insensitive)
|
||||
|
||||
[PostCSS]: https://github.com/postcss/postcss
|
||||
[ci-img]: https://travis-ci.org/Semigradsky/postcss-attribute-case-insensitive.svg
|
||||
[ci]: https://travis-ci.org/Semigradsky/postcss-attribute-case-insensitive
|
||||
|
||||
## Input
|
||||
```css
|
||||
[frame=hsides i] { border-style: solid none; }
|
||||
```
|
||||
|
||||
|
||||
## Output
|
||||
```css
|
||||
[frame=hsides],[frame=Hsides],[frame=hSides],[frame=HSides],[frame=hsIdes],[frame=HsIdes],[frame=hSIdes],[frame=HSIdes],[frame=hsiDes],[frame=HsiDes],[frame=hSiDes],[frame=HSiDes],[frame=hsIDes],[frame=HsIDes],[frame=hSIDes],[frame=HSIDes],[frame=hsidEs],[frame=HsidEs],[frame=hSidEs],[frame=HSidEs],[frame=hsIdEs],[frame=HsIdEs],[frame=hSIdEs],[frame=HSIdEs],[frame=hsiDEs],[frame=HsiDEs],[frame=hSiDEs],[frame=HSiDEs],[frame=hsIDEs],[frame=HsIDEs],[frame=hSIDEs],[frame=HSIDEs],[frame=hsideS],[frame=HsideS],[frame=hSideS],[frame=HSideS],[frame=hsIdeS],[frame=HsIdeS],[frame=hSIdeS],[frame=HSIdeS],[frame=hsiDeS],[frame=HsiDeS],[frame=hSiDeS],[frame=HSiDeS],[frame=hsIDeS],[frame=HsIDeS],[frame=hSIDeS],[frame=HSIDeS],[frame=hsidES],[frame=HsidES],[frame=hSidES],[frame=HSidES],[frame=hsIdES],[frame=HsIdES],[frame=hSIdES],[frame=HSIdES],[frame=hsiDES],[frame=HsiDES],[frame=hSiDES],[frame=HSiDES],[frame=hsIDES],[frame=HsIDES],[frame=hSIDES],[frame=HSIDES] { border-style: solid none; }
|
||||
```
|
||||
|
||||
### Notes
|
||||
- As you see in example, it is not recommended to use this plugin with very long attributes.
|
||||
31
receipeServer/frontend_old/node_modules/postcss-attribute-case-insensitive/package.json
generated
vendored
Normal file
31
receipeServer/frontend_old/node_modules/postcss-attribute-case-insensitive/package.json
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "postcss-attribute-case-insensitive",
|
||||
"version": "5.0.0",
|
||||
"description": "PostCSS plugin to support case insensitive attributes",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Semigradsky/postcss-attribute-case-insensitive.git"
|
||||
},
|
||||
"keywords": [
|
||||
"postcss",
|
||||
"css",
|
||||
"postcss-plugin",
|
||||
"attribute",
|
||||
"insensitive",
|
||||
"sensitive",
|
||||
"CSS4"
|
||||
],
|
||||
"author": "Dmitry Semigradsky",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme",
|
||||
"dependencies": {
|
||||
"postcss-selector-parser": "^6.0.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"postcss": "^8.0.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user