@react-email/tailwind 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index.js → index.cjs} +302 -308
- package/dist/{index.d.ts → index.d.cts} +1 -1
- package/dist/index.d.cts.map +1 -0
- package/dist/index.mjs +269 -285
- package/dist/index.mjs.map +1 -1
- package/package.json +30 -29
- package/dist/index.d.ts.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -15,41 +15,25 @@ import { compile } from "tailwindcss";
|
|
|
15
15
|
import { jsx } from "react/jsx-runtime";
|
|
16
16
|
|
|
17
17
|
//#region rolldown:runtime
|
|
18
|
-
var __create = Object.create;
|
|
19
18
|
var __defProp = Object.defineProperty;
|
|
20
|
-
var
|
|
21
|
-
var
|
|
22
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
23
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
24
|
-
var __commonJS = (cb, mod) => function() {
|
|
25
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
26
|
-
};
|
|
27
|
-
var __export = (all) => {
|
|
19
|
+
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
20
|
+
var __exportAll = (all, symbols) => {
|
|
28
21
|
let target = {};
|
|
29
|
-
for (var name$49 in all)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
return target;
|
|
34
|
-
};
|
|
35
|
-
var __copyProps = (to, from, except, desc) => {
|
|
36
|
-
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
37
|
-
key = keys[i];
|
|
38
|
-
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
39
|
-
get: ((k) => from[k]).bind(null, key),
|
|
40
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
22
|
+
for (var name$49 in all) {
|
|
23
|
+
__defProp(target, name$49, {
|
|
24
|
+
get: all[name$49],
|
|
25
|
+
enumerable: true
|
|
41
26
|
});
|
|
42
27
|
}
|
|
43
|
-
|
|
28
|
+
if (symbols) {
|
|
29
|
+
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
30
|
+
}
|
|
31
|
+
return target;
|
|
44
32
|
};
|
|
45
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
46
|
-
value: mod,
|
|
47
|
-
enumerable: true
|
|
48
|
-
}) : target, mod));
|
|
49
33
|
|
|
50
34
|
//#endregion
|
|
51
35
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/tokenizer/types.js
|
|
52
|
-
const EOF = 0;
|
|
36
|
+
const EOF$1 = 0;
|
|
53
37
|
const Ident = 1;
|
|
54
38
|
const Function = 2;
|
|
55
39
|
const AtKeyword = 3;
|
|
@@ -78,7 +62,7 @@ const Comment = 25;
|
|
|
78
62
|
|
|
79
63
|
//#endregion
|
|
80
64
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/tokenizer/char-code-definitions.js
|
|
81
|
-
const EOF
|
|
65
|
+
const EOF = 0;
|
|
82
66
|
function isDigit(code$1) {
|
|
83
67
|
return code$1 >= 48 && code$1 <= 57;
|
|
84
68
|
}
|
|
@@ -114,7 +98,7 @@ function isWhiteSpace(code$1) {
|
|
|
114
98
|
}
|
|
115
99
|
function isValidEscape(first, second) {
|
|
116
100
|
if (first !== 92) return false;
|
|
117
|
-
if (isNewline(second) || second === EOF
|
|
101
|
+
if (isNewline(second) || second === EOF) return false;
|
|
118
102
|
return true;
|
|
119
103
|
}
|
|
120
104
|
function isIdentifierStart(first, second, third) {
|
|
@@ -408,7 +392,7 @@ var TokenStream = class {
|
|
|
408
392
|
balanceCloseType = balancePair$1[type];
|
|
409
393
|
}
|
|
410
394
|
});
|
|
411
|
-
offsetAndType[tokenCount] = EOF << TYPE_SHIFT | sourceLength;
|
|
395
|
+
offsetAndType[tokenCount] = EOF$1 << TYPE_SHIFT | sourceLength;
|
|
412
396
|
balance[tokenCount] = tokenCount;
|
|
413
397
|
for (let i = 0; i < tokenCount; i++) {
|
|
414
398
|
const balanceStart$1 = balance[i];
|
|
@@ -428,7 +412,7 @@ var TokenStream = class {
|
|
|
428
412
|
lookupType(offset) {
|
|
429
413
|
offset += this.tokenIndex;
|
|
430
414
|
if (offset < this.tokenCount) return this.offsetAndType[offset] >> TYPE_SHIFT;
|
|
431
|
-
return EOF;
|
|
415
|
+
return EOF$1;
|
|
432
416
|
}
|
|
433
417
|
lookupTypeNonSC(idx) {
|
|
434
418
|
for (let offset = this.tokenIndex; offset < this.tokenCount; offset++) {
|
|
@@ -437,7 +421,7 @@ var TokenStream = class {
|
|
|
437
421
|
if (idx-- === 0) return tokenType$1;
|
|
438
422
|
}
|
|
439
423
|
}
|
|
440
|
-
return EOF;
|
|
424
|
+
return EOF$1;
|
|
441
425
|
}
|
|
442
426
|
lookupOffset(offset) {
|
|
443
427
|
offset += this.tokenIndex;
|
|
@@ -451,7 +435,7 @@ var TokenStream = class {
|
|
|
451
435
|
if (idx-- === 0) return offset - this.tokenIndex;
|
|
452
436
|
}
|
|
453
437
|
}
|
|
454
|
-
return EOF;
|
|
438
|
+
return EOF$1;
|
|
455
439
|
}
|
|
456
440
|
lookupValue(offset, referenceStr) {
|
|
457
441
|
offset += this.tokenIndex;
|
|
@@ -497,7 +481,7 @@ var TokenStream = class {
|
|
|
497
481
|
} else {
|
|
498
482
|
this.eof = true;
|
|
499
483
|
this.tokenIndex = this.tokenCount;
|
|
500
|
-
this.tokenType = EOF;
|
|
484
|
+
this.tokenType = EOF$1;
|
|
501
485
|
this.tokenStart = this.tokenEnd = this.source.length;
|
|
502
486
|
}
|
|
503
487
|
}
|
|
@@ -1386,7 +1370,7 @@ function createParser(config) {
|
|
|
1386
1370
|
|
|
1387
1371
|
//#endregion
|
|
1388
1372
|
//#region ../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/base64.js
|
|
1389
|
-
var require_base64 = /* @__PURE__ */
|
|
1373
|
+
var require_base64 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1390
1374
|
var intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
|
1391
1375
|
/**
|
|
1392
1376
|
* Encode an integer in the range of 0 to 63 to a single base 64 digit.
|
|
@@ -1417,11 +1401,11 @@ var require_base64 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/sour
|
|
|
1417
1401
|
if (charCode == slash) return 63;
|
|
1418
1402
|
return -1;
|
|
1419
1403
|
};
|
|
1420
|
-
})
|
|
1404
|
+
}));
|
|
1421
1405
|
|
|
1422
1406
|
//#endregion
|
|
1423
1407
|
//#region ../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/base64-vlq.js
|
|
1424
|
-
var require_base64_vlq = /* @__PURE__ */
|
|
1408
|
+
var require_base64_vlq = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1425
1409
|
var base64 = require_base64();
|
|
1426
1410
|
var VLQ_BASE_SHIFT = 5;
|
|
1427
1411
|
var VLQ_BASE = 1 << VLQ_BASE_SHIFT;
|
|
@@ -1483,11 +1467,11 @@ var require_base64_vlq = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/
|
|
|
1483
1467
|
aOutParam.value = fromVLQSigned(result);
|
|
1484
1468
|
aOutParam.rest = aIndex;
|
|
1485
1469
|
};
|
|
1486
|
-
})
|
|
1470
|
+
}));
|
|
1487
1471
|
|
|
1488
1472
|
//#endregion
|
|
1489
1473
|
//#region ../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/util.js
|
|
1490
|
-
var require_util = /* @__PURE__ */
|
|
1474
|
+
var require_util = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1491
1475
|
/**
|
|
1492
1476
|
* This is a helper function for getting values from parameter/options
|
|
1493
1477
|
* objects.
|
|
@@ -1566,7 +1550,7 @@ var require_util = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/source
|
|
|
1566
1550
|
*
|
|
1567
1551
|
* @param aPath The path or url to normalize.
|
|
1568
1552
|
*/
|
|
1569
|
-
var normalize = lruMemoize(function normalize
|
|
1553
|
+
var normalize = lruMemoize(function normalize(aPath) {
|
|
1570
1554
|
var path = aPath;
|
|
1571
1555
|
var url = urlParse(aPath);
|
|
1572
1556
|
if (url) {
|
|
@@ -1829,12 +1813,12 @@ var require_util = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/source
|
|
|
1829
1813
|
return normalize(sourceURL);
|
|
1830
1814
|
}
|
|
1831
1815
|
exports.computeSourceURL = computeSourceURL;
|
|
1832
|
-
})
|
|
1816
|
+
}));
|
|
1833
1817
|
|
|
1834
1818
|
//#endregion
|
|
1835
1819
|
//#region ../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/array-set.js
|
|
1836
|
-
var require_array_set = /* @__PURE__ */
|
|
1837
|
-
var util
|
|
1820
|
+
var require_array_set = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1821
|
+
var util = require_util();
|
|
1838
1822
|
var has = Object.prototype.hasOwnProperty;
|
|
1839
1823
|
var hasNativeMap = typeof Map !== "undefined";
|
|
1840
1824
|
/**
|
|
@@ -1843,15 +1827,15 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1843
1827
|
* element is O(1). Removing elements from the set is not supported. Only
|
|
1844
1828
|
* strings are supported for membership.
|
|
1845
1829
|
*/
|
|
1846
|
-
function ArraySet
|
|
1830
|
+
function ArraySet() {
|
|
1847
1831
|
this._array = [];
|
|
1848
1832
|
this._set = hasNativeMap ? /* @__PURE__ */ new Map() : Object.create(null);
|
|
1849
1833
|
}
|
|
1850
1834
|
/**
|
|
1851
1835
|
* Static method for creating ArraySet instances from an existing array.
|
|
1852
1836
|
*/
|
|
1853
|
-
ArraySet
|
|
1854
|
-
var set = new ArraySet
|
|
1837
|
+
ArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {
|
|
1838
|
+
var set = new ArraySet();
|
|
1855
1839
|
for (var i = 0, len = aArray.length; i < len; i++) set.add(aArray[i], aAllowDuplicates);
|
|
1856
1840
|
return set;
|
|
1857
1841
|
};
|
|
@@ -1861,7 +1845,7 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1861
1845
|
*
|
|
1862
1846
|
* @returns Number
|
|
1863
1847
|
*/
|
|
1864
|
-
ArraySet
|
|
1848
|
+
ArraySet.prototype.size = function ArraySet_size() {
|
|
1865
1849
|
return hasNativeMap ? this._set.size : Object.getOwnPropertyNames(this._set).length;
|
|
1866
1850
|
};
|
|
1867
1851
|
/**
|
|
@@ -1869,8 +1853,8 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1869
1853
|
*
|
|
1870
1854
|
* @param String aStr
|
|
1871
1855
|
*/
|
|
1872
|
-
ArraySet
|
|
1873
|
-
var sStr = hasNativeMap ? aStr : util
|
|
1856
|
+
ArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {
|
|
1857
|
+
var sStr = hasNativeMap ? aStr : util.toSetString(aStr);
|
|
1874
1858
|
var isDuplicate = hasNativeMap ? this.has(aStr) : has.call(this._set, sStr);
|
|
1875
1859
|
var idx = this._array.length;
|
|
1876
1860
|
if (!isDuplicate || aAllowDuplicates) this._array.push(aStr);
|
|
@@ -1882,10 +1866,10 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1882
1866
|
*
|
|
1883
1867
|
* @param String aStr
|
|
1884
1868
|
*/
|
|
1885
|
-
ArraySet
|
|
1869
|
+
ArraySet.prototype.has = function ArraySet_has(aStr) {
|
|
1886
1870
|
if (hasNativeMap) return this._set.has(aStr);
|
|
1887
1871
|
else {
|
|
1888
|
-
var sStr = util
|
|
1872
|
+
var sStr = util.toSetString(aStr);
|
|
1889
1873
|
return has.call(this._set, sStr);
|
|
1890
1874
|
}
|
|
1891
1875
|
};
|
|
@@ -1894,12 +1878,12 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1894
1878
|
*
|
|
1895
1879
|
* @param String aStr
|
|
1896
1880
|
*/
|
|
1897
|
-
ArraySet
|
|
1881
|
+
ArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {
|
|
1898
1882
|
if (hasNativeMap) {
|
|
1899
1883
|
var idx = this._set.get(aStr);
|
|
1900
1884
|
if (idx >= 0) return idx;
|
|
1901
1885
|
} else {
|
|
1902
|
-
var sStr = util
|
|
1886
|
+
var sStr = util.toSetString(aStr);
|
|
1903
1887
|
if (has.call(this._set, sStr)) return this._set[sStr];
|
|
1904
1888
|
}
|
|
1905
1889
|
throw new Error("\"" + aStr + "\" is not in the set.");
|
|
@@ -1909,7 +1893,7 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1909
1893
|
*
|
|
1910
1894
|
* @param Number aIdx
|
|
1911
1895
|
*/
|
|
1912
|
-
ArraySet
|
|
1896
|
+
ArraySet.prototype.at = function ArraySet_at(aIdx) {
|
|
1913
1897
|
if (aIdx >= 0 && aIdx < this._array.length) return this._array[aIdx];
|
|
1914
1898
|
throw new Error("No element indexed by " + aIdx);
|
|
1915
1899
|
};
|
|
@@ -1918,16 +1902,16 @@ var require_array_set = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/s
|
|
|
1918
1902
|
* indicated by indexOf). Note that this is a copy of the internal array used
|
|
1919
1903
|
* for storing the members so that no one can mess with internal state.
|
|
1920
1904
|
*/
|
|
1921
|
-
ArraySet
|
|
1905
|
+
ArraySet.prototype.toArray = function ArraySet_toArray() {
|
|
1922
1906
|
return this._array.slice();
|
|
1923
1907
|
};
|
|
1924
|
-
exports.ArraySet = ArraySet
|
|
1925
|
-
})
|
|
1908
|
+
exports.ArraySet = ArraySet;
|
|
1909
|
+
}));
|
|
1926
1910
|
|
|
1927
1911
|
//#endregion
|
|
1928
1912
|
//#region ../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/mapping-list.js
|
|
1929
|
-
var require_mapping_list = /* @__PURE__ */
|
|
1930
|
-
var util
|
|
1913
|
+
var require_mapping_list = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1914
|
+
var util = require_util();
|
|
1931
1915
|
/**
|
|
1932
1916
|
* Determine whether mappingB is after mappingA with respect to generated
|
|
1933
1917
|
* position.
|
|
@@ -1937,14 +1921,14 @@ var require_mapping_list = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnp
|
|
|
1937
1921
|
var lineB = mappingB.generatedLine;
|
|
1938
1922
|
var columnA = mappingA.generatedColumn;
|
|
1939
1923
|
var columnB = mappingB.generatedColumn;
|
|
1940
|
-
return lineB > lineA || lineB == lineA && columnB >= columnA || util
|
|
1924
|
+
return lineB > lineA || lineB == lineA && columnB >= columnA || util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;
|
|
1941
1925
|
}
|
|
1942
1926
|
/**
|
|
1943
1927
|
* A data structure to provide a sorted view of accumulated mappings in a
|
|
1944
1928
|
* performance conscious manner. It trades a neglibable overhead in general
|
|
1945
1929
|
* case for a large speedup in case of mappings being added in order.
|
|
1946
1930
|
*/
|
|
1947
|
-
function MappingList
|
|
1931
|
+
function MappingList() {
|
|
1948
1932
|
this._array = [];
|
|
1949
1933
|
this._sorted = true;
|
|
1950
1934
|
this._last = {
|
|
@@ -1958,7 +1942,7 @@ var require_mapping_list = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnp
|
|
|
1958
1942
|
*
|
|
1959
1943
|
* NOTE: The order of the mappings is NOT guaranteed.
|
|
1960
1944
|
*/
|
|
1961
|
-
MappingList
|
|
1945
|
+
MappingList.prototype.unsortedForEach = function MappingList_forEach(aCallback, aThisArg) {
|
|
1962
1946
|
this._array.forEach(aCallback, aThisArg);
|
|
1963
1947
|
};
|
|
1964
1948
|
/**
|
|
@@ -1966,7 +1950,7 @@ var require_mapping_list = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnp
|
|
|
1966
1950
|
*
|
|
1967
1951
|
* @param Object aMapping
|
|
1968
1952
|
*/
|
|
1969
|
-
MappingList
|
|
1953
|
+
MappingList.prototype.add = function MappingList_add(aMapping) {
|
|
1970
1954
|
if (generatedPositionAfter(this._last, aMapping)) {
|
|
1971
1955
|
this._last = aMapping;
|
|
1972
1956
|
this._array.push(aMapping);
|
|
@@ -1984,19 +1968,19 @@ var require_mapping_list = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnp
|
|
|
1984
1968
|
* an immutable borrow. If you want to take ownership, you must make your own
|
|
1985
1969
|
* copy.
|
|
1986
1970
|
*/
|
|
1987
|
-
MappingList
|
|
1971
|
+
MappingList.prototype.toArray = function MappingList_toArray() {
|
|
1988
1972
|
if (!this._sorted) {
|
|
1989
|
-
this._array.sort(util
|
|
1973
|
+
this._array.sort(util.compareByGeneratedPositionsInflated);
|
|
1990
1974
|
this._sorted = true;
|
|
1991
1975
|
}
|
|
1992
1976
|
return this._array;
|
|
1993
1977
|
};
|
|
1994
|
-
exports.MappingList = MappingList
|
|
1995
|
-
})
|
|
1978
|
+
exports.MappingList = MappingList;
|
|
1979
|
+
}));
|
|
1996
1980
|
|
|
1997
1981
|
//#endregion
|
|
1998
1982
|
//#region ../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-map-generator.js
|
|
1999
|
-
var require_source_map_generator = /* @__PURE__ */
|
|
1983
|
+
var require_source_map_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
2000
1984
|
var base64VLQ = require_base64_vlq();
|
|
2001
1985
|
var util = require_util();
|
|
2002
1986
|
var ArraySet = require_array_set().ArraySet;
|
|
@@ -2009,7 +1993,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2009
1993
|
* - file: The filename of the generated source.
|
|
2010
1994
|
* - sourceRoot: A root for all relative URLs in this source map.
|
|
2011
1995
|
*/
|
|
2012
|
-
function SourceMapGenerator
|
|
1996
|
+
function SourceMapGenerator(aArgs) {
|
|
2013
1997
|
if (!aArgs) aArgs = {};
|
|
2014
1998
|
this._file = util.getArg(aArgs, "file", null);
|
|
2015
1999
|
this._sourceRoot = util.getArg(aArgs, "sourceRoot", null);
|
|
@@ -2020,15 +2004,15 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2020
2004
|
this._mappings = new MappingList();
|
|
2021
2005
|
this._sourcesContents = null;
|
|
2022
2006
|
}
|
|
2023
|
-
SourceMapGenerator
|
|
2007
|
+
SourceMapGenerator.prototype._version = 3;
|
|
2024
2008
|
/**
|
|
2025
2009
|
* Creates a new SourceMapGenerator based on a SourceMapConsumer
|
|
2026
2010
|
*
|
|
2027
2011
|
* @param aSourceMapConsumer The SourceMap.
|
|
2028
2012
|
*/
|
|
2029
|
-
SourceMapGenerator
|
|
2013
|
+
SourceMapGenerator.fromSourceMap = function SourceMapGenerator_fromSourceMap(aSourceMapConsumer, generatorOps) {
|
|
2030
2014
|
var sourceRoot = aSourceMapConsumer.sourceRoot;
|
|
2031
|
-
var generator = new SourceMapGenerator
|
|
2015
|
+
var generator = new SourceMapGenerator(Object.assign(generatorOps || {}, {
|
|
2032
2016
|
file: aSourceMapConsumer.file,
|
|
2033
2017
|
sourceRoot
|
|
2034
2018
|
}));
|
|
@@ -2067,7 +2051,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2067
2051
|
* - source: The original source file (relative to the sourceRoot).
|
|
2068
2052
|
* - name: An optional original token name for this mapping.
|
|
2069
2053
|
*/
|
|
2070
|
-
SourceMapGenerator
|
|
2054
|
+
SourceMapGenerator.prototype.addMapping = function SourceMapGenerator_addMapping(aArgs) {
|
|
2071
2055
|
var generated = util.getArg(aArgs, "generated");
|
|
2072
2056
|
var original = util.getArg(aArgs, "original", null);
|
|
2073
2057
|
var source = util.getArg(aArgs, "source", null);
|
|
@@ -2095,7 +2079,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2095
2079
|
/**
|
|
2096
2080
|
* Set the source content for a source file.
|
|
2097
2081
|
*/
|
|
2098
|
-
SourceMapGenerator
|
|
2082
|
+
SourceMapGenerator.prototype.setSourceContent = function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {
|
|
2099
2083
|
var source = aSourceFile;
|
|
2100
2084
|
if (this._sourceRoot != null) source = util.relative(this._sourceRoot, source);
|
|
2101
2085
|
if (aSourceContent != null) {
|
|
@@ -2122,7 +2106,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2122
2106
|
* paths. If so, those relative source paths need to be rewritten
|
|
2123
2107
|
* relative to the SourceMapGenerator.
|
|
2124
2108
|
*/
|
|
2125
|
-
SourceMapGenerator
|
|
2109
|
+
SourceMapGenerator.prototype.applySourceMap = function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {
|
|
2126
2110
|
var sourceFile = aSourceFile;
|
|
2127
2111
|
if (aSourceFile == null) {
|
|
2128
2112
|
if (aSourceMapConsumer.file == null) throw new Error("SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map's \"file\" property. Both were omitted.");
|
|
@@ -2174,7 +2158,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2174
2158
|
* To maintain consistency, we validate that any new mapping being added falls
|
|
2175
2159
|
* in to one of these categories.
|
|
2176
2160
|
*/
|
|
2177
|
-
SourceMapGenerator
|
|
2161
|
+
SourceMapGenerator.prototype._validateMapping = function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource, aName) {
|
|
2178
2162
|
if (aOriginal && typeof aOriginal.line !== "number" && typeof aOriginal.column !== "number") {
|
|
2179
2163
|
var message = "original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.";
|
|
2180
2164
|
if (this._ignoreInvalidMapping) {
|
|
@@ -2201,7 +2185,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2201
2185
|
* Serialize the accumulated mappings in to the stream of base 64 VLQs
|
|
2202
2186
|
* specified by the source map format.
|
|
2203
2187
|
*/
|
|
2204
|
-
SourceMapGenerator
|
|
2188
|
+
SourceMapGenerator.prototype._serializeMappings = function SourceMapGenerator_serializeMappings() {
|
|
2205
2189
|
var previousGeneratedColumn = 0;
|
|
2206
2190
|
var previousGeneratedLine = 1;
|
|
2207
2191
|
var previousOriginalColumn = 0;
|
|
@@ -2247,7 +2231,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2247
2231
|
}
|
|
2248
2232
|
return result;
|
|
2249
2233
|
};
|
|
2250
|
-
SourceMapGenerator
|
|
2234
|
+
SourceMapGenerator.prototype._generateSourcesContent = function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {
|
|
2251
2235
|
return aSources.map(function(source) {
|
|
2252
2236
|
if (!this._sourcesContents) return null;
|
|
2253
2237
|
if (aSourceRoot != null) source = util.relative(aSourceRoot, source);
|
|
@@ -2258,7 +2242,7 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2258
2242
|
/**
|
|
2259
2243
|
* Externalize the source map.
|
|
2260
2244
|
*/
|
|
2261
|
-
SourceMapGenerator
|
|
2245
|
+
SourceMapGenerator.prototype.toJSON = function SourceMapGenerator_toJSON() {
|
|
2262
2246
|
var map = {
|
|
2263
2247
|
version: this._version,
|
|
2264
2248
|
sources: this._sources.toArray(),
|
|
@@ -2273,15 +2257,15 @@ var require_source_map_generator = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
2273
2257
|
/**
|
|
2274
2258
|
* Render the source map being generated to a string.
|
|
2275
2259
|
*/
|
|
2276
|
-
SourceMapGenerator
|
|
2260
|
+
SourceMapGenerator.prototype.toString = function SourceMapGenerator_toString() {
|
|
2277
2261
|
return JSON.stringify(this.toJSON());
|
|
2278
2262
|
};
|
|
2279
|
-
exports.SourceMapGenerator = SourceMapGenerator
|
|
2280
|
-
})
|
|
2263
|
+
exports.SourceMapGenerator = SourceMapGenerator;
|
|
2264
|
+
}));
|
|
2281
2265
|
|
|
2282
2266
|
//#endregion
|
|
2283
2267
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/generator/sourceMap.js
|
|
2284
|
-
var import_source_map_generator =
|
|
2268
|
+
var import_source_map_generator = require_source_map_generator();
|
|
2285
2269
|
const trackNodes = new Set([
|
|
2286
2270
|
"Atrule",
|
|
2287
2271
|
"Selector",
|
|
@@ -2354,7 +2338,7 @@ function generateSourceMap(handlers) {
|
|
|
2354
2338
|
|
|
2355
2339
|
//#endregion
|
|
2356
2340
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/generator/token-before.js
|
|
2357
|
-
var token_before_exports = /* @__PURE__ */
|
|
2341
|
+
var token_before_exports = /* @__PURE__ */ __exportAll({
|
|
2358
2342
|
safe: () => safe,
|
|
2359
2343
|
spec: () => spec
|
|
2360
2344
|
});
|
|
@@ -3401,7 +3385,7 @@ function createGenericTypes(units) {
|
|
|
3401
3385
|
|
|
3402
3386
|
//#endregion
|
|
3403
3387
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/lexer/units.js
|
|
3404
|
-
var units_exports = /* @__PURE__ */
|
|
3388
|
+
var units_exports = /* @__PURE__ */ __exportAll({
|
|
3405
3389
|
angle: () => angle,
|
|
3406
3390
|
decibel: () => decibel,
|
|
3407
3391
|
flex: () => flex,
|
|
@@ -4658,7 +4642,7 @@ function matchAsTree(tokens, matchGraph, syntaxes) {
|
|
|
4658
4642
|
|
|
4659
4643
|
//#endregion
|
|
4660
4644
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/lexer/trace.js
|
|
4661
|
-
var trace_exports = /* @__PURE__ */
|
|
4645
|
+
var trace_exports = /* @__PURE__ */ __exportAll({
|
|
4662
4646
|
getTrace: () => getTrace,
|
|
4663
4647
|
isKeyword: () => isKeyword,
|
|
4664
4648
|
isProperty: () => isProperty,
|
|
@@ -16014,10 +15998,10 @@ var data_default = {
|
|
|
16014
15998
|
|
|
16015
15999
|
//#endregion
|
|
16016
16000
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/AnPlusB.js
|
|
16017
|
-
var AnPlusB_exports = /* @__PURE__ */
|
|
16001
|
+
var AnPlusB_exports = /* @__PURE__ */ __exportAll({
|
|
16018
16002
|
generate: () => generate$49,
|
|
16019
16003
|
name: () => name$48,
|
|
16020
|
-
parse: () => parse$
|
|
16004
|
+
parse: () => parse$49,
|
|
16021
16005
|
structure: () => structure$48
|
|
16022
16006
|
});
|
|
16023
16007
|
const PLUSSIGN$5 = 43;
|
|
@@ -16079,7 +16063,7 @@ const structure$48 = {
|
|
|
16079
16063
|
a: [String, null],
|
|
16080
16064
|
b: [String, null]
|
|
16081
16065
|
};
|
|
16082
|
-
function parse$
|
|
16066
|
+
function parse$49() {
|
|
16083
16067
|
const start = this.tokenStart;
|
|
16084
16068
|
let a = null;
|
|
16085
16069
|
let b = null;
|
|
@@ -16179,10 +16163,10 @@ function generate$49(node) {
|
|
|
16179
16163
|
|
|
16180
16164
|
//#endregion
|
|
16181
16165
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Atrule.js
|
|
16182
|
-
var Atrule_exports = /* @__PURE__ */
|
|
16166
|
+
var Atrule_exports = /* @__PURE__ */ __exportAll({
|
|
16183
16167
|
generate: () => generate$48,
|
|
16184
16168
|
name: () => name$47,
|
|
16185
|
-
parse: () => parse$
|
|
16169
|
+
parse: () => parse$48,
|
|
16186
16170
|
structure: () => structure$47,
|
|
16187
16171
|
walkContext: () => walkContext$9
|
|
16188
16172
|
});
|
|
@@ -16207,7 +16191,7 @@ const structure$47 = {
|
|
|
16207
16191
|
],
|
|
16208
16192
|
block: ["Block", null]
|
|
16209
16193
|
};
|
|
16210
|
-
function parse$
|
|
16194
|
+
function parse$48(isDeclaration = false) {
|
|
16211
16195
|
const start = this.tokenStart;
|
|
16212
16196
|
let name$49;
|
|
16213
16197
|
let nameLowerCase;
|
|
@@ -16248,17 +16232,17 @@ function generate$48(node) {
|
|
|
16248
16232
|
|
|
16249
16233
|
//#endregion
|
|
16250
16234
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/AtrulePrelude.js
|
|
16251
|
-
var AtrulePrelude_exports = /* @__PURE__ */
|
|
16235
|
+
var AtrulePrelude_exports = /* @__PURE__ */ __exportAll({
|
|
16252
16236
|
generate: () => generate$47,
|
|
16253
16237
|
name: () => name$46,
|
|
16254
|
-
parse: () => parse$
|
|
16238
|
+
parse: () => parse$47,
|
|
16255
16239
|
structure: () => structure$46,
|
|
16256
16240
|
walkContext: () => walkContext$8
|
|
16257
16241
|
});
|
|
16258
16242
|
const name$46 = "AtrulePrelude";
|
|
16259
16243
|
const walkContext$8 = "atrulePrelude";
|
|
16260
16244
|
const structure$46 = { children: [[]] };
|
|
16261
|
-
function parse$
|
|
16245
|
+
function parse$47(name$49) {
|
|
16262
16246
|
let children = null;
|
|
16263
16247
|
if (name$49 !== null) name$49 = name$49.toLowerCase();
|
|
16264
16248
|
this.skipSC();
|
|
@@ -16278,10 +16262,10 @@ function generate$47(node) {
|
|
|
16278
16262
|
|
|
16279
16263
|
//#endregion
|
|
16280
16264
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/AttributeSelector.js
|
|
16281
|
-
var AttributeSelector_exports = /* @__PURE__ */
|
|
16265
|
+
var AttributeSelector_exports = /* @__PURE__ */ __exportAll({
|
|
16282
16266
|
generate: () => generate$46,
|
|
16283
16267
|
name: () => name$45,
|
|
16284
|
-
parse: () => parse$
|
|
16268
|
+
parse: () => parse$46,
|
|
16285
16269
|
structure: () => structure$45
|
|
16286
16270
|
});
|
|
16287
16271
|
const DOLLARSIGN$1 = 36;
|
|
@@ -16332,7 +16316,7 @@ const structure$45 = {
|
|
|
16332
16316
|
],
|
|
16333
16317
|
flags: [String, null]
|
|
16334
16318
|
};
|
|
16335
|
-
function parse$
|
|
16319
|
+
function parse$46() {
|
|
16336
16320
|
const start = this.tokenStart;
|
|
16337
16321
|
let name$49;
|
|
16338
16322
|
let matcher = null;
|
|
@@ -16377,10 +16361,10 @@ function generate$46(node) {
|
|
|
16377
16361
|
|
|
16378
16362
|
//#endregion
|
|
16379
16363
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Block.js
|
|
16380
|
-
var Block_exports = /* @__PURE__ */
|
|
16364
|
+
var Block_exports = /* @__PURE__ */ __exportAll({
|
|
16381
16365
|
generate: () => generate$45,
|
|
16382
16366
|
name: () => name$44,
|
|
16383
|
-
parse: () => parse$
|
|
16367
|
+
parse: () => parse$45,
|
|
16384
16368
|
structure: () => structure$44,
|
|
16385
16369
|
walkContext: () => walkContext$7
|
|
16386
16370
|
});
|
|
@@ -16407,7 +16391,7 @@ const structure$44 = { children: [[
|
|
|
16407
16391
|
"Rule",
|
|
16408
16392
|
"Declaration"
|
|
16409
16393
|
]] };
|
|
16410
|
-
function parse$
|
|
16394
|
+
function parse$45(isStyleBlock) {
|
|
16411
16395
|
const consumer = isStyleBlock ? consumeDeclaration : consumeRule;
|
|
16412
16396
|
const start = this.tokenStart;
|
|
16413
16397
|
let children = this.createList();
|
|
@@ -16441,15 +16425,15 @@ function generate$45(node) {
|
|
|
16441
16425
|
|
|
16442
16426
|
//#endregion
|
|
16443
16427
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Brackets.js
|
|
16444
|
-
var Brackets_exports = /* @__PURE__ */
|
|
16428
|
+
var Brackets_exports = /* @__PURE__ */ __exportAll({
|
|
16445
16429
|
generate: () => generate$44,
|
|
16446
16430
|
name: () => name$43,
|
|
16447
|
-
parse: () => parse$
|
|
16431
|
+
parse: () => parse$44,
|
|
16448
16432
|
structure: () => structure$43
|
|
16449
16433
|
});
|
|
16450
16434
|
const name$43 = "Brackets";
|
|
16451
16435
|
const structure$43 = { children: [[]] };
|
|
16452
|
-
function parse$
|
|
16436
|
+
function parse$44(readSequence$1, recognizer) {
|
|
16453
16437
|
const start = this.tokenStart;
|
|
16454
16438
|
let children = null;
|
|
16455
16439
|
this.eat(LeftSquareBracket);
|
|
@@ -16469,15 +16453,15 @@ function generate$44(node) {
|
|
|
16469
16453
|
|
|
16470
16454
|
//#endregion
|
|
16471
16455
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/CDC.js
|
|
16472
|
-
var CDC_exports = /* @__PURE__ */
|
|
16456
|
+
var CDC_exports = /* @__PURE__ */ __exportAll({
|
|
16473
16457
|
generate: () => generate$43,
|
|
16474
16458
|
name: () => name$42,
|
|
16475
|
-
parse: () => parse$
|
|
16459
|
+
parse: () => parse$43,
|
|
16476
16460
|
structure: () => structure$42
|
|
16477
16461
|
});
|
|
16478
16462
|
const name$42 = "CDC";
|
|
16479
16463
|
const structure$42 = [];
|
|
16480
|
-
function parse$
|
|
16464
|
+
function parse$43() {
|
|
16481
16465
|
const start = this.tokenStart;
|
|
16482
16466
|
this.eat(CDC);
|
|
16483
16467
|
return {
|
|
@@ -16491,15 +16475,15 @@ function generate$43() {
|
|
|
16491
16475
|
|
|
16492
16476
|
//#endregion
|
|
16493
16477
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/CDO.js
|
|
16494
|
-
var CDO_exports = /* @__PURE__ */
|
|
16478
|
+
var CDO_exports = /* @__PURE__ */ __exportAll({
|
|
16495
16479
|
generate: () => generate$42,
|
|
16496
16480
|
name: () => name$41,
|
|
16497
|
-
parse: () => parse$
|
|
16481
|
+
parse: () => parse$42,
|
|
16498
16482
|
structure: () => structure$41
|
|
16499
16483
|
});
|
|
16500
16484
|
const name$41 = "CDO";
|
|
16501
16485
|
const structure$41 = [];
|
|
16502
|
-
function parse$
|
|
16486
|
+
function parse$42() {
|
|
16503
16487
|
const start = this.tokenStart;
|
|
16504
16488
|
this.eat(CDO);
|
|
16505
16489
|
return {
|
|
@@ -16513,16 +16497,16 @@ function generate$42() {
|
|
|
16513
16497
|
|
|
16514
16498
|
//#endregion
|
|
16515
16499
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/ClassSelector.js
|
|
16516
|
-
var ClassSelector_exports = /* @__PURE__ */
|
|
16500
|
+
var ClassSelector_exports = /* @__PURE__ */ __exportAll({
|
|
16517
16501
|
generate: () => generate$41,
|
|
16518
16502
|
name: () => name$40,
|
|
16519
|
-
parse: () => parse$
|
|
16503
|
+
parse: () => parse$41,
|
|
16520
16504
|
structure: () => structure$40
|
|
16521
16505
|
});
|
|
16522
16506
|
const FULLSTOP$2 = 46;
|
|
16523
16507
|
const name$40 = "ClassSelector";
|
|
16524
16508
|
const structure$40 = { name: String };
|
|
16525
|
-
function parse$
|
|
16509
|
+
function parse$41() {
|
|
16526
16510
|
this.eatDelim(FULLSTOP$2);
|
|
16527
16511
|
return {
|
|
16528
16512
|
type: "ClassSelector",
|
|
@@ -16537,10 +16521,10 @@ function generate$41(node) {
|
|
|
16537
16521
|
|
|
16538
16522
|
//#endregion
|
|
16539
16523
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Combinator.js
|
|
16540
|
-
var Combinator_exports = /* @__PURE__ */
|
|
16524
|
+
var Combinator_exports = /* @__PURE__ */ __exportAll({
|
|
16541
16525
|
generate: () => generate$40,
|
|
16542
16526
|
name: () => name$39,
|
|
16543
|
-
parse: () => parse$
|
|
16527
|
+
parse: () => parse$40,
|
|
16544
16528
|
structure: () => structure$39
|
|
16545
16529
|
});
|
|
16546
16530
|
const PLUSSIGN$4 = 43;
|
|
@@ -16549,7 +16533,7 @@ const GREATERTHANSIGN$2 = 62;
|
|
|
16549
16533
|
const TILDE$1 = 126;
|
|
16550
16534
|
const name$39 = "Combinator";
|
|
16551
16535
|
const structure$39 = { name: String };
|
|
16552
|
-
function parse$
|
|
16536
|
+
function parse$40() {
|
|
16553
16537
|
const start = this.tokenStart;
|
|
16554
16538
|
let name$49;
|
|
16555
16539
|
switch (this.tokenType) {
|
|
@@ -16585,17 +16569,17 @@ function generate$40(node) {
|
|
|
16585
16569
|
|
|
16586
16570
|
//#endregion
|
|
16587
16571
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Comment.js
|
|
16588
|
-
var Comment_exports = /* @__PURE__ */
|
|
16572
|
+
var Comment_exports = /* @__PURE__ */ __exportAll({
|
|
16589
16573
|
generate: () => generate$39,
|
|
16590
16574
|
name: () => name$38,
|
|
16591
|
-
parse: () => parse$
|
|
16575
|
+
parse: () => parse$39,
|
|
16592
16576
|
structure: () => structure$38
|
|
16593
16577
|
});
|
|
16594
16578
|
const ASTERISK$4 = 42;
|
|
16595
16579
|
const SOLIDUS$6 = 47;
|
|
16596
16580
|
const name$38 = "Comment";
|
|
16597
16581
|
const structure$38 = { value: String };
|
|
16598
|
-
function parse$
|
|
16582
|
+
function parse$39() {
|
|
16599
16583
|
const start = this.tokenStart;
|
|
16600
16584
|
let end = this.tokenEnd;
|
|
16601
16585
|
this.eat(Comment);
|
|
@@ -16612,16 +16596,16 @@ function generate$39(node) {
|
|
|
16612
16596
|
|
|
16613
16597
|
//#endregion
|
|
16614
16598
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Condition.js
|
|
16615
|
-
var Condition_exports = /* @__PURE__ */
|
|
16599
|
+
var Condition_exports = /* @__PURE__ */ __exportAll({
|
|
16616
16600
|
generate: () => generate$38,
|
|
16617
16601
|
name: () => name$37,
|
|
16618
|
-
parse: () => parse$
|
|
16602
|
+
parse: () => parse$38,
|
|
16619
16603
|
structure: () => structure$37
|
|
16620
16604
|
});
|
|
16621
16605
|
const likelyFeatureToken = new Set([
|
|
16622
16606
|
Colon,
|
|
16623
16607
|
RightParenthesis,
|
|
16624
|
-
EOF
|
|
16608
|
+
EOF$1
|
|
16625
16609
|
]);
|
|
16626
16610
|
const name$37 = "Condition";
|
|
16627
16611
|
const structure$37 = {
|
|
@@ -16645,7 +16629,7 @@ const parentheses = {
|
|
|
16645
16629
|
return this.SupportsDeclaration();
|
|
16646
16630
|
}
|
|
16647
16631
|
};
|
|
16648
|
-
function parse$
|
|
16632
|
+
function parse$38(kind = "media") {
|
|
16649
16633
|
const children = this.createList();
|
|
16650
16634
|
scan: while (!this.eof) switch (this.tokenType) {
|
|
16651
16635
|
case Comment:
|
|
@@ -16696,10 +16680,10 @@ function generate$38(node) {
|
|
|
16696
16680
|
|
|
16697
16681
|
//#endregion
|
|
16698
16682
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Declaration.js
|
|
16699
|
-
var Declaration_exports = /* @__PURE__ */
|
|
16683
|
+
var Declaration_exports = /* @__PURE__ */ __exportAll({
|
|
16700
16684
|
generate: () => generate$37,
|
|
16701
16685
|
name: () => name$36,
|
|
16702
|
-
parse: () => parse$
|
|
16686
|
+
parse: () => parse$37,
|
|
16703
16687
|
structure: () => structure$36,
|
|
16704
16688
|
walkContext: () => walkContext$6
|
|
16705
16689
|
});
|
|
@@ -16729,7 +16713,7 @@ const structure$36 = {
|
|
|
16729
16713
|
property: String,
|
|
16730
16714
|
value: ["Value", "Raw"]
|
|
16731
16715
|
};
|
|
16732
|
-
function parse$
|
|
16716
|
+
function parse$37() {
|
|
16733
16717
|
const start = this.tokenStart;
|
|
16734
16718
|
const startToken = this.tokenIndex;
|
|
16735
16719
|
const property$1 = readProperty.call(this);
|
|
@@ -16804,10 +16788,10 @@ function getImportant() {
|
|
|
16804
16788
|
|
|
16805
16789
|
//#endregion
|
|
16806
16790
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/DeclarationList.js
|
|
16807
|
-
var DeclarationList_exports = /* @__PURE__ */
|
|
16791
|
+
var DeclarationList_exports = /* @__PURE__ */ __exportAll({
|
|
16808
16792
|
generate: () => generate$36,
|
|
16809
16793
|
name: () => name$35,
|
|
16810
|
-
parse: () => parse$
|
|
16794
|
+
parse: () => parse$36,
|
|
16811
16795
|
structure: () => structure$35
|
|
16812
16796
|
});
|
|
16813
16797
|
const AMPERSAND$2 = 38;
|
|
@@ -16820,7 +16804,7 @@ const structure$35 = { children: [[
|
|
|
16820
16804
|
"Atrule",
|
|
16821
16805
|
"Rule"
|
|
16822
16806
|
]] };
|
|
16823
|
-
function parse$
|
|
16807
|
+
function parse$36() {
|
|
16824
16808
|
const children = this.createList();
|
|
16825
16809
|
scan: while (!this.eof) switch (this.tokenType) {
|
|
16826
16810
|
case WhiteSpace:
|
|
@@ -16848,10 +16832,10 @@ function generate$36(node) {
|
|
|
16848
16832
|
|
|
16849
16833
|
//#endregion
|
|
16850
16834
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Dimension.js
|
|
16851
|
-
var Dimension_exports = /* @__PURE__ */
|
|
16835
|
+
var Dimension_exports = /* @__PURE__ */ __exportAll({
|
|
16852
16836
|
generate: () => generate$35,
|
|
16853
16837
|
name: () => name$34,
|
|
16854
|
-
parse: () => parse$
|
|
16838
|
+
parse: () => parse$35,
|
|
16855
16839
|
structure: () => structure$34
|
|
16856
16840
|
});
|
|
16857
16841
|
const name$34 = "Dimension";
|
|
@@ -16859,7 +16843,7 @@ const structure$34 = {
|
|
|
16859
16843
|
value: String,
|
|
16860
16844
|
unit: String
|
|
16861
16845
|
};
|
|
16862
|
-
function parse$
|
|
16846
|
+
function parse$35() {
|
|
16863
16847
|
const start = this.tokenStart;
|
|
16864
16848
|
const value = this.consumeNumber(Dimension);
|
|
16865
16849
|
return {
|
|
@@ -16875,10 +16859,10 @@ function generate$35(node) {
|
|
|
16875
16859
|
|
|
16876
16860
|
//#endregion
|
|
16877
16861
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Feature.js
|
|
16878
|
-
var Feature_exports = /* @__PURE__ */
|
|
16862
|
+
var Feature_exports = /* @__PURE__ */ __exportAll({
|
|
16879
16863
|
generate: () => generate$34,
|
|
16880
16864
|
name: () => name$33,
|
|
16881
|
-
parse: () => parse$
|
|
16865
|
+
parse: () => parse$34,
|
|
16882
16866
|
structure: () => structure$33
|
|
16883
16867
|
});
|
|
16884
16868
|
const SOLIDUS$4 = 47;
|
|
@@ -16895,7 +16879,7 @@ const structure$33 = {
|
|
|
16895
16879
|
null
|
|
16896
16880
|
]
|
|
16897
16881
|
};
|
|
16898
|
-
function parse$
|
|
16882
|
+
function parse$34(kind) {
|
|
16899
16883
|
const start = this.tokenStart;
|
|
16900
16884
|
let name$49;
|
|
16901
16885
|
let value = null;
|
|
@@ -16952,10 +16936,10 @@ function generate$34(node) {
|
|
|
16952
16936
|
|
|
16953
16937
|
//#endregion
|
|
16954
16938
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/FeatureFunction.js
|
|
16955
|
-
var FeatureFunction_exports = /* @__PURE__ */
|
|
16939
|
+
var FeatureFunction_exports = /* @__PURE__ */ __exportAll({
|
|
16956
16940
|
generate: () => generate$33,
|
|
16957
16941
|
name: () => name$32,
|
|
16958
|
-
parse: () => parse$
|
|
16942
|
+
parse: () => parse$33,
|
|
16959
16943
|
structure: () => structure$32
|
|
16960
16944
|
});
|
|
16961
16945
|
const name$32 = "FeatureFunction";
|
|
@@ -16969,7 +16953,7 @@ function getFeatureParser(kind, name$49) {
|
|
|
16969
16953
|
if (typeof parser !== "function") this.error(`Unknown feature ${name$49}()`);
|
|
16970
16954
|
return parser;
|
|
16971
16955
|
}
|
|
16972
|
-
function parse$
|
|
16956
|
+
function parse$33(kind = "unknown") {
|
|
16973
16957
|
const start = this.tokenStart;
|
|
16974
16958
|
const functionName = this.consumeFunctionName();
|
|
16975
16959
|
const valueParser = getFeatureParser.call(this, kind, functionName.toLowerCase());
|
|
@@ -16997,10 +16981,10 @@ function generate$33(node) {
|
|
|
16997
16981
|
|
|
16998
16982
|
//#endregion
|
|
16999
16983
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/FeatureRange.js
|
|
17000
|
-
var FeatureRange_exports = /* @__PURE__ */
|
|
16984
|
+
var FeatureRange_exports = /* @__PURE__ */ __exportAll({
|
|
17001
16985
|
generate: () => generate$32,
|
|
17002
16986
|
name: () => name$31,
|
|
17003
|
-
parse: () => parse$
|
|
16987
|
+
parse: () => parse$32,
|
|
17004
16988
|
structure: () => structure$31
|
|
17005
16989
|
});
|
|
17006
16990
|
const SOLIDUS$3 = 47;
|
|
@@ -17067,7 +17051,7 @@ function readComparison(expectColon) {
|
|
|
17067
17051
|
if (this.isDelim(EQUALSSIGN)) return "=";
|
|
17068
17052
|
this.error(`Expected ${expectColon ? "\":\", " : ""}"<", ">", "=" or ")"`);
|
|
17069
17053
|
}
|
|
17070
|
-
function parse$
|
|
17054
|
+
function parse$32(kind = "unknown") {
|
|
17071
17055
|
const start = this.tokenStart;
|
|
17072
17056
|
this.skipSC();
|
|
17073
17057
|
this.eat(LeftParenthesis);
|
|
@@ -17107,10 +17091,10 @@ function generate$32(node) {
|
|
|
17107
17091
|
|
|
17108
17092
|
//#endregion
|
|
17109
17093
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Function.js
|
|
17110
|
-
var Function_exports = /* @__PURE__ */
|
|
17094
|
+
var Function_exports = /* @__PURE__ */ __exportAll({
|
|
17111
17095
|
generate: () => generate$31,
|
|
17112
17096
|
name: () => name$30,
|
|
17113
|
-
parse: () => parse$
|
|
17097
|
+
parse: () => parse$31,
|
|
17114
17098
|
structure: () => structure$30,
|
|
17115
17099
|
walkContext: () => walkContext$5
|
|
17116
17100
|
});
|
|
@@ -17120,7 +17104,7 @@ const structure$30 = {
|
|
|
17120
17104
|
name: String,
|
|
17121
17105
|
children: [[]]
|
|
17122
17106
|
};
|
|
17123
|
-
function parse$
|
|
17107
|
+
function parse$31(readSequence$1, recognizer) {
|
|
17124
17108
|
const start = this.tokenStart;
|
|
17125
17109
|
const name$49 = this.consumeFunctionName();
|
|
17126
17110
|
const nameLowerCase = name$49.toLowerCase();
|
|
@@ -17142,10 +17126,10 @@ function generate$31(node) {
|
|
|
17142
17126
|
|
|
17143
17127
|
//#endregion
|
|
17144
17128
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/GeneralEnclosed.js
|
|
17145
|
-
var GeneralEnclosed_exports = /* @__PURE__ */
|
|
17129
|
+
var GeneralEnclosed_exports = /* @__PURE__ */ __exportAll({
|
|
17146
17130
|
generate: () => generate$30,
|
|
17147
17131
|
name: () => name$29,
|
|
17148
|
-
parse: () => parse$
|
|
17132
|
+
parse: () => parse$30,
|
|
17149
17133
|
structure: () => structure$29
|
|
17150
17134
|
});
|
|
17151
17135
|
const name$29 = "GeneralEnclosed";
|
|
@@ -17154,7 +17138,7 @@ const structure$29 = {
|
|
|
17154
17138
|
function: [String, null],
|
|
17155
17139
|
children: [[]]
|
|
17156
17140
|
};
|
|
17157
|
-
function parse$
|
|
17141
|
+
function parse$30(kind) {
|
|
17158
17142
|
const start = this.tokenStart;
|
|
17159
17143
|
let functionName = null;
|
|
17160
17144
|
if (this.tokenType === Function) functionName = this.consumeFunctionName();
|
|
@@ -17183,17 +17167,17 @@ function generate$30(node) {
|
|
|
17183
17167
|
|
|
17184
17168
|
//#endregion
|
|
17185
17169
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Hash.js
|
|
17186
|
-
var Hash_exports = /* @__PURE__ */
|
|
17170
|
+
var Hash_exports = /* @__PURE__ */ __exportAll({
|
|
17187
17171
|
generate: () => generate$29,
|
|
17188
17172
|
name: () => name$28,
|
|
17189
|
-
parse: () => parse$
|
|
17173
|
+
parse: () => parse$29,
|
|
17190
17174
|
structure: () => structure$28,
|
|
17191
17175
|
xxx: () => xxx
|
|
17192
17176
|
});
|
|
17193
17177
|
const xxx = "XXX";
|
|
17194
17178
|
const name$28 = "Hash";
|
|
17195
17179
|
const structure$28 = { value: String };
|
|
17196
|
-
function parse$
|
|
17180
|
+
function parse$29() {
|
|
17197
17181
|
const start = this.tokenStart;
|
|
17198
17182
|
this.eat(Hash);
|
|
17199
17183
|
return {
|
|
@@ -17208,15 +17192,15 @@ function generate$29(node) {
|
|
|
17208
17192
|
|
|
17209
17193
|
//#endregion
|
|
17210
17194
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Identifier.js
|
|
17211
|
-
var Identifier_exports = /* @__PURE__ */
|
|
17195
|
+
var Identifier_exports = /* @__PURE__ */ __exportAll({
|
|
17212
17196
|
generate: () => generate$28,
|
|
17213
17197
|
name: () => name$27,
|
|
17214
|
-
parse: () => parse$
|
|
17198
|
+
parse: () => parse$28,
|
|
17215
17199
|
structure: () => structure$27
|
|
17216
17200
|
});
|
|
17217
17201
|
const name$27 = "Identifier";
|
|
17218
17202
|
const structure$27 = { name: String };
|
|
17219
|
-
function parse$
|
|
17203
|
+
function parse$28() {
|
|
17220
17204
|
return {
|
|
17221
17205
|
type: "Identifier",
|
|
17222
17206
|
loc: this.getLocation(this.tokenStart, this.tokenEnd),
|
|
@@ -17229,15 +17213,15 @@ function generate$28(node) {
|
|
|
17229
17213
|
|
|
17230
17214
|
//#endregion
|
|
17231
17215
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/IdSelector.js
|
|
17232
|
-
var IdSelector_exports = /* @__PURE__ */
|
|
17216
|
+
var IdSelector_exports = /* @__PURE__ */ __exportAll({
|
|
17233
17217
|
generate: () => generate$27,
|
|
17234
17218
|
name: () => name$26,
|
|
17235
|
-
parse: () => parse$
|
|
17219
|
+
parse: () => parse$27,
|
|
17236
17220
|
structure: () => structure$26
|
|
17237
17221
|
});
|
|
17238
17222
|
const name$26 = "IdSelector";
|
|
17239
17223
|
const structure$26 = { name: String };
|
|
17240
|
-
function parse$
|
|
17224
|
+
function parse$27() {
|
|
17241
17225
|
const start = this.tokenStart;
|
|
17242
17226
|
this.eat(Hash);
|
|
17243
17227
|
return {
|
|
@@ -17252,16 +17236,16 @@ function generate$27(node) {
|
|
|
17252
17236
|
|
|
17253
17237
|
//#endregion
|
|
17254
17238
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Layer.js
|
|
17255
|
-
var Layer_exports = /* @__PURE__ */
|
|
17239
|
+
var Layer_exports = /* @__PURE__ */ __exportAll({
|
|
17256
17240
|
generate: () => generate$26,
|
|
17257
17241
|
name: () => name$25,
|
|
17258
|
-
parse: () => parse$
|
|
17242
|
+
parse: () => parse$26,
|
|
17259
17243
|
structure: () => structure$25
|
|
17260
17244
|
});
|
|
17261
17245
|
const FULLSTOP$1 = 46;
|
|
17262
17246
|
const name$25 = "Layer";
|
|
17263
17247
|
const structure$25 = { name: String };
|
|
17264
|
-
function parse$
|
|
17248
|
+
function parse$26() {
|
|
17265
17249
|
let tokenStart = this.tokenStart;
|
|
17266
17250
|
let name$49 = this.consume(Ident);
|
|
17267
17251
|
while (this.isDelim(FULLSTOP$1)) {
|
|
@@ -17280,7 +17264,7 @@ function generate$26(node) {
|
|
|
17280
17264
|
|
|
17281
17265
|
//#endregion
|
|
17282
17266
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/LayerList.js
|
|
17283
|
-
var LayerList_exports = /* @__PURE__ */
|
|
17267
|
+
var LayerList_exports = /* @__PURE__ */ __exportAll({
|
|
17284
17268
|
generate: () => generate$25,
|
|
17285
17269
|
name: () => name$24,
|
|
17286
17270
|
parse: () => parse$25,
|
|
@@ -17310,10 +17294,10 @@ function generate$25(node) {
|
|
|
17310
17294
|
|
|
17311
17295
|
//#endregion
|
|
17312
17296
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/MediaQuery.js
|
|
17313
|
-
var MediaQuery_exports = /* @__PURE__ */
|
|
17297
|
+
var MediaQuery_exports = /* @__PURE__ */ __exportAll({
|
|
17314
17298
|
generate: () => generate$24,
|
|
17315
17299
|
name: () => name$23,
|
|
17316
|
-
parse: () => parse$
|
|
17300
|
+
parse: () => parse$24,
|
|
17317
17301
|
structure: () => structure$23
|
|
17318
17302
|
});
|
|
17319
17303
|
const name$23 = "MediaQuery";
|
|
@@ -17322,7 +17306,7 @@ const structure$23 = {
|
|
|
17322
17306
|
mediaType: [String, null],
|
|
17323
17307
|
condition: ["Condition", null]
|
|
17324
17308
|
};
|
|
17325
|
-
function parse$
|
|
17309
|
+
function parse$24() {
|
|
17326
17310
|
const start = this.tokenStart;
|
|
17327
17311
|
let modifier = null;
|
|
17328
17312
|
let mediaType = null;
|
|
@@ -17345,7 +17329,7 @@ function parse$26() {
|
|
|
17345
17329
|
case LeftCurlyBracket:
|
|
17346
17330
|
case Semicolon:
|
|
17347
17331
|
case Comma:
|
|
17348
|
-
case EOF: break;
|
|
17332
|
+
case EOF$1: break;
|
|
17349
17333
|
default: this.error("Identifier or parenthesis is expected");
|
|
17350
17334
|
}
|
|
17351
17335
|
} else switch (this.tokenType) {
|
|
@@ -17356,7 +17340,7 @@ function parse$26() {
|
|
|
17356
17340
|
break;
|
|
17357
17341
|
case LeftCurlyBracket:
|
|
17358
17342
|
case Semicolon:
|
|
17359
|
-
case EOF: break;
|
|
17343
|
+
case EOF$1: break;
|
|
17360
17344
|
default: this.error("Identifier or parenthesis is expected");
|
|
17361
17345
|
}
|
|
17362
17346
|
return {
|
|
@@ -17380,15 +17364,15 @@ function generate$24(node) {
|
|
|
17380
17364
|
|
|
17381
17365
|
//#endregion
|
|
17382
17366
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/MediaQueryList.js
|
|
17383
|
-
var MediaQueryList_exports = /* @__PURE__ */
|
|
17367
|
+
var MediaQueryList_exports = /* @__PURE__ */ __exportAll({
|
|
17384
17368
|
generate: () => generate$23,
|
|
17385
17369
|
name: () => name$22,
|
|
17386
|
-
parse: () => parse$
|
|
17370
|
+
parse: () => parse$23,
|
|
17387
17371
|
structure: () => structure$22
|
|
17388
17372
|
});
|
|
17389
17373
|
const name$22 = "MediaQueryList";
|
|
17390
17374
|
const structure$22 = { children: [["MediaQuery"]] };
|
|
17391
|
-
function parse$
|
|
17375
|
+
function parse$23() {
|
|
17392
17376
|
const children = this.createList();
|
|
17393
17377
|
this.skipSC();
|
|
17394
17378
|
while (!this.eof) {
|
|
@@ -17408,16 +17392,16 @@ function generate$23(node) {
|
|
|
17408
17392
|
|
|
17409
17393
|
//#endregion
|
|
17410
17394
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/NestingSelector.js
|
|
17411
|
-
var NestingSelector_exports = /* @__PURE__ */
|
|
17395
|
+
var NestingSelector_exports = /* @__PURE__ */ __exportAll({
|
|
17412
17396
|
generate: () => generate$22,
|
|
17413
17397
|
name: () => name$21,
|
|
17414
|
-
parse: () => parse$
|
|
17398
|
+
parse: () => parse$22,
|
|
17415
17399
|
structure: () => structure$21
|
|
17416
17400
|
});
|
|
17417
17401
|
const AMPERSAND$1 = 38;
|
|
17418
17402
|
const name$21 = "NestingSelector";
|
|
17419
17403
|
const structure$21 = {};
|
|
17420
|
-
function parse$
|
|
17404
|
+
function parse$22() {
|
|
17421
17405
|
const start = this.tokenStart;
|
|
17422
17406
|
this.eatDelim(AMPERSAND$1);
|
|
17423
17407
|
return {
|
|
@@ -17431,10 +17415,10 @@ function generate$22() {
|
|
|
17431
17415
|
|
|
17432
17416
|
//#endregion
|
|
17433
17417
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Nth.js
|
|
17434
|
-
var Nth_exports = /* @__PURE__ */
|
|
17418
|
+
var Nth_exports = /* @__PURE__ */ __exportAll({
|
|
17435
17419
|
generate: () => generate$21,
|
|
17436
17420
|
name: () => name$20,
|
|
17437
|
-
parse: () => parse$
|
|
17421
|
+
parse: () => parse$21,
|
|
17438
17422
|
structure: () => structure$20
|
|
17439
17423
|
});
|
|
17440
17424
|
const name$20 = "Nth";
|
|
@@ -17442,7 +17426,7 @@ const structure$20 = {
|
|
|
17442
17426
|
nth: ["AnPlusB", "Identifier"],
|
|
17443
17427
|
selector: ["SelectorList", null]
|
|
17444
17428
|
};
|
|
17445
|
-
function parse$
|
|
17429
|
+
function parse$21() {
|
|
17446
17430
|
this.skipSC();
|
|
17447
17431
|
const start = this.tokenStart;
|
|
17448
17432
|
let end = start;
|
|
@@ -17474,15 +17458,15 @@ function generate$21(node) {
|
|
|
17474
17458
|
|
|
17475
17459
|
//#endregion
|
|
17476
17460
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Number.js
|
|
17477
|
-
var Number_exports = /* @__PURE__ */
|
|
17461
|
+
var Number_exports = /* @__PURE__ */ __exportAll({
|
|
17478
17462
|
generate: () => generate$20,
|
|
17479
17463
|
name: () => name$19,
|
|
17480
|
-
parse: () => parse$
|
|
17464
|
+
parse: () => parse$20,
|
|
17481
17465
|
structure: () => structure$19
|
|
17482
17466
|
});
|
|
17483
17467
|
const name$19 = "Number";
|
|
17484
17468
|
const structure$19 = { value: String };
|
|
17485
|
-
function parse$
|
|
17469
|
+
function parse$20() {
|
|
17486
17470
|
return {
|
|
17487
17471
|
type: "Number",
|
|
17488
17472
|
loc: this.getLocation(this.tokenStart, this.tokenEnd),
|
|
@@ -17495,15 +17479,15 @@ function generate$20(node) {
|
|
|
17495
17479
|
|
|
17496
17480
|
//#endregion
|
|
17497
17481
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Operator.js
|
|
17498
|
-
var Operator_exports = /* @__PURE__ */
|
|
17482
|
+
var Operator_exports = /* @__PURE__ */ __exportAll({
|
|
17499
17483
|
generate: () => generate$19,
|
|
17500
17484
|
name: () => name$18,
|
|
17501
|
-
parse: () => parse$
|
|
17485
|
+
parse: () => parse$19,
|
|
17502
17486
|
structure: () => structure$18
|
|
17503
17487
|
});
|
|
17504
17488
|
const name$18 = "Operator";
|
|
17505
17489
|
const structure$18 = { value: String };
|
|
17506
|
-
function parse$
|
|
17490
|
+
function parse$19() {
|
|
17507
17491
|
const start = this.tokenStart;
|
|
17508
17492
|
this.next();
|
|
17509
17493
|
return {
|
|
@@ -17518,15 +17502,15 @@ function generate$19(node) {
|
|
|
17518
17502
|
|
|
17519
17503
|
//#endregion
|
|
17520
17504
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Parentheses.js
|
|
17521
|
-
var Parentheses_exports = /* @__PURE__ */
|
|
17505
|
+
var Parentheses_exports = /* @__PURE__ */ __exportAll({
|
|
17522
17506
|
generate: () => generate$18,
|
|
17523
17507
|
name: () => name$17,
|
|
17524
|
-
parse: () => parse$
|
|
17508
|
+
parse: () => parse$18,
|
|
17525
17509
|
structure: () => structure$17
|
|
17526
17510
|
});
|
|
17527
17511
|
const name$17 = "Parentheses";
|
|
17528
17512
|
const structure$17 = { children: [[]] };
|
|
17529
|
-
function parse$
|
|
17513
|
+
function parse$18(readSequence$1, recognizer) {
|
|
17530
17514
|
const start = this.tokenStart;
|
|
17531
17515
|
let children = null;
|
|
17532
17516
|
this.eat(LeftParenthesis);
|
|
@@ -17546,15 +17530,15 @@ function generate$18(node) {
|
|
|
17546
17530
|
|
|
17547
17531
|
//#endregion
|
|
17548
17532
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Percentage.js
|
|
17549
|
-
var Percentage_exports = /* @__PURE__ */
|
|
17533
|
+
var Percentage_exports = /* @__PURE__ */ __exportAll({
|
|
17550
17534
|
generate: () => generate$17,
|
|
17551
17535
|
name: () => name$16,
|
|
17552
|
-
parse: () => parse$
|
|
17536
|
+
parse: () => parse$17,
|
|
17553
17537
|
structure: () => structure$16
|
|
17554
17538
|
});
|
|
17555
17539
|
const name$16 = "Percentage";
|
|
17556
17540
|
const structure$16 = { value: String };
|
|
17557
|
-
function parse$
|
|
17541
|
+
function parse$17() {
|
|
17558
17542
|
return {
|
|
17559
17543
|
type: "Percentage",
|
|
17560
17544
|
loc: this.getLocation(this.tokenStart, this.tokenEnd),
|
|
@@ -17567,10 +17551,10 @@ function generate$17(node) {
|
|
|
17567
17551
|
|
|
17568
17552
|
//#endregion
|
|
17569
17553
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/PseudoClassSelector.js
|
|
17570
|
-
var PseudoClassSelector_exports = /* @__PURE__ */
|
|
17554
|
+
var PseudoClassSelector_exports = /* @__PURE__ */ __exportAll({
|
|
17571
17555
|
generate: () => generate$16,
|
|
17572
17556
|
name: () => name$15,
|
|
17573
|
-
parse: () => parse$
|
|
17557
|
+
parse: () => parse$16,
|
|
17574
17558
|
structure: () => structure$15,
|
|
17575
17559
|
walkContext: () => walkContext$4
|
|
17576
17560
|
});
|
|
@@ -17580,7 +17564,7 @@ const structure$15 = {
|
|
|
17580
17564
|
name: String,
|
|
17581
17565
|
children: [["Raw"], null]
|
|
17582
17566
|
};
|
|
17583
|
-
function parse$
|
|
17567
|
+
function parse$16() {
|
|
17584
17568
|
const start = this.tokenStart;
|
|
17585
17569
|
let children = null;
|
|
17586
17570
|
let name$49;
|
|
@@ -17619,10 +17603,10 @@ function generate$16(node) {
|
|
|
17619
17603
|
|
|
17620
17604
|
//#endregion
|
|
17621
17605
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/PseudoElementSelector.js
|
|
17622
|
-
var PseudoElementSelector_exports = /* @__PURE__ */
|
|
17606
|
+
var PseudoElementSelector_exports = /* @__PURE__ */ __exportAll({
|
|
17623
17607
|
generate: () => generate$15,
|
|
17624
17608
|
name: () => name$14,
|
|
17625
|
-
parse: () => parse$
|
|
17609
|
+
parse: () => parse$15,
|
|
17626
17610
|
structure: () => structure$14,
|
|
17627
17611
|
walkContext: () => walkContext$3
|
|
17628
17612
|
});
|
|
@@ -17632,7 +17616,7 @@ const structure$14 = {
|
|
|
17632
17616
|
name: String,
|
|
17633
17617
|
children: [["Raw"], null]
|
|
17634
17618
|
};
|
|
17635
|
-
function parse$
|
|
17619
|
+
function parse$15() {
|
|
17636
17620
|
const start = this.tokenStart;
|
|
17637
17621
|
let children = null;
|
|
17638
17622
|
let name$49;
|
|
@@ -17673,10 +17657,10 @@ function generate$15(node) {
|
|
|
17673
17657
|
|
|
17674
17658
|
//#endregion
|
|
17675
17659
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Ratio.js
|
|
17676
|
-
var Ratio_exports = /* @__PURE__ */
|
|
17660
|
+
var Ratio_exports = /* @__PURE__ */ __exportAll({
|
|
17677
17661
|
generate: () => generate$14,
|
|
17678
17662
|
name: () => name$13,
|
|
17679
|
-
parse: () => parse$
|
|
17663
|
+
parse: () => parse$14,
|
|
17680
17664
|
structure: () => structure$13
|
|
17681
17665
|
});
|
|
17682
17666
|
const SOLIDUS$2 = 47;
|
|
@@ -17697,7 +17681,7 @@ const structure$13 = {
|
|
|
17697
17681
|
null
|
|
17698
17682
|
]
|
|
17699
17683
|
};
|
|
17700
|
-
function parse$
|
|
17684
|
+
function parse$14() {
|
|
17701
17685
|
const start = this.tokenStart;
|
|
17702
17686
|
const left = consumeTerm.call(this);
|
|
17703
17687
|
let right = null;
|
|
@@ -17722,10 +17706,10 @@ function generate$14(node) {
|
|
|
17722
17706
|
|
|
17723
17707
|
//#endregion
|
|
17724
17708
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Raw.js
|
|
17725
|
-
var Raw_exports = /* @__PURE__ */
|
|
17709
|
+
var Raw_exports = /* @__PURE__ */ __exportAll({
|
|
17726
17710
|
generate: () => generate$13,
|
|
17727
17711
|
name: () => name$12,
|
|
17728
|
-
parse: () => parse$
|
|
17712
|
+
parse: () => parse$13,
|
|
17729
17713
|
structure: () => structure$12
|
|
17730
17714
|
});
|
|
17731
17715
|
function getOffsetExcludeWS() {
|
|
@@ -17736,7 +17720,7 @@ function getOffsetExcludeWS() {
|
|
|
17736
17720
|
}
|
|
17737
17721
|
const name$12 = "Raw";
|
|
17738
17722
|
const structure$12 = { value: String };
|
|
17739
|
-
function parse$
|
|
17723
|
+
function parse$13(consumeUntil, excludeWhiteSpace) {
|
|
17740
17724
|
const startOffset = this.getTokenStart(this.tokenIndex);
|
|
17741
17725
|
let endOffset;
|
|
17742
17726
|
this.skipUntilBalanced(this.tokenIndex, consumeUntil || this.consumeUntilBalanceEnd);
|
|
@@ -17754,10 +17738,10 @@ function generate$13(node) {
|
|
|
17754
17738
|
|
|
17755
17739
|
//#endregion
|
|
17756
17740
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Rule.js
|
|
17757
|
-
var Rule_exports = /* @__PURE__ */
|
|
17741
|
+
var Rule_exports = /* @__PURE__ */ __exportAll({
|
|
17758
17742
|
generate: () => generate$12,
|
|
17759
17743
|
name: () => name$11,
|
|
17760
|
-
parse: () => parse$
|
|
17744
|
+
parse: () => parse$12,
|
|
17761
17745
|
structure: () => structure$11,
|
|
17762
17746
|
walkContext: () => walkContext$2
|
|
17763
17747
|
});
|
|
@@ -17775,7 +17759,7 @@ const structure$11 = {
|
|
|
17775
17759
|
prelude: ["SelectorList", "Raw"],
|
|
17776
17760
|
block: ["Block"]
|
|
17777
17761
|
};
|
|
17778
|
-
function parse$
|
|
17762
|
+
function parse$12() {
|
|
17779
17763
|
const startToken = this.tokenIndex;
|
|
17780
17764
|
const startOffset = this.tokenStart;
|
|
17781
17765
|
let prelude;
|
|
@@ -17797,10 +17781,10 @@ function generate$12(node) {
|
|
|
17797
17781
|
|
|
17798
17782
|
//#endregion
|
|
17799
17783
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Scope.js
|
|
17800
|
-
var Scope_exports = /* @__PURE__ */
|
|
17784
|
+
var Scope_exports = /* @__PURE__ */ __exportAll({
|
|
17801
17785
|
generate: () => generate$11,
|
|
17802
17786
|
name: () => name$10,
|
|
17803
|
-
parse: () => parse$
|
|
17787
|
+
parse: () => parse$11,
|
|
17804
17788
|
structure: () => structure$10
|
|
17805
17789
|
});
|
|
17806
17790
|
const name$10 = "Scope";
|
|
@@ -17816,7 +17800,7 @@ const structure$10 = {
|
|
|
17816
17800
|
null
|
|
17817
17801
|
]
|
|
17818
17802
|
};
|
|
17819
|
-
function parse$
|
|
17803
|
+
function parse$11() {
|
|
17820
17804
|
let root = null;
|
|
17821
17805
|
let limit = null;
|
|
17822
17806
|
this.skipSC();
|
|
@@ -17861,10 +17845,10 @@ function generate$11(node) {
|
|
|
17861
17845
|
|
|
17862
17846
|
//#endregion
|
|
17863
17847
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Selector.js
|
|
17864
|
-
var Selector_exports = /* @__PURE__ */
|
|
17848
|
+
var Selector_exports = /* @__PURE__ */ __exportAll({
|
|
17865
17849
|
generate: () => generate$10,
|
|
17866
17850
|
name: () => name$9,
|
|
17867
|
-
parse: () => parse$
|
|
17851
|
+
parse: () => parse$10,
|
|
17868
17852
|
structure: () => structure$9
|
|
17869
17853
|
});
|
|
17870
17854
|
const name$9 = "Selector";
|
|
@@ -17877,7 +17861,7 @@ const structure$9 = { children: [[
|
|
|
17877
17861
|
"PseudoElementSelector",
|
|
17878
17862
|
"Combinator"
|
|
17879
17863
|
]] };
|
|
17880
|
-
function parse$
|
|
17864
|
+
function parse$10() {
|
|
17881
17865
|
const children = this.readSequence(this.scope.Selector);
|
|
17882
17866
|
if (this.getFirstListNode(children) === null) this.error("Selector is expected");
|
|
17883
17867
|
return {
|
|
@@ -17892,17 +17876,17 @@ function generate$10(node) {
|
|
|
17892
17876
|
|
|
17893
17877
|
//#endregion
|
|
17894
17878
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/SelectorList.js
|
|
17895
|
-
var SelectorList_exports = /* @__PURE__ */
|
|
17879
|
+
var SelectorList_exports = /* @__PURE__ */ __exportAll({
|
|
17896
17880
|
generate: () => generate$9,
|
|
17897
17881
|
name: () => name$8,
|
|
17898
|
-
parse: () => parse$
|
|
17882
|
+
parse: () => parse$9,
|
|
17899
17883
|
structure: () => structure$8,
|
|
17900
17884
|
walkContext: () => walkContext$1
|
|
17901
17885
|
});
|
|
17902
17886
|
const name$8 = "SelectorList";
|
|
17903
17887
|
const walkContext$1 = "selector";
|
|
17904
17888
|
const structure$8 = { children: [["Selector", "Raw"]] };
|
|
17905
|
-
function parse$
|
|
17889
|
+
function parse$9() {
|
|
17906
17890
|
const children = this.createList();
|
|
17907
17891
|
while (!this.eof) {
|
|
17908
17892
|
children.push(this.Selector());
|
|
@@ -17981,15 +17965,15 @@ function encode$1(str, apostrophe) {
|
|
|
17981
17965
|
|
|
17982
17966
|
//#endregion
|
|
17983
17967
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/String.js
|
|
17984
|
-
var String_exports = /* @__PURE__ */
|
|
17968
|
+
var String_exports = /* @__PURE__ */ __exportAll({
|
|
17985
17969
|
generate: () => generate$8,
|
|
17986
17970
|
name: () => name$7,
|
|
17987
|
-
parse: () => parse$
|
|
17971
|
+
parse: () => parse$8,
|
|
17988
17972
|
structure: () => structure$7
|
|
17989
17973
|
});
|
|
17990
17974
|
const name$7 = "String";
|
|
17991
17975
|
const structure$7 = { value: String };
|
|
17992
|
-
function parse$
|
|
17976
|
+
function parse$8() {
|
|
17993
17977
|
return {
|
|
17994
17978
|
type: "String",
|
|
17995
17979
|
loc: this.getLocation(this.tokenStart, this.tokenEnd),
|
|
@@ -18002,10 +17986,10 @@ function generate$8(node) {
|
|
|
18002
17986
|
|
|
18003
17987
|
//#endregion
|
|
18004
17988
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/StyleSheet.js
|
|
18005
|
-
var StyleSheet_exports = /* @__PURE__ */
|
|
17989
|
+
var StyleSheet_exports = /* @__PURE__ */ __exportAll({
|
|
18006
17990
|
generate: () => generate$7,
|
|
18007
17991
|
name: () => name$6,
|
|
18008
|
-
parse: () => parse$
|
|
17992
|
+
parse: () => parse$7,
|
|
18009
17993
|
structure: () => structure$6,
|
|
18010
17994
|
walkContext: () => walkContext
|
|
18011
17995
|
});
|
|
@@ -18023,7 +18007,7 @@ const structure$6 = { children: [[
|
|
|
18023
18007
|
"Rule",
|
|
18024
18008
|
"Raw"
|
|
18025
18009
|
]] };
|
|
18026
|
-
function parse$
|
|
18010
|
+
function parse$7() {
|
|
18027
18011
|
const start = this.tokenStart;
|
|
18028
18012
|
const children = this.createList();
|
|
18029
18013
|
let child;
|
|
@@ -18064,15 +18048,15 @@ function generate$7(node) {
|
|
|
18064
18048
|
|
|
18065
18049
|
//#endregion
|
|
18066
18050
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js
|
|
18067
|
-
var SupportsDeclaration_exports = /* @__PURE__ */
|
|
18051
|
+
var SupportsDeclaration_exports = /* @__PURE__ */ __exportAll({
|
|
18068
18052
|
generate: () => generate$6,
|
|
18069
18053
|
name: () => name$5,
|
|
18070
|
-
parse: () => parse$
|
|
18054
|
+
parse: () => parse$6,
|
|
18071
18055
|
structure: () => structure$5
|
|
18072
18056
|
});
|
|
18073
18057
|
const name$5 = "SupportsDeclaration";
|
|
18074
18058
|
const structure$5 = { declaration: "Declaration" };
|
|
18075
|
-
function parse$
|
|
18059
|
+
function parse$6() {
|
|
18076
18060
|
const start = this.tokenStart;
|
|
18077
18061
|
this.eat(LeftParenthesis);
|
|
18078
18062
|
this.skipSC();
|
|
@@ -18092,10 +18076,10 @@ function generate$6(node) {
|
|
|
18092
18076
|
|
|
18093
18077
|
//#endregion
|
|
18094
18078
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/TypeSelector.js
|
|
18095
|
-
var TypeSelector_exports = /* @__PURE__ */
|
|
18079
|
+
var TypeSelector_exports = /* @__PURE__ */ __exportAll({
|
|
18096
18080
|
generate: () => generate$5,
|
|
18097
18081
|
name: () => name$4,
|
|
18098
|
-
parse: () => parse$
|
|
18082
|
+
parse: () => parse$5,
|
|
18099
18083
|
structure: () => structure$4
|
|
18100
18084
|
});
|
|
18101
18085
|
const ASTERISK$2 = 42;
|
|
@@ -18106,7 +18090,7 @@ function eatIdentifierOrAsterisk() {
|
|
|
18106
18090
|
}
|
|
18107
18091
|
const name$4 = "TypeSelector";
|
|
18108
18092
|
const structure$4 = { name: String };
|
|
18109
|
-
function parse$
|
|
18093
|
+
function parse$5() {
|
|
18110
18094
|
const start = this.tokenStart;
|
|
18111
18095
|
if (this.isDelim(VERTICALLINE$1)) {
|
|
18112
18096
|
this.next();
|
|
@@ -18130,10 +18114,10 @@ function generate$5(node) {
|
|
|
18130
18114
|
|
|
18131
18115
|
//#endregion
|
|
18132
18116
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/UnicodeRange.js
|
|
18133
|
-
var UnicodeRange_exports = /* @__PURE__ */
|
|
18117
|
+
var UnicodeRange_exports = /* @__PURE__ */ __exportAll({
|
|
18134
18118
|
generate: () => generate$4,
|
|
18135
18119
|
name: () => name$3,
|
|
18136
|
-
parse: () => parse$
|
|
18120
|
+
parse: () => parse$4,
|
|
18137
18121
|
structure: () => structure$3
|
|
18138
18122
|
});
|
|
18139
18123
|
const PLUSSIGN$2 = 43;
|
|
@@ -18199,7 +18183,7 @@ function scanUnicodeRange() {
|
|
|
18199
18183
|
}
|
|
18200
18184
|
const name$3 = "UnicodeRange";
|
|
18201
18185
|
const structure$3 = { value: String };
|
|
18202
|
-
function parse$
|
|
18186
|
+
function parse$4() {
|
|
18203
18187
|
const start = this.tokenStart;
|
|
18204
18188
|
this.eatIdent("u");
|
|
18205
18189
|
scanUnicodeRange.call(this);
|
|
@@ -18274,15 +18258,15 @@ function encode(str) {
|
|
|
18274
18258
|
|
|
18275
18259
|
//#endregion
|
|
18276
18260
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Url.js
|
|
18277
|
-
var Url_exports = /* @__PURE__ */
|
|
18261
|
+
var Url_exports = /* @__PURE__ */ __exportAll({
|
|
18278
18262
|
generate: () => generate$3,
|
|
18279
18263
|
name: () => name$2,
|
|
18280
|
-
parse: () => parse$
|
|
18264
|
+
parse: () => parse$3,
|
|
18281
18265
|
structure: () => structure$2
|
|
18282
18266
|
});
|
|
18283
18267
|
const name$2 = "Url";
|
|
18284
18268
|
const structure$2 = { value: String };
|
|
18285
|
-
function parse$
|
|
18269
|
+
function parse$3() {
|
|
18286
18270
|
const start = this.tokenStart;
|
|
18287
18271
|
let value;
|
|
18288
18272
|
switch (this.tokenType) {
|
|
@@ -18311,15 +18295,15 @@ function generate$3(node) {
|
|
|
18311
18295
|
|
|
18312
18296
|
//#endregion
|
|
18313
18297
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/Value.js
|
|
18314
|
-
var Value_exports = /* @__PURE__ */
|
|
18298
|
+
var Value_exports = /* @__PURE__ */ __exportAll({
|
|
18315
18299
|
generate: () => generate$2,
|
|
18316
18300
|
name: () => name$1,
|
|
18317
|
-
parse: () => parse$
|
|
18301
|
+
parse: () => parse$2,
|
|
18318
18302
|
structure: () => structure$1
|
|
18319
18303
|
});
|
|
18320
18304
|
const name$1 = "Value";
|
|
18321
18305
|
const structure$1 = { children: [[]] };
|
|
18322
|
-
function parse$
|
|
18306
|
+
function parse$2() {
|
|
18323
18307
|
const start = this.tokenStart;
|
|
18324
18308
|
const children = this.readSequence(this.scope.Value);
|
|
18325
18309
|
return {
|
|
@@ -18334,10 +18318,10 @@ function generate$2(node) {
|
|
|
18334
18318
|
|
|
18335
18319
|
//#endregion
|
|
18336
18320
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/WhiteSpace.js
|
|
18337
|
-
var WhiteSpace_exports = /* @__PURE__ */
|
|
18321
|
+
var WhiteSpace_exports = /* @__PURE__ */ __exportAll({
|
|
18338
18322
|
generate: () => generate$1,
|
|
18339
18323
|
name: () => name,
|
|
18340
|
-
parse: () => parse$
|
|
18324
|
+
parse: () => parse$1,
|
|
18341
18325
|
structure: () => structure
|
|
18342
18326
|
});
|
|
18343
18327
|
const SPACE = Object.freeze({
|
|
@@ -18347,7 +18331,7 @@ const SPACE = Object.freeze({
|
|
|
18347
18331
|
});
|
|
18348
18332
|
const name = "WhiteSpace";
|
|
18349
18333
|
const structure = { value: String };
|
|
18350
|
-
function parse$
|
|
18334
|
+
function parse$1() {
|
|
18351
18335
|
this.eat(WhiteSpace);
|
|
18352
18336
|
return SPACE;
|
|
18353
18337
|
}
|
|
@@ -18357,7 +18341,7 @@ function generate$1(node) {
|
|
|
18357
18341
|
|
|
18358
18342
|
//#endregion
|
|
18359
18343
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/index.js
|
|
18360
|
-
var node_exports = /* @__PURE__ */
|
|
18344
|
+
var node_exports = /* @__PURE__ */ __exportAll({
|
|
18361
18345
|
AnPlusB: () => AnPlusB_exports,
|
|
18362
18346
|
Atrule: () => Atrule_exports,
|
|
18363
18347
|
AtrulePrelude: () => AtrulePrelude_exports,
|
|
@@ -18552,7 +18536,7 @@ var value_default = {
|
|
|
18552
18536
|
|
|
18553
18537
|
//#endregion
|
|
18554
18538
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/scope/index.js
|
|
18555
|
-
var scope_exports = /* @__PURE__ */
|
|
18539
|
+
var scope_exports = /* @__PURE__ */ __exportAll({
|
|
18556
18540
|
AtrulePrelude: () => atrulePrelude_default,
|
|
18557
18541
|
Selector: () => selector_default,
|
|
18558
18542
|
Value: () => value_default
|
|
@@ -18792,56 +18776,56 @@ var pseudo_default = {
|
|
|
18792
18776
|
|
|
18793
18777
|
//#endregion
|
|
18794
18778
|
//#region ../../node_modules/.pnpm/css-tree@3.1.0/node_modules/css-tree/lib/syntax/node/index-parse.js
|
|
18795
|
-
var index_parse_exports = /* @__PURE__ */
|
|
18796
|
-
AnPlusB: () => parse$
|
|
18797
|
-
Atrule: () => parse$
|
|
18798
|
-
AtrulePrelude: () => parse$
|
|
18799
|
-
AttributeSelector: () => parse$
|
|
18800
|
-
Block: () => parse$
|
|
18801
|
-
Brackets: () => parse$
|
|
18802
|
-
CDC: () => parse$
|
|
18803
|
-
CDO: () => parse$
|
|
18804
|
-
ClassSelector: () => parse$
|
|
18805
|
-
Combinator: () => parse$
|
|
18806
|
-
Comment: () => parse$
|
|
18807
|
-
Condition: () => parse$
|
|
18808
|
-
Declaration: () => parse$
|
|
18809
|
-
DeclarationList: () => parse$
|
|
18810
|
-
Dimension: () => parse$
|
|
18811
|
-
Feature: () => parse$
|
|
18812
|
-
FeatureFunction: () => parse$
|
|
18813
|
-
FeatureRange: () => parse$
|
|
18814
|
-
Function: () => parse$
|
|
18815
|
-
GeneralEnclosed: () => parse$
|
|
18816
|
-
Hash: () => parse$
|
|
18817
|
-
IdSelector: () => parse$
|
|
18818
|
-
Identifier: () => parse$
|
|
18819
|
-
Layer: () => parse$
|
|
18779
|
+
var index_parse_exports = /* @__PURE__ */ __exportAll({
|
|
18780
|
+
AnPlusB: () => parse$49,
|
|
18781
|
+
Atrule: () => parse$48,
|
|
18782
|
+
AtrulePrelude: () => parse$47,
|
|
18783
|
+
AttributeSelector: () => parse$46,
|
|
18784
|
+
Block: () => parse$45,
|
|
18785
|
+
Brackets: () => parse$44,
|
|
18786
|
+
CDC: () => parse$43,
|
|
18787
|
+
CDO: () => parse$42,
|
|
18788
|
+
ClassSelector: () => parse$41,
|
|
18789
|
+
Combinator: () => parse$40,
|
|
18790
|
+
Comment: () => parse$39,
|
|
18791
|
+
Condition: () => parse$38,
|
|
18792
|
+
Declaration: () => parse$37,
|
|
18793
|
+
DeclarationList: () => parse$36,
|
|
18794
|
+
Dimension: () => parse$35,
|
|
18795
|
+
Feature: () => parse$34,
|
|
18796
|
+
FeatureFunction: () => parse$33,
|
|
18797
|
+
FeatureRange: () => parse$32,
|
|
18798
|
+
Function: () => parse$31,
|
|
18799
|
+
GeneralEnclosed: () => parse$30,
|
|
18800
|
+
Hash: () => parse$29,
|
|
18801
|
+
IdSelector: () => parse$27,
|
|
18802
|
+
Identifier: () => parse$28,
|
|
18803
|
+
Layer: () => parse$26,
|
|
18820
18804
|
LayerList: () => parse$25,
|
|
18821
|
-
MediaQuery: () => parse$
|
|
18822
|
-
MediaQueryList: () => parse$
|
|
18823
|
-
NestingSelector: () => parse$
|
|
18824
|
-
Nth: () => parse$
|
|
18825
|
-
Number: () => parse$
|
|
18826
|
-
Operator: () => parse$
|
|
18827
|
-
Parentheses: () => parse$
|
|
18828
|
-
Percentage: () => parse$
|
|
18829
|
-
PseudoClassSelector: () => parse$
|
|
18830
|
-
PseudoElementSelector: () => parse$
|
|
18831
|
-
Ratio: () => parse$
|
|
18832
|
-
Raw: () => parse$
|
|
18833
|
-
Rule: () => parse$
|
|
18834
|
-
Scope: () => parse$
|
|
18835
|
-
Selector: () => parse$
|
|
18836
|
-
SelectorList: () => parse$
|
|
18837
|
-
String: () => parse$
|
|
18838
|
-
StyleSheet: () => parse$
|
|
18839
|
-
SupportsDeclaration: () => parse$
|
|
18840
|
-
TypeSelector: () => parse$
|
|
18841
|
-
UnicodeRange: () => parse$
|
|
18842
|
-
Url: () => parse$
|
|
18843
|
-
Value: () => parse$
|
|
18844
|
-
WhiteSpace: () => parse$
|
|
18805
|
+
MediaQuery: () => parse$24,
|
|
18806
|
+
MediaQueryList: () => parse$23,
|
|
18807
|
+
NestingSelector: () => parse$22,
|
|
18808
|
+
Nth: () => parse$21,
|
|
18809
|
+
Number: () => parse$20,
|
|
18810
|
+
Operator: () => parse$19,
|
|
18811
|
+
Parentheses: () => parse$18,
|
|
18812
|
+
Percentage: () => parse$17,
|
|
18813
|
+
PseudoClassSelector: () => parse$16,
|
|
18814
|
+
PseudoElementSelector: () => parse$15,
|
|
18815
|
+
Ratio: () => parse$14,
|
|
18816
|
+
Raw: () => parse$13,
|
|
18817
|
+
Rule: () => parse$12,
|
|
18818
|
+
Scope: () => parse$11,
|
|
18819
|
+
Selector: () => parse$10,
|
|
18820
|
+
SelectorList: () => parse$9,
|
|
18821
|
+
String: () => parse$8,
|
|
18822
|
+
StyleSheet: () => parse$7,
|
|
18823
|
+
SupportsDeclaration: () => parse$6,
|
|
18824
|
+
TypeSelector: () => parse$5,
|
|
18825
|
+
UnicodeRange: () => parse$4,
|
|
18826
|
+
Url: () => parse$3,
|
|
18827
|
+
Value: () => parse$2,
|
|
18828
|
+
WhiteSpace: () => parse$1
|
|
18845
18829
|
});
|
|
18846
18830
|
|
|
18847
18831
|
//#endregion
|