first commit
This commit is contained in:
71
node_modules/css-functions-list/CHANGELOG.md
generated
vendored
Normal file
71
node_modules/css-functions-list/CHANGELOG.md
generated
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
# Changelog
|
||||
|
||||
## [Unreleased][]
|
||||
|
||||
## [3.2.3][] - 2024-10-09
|
||||
|
||||
- Add `calc-size` and `shape` function
|
||||
- Filter invalid functions
|
||||
|
||||
## [3.2.2][] - 2024-04-22
|
||||
|
||||
- Add additional function references
|
||||
|
||||
## [3.2.1][] - 2023-10-15
|
||||
|
||||
### Changed
|
||||
|
||||
- Add additional function references
|
||||
|
||||
## [3.2.0][] - 2023-07-10
|
||||
|
||||
### Changed
|
||||
|
||||
- Update with latest function definitions
|
||||
- Keep functions that end with `X|Y|Z`, like `rotatex` or `rotatey` (`rotateX`
|
||||
or `rotateY`) ([#4](https://github.com/niksy/css-functions-list/pull/5))
|
||||
|
||||
## [3.1.0][] - 2022-06-03
|
||||
|
||||
### Added
|
||||
|
||||
- Add OKLCH and OKLab functions
|
||||
([#4](https://github.com/niksy/css-functions-list/pull/4))
|
||||
|
||||
## [3.0.1][] - 2022-02-14
|
||||
|
||||
### Fixed
|
||||
|
||||
- Use `fileURLToPath` for location resolve
|
||||
|
||||
### Added
|
||||
|
||||
- Windows to CI matrix
|
||||
|
||||
## [3.0.0][] - 2022-02-03
|
||||
|
||||
### Changed
|
||||
|
||||
- **Breaking**: Only Node >= 12.22 is supported
|
||||
|
||||
### Added
|
||||
|
||||
- New additions to list
|
||||
|
||||
## [2.0.0][] - 2021-09-02
|
||||
|
||||
### Added
|
||||
|
||||
- Initial implementation
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
[2.0.0]: https://github.com/niksy/css-functions-list/tree/v2.0.0
|
||||
[3.0.0]: https://github.com/niksy/css-functions-list/tree/v3.0.0
|
||||
[3.0.1]: https://github.com/niksy/css-functions-list/tree/v3.0.1
|
||||
[3.1.0]: https://github.com/niksy/css-functions-list/tree/v3.1.0
|
||||
[Unreleased]: https://github.com/niksy/css-functions-list/compare/v3.2.3...HEAD
|
||||
[3.2.3]: https://github.com/niksy/css-functions-list/compare/v3.2.2...v3.2.3
|
||||
[3.2.2]: https://github.com/niksy/css-functions-list/compare/v3.2.1...v3.2.2
|
||||
[3.2.1]: https://github.com/niksy/css-functions-list/compare/v3.2.0...v3.2.1
|
||||
[3.2.0]: https://github.com/niksy/css-functions-list/tree/v3.2.0
|
||||
18
node_modules/css-functions-list/LICENSE.md
generated
vendored
Normal file
18
node_modules/css-functions-list/LICENSE.md
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
Copyright (c) Ivan Nikolić <http://ivannikolic.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.
|
||||
69
node_modules/css-functions-list/README.md
generated
vendored
Normal file
69
node_modules/css-functions-list/README.md
generated
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
# css-functions-list
|
||||
|
||||
[![Build Status][ci-img]][ci]
|
||||
|
||||
List of standard and
|
||||
[browser specific](<(https://developer.mozilla.org/en-US/docs/Glossary/Vendor_Prefix)>)
|
||||
CSS functions.
|
||||
|
||||
Data sources are:
|
||||
|
||||
- MDN reference on
|
||||
[CSS functions](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Functions)
|
||||
- MDN reference on
|
||||
[general CSS features](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference).
|
||||
- MDN
|
||||
[browser compatibility data for CSS functions](https://github.com/mdn/browser-compat-data/tree/main/css/types)
|
||||
- Manually maintained experimental, legacy and removed functions
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install css-functions-list --save
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import { promises as fs } from 'fs';
|
||||
import functionsListPath from 'css-functions-list';
|
||||
|
||||
(async () => {
|
||||
const functionsList = JSON.parse(
|
||||
await fs.readFile(functionsListPath, 'utf8')
|
||||
);
|
||||
console.log(functionsList);
|
||||
/* [
|
||||
'abs',
|
||||
'acos',
|
||||
'annotation',
|
||||
'asin',
|
||||
'atan',
|
||||
'atan2',
|
||||
'attr',
|
||||
'blur',
|
||||
'brightness',
|
||||
'calc'
|
||||
// …
|
||||
]; */
|
||||
})();
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### functionsListPath
|
||||
|
||||
Type: `string`
|
||||
|
||||
Path to CSS functions list JSON file.
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Ivan Nikolić](http://ivannikolic.com)
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
[ci]: https://github.com/niksy/css-functions-list/actions?query=workflow%3ACI
|
||||
[ci-img]: https://github.com/niksy/css-functions-list/workflows/CI/badge.svg?branch=master
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
6
node_modules/css-functions-list/cjs/index.d.ts
generated
vendored
Normal file
6
node_modules/css-functions-list/cjs/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export default location;
|
||||
/**
|
||||
* Path to CSS functions list JSON file.
|
||||
*/
|
||||
declare const location: string;
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
node_modules/css-functions-list/cjs/index.d.ts.map
generated
vendored
Normal file
1
node_modules/css-functions-list/cjs/index.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,+BAAuE"}
|
||||
11
node_modules/css-functions-list/cjs/index.js
generated
vendored
Normal file
11
node_modules/css-functions-list/cjs/index.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
var url = require('url');
|
||||
|
||||
/**
|
||||
* Path to CSS functions list JSON file.
|
||||
*/
|
||||
const location = url.fileURLToPath(new url.URL('index.json', (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('index.js', document.baseURI).href))));
|
||||
|
||||
module.exports = location;
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
node_modules/css-functions-list/cjs/index.js.map
generated
vendored
Normal file
1
node_modules/css-functions-list/cjs/index.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sources":["../index.js"],"sourcesContent":["import { URL, fileURLToPath } from 'url';\n\n/**\n * Path to CSS functions list JSON file.\n */\nconst location = fileURLToPath(new URL('index.json', import.meta.url));\n\nexport default location;\n"],"names":["fileURLToPath","URL"],"mappings":";;;;AAEA;AACA;AACA;AACK,MAAC,QAAQ,GAAGA,iBAAa,CAAC,IAAIC,OAAG,CAAC,YAAY,EAAE,mMAAe,CAAC;;;;"}
|
||||
687
node_modules/css-functions-list/cjs/index.json
generated
vendored
Normal file
687
node_modules/css-functions-list/cjs/index.json
generated
vendored
Normal file
@@ -0,0 +1,687 @@
|
||||
[
|
||||
"abs",
|
||||
"acos",
|
||||
"anchor",
|
||||
"anchor-size",
|
||||
"annotation",
|
||||
"asin",
|
||||
"atan",
|
||||
"atan2",
|
||||
"attr",
|
||||
"blur",
|
||||
"brightness",
|
||||
"calc",
|
||||
"calc-size",
|
||||
"character-variant",
|
||||
"circle",
|
||||
"clamp",
|
||||
"color",
|
||||
"color-contrast",
|
||||
"color-mix",
|
||||
"color-stop",
|
||||
"conic-gradient",
|
||||
"contrast",
|
||||
"cos",
|
||||
"counter",
|
||||
"counters",
|
||||
"cross-fade",
|
||||
"cubic-bezier",
|
||||
"device-cmyk",
|
||||
"drop-shadow",
|
||||
"element",
|
||||
"ellipse",
|
||||
"env",
|
||||
"exp",
|
||||
"fit-content",
|
||||
"format",
|
||||
"from",
|
||||
"gradient",
|
||||
"grayscale",
|
||||
"hsl",
|
||||
"hsla",
|
||||
"hue-rotate",
|
||||
"hwb",
|
||||
"hypot",
|
||||
"image",
|
||||
"image-rect",
|
||||
"image-set",
|
||||
"inset",
|
||||
"invert",
|
||||
"lab",
|
||||
"layer",
|
||||
"lch",
|
||||
"leader",
|
||||
"light-dark",
|
||||
"linear",
|
||||
"linear-gradient",
|
||||
"local",
|
||||
"log",
|
||||
"matrix",
|
||||
"matrix3d",
|
||||
"max",
|
||||
"min",
|
||||
"minmax",
|
||||
"mod",
|
||||
"oklab",
|
||||
"oklch",
|
||||
"opacity",
|
||||
"ornaments",
|
||||
"paint",
|
||||
"palette-mix",
|
||||
"path",
|
||||
"perspective",
|
||||
"polygon",
|
||||
"pow",
|
||||
"radial-gradient",
|
||||
"ray",
|
||||
"rect",
|
||||
"rem",
|
||||
"repeat",
|
||||
"repeating-conic-gradient",
|
||||
"repeating-linear-gradient",
|
||||
"repeating-radial-gradient",
|
||||
"reversed",
|
||||
"rgb",
|
||||
"rgba",
|
||||
"rotate",
|
||||
"rotate3d",
|
||||
"rotateX",
|
||||
"rotateY",
|
||||
"rotateZ",
|
||||
"rotatex",
|
||||
"rotatey",
|
||||
"rotatez",
|
||||
"round",
|
||||
"saturate",
|
||||
"scale",
|
||||
"scale3d",
|
||||
"scaleX",
|
||||
"scaleY",
|
||||
"scaleZ",
|
||||
"scalex",
|
||||
"scaley",
|
||||
"scalez",
|
||||
"scroll",
|
||||
"selector",
|
||||
"sepia",
|
||||
"shape",
|
||||
"sign",
|
||||
"sin",
|
||||
"skew",
|
||||
"skewX",
|
||||
"skewY",
|
||||
"skewx",
|
||||
"skewy",
|
||||
"sqrt",
|
||||
"steps",
|
||||
"styleset",
|
||||
"stylistic",
|
||||
"swash",
|
||||
"symbols",
|
||||
"tan",
|
||||
"target-counter",
|
||||
"target-counters",
|
||||
"target-text",
|
||||
"to",
|
||||
"translate",
|
||||
"translate3d",
|
||||
"translateX",
|
||||
"translateY",
|
||||
"translateZ",
|
||||
"translatex",
|
||||
"translatey",
|
||||
"translatez",
|
||||
"type",
|
||||
"url",
|
||||
"var",
|
||||
"view",
|
||||
"xywh",
|
||||
"-webkit-abs",
|
||||
"-webkit-acos",
|
||||
"-webkit-anchor",
|
||||
"-webkit-anchor-size",
|
||||
"-webkit-annotation",
|
||||
"-webkit-asin",
|
||||
"-webkit-atan",
|
||||
"-webkit-atan2",
|
||||
"-webkit-attr",
|
||||
"-webkit-blur",
|
||||
"-webkit-brightness",
|
||||
"-webkit-calc",
|
||||
"-webkit-calc-size",
|
||||
"-webkit-character-variant",
|
||||
"-webkit-circle",
|
||||
"-webkit-clamp",
|
||||
"-webkit-color",
|
||||
"-webkit-color-contrast",
|
||||
"-webkit-color-mix",
|
||||
"-webkit-color-stop",
|
||||
"-webkit-conic-gradient",
|
||||
"-webkit-contrast",
|
||||
"-webkit-cos",
|
||||
"-webkit-counter",
|
||||
"-webkit-counters",
|
||||
"-webkit-cross-fade",
|
||||
"-webkit-cubic-bezier",
|
||||
"-webkit-device-cmyk",
|
||||
"-webkit-drop-shadow",
|
||||
"-webkit-element",
|
||||
"-webkit-ellipse",
|
||||
"-webkit-env",
|
||||
"-webkit-exp",
|
||||
"-webkit-fit-content",
|
||||
"-webkit-format",
|
||||
"-webkit-from",
|
||||
"-webkit-gradient",
|
||||
"-webkit-grayscale",
|
||||
"-webkit-hsl",
|
||||
"-webkit-hsla",
|
||||
"-webkit-hue-rotate",
|
||||
"-webkit-hwb",
|
||||
"-webkit-hypot",
|
||||
"-webkit-image",
|
||||
"-webkit-image-rect",
|
||||
"-webkit-image-set",
|
||||
"-webkit-inset",
|
||||
"-webkit-invert",
|
||||
"-webkit-lab",
|
||||
"-webkit-layer",
|
||||
"-webkit-lch",
|
||||
"-webkit-leader",
|
||||
"-webkit-light-dark",
|
||||
"-webkit-linear",
|
||||
"-webkit-linear-gradient",
|
||||
"-webkit-local",
|
||||
"-webkit-log",
|
||||
"-webkit-matrix",
|
||||
"-webkit-matrix3d",
|
||||
"-webkit-max",
|
||||
"-webkit-min",
|
||||
"-webkit-minmax",
|
||||
"-webkit-mod",
|
||||
"-webkit-oklab",
|
||||
"-webkit-oklch",
|
||||
"-webkit-opacity",
|
||||
"-webkit-ornaments",
|
||||
"-webkit-paint",
|
||||
"-webkit-palette-mix",
|
||||
"-webkit-path",
|
||||
"-webkit-perspective",
|
||||
"-webkit-polygon",
|
||||
"-webkit-pow",
|
||||
"-webkit-radial-gradient",
|
||||
"-webkit-ray",
|
||||
"-webkit-rect",
|
||||
"-webkit-rem",
|
||||
"-webkit-repeat",
|
||||
"-webkit-repeating-conic-gradient",
|
||||
"-webkit-repeating-linear-gradient",
|
||||
"-webkit-repeating-radial-gradient",
|
||||
"-webkit-reversed",
|
||||
"-webkit-rgb",
|
||||
"-webkit-rgba",
|
||||
"-webkit-rotate",
|
||||
"-webkit-rotate3d",
|
||||
"-webkit-rotateX",
|
||||
"-webkit-rotateY",
|
||||
"-webkit-rotateZ",
|
||||
"-webkit-rotatex",
|
||||
"-webkit-rotatey",
|
||||
"-webkit-rotatez",
|
||||
"-webkit-round",
|
||||
"-webkit-saturate",
|
||||
"-webkit-scale",
|
||||
"-webkit-scale3d",
|
||||
"-webkit-scaleX",
|
||||
"-webkit-scaleY",
|
||||
"-webkit-scaleZ",
|
||||
"-webkit-scalex",
|
||||
"-webkit-scaley",
|
||||
"-webkit-scalez",
|
||||
"-webkit-scroll",
|
||||
"-webkit-selector",
|
||||
"-webkit-sepia",
|
||||
"-webkit-shape",
|
||||
"-webkit-sign",
|
||||
"-webkit-sin",
|
||||
"-webkit-skew",
|
||||
"-webkit-skewX",
|
||||
"-webkit-skewY",
|
||||
"-webkit-skewx",
|
||||
"-webkit-skewy",
|
||||
"-webkit-sqrt",
|
||||
"-webkit-steps",
|
||||
"-webkit-styleset",
|
||||
"-webkit-stylistic",
|
||||
"-webkit-swash",
|
||||
"-webkit-symbols",
|
||||
"-webkit-tan",
|
||||
"-webkit-target-counter",
|
||||
"-webkit-target-counters",
|
||||
"-webkit-target-text",
|
||||
"-webkit-to",
|
||||
"-webkit-translate",
|
||||
"-webkit-translate3d",
|
||||
"-webkit-translateX",
|
||||
"-webkit-translateY",
|
||||
"-webkit-translateZ",
|
||||
"-webkit-translatex",
|
||||
"-webkit-translatey",
|
||||
"-webkit-translatez",
|
||||
"-webkit-type",
|
||||
"-webkit-url",
|
||||
"-webkit-var",
|
||||
"-webkit-view",
|
||||
"-webkit-xywh",
|
||||
"-moz-abs",
|
||||
"-moz-acos",
|
||||
"-moz-anchor",
|
||||
"-moz-anchor-size",
|
||||
"-moz-annotation",
|
||||
"-moz-asin",
|
||||
"-moz-atan",
|
||||
"-moz-atan2",
|
||||
"-moz-attr",
|
||||
"-moz-blur",
|
||||
"-moz-brightness",
|
||||
"-moz-calc",
|
||||
"-moz-calc-size",
|
||||
"-moz-character-variant",
|
||||
"-moz-circle",
|
||||
"-moz-clamp",
|
||||
"-moz-color",
|
||||
"-moz-color-contrast",
|
||||
"-moz-color-mix",
|
||||
"-moz-color-stop",
|
||||
"-moz-conic-gradient",
|
||||
"-moz-contrast",
|
||||
"-moz-cos",
|
||||
"-moz-counter",
|
||||
"-moz-counters",
|
||||
"-moz-cross-fade",
|
||||
"-moz-cubic-bezier",
|
||||
"-moz-device-cmyk",
|
||||
"-moz-drop-shadow",
|
||||
"-moz-element",
|
||||
"-moz-ellipse",
|
||||
"-moz-env",
|
||||
"-moz-exp",
|
||||
"-moz-fit-content",
|
||||
"-moz-format",
|
||||
"-moz-from",
|
||||
"-moz-gradient",
|
||||
"-moz-grayscale",
|
||||
"-moz-hsl",
|
||||
"-moz-hsla",
|
||||
"-moz-hue-rotate",
|
||||
"-moz-hwb",
|
||||
"-moz-hypot",
|
||||
"-moz-image",
|
||||
"-moz-image-rect",
|
||||
"-moz-image-set",
|
||||
"-moz-inset",
|
||||
"-moz-invert",
|
||||
"-moz-lab",
|
||||
"-moz-layer",
|
||||
"-moz-lch",
|
||||
"-moz-leader",
|
||||
"-moz-light-dark",
|
||||
"-moz-linear",
|
||||
"-moz-linear-gradient",
|
||||
"-moz-local",
|
||||
"-moz-log",
|
||||
"-moz-matrix",
|
||||
"-moz-matrix3d",
|
||||
"-moz-max",
|
||||
"-moz-min",
|
||||
"-moz-minmax",
|
||||
"-moz-mod",
|
||||
"-moz-oklab",
|
||||
"-moz-oklch",
|
||||
"-moz-opacity",
|
||||
"-moz-ornaments",
|
||||
"-moz-paint",
|
||||
"-moz-palette-mix",
|
||||
"-moz-path",
|
||||
"-moz-perspective",
|
||||
"-moz-polygon",
|
||||
"-moz-pow",
|
||||
"-moz-radial-gradient",
|
||||
"-moz-ray",
|
||||
"-moz-rect",
|
||||
"-moz-rem",
|
||||
"-moz-repeat",
|
||||
"-moz-repeating-conic-gradient",
|
||||
"-moz-repeating-linear-gradient",
|
||||
"-moz-repeating-radial-gradient",
|
||||
"-moz-reversed",
|
||||
"-moz-rgb",
|
||||
"-moz-rgba",
|
||||
"-moz-rotate",
|
||||
"-moz-rotate3d",
|
||||
"-moz-rotateX",
|
||||
"-moz-rotateY",
|
||||
"-moz-rotateZ",
|
||||
"-moz-rotatex",
|
||||
"-moz-rotatey",
|
||||
"-moz-rotatez",
|
||||
"-moz-round",
|
||||
"-moz-saturate",
|
||||
"-moz-scale",
|
||||
"-moz-scale3d",
|
||||
"-moz-scaleX",
|
||||
"-moz-scaleY",
|
||||
"-moz-scaleZ",
|
||||
"-moz-scalex",
|
||||
"-moz-scaley",
|
||||
"-moz-scalez",
|
||||
"-moz-scroll",
|
||||
"-moz-selector",
|
||||
"-moz-sepia",
|
||||
"-moz-shape",
|
||||
"-moz-sign",
|
||||
"-moz-sin",
|
||||
"-moz-skew",
|
||||
"-moz-skewX",
|
||||
"-moz-skewY",
|
||||
"-moz-skewx",
|
||||
"-moz-skewy",
|
||||
"-moz-sqrt",
|
||||
"-moz-steps",
|
||||
"-moz-styleset",
|
||||
"-moz-stylistic",
|
||||
"-moz-swash",
|
||||
"-moz-symbols",
|
||||
"-moz-tan",
|
||||
"-moz-target-counter",
|
||||
"-moz-target-counters",
|
||||
"-moz-target-text",
|
||||
"-moz-to",
|
||||
"-moz-translate",
|
||||
"-moz-translate3d",
|
||||
"-moz-translateX",
|
||||
"-moz-translateY",
|
||||
"-moz-translateZ",
|
||||
"-moz-translatex",
|
||||
"-moz-translatey",
|
||||
"-moz-translatez",
|
||||
"-moz-type",
|
||||
"-moz-url",
|
||||
"-moz-var",
|
||||
"-moz-view",
|
||||
"-moz-xywh",
|
||||
"-o-abs",
|
||||
"-o-acos",
|
||||
"-o-anchor",
|
||||
"-o-anchor-size",
|
||||
"-o-annotation",
|
||||
"-o-asin",
|
||||
"-o-atan",
|
||||
"-o-atan2",
|
||||
"-o-attr",
|
||||
"-o-blur",
|
||||
"-o-brightness",
|
||||
"-o-calc",
|
||||
"-o-calc-size",
|
||||
"-o-character-variant",
|
||||
"-o-circle",
|
||||
"-o-clamp",
|
||||
"-o-color",
|
||||
"-o-color-contrast",
|
||||
"-o-color-mix",
|
||||
"-o-color-stop",
|
||||
"-o-conic-gradient",
|
||||
"-o-contrast",
|
||||
"-o-cos",
|
||||
"-o-counter",
|
||||
"-o-counters",
|
||||
"-o-cross-fade",
|
||||
"-o-cubic-bezier",
|
||||
"-o-device-cmyk",
|
||||
"-o-drop-shadow",
|
||||
"-o-element",
|
||||
"-o-ellipse",
|
||||
"-o-env",
|
||||
"-o-exp",
|
||||
"-o-fit-content",
|
||||
"-o-format",
|
||||
"-o-from",
|
||||
"-o-gradient",
|
||||
"-o-grayscale",
|
||||
"-o-hsl",
|
||||
"-o-hsla",
|
||||
"-o-hue-rotate",
|
||||
"-o-hwb",
|
||||
"-o-hypot",
|
||||
"-o-image",
|
||||
"-o-image-rect",
|
||||
"-o-image-set",
|
||||
"-o-inset",
|
||||
"-o-invert",
|
||||
"-o-lab",
|
||||
"-o-layer",
|
||||
"-o-lch",
|
||||
"-o-leader",
|
||||
"-o-light-dark",
|
||||
"-o-linear",
|
||||
"-o-linear-gradient",
|
||||
"-o-local",
|
||||
"-o-log",
|
||||
"-o-matrix",
|
||||
"-o-matrix3d",
|
||||
"-o-max",
|
||||
"-o-min",
|
||||
"-o-minmax",
|
||||
"-o-mod",
|
||||
"-o-oklab",
|
||||
"-o-oklch",
|
||||
"-o-opacity",
|
||||
"-o-ornaments",
|
||||
"-o-paint",
|
||||
"-o-palette-mix",
|
||||
"-o-path",
|
||||
"-o-perspective",
|
||||
"-o-polygon",
|
||||
"-o-pow",
|
||||
"-o-radial-gradient",
|
||||
"-o-ray",
|
||||
"-o-rect",
|
||||
"-o-rem",
|
||||
"-o-repeat",
|
||||
"-o-repeating-conic-gradient",
|
||||
"-o-repeating-linear-gradient",
|
||||
"-o-repeating-radial-gradient",
|
||||
"-o-reversed",
|
||||
"-o-rgb",
|
||||
"-o-rgba",
|
||||
"-o-rotate",
|
||||
"-o-rotate3d",
|
||||
"-o-rotateX",
|
||||
"-o-rotateY",
|
||||
"-o-rotateZ",
|
||||
"-o-rotatex",
|
||||
"-o-rotatey",
|
||||
"-o-rotatez",
|
||||
"-o-round",
|
||||
"-o-saturate",
|
||||
"-o-scale",
|
||||
"-o-scale3d",
|
||||
"-o-scaleX",
|
||||
"-o-scaleY",
|
||||
"-o-scaleZ",
|
||||
"-o-scalex",
|
||||
"-o-scaley",
|
||||
"-o-scalez",
|
||||
"-o-scroll",
|
||||
"-o-selector",
|
||||
"-o-sepia",
|
||||
"-o-shape",
|
||||
"-o-sign",
|
||||
"-o-sin",
|
||||
"-o-skew",
|
||||
"-o-skewX",
|
||||
"-o-skewY",
|
||||
"-o-skewx",
|
||||
"-o-skewy",
|
||||
"-o-sqrt",
|
||||
"-o-steps",
|
||||
"-o-styleset",
|
||||
"-o-stylistic",
|
||||
"-o-swash",
|
||||
"-o-symbols",
|
||||
"-o-tan",
|
||||
"-o-target-counter",
|
||||
"-o-target-counters",
|
||||
"-o-target-text",
|
||||
"-o-to",
|
||||
"-o-translate",
|
||||
"-o-translate3d",
|
||||
"-o-translateX",
|
||||
"-o-translateY",
|
||||
"-o-translateZ",
|
||||
"-o-translatex",
|
||||
"-o-translatey",
|
||||
"-o-translatez",
|
||||
"-o-type",
|
||||
"-o-url",
|
||||
"-o-var",
|
||||
"-o-view",
|
||||
"-o-xywh",
|
||||
"-ms-abs",
|
||||
"-ms-acos",
|
||||
"-ms-anchor",
|
||||
"-ms-anchor-size",
|
||||
"-ms-annotation",
|
||||
"-ms-asin",
|
||||
"-ms-atan",
|
||||
"-ms-atan2",
|
||||
"-ms-attr",
|
||||
"-ms-blur",
|
||||
"-ms-brightness",
|
||||
"-ms-calc",
|
||||
"-ms-calc-size",
|
||||
"-ms-character-variant",
|
||||
"-ms-circle",
|
||||
"-ms-clamp",
|
||||
"-ms-color",
|
||||
"-ms-color-contrast",
|
||||
"-ms-color-mix",
|
||||
"-ms-color-stop",
|
||||
"-ms-conic-gradient",
|
||||
"-ms-contrast",
|
||||
"-ms-cos",
|
||||
"-ms-counter",
|
||||
"-ms-counters",
|
||||
"-ms-cross-fade",
|
||||
"-ms-cubic-bezier",
|
||||
"-ms-device-cmyk",
|
||||
"-ms-drop-shadow",
|
||||
"-ms-element",
|
||||
"-ms-ellipse",
|
||||
"-ms-env",
|
||||
"-ms-exp",
|
||||
"-ms-fit-content",
|
||||
"-ms-format",
|
||||
"-ms-from",
|
||||
"-ms-gradient",
|
||||
"-ms-grayscale",
|
||||
"-ms-hsl",
|
||||
"-ms-hsla",
|
||||
"-ms-hue-rotate",
|
||||
"-ms-hwb",
|
||||
"-ms-hypot",
|
||||
"-ms-image",
|
||||
"-ms-image-rect",
|
||||
"-ms-image-set",
|
||||
"-ms-inset",
|
||||
"-ms-invert",
|
||||
"-ms-lab",
|
||||
"-ms-layer",
|
||||
"-ms-lch",
|
||||
"-ms-leader",
|
||||
"-ms-light-dark",
|
||||
"-ms-linear",
|
||||
"-ms-linear-gradient",
|
||||
"-ms-local",
|
||||
"-ms-log",
|
||||
"-ms-matrix",
|
||||
"-ms-matrix3d",
|
||||
"-ms-max",
|
||||
"-ms-min",
|
||||
"-ms-minmax",
|
||||
"-ms-mod",
|
||||
"-ms-oklab",
|
||||
"-ms-oklch",
|
||||
"-ms-opacity",
|
||||
"-ms-ornaments",
|
||||
"-ms-paint",
|
||||
"-ms-palette-mix",
|
||||
"-ms-path",
|
||||
"-ms-perspective",
|
||||
"-ms-polygon",
|
||||
"-ms-pow",
|
||||
"-ms-radial-gradient",
|
||||
"-ms-ray",
|
||||
"-ms-rect",
|
||||
"-ms-rem",
|
||||
"-ms-repeat",
|
||||
"-ms-repeating-conic-gradient",
|
||||
"-ms-repeating-linear-gradient",
|
||||
"-ms-repeating-radial-gradient",
|
||||
"-ms-reversed",
|
||||
"-ms-rgb",
|
||||
"-ms-rgba",
|
||||
"-ms-rotate",
|
||||
"-ms-rotate3d",
|
||||
"-ms-rotateX",
|
||||
"-ms-rotateY",
|
||||
"-ms-rotateZ",
|
||||
"-ms-rotatex",
|
||||
"-ms-rotatey",
|
||||
"-ms-rotatez",
|
||||
"-ms-round",
|
||||
"-ms-saturate",
|
||||
"-ms-scale",
|
||||
"-ms-scale3d",
|
||||
"-ms-scaleX",
|
||||
"-ms-scaleY",
|
||||
"-ms-scaleZ",
|
||||
"-ms-scalex",
|
||||
"-ms-scaley",
|
||||
"-ms-scalez",
|
||||
"-ms-scroll",
|
||||
"-ms-selector",
|
||||
"-ms-sepia",
|
||||
"-ms-shape",
|
||||
"-ms-sign",
|
||||
"-ms-sin",
|
||||
"-ms-skew",
|
||||
"-ms-skewX",
|
||||
"-ms-skewY",
|
||||
"-ms-skewx",
|
||||
"-ms-skewy",
|
||||
"-ms-sqrt",
|
||||
"-ms-steps",
|
||||
"-ms-styleset",
|
||||
"-ms-stylistic",
|
||||
"-ms-swash",
|
||||
"-ms-symbols",
|
||||
"-ms-tan",
|
||||
"-ms-target-counter",
|
||||
"-ms-target-counters",
|
||||
"-ms-target-text",
|
||||
"-ms-to",
|
||||
"-ms-translate",
|
||||
"-ms-translate3d",
|
||||
"-ms-translateX",
|
||||
"-ms-translateY",
|
||||
"-ms-translateZ",
|
||||
"-ms-translatex",
|
||||
"-ms-translatey",
|
||||
"-ms-translatez",
|
||||
"-ms-type",
|
||||
"-ms-url",
|
||||
"-ms-var",
|
||||
"-ms-view",
|
||||
"-ms-xywh"
|
||||
]
|
||||
1
node_modules/css-functions-list/cjs/package.json
generated
vendored
Normal file
1
node_modules/css-functions-list/cjs/package.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"type":"commonjs"}
|
||||
6
node_modules/css-functions-list/esm/index.d.ts
generated
vendored
Normal file
6
node_modules/css-functions-list/esm/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export default location;
|
||||
/**
|
||||
* Path to CSS functions list JSON file.
|
||||
*/
|
||||
declare const location: string;
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
node_modules/css-functions-list/esm/index.d.ts.map
generated
vendored
Normal file
1
node_modules/css-functions-list/esm/index.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";AAEA;;GAEG;AACH,+BAAuE"}
|
||||
9
node_modules/css-functions-list/esm/index.js
generated
vendored
Normal file
9
node_modules/css-functions-list/esm/index.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import { fileURLToPath, URL } from 'url';
|
||||
|
||||
/**
|
||||
* Path to CSS functions list JSON file.
|
||||
*/
|
||||
const location = fileURLToPath(new URL('index.json', import.meta.url));
|
||||
|
||||
export { location as default };
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
node_modules/css-functions-list/esm/index.js.map
generated
vendored
Normal file
1
node_modules/css-functions-list/esm/index.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sources":["../index.js"],"sourcesContent":["import { URL, fileURLToPath } from 'url';\n\n/**\n * Path to CSS functions list JSON file.\n */\nconst location = fileURLToPath(new URL('index.json', import.meta.url));\n\nexport default location;\n"],"names":[],"mappings":";;AAEA;AACA;AACA;AACK,MAAC,QAAQ,GAAG,aAAa,CAAC,IAAI,GAAG,CAAC,YAAY,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC;;;;"}
|
||||
687
node_modules/css-functions-list/esm/index.json
generated
vendored
Normal file
687
node_modules/css-functions-list/esm/index.json
generated
vendored
Normal file
@@ -0,0 +1,687 @@
|
||||
[
|
||||
"abs",
|
||||
"acos",
|
||||
"anchor",
|
||||
"anchor-size",
|
||||
"annotation",
|
||||
"asin",
|
||||
"atan",
|
||||
"atan2",
|
||||
"attr",
|
||||
"blur",
|
||||
"brightness",
|
||||
"calc",
|
||||
"calc-size",
|
||||
"character-variant",
|
||||
"circle",
|
||||
"clamp",
|
||||
"color",
|
||||
"color-contrast",
|
||||
"color-mix",
|
||||
"color-stop",
|
||||
"conic-gradient",
|
||||
"contrast",
|
||||
"cos",
|
||||
"counter",
|
||||
"counters",
|
||||
"cross-fade",
|
||||
"cubic-bezier",
|
||||
"device-cmyk",
|
||||
"drop-shadow",
|
||||
"element",
|
||||
"ellipse",
|
||||
"env",
|
||||
"exp",
|
||||
"fit-content",
|
||||
"format",
|
||||
"from",
|
||||
"gradient",
|
||||
"grayscale",
|
||||
"hsl",
|
||||
"hsla",
|
||||
"hue-rotate",
|
||||
"hwb",
|
||||
"hypot",
|
||||
"image",
|
||||
"image-rect",
|
||||
"image-set",
|
||||
"inset",
|
||||
"invert",
|
||||
"lab",
|
||||
"layer",
|
||||
"lch",
|
||||
"leader",
|
||||
"light-dark",
|
||||
"linear",
|
||||
"linear-gradient",
|
||||
"local",
|
||||
"log",
|
||||
"matrix",
|
||||
"matrix3d",
|
||||
"max",
|
||||
"min",
|
||||
"minmax",
|
||||
"mod",
|
||||
"oklab",
|
||||
"oklch",
|
||||
"opacity",
|
||||
"ornaments",
|
||||
"paint",
|
||||
"palette-mix",
|
||||
"path",
|
||||
"perspective",
|
||||
"polygon",
|
||||
"pow",
|
||||
"radial-gradient",
|
||||
"ray",
|
||||
"rect",
|
||||
"rem",
|
||||
"repeat",
|
||||
"repeating-conic-gradient",
|
||||
"repeating-linear-gradient",
|
||||
"repeating-radial-gradient",
|
||||
"reversed",
|
||||
"rgb",
|
||||
"rgba",
|
||||
"rotate",
|
||||
"rotate3d",
|
||||
"rotateX",
|
||||
"rotateY",
|
||||
"rotateZ",
|
||||
"rotatex",
|
||||
"rotatey",
|
||||
"rotatez",
|
||||
"round",
|
||||
"saturate",
|
||||
"scale",
|
||||
"scale3d",
|
||||
"scaleX",
|
||||
"scaleY",
|
||||
"scaleZ",
|
||||
"scalex",
|
||||
"scaley",
|
||||
"scalez",
|
||||
"scroll",
|
||||
"selector",
|
||||
"sepia",
|
||||
"shape",
|
||||
"sign",
|
||||
"sin",
|
||||
"skew",
|
||||
"skewX",
|
||||
"skewY",
|
||||
"skewx",
|
||||
"skewy",
|
||||
"sqrt",
|
||||
"steps",
|
||||
"styleset",
|
||||
"stylistic",
|
||||
"swash",
|
||||
"symbols",
|
||||
"tan",
|
||||
"target-counter",
|
||||
"target-counters",
|
||||
"target-text",
|
||||
"to",
|
||||
"translate",
|
||||
"translate3d",
|
||||
"translateX",
|
||||
"translateY",
|
||||
"translateZ",
|
||||
"translatex",
|
||||
"translatey",
|
||||
"translatez",
|
||||
"type",
|
||||
"url",
|
||||
"var",
|
||||
"view",
|
||||
"xywh",
|
||||
"-webkit-abs",
|
||||
"-webkit-acos",
|
||||
"-webkit-anchor",
|
||||
"-webkit-anchor-size",
|
||||
"-webkit-annotation",
|
||||
"-webkit-asin",
|
||||
"-webkit-atan",
|
||||
"-webkit-atan2",
|
||||
"-webkit-attr",
|
||||
"-webkit-blur",
|
||||
"-webkit-brightness",
|
||||
"-webkit-calc",
|
||||
"-webkit-calc-size",
|
||||
"-webkit-character-variant",
|
||||
"-webkit-circle",
|
||||
"-webkit-clamp",
|
||||
"-webkit-color",
|
||||
"-webkit-color-contrast",
|
||||
"-webkit-color-mix",
|
||||
"-webkit-color-stop",
|
||||
"-webkit-conic-gradient",
|
||||
"-webkit-contrast",
|
||||
"-webkit-cos",
|
||||
"-webkit-counter",
|
||||
"-webkit-counters",
|
||||
"-webkit-cross-fade",
|
||||
"-webkit-cubic-bezier",
|
||||
"-webkit-device-cmyk",
|
||||
"-webkit-drop-shadow",
|
||||
"-webkit-element",
|
||||
"-webkit-ellipse",
|
||||
"-webkit-env",
|
||||
"-webkit-exp",
|
||||
"-webkit-fit-content",
|
||||
"-webkit-format",
|
||||
"-webkit-from",
|
||||
"-webkit-gradient",
|
||||
"-webkit-grayscale",
|
||||
"-webkit-hsl",
|
||||
"-webkit-hsla",
|
||||
"-webkit-hue-rotate",
|
||||
"-webkit-hwb",
|
||||
"-webkit-hypot",
|
||||
"-webkit-image",
|
||||
"-webkit-image-rect",
|
||||
"-webkit-image-set",
|
||||
"-webkit-inset",
|
||||
"-webkit-invert",
|
||||
"-webkit-lab",
|
||||
"-webkit-layer",
|
||||
"-webkit-lch",
|
||||
"-webkit-leader",
|
||||
"-webkit-light-dark",
|
||||
"-webkit-linear",
|
||||
"-webkit-linear-gradient",
|
||||
"-webkit-local",
|
||||
"-webkit-log",
|
||||
"-webkit-matrix",
|
||||
"-webkit-matrix3d",
|
||||
"-webkit-max",
|
||||
"-webkit-min",
|
||||
"-webkit-minmax",
|
||||
"-webkit-mod",
|
||||
"-webkit-oklab",
|
||||
"-webkit-oklch",
|
||||
"-webkit-opacity",
|
||||
"-webkit-ornaments",
|
||||
"-webkit-paint",
|
||||
"-webkit-palette-mix",
|
||||
"-webkit-path",
|
||||
"-webkit-perspective",
|
||||
"-webkit-polygon",
|
||||
"-webkit-pow",
|
||||
"-webkit-radial-gradient",
|
||||
"-webkit-ray",
|
||||
"-webkit-rect",
|
||||
"-webkit-rem",
|
||||
"-webkit-repeat",
|
||||
"-webkit-repeating-conic-gradient",
|
||||
"-webkit-repeating-linear-gradient",
|
||||
"-webkit-repeating-radial-gradient",
|
||||
"-webkit-reversed",
|
||||
"-webkit-rgb",
|
||||
"-webkit-rgba",
|
||||
"-webkit-rotate",
|
||||
"-webkit-rotate3d",
|
||||
"-webkit-rotateX",
|
||||
"-webkit-rotateY",
|
||||
"-webkit-rotateZ",
|
||||
"-webkit-rotatex",
|
||||
"-webkit-rotatey",
|
||||
"-webkit-rotatez",
|
||||
"-webkit-round",
|
||||
"-webkit-saturate",
|
||||
"-webkit-scale",
|
||||
"-webkit-scale3d",
|
||||
"-webkit-scaleX",
|
||||
"-webkit-scaleY",
|
||||
"-webkit-scaleZ",
|
||||
"-webkit-scalex",
|
||||
"-webkit-scaley",
|
||||
"-webkit-scalez",
|
||||
"-webkit-scroll",
|
||||
"-webkit-selector",
|
||||
"-webkit-sepia",
|
||||
"-webkit-shape",
|
||||
"-webkit-sign",
|
||||
"-webkit-sin",
|
||||
"-webkit-skew",
|
||||
"-webkit-skewX",
|
||||
"-webkit-skewY",
|
||||
"-webkit-skewx",
|
||||
"-webkit-skewy",
|
||||
"-webkit-sqrt",
|
||||
"-webkit-steps",
|
||||
"-webkit-styleset",
|
||||
"-webkit-stylistic",
|
||||
"-webkit-swash",
|
||||
"-webkit-symbols",
|
||||
"-webkit-tan",
|
||||
"-webkit-target-counter",
|
||||
"-webkit-target-counters",
|
||||
"-webkit-target-text",
|
||||
"-webkit-to",
|
||||
"-webkit-translate",
|
||||
"-webkit-translate3d",
|
||||
"-webkit-translateX",
|
||||
"-webkit-translateY",
|
||||
"-webkit-translateZ",
|
||||
"-webkit-translatex",
|
||||
"-webkit-translatey",
|
||||
"-webkit-translatez",
|
||||
"-webkit-type",
|
||||
"-webkit-url",
|
||||
"-webkit-var",
|
||||
"-webkit-view",
|
||||
"-webkit-xywh",
|
||||
"-moz-abs",
|
||||
"-moz-acos",
|
||||
"-moz-anchor",
|
||||
"-moz-anchor-size",
|
||||
"-moz-annotation",
|
||||
"-moz-asin",
|
||||
"-moz-atan",
|
||||
"-moz-atan2",
|
||||
"-moz-attr",
|
||||
"-moz-blur",
|
||||
"-moz-brightness",
|
||||
"-moz-calc",
|
||||
"-moz-calc-size",
|
||||
"-moz-character-variant",
|
||||
"-moz-circle",
|
||||
"-moz-clamp",
|
||||
"-moz-color",
|
||||
"-moz-color-contrast",
|
||||
"-moz-color-mix",
|
||||
"-moz-color-stop",
|
||||
"-moz-conic-gradient",
|
||||
"-moz-contrast",
|
||||
"-moz-cos",
|
||||
"-moz-counter",
|
||||
"-moz-counters",
|
||||
"-moz-cross-fade",
|
||||
"-moz-cubic-bezier",
|
||||
"-moz-device-cmyk",
|
||||
"-moz-drop-shadow",
|
||||
"-moz-element",
|
||||
"-moz-ellipse",
|
||||
"-moz-env",
|
||||
"-moz-exp",
|
||||
"-moz-fit-content",
|
||||
"-moz-format",
|
||||
"-moz-from",
|
||||
"-moz-gradient",
|
||||
"-moz-grayscale",
|
||||
"-moz-hsl",
|
||||
"-moz-hsla",
|
||||
"-moz-hue-rotate",
|
||||
"-moz-hwb",
|
||||
"-moz-hypot",
|
||||
"-moz-image",
|
||||
"-moz-image-rect",
|
||||
"-moz-image-set",
|
||||
"-moz-inset",
|
||||
"-moz-invert",
|
||||
"-moz-lab",
|
||||
"-moz-layer",
|
||||
"-moz-lch",
|
||||
"-moz-leader",
|
||||
"-moz-light-dark",
|
||||
"-moz-linear",
|
||||
"-moz-linear-gradient",
|
||||
"-moz-local",
|
||||
"-moz-log",
|
||||
"-moz-matrix",
|
||||
"-moz-matrix3d",
|
||||
"-moz-max",
|
||||
"-moz-min",
|
||||
"-moz-minmax",
|
||||
"-moz-mod",
|
||||
"-moz-oklab",
|
||||
"-moz-oklch",
|
||||
"-moz-opacity",
|
||||
"-moz-ornaments",
|
||||
"-moz-paint",
|
||||
"-moz-palette-mix",
|
||||
"-moz-path",
|
||||
"-moz-perspective",
|
||||
"-moz-polygon",
|
||||
"-moz-pow",
|
||||
"-moz-radial-gradient",
|
||||
"-moz-ray",
|
||||
"-moz-rect",
|
||||
"-moz-rem",
|
||||
"-moz-repeat",
|
||||
"-moz-repeating-conic-gradient",
|
||||
"-moz-repeating-linear-gradient",
|
||||
"-moz-repeating-radial-gradient",
|
||||
"-moz-reversed",
|
||||
"-moz-rgb",
|
||||
"-moz-rgba",
|
||||
"-moz-rotate",
|
||||
"-moz-rotate3d",
|
||||
"-moz-rotateX",
|
||||
"-moz-rotateY",
|
||||
"-moz-rotateZ",
|
||||
"-moz-rotatex",
|
||||
"-moz-rotatey",
|
||||
"-moz-rotatez",
|
||||
"-moz-round",
|
||||
"-moz-saturate",
|
||||
"-moz-scale",
|
||||
"-moz-scale3d",
|
||||
"-moz-scaleX",
|
||||
"-moz-scaleY",
|
||||
"-moz-scaleZ",
|
||||
"-moz-scalex",
|
||||
"-moz-scaley",
|
||||
"-moz-scalez",
|
||||
"-moz-scroll",
|
||||
"-moz-selector",
|
||||
"-moz-sepia",
|
||||
"-moz-shape",
|
||||
"-moz-sign",
|
||||
"-moz-sin",
|
||||
"-moz-skew",
|
||||
"-moz-skewX",
|
||||
"-moz-skewY",
|
||||
"-moz-skewx",
|
||||
"-moz-skewy",
|
||||
"-moz-sqrt",
|
||||
"-moz-steps",
|
||||
"-moz-styleset",
|
||||
"-moz-stylistic",
|
||||
"-moz-swash",
|
||||
"-moz-symbols",
|
||||
"-moz-tan",
|
||||
"-moz-target-counter",
|
||||
"-moz-target-counters",
|
||||
"-moz-target-text",
|
||||
"-moz-to",
|
||||
"-moz-translate",
|
||||
"-moz-translate3d",
|
||||
"-moz-translateX",
|
||||
"-moz-translateY",
|
||||
"-moz-translateZ",
|
||||
"-moz-translatex",
|
||||
"-moz-translatey",
|
||||
"-moz-translatez",
|
||||
"-moz-type",
|
||||
"-moz-url",
|
||||
"-moz-var",
|
||||
"-moz-view",
|
||||
"-moz-xywh",
|
||||
"-o-abs",
|
||||
"-o-acos",
|
||||
"-o-anchor",
|
||||
"-o-anchor-size",
|
||||
"-o-annotation",
|
||||
"-o-asin",
|
||||
"-o-atan",
|
||||
"-o-atan2",
|
||||
"-o-attr",
|
||||
"-o-blur",
|
||||
"-o-brightness",
|
||||
"-o-calc",
|
||||
"-o-calc-size",
|
||||
"-o-character-variant",
|
||||
"-o-circle",
|
||||
"-o-clamp",
|
||||
"-o-color",
|
||||
"-o-color-contrast",
|
||||
"-o-color-mix",
|
||||
"-o-color-stop",
|
||||
"-o-conic-gradient",
|
||||
"-o-contrast",
|
||||
"-o-cos",
|
||||
"-o-counter",
|
||||
"-o-counters",
|
||||
"-o-cross-fade",
|
||||
"-o-cubic-bezier",
|
||||
"-o-device-cmyk",
|
||||
"-o-drop-shadow",
|
||||
"-o-element",
|
||||
"-o-ellipse",
|
||||
"-o-env",
|
||||
"-o-exp",
|
||||
"-o-fit-content",
|
||||
"-o-format",
|
||||
"-o-from",
|
||||
"-o-gradient",
|
||||
"-o-grayscale",
|
||||
"-o-hsl",
|
||||
"-o-hsla",
|
||||
"-o-hue-rotate",
|
||||
"-o-hwb",
|
||||
"-o-hypot",
|
||||
"-o-image",
|
||||
"-o-image-rect",
|
||||
"-o-image-set",
|
||||
"-o-inset",
|
||||
"-o-invert",
|
||||
"-o-lab",
|
||||
"-o-layer",
|
||||
"-o-lch",
|
||||
"-o-leader",
|
||||
"-o-light-dark",
|
||||
"-o-linear",
|
||||
"-o-linear-gradient",
|
||||
"-o-local",
|
||||
"-o-log",
|
||||
"-o-matrix",
|
||||
"-o-matrix3d",
|
||||
"-o-max",
|
||||
"-o-min",
|
||||
"-o-minmax",
|
||||
"-o-mod",
|
||||
"-o-oklab",
|
||||
"-o-oklch",
|
||||
"-o-opacity",
|
||||
"-o-ornaments",
|
||||
"-o-paint",
|
||||
"-o-palette-mix",
|
||||
"-o-path",
|
||||
"-o-perspective",
|
||||
"-o-polygon",
|
||||
"-o-pow",
|
||||
"-o-radial-gradient",
|
||||
"-o-ray",
|
||||
"-o-rect",
|
||||
"-o-rem",
|
||||
"-o-repeat",
|
||||
"-o-repeating-conic-gradient",
|
||||
"-o-repeating-linear-gradient",
|
||||
"-o-repeating-radial-gradient",
|
||||
"-o-reversed",
|
||||
"-o-rgb",
|
||||
"-o-rgba",
|
||||
"-o-rotate",
|
||||
"-o-rotate3d",
|
||||
"-o-rotateX",
|
||||
"-o-rotateY",
|
||||
"-o-rotateZ",
|
||||
"-o-rotatex",
|
||||
"-o-rotatey",
|
||||
"-o-rotatez",
|
||||
"-o-round",
|
||||
"-o-saturate",
|
||||
"-o-scale",
|
||||
"-o-scale3d",
|
||||
"-o-scaleX",
|
||||
"-o-scaleY",
|
||||
"-o-scaleZ",
|
||||
"-o-scalex",
|
||||
"-o-scaley",
|
||||
"-o-scalez",
|
||||
"-o-scroll",
|
||||
"-o-selector",
|
||||
"-o-sepia",
|
||||
"-o-shape",
|
||||
"-o-sign",
|
||||
"-o-sin",
|
||||
"-o-skew",
|
||||
"-o-skewX",
|
||||
"-o-skewY",
|
||||
"-o-skewx",
|
||||
"-o-skewy",
|
||||
"-o-sqrt",
|
||||
"-o-steps",
|
||||
"-o-styleset",
|
||||
"-o-stylistic",
|
||||
"-o-swash",
|
||||
"-o-symbols",
|
||||
"-o-tan",
|
||||
"-o-target-counter",
|
||||
"-o-target-counters",
|
||||
"-o-target-text",
|
||||
"-o-to",
|
||||
"-o-translate",
|
||||
"-o-translate3d",
|
||||
"-o-translateX",
|
||||
"-o-translateY",
|
||||
"-o-translateZ",
|
||||
"-o-translatex",
|
||||
"-o-translatey",
|
||||
"-o-translatez",
|
||||
"-o-type",
|
||||
"-o-url",
|
||||
"-o-var",
|
||||
"-o-view",
|
||||
"-o-xywh",
|
||||
"-ms-abs",
|
||||
"-ms-acos",
|
||||
"-ms-anchor",
|
||||
"-ms-anchor-size",
|
||||
"-ms-annotation",
|
||||
"-ms-asin",
|
||||
"-ms-atan",
|
||||
"-ms-atan2",
|
||||
"-ms-attr",
|
||||
"-ms-blur",
|
||||
"-ms-brightness",
|
||||
"-ms-calc",
|
||||
"-ms-calc-size",
|
||||
"-ms-character-variant",
|
||||
"-ms-circle",
|
||||
"-ms-clamp",
|
||||
"-ms-color",
|
||||
"-ms-color-contrast",
|
||||
"-ms-color-mix",
|
||||
"-ms-color-stop",
|
||||
"-ms-conic-gradient",
|
||||
"-ms-contrast",
|
||||
"-ms-cos",
|
||||
"-ms-counter",
|
||||
"-ms-counters",
|
||||
"-ms-cross-fade",
|
||||
"-ms-cubic-bezier",
|
||||
"-ms-device-cmyk",
|
||||
"-ms-drop-shadow",
|
||||
"-ms-element",
|
||||
"-ms-ellipse",
|
||||
"-ms-env",
|
||||
"-ms-exp",
|
||||
"-ms-fit-content",
|
||||
"-ms-format",
|
||||
"-ms-from",
|
||||
"-ms-gradient",
|
||||
"-ms-grayscale",
|
||||
"-ms-hsl",
|
||||
"-ms-hsla",
|
||||
"-ms-hue-rotate",
|
||||
"-ms-hwb",
|
||||
"-ms-hypot",
|
||||
"-ms-image",
|
||||
"-ms-image-rect",
|
||||
"-ms-image-set",
|
||||
"-ms-inset",
|
||||
"-ms-invert",
|
||||
"-ms-lab",
|
||||
"-ms-layer",
|
||||
"-ms-lch",
|
||||
"-ms-leader",
|
||||
"-ms-light-dark",
|
||||
"-ms-linear",
|
||||
"-ms-linear-gradient",
|
||||
"-ms-local",
|
||||
"-ms-log",
|
||||
"-ms-matrix",
|
||||
"-ms-matrix3d",
|
||||
"-ms-max",
|
||||
"-ms-min",
|
||||
"-ms-minmax",
|
||||
"-ms-mod",
|
||||
"-ms-oklab",
|
||||
"-ms-oklch",
|
||||
"-ms-opacity",
|
||||
"-ms-ornaments",
|
||||
"-ms-paint",
|
||||
"-ms-palette-mix",
|
||||
"-ms-path",
|
||||
"-ms-perspective",
|
||||
"-ms-polygon",
|
||||
"-ms-pow",
|
||||
"-ms-radial-gradient",
|
||||
"-ms-ray",
|
||||
"-ms-rect",
|
||||
"-ms-rem",
|
||||
"-ms-repeat",
|
||||
"-ms-repeating-conic-gradient",
|
||||
"-ms-repeating-linear-gradient",
|
||||
"-ms-repeating-radial-gradient",
|
||||
"-ms-reversed",
|
||||
"-ms-rgb",
|
||||
"-ms-rgba",
|
||||
"-ms-rotate",
|
||||
"-ms-rotate3d",
|
||||
"-ms-rotateX",
|
||||
"-ms-rotateY",
|
||||
"-ms-rotateZ",
|
||||
"-ms-rotatex",
|
||||
"-ms-rotatey",
|
||||
"-ms-rotatez",
|
||||
"-ms-round",
|
||||
"-ms-saturate",
|
||||
"-ms-scale",
|
||||
"-ms-scale3d",
|
||||
"-ms-scaleX",
|
||||
"-ms-scaleY",
|
||||
"-ms-scaleZ",
|
||||
"-ms-scalex",
|
||||
"-ms-scaley",
|
||||
"-ms-scalez",
|
||||
"-ms-scroll",
|
||||
"-ms-selector",
|
||||
"-ms-sepia",
|
||||
"-ms-shape",
|
||||
"-ms-sign",
|
||||
"-ms-sin",
|
||||
"-ms-skew",
|
||||
"-ms-skewX",
|
||||
"-ms-skewY",
|
||||
"-ms-skewx",
|
||||
"-ms-skewy",
|
||||
"-ms-sqrt",
|
||||
"-ms-steps",
|
||||
"-ms-styleset",
|
||||
"-ms-stylistic",
|
||||
"-ms-swash",
|
||||
"-ms-symbols",
|
||||
"-ms-tan",
|
||||
"-ms-target-counter",
|
||||
"-ms-target-counters",
|
||||
"-ms-target-text",
|
||||
"-ms-to",
|
||||
"-ms-translate",
|
||||
"-ms-translate3d",
|
||||
"-ms-translateX",
|
||||
"-ms-translateY",
|
||||
"-ms-translateZ",
|
||||
"-ms-translatex",
|
||||
"-ms-translatey",
|
||||
"-ms-translatez",
|
||||
"-ms-type",
|
||||
"-ms-url",
|
||||
"-ms-var",
|
||||
"-ms-view",
|
||||
"-ms-xywh"
|
||||
]
|
||||
1
node_modules/css-functions-list/esm/package.json
generated
vendored
Normal file
1
node_modules/css-functions-list/esm/package.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"type":"module"}
|
||||
88
node_modules/css-functions-list/package.json
generated
vendored
Normal file
88
node_modules/css-functions-list/package.json
generated
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
{
|
||||
"name": "css-functions-list",
|
||||
"version": "3.2.3",
|
||||
"description": "List of standard and browser specific CSS functions.",
|
||||
"license": "MIT",
|
||||
"author": "Ivan Nikolić <niksy5@gmail.com> (http://ivannikolic.com)",
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./esm/index.js",
|
||||
"require": "./cjs/index.js"
|
||||
},
|
||||
"./index.json": {
|
||||
"import": "./esm/index.json",
|
||||
"require": "./cjs/index.json"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"main": "cjs/index.js",
|
||||
"module": "esm/index.js",
|
||||
"types": "esm/index.d.ts",
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"files": [
|
||||
"cjs/",
|
||||
"esm/",
|
||||
"CHANGELOG.md",
|
||||
"LICENSE.md",
|
||||
"README.md"
|
||||
],
|
||||
"scripts": {
|
||||
"generate-list": "node generate-list.js",
|
||||
"release": "np --no-release-draft",
|
||||
"version": "if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi",
|
||||
"postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
|
||||
"lint": "eslint '{index,lib/**/*,test/**/*,generate-list}.js'",
|
||||
"test": "mocha 'test/**/*.js'",
|
||||
"test:watch": "npm test -- --watch",
|
||||
"build": "rollup --config rollup.config.js",
|
||||
"module-check": "node -e 'require(\"css-functions-list\");' && node --input-type=module -e 'import \"css-functions-list\";'",
|
||||
"prepublishOnly": "npm run build",
|
||||
"lint:types": "tsc",
|
||||
"prerelease": "npm run lint && npm run lint:types && npm run build && npm run module-check"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jsdom": "^16.2.13",
|
||||
"@types/mocha": "^9.0.0",
|
||||
"@types/node": "^16.3.0",
|
||||
"@types/node-fetch": "^2.5.12",
|
||||
"changelog-verify": "^1.1.2",
|
||||
"cpy": "^8.1.2",
|
||||
"eslint": "^8.5.0",
|
||||
"eslint-config-nitpick": "^11.1.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"execa": "^5.1.1",
|
||||
"github-release-from-changelog": "^2.1.1",
|
||||
"husky": "^4.3.0",
|
||||
"isomorphic-unfetch": "^3.1.0",
|
||||
"jsdom": "^17.0.0",
|
||||
"lint-staged": "^10.4.2",
|
||||
"mocha": "^10.2.0",
|
||||
"np": "^7.6.0",
|
||||
"prettier": "^2.4.0",
|
||||
"rollup": "^2.32.1",
|
||||
"typescript": "^4.3.5",
|
||||
"version-changelog": "^3.1.1",
|
||||
"write-json-file": "^4.3.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12 || >=16"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"functions",
|
||||
"list"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/niksy/css-functions-list.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/niksy/css-functions-list/issues"
|
||||
},
|
||||
"homepage": "https://github.com/niksy/css-functions-list#readme"
|
||||
}
|
||||
Reference in New Issue
Block a user