fix: prevent asset conflicts between React and Grid.js versions

Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
dwindown
2026-04-18 17:02:14 +07:00
parent bd9cdac02e
commit e8fbfb14c1
74973 changed files with 6658406 additions and 71 deletions

103
node_modules/css-functions-list/CHANGELOG.md generated vendored Normal file
View File

@@ -0,0 +1,103 @@
# Changelog
## [Unreleased][]
## [3.3.3][] - 2026-02-10
### Changed
- Simplify and adjust package file references
## [3.3.2][] - 2026-02-10
### Fixed
- Properly copy JSON file to distribution directory
## [3.3.1][] - 2026-02-10
### Fixed
- Fix JSON file reference
## [3.3.0][] - 2026-02-10
### Added
- Update function list with latest additions
([#12](https://github.com/niksy/css-functions-list/pull/12))
### Changed
- Upgrade package internals
## [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.3.3...HEAD
[3.3.3]: https://github.com/niksy/css-functions-list/compare/v3.3.2...v3.3.3
[3.3.2]: https://github.com/niksy/css-functions-list/compare/v3.3.1...v3.3.2
[3.3.1]: https://github.com/niksy/css-functions-list/compare/v3.3.0...v3.3.1
[3.3.0]: https://github.com/niksy/css-functions-list/compare/v3.2.3...v3.3.0
[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

16
node_modules/css-functions-list/LICENSE.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
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.

66
node_modules/css-functions-list/README.md generated vendored Normal file
View File

@@ -0,0 +1,66 @@
# 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/actions/workflows/ci.yml/badge.svg?branch=master
<!-- prettier-ignore-end -->

11
node_modules/css-functions-list/dist/index.cjs generated vendored Normal file
View File

@@ -0,0 +1,11 @@
let url = require("url");
//#region index.js
/**
* Path to CSS functions list JSON file.
*/
const location = (0, url.fileURLToPath)(new url.URL("index.json", require("url").pathToFileURL(__filename).href));
//#endregion
module.exports = location;
//# sourceMappingURL=index.cjs.map

1
node_modules/css-functions-list/dist/index.cjs.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.cjs","names":["URL"],"sources":["../index.js"],"sourcesContent":["// eslint-disable-next-line import/enforce-node-protocol-usage, unicorn/prefer-node-protocol\nimport { 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"],"mappings":";;;;;;AAMA,MAAM,kCAAyB,IAAIA,QAAI,4DAA8B,CAAC"}

9
node_modules/css-functions-list/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
//#region index.d.ts
/**
* Path to CSS functions list JSON file.
*/
declare const location: string;
//# sourceMappingURL=index.d.ts.map
//#endregion
export { location as default };
//# sourceMappingURL=index.d.ts.map

1
node_modules/css-functions-list/dist/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","names":[],"sources":["../index.js"],"sourcesContent":[],"mappings":";;;;cAMA"}

11
node_modules/css-functions-list/dist/index.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import { URL, fileURLToPath } from "url";
//#region index.js
/**
* Path to CSS functions list JSON file.
*/
const location = fileURLToPath(new URL("index.json", import.meta.url));
//#endregion
export { location as default };
//# sourceMappingURL=index.js.map

1
node_modules/css-functions-list/dist/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","names":[],"sources":["../index.js"],"sourcesContent":["// eslint-disable-next-line import/enforce-node-protocol-usage, unicorn/prefer-node-protocol\nimport { 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"],"mappings":";;;;;;AAMA,MAAM,WAAW,cAAc,IAAI,IAAI,cAAc,OAAO,KAAK,IAAI,CAAC"}

762
node_modules/css-functions-list/dist/index.json generated vendored Normal file
View File

@@ -0,0 +1,762 @@
[
"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",
"content",
"contrast",
"contrast-color",
"cos",
"counter",
"counters",
"cross-fade",
"cubic-bezier",
"device-cmyk",
"drop-shadow",
"dynamic-range-limit-mix",
"element",
"ellipse",
"env",
"exp",
"filter",
"fit-content",
"format",
"from",
"gradient",
"grayscale",
"hsl",
"hsla",
"hue-rotate",
"hwb",
"hypot",
"if",
"image",
"image-rect",
"image-set",
"inset",
"invert",
"lab",
"layer",
"lch",
"leader",
"light-dark",
"linear",
"linear-gradient",
"local",
"log",
"matrix",
"matrix3d",
"max",
"media",
"min",
"minmax",
"mod",
"oklab",
"oklch",
"opacity",
"ornaments",
"paint",
"palette-mix",
"path",
"perspective",
"polygon",
"pow",
"progress",
"radial-gradient",
"random",
"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",
"running",
"saturate",
"scale",
"scale3d",
"scaleX",
"scaleY",
"scaleZ",
"scalex",
"scaley",
"scalez",
"scroll",
"selector",
"sepia",
"shape",
"sibling-count",
"sibling-index",
"sign",
"sin",
"skew",
"skewX",
"skewY",
"skewx",
"skewy",
"sqrt",
"steps",
"string",
"style",
"styleset",
"stylistic",
"superellipse",
"supports",
"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-content",
"-webkit-contrast",
"-webkit-contrast-color",
"-webkit-cos",
"-webkit-counter",
"-webkit-counters",
"-webkit-cross-fade",
"-webkit-cubic-bezier",
"-webkit-device-cmyk",
"-webkit-drop-shadow",
"-webkit-dynamic-range-limit-mix",
"-webkit-element",
"-webkit-ellipse",
"-webkit-env",
"-webkit-exp",
"-webkit-filter",
"-webkit-fit-content",
"-webkit-format",
"-webkit-from",
"-webkit-gradient",
"-webkit-grayscale",
"-webkit-hsl",
"-webkit-hsla",
"-webkit-hue-rotate",
"-webkit-hwb",
"-webkit-hypot",
"-webkit-if",
"-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-media",
"-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-progress",
"-webkit-radial-gradient",
"-webkit-random",
"-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-running",
"-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-sibling-count",
"-webkit-sibling-index",
"-webkit-sign",
"-webkit-sin",
"-webkit-skew",
"-webkit-skewX",
"-webkit-skewY",
"-webkit-skewx",
"-webkit-skewy",
"-webkit-sqrt",
"-webkit-steps",
"-webkit-string",
"-webkit-style",
"-webkit-styleset",
"-webkit-stylistic",
"-webkit-superellipse",
"-webkit-supports",
"-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-content",
"-moz-contrast",
"-moz-contrast-color",
"-moz-cos",
"-moz-counter",
"-moz-counters",
"-moz-cross-fade",
"-moz-cubic-bezier",
"-moz-device-cmyk",
"-moz-drop-shadow",
"-moz-dynamic-range-limit-mix",
"-moz-element",
"-moz-ellipse",
"-moz-env",
"-moz-exp",
"-moz-filter",
"-moz-fit-content",
"-moz-format",
"-moz-from",
"-moz-gradient",
"-moz-grayscale",
"-moz-hsl",
"-moz-hsla",
"-moz-hue-rotate",
"-moz-hwb",
"-moz-hypot",
"-moz-if",
"-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-media",
"-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-progress",
"-moz-radial-gradient",
"-moz-random",
"-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-running",
"-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-sibling-count",
"-moz-sibling-index",
"-moz-sign",
"-moz-sin",
"-moz-skew",
"-moz-skewX",
"-moz-skewY",
"-moz-skewx",
"-moz-skewy",
"-moz-sqrt",
"-moz-steps",
"-moz-string",
"-moz-style",
"-moz-styleset",
"-moz-stylistic",
"-moz-superellipse",
"-moz-supports",
"-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-content",
"-o-contrast",
"-o-contrast-color",
"-o-cos",
"-o-counter",
"-o-counters",
"-o-cross-fade",
"-o-cubic-bezier",
"-o-device-cmyk",
"-o-drop-shadow",
"-o-dynamic-range-limit-mix",
"-o-element",
"-o-ellipse",
"-o-env",
"-o-exp",
"-o-filter",
"-o-fit-content",
"-o-format",
"-o-from",
"-o-gradient",
"-o-grayscale",
"-o-hsl",
"-o-hsla",
"-o-hue-rotate",
"-o-hwb",
"-o-hypot",
"-o-if",
"-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-media",
"-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-progress",
"-o-radial-gradient",
"-o-random",
"-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-running",
"-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-sibling-count",
"-o-sibling-index",
"-o-sign",
"-o-sin",
"-o-skew",
"-o-skewX",
"-o-skewY",
"-o-skewx",
"-o-skewy",
"-o-sqrt",
"-o-steps",
"-o-string",
"-o-style",
"-o-styleset",
"-o-stylistic",
"-o-superellipse",
"-o-supports",
"-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-content",
"-ms-contrast",
"-ms-contrast-color",
"-ms-cos",
"-ms-counter",
"-ms-counters",
"-ms-cross-fade",
"-ms-cubic-bezier",
"-ms-device-cmyk",
"-ms-drop-shadow",
"-ms-dynamic-range-limit-mix",
"-ms-element",
"-ms-ellipse",
"-ms-env",
"-ms-exp",
"-ms-filter",
"-ms-fit-content",
"-ms-format",
"-ms-from",
"-ms-gradient",
"-ms-grayscale",
"-ms-hsl",
"-ms-hsla",
"-ms-hue-rotate",
"-ms-hwb",
"-ms-hypot",
"-ms-if",
"-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-media",
"-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-progress",
"-ms-radial-gradient",
"-ms-random",
"-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-running",
"-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-sibling-count",
"-ms-sibling-index",
"-ms-sign",
"-ms-sin",
"-ms-skew",
"-ms-skewX",
"-ms-skewY",
"-ms-skewx",
"-ms-skewy",
"-ms-sqrt",
"-ms-steps",
"-ms-string",
"-ms-style",
"-ms-styleset",
"-ms-stylistic",
"-ms-superellipse",
"-ms-supports",
"-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"
]

83
node_modules/css-functions-list/package.json generated vendored Normal file
View File

@@ -0,0 +1,83 @@
{
"name": "css-functions-list",
"version": "3.3.3",
"description": "List of standard and browser specific CSS functions.",
"license": "MIT",
"author": "Ivan Nikolić <niksy5@gmail.com> (http://ivannikolic.com)",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./index.json": "./dist/index.json",
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"directories": {
"test": "test"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "rolldown --config rolldown.config.js && cp index.json dist/index.json",
"generate-list": "node generate-list.js",
"lint": "eslint '{index,lib/**/*,test/**/*,generate-list}.{js,cjs}'",
"lint:types": "tsc",
"module-check": "node -e 'require(\"css-functions-list\");' && node --input-type=module -e 'import \"css-functions-list\";'",
"prepare": "if [[ -x \"$(command -v husky)\" ]]; then husky; fi",
"prepublishOnly": "npm run build",
"postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
"prerelease": "npm run lint && npm run lint:types && npm run build && npm run module-check",
"release": "np --no-release-draft",
"test": "mocha 'test/**/*.js'",
"test:watch": "npm test -- --watch",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"devDependencies": {
"@swc-node/register": "^1.11.1",
"@types/jsdom": "^16.2.15",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.9",
"@types/node-fetch": "^2.6.13",
"changelog-verify": "^1.1.2",
"eslint": "^9.39.2",
"eslint-config-nitpick": "^14.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"github-release-from-changelog": "^2.1.1",
"husky": "^9.1.7",
"isomorphic-unfetch": "^4.0.2",
"jsdom": "^28.0.0",
"lint-staged": "^15.5.2",
"mocha": "^10.8.2",
"np": "^10.3.0",
"prettier": "^3.8.1",
"rolldown": "^1.0.0-rc.3",
"rolldown-plugin-dts": "^0.17.8",
"typescript": "^5.9.3",
"version-changelog": "^3.1.1",
"write-json-file": "^7.0.0"
},
"engines": {
"node": ">=12"
},
"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"
}