@weapp-tailwindcss/postcss 3.1.4 → 3.1.5
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 +923 -1195
- package/dist/index.mjs +918 -1190
- package/dist/types.d.ts +33 -2
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
|
@@ -99,16 +99,16 @@ const e$28 = {
|
|
|
99
99
|
UnexpectedCharacterInURL: "Unexpected character while consuming a url token.",
|
|
100
100
|
InvalidEscapeSequenceInURL: "Invalid escape sequence while consuming a url token.",
|
|
101
101
|
InvalidEscapeSequenceAfterBackslash: "Invalid escape sequence after \"\\\""
|
|
102
|
-
}, n$
|
|
102
|
+
}, n$14 = "undefined" != typeof globalThis && "structuredClone" in globalThis;
|
|
103
103
|
function cloneTokens(e) {
|
|
104
|
-
return n$
|
|
104
|
+
return n$14 ? structuredClone(e) : JSON.parse(JSON.stringify(e));
|
|
105
105
|
}
|
|
106
106
|
function stringify$1(...e) {
|
|
107
107
|
let n = "";
|
|
108
108
|
for (let t = 0; t < e.length; t++) n += e[t][1];
|
|
109
109
|
return n;
|
|
110
110
|
}
|
|
111
|
-
const t$17 = 13, o$26 = 45, r$10 = 10, i$11 = 43, s$
|
|
111
|
+
const t$17 = 13, o$26 = 45, r$10 = 10, i$11 = 43, s$18 = 65533;
|
|
112
112
|
function checkIfFourCodePointsWouldStartCDO(e) {
|
|
113
113
|
return 60 === e.source.codePointAt(e.cursor) && 33 === e.source.codePointAt(e.cursor + 1) && e.source.codePointAt(e.cursor + 2) === o$26 && e.source.codePointAt(e.cursor + 3) === o$26;
|
|
114
114
|
}
|
|
@@ -250,22 +250,22 @@ function consumeComment$1(n, t) {
|
|
|
250
250
|
}
|
|
251
251
|
function consumeEscapedCodePoint(n, o) {
|
|
252
252
|
const i = o.readCodePoint();
|
|
253
|
-
if (void 0 === i) return n.onParseError(new ParseError$1(e$28.UnexpectedEOFInEscapedCodePoint, o.representationStart, o.representationEnd, ["4.3.7. Consume an escaped code point", "Unexpected EOF"])), s$
|
|
253
|
+
if (void 0 === i) return n.onParseError(new ParseError$1(e$28.UnexpectedEOFInEscapedCodePoint, o.representationStart, o.representationEnd, ["4.3.7. Consume an escaped code point", "Unexpected EOF"])), s$18;
|
|
254
254
|
if (isHexDigitCodePoint(i)) {
|
|
255
255
|
const e = [i];
|
|
256
256
|
let n;
|
|
257
257
|
for (; void 0 !== (n = o.source.codePointAt(o.cursor)) && isHexDigitCodePoint(n) && e.length < 6;) e.push(n), o.advanceCodePoint();
|
|
258
258
|
isWhitespace(o.source.codePointAt(o.cursor) ?? -1) && (o.source.codePointAt(o.cursor) === t$17 && o.source.codePointAt(o.cursor + 1) === r$10 && o.advanceCodePoint(), o.advanceCodePoint());
|
|
259
259
|
const c = parseInt(String.fromCodePoint(...e), 16);
|
|
260
|
-
return 0 === c || isSurrogate(c) || c > 1114111 ? s$
|
|
260
|
+
return 0 === c || isSurrogate(c) || c > 1114111 ? s$18 : c;
|
|
261
261
|
}
|
|
262
|
-
return 0 === i || isSurrogate(i) ? s$
|
|
262
|
+
return 0 === i || isSurrogate(i) ? s$18 : i;
|
|
263
263
|
}
|
|
264
264
|
function consumeIdentSequence(e, n) {
|
|
265
265
|
const t = [];
|
|
266
266
|
for (;;) {
|
|
267
267
|
const o = n.source.codePointAt(n.cursor) ?? -1;
|
|
268
|
-
if (0 === o || isSurrogate(o)) t.push(s$
|
|
268
|
+
if (0 === o || isSurrogate(o)) t.push(s$18), n.advanceCodePoint(+(o > 65535) + 1);
|
|
269
269
|
else if (isIdentCodePoint(o)) t.push(o), n.advanceCodePoint(+(o > 65535) + 1);
|
|
270
270
|
else {
|
|
271
271
|
if (!checkIfTwoCodePointsAreAValidEscape(n)) return t;
|
|
@@ -428,7 +428,7 @@ function consumeStringToken(n, o) {
|
|
|
428
428
|
o.representationEnd,
|
|
429
429
|
{ value: i }
|
|
430
430
|
];
|
|
431
|
-
if (92 !== u) 0 === u || isSurrogate(u) ? i += String.fromCodePoint(s$
|
|
431
|
+
if (92 !== u) 0 === u || isSurrogate(u) ? i += String.fromCodePoint(s$18) : i += String.fromCodePoint(u);
|
|
432
432
|
else {
|
|
433
433
|
if (void 0 === o.source.codePointAt(o.cursor)) continue;
|
|
434
434
|
if (isNewLine(o.source.codePointAt(o.cursor) ?? -1)) {
|
|
@@ -532,7 +532,7 @@ function consumeUrlToken(n, t) {
|
|
|
532
532
|
"The input stream does not start with a valid escape sequence"
|
|
533
533
|
], r)), r;
|
|
534
534
|
}
|
|
535
|
-
0 === t.source.codePointAt(t.cursor) || isSurrogate(t.source.codePointAt(t.cursor) ?? -1) ? (o += String.fromCodePoint(s$
|
|
535
|
+
0 === t.source.codePointAt(t.cursor) || isSurrogate(t.source.codePointAt(t.cursor) ?? -1) ? (o += String.fromCodePoint(s$18), t.advanceCodePoint()) : (o += t.source[t.cursor], t.advanceCodePoint());
|
|
536
536
|
}
|
|
537
537
|
}
|
|
538
538
|
function consumeIdentLikeToken(e, n) {
|
|
@@ -800,14 +800,14 @@ function mutateUnit(e, n) {
|
|
|
800
800
|
}
|
|
801
801
|
function serializeIdent(e) {
|
|
802
802
|
let n = 0;
|
|
803
|
-
if (0 === e[0]) e.splice(0, 1, s$
|
|
803
|
+
if (0 === e[0]) e.splice(0, 1, s$18), n = 1;
|
|
804
804
|
else if (e[0] === o$26 && e[1] === o$26) n = 2;
|
|
805
805
|
else if (e[0] === o$26 && e[1]) n = 2, isIdentStartCodePoint(e[1]) || (n += insertEscapedCodePoint(e, 1, e[1]));
|
|
806
806
|
else {
|
|
807
807
|
if (e[0] === o$26 && !e[1]) return [92, e[0]];
|
|
808
808
|
isIdentStartCodePoint(e[0]) ? n = 1 : (n = 1, n += insertEscapedCodePoint(e, 0, e[0]));
|
|
809
809
|
}
|
|
810
|
-
for (let t = n; t < e.length; t++) 0 !== e[t] ? isIdentCodePoint(e[t]) || (t += insertEscapedCharacter(e, t, e[t])) : (e.splice(t, 1, s$
|
|
810
|
+
for (let t = n; t < e.length; t++) 0 !== e[t] ? isIdentCodePoint(e[t]) || (t += insertEscapedCharacter(e, t, e[t])) : (e.splice(t, 1, s$18), t++);
|
|
811
811
|
return e;
|
|
812
812
|
}
|
|
813
813
|
function insertEscapedCharacter(e, n, t) {
|
|
@@ -818,9 +818,9 @@ function insertEscapedCodePoint(e, n, t) {
|
|
|
818
818
|
for (const e of o) r.push(e.codePointAt(0));
|
|
819
819
|
return e.splice(n, 1, 92, ...r, 32), 1 + r.length;
|
|
820
820
|
}
|
|
821
|
-
const d$
|
|
821
|
+
const d$2 = Object.values(c$7);
|
|
822
822
|
function isToken(e) {
|
|
823
|
-
return !!Array.isArray(e) && !(e.length < 4) && !!d$
|
|
823
|
+
return !!Array.isArray(e) && !(e.length < 4) && !!d$2.includes(e[0]) && "string" == typeof e[1] && "number" == typeof e[2] && "number" == typeof e[3];
|
|
824
824
|
}
|
|
825
825
|
function isTokenNumeric(e) {
|
|
826
826
|
if (!e) return !1;
|
|
@@ -1015,7 +1015,7 @@ function HSL_to_sRGB_channel(_, t, n, o) {
|
|
|
1015
1015
|
n
|
|
1016
1016
|
];
|
|
1017
1017
|
}
|
|
1018
|
-
const n$
|
|
1018
|
+
const n$13 = [
|
|
1019
1019
|
.3457 / .3585,
|
|
1020
1020
|
1,
|
|
1021
1021
|
.2958 / .3585
|
|
@@ -1028,9 +1028,9 @@ const n$12 = [
|
|
|
1028
1028
|
*/ function Lab_to_XYZ(_) {
|
|
1029
1029
|
const t = 24389 / 27, o = 216 / 24389, e = (_[0] + 16) / 116, r = _[1] / 500 + e, a = e - _[2] / 200;
|
|
1030
1030
|
return [
|
|
1031
|
-
(Math.pow(r, 3) > o ? Math.pow(r, 3) : (116 * r - 16) / t) * n$
|
|
1032
|
-
(_[0] > 8 ? Math.pow((_[0] + 16) / 116, 3) : _[0] / t) * n$
|
|
1033
|
-
(Math.pow(a, 3) > o ? Math.pow(a, 3) : (116 * a - 16) / t) * n$
|
|
1031
|
+
(Math.pow(r, 3) > o ? Math.pow(r, 3) : (116 * r - 16) / t) * n$13[0],
|
|
1032
|
+
(_[0] > 8 ? Math.pow((_[0] + 16) / 116, 3) : _[0] / t) * n$13[1],
|
|
1033
|
+
(Math.pow(a, 3) > o ? Math.pow(a, 3) : (116 * a - 16) / t) * n$13[2]
|
|
1034
1034
|
];
|
|
1035
1035
|
}
|
|
1036
1036
|
/**
|
|
@@ -1101,11 +1101,11 @@ function OKLab_to_XYZ(_) {
|
|
|
1101
1101
|
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
1102
1102
|
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
1103
1103
|
*/ function XYZ_to_Lab(_) {
|
|
1104
|
-
const t = compute_f(_[0] / n$
|
|
1104
|
+
const t = compute_f(_[0] / n$13[0]), o = compute_f(_[1] / n$13[1]);
|
|
1105
1105
|
return [
|
|
1106
1106
|
116 * o - 16,
|
|
1107
1107
|
500 * (t - o),
|
|
1108
|
-
200 * (o - compute_f(_[2] / n$
|
|
1108
|
+
200 * (o - compute_f(_[2] / n$13[2]))
|
|
1109
1109
|
];
|
|
1110
1110
|
}
|
|
1111
1111
|
const r$9 = 216 / 24389, a$7 = 24389 / 27;
|
|
@@ -1186,7 +1186,7 @@ const c$6 = [
|
|
|
1186
1186
|
*/ function XYZ_to_lin_P3(_) {
|
|
1187
1187
|
return multiplyMatrices(c$6, _);
|
|
1188
1188
|
}
|
|
1189
|
-
const s$
|
|
1189
|
+
const s$17 = [
|
|
1190
1190
|
1.3457868816471583,
|
|
1191
1191
|
-.25557208737979464,
|
|
1192
1192
|
-.05110186497554526,
|
|
@@ -1204,7 +1204,7 @@ const s$16 = [
|
|
|
1204
1204
|
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
1205
1205
|
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
1206
1206
|
*/ function XYZ_to_lin_ProPhoto(_) {
|
|
1207
|
-
return multiplyMatrices(s$
|
|
1207
|
+
return multiplyMatrices(s$17, _);
|
|
1208
1208
|
}
|
|
1209
1209
|
const X = [
|
|
1210
1210
|
1829569 / 896150,
|
|
@@ -8131,23 +8131,31 @@ function mergeEquivalentHoistedRules(rules) {
|
|
|
8131
8131
|
const MINI_PROGRAM_PSEUDO_CONTENT_SELECTORS = /* @__PURE__ */ new Set(["::before", "::after"]);
|
|
8132
8132
|
function applyConfiguredPreflightDeclarations(rule, cssPreflight) {
|
|
8133
8133
|
if (!cssPreflight || typeof cssPreflight !== "object") return;
|
|
8134
|
-
const
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
if (
|
|
8139
|
-
|
|
8140
|
-
|
|
8134
|
+
const configuredNodes = [];
|
|
8135
|
+
const remainingNodes = [];
|
|
8136
|
+
const remainingDeclarations = /* @__PURE__ */ new Map();
|
|
8137
|
+
for (const node of rule.nodes ?? []) {
|
|
8138
|
+
if (node.type !== "decl") {
|
|
8139
|
+
remainingNodes.push(node);
|
|
8140
|
+
continue;
|
|
8141
8141
|
}
|
|
8142
|
-
|
|
8143
|
-
|
|
8142
|
+
if (Object.hasOwn(cssPreflight, node.prop)) {
|
|
8143
|
+
remainingDeclarations.set(node.prop, node);
|
|
8144
|
+
continue;
|
|
8145
|
+
}
|
|
8146
|
+
remainingNodes.push(node);
|
|
8147
|
+
}
|
|
8144
8148
|
for (const [prop, value] of Object.entries(cssPreflight)) {
|
|
8145
|
-
if (value === false
|
|
8146
|
-
|
|
8149
|
+
if (value === false) continue;
|
|
8150
|
+
const declaration = remainingDeclarations.get(prop)?.clone() ?? postcss$1.decl({
|
|
8147
8151
|
prop,
|
|
8148
8152
|
value: value.toString()
|
|
8149
8153
|
});
|
|
8154
|
+
declaration.value = value.toString();
|
|
8155
|
+
configuredNodes.push(declaration);
|
|
8150
8156
|
}
|
|
8157
|
+
rule.removeAll();
|
|
8158
|
+
rule.append([...configuredNodes, ...remainingNodes]);
|
|
8151
8159
|
}
|
|
8152
8160
|
function collectTailwindRuntimeDeclarations(rule) {
|
|
8153
8161
|
const declarations = [];
|
|
@@ -39502,7 +39510,7 @@ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
39502
39510
|
};
|
|
39503
39511
|
}));
|
|
39504
39512
|
//#endregion
|
|
39505
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-initial@3.0.0_postcss@8.5.
|
|
39513
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-initial@3.0.0_postcss@8.5.16/node_modules/@csstools/postcss-initial/dist/index.mjs
|
|
39506
39514
|
var import_browserslist = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
39507
39515
|
var bbm = require_dist$2();
|
|
39508
39516
|
var jsReleases = require_envs();
|
|
@@ -40771,7 +40779,7 @@ function hasExactFallback(o, t) {
|
|
|
40771
40779
|
}
|
|
40772
40780
|
return !1;
|
|
40773
40781
|
}
|
|
40774
|
-
const e$26 = /^\s?initial\s?$/i, n$
|
|
40782
|
+
const e$26 = /^\s?initial\s?$/i, n$12 = /^font$/i, r$8 = /^all$/i, i$9 = [
|
|
40775
40783
|
"font-family",
|
|
40776
40784
|
"font-size",
|
|
40777
40785
|
"font-style",
|
|
@@ -40787,7 +40795,7 @@ const e$26 = /^\s?initial\s?$/i, n$11 = /^font$/i, r$8 = /^all$/i, i$9 = [
|
|
|
40787
40795
|
if (a.variable) return;
|
|
40788
40796
|
if (!e$26.test(a.value)) return;
|
|
40789
40797
|
let s;
|
|
40790
|
-
s = n$
|
|
40798
|
+
s = n$12.test(a.prop) ? i$9 : r$8.test(a.prop) ? t$15 : [a.prop.toLowerCase()];
|
|
40791
40799
|
let c = !1;
|
|
40792
40800
|
s.forEach((t) => {
|
|
40793
40801
|
const e = o$24.get(t);
|
|
@@ -40801,8 +40809,8 @@ const e$26 = /^\s?initial\s?$/i, n$11 = /^font$/i, r$8 = /^all$/i, i$9 = [
|
|
|
40801
40809
|
};
|
|
40802
40810
|
creator$52.postcss = !0;
|
|
40803
40811
|
//#endregion
|
|
40804
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-progressive-custom-properties@5.1.
|
|
40805
|
-
const
|
|
40812
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-progressive-custom-properties@5.1.1_postcss@8.5.16/node_modules/@csstools/postcss-progressive-custom-properties/dist/index.mjs
|
|
40813
|
+
const r$7 = [
|
|
40806
40814
|
"at",
|
|
40807
40815
|
"bottom",
|
|
40808
40816
|
"center",
|
|
@@ -40820,59 +40828,59 @@ const a$6 = [
|
|
|
40820
40828
|
"top"
|
|
40821
40829
|
];
|
|
40822
40830
|
function doublePositionGradients(e) {
|
|
40823
|
-
const
|
|
40824
|
-
if ("function" === e.type && ("conic-gradient" ===
|
|
40825
|
-
let
|
|
40826
|
-
e: for (let
|
|
40827
|
-
const
|
|
40828
|
-
if ("word" ===
|
|
40829
|
-
if ("word" !==
|
|
40831
|
+
const t = [], o = e.value.toLowerCase();
|
|
40832
|
+
if ("function" === e.type && ("conic-gradient" === o || "linear-gradient" === o || "radial-gradient" === o || "repeating-conic-gradient" === o || "repeating-linear-gradient" === o || "repeating-radial-gradient" === o)) {
|
|
40833
|
+
let o = 0, a = !1, i = !1;
|
|
40834
|
+
e: for (let s = 0; s < e.nodes.length; s++) {
|
|
40835
|
+
const n = e.nodes[s];
|
|
40836
|
+
if ("word" === n.type && r$7.includes(n.value.toLowerCase()) && (a = !0), "div" !== n.type || "," !== n.value.trim()) if ("word" !== n.type || "in" !== n.value.toLowerCase()) {
|
|
40837
|
+
if ("word" !== n.type && "function" !== n.type || o++, i) switch (e.value.toLowerCase()) {
|
|
40830
40838
|
case "conic-gradient":
|
|
40831
|
-
|
|
40839
|
+
t.push("(background: conic-gradient(in oklch, red 0deg, red 0deg 1deg, red 2deg))");
|
|
40832
40840
|
break e;
|
|
40833
40841
|
case "linear-gradient":
|
|
40834
|
-
|
|
40842
|
+
t.push("(background: linear-gradient(in oklch, red 0%, red 0% 1%, red 2%))");
|
|
40835
40843
|
break e;
|
|
40836
40844
|
case "radial-gradient":
|
|
40837
|
-
|
|
40845
|
+
t.push("(background: radial-gradient(in oklch, red, red 1px 2px, red 3px))");
|
|
40838
40846
|
break e;
|
|
40839
40847
|
case "repeating-conic-gradient":
|
|
40840
|
-
|
|
40848
|
+
t.push("(background: repeating-conic-gradient(in oklch from 0deg, red 0deg, red 0deg 1deg, red 2deg))");
|
|
40841
40849
|
break e;
|
|
40842
40850
|
case "repeating-linear-gradient":
|
|
40843
|
-
|
|
40851
|
+
t.push("(background: repeating-linear-gradient(in oklch, red 0%, red 0% 1%, red 2%))");
|
|
40844
40852
|
break e;
|
|
40845
40853
|
case "repeating-radial-gradient":
|
|
40846
|
-
|
|
40854
|
+
t.push("(background: repeating-radial-gradient(in oklch, red, red 1px 2px, red 3px))");
|
|
40847
40855
|
break e;
|
|
40848
40856
|
}
|
|
40849
|
-
if (!
|
|
40857
|
+
if (!a && 3 === o) switch (e.value.toLowerCase()) {
|
|
40850
40858
|
case "conic-gradient":
|
|
40851
|
-
|
|
40859
|
+
t.push("(background: conic-gradient(red 0deg, red 0deg 1deg, red 2deg))");
|
|
40852
40860
|
break e;
|
|
40853
40861
|
case "linear-gradient":
|
|
40854
|
-
|
|
40862
|
+
t.push("(background: linear-gradient(red 0%, red 0% 1%, red 2%))");
|
|
40855
40863
|
break e;
|
|
40856
40864
|
case "radial-gradient":
|
|
40857
|
-
|
|
40865
|
+
t.push("(background: radial-gradient(red, red 1px 2px, red 3px))");
|
|
40858
40866
|
break e;
|
|
40859
40867
|
case "repeating-conic-gradient":
|
|
40860
|
-
|
|
40868
|
+
t.push("(background: repeating-conic-gradient(from 0deg, red 0deg, red 0deg 1deg, red 2deg))");
|
|
40861
40869
|
break e;
|
|
40862
40870
|
case "repeating-linear-gradient":
|
|
40863
|
-
|
|
40871
|
+
t.push("(background: repeating-linear-gradient(red 0%, red 0% 1%, red 2%))");
|
|
40864
40872
|
break e;
|
|
40865
40873
|
case "repeating-radial-gradient":
|
|
40866
|
-
|
|
40874
|
+
t.push("(background: repeating-radial-gradient(red, red 1px 2px, red 3px))");
|
|
40867
40875
|
break e;
|
|
40868
40876
|
}
|
|
40869
40877
|
} else i = !0;
|
|
40870
|
-
else
|
|
40878
|
+
else o = 0, a = !1;
|
|
40871
40879
|
}
|
|
40872
40880
|
}
|
|
40873
|
-
return
|
|
40881
|
+
return t;
|
|
40874
40882
|
}
|
|
40875
|
-
const
|
|
40883
|
+
const t$14 = [
|
|
40876
40884
|
{
|
|
40877
40885
|
supports: "color-mix(in display-p3-linear, red, blue)",
|
|
40878
40886
|
property: "color",
|
|
@@ -43738,93 +43746,815 @@ const p$3 = [
|
|
|
43738
43746
|
}]
|
|
43739
43747
|
}
|
|
43740
43748
|
];
|
|
43741
|
-
function matches(e,
|
|
43742
|
-
if (e.isVariable &&
|
|
43743
|
-
if (e.type !==
|
|
43744
|
-
if (doesNotMatchValue(e,
|
|
43745
|
-
if (e.nodes &&
|
|
43746
|
-
for (let
|
|
43747
|
-
let
|
|
43748
|
-
for (; e.nodes[
|
|
43749
|
-
for (;
|
|
43750
|
-
if (!!e.nodes[
|
|
43751
|
-
if (e.nodes[
|
|
43752
|
-
if (!matches(e.nodes[
|
|
43749
|
+
function matches(e, r) {
|
|
43750
|
+
if (e.isVariable && r && ("word" === r.type || "string" === r.type || "function" === r.type)) return !0;
|
|
43751
|
+
if (e.type !== r.type) return !1;
|
|
43752
|
+
if (doesNotMatchValue(e, r)) return !1;
|
|
43753
|
+
if (e.nodes && r.nodes) {
|
|
43754
|
+
for (let t = 0; t < Math.max(e.nodes.length, r.nodes.length); t++) {
|
|
43755
|
+
let o = t, a = t;
|
|
43756
|
+
for (; e.nodes[o] && "space" === e.nodes[o].type;) o++;
|
|
43757
|
+
for (; r.nodes[a] && "space" === r.nodes[a].type;) a++;
|
|
43758
|
+
if (!!e.nodes[o] != !!r.nodes[a]) return !1;
|
|
43759
|
+
if (e.nodes[o].anyRemainingArguments && r.nodes[a]) return !0;
|
|
43760
|
+
if (!matches(e.nodes[o], r.nodes[a])) return !1;
|
|
43753
43761
|
}
|
|
43754
43762
|
return !0;
|
|
43755
43763
|
}
|
|
43756
43764
|
return !0;
|
|
43757
43765
|
}
|
|
43758
|
-
function doesNotMatchValue(e,
|
|
43759
|
-
return ("space" !== e.type || "space" !==
|
|
43766
|
+
function doesNotMatchValue(e, r) {
|
|
43767
|
+
return ("space" !== e.type || "space" !== r.type || e.value?.trim() !== r.value?.trim()) && (e.dimension && r.dimension ? e.dimension.unit !== r.dimension.unit : "string" === e.type ? e.value !== r.value : e.value?.toLowerCase() !== r.value?.toLowerCase());
|
|
43760
43768
|
}
|
|
43761
|
-
const
|
|
43762
|
-
function conditionsFromValue(
|
|
43763
|
-
const i =
|
|
43764
|
-
let
|
|
43769
|
+
const o$23 = /^var$/i;
|
|
43770
|
+
function conditionsFromValue(r, a = !1) {
|
|
43771
|
+
const i = r.value, s = [], n = t$14.filter((e) => i.includes(e.sniff) && (e.only_on_property ?? r.prop) === r.prop);
|
|
43772
|
+
let p = !1;
|
|
43765
43773
|
try {
|
|
43766
|
-
valueParser(i).walk((
|
|
43767
|
-
"function" ===
|
|
43774
|
+
valueParser(i).walk((r) => {
|
|
43775
|
+
"function" === r.type && o$23.test(r.value) && (p = !0);
|
|
43768
43776
|
try {
|
|
43769
|
-
const
|
|
43770
|
-
!1 !==
|
|
43777
|
+
const t = valueParser.unit(r.value);
|
|
43778
|
+
!1 !== t && (r.dimension = t);
|
|
43771
43779
|
} catch {}
|
|
43772
|
-
for (let e = 0; e <
|
|
43773
|
-
const
|
|
43774
|
-
for (let e = 0; e <
|
|
43780
|
+
for (let e = 0; e < n.length; e++) {
|
|
43781
|
+
const t = n[e];
|
|
43782
|
+
for (let e = 0; e < t.matchers.length; e++) if (matches(t.matchers[e], r)) return void s.push(`(${t.property}: ${t.supports})`);
|
|
43775
43783
|
}
|
|
43776
|
-
|
|
43784
|
+
s.push(...doublePositionGradients(r));
|
|
43777
43785
|
});
|
|
43778
43786
|
} catch {}
|
|
43779
|
-
return
|
|
43787
|
+
return a && !p ? { support: [] } : { support: Array.from(new Set(s)).sort() };
|
|
43788
|
+
}
|
|
43789
|
+
const a$6 = /* @__PURE__ */ new Map([
|
|
43790
|
+
["animation", [
|
|
43791
|
+
"animation-name",
|
|
43792
|
+
"animation-duration",
|
|
43793
|
+
"animation-timing-function",
|
|
43794
|
+
"animation-delay",
|
|
43795
|
+
"animation-iteration-count",
|
|
43796
|
+
"animation-direction",
|
|
43797
|
+
"animation-fill-mode",
|
|
43798
|
+
"animation-play-state",
|
|
43799
|
+
"animation-timeline",
|
|
43800
|
+
"animation-range",
|
|
43801
|
+
"animation-trigger",
|
|
43802
|
+
"animation-range-start",
|
|
43803
|
+
"animation-range-end"
|
|
43804
|
+
]],
|
|
43805
|
+
["animation-range", ["animation-range-start", "animation-range-end"]],
|
|
43806
|
+
["background", [
|
|
43807
|
+
"background-image",
|
|
43808
|
+
"background-position",
|
|
43809
|
+
"background-size",
|
|
43810
|
+
"background-repeat",
|
|
43811
|
+
"background-attachment",
|
|
43812
|
+
"background-origin",
|
|
43813
|
+
"background-clip",
|
|
43814
|
+
"background-color",
|
|
43815
|
+
"background-blend-mode",
|
|
43816
|
+
"background-repeat-block",
|
|
43817
|
+
"background-repeat-inline",
|
|
43818
|
+
"background-repeat-x",
|
|
43819
|
+
"background-repeat-y",
|
|
43820
|
+
"background-position-x",
|
|
43821
|
+
"background-position-y",
|
|
43822
|
+
"background-position-block",
|
|
43823
|
+
"background-position-inline"
|
|
43824
|
+
]],
|
|
43825
|
+
["background-position", [
|
|
43826
|
+
"background-position-x",
|
|
43827
|
+
"background-position-y",
|
|
43828
|
+
"background-position-block",
|
|
43829
|
+
"background-position-inline"
|
|
43830
|
+
]],
|
|
43831
|
+
["background-repeat", [
|
|
43832
|
+
"background-repeat-block",
|
|
43833
|
+
"background-repeat-inline",
|
|
43834
|
+
"background-repeat-x",
|
|
43835
|
+
"background-repeat-y"
|
|
43836
|
+
]],
|
|
43837
|
+
["size", [
|
|
43838
|
+
"block-size",
|
|
43839
|
+
"height",
|
|
43840
|
+
"inline-size",
|
|
43841
|
+
"width"
|
|
43842
|
+
]],
|
|
43843
|
+
["block-step", [
|
|
43844
|
+
"block-step-size",
|
|
43845
|
+
"block-step-insert",
|
|
43846
|
+
"block-step-align",
|
|
43847
|
+
"block-step-round"
|
|
43848
|
+
]],
|
|
43849
|
+
["border", [
|
|
43850
|
+
"border-width",
|
|
43851
|
+
"border-style",
|
|
43852
|
+
"border-color",
|
|
43853
|
+
"border-image",
|
|
43854
|
+
"border-image-source",
|
|
43855
|
+
"border-image-slice",
|
|
43856
|
+
"border-image-width",
|
|
43857
|
+
"border-image-outset",
|
|
43858
|
+
"border-image-repeat",
|
|
43859
|
+
"border-block-end-color",
|
|
43860
|
+
"border-block-start-color",
|
|
43861
|
+
"border-bottom-color",
|
|
43862
|
+
"border-top-color",
|
|
43863
|
+
"border-right-color",
|
|
43864
|
+
"border-left-color",
|
|
43865
|
+
"border-inline-end-color",
|
|
43866
|
+
"border-inline-start-color",
|
|
43867
|
+
"border-block-end-style",
|
|
43868
|
+
"border-block-start-style",
|
|
43869
|
+
"border-bottom-style",
|
|
43870
|
+
"border-inline-end-style",
|
|
43871
|
+
"border-inline-start-style",
|
|
43872
|
+
"border-left-style",
|
|
43873
|
+
"border-right-style",
|
|
43874
|
+
"border-top-style",
|
|
43875
|
+
"border-block-end-width",
|
|
43876
|
+
"border-block-start-width",
|
|
43877
|
+
"border-bottom-width",
|
|
43878
|
+
"border-inline-end-width",
|
|
43879
|
+
"border-inline-start-width",
|
|
43880
|
+
"border-left-width",
|
|
43881
|
+
"border-right-width",
|
|
43882
|
+
"border-top-width"
|
|
43883
|
+
]],
|
|
43884
|
+
["border-block", [
|
|
43885
|
+
"border-block-start",
|
|
43886
|
+
"border-block-end",
|
|
43887
|
+
"border-block-end-width",
|
|
43888
|
+
"border-block-end-style",
|
|
43889
|
+
"border-block-end-color",
|
|
43890
|
+
"border-block-start-width",
|
|
43891
|
+
"border-block-start-style",
|
|
43892
|
+
"border-block-start-color"
|
|
43893
|
+
]],
|
|
43894
|
+
["border-block-clip", ["border-block-start-clip", "border-block-end-clip"]],
|
|
43895
|
+
["border-block-color", ["border-block-start-color", "border-block-end-color"]],
|
|
43896
|
+
["border-block-end", [
|
|
43897
|
+
"border-block-end-width",
|
|
43898
|
+
"border-block-end-style",
|
|
43899
|
+
"border-block-end-color"
|
|
43900
|
+
]],
|
|
43901
|
+
["border-clip", [
|
|
43902
|
+
"border-block-end-clip",
|
|
43903
|
+
"border-block-start-clip",
|
|
43904
|
+
"border-bottom-clip",
|
|
43905
|
+
"border-top-clip",
|
|
43906
|
+
"border-right-clip",
|
|
43907
|
+
"border-left-clip",
|
|
43908
|
+
"border-inline-end-clip",
|
|
43909
|
+
"border-inline-start-clip"
|
|
43910
|
+
]],
|
|
43911
|
+
["border-color", [
|
|
43912
|
+
"border-block-end-color",
|
|
43913
|
+
"border-block-start-color",
|
|
43914
|
+
"border-bottom-color",
|
|
43915
|
+
"border-top-color",
|
|
43916
|
+
"border-right-color",
|
|
43917
|
+
"border-left-color",
|
|
43918
|
+
"border-inline-end-color",
|
|
43919
|
+
"border-inline-start-color"
|
|
43920
|
+
]],
|
|
43921
|
+
["border-block-end-radius", ["border-end-start-radius", "border-end-end-radius"]],
|
|
43922
|
+
["border-style", [
|
|
43923
|
+
"border-block-end-style",
|
|
43924
|
+
"border-block-start-style",
|
|
43925
|
+
"border-bottom-style",
|
|
43926
|
+
"border-inline-end-style",
|
|
43927
|
+
"border-inline-start-style",
|
|
43928
|
+
"border-left-style",
|
|
43929
|
+
"border-right-style",
|
|
43930
|
+
"border-top-style"
|
|
43931
|
+
]],
|
|
43932
|
+
["border-width", [
|
|
43933
|
+
"border-block-end-width",
|
|
43934
|
+
"border-block-start-width",
|
|
43935
|
+
"border-bottom-width",
|
|
43936
|
+
"border-inline-end-width",
|
|
43937
|
+
"border-inline-start-width",
|
|
43938
|
+
"border-left-width",
|
|
43939
|
+
"border-right-width",
|
|
43940
|
+
"border-top-width"
|
|
43941
|
+
]],
|
|
43942
|
+
["border-block-start", [
|
|
43943
|
+
"border-block-start-width",
|
|
43944
|
+
"border-block-start-style",
|
|
43945
|
+
"border-block-start-color"
|
|
43946
|
+
]],
|
|
43947
|
+
["border-block-start-radius", ["border-start-start-radius", "border-start-end-radius"]],
|
|
43948
|
+
["border-block-style", ["border-block-start-style", "border-block-end-style"]],
|
|
43949
|
+
["border-block-width", ["border-block-start-width", "border-block-end-width"]],
|
|
43950
|
+
["border-bottom", [
|
|
43951
|
+
"border-bottom-width",
|
|
43952
|
+
"border-bottom-style",
|
|
43953
|
+
"border-bottom-color"
|
|
43954
|
+
]],
|
|
43955
|
+
["border-radius", [
|
|
43956
|
+
"border-bottom-left-radius",
|
|
43957
|
+
"border-bottom-right-radius",
|
|
43958
|
+
"border-end-end-radius",
|
|
43959
|
+
"border-end-start-radius",
|
|
43960
|
+
"border-top-left-radius",
|
|
43961
|
+
"border-top-right-radius",
|
|
43962
|
+
"border-start-end-radius",
|
|
43963
|
+
"border-start-start-radius"
|
|
43964
|
+
]],
|
|
43965
|
+
["border-bottom-radius", ["border-bottom-left-radius", "border-bottom-right-radius"]],
|
|
43966
|
+
["border-image", [
|
|
43967
|
+
"border-image-source",
|
|
43968
|
+
"border-image-slice",
|
|
43969
|
+
"border-image-width",
|
|
43970
|
+
"border-image-outset",
|
|
43971
|
+
"border-image-repeat"
|
|
43972
|
+
]],
|
|
43973
|
+
["border-inline", [
|
|
43974
|
+
"border-inline-start",
|
|
43975
|
+
"border-inline-end",
|
|
43976
|
+
"border-inline-end-width",
|
|
43977
|
+
"border-inline-end-style",
|
|
43978
|
+
"border-inline-end-color",
|
|
43979
|
+
"border-inline-start-width",
|
|
43980
|
+
"border-inline-start-style",
|
|
43981
|
+
"border-inline-start-color"
|
|
43982
|
+
]],
|
|
43983
|
+
["border-inline-clip", ["border-inline-start-clip", "border-inline-end-clip"]],
|
|
43984
|
+
["border-inline-color", ["border-inline-start-color", "border-inline-end-color"]],
|
|
43985
|
+
["border-inline-end", [
|
|
43986
|
+
"border-inline-end-width",
|
|
43987
|
+
"border-inline-end-style",
|
|
43988
|
+
"border-inline-end-color"
|
|
43989
|
+
]],
|
|
43990
|
+
["border-inline-end-radius", ["border-start-end-radius", "border-end-end-radius"]],
|
|
43991
|
+
["border-inline-start", [
|
|
43992
|
+
"border-inline-start-width",
|
|
43993
|
+
"border-inline-start-style",
|
|
43994
|
+
"border-inline-start-color"
|
|
43995
|
+
]],
|
|
43996
|
+
["border-inline-start-radius", ["border-start-start-radius", "border-end-start-radius"]],
|
|
43997
|
+
["border-inline-style", ["border-inline-start-style", "border-inline-end-style"]],
|
|
43998
|
+
["border-inline-width", ["border-inline-start-width", "border-inline-end-width"]],
|
|
43999
|
+
["border-left", [
|
|
44000
|
+
"border-left-width",
|
|
44001
|
+
"border-left-style",
|
|
44002
|
+
"border-left-color"
|
|
44003
|
+
]],
|
|
44004
|
+
["border-left-radius", ["border-top-left-radius", "border-bottom-left-radius"]],
|
|
44005
|
+
["border-right", [
|
|
44006
|
+
"border-right-width",
|
|
44007
|
+
"border-right-style",
|
|
44008
|
+
"border-right-color"
|
|
44009
|
+
]],
|
|
44010
|
+
["border-right-radius", ["border-top-right-radius", "border-bottom-right-radius"]],
|
|
44011
|
+
["border-top", [
|
|
44012
|
+
"border-top-width",
|
|
44013
|
+
"border-top-style",
|
|
44014
|
+
"border-top-color"
|
|
44015
|
+
]],
|
|
44016
|
+
["border-top-radius", ["border-top-left-radius", "border-top-right-radius"]],
|
|
44017
|
+
["inset", [
|
|
44018
|
+
"bottom",
|
|
44019
|
+
"top",
|
|
44020
|
+
"right",
|
|
44021
|
+
"left",
|
|
44022
|
+
"inset-block-end",
|
|
44023
|
+
"inset-block-start",
|
|
44024
|
+
"inset-inline-end",
|
|
44025
|
+
"inset-inline-start"
|
|
44026
|
+
]],
|
|
44027
|
+
["box-shadow", [
|
|
44028
|
+
"box-shadow-color",
|
|
44029
|
+
"box-shadow-offset",
|
|
44030
|
+
"box-shadow-blur",
|
|
44031
|
+
"box-shadow-spread",
|
|
44032
|
+
"box-shadow-position"
|
|
44033
|
+
]],
|
|
44034
|
+
["caret", [
|
|
44035
|
+
"caret-color",
|
|
44036
|
+
"caret-animation",
|
|
44037
|
+
"caret-shape"
|
|
44038
|
+
]],
|
|
44039
|
+
["color-adjust", ["print-color-adjust"]],
|
|
44040
|
+
["column-rule", [
|
|
44041
|
+
"column-rule-width",
|
|
44042
|
+
"column-rule-style",
|
|
44043
|
+
"column-rule-color"
|
|
44044
|
+
]],
|
|
44045
|
+
["column-rule-inset", [
|
|
44046
|
+
"column-rule-inset-cap-start",
|
|
44047
|
+
"column-rule-inset-cap-end",
|
|
44048
|
+
"column-rule-inset-junction-start",
|
|
44049
|
+
"column-rule-inset-junction-end"
|
|
44050
|
+
]],
|
|
44051
|
+
["column-rule-inset-cap", ["column-rule-inset-cap-start", "column-rule-inset-cap-end"]],
|
|
44052
|
+
["column-rule-inset-end", ["column-rule-inset-cap-end", "column-rule-inset-junction-end"]],
|
|
44053
|
+
["column-rule-inset-junction", ["column-rule-inset-junction-start", "column-rule-inset-junction-end"]],
|
|
44054
|
+
["column-rule-inset-start", ["column-rule-inset-cap-start", "column-rule-inset-junction-start"]],
|
|
44055
|
+
["columns", [
|
|
44056
|
+
"column-width",
|
|
44057
|
+
"column-count",
|
|
44058
|
+
"column-height"
|
|
44059
|
+
]],
|
|
44060
|
+
["contain-intrinsic-size", [
|
|
44061
|
+
"contain-intrinsic-block-size",
|
|
44062
|
+
"contain-intrinsic-height",
|
|
44063
|
+
"contain-intrinsic-inline-size",
|
|
44064
|
+
"contain-intrinsic-width"
|
|
44065
|
+
]],
|
|
44066
|
+
["container", ["container-name", "container-type"]],
|
|
44067
|
+
["corner", [
|
|
44068
|
+
"border-radius",
|
|
44069
|
+
"corner-shape",
|
|
44070
|
+
"corner-bottom-left-shape",
|
|
44071
|
+
"corner-bottom-right-shape",
|
|
44072
|
+
"corner-end-end-shape",
|
|
44073
|
+
"corner-end-start-shape",
|
|
44074
|
+
"corner-top-left-shape",
|
|
44075
|
+
"corner-top-right-shape",
|
|
44076
|
+
"corner-start-end-shape",
|
|
44077
|
+
"corner-start-start-shape",
|
|
44078
|
+
"border-bottom-left-radius",
|
|
44079
|
+
"border-bottom-right-radius",
|
|
44080
|
+
"border-end-end-radius",
|
|
44081
|
+
"border-end-start-radius",
|
|
44082
|
+
"border-top-left-radius",
|
|
44083
|
+
"border-top-right-radius",
|
|
44084
|
+
"border-start-end-radius",
|
|
44085
|
+
"border-start-start-radius"
|
|
44086
|
+
]],
|
|
44087
|
+
["corner-block-end", [
|
|
44088
|
+
"border-block-end-radius",
|
|
44089
|
+
"corner-block-end-shape",
|
|
44090
|
+
"corner-end-start-shape",
|
|
44091
|
+
"corner-end-end-shape",
|
|
44092
|
+
"border-end-start-radius",
|
|
44093
|
+
"border-end-end-radius"
|
|
44094
|
+
]],
|
|
44095
|
+
["corner-block-end-shape", ["corner-end-start-shape", "corner-end-end-shape"]],
|
|
44096
|
+
["corner-block-start", [
|
|
44097
|
+
"border-block-start-radius",
|
|
44098
|
+
"corner-block-start-shape",
|
|
44099
|
+
"corner-start-start-shape",
|
|
44100
|
+
"corner-start-end-shape",
|
|
44101
|
+
"border-start-start-radius",
|
|
44102
|
+
"border-start-end-radius"
|
|
44103
|
+
]],
|
|
44104
|
+
["corner-block-start-shape", ["corner-start-start-shape", "corner-start-end-shape"]],
|
|
44105
|
+
["corner-bottom", [
|
|
44106
|
+
"border-bottom-radius",
|
|
44107
|
+
"corner-bottom-shape",
|
|
44108
|
+
"corner-bottom-left-shape",
|
|
44109
|
+
"corner-bottom-right-shape",
|
|
44110
|
+
"border-bottom-left-radius",
|
|
44111
|
+
"border-bottom-right-radius"
|
|
44112
|
+
]],
|
|
44113
|
+
["corner-bottom-left", ["border-bottom-left-radius", "corner-bottom-left-shape"]],
|
|
44114
|
+
["corner-shape", [
|
|
44115
|
+
"corner-bottom-left-shape",
|
|
44116
|
+
"corner-bottom-right-shape",
|
|
44117
|
+
"corner-end-end-shape",
|
|
44118
|
+
"corner-end-start-shape",
|
|
44119
|
+
"corner-top-left-shape",
|
|
44120
|
+
"corner-top-right-shape",
|
|
44121
|
+
"corner-start-end-shape",
|
|
44122
|
+
"corner-start-start-shape"
|
|
44123
|
+
]],
|
|
44124
|
+
["corner-bottom-right", ["border-bottom-right-radius", "corner-bottom-right-shape"]],
|
|
44125
|
+
["corner-bottom-shape", ["corner-bottom-left-shape", "corner-bottom-right-shape"]],
|
|
44126
|
+
["corner-end-end", ["border-end-end-radius", "corner-end-end-shape"]],
|
|
44127
|
+
["corner-end-start", ["border-end-start-radius", "corner-end-start-shape"]],
|
|
44128
|
+
["corner-inline-end", [
|
|
44129
|
+
"border-inline-end-radius",
|
|
44130
|
+
"corner-inline-end-shape",
|
|
44131
|
+
"corner-start-end-shape",
|
|
44132
|
+
"corner-end-end-shape",
|
|
44133
|
+
"border-start-end-radius",
|
|
44134
|
+
"border-end-end-radius"
|
|
44135
|
+
]],
|
|
44136
|
+
["corner-inline-end-shape", ["corner-start-end-shape", "corner-end-end-shape"]],
|
|
44137
|
+
["corner-inline-start", [
|
|
44138
|
+
"border-inline-start-radius",
|
|
44139
|
+
"corner-inline-start-shape",
|
|
44140
|
+
"corner-start-start-shape",
|
|
44141
|
+
"corner-end-start-shape",
|
|
44142
|
+
"border-start-start-radius",
|
|
44143
|
+
"border-end-start-radius"
|
|
44144
|
+
]],
|
|
44145
|
+
["corner-inline-start-shape", ["corner-start-start-shape", "corner-end-start-shape"]],
|
|
44146
|
+
["corner-left", [
|
|
44147
|
+
"border-left-radius",
|
|
44148
|
+
"corner-left-shape",
|
|
44149
|
+
"corner-top-left-shape",
|
|
44150
|
+
"corner-bottom-left-shape",
|
|
44151
|
+
"border-top-left-radius",
|
|
44152
|
+
"border-bottom-left-radius"
|
|
44153
|
+
]],
|
|
44154
|
+
["corner-left-shape", ["corner-top-left-shape", "corner-bottom-left-shape"]],
|
|
44155
|
+
["corner-right", [
|
|
44156
|
+
"border-right-radius",
|
|
44157
|
+
"corner-right-shape",
|
|
44158
|
+
"corner-top-right-shape",
|
|
44159
|
+
"corner-bottom-right-shape",
|
|
44160
|
+
"border-top-right-radius",
|
|
44161
|
+
"border-bottom-right-radius"
|
|
44162
|
+
]],
|
|
44163
|
+
["corner-right-shape", ["corner-top-right-shape", "corner-bottom-right-shape"]],
|
|
44164
|
+
["corner-start-end", ["border-start-end-radius", "corner-start-end-shape"]],
|
|
44165
|
+
["corner-start-start", ["border-start-start-radius", "corner-start-start-shape"]],
|
|
44166
|
+
["corner-top", [
|
|
44167
|
+
"border-top-radius",
|
|
44168
|
+
"corner-top-shape",
|
|
44169
|
+
"corner-top-left-shape",
|
|
44170
|
+
"corner-top-right-shape",
|
|
44171
|
+
"border-top-left-radius",
|
|
44172
|
+
"border-top-right-radius"
|
|
44173
|
+
]],
|
|
44174
|
+
["corner-top-left", ["border-top-left-radius", "corner-top-left-shape"]],
|
|
44175
|
+
["corner-top-right", ["border-top-right-radius", "corner-top-right-shape"]],
|
|
44176
|
+
["corner-top-shape", ["corner-top-left-shape", "corner-top-right-shape"]],
|
|
44177
|
+
["cue", ["cue-before", "cue-after"]],
|
|
44178
|
+
["flex", [
|
|
44179
|
+
"flex-grow",
|
|
44180
|
+
"flex-shrink",
|
|
44181
|
+
"flex-basis"
|
|
44182
|
+
]],
|
|
44183
|
+
["flex-flow", ["flex-direction", "flex-wrap"]],
|
|
44184
|
+
["font", [
|
|
44185
|
+
"font-style",
|
|
44186
|
+
"font-variant",
|
|
44187
|
+
"font-weight",
|
|
44188
|
+
"font-stretch",
|
|
44189
|
+
"font-size",
|
|
44190
|
+
"line-height",
|
|
44191
|
+
"font-family",
|
|
44192
|
+
"font-feature-settings",
|
|
44193
|
+
"font-kerning",
|
|
44194
|
+
"font-language-override",
|
|
44195
|
+
"font-optical-sizing",
|
|
44196
|
+
"font-size-adjust",
|
|
44197
|
+
"font-variation-settings",
|
|
44198
|
+
"font-variant-ligatures",
|
|
44199
|
+
"font-variant-caps",
|
|
44200
|
+
"font-variant-alternates",
|
|
44201
|
+
"font-variant-numeric",
|
|
44202
|
+
"font-variant-east-asian",
|
|
44203
|
+
"font-variant-position",
|
|
44204
|
+
"font-variant-emoji"
|
|
44205
|
+
]],
|
|
44206
|
+
["font-synthesis", [
|
|
44207
|
+
"font-synthesis-weight",
|
|
44208
|
+
"font-synthesis-style",
|
|
44209
|
+
"font-synthesis-small-caps"
|
|
44210
|
+
]],
|
|
44211
|
+
["font-variant", [
|
|
44212
|
+
"font-variant-ligatures",
|
|
44213
|
+
"font-variant-caps",
|
|
44214
|
+
"font-variant-alternates",
|
|
44215
|
+
"font-variant-numeric",
|
|
44216
|
+
"font-variant-east-asian",
|
|
44217
|
+
"font-variant-position",
|
|
44218
|
+
"font-variant-emoji"
|
|
44219
|
+
]],
|
|
44220
|
+
["gap", ["row-gap", "column-gap"]],
|
|
44221
|
+
["grid", [
|
|
44222
|
+
"grid-template-rows",
|
|
44223
|
+
"grid-template-columns",
|
|
44224
|
+
"grid-template-areas",
|
|
44225
|
+
"grid-auto-rows",
|
|
44226
|
+
"grid-auto-columns",
|
|
44227
|
+
"grid-auto-flow"
|
|
44228
|
+
]],
|
|
44229
|
+
["grid-area", [
|
|
44230
|
+
"grid-row-start",
|
|
44231
|
+
"grid-column-start",
|
|
44232
|
+
"grid-row-end",
|
|
44233
|
+
"grid-column-end"
|
|
44234
|
+
]],
|
|
44235
|
+
["grid-column", ["grid-column-start", "grid-column-end"]],
|
|
44236
|
+
["grid-gap", ["row-gap", "column-gap"]],
|
|
44237
|
+
["grid-row", ["grid-row-start", "grid-row-end"]],
|
|
44238
|
+
["grid-template", [
|
|
44239
|
+
"grid-template-rows",
|
|
44240
|
+
"grid-template-columns",
|
|
44241
|
+
"grid-template-areas"
|
|
44242
|
+
]],
|
|
44243
|
+
["inset-block", ["inset-block-start", "inset-block-end"]],
|
|
44244
|
+
["inset-inline", ["inset-inline-start", "inset-inline-end"]],
|
|
44245
|
+
["interest-delay", ["interest-delay-start", "interest-delay-end"]],
|
|
44246
|
+
["line-clamp", [
|
|
44247
|
+
"max-lines",
|
|
44248
|
+
"block-ellipsis",
|
|
44249
|
+
"continue"
|
|
44250
|
+
]],
|
|
44251
|
+
["list-style", [
|
|
44252
|
+
"list-style-type",
|
|
44253
|
+
"list-style-position",
|
|
44254
|
+
"list-style-image"
|
|
44255
|
+
]],
|
|
44256
|
+
["margin", [
|
|
44257
|
+
"margin-top",
|
|
44258
|
+
"margin-right",
|
|
44259
|
+
"margin-bottom",
|
|
44260
|
+
"margin-left",
|
|
44261
|
+
"margin-block-end",
|
|
44262
|
+
"margin-block-start",
|
|
44263
|
+
"margin-inline-end",
|
|
44264
|
+
"margin-inline-start"
|
|
44265
|
+
]],
|
|
44266
|
+
["margin-block", ["margin-block-start", "margin-block-end"]],
|
|
44267
|
+
["margin-inline", ["margin-inline-start", "margin-inline-end"]],
|
|
44268
|
+
["marker", [
|
|
44269
|
+
"marker-start",
|
|
44270
|
+
"marker-mid",
|
|
44271
|
+
"marker-end"
|
|
44272
|
+
]],
|
|
44273
|
+
["mask", [
|
|
44274
|
+
"mask-image",
|
|
44275
|
+
"mask-position",
|
|
44276
|
+
"mask-size",
|
|
44277
|
+
"mask-repeat",
|
|
44278
|
+
"mask-origin",
|
|
44279
|
+
"mask-clip",
|
|
44280
|
+
"mask-composite",
|
|
44281
|
+
"mask-mode",
|
|
44282
|
+
"mask-border",
|
|
44283
|
+
"mask-border-source",
|
|
44284
|
+
"mask-border-slice",
|
|
44285
|
+
"mask-border-width",
|
|
44286
|
+
"mask-border-outset",
|
|
44287
|
+
"mask-border-repeat",
|
|
44288
|
+
"mask-border-mode"
|
|
44289
|
+
]],
|
|
44290
|
+
["mask-border", [
|
|
44291
|
+
"mask-border-source",
|
|
44292
|
+
"mask-border-slice",
|
|
44293
|
+
"mask-border-width",
|
|
44294
|
+
"mask-border-outset",
|
|
44295
|
+
"mask-border-repeat",
|
|
44296
|
+
"mask-border-mode"
|
|
44297
|
+
]],
|
|
44298
|
+
["max-size", [
|
|
44299
|
+
"max-block-size",
|
|
44300
|
+
"max-height",
|
|
44301
|
+
"max-inline-size",
|
|
44302
|
+
"max-width"
|
|
44303
|
+
]],
|
|
44304
|
+
["min-size", [
|
|
44305
|
+
"min-block-size",
|
|
44306
|
+
"min-height",
|
|
44307
|
+
"min-inline-size",
|
|
44308
|
+
"min-width"
|
|
44309
|
+
]],
|
|
44310
|
+
["offset", [
|
|
44311
|
+
"offset-path",
|
|
44312
|
+
"offset-distance",
|
|
44313
|
+
"offset-rotate",
|
|
44314
|
+
"offset-anchor",
|
|
44315
|
+
"offset-position"
|
|
44316
|
+
]],
|
|
44317
|
+
["outline", [
|
|
44318
|
+
"outline-width",
|
|
44319
|
+
"outline-style",
|
|
44320
|
+
"outline-color"
|
|
44321
|
+
]],
|
|
44322
|
+
["overflow", [
|
|
44323
|
+
"overflow-x",
|
|
44324
|
+
"overflow-y",
|
|
44325
|
+
"overflow-block",
|
|
44326
|
+
"overflow-inline"
|
|
44327
|
+
]],
|
|
44328
|
+
["overflow-clip-margin", [
|
|
44329
|
+
"overflow-clip-margin-top",
|
|
44330
|
+
"overflow-clip-margin-right",
|
|
44331
|
+
"overflow-clip-margin-bottom",
|
|
44332
|
+
"overflow-clip-margin-left",
|
|
44333
|
+
"overflow-clip-margin-block-end",
|
|
44334
|
+
"overflow-clip-margin-block-start",
|
|
44335
|
+
"overflow-clip-margin-inline-end",
|
|
44336
|
+
"overflow-clip-margin-inline-start"
|
|
44337
|
+
]],
|
|
44338
|
+
["overflow-clip-margin-block", ["overflow-clip-margin-block-start", "overflow-clip-margin-block-end"]],
|
|
44339
|
+
["overflow-clip-margin-inline", ["overflow-clip-margin-inline-start", "overflow-clip-margin-inline-end"]],
|
|
44340
|
+
["overscroll-behavior", [
|
|
44341
|
+
"overscroll-behavior-x",
|
|
44342
|
+
"overscroll-behavior-y",
|
|
44343
|
+
"overscroll-behavior-block",
|
|
44344
|
+
"overscroll-behavior-inline"
|
|
44345
|
+
]],
|
|
44346
|
+
["padding", [
|
|
44347
|
+
"padding-top",
|
|
44348
|
+
"padding-right",
|
|
44349
|
+
"padding-bottom",
|
|
44350
|
+
"padding-left",
|
|
44351
|
+
"padding-block-end",
|
|
44352
|
+
"padding-block-start",
|
|
44353
|
+
"padding-inline-end",
|
|
44354
|
+
"padding-inline-start"
|
|
44355
|
+
]],
|
|
44356
|
+
["padding-block", ["padding-block-start", "padding-block-end"]],
|
|
44357
|
+
["padding-inline", ["padding-inline-start", "padding-inline-end"]],
|
|
44358
|
+
["pause", ["pause-before", "pause-after"]],
|
|
44359
|
+
["place-content", ["align-content", "justify-content"]],
|
|
44360
|
+
["place-items", ["align-items", "justify-items"]],
|
|
44361
|
+
["place-self", ["align-self", "justify-self"]],
|
|
44362
|
+
["pointer-timeline", ["pointer-timeline-name", "pointer-timeline-axis"]],
|
|
44363
|
+
["position-try", ["position-try-order", "position-try-fallbacks"]],
|
|
44364
|
+
["rest", ["rest-before", "rest-after"]],
|
|
44365
|
+
["row-rule", [
|
|
44366
|
+
"row-rule-width",
|
|
44367
|
+
"row-rule-style",
|
|
44368
|
+
"row-rule-color"
|
|
44369
|
+
]],
|
|
44370
|
+
["row-rule-inset", [
|
|
44371
|
+
"row-rule-inset-cap-start",
|
|
44372
|
+
"row-rule-inset-cap-end",
|
|
44373
|
+
"row-rule-inset-junction-start",
|
|
44374
|
+
"row-rule-inset-junction-end"
|
|
44375
|
+
]],
|
|
44376
|
+
["row-rule-inset-cap", ["row-rule-inset-cap-start", "row-rule-inset-cap-end"]],
|
|
44377
|
+
["row-rule-inset-end", ["row-rule-inset-cap-end", "row-rule-inset-junction-end"]],
|
|
44378
|
+
["row-rule-inset-junction", ["row-rule-inset-junction-start", "row-rule-inset-junction-end"]],
|
|
44379
|
+
["row-rule-inset-start", ["row-rule-inset-cap-start", "row-rule-inset-junction-start"]],
|
|
44380
|
+
["rule", [
|
|
44381
|
+
"column-rule",
|
|
44382
|
+
"row-rule",
|
|
44383
|
+
"row-rule-width",
|
|
44384
|
+
"row-rule-style",
|
|
44385
|
+
"row-rule-color",
|
|
44386
|
+
"column-rule-width",
|
|
44387
|
+
"column-rule-style",
|
|
44388
|
+
"column-rule-color"
|
|
44389
|
+
]],
|
|
44390
|
+
["rule-break", ["column-rule-break", "row-rule-break"]],
|
|
44391
|
+
["rule-color", ["column-rule-color", "row-rule-color"]],
|
|
44392
|
+
["rule-inset", [
|
|
44393
|
+
"column-rule-inset",
|
|
44394
|
+
"row-rule-inset",
|
|
44395
|
+
"row-rule-inset-cap-start",
|
|
44396
|
+
"row-rule-inset-cap-end",
|
|
44397
|
+
"row-rule-inset-junction-start",
|
|
44398
|
+
"row-rule-inset-junction-end",
|
|
44399
|
+
"column-rule-inset-cap-start",
|
|
44400
|
+
"column-rule-inset-cap-end",
|
|
44401
|
+
"column-rule-inset-junction-start",
|
|
44402
|
+
"column-rule-inset-junction-end"
|
|
44403
|
+
]],
|
|
44404
|
+
["rule-inset-cap", [
|
|
44405
|
+
"column-rule-inset-cap",
|
|
44406
|
+
"column-rule-inset-cap-start",
|
|
44407
|
+
"column-rule-inset-cap-end"
|
|
44408
|
+
]],
|
|
44409
|
+
["rule-inset-end", [
|
|
44410
|
+
"column-rule-inset-end",
|
|
44411
|
+
"row-rule-inset-end",
|
|
44412
|
+
"row-rule-inset-cap-end",
|
|
44413
|
+
"row-rule-inset-junction-end",
|
|
44414
|
+
"column-rule-inset-cap-end",
|
|
44415
|
+
"column-rule-inset-junction-end"
|
|
44416
|
+
]],
|
|
44417
|
+
["rule-inset-junction", [
|
|
44418
|
+
"column-rule-inset-junction",
|
|
44419
|
+
"column-rule-inset-junction-start",
|
|
44420
|
+
"column-rule-inset-junction-end"
|
|
44421
|
+
]],
|
|
44422
|
+
["rule-inset-start", [
|
|
44423
|
+
"column-rule-inset-start",
|
|
44424
|
+
"row-rule-inset-start",
|
|
44425
|
+
"row-rule-inset-cap-start",
|
|
44426
|
+
"row-rule-inset-junction-start",
|
|
44427
|
+
"column-rule-inset-cap-start",
|
|
44428
|
+
"column-rule-inset-junction-start"
|
|
44429
|
+
]],
|
|
44430
|
+
["rule-style", ["column-rule-style", "row-rule-style"]],
|
|
44431
|
+
["rule-visibility-items", ["column-rule-visibility-items"]],
|
|
44432
|
+
["rule-width", ["column-rule-width", "row-rule-width"]],
|
|
44433
|
+
["scroll-margin", [
|
|
44434
|
+
"scroll-margin-top",
|
|
44435
|
+
"scroll-margin-right",
|
|
44436
|
+
"scroll-margin-bottom",
|
|
44437
|
+
"scroll-margin-left",
|
|
44438
|
+
"scroll-margin-block-end",
|
|
44439
|
+
"scroll-margin-block-start",
|
|
44440
|
+
"scroll-margin-inline-end",
|
|
44441
|
+
"scroll-margin-inline-start"
|
|
44442
|
+
]],
|
|
44443
|
+
["scroll-margin-block", ["scroll-margin-block-start", "scroll-margin-block-end"]],
|
|
44444
|
+
["scroll-margin-inline", ["scroll-margin-inline-start", "scroll-margin-inline-end"]],
|
|
44445
|
+
["scroll-padding", [
|
|
44446
|
+
"scroll-padding-top",
|
|
44447
|
+
"scroll-padding-right",
|
|
44448
|
+
"scroll-padding-bottom",
|
|
44449
|
+
"scroll-padding-left",
|
|
44450
|
+
"scroll-padding-block-end",
|
|
44451
|
+
"scroll-padding-block-start",
|
|
44452
|
+
"scroll-padding-inline-end",
|
|
44453
|
+
"scroll-padding-inline-start"
|
|
44454
|
+
]],
|
|
44455
|
+
["scroll-padding-block", ["scroll-padding-block-start", "scroll-padding-block-end"]],
|
|
44456
|
+
["scroll-padding-inline", ["scroll-padding-inline-start", "scroll-padding-inline-end"]],
|
|
44457
|
+
["scroll-timeline", ["scroll-timeline-name", "scroll-timeline-axis"]],
|
|
44458
|
+
["text-align", ["text-align-all", "text-align-last"]],
|
|
44459
|
+
["text-decoration", [
|
|
44460
|
+
"text-decoration-line",
|
|
44461
|
+
"text-decoration-thickness",
|
|
44462
|
+
"text-decoration-style",
|
|
44463
|
+
"text-decoration-color"
|
|
44464
|
+
]],
|
|
44465
|
+
["text-decoration-skip", [
|
|
44466
|
+
"text-decoration-skip-self",
|
|
44467
|
+
"text-decoration-skip-box",
|
|
44468
|
+
"text-decoration-skip-spaces",
|
|
44469
|
+
"text-decoration-skip-ink"
|
|
44470
|
+
]],
|
|
44471
|
+
["text-emphasis", ["text-emphasis-style", "text-emphasis-color"]],
|
|
44472
|
+
["text-spacing", ["text-spacing-trim", "text-autospace"]],
|
|
44473
|
+
["text-wrap", ["text-wrap-mode", "text-wrap-style"]],
|
|
44474
|
+
["timeline-trigger", [
|
|
44475
|
+
"timeline-trigger-name",
|
|
44476
|
+
"timeline-trigger-source",
|
|
44477
|
+
"timeline-trigger-activation-range",
|
|
44478
|
+
"timeline-trigger-active-range",
|
|
44479
|
+
"timeline-trigger-active-range-start",
|
|
44480
|
+
"timeline-trigger-active-range-end",
|
|
44481
|
+
"timeline-trigger-activation-range-start",
|
|
44482
|
+
"timeline-trigger-activation-range-end"
|
|
44483
|
+
]],
|
|
44484
|
+
["timeline-trigger-activation-range", ["timeline-trigger-activation-range-start", "timeline-trigger-activation-range-end"]],
|
|
44485
|
+
["timeline-trigger-active-range", ["timeline-trigger-active-range-start", "timeline-trigger-active-range-end"]],
|
|
44486
|
+
["transition", [
|
|
44487
|
+
"transition-property",
|
|
44488
|
+
"transition-duration",
|
|
44489
|
+
"transition-timing-function",
|
|
44490
|
+
"transition-delay",
|
|
44491
|
+
"transition-behavior"
|
|
44492
|
+
]],
|
|
44493
|
+
["vertical-align", [
|
|
44494
|
+
"alignment-baseline",
|
|
44495
|
+
"baseline-shift",
|
|
44496
|
+
"baseline-source"
|
|
44497
|
+
]],
|
|
44498
|
+
["view-timeline", ["view-timeline-name", "view-timeline-axis"]],
|
|
44499
|
+
["white-space", ["white-space-collapse", "text-wrap-mode"]]
|
|
44500
|
+
]), i$8 = /var\(/i, s$16 = /^initial$/i, n$11 = /^\s*$/;
|
|
44501
|
+
function cloneDeclarations(e, r) {
|
|
44502
|
+
const t = a$6.get(r.prop.toLowerCase());
|
|
44503
|
+
if (!t?.length) return void e.append(r.clone());
|
|
44504
|
+
const o = [r];
|
|
44505
|
+
let i = r.next();
|
|
44506
|
+
for (; i;) "decl" === i.type && t.includes(i.prop) && o.push(i), i = i.next();
|
|
44507
|
+
o.forEach((r) => {
|
|
44508
|
+
e.append(r.clone());
|
|
44509
|
+
});
|
|
43780
44510
|
}
|
|
43781
|
-
const
|
|
44511
|
+
const creator$51 = () => ({
|
|
43782
44512
|
postcssPlugin: "postcss-progressive-custom-properties",
|
|
43783
44513
|
prepare() {
|
|
43784
44514
|
const e = /* @__PURE__ */ new WeakMap();
|
|
43785
44515
|
return {
|
|
43786
44516
|
postcssPlugin: "postcss-progressive-custom-properties",
|
|
43787
|
-
OnceExit(
|
|
43788
|
-
|
|
43789
|
-
if (!
|
|
43790
|
-
const
|
|
44517
|
+
OnceExit(r, { postcss: t }) {
|
|
44518
|
+
r.walkDecls((r) => {
|
|
44519
|
+
if (!r.parent) return;
|
|
44520
|
+
const o = e.get(r.parent) || {
|
|
43791
44521
|
conditionalRules: [],
|
|
43792
44522
|
propNames: /* @__PURE__ */ new Set(),
|
|
43793
44523
|
lastConditionParams: { support: void 0 },
|
|
43794
44524
|
lastConditionalRule: void 0
|
|
43795
44525
|
};
|
|
43796
|
-
if (e.set(
|
|
43797
|
-
if (!
|
|
44526
|
+
if (e.set(r.parent, o), r.variable) {
|
|
44527
|
+
if (!o.propNames.has(r.prop)) return void o.propNames.add(r.prop);
|
|
43798
44528
|
} else {
|
|
43799
|
-
const e =
|
|
43800
|
-
if (!
|
|
44529
|
+
const e = r.prop.toLowerCase();
|
|
44530
|
+
if (!o.propNames.has(e)) return void o.propNames.add(e);
|
|
43801
44531
|
}
|
|
43802
|
-
if (!
|
|
43803
|
-
if (
|
|
43804
|
-
if (
|
|
43805
|
-
const
|
|
43806
|
-
if (!
|
|
43807
|
-
if (
|
|
43808
|
-
const
|
|
43809
|
-
if (
|
|
44532
|
+
if (!r.variable && !i$8.test(r.value)) return;
|
|
44533
|
+
if (s$16.test(r.value)) return;
|
|
44534
|
+
if (n$11.test(r.value)) return;
|
|
44535
|
+
const a = conditionsFromValue(r, !r.variable).support.join(" and ");
|
|
44536
|
+
if (!a) return;
|
|
44537
|
+
if (o.lastConditionParams.support !== a && (o.lastConditionalRule = void 0), o.lastConditionalRule) return cloneDeclarations(o.lastConditionalRule, r), void r.remove();
|
|
44538
|
+
const p = [];
|
|
44539
|
+
if (a && p.push(t.atRule({
|
|
43810
44540
|
name: "supports",
|
|
43811
|
-
params:
|
|
43812
|
-
source:
|
|
44541
|
+
params: a,
|
|
44542
|
+
source: r.parent.source,
|
|
43813
44543
|
raws: {
|
|
43814
44544
|
before: "\n\n",
|
|
43815
44545
|
after: "\n"
|
|
43816
44546
|
}
|
|
43817
|
-
})), !
|
|
43818
|
-
for (let e = 0; e <
|
|
43819
|
-
const
|
|
43820
|
-
|
|
44547
|
+
})), !p.length) return;
|
|
44548
|
+
for (let e = 0; e < p.length - 1; e++) {
|
|
44549
|
+
const r = p[e], t = p[e + 1];
|
|
44550
|
+
r.append(t);
|
|
43821
44551
|
}
|
|
43822
|
-
const l =
|
|
43823
|
-
|
|
43824
|
-
}),
|
|
43825
|
-
const
|
|
43826
|
-
|
|
43827
|
-
|
|
44552
|
+
const l = p[0], d = p[p.length - 1], c = r.parent.clone();
|
|
44553
|
+
c.removeAll(), c.raws.before = "\n", cloneDeclarations(c, r), r.remove(), o.lastConditionParams.support = a, o.lastConditionalRule = c, d.append(c), o.conditionalRules.push(l);
|
|
44554
|
+
}), r.walk((r) => {
|
|
44555
|
+
const t = e.get(r);
|
|
44556
|
+
t && 0 !== t.conditionalRules.length && t.conditionalRules.reverse().forEach((e) => {
|
|
44557
|
+
r.after(e);
|
|
43828
44558
|
});
|
|
43829
44559
|
});
|
|
43830
44560
|
}
|
|
@@ -43833,7 +44563,7 @@ const t$14 = /var\(/i, i$8 = /^initial$/i, o$23 = /^\s*$/, creator$51 = () => ({
|
|
|
43833
44563
|
});
|
|
43834
44564
|
creator$51.postcss = !0;
|
|
43835
44565
|
//#endregion
|
|
43836
|
-
//#region ../../node_modules/.pnpm/@csstools+utilities@3.0.0_postcss@8.5.
|
|
44566
|
+
//#region ../../node_modules/.pnpm/@csstools+utilities@3.0.0_postcss@8.5.16/node_modules/@csstools/utilities/dist/index.mjs
|
|
43837
44567
|
function hasFallback$1(e) {
|
|
43838
44568
|
const t = e.parent;
|
|
43839
44569
|
if (!t) return !1;
|
|
@@ -43853,7 +44583,7 @@ function hasSupportsAtRuleAncestor(e, t) {
|
|
|
43853
44583
|
return !1;
|
|
43854
44584
|
}
|
|
43855
44585
|
//#endregion
|
|
43856
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-alpha-function@2.0.
|
|
44586
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-alpha-function@2.0.7_postcss@8.5.16/node_modules/@csstools/postcss-alpha-function/dist/index.mjs
|
|
43857
44587
|
const b$1 = /\balpha\(/i, m$9 = /^alpha$/i, w$3 = /* @__PURE__ */ new Set([
|
|
43858
44588
|
"srgb",
|
|
43859
44589
|
"srgb-linear",
|
|
@@ -47327,7 +48057,7 @@ var require_selectors$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
47327
48057
|
__exportStar(require_guards$1(), exports);
|
|
47328
48058
|
}));
|
|
47329
48059
|
//#endregion
|
|
47330
|
-
//#region ../../node_modules/.pnpm/postcss-pseudo-class-any-link@11.0.0_postcss@8.5.
|
|
48060
|
+
//#region ../../node_modules/.pnpm/postcss-pseudo-class-any-link@11.0.0_postcss@8.5.16/node_modules/postcss-pseudo-class-any-link/dist/index.mjs
|
|
47331
48061
|
var import_dist$1 = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
47332
48062
|
var __createBinding = exports && exports.__createBinding || (Object.create ? (function(o, m, k, k2) {
|
|
47333
48063
|
if (k2 === void 0) k2 = k;
|
|
@@ -47474,7 +48204,7 @@ const creator$50 = (e) => {
|
|
|
47474
48204
|
};
|
|
47475
48205
|
creator$50.postcss = !0;
|
|
47476
48206
|
//#endregion
|
|
47477
|
-
//#region ../../node_modules/.pnpm/css-blank-pseudo@8.0.1_postcss@8.5.
|
|
48207
|
+
//#region ../../node_modules/.pnpm/css-blank-pseudo@8.0.1_postcss@8.5.16/node_modules/css-blank-pseudo/dist/index.mjs
|
|
47478
48208
|
const s$14 = [
|
|
47479
48209
|
" ",
|
|
47480
48210
|
">",
|
|
@@ -47708,7 +48438,7 @@ function selectorNodeContainsNothingOrOnlyUniversal$1(e) {
|
|
|
47708
48438
|
return 0 === t.length || 1 === t.length && "universal" === t[0].type;
|
|
47709
48439
|
}
|
|
47710
48440
|
//#endregion
|
|
47711
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-cascade-layers@6.0.0_postcss@8.5.
|
|
48441
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-cascade-layers@6.0.0_postcss@8.5.16/node_modules/@csstools/postcss-cascade-layers/dist/index.mjs
|
|
47712
48442
|
const t$11 = "csstools-invalid-layer", a$5 = "csstools-layer-with-selector-rules", s$13 = "6efdb677-bb05-44e5-840f-29d2175862fd", n$8 = "b147acf6-11a6-4338-a4d0-80aef4cd1a2f", o$21 = ["media", "supports"], l$7 = ["keyframes"], i$7 = /^revert-layer$/i, c$5 = /^import$/i, u$8 = /^layer$/i, m$8 = /layer/i, y$3 = /* @__PURE__ */ new Set([
|
|
47713
48443
|
"layer",
|
|
47714
48444
|
"supports",
|
|
@@ -48020,7 +48750,7 @@ const creator$48 = (a) => {
|
|
|
48020
48750
|
};
|
|
48021
48751
|
creator$48.postcss = !0;
|
|
48022
48752
|
//#endregion
|
|
48023
|
-
//#region ../../node_modules/.pnpm/postcss-attribute-case-insensitive@8.0.0_postcss@8.5.
|
|
48753
|
+
//#region ../../node_modules/.pnpm/postcss-attribute-case-insensitive@8.0.0_postcss@8.5.16/node_modules/postcss-attribute-case-insensitive/dist/index.mjs
|
|
48024
48754
|
function nodeIsInsensitiveAttribute(e) {
|
|
48025
48755
|
return "attribute" === e.type && (e.insensitive ?? !1);
|
|
48026
48756
|
}
|
|
@@ -48094,7 +48824,7 @@ const creator$47 = (t) => {
|
|
|
48094
48824
|
};
|
|
48095
48825
|
creator$47.postcss = !0;
|
|
48096
48826
|
//#endregion
|
|
48097
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function@5.0.
|
|
48827
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function@5.0.6_postcss@8.5.16/node_modules/@csstools/postcss-color-function/dist/index.mjs
|
|
48098
48828
|
var import_postcss_clamp = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
48099
48829
|
let valueParser$1 = __require("postcss-value-parser");
|
|
48100
48830
|
function parseValue(value) {
|
|
@@ -48199,7 +48929,7 @@ const postcssPlugin$15 = (o) => {
|
|
|
48199
48929
|
};
|
|
48200
48930
|
postcssPlugin$15.postcss = !0;
|
|
48201
48931
|
//#endregion
|
|
48202
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function-display-p3-linear@2.0.
|
|
48932
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function-display-p3-linear@2.0.6_postcss@8.5.16/node_modules/@csstools/postcss-color-function-display-p3-linear/dist/index.mjs
|
|
48203
48933
|
const m$6 = /\bdisplay-p3-linear\b/i, f$7 = /^color$/i, basePlugin$14 = (s) => ({
|
|
48204
48934
|
postcssPlugin: "postcss-color-function-display-p3-linear",
|
|
48205
48935
|
Declaration(g) {
|
|
@@ -48228,7 +48958,7 @@ const postcssPlugin$14 = (o) => {
|
|
|
48228
48958
|
};
|
|
48229
48959
|
postcssPlugin$14.postcss = !0;
|
|
48230
48960
|
//#endregion
|
|
48231
|
-
//#region ../../node_modules/.pnpm/postcss-color-functional-notation@8.0.
|
|
48961
|
+
//#region ../../node_modules/.pnpm/postcss-color-functional-notation@8.0.6_postcss@8.5.16/node_modules/postcss-color-functional-notation/dist/index.mjs
|
|
48232
48962
|
const m$5 = /^(?:rgb|hsl)a?$/i, f$6 = /\b(?:rgb|hsl)a?\(/i, basePlugin$13 = (s) => ({
|
|
48233
48963
|
postcssPlugin: "postcss-color-functional-notation",
|
|
48234
48964
|
Declaration(v) {
|
|
@@ -48257,7 +48987,7 @@ const postcssPlugin$13 = (o) => {
|
|
|
48257
48987
|
};
|
|
48258
48988
|
postcssPlugin$13.postcss = !0;
|
|
48259
48989
|
//#endregion
|
|
48260
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-mix-function@4.0.
|
|
48990
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-color-mix-function@4.0.6_postcss@8.5.16/node_modules/@csstools/postcss-color-mix-function/dist/index.mjs
|
|
48261
48991
|
const f$5 = /\bcolor-mix\(/i, g$6 = /^color-mix$/i, basePlugin$12 = (s) => ({
|
|
48262
48992
|
postcssPlugin: "postcss-color-mix-function",
|
|
48263
48993
|
Declaration(v) {
|
|
@@ -48293,7 +49023,7 @@ const postcssPlugin$12 = (e) => {
|
|
|
48293
49023
|
};
|
|
48294
49024
|
postcssPlugin$12.postcss = !0;
|
|
48295
49025
|
//#endregion
|
|
48296
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-mix-variadic-function-arguments@2.0.
|
|
49026
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-color-mix-variadic-function-arguments@2.0.6_postcss@8.5.16/node_modules/@csstools/postcss-color-mix-variadic-function-arguments/dist/index.mjs
|
|
48297
49027
|
const f$4 = /\bcolor-mix\(/i, g$5 = /^color-mix$/i, basePlugin$11 = (s) => ({
|
|
48298
49028
|
postcssPlugin: "color-mix-variadic-function-arguments",
|
|
48299
49029
|
Declaration(v) {
|
|
@@ -48329,7 +49059,7 @@ const postcssPlugin$11 = (e) => {
|
|
|
48329
49059
|
};
|
|
48330
49060
|
postcssPlugin$11.postcss = !0;
|
|
48331
49061
|
//#endregion
|
|
48332
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-container-rule-prelude-list@1.0.1_postcss@8.5.
|
|
49062
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-container-rule-prelude-list@1.0.1_postcss@8.5.16/node_modules/@csstools/postcss-container-rule-prelude-list/dist/index.mjs
|
|
48333
49063
|
const t$10 = /^container$/i, creator$46 = (o) => {
|
|
48334
49064
|
const a = Object.assign({ preserve: !1 }, o);
|
|
48335
49065
|
return {
|
|
@@ -48346,7 +49076,7 @@ const t$10 = /^container$/i, creator$46 = (o) => {
|
|
|
48346
49076
|
};
|
|
48347
49077
|
creator$46.postcss = !0;
|
|
48348
49078
|
//#endregion
|
|
48349
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-content-alt-text@3.0.
|
|
49079
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-content-alt-text@3.0.2_postcss@8.5.16/node_modules/@csstools/postcss-content-alt-text/dist/index.mjs
|
|
48350
49080
|
function transform$3(s, t) {
|
|
48351
49081
|
const e = s[0];
|
|
48352
49082
|
if (!e.length) return "";
|
|
@@ -48391,7 +49121,7 @@ const creator$45 = (t) => {
|
|
|
48391
49121
|
};
|
|
48392
49122
|
creator$45.postcss = !0;
|
|
48393
49123
|
//#endregion
|
|
48394
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-contrast-color-function@3.0.
|
|
49124
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-contrast-color-function@3.0.6_postcss@8.5.16/node_modules/@csstools/postcss-contrast-color-function/dist/index.mjs
|
|
48395
49125
|
const u$6 = /\bcontrast-color\(/i, m$4 = /^contrast-color$/i, basePlugin$9 = (s) => ({
|
|
48396
49126
|
postcssPlugin: "postcss-contrast-color-function",
|
|
48397
49127
|
prepare: () => ({
|
|
@@ -50322,7 +51052,7 @@ var b;
|
|
|
50322
51052
|
e.All = "all", e.Print = "print", e.Screen = "screen", e.Tty = "tty", e.Tv = "tv", e.Projection = "projection", e.Handheld = "handheld", e.Braille = "braille", e.Embossed = "embossed", e.Aural = "aural", e.Speech = "speech";
|
|
50323
51053
|
})(b || (b = {}));
|
|
50324
51054
|
//#endregion
|
|
50325
|
-
//#region ../../node_modules/.pnpm/postcss-custom-media@12.0.1_postcss@8.5.
|
|
51055
|
+
//#region ../../node_modules/.pnpm/postcss-custom-media@12.0.1_postcss@8.5.16/node_modules/postcss-custom-media/dist/index.mjs
|
|
50326
51056
|
const C$2 = parse$1("csstools-implicit-layer")[0];
|
|
50327
51057
|
function collectCascadeLayerOrder$2(t) {
|
|
50328
51058
|
const n = /* @__PURE__ */ new Map(), a = /* @__PURE__ */ new Map(), o = [];
|
|
@@ -50749,7 +51479,7 @@ const creator$44 = (e) => {
|
|
|
50749
51479
|
};
|
|
50750
51480
|
creator$44.postcss = !0;
|
|
50751
51481
|
//#endregion
|
|
50752
|
-
//#region ../../node_modules/.pnpm/postcss-custom-properties@15.0.1_postcss@8.5.
|
|
51482
|
+
//#region ../../node_modules/.pnpm/postcss-custom-properties@15.0.1_postcss@8.5.16/node_modules/postcss-custom-properties/dist/index.mjs
|
|
50753
51483
|
const o$20 = parse$1("csstools-implicit-layer")[0];
|
|
50754
51484
|
function collectCascadeLayerOrder$1(r) {
|
|
50755
51485
|
const n = /* @__PURE__ */ new Map(), s = /* @__PURE__ */ new Map(), a = [];
|
|
@@ -50818,7 +51548,7 @@ function isProcessableRule(e) {
|
|
|
50818
51548
|
}
|
|
50819
51549
|
return !0;
|
|
50820
51550
|
}
|
|
50821
|
-
const l$6 = /^html$/i, u$5 = /^:where\(html\)$/i, p$1 = /^:root$/i, f$3 = /^:where\(:root\)$/i, d$
|
|
51551
|
+
const l$6 = /^html$/i, u$5 = /^:where\(html\)$/i, p$1 = /^:root$/i, f$3 = /^:where\(:root\)$/i, d$1 = /(html|:root)/i, m$3 = /^var$/i;
|
|
50822
51552
|
function isVarFunction(e) {
|
|
50823
51553
|
return "function" === e.type && m$3.test(e.value) && e.nodes?.length > 0;
|
|
50824
51554
|
}
|
|
@@ -50992,7 +51722,7 @@ function buildCustomPropertiesMap(e, t, n) {
|
|
|
50992
51722
|
function getCustomPropertiesFromRoot(e, t) {
|
|
50993
51723
|
const r = /* @__PURE__ */ new Map(), n = /* @__PURE__ */ new Map(), o = collectCascadeLayerOrder$1(e);
|
|
50994
51724
|
return e.walkRules((e) => {
|
|
50995
|
-
d$
|
|
51725
|
+
d$1.test(e.selector) && e.nodes?.length && isProcessableRule(e) && (isBlockIgnored(e) || e.selectors.forEach((t) => {
|
|
50996
51726
|
let s;
|
|
50997
51727
|
if (u$5.test(t) || f$3.test(t)) s = 0;
|
|
50998
51728
|
else if (l$6.test(t)) s = 1;
|
|
@@ -51060,7 +51790,7 @@ const g$4 = /\bvar\(|\(top: var\(--f\)/i, creator$43 = (e) => {
|
|
|
51060
51790
|
};
|
|
51061
51791
|
creator$43.postcss = !0;
|
|
51062
51792
|
//#endregion
|
|
51063
|
-
//#region ../../node_modules/.pnpm/postcss-custom-selectors@9.0.1_postcss@8.5.
|
|
51793
|
+
//#region ../../node_modules/.pnpm/postcss-custom-selectors@9.0.1_postcss@8.5.16/node_modules/postcss-custom-selectors/dist/index.mjs
|
|
51064
51794
|
const s$11 = parse$1("csstools-implicit-layer")[0];
|
|
51065
51795
|
function collectCascadeLayerOrder(e) {
|
|
51066
51796
|
const o = /* @__PURE__ */ new Map(), n = /* @__PURE__ */ new Map(), a = [];
|
|
@@ -51196,7 +51926,7 @@ const creator$42 = (e) => {
|
|
|
51196
51926
|
};
|
|
51197
51927
|
creator$42.postcss = !0;
|
|
51198
51928
|
//#endregion
|
|
51199
|
-
//#region ../../node_modules/.pnpm/postcss-dir-pseudo-class@10.0.0_postcss@8.5.
|
|
51929
|
+
//#region ../../node_modules/.pnpm/postcss-dir-pseudo-class@10.0.0_postcss@8.5.16/node_modules/postcss-dir-pseudo-class/dist/index.mjs
|
|
51200
51930
|
const creator$41 = (t) => {
|
|
51201
51931
|
const r = Object.assign({
|
|
51202
51932
|
dir: null,
|
|
@@ -51267,7 +51997,7 @@ const creator$41 = (t) => {
|
|
|
51267
51997
|
};
|
|
51268
51998
|
creator$41.postcss = !0;
|
|
51269
51999
|
//#endregion
|
|
51270
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-normalize-display-values@5.0.1_postcss@8.5.
|
|
52000
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-normalize-display-values@5.0.1_postcss@8.5.16/node_modules/@csstools/postcss-normalize-display-values/dist/index.mjs
|
|
51271
52001
|
var l$5 = /* @__PURE__ */ new Map([
|
|
51272
52002
|
["flow", "block"],
|
|
51273
52003
|
["block,flow", "block"],
|
|
@@ -51335,7 +52065,7 @@ const e$18 = /^display$/i, t$9 = /\b\s\b/, creator$40 = (i) => {
|
|
|
51335
52065
|
};
|
|
51336
52066
|
creator$40.postcss = !0;
|
|
51337
52067
|
//#endregion
|
|
51338
|
-
//#region ../../node_modules/.pnpm/postcss-double-position-gradients@7.0.
|
|
52068
|
+
//#region ../../node_modules/.pnpm/postcss-double-position-gradients@7.0.2_postcss@8.5.16/node_modules/postcss-double-position-gradients/dist/index.mjs
|
|
51339
52069
|
const o$18 = /(?:repeating-)?(?:conic|linear|radial)-gradient\(/i, i$5 = /^(?:repeating-)?(?:conic|linear|radial)-gradient$/i, n$7 = [
|
|
51340
52070
|
"at",
|
|
51341
52071
|
"bottom",
|
|
@@ -51414,7 +52144,7 @@ const postcssPlugin$9 = (t) => {
|
|
|
51414
52144
|
};
|
|
51415
52145
|
postcssPlugin$9.postcss = !0;
|
|
51416
52146
|
//#endregion
|
|
51417
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-exponential-functions@3.0.3_postcss@8.5.
|
|
52147
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-exponential-functions@3.0.3_postcss@8.5.16/node_modules/@csstools/postcss-exponential-functions/dist/index.mjs
|
|
51418
52148
|
const s$10 = /(?<![-\w])(?:exp|hypot|log|pow|sqrt)\(/i, creator$39 = (o) => {
|
|
51419
52149
|
const t = Object.assign({ preserve: !1 }, o);
|
|
51420
52150
|
return {
|
|
@@ -51428,7 +52158,7 @@ const s$10 = /(?<![-\w])(?:exp|hypot|log|pow|sqrt)\(/i, creator$39 = (o) => {
|
|
|
51428
52158
|
};
|
|
51429
52159
|
creator$39.postcss = !0;
|
|
51430
52160
|
//#endregion
|
|
51431
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-float-and-clear@4.0.0_postcss@8.5.
|
|
52161
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-float-and-clear@4.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-float-and-clear/dist/index.mjs
|
|
51432
52162
|
const t$8 = "inline-start", o$17 = "inline-end";
|
|
51433
52163
|
var e$17, n$6;
|
|
51434
52164
|
function directionFlowToAxes$2(t) {
|
|
@@ -51472,7 +52202,7 @@ const creator$38 = (n) => {
|
|
|
51472
52202
|
};
|
|
51473
52203
|
creator$38.postcss = !0;
|
|
51474
52204
|
//#endregion
|
|
51475
|
-
//#region ../../node_modules/.pnpm/postcss-focus-visible@11.0.0_postcss@8.5.
|
|
52205
|
+
//#region ../../node_modules/.pnpm/postcss-focus-visible@11.0.0_postcss@8.5.16/node_modules/postcss-focus-visible/dist/index.mjs
|
|
51476
52206
|
const s$9 = "js-focus-visible", o$16 = ":focus-visible", creator$37 = (t) => {
|
|
51477
52207
|
const r = Object.assign({
|
|
51478
52208
|
preserve: !0,
|
|
@@ -51526,7 +52256,7 @@ const s$9 = "js-focus-visible", o$16 = ":focus-visible", creator$37 = (t) => {
|
|
|
51526
52256
|
};
|
|
51527
52257
|
creator$37.postcss = !0;
|
|
51528
52258
|
//#endregion
|
|
51529
|
-
//#region ../../node_modules/.pnpm/postcss-focus-within@10.0.0_postcss@8.5.
|
|
52259
|
+
//#region ../../node_modules/.pnpm/postcss-focus-within@10.0.0_postcss@8.5.16/node_modules/postcss-focus-within/dist/index.mjs
|
|
51530
52260
|
const s$8 = [
|
|
51531
52261
|
" ",
|
|
51532
52262
|
">",
|
|
@@ -51601,7 +52331,7 @@ const t$7 = "js-focus-within", n$5 = ":focus-within", creator$36 = (s) => {
|
|
|
51601
52331
|
};
|
|
51602
52332
|
creator$36.postcss = !0;
|
|
51603
52333
|
//#endregion
|
|
51604
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-font-format-keywords@5.0.0_postcss@8.5.
|
|
52334
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-font-format-keywords@5.0.0_postcss@8.5.16/node_modules/@csstools/postcss-font-format-keywords/dist/index.mjs
|
|
51605
52335
|
const t$6 = [
|
|
51606
52336
|
"woff",
|
|
51607
52337
|
"truetype",
|
|
@@ -51636,7 +52366,7 @@ const t$6 = [
|
|
|
51636
52366
|
};
|
|
51637
52367
|
creator$35.postcss = !0;
|
|
51638
52368
|
//#endregion
|
|
51639
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-font-width-property@1.0.0_postcss@8.5.
|
|
52369
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-font-width-property@1.0.0_postcss@8.5.16/node_modules/@csstools/postcss-font-width-property/dist/index.mjs
|
|
51640
52370
|
var import_postcss_font_variant = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
51641
52371
|
/**
|
|
51642
52372
|
* font variant convertion map
|
|
@@ -51747,7 +52477,7 @@ function hasFallback(t) {
|
|
|
51747
52477
|
}
|
|
51748
52478
|
creator$34.postcss = !0;
|
|
51749
52479
|
//#endregion
|
|
51750
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-gamut-mapping@3.0.
|
|
52480
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-gamut-mapping@3.0.6_postcss@8.5.16/node_modules/@csstools/postcss-gamut-mapping/dist/index.mjs
|
|
51751
52481
|
const p = /\bcolor-gamut\b/i;
|
|
51752
52482
|
function hasConditionalAncestor(e) {
|
|
51753
52483
|
let o = e.parent;
|
|
@@ -51765,7 +52495,7 @@ function sameProperty(e) {
|
|
|
51765
52495
|
}
|
|
51766
52496
|
return t;
|
|
51767
52497
|
}
|
|
51768
|
-
const d
|
|
52498
|
+
const d = /\b(?:color|lab|lch|oklab|oklch)\(/i, u$4 = /^(?:color|lab|lch|oklab|oklch)$/i, creator$33 = () => ({
|
|
51769
52499
|
postcssPlugin: "postcss-gamut-mapping",
|
|
51770
52500
|
prepare() {
|
|
51771
52501
|
const p = /* @__PURE__ */ new WeakMap(), m = /* @__PURE__ */ new WeakSet();
|
|
@@ -51774,7 +52504,7 @@ const d$1 = /\b(?:color|lab|lch|oklab|oklch)\(/i, u$4 = /^(?:color|lab|lch|oklab
|
|
|
51774
52504
|
OnceExit(f, { postcss: h }) {
|
|
51775
52505
|
f.walkDecls((f) => {
|
|
51776
52506
|
if (m.has(f)) return;
|
|
51777
|
-
if (!d
|
|
52507
|
+
if (!d.test(f.value)) return;
|
|
51778
52508
|
if (!f.parent || hasConditionalAncestor(f)) return;
|
|
51779
52509
|
const g = sameProperty(f).map((p, d) => {
|
|
51780
52510
|
m.add(p);
|
|
@@ -51842,7 +52572,7 @@ const d$1 = /\b(?:color|lab|lch|oklab|oklch)\(/i, u$4 = /^(?:color|lab|lch|oklab
|
|
|
51842
52572
|
});
|
|
51843
52573
|
creator$33.postcss = !0;
|
|
51844
52574
|
//#endregion
|
|
51845
|
-
//#region ../../node_modules/.pnpm/postcss-gap-properties@7.0.0_postcss@8.5.
|
|
52575
|
+
//#region ../../node_modules/.pnpm/postcss-gap-properties@7.0.0_postcss@8.5.16/node_modules/postcss-gap-properties/dist/index.mjs
|
|
51846
52576
|
const e$13 = [
|
|
51847
52577
|
"column-gap",
|
|
51848
52578
|
"gap",
|
|
@@ -51861,7 +52591,7 @@ const e$13 = [
|
|
|
51861
52591
|
};
|
|
51862
52592
|
creator$32.postcss = !0;
|
|
51863
52593
|
//#endregion
|
|
51864
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-gradients-interpolation-method@6.0.
|
|
52594
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-gradients-interpolation-method@6.0.6_postcss@8.5.16/node_modules/@csstools/postcss-gradients-interpolation-method/dist/index.mjs
|
|
51865
52595
|
const x = /(?:repeating-)?(?:linear|radial|conic)-gradient\(/i, W = /\bin\b/i, P$1 = { test: (o) => x.test(o) && W.test(o) }, A$1 = /^(repeating-)?(linear|radial|conic)-gradient$/i;
|
|
51866
52596
|
function interpolateColorsInColorStopsList(o, e, t, s = !1) {
|
|
51867
52597
|
const l = [], a = [];
|
|
@@ -52149,7 +52879,7 @@ const postcssPlugin$8 = (e) => {
|
|
|
52149
52879
|
};
|
|
52150
52880
|
postcssPlugin$8.postcss = !0;
|
|
52151
52881
|
//#endregion
|
|
52152
|
-
//#region ../../node_modules/.pnpm/css-has-pseudo@8.0.0_postcss@8.5.
|
|
52882
|
+
//#region ../../node_modules/.pnpm/css-has-pseudo@8.0.0_postcss@8.5.16/node_modules/css-has-pseudo/dist/index.mjs
|
|
52153
52883
|
function encodeCSS(e) {
|
|
52154
52884
|
if ("" === e) return "";
|
|
52155
52885
|
let t, s = "";
|
|
@@ -52260,7 +52990,7 @@ function isWithinSupportCheck(e) {
|
|
|
52260
52990
|
}
|
|
52261
52991
|
creator$31.postcss = !0;
|
|
52262
52992
|
//#endregion
|
|
52263
|
-
//#region ../../node_modules/.pnpm/postcss-color-hex-alpha@11.0.0_postcss@8.5.
|
|
52993
|
+
//#region ../../node_modules/.pnpm/postcss-color-hex-alpha@11.0.0_postcss@8.5.16/node_modules/postcss-color-hex-alpha/dist/index.mjs
|
|
52264
52994
|
const creator$30 = (a) => {
|
|
52265
52995
|
const o = Object.assign({ preserve: !1 }, a);
|
|
52266
52996
|
return {
|
|
@@ -52290,7 +53020,7 @@ function hexa2rgba(e) {
|
|
|
52290
53020
|
e.value = `rgba(${r},${l},${n},${c})`;
|
|
52291
53021
|
}
|
|
52292
53022
|
//#endregion
|
|
52293
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-hwb-function@5.0.
|
|
53023
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-hwb-function@5.0.6_postcss@8.5.16/node_modules/@csstools/postcss-hwb-function/dist/index.mjs
|
|
52294
53024
|
const u$3 = /\bhwb\(/i, m$2 = /^hwb$/i, basePlugin$6 = (s) => ({
|
|
52295
53025
|
postcssPlugin: "postcss-hwb-function",
|
|
52296
53026
|
Declaration(f) {
|
|
@@ -52319,7 +53049,7 @@ const postcssPlugin$7 = (o) => {
|
|
|
52319
53049
|
};
|
|
52320
53050
|
postcssPlugin$7.postcss = !0;
|
|
52321
53051
|
//#endregion
|
|
52322
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-ic-unit@5.0.
|
|
53052
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-ic-unit@5.0.2_postcss@8.5.16/node_modules/@csstools/postcss-ic-unit/dist/index.mjs
|
|
52323
53053
|
const o$13 = /ic\b/i, i$4 = /\(font-size: \d+ic\)/i, basePlugin$5 = (s) => ({
|
|
52324
53054
|
postcssPlugin: "postcss-ic-unit",
|
|
52325
53055
|
Declaration(n) {
|
|
@@ -52349,7 +53079,7 @@ const postcssPlugin$6 = (e) => {
|
|
|
52349
53079
|
};
|
|
52350
53080
|
postcssPlugin$6.postcss = !0;
|
|
52351
53081
|
//#endregion
|
|
52352
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-image-function@1.0.
|
|
53082
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-image-function@1.0.1_postcss@8.5.16/node_modules/@csstools/postcss-image-function/dist/index.mjs
|
|
52353
53083
|
const u$2 = /\bimage\(/i, g$3 = /^image$/i, basePlugin$4 = (e) => ({
|
|
52354
53084
|
postcssPlugin: "postcss-image-function",
|
|
52355
53085
|
Declaration(v) {
|
|
@@ -52392,7 +53122,7 @@ const postcssPlugin$5 = (s) => {
|
|
|
52392
53122
|
};
|
|
52393
53123
|
postcssPlugin$5.postcss = !0;
|
|
52394
53124
|
//#endregion
|
|
52395
|
-
//#region ../../node_modules/.pnpm/postcss-image-set-function@8.0.0_postcss@8.5.
|
|
53125
|
+
//#region ../../node_modules/.pnpm/postcss-image-set-function@8.0.0_postcss@8.5.16/node_modules/postcss-image-set-function/dist/index.mjs
|
|
52396
53126
|
function isComma$1(e) {
|
|
52397
53127
|
return !!e && "div" === e.type && "," === e.value;
|
|
52398
53128
|
}
|
|
@@ -55572,7 +56302,7 @@ function selectorNodeContainsNothingOrOnlyUniversal(e) {
|
|
|
55572
56302
|
return 0 === t.length || 1 === t.length && "universal" === t[0].type;
|
|
55573
56303
|
}
|
|
55574
56304
|
//#endregion
|
|
55575
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-is-pseudo-class@6.0.0_postcss@8.5.
|
|
56305
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-is-pseudo-class@6.0.0_postcss@8.5.16/node_modules/@csstools/postcss-is-pseudo-class/dist/index.mjs
|
|
55576
56306
|
function alwaysValidSelector(s) {
|
|
55577
56307
|
const o = (0, import_dist.default)().astSync(s);
|
|
55578
56308
|
let n = !0;
|
|
@@ -55841,7 +56571,7 @@ const n$3 = /:is\(/i, creator$28 = (e) => {
|
|
|
55841
56571
|
};
|
|
55842
56572
|
creator$28.postcss = !0;
|
|
55843
56573
|
//#endregion
|
|
55844
|
-
//#region ../../node_modules/.pnpm/postcss-lab-function@8.0.
|
|
56574
|
+
//#region ../../node_modules/.pnpm/postcss-lab-function@8.0.6_postcss@8.5.16/node_modules/postcss-lab-function/dist/index.mjs
|
|
55845
56575
|
const g$2 = /\b(?:lab|lch)\(/i, f$2 = /^(?:lab|lch)$/i, basePlugin$3 = (s) => ({
|
|
55846
56576
|
postcssPlugin: "postcss-lab-function",
|
|
55847
56577
|
Declaration(b) {
|
|
@@ -55877,7 +56607,7 @@ const postcssPlugin$4 = (e) => {
|
|
|
55877
56607
|
};
|
|
55878
56608
|
postcssPlugin$4.postcss = !0;
|
|
55879
56609
|
//#endregion
|
|
55880
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-light-dark-function@3.0.
|
|
56610
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-light-dark-function@3.0.2_postcss@8.5.16/node_modules/@csstools/postcss-light-dark-function/dist/index.mjs
|
|
55881
56611
|
const k$1 = "--csstools-color-scheme--light", D = "initial";
|
|
55882
56612
|
function toggleNameGenerator(e) {
|
|
55883
56613
|
return `--csstools-light-dark-toggle--${e}`;
|
|
@@ -56074,7 +56804,7 @@ const postcssPlugin$3 = (r) => {
|
|
|
56074
56804
|
};
|
|
56075
56805
|
postcssPlugin$3.postcss = !0;
|
|
56076
56806
|
//#endregion
|
|
56077
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overflow@3.0.0_postcss@8.5.
|
|
56807
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overflow@3.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-overflow/dist/index.mjs
|
|
56078
56808
|
var o$10;
|
|
56079
56809
|
function transformAxes$1(o, t) {
|
|
56080
56810
|
const e = t ? "-x" : "-y", i = t ? "-y" : "-x", n = o.prop.toLowerCase().replace("-inline", e).replace("-block", i), s = o.value;
|
|
@@ -56106,7 +56836,7 @@ const creator$27 = (t) => {
|
|
|
56106
56836
|
};
|
|
56107
56837
|
creator$27.postcss = !0;
|
|
56108
56838
|
//#endregion
|
|
56109
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overscroll-behavior@3.0.0_postcss@8.5.
|
|
56839
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overscroll-behavior@3.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-overscroll-behavior/dist/index.mjs
|
|
56110
56840
|
var o$9;
|
|
56111
56841
|
function transformAxes(o, t) {
|
|
56112
56842
|
const e = t ? "-x" : "-y", i = t ? "-y" : "-x", r = o.prop.toLowerCase().replace("-inline", e).replace("-block", i), s = o.value;
|
|
@@ -56138,7 +56868,7 @@ const creator$26 = (t) => {
|
|
|
56138
56868
|
};
|
|
56139
56869
|
creator$26.postcss = !0;
|
|
56140
56870
|
//#endregion
|
|
56141
|
-
//#region ../../node_modules/.pnpm/postcss-logical@9.0.0_postcss@8.5.
|
|
56871
|
+
//#region ../../node_modules/.pnpm/postcss-logical@9.0.0_postcss@8.5.16/node_modules/postcss-logical/dist/index.mjs
|
|
56142
56872
|
var e$9, n$2;
|
|
56143
56873
|
(function(r) {
|
|
56144
56874
|
r.Block = "block", r.Inline = "inline";
|
|
@@ -56498,7 +57228,7 @@ const l$4 = /var\(/i, creator$25 = (r) => {
|
|
|
56498
57228
|
};
|
|
56499
57229
|
creator$25.postcss = !0;
|
|
56500
57230
|
//#endregion
|
|
56501
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-resize@4.0.0_postcss@8.5.
|
|
57231
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-resize@4.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-resize/dist/index.mjs
|
|
56502
57232
|
var t$3, e$8, i$1;
|
|
56503
57233
|
function cloneDeclaration(o, t, e) {
|
|
56504
57234
|
o.parent && o.parent.some((o) => "decl" == o.type && o.prop === e && o.value === t) || o.cloneBefore({
|
|
@@ -56571,7 +57301,7 @@ const creator$24 = (o) => {
|
|
|
56571
57301
|
};
|
|
56572
57302
|
creator$24.postcss = !0;
|
|
56573
57303
|
//#endregion
|
|
56574
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-viewport-units@4.0.0_postcss@8.5.
|
|
57304
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-viewport-units@4.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-viewport-units/dist/index.mjs
|
|
56575
57305
|
var s$6;
|
|
56576
57306
|
function transform$1(t, o) {
|
|
56577
57307
|
const s = tokenizer({ css: t }), c = [];
|
|
@@ -56640,7 +57370,7 @@ const c$3 = /vb|vi/i, u$1 = { test(t) {
|
|
|
56640
57370
|
};
|
|
56641
57371
|
creator$23.postcss = !0;
|
|
56642
57372
|
//#endregion
|
|
56643
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-media-queries-aspect-ratio-number-values@4.0.0_postcss@8.5.
|
|
57373
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-media-queries-aspect-ratio-number-values@4.0.0_postcss@8.5.16/node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/dist/index.mjs
|
|
56644
57374
|
const w = 1e5, h$1 = 2147483647;
|
|
56645
57375
|
function transformMediaFeatureValue(t) {
|
|
56646
57376
|
if (Array.isArray(t.value) && matchesRatioExactly(t.value)) {
|
|
@@ -56931,7 +57661,7 @@ const creator$22 = (e) => {
|
|
|
56931
57661
|
};
|
|
56932
57662
|
creator$22.postcss = !0;
|
|
56933
57663
|
//#endregion
|
|
56934
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-media-minmax@3.0.3_postcss@8.5.
|
|
57664
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-media-minmax@3.0.3_postcss@8.5.16/node_modules/@csstools/postcss-media-minmax/dist/index.mjs
|
|
56935
57665
|
const C = {
|
|
56936
57666
|
width: "px",
|
|
56937
57667
|
height: "px",
|
|
@@ -57315,7 +58045,7 @@ const creator$21 = () => ({
|
|
|
57315
58045
|
});
|
|
57316
58046
|
creator$21.postcss = !0;
|
|
57317
58047
|
//#endregion
|
|
57318
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-mixins@1.0.0_postcss@8.5.
|
|
58048
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-mixins@1.0.0_postcss@8.5.16/node_modules/@csstools/postcss-mixins/dist/index.mjs
|
|
57319
58049
|
const o$7 = /^apply$/i;
|
|
57320
58050
|
function processableApplyRule(o) {
|
|
57321
58051
|
if (!o.params || !o.params.includes("--")) return !1;
|
|
@@ -57373,7 +58103,7 @@ const creator$20 = (e) => {
|
|
|
57373
58103
|
};
|
|
57374
58104
|
creator$20.postcss = !0;
|
|
57375
58105
|
//#endregion
|
|
57376
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-nested-calc@5.0.0_postcss@8.5.
|
|
58106
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-nested-calc@5.0.0_postcss@8.5.16/node_modules/@csstools/postcss-nested-calc/dist/index.mjs
|
|
57377
58107
|
const r$4 = /calc\(/gi;
|
|
57378
58108
|
const creator$19 = (s) => {
|
|
57379
58109
|
const o = Object.assign({ preserve: !0 }, s);
|
|
@@ -57505,7 +58235,7 @@ function isCompoundSelector$1(o) {
|
|
|
57505
58235
|
return 1 === o.length && !o[0].nodes.some((o) => "combinator" === o.type || import_dist$1.default.isPseudoElement(o));
|
|
57506
58236
|
}
|
|
57507
58237
|
//#endregion
|
|
57508
|
-
//#region ../../node_modules/.pnpm/postcss-nesting@14.0.0_postcss@8.5.
|
|
58238
|
+
//#region ../../node_modules/.pnpm/postcss-nesting@14.0.0_postcss@8.5.16/node_modules/postcss-nesting/dist/index.mjs
|
|
57509
58239
|
const r$3 = import_dist$1.default.pseudo({ value: ":is" });
|
|
57510
58240
|
function sortCompoundSelectorsInsideComplexSelector(t) {
|
|
57511
58241
|
if (!t || !t.nodes) return;
|
|
@@ -57880,7 +58610,7 @@ const creator$18 = (e) => {
|
|
|
57880
58610
|
};
|
|
57881
58611
|
creator$18.postcss = !0;
|
|
57882
58612
|
//#endregion
|
|
57883
|
-
//#region ../../node_modules/.pnpm/postcss-selector-not@9.0.0_postcss@8.5.
|
|
58613
|
+
//#region ../../node_modules/.pnpm/postcss-selector-not@9.0.0_postcss@8.5.16/node_modules/postcss-selector-not/dist/index.mjs
|
|
57884
58614
|
function cleanupWhitespace(e) {
|
|
57885
58615
|
e.spaces && (e.spaces.after = "", e.spaces.before = ""), e.nodes && e.nodes.length > 0 && (e.nodes[0] && e.nodes[0].spaces && (e.nodes[0].spaces.before = ""), e.nodes[e.nodes.length - 1] && e.nodes[e.nodes.length - 1].spaces && (e.nodes[e.nodes.length - 1].spaces.after = ""));
|
|
57886
58616
|
}
|
|
@@ -57911,7 +58641,7 @@ const creator$17 = () => ({
|
|
|
57911
58641
|
});
|
|
57912
58642
|
creator$17.postcss = !0;
|
|
57913
58643
|
//#endregion
|
|
57914
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-oklab-function@5.0.
|
|
58644
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-oklab-function@5.0.6_postcss@8.5.16/node_modules/@csstools/postcss-oklab-function/dist/index.mjs
|
|
57915
58645
|
const g$1 = /\b(?:oklab|oklch)\(/i, f$1 = /^(?:oklab|oklch)$/i, basePlugin$1 = (s) => ({
|
|
57916
58646
|
postcssPlugin: "postcss-oklab-function",
|
|
57917
58647
|
Declaration(b) {
|
|
@@ -57947,7 +58677,7 @@ const postcssPlugin$2 = (e) => {
|
|
|
57947
58677
|
};
|
|
57948
58678
|
postcssPlugin$2.postcss = !0;
|
|
57949
58679
|
//#endregion
|
|
57950
|
-
//#region ../../node_modules/.pnpm/postcss-overflow-shorthand@7.0.0_postcss@8.5.
|
|
58680
|
+
//#region ../../node_modules/.pnpm/postcss-overflow-shorthand@7.0.0_postcss@8.5.16/node_modules/postcss-overflow-shorthand/dist/index.mjs
|
|
57951
58681
|
var import_postcss_opacity_percentage = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
57952
58682
|
const doNothingValues = /* @__PURE__ */ new Set([
|
|
57953
58683
|
"inherit",
|
|
@@ -57996,7 +58726,7 @@ const creator$16 = (o) => {
|
|
|
57996
58726
|
};
|
|
57997
58727
|
creator$16.postcss = !0;
|
|
57998
58728
|
//#endregion
|
|
57999
|
-
//#region ../../node_modules/.pnpm/postcss-place@11.0.0_postcss@8.5.
|
|
58729
|
+
//#region ../../node_modules/.pnpm/postcss-place@11.0.0_postcss@8.5.16/node_modules/postcss-place/dist/index.mjs
|
|
58000
58730
|
var import_postcss_replace_overflow_wrap = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
58001
58731
|
module.exports = function(opts) {
|
|
58002
58732
|
opts = opts || {};
|
|
@@ -58041,7 +58771,7 @@ const t$2 = /^place-(content|items|self)/i, creator$15 = (e) => {
|
|
|
58041
58771
|
};
|
|
58042
58772
|
creator$15.postcss = !0;
|
|
58043
58773
|
//#endregion
|
|
58044
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-position-area-property@2.0.0_postcss@8.5.
|
|
58774
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-position-area-property@2.0.0_postcss@8.5.16/node_modules/@csstools/postcss-position-area-property/dist/index.mjs
|
|
58045
58775
|
const o$4 = /^position-area$/i, creator$14 = () => ({
|
|
58046
58776
|
postcssPlugin: "postcss-position-area-property",
|
|
58047
58777
|
Declaration(s) {
|
|
@@ -58053,7 +58783,7 @@ const o$4 = /^position-area$/i, creator$14 = () => ({
|
|
|
58053
58783
|
});
|
|
58054
58784
|
creator$14.postcss = !0;
|
|
58055
58785
|
//#endregion
|
|
58056
|
-
//#region ../../node_modules/.pnpm/css-prefers-color-scheme@11.0.0_postcss@8.5.
|
|
58786
|
+
//#region ../../node_modules/.pnpm/css-prefers-color-scheme@11.0.0_postcss@8.5.16/node_modules/css-prefers-color-scheme/dist/index.mjs
|
|
58057
58787
|
const e$4 = /\(\s*prefers-color-scheme\s*:\s*(dark|light)\s*\)/gi, s$4 = "(color: 48842621)", r$2 = "(color: 70318723)", creator$13 = (o) => {
|
|
58058
58788
|
const t = Object.assign({ preserve: !0 }, o);
|
|
58059
58789
|
return {
|
|
@@ -58074,7 +58804,7 @@ const e$4 = /\(\s*prefers-color-scheme\s*:\s*(dark|light)\s*\)/gi, s$4 = "(color
|
|
|
58074
58804
|
};
|
|
58075
58805
|
creator$13.postcss = !0;
|
|
58076
58806
|
//#endregion
|
|
58077
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-property-rule-prelude-list@2.0.0_postcss@8.5.
|
|
58807
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-property-rule-prelude-list@2.0.0_postcss@8.5.16/node_modules/@csstools/postcss-property-rule-prelude-list/dist/index.mjs
|
|
58078
58808
|
const o$3 = /^property$/i, creator$12 = () => ({
|
|
58079
58809
|
postcssPlugin: "postcss-property-rule-prelude-list",
|
|
58080
58810
|
AtRule(t) {
|
|
@@ -58088,7 +58818,7 @@ const o$3 = /^property$/i, creator$12 = () => ({
|
|
|
58088
58818
|
});
|
|
58089
58819
|
creator$12.postcss = !0;
|
|
58090
58820
|
//#endregion
|
|
58091
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-random-function@3.0.3_postcss@8.5.
|
|
58821
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-random-function@3.0.3_postcss@8.5.16/node_modules/@csstools/postcss-random-function/dist/index.mjs
|
|
58092
58822
|
const o$2 = String.fromCodePoint(0);
|
|
58093
58823
|
function randomCacheKeyFromPostcssDeclaration(e) {
|
|
58094
58824
|
let r = "", t = e.parent;
|
|
@@ -58125,7 +58855,7 @@ const r$1 = /(?<![-\w])(?:random)\(/i, creator$11 = (o) => {
|
|
|
58125
58855
|
};
|
|
58126
58856
|
creator$11.postcss = !0;
|
|
58127
58857
|
//#endregion
|
|
58128
|
-
//#region ../../node_modules/.pnpm/postcss-color-rebeccapurple@11.0.0_postcss@8.5.
|
|
58858
|
+
//#region ../../node_modules/.pnpm/postcss-color-rebeccapurple@11.0.0_postcss@8.5.16/node_modules/postcss-color-rebeccapurple/dist/index.mjs
|
|
58129
58859
|
const s$3 = /rebeccapurple/i, t$1 = /^rebeccapurple$/i, creator$10 = (o) => {
|
|
58130
58860
|
const c = Object.assign({ preserve: !1 }, o);
|
|
58131
58861
|
return {
|
|
@@ -58144,7 +58874,7 @@ const s$3 = /rebeccapurple/i, t$1 = /^rebeccapurple$/i, creator$10 = (o) => {
|
|
|
58144
58874
|
};
|
|
58145
58875
|
creator$10.postcss = !0;
|
|
58146
58876
|
//#endregion
|
|
58147
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-relative-color-syntax@4.0.
|
|
58877
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-relative-color-syntax@4.0.6_postcss@8.5.16/node_modules/@csstools/postcss-relative-color-syntax/dist/index.mjs
|
|
58148
58878
|
const g = /\b(?:rgb|rgba|hsl|hsla|hwb|lab|lch|oklch|oklab|color)\(/i, h = /\b(?:rgb|rgba|hsl|hsla|hwb|lab|lch|oklch|oklab|color)\(\s*from/i, m$1 = /^(?:rgb|rgba|hsl|hsla|hwb|lab|lch|oklch|oklab|color)$/i, y = /from/i, basePlugin = (s) => ({
|
|
58149
58879
|
postcssPlugin: "postcss-relative-color-syntax",
|
|
58150
58880
|
Declaration(f) {
|
|
@@ -58180,7 +58910,7 @@ const postcssPlugin$1 = (e) => {
|
|
|
58180
58910
|
};
|
|
58181
58911
|
postcssPlugin$1.postcss = !0;
|
|
58182
58912
|
//#endregion
|
|
58183
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-scope-pseudo-class@5.0.0_postcss@8.5.
|
|
58913
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-scope-pseudo-class@5.0.0_postcss@8.5.16/node_modules/@csstools/postcss-scope-pseudo-class/dist/index.mjs
|
|
58184
58914
|
const creator$9 = (s) => {
|
|
58185
58915
|
const r = Object.assign({ preserve: !1 }, s);
|
|
58186
58916
|
return {
|
|
@@ -58218,7 +58948,7 @@ const creator$9 = (s) => {
|
|
|
58218
58948
|
};
|
|
58219
58949
|
creator$9.postcss = !0;
|
|
58220
58950
|
//#endregion
|
|
58221
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-sign-functions@2.0.3_postcss@8.5.
|
|
58951
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-sign-functions@2.0.3_postcss@8.5.16/node_modules/@csstools/postcss-sign-functions/dist/index.mjs
|
|
58222
58952
|
const m = /(?<![-\w])(?:sign|abs)\(/i, f = /(?<![-\w])(?:sign|abs)\(/i, creator$8 = (o) => {
|
|
58223
58953
|
const n = Object.assign({ preserve: !1 }, o);
|
|
58224
58954
|
return {
|
|
@@ -58328,7 +59058,7 @@ function replacer(e) {
|
|
|
58328
59058
|
}
|
|
58329
59059
|
creator$8.postcss = !0;
|
|
58330
59060
|
//#endregion
|
|
58331
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-stepped-value-functions@5.0.3_postcss@8.5.
|
|
59061
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-stepped-value-functions@5.0.3_postcss@8.5.16/node_modules/@csstools/postcss-stepped-value-functions/dist/index.mjs
|
|
58332
59062
|
const s$2 = /(?<![-\w])(?:mod|rem|round)\(/i, creator$7 = (o) => {
|
|
58333
59063
|
const t = Object.assign({ preserve: !1 }, o);
|
|
58334
59064
|
return {
|
|
@@ -58345,7 +59075,7 @@ const s$2 = /(?<![-\w])(?:mod|rem|round)\(/i, creator$7 = (o) => {
|
|
|
58345
59075
|
};
|
|
58346
59076
|
creator$7.postcss = !0;
|
|
58347
59077
|
//#endregion
|
|
58348
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-syntax-descriptor-syntax-production@2.0.0_postcss@8.5.
|
|
59078
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-syntax-descriptor-syntax-production@2.0.0_postcss@8.5.16/node_modules/@csstools/postcss-syntax-descriptor-syntax-production/dist/index.mjs
|
|
58349
59079
|
const o$1 = /^property$/i, n$1 = /^syntax$/i, creator$6 = (i) => {
|
|
58350
59080
|
const p = Object.assign({ preserve: !1 }, i);
|
|
58351
59081
|
return {
|
|
@@ -58416,7 +59146,7 @@ const o$1 = /^property$/i, n$1 = /^syntax$/i, creator$6 = (i) => {
|
|
|
58416
59146
|
};
|
|
58417
59147
|
creator$6.postcss = !0;
|
|
58418
59148
|
//#endregion
|
|
58419
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-system-ui-font-family@2.0.0_postcss@8.5.
|
|
59149
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-system-ui-font-family@2.0.0_postcss@8.5.16/node_modules/@csstools/postcss-system-ui-font-family/dist/index.mjs
|
|
58420
59150
|
const a = /^font(?:-family)?$/i, c$2 = [
|
|
58421
59151
|
"system-ui",
|
|
58422
59152
|
"-apple-system",
|
|
@@ -58470,1009 +59200,7 @@ const u = c$2.join(","), creator$5 = (p) => {
|
|
|
58470
59200
|
};
|
|
58471
59201
|
creator$5.postcss = !0;
|
|
58472
59202
|
//#endregion
|
|
58473
|
-
//#region ../../node_modules/.pnpm/@csstools+
|
|
58474
|
-
/**
|
|
58475
|
-
* Bradford chromatic adaptation from D50 to D65
|
|
58476
|
-
*
|
|
58477
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58478
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58479
|
-
*/
|
|
58480
|
-
/**
|
|
58481
|
-
* Bradford chromatic adaptation from D65 to D50
|
|
58482
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58483
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58484
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_ChromAdapt.html
|
|
58485
|
-
*/
|
|
58486
|
-
/**
|
|
58487
|
-
* @param {number} hue - Hue as degrees 0..360
|
|
58488
|
-
* @param {number} sat - Saturation as percentage 0..100
|
|
58489
|
-
* @param {number} light - Lightness as percentage 0..100
|
|
58490
|
-
* @return {number[]} Array of sRGB components; in-gamut colors in range [0..1]
|
|
58491
|
-
*
|
|
58492
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58493
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/hslToRgb.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58494
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/hslToRgb.js
|
|
58495
|
-
*/
|
|
58496
|
-
/**
|
|
58497
|
-
* @param {number} hue - Hue as degrees 0..360
|
|
58498
|
-
* @param {number} white - Whiteness as percentage 0..100
|
|
58499
|
-
* @param {number} black - Blackness as percentage 0..100
|
|
58500
|
-
* @return {number[]} Array of RGB components 0..1
|
|
58501
|
-
*
|
|
58502
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58503
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/hwbToRgb.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58504
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/hwbToRgb.js
|
|
58505
|
-
*/
|
|
58506
|
-
/**
|
|
58507
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58508
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58509
|
-
*/
|
|
58510
|
-
/**
|
|
58511
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58512
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58513
|
-
*/
|
|
58514
|
-
/**
|
|
58515
|
-
* Convert Lab to D50-adapted XYZ
|
|
58516
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58517
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58518
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58519
|
-
*/
|
|
58520
|
-
/**
|
|
58521
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58522
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58523
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js
|
|
58524
|
-
*/
|
|
58525
|
-
/**
|
|
58526
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58527
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58528
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js
|
|
58529
|
-
*/
|
|
58530
|
-
/**
|
|
58531
|
-
* Given OKLab, convert to XYZ relative to D65
|
|
58532
|
-
*
|
|
58533
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58534
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58535
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js
|
|
58536
|
-
*/
|
|
58537
|
-
/**
|
|
58538
|
-
* Assuming XYZ is relative to D50, convert to CIE Lab
|
|
58539
|
-
* from CIE standard, which now defines these as a rational fraction
|
|
58540
|
-
*
|
|
58541
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58542
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58543
|
-
*/
|
|
58544
|
-
/**
|
|
58545
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58546
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58547
|
-
*
|
|
58548
|
-
* XYZ <-> LMS matrices recalculated for consistent reference white
|
|
58549
|
-
* @see https://github.com/w3c/csswg-drafts/issues/6642#issuecomment-943521484
|
|
58550
|
-
*/
|
|
58551
|
-
/**
|
|
58552
|
-
* Convert XYZ to linear-light rec2020
|
|
58553
|
-
*
|
|
58554
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58555
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58556
|
-
*/
|
|
58557
|
-
/**
|
|
58558
|
-
* Convert XYZ to linear-light P3
|
|
58559
|
-
*
|
|
58560
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58561
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58562
|
-
*/
|
|
58563
|
-
/**
|
|
58564
|
-
* Convert D50 XYZ to linear-light prophoto-rgb
|
|
58565
|
-
*
|
|
58566
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58567
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58568
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58569
|
-
*/
|
|
58570
|
-
/**
|
|
58571
|
-
* Convert XYZ to linear-light a98-rgb
|
|
58572
|
-
*
|
|
58573
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58574
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58575
|
-
*/
|
|
58576
|
-
/**
|
|
58577
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58578
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58579
|
-
*/
|
|
58580
|
-
/**
|
|
58581
|
-
* Convert an array of linear-light rec2020 RGB in the range 0.0-1.0
|
|
58582
|
-
* to gamma corrected form ITU-R BT.2020-2 p.4
|
|
58583
|
-
*
|
|
58584
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58585
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58586
|
-
*/
|
|
58587
|
-
/**
|
|
58588
|
-
* Convert an array of linear-light sRGB values in the range 0.0-1.0 to gamma corrected form
|
|
58589
|
-
* Extended transfer function:
|
|
58590
|
-
* For negative values, linear portion extends on reflection
|
|
58591
|
-
* of axis, then uses reflected pow below that
|
|
58592
|
-
*
|
|
58593
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58594
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58595
|
-
* @see https://en.wikipedia.org/wiki/SRGB
|
|
58596
|
-
*/
|
|
58597
|
-
/**
|
|
58598
|
-
* Convert an array of linear-light display-p3 RGB in the range 0.0-1.0
|
|
58599
|
-
* to gamma corrected form
|
|
58600
|
-
*
|
|
58601
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58602
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58603
|
-
*/
|
|
58604
|
-
/**
|
|
58605
|
-
* Convert an array of linear-light prophoto-rgb in the range 0.0-1.0
|
|
58606
|
-
* to gamma corrected form.
|
|
58607
|
-
* Transfer curve is gamma 1.8 with a small linear portion.
|
|
58608
|
-
*
|
|
58609
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58610
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58611
|
-
*/
|
|
58612
|
-
/**
|
|
58613
|
-
* Convert an array of linear-light a98-rgb in the range 0.0-1.0
|
|
58614
|
-
* to gamma corrected form. Negative values are also now accepted
|
|
58615
|
-
*
|
|
58616
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58617
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58618
|
-
*/
|
|
58619
|
-
/**
|
|
58620
|
-
* Convert an array of rec2020 RGB values in the range 0.0 - 1.0
|
|
58621
|
-
* to linear light (un-companded) form.
|
|
58622
|
-
* ITU-R BT.2020-2 p.4
|
|
58623
|
-
*
|
|
58624
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58625
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58626
|
-
*/
|
|
58627
|
-
/**
|
|
58628
|
-
* Convert an array of linear-light rec2020 values to CIE XYZ
|
|
58629
|
-
* using D65 (no chromatic adaptation)
|
|
58630
|
-
*
|
|
58631
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58632
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58633
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58634
|
-
*/
|
|
58635
|
-
/**
|
|
58636
|
-
* Convert an array of of sRGB values where in-gamut values are in the range
|
|
58637
|
-
* [0 - 1] to linear light (un-companded) form.
|
|
58638
|
-
* Extended transfer function:
|
|
58639
|
-
* For negative values, linear portion is extended on reflection of axis,
|
|
58640
|
-
* then reflected power function is used.
|
|
58641
|
-
*
|
|
58642
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58643
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58644
|
-
* @see https://en.wikipedia.org/wiki/SRGB
|
|
58645
|
-
*/
|
|
58646
|
-
/**
|
|
58647
|
-
* Convert an array of display-p3 RGB values in the range 0.0 - 1.0
|
|
58648
|
-
* to linear light (un-companded) form.
|
|
58649
|
-
*
|
|
58650
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58651
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58652
|
-
*/
|
|
58653
|
-
/**
|
|
58654
|
-
* Convert an array of linear-light display-p3 values to CIE XYZ
|
|
58655
|
-
* using D65 (no chromatic adaptation)
|
|
58656
|
-
*
|
|
58657
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58658
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58659
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58660
|
-
*/
|
|
58661
|
-
/**
|
|
58662
|
-
* Convert an array of prophoto-rgb values where in-gamut Colors are in the
|
|
58663
|
-
* range [0.0 - 1.0] to linear light (un-companded) form. Transfer curve is
|
|
58664
|
-
* gamma 1.8 with a small linear portion. Extended transfer function
|
|
58665
|
-
*
|
|
58666
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58667
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58668
|
-
*/
|
|
58669
|
-
/**
|
|
58670
|
-
* Convert an array of linear-light prophoto-rgb values to CIE D50 XYZ.
|
|
58671
|
-
* Matrix cannot be expressed in rational form, but is calculated to 64 bit accuracy.
|
|
58672
|
-
*
|
|
58673
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58674
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58675
|
-
* @see see https://github.com/w3c/csswg-drafts/issues/7675
|
|
58676
|
-
*/
|
|
58677
|
-
/**
|
|
58678
|
-
* Convert an array of linear-light a98-rgb values to CIE XYZ
|
|
58679
|
-
* http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58680
|
-
* has greater numerical precision than section 4.3.5.3 of
|
|
58681
|
-
* https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf
|
|
58682
|
-
* but the values below were calculated from first principles
|
|
58683
|
-
* from the chromaticity coordinates of R G B W
|
|
58684
|
-
*
|
|
58685
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58686
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58687
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58688
|
-
* @see https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf
|
|
58689
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/matrixmaker.html
|
|
58690
|
-
*/
|
|
58691
|
-
/**
|
|
58692
|
-
* Convert an array of linear-light sRGB values to CIE XYZ
|
|
58693
|
-
* using sRGB's own white, D65 (no chromatic adaptation)
|
|
58694
|
-
*
|
|
58695
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58696
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58697
|
-
*/
|
|
58698
|
-
/**
|
|
58699
|
-
* Convert an array of gamma-corrected sRGB values in the 0.0 to 1.0 range to HSL.
|
|
58700
|
-
*
|
|
58701
|
-
* @param {Color} RGB [r, g, b]
|
|
58702
|
-
* - Red component 0..1
|
|
58703
|
-
* - Green component 0..1
|
|
58704
|
-
* - Blue component 0..1
|
|
58705
|
-
* @return {number[]} Array of HSL values: Hue as degrees 0..360, Saturation and Lightness as percentages 0..100
|
|
58706
|
-
*
|
|
58707
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58708
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/utilities.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58709
|
-
*
|
|
58710
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/better-rgbToHsl.js
|
|
58711
|
-
*/
|
|
58712
|
-
/**
|
|
58713
|
-
* Convert an array of a98-rgb values in the range 0.0 - 1.0
|
|
58714
|
-
* to linear light (un-companded) form. Negative values are also now accepted
|
|
58715
|
-
*
|
|
58716
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58717
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58718
|
-
*/
|
|
58719
|
-
/**
|
|
58720
|
-
* @description Calculate deltaE OK which is the simple root sum of squares
|
|
58721
|
-
* @param {number[]} reference - Array of OKLab values: L as 0..1, a and b as -1..1
|
|
58722
|
-
* @param {number[]} sample - Array of OKLab values: L as 0..1, a and b as -1..1
|
|
58723
|
-
* @return {number} How different a color sample is from reference
|
|
58724
|
-
*
|
|
58725
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58726
|
-
* @copyright This software or document includes material copied from or derived from https://github.com/w3c/csswg-drafts/blob/main/css-color-4/deltaEOK.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58727
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/deltaEOK.js
|
|
58728
|
-
*/
|
|
58729
|
-
/**
|
|
58730
|
-
* @license MIT https://github.com/facelessuser/coloraide/blob/main/LICENSE.md
|
|
58731
|
-
*/
|
|
58732
|
-
const d = {
|
|
58733
|
-
aliceblue: [
|
|
58734
|
-
240,
|
|
58735
|
-
248,
|
|
58736
|
-
255
|
|
58737
|
-
],
|
|
58738
|
-
antiquewhite: [
|
|
58739
|
-
250,
|
|
58740
|
-
235,
|
|
58741
|
-
215
|
|
58742
|
-
],
|
|
58743
|
-
aqua: [
|
|
58744
|
-
0,
|
|
58745
|
-
255,
|
|
58746
|
-
255
|
|
58747
|
-
],
|
|
58748
|
-
aquamarine: [
|
|
58749
|
-
127,
|
|
58750
|
-
255,
|
|
58751
|
-
212
|
|
58752
|
-
],
|
|
58753
|
-
azure: [
|
|
58754
|
-
240,
|
|
58755
|
-
255,
|
|
58756
|
-
255
|
|
58757
|
-
],
|
|
58758
|
-
beige: [
|
|
58759
|
-
245,
|
|
58760
|
-
245,
|
|
58761
|
-
220
|
|
58762
|
-
],
|
|
58763
|
-
bisque: [
|
|
58764
|
-
255,
|
|
58765
|
-
228,
|
|
58766
|
-
196
|
|
58767
|
-
],
|
|
58768
|
-
black: [
|
|
58769
|
-
0,
|
|
58770
|
-
0,
|
|
58771
|
-
0
|
|
58772
|
-
],
|
|
58773
|
-
blanchedalmond: [
|
|
58774
|
-
255,
|
|
58775
|
-
235,
|
|
58776
|
-
205
|
|
58777
|
-
],
|
|
58778
|
-
blue: [
|
|
58779
|
-
0,
|
|
58780
|
-
0,
|
|
58781
|
-
255
|
|
58782
|
-
],
|
|
58783
|
-
blueviolet: [
|
|
58784
|
-
138,
|
|
58785
|
-
43,
|
|
58786
|
-
226
|
|
58787
|
-
],
|
|
58788
|
-
brown: [
|
|
58789
|
-
165,
|
|
58790
|
-
42,
|
|
58791
|
-
42
|
|
58792
|
-
],
|
|
58793
|
-
burlywood: [
|
|
58794
|
-
222,
|
|
58795
|
-
184,
|
|
58796
|
-
135
|
|
58797
|
-
],
|
|
58798
|
-
cadetblue: [
|
|
58799
|
-
95,
|
|
58800
|
-
158,
|
|
58801
|
-
160
|
|
58802
|
-
],
|
|
58803
|
-
chartreuse: [
|
|
58804
|
-
127,
|
|
58805
|
-
255,
|
|
58806
|
-
0
|
|
58807
|
-
],
|
|
58808
|
-
chocolate: [
|
|
58809
|
-
210,
|
|
58810
|
-
105,
|
|
58811
|
-
30
|
|
58812
|
-
],
|
|
58813
|
-
coral: [
|
|
58814
|
-
255,
|
|
58815
|
-
127,
|
|
58816
|
-
80
|
|
58817
|
-
],
|
|
58818
|
-
cornflowerblue: [
|
|
58819
|
-
100,
|
|
58820
|
-
149,
|
|
58821
|
-
237
|
|
58822
|
-
],
|
|
58823
|
-
cornsilk: [
|
|
58824
|
-
255,
|
|
58825
|
-
248,
|
|
58826
|
-
220
|
|
58827
|
-
],
|
|
58828
|
-
crimson: [
|
|
58829
|
-
220,
|
|
58830
|
-
20,
|
|
58831
|
-
60
|
|
58832
|
-
],
|
|
58833
|
-
cyan: [
|
|
58834
|
-
0,
|
|
58835
|
-
255,
|
|
58836
|
-
255
|
|
58837
|
-
],
|
|
58838
|
-
darkblue: [
|
|
58839
|
-
0,
|
|
58840
|
-
0,
|
|
58841
|
-
139
|
|
58842
|
-
],
|
|
58843
|
-
darkcyan: [
|
|
58844
|
-
0,
|
|
58845
|
-
139,
|
|
58846
|
-
139
|
|
58847
|
-
],
|
|
58848
|
-
darkgoldenrod: [
|
|
58849
|
-
184,
|
|
58850
|
-
134,
|
|
58851
|
-
11
|
|
58852
|
-
],
|
|
58853
|
-
darkgray: [
|
|
58854
|
-
169,
|
|
58855
|
-
169,
|
|
58856
|
-
169
|
|
58857
|
-
],
|
|
58858
|
-
darkgreen: [
|
|
58859
|
-
0,
|
|
58860
|
-
100,
|
|
58861
|
-
0
|
|
58862
|
-
],
|
|
58863
|
-
darkgrey: [
|
|
58864
|
-
169,
|
|
58865
|
-
169,
|
|
58866
|
-
169
|
|
58867
|
-
],
|
|
58868
|
-
darkkhaki: [
|
|
58869
|
-
189,
|
|
58870
|
-
183,
|
|
58871
|
-
107
|
|
58872
|
-
],
|
|
58873
|
-
darkmagenta: [
|
|
58874
|
-
139,
|
|
58875
|
-
0,
|
|
58876
|
-
139
|
|
58877
|
-
],
|
|
58878
|
-
darkolivegreen: [
|
|
58879
|
-
85,
|
|
58880
|
-
107,
|
|
58881
|
-
47
|
|
58882
|
-
],
|
|
58883
|
-
darkorange: [
|
|
58884
|
-
255,
|
|
58885
|
-
140,
|
|
58886
|
-
0
|
|
58887
|
-
],
|
|
58888
|
-
darkorchid: [
|
|
58889
|
-
153,
|
|
58890
|
-
50,
|
|
58891
|
-
204
|
|
58892
|
-
],
|
|
58893
|
-
darkred: [
|
|
58894
|
-
139,
|
|
58895
|
-
0,
|
|
58896
|
-
0
|
|
58897
|
-
],
|
|
58898
|
-
darksalmon: [
|
|
58899
|
-
233,
|
|
58900
|
-
150,
|
|
58901
|
-
122
|
|
58902
|
-
],
|
|
58903
|
-
darkseagreen: [
|
|
58904
|
-
143,
|
|
58905
|
-
188,
|
|
58906
|
-
143
|
|
58907
|
-
],
|
|
58908
|
-
darkslateblue: [
|
|
58909
|
-
72,
|
|
58910
|
-
61,
|
|
58911
|
-
139
|
|
58912
|
-
],
|
|
58913
|
-
darkslategray: [
|
|
58914
|
-
47,
|
|
58915
|
-
79,
|
|
58916
|
-
79
|
|
58917
|
-
],
|
|
58918
|
-
darkslategrey: [
|
|
58919
|
-
47,
|
|
58920
|
-
79,
|
|
58921
|
-
79
|
|
58922
|
-
],
|
|
58923
|
-
darkturquoise: [
|
|
58924
|
-
0,
|
|
58925
|
-
206,
|
|
58926
|
-
209
|
|
58927
|
-
],
|
|
58928
|
-
darkviolet: [
|
|
58929
|
-
148,
|
|
58930
|
-
0,
|
|
58931
|
-
211
|
|
58932
|
-
],
|
|
58933
|
-
deeppink: [
|
|
58934
|
-
255,
|
|
58935
|
-
20,
|
|
58936
|
-
147
|
|
58937
|
-
],
|
|
58938
|
-
deepskyblue: [
|
|
58939
|
-
0,
|
|
58940
|
-
191,
|
|
58941
|
-
255
|
|
58942
|
-
],
|
|
58943
|
-
dimgray: [
|
|
58944
|
-
105,
|
|
58945
|
-
105,
|
|
58946
|
-
105
|
|
58947
|
-
],
|
|
58948
|
-
dimgrey: [
|
|
58949
|
-
105,
|
|
58950
|
-
105,
|
|
58951
|
-
105
|
|
58952
|
-
],
|
|
58953
|
-
dodgerblue: [
|
|
58954
|
-
30,
|
|
58955
|
-
144,
|
|
58956
|
-
255
|
|
58957
|
-
],
|
|
58958
|
-
firebrick: [
|
|
58959
|
-
178,
|
|
58960
|
-
34,
|
|
58961
|
-
34
|
|
58962
|
-
],
|
|
58963
|
-
floralwhite: [
|
|
58964
|
-
255,
|
|
58965
|
-
250,
|
|
58966
|
-
240
|
|
58967
|
-
],
|
|
58968
|
-
forestgreen: [
|
|
58969
|
-
34,
|
|
58970
|
-
139,
|
|
58971
|
-
34
|
|
58972
|
-
],
|
|
58973
|
-
fuchsia: [
|
|
58974
|
-
255,
|
|
58975
|
-
0,
|
|
58976
|
-
255
|
|
58977
|
-
],
|
|
58978
|
-
gainsboro: [
|
|
58979
|
-
220,
|
|
58980
|
-
220,
|
|
58981
|
-
220
|
|
58982
|
-
],
|
|
58983
|
-
ghostwhite: [
|
|
58984
|
-
248,
|
|
58985
|
-
248,
|
|
58986
|
-
255
|
|
58987
|
-
],
|
|
58988
|
-
gold: [
|
|
58989
|
-
255,
|
|
58990
|
-
215,
|
|
58991
|
-
0
|
|
58992
|
-
],
|
|
58993
|
-
goldenrod: [
|
|
58994
|
-
218,
|
|
58995
|
-
165,
|
|
58996
|
-
32
|
|
58997
|
-
],
|
|
58998
|
-
gray: [
|
|
58999
|
-
128,
|
|
59000
|
-
128,
|
|
59001
|
-
128
|
|
59002
|
-
],
|
|
59003
|
-
green: [
|
|
59004
|
-
0,
|
|
59005
|
-
128,
|
|
59006
|
-
0
|
|
59007
|
-
],
|
|
59008
|
-
greenyellow: [
|
|
59009
|
-
173,
|
|
59010
|
-
255,
|
|
59011
|
-
47
|
|
59012
|
-
],
|
|
59013
|
-
grey: [
|
|
59014
|
-
128,
|
|
59015
|
-
128,
|
|
59016
|
-
128
|
|
59017
|
-
],
|
|
59018
|
-
honeydew: [
|
|
59019
|
-
240,
|
|
59020
|
-
255,
|
|
59021
|
-
240
|
|
59022
|
-
],
|
|
59023
|
-
hotpink: [
|
|
59024
|
-
255,
|
|
59025
|
-
105,
|
|
59026
|
-
180
|
|
59027
|
-
],
|
|
59028
|
-
indianred: [
|
|
59029
|
-
205,
|
|
59030
|
-
92,
|
|
59031
|
-
92
|
|
59032
|
-
],
|
|
59033
|
-
indigo: [
|
|
59034
|
-
75,
|
|
59035
|
-
0,
|
|
59036
|
-
130
|
|
59037
|
-
],
|
|
59038
|
-
ivory: [
|
|
59039
|
-
255,
|
|
59040
|
-
255,
|
|
59041
|
-
240
|
|
59042
|
-
],
|
|
59043
|
-
khaki: [
|
|
59044
|
-
240,
|
|
59045
|
-
230,
|
|
59046
|
-
140
|
|
59047
|
-
],
|
|
59048
|
-
lavender: [
|
|
59049
|
-
230,
|
|
59050
|
-
230,
|
|
59051
|
-
250
|
|
59052
|
-
],
|
|
59053
|
-
lavenderblush: [
|
|
59054
|
-
255,
|
|
59055
|
-
240,
|
|
59056
|
-
245
|
|
59057
|
-
],
|
|
59058
|
-
lawngreen: [
|
|
59059
|
-
124,
|
|
59060
|
-
252,
|
|
59061
|
-
0
|
|
59062
|
-
],
|
|
59063
|
-
lemonchiffon: [
|
|
59064
|
-
255,
|
|
59065
|
-
250,
|
|
59066
|
-
205
|
|
59067
|
-
],
|
|
59068
|
-
lightblue: [
|
|
59069
|
-
173,
|
|
59070
|
-
216,
|
|
59071
|
-
230
|
|
59072
|
-
],
|
|
59073
|
-
lightcoral: [
|
|
59074
|
-
240,
|
|
59075
|
-
128,
|
|
59076
|
-
128
|
|
59077
|
-
],
|
|
59078
|
-
lightcyan: [
|
|
59079
|
-
224,
|
|
59080
|
-
255,
|
|
59081
|
-
255
|
|
59082
|
-
],
|
|
59083
|
-
lightgoldenrodyellow: [
|
|
59084
|
-
250,
|
|
59085
|
-
250,
|
|
59086
|
-
210
|
|
59087
|
-
],
|
|
59088
|
-
lightgray: [
|
|
59089
|
-
211,
|
|
59090
|
-
211,
|
|
59091
|
-
211
|
|
59092
|
-
],
|
|
59093
|
-
lightgreen: [
|
|
59094
|
-
144,
|
|
59095
|
-
238,
|
|
59096
|
-
144
|
|
59097
|
-
],
|
|
59098
|
-
lightgrey: [
|
|
59099
|
-
211,
|
|
59100
|
-
211,
|
|
59101
|
-
211
|
|
59102
|
-
],
|
|
59103
|
-
lightpink: [
|
|
59104
|
-
255,
|
|
59105
|
-
182,
|
|
59106
|
-
193
|
|
59107
|
-
],
|
|
59108
|
-
lightsalmon: [
|
|
59109
|
-
255,
|
|
59110
|
-
160,
|
|
59111
|
-
122
|
|
59112
|
-
],
|
|
59113
|
-
lightseagreen: [
|
|
59114
|
-
32,
|
|
59115
|
-
178,
|
|
59116
|
-
170
|
|
59117
|
-
],
|
|
59118
|
-
lightskyblue: [
|
|
59119
|
-
135,
|
|
59120
|
-
206,
|
|
59121
|
-
250
|
|
59122
|
-
],
|
|
59123
|
-
lightslategray: [
|
|
59124
|
-
119,
|
|
59125
|
-
136,
|
|
59126
|
-
153
|
|
59127
|
-
],
|
|
59128
|
-
lightslategrey: [
|
|
59129
|
-
119,
|
|
59130
|
-
136,
|
|
59131
|
-
153
|
|
59132
|
-
],
|
|
59133
|
-
lightsteelblue: [
|
|
59134
|
-
176,
|
|
59135
|
-
196,
|
|
59136
|
-
222
|
|
59137
|
-
],
|
|
59138
|
-
lightyellow: [
|
|
59139
|
-
255,
|
|
59140
|
-
255,
|
|
59141
|
-
224
|
|
59142
|
-
],
|
|
59143
|
-
lime: [
|
|
59144
|
-
0,
|
|
59145
|
-
255,
|
|
59146
|
-
0
|
|
59147
|
-
],
|
|
59148
|
-
limegreen: [
|
|
59149
|
-
50,
|
|
59150
|
-
205,
|
|
59151
|
-
50
|
|
59152
|
-
],
|
|
59153
|
-
linen: [
|
|
59154
|
-
250,
|
|
59155
|
-
240,
|
|
59156
|
-
230
|
|
59157
|
-
],
|
|
59158
|
-
magenta: [
|
|
59159
|
-
255,
|
|
59160
|
-
0,
|
|
59161
|
-
255
|
|
59162
|
-
],
|
|
59163
|
-
maroon: [
|
|
59164
|
-
128,
|
|
59165
|
-
0,
|
|
59166
|
-
0
|
|
59167
|
-
],
|
|
59168
|
-
mediumaquamarine: [
|
|
59169
|
-
102,
|
|
59170
|
-
205,
|
|
59171
|
-
170
|
|
59172
|
-
],
|
|
59173
|
-
mediumblue: [
|
|
59174
|
-
0,
|
|
59175
|
-
0,
|
|
59176
|
-
205
|
|
59177
|
-
],
|
|
59178
|
-
mediumorchid: [
|
|
59179
|
-
186,
|
|
59180
|
-
85,
|
|
59181
|
-
211
|
|
59182
|
-
],
|
|
59183
|
-
mediumpurple: [
|
|
59184
|
-
147,
|
|
59185
|
-
112,
|
|
59186
|
-
219
|
|
59187
|
-
],
|
|
59188
|
-
mediumseagreen: [
|
|
59189
|
-
60,
|
|
59190
|
-
179,
|
|
59191
|
-
113
|
|
59192
|
-
],
|
|
59193
|
-
mediumslateblue: [
|
|
59194
|
-
123,
|
|
59195
|
-
104,
|
|
59196
|
-
238
|
|
59197
|
-
],
|
|
59198
|
-
mediumspringgreen: [
|
|
59199
|
-
0,
|
|
59200
|
-
250,
|
|
59201
|
-
154
|
|
59202
|
-
],
|
|
59203
|
-
mediumturquoise: [
|
|
59204
|
-
72,
|
|
59205
|
-
209,
|
|
59206
|
-
204
|
|
59207
|
-
],
|
|
59208
|
-
mediumvioletred: [
|
|
59209
|
-
199,
|
|
59210
|
-
21,
|
|
59211
|
-
133
|
|
59212
|
-
],
|
|
59213
|
-
midnightblue: [
|
|
59214
|
-
25,
|
|
59215
|
-
25,
|
|
59216
|
-
112
|
|
59217
|
-
],
|
|
59218
|
-
mintcream: [
|
|
59219
|
-
245,
|
|
59220
|
-
255,
|
|
59221
|
-
250
|
|
59222
|
-
],
|
|
59223
|
-
mistyrose: [
|
|
59224
|
-
255,
|
|
59225
|
-
228,
|
|
59226
|
-
225
|
|
59227
|
-
],
|
|
59228
|
-
moccasin: [
|
|
59229
|
-
255,
|
|
59230
|
-
228,
|
|
59231
|
-
181
|
|
59232
|
-
],
|
|
59233
|
-
navajowhite: [
|
|
59234
|
-
255,
|
|
59235
|
-
222,
|
|
59236
|
-
173
|
|
59237
|
-
],
|
|
59238
|
-
navy: [
|
|
59239
|
-
0,
|
|
59240
|
-
0,
|
|
59241
|
-
128
|
|
59242
|
-
],
|
|
59243
|
-
oldlace: [
|
|
59244
|
-
253,
|
|
59245
|
-
245,
|
|
59246
|
-
230
|
|
59247
|
-
],
|
|
59248
|
-
olive: [
|
|
59249
|
-
128,
|
|
59250
|
-
128,
|
|
59251
|
-
0
|
|
59252
|
-
],
|
|
59253
|
-
olivedrab: [
|
|
59254
|
-
107,
|
|
59255
|
-
142,
|
|
59256
|
-
35
|
|
59257
|
-
],
|
|
59258
|
-
orange: [
|
|
59259
|
-
255,
|
|
59260
|
-
165,
|
|
59261
|
-
0
|
|
59262
|
-
],
|
|
59263
|
-
orangered: [
|
|
59264
|
-
255,
|
|
59265
|
-
69,
|
|
59266
|
-
0
|
|
59267
|
-
],
|
|
59268
|
-
orchid: [
|
|
59269
|
-
218,
|
|
59270
|
-
112,
|
|
59271
|
-
214
|
|
59272
|
-
],
|
|
59273
|
-
palegoldenrod: [
|
|
59274
|
-
238,
|
|
59275
|
-
232,
|
|
59276
|
-
170
|
|
59277
|
-
],
|
|
59278
|
-
palegreen: [
|
|
59279
|
-
152,
|
|
59280
|
-
251,
|
|
59281
|
-
152
|
|
59282
|
-
],
|
|
59283
|
-
paleturquoise: [
|
|
59284
|
-
175,
|
|
59285
|
-
238,
|
|
59286
|
-
238
|
|
59287
|
-
],
|
|
59288
|
-
palevioletred: [
|
|
59289
|
-
219,
|
|
59290
|
-
112,
|
|
59291
|
-
147
|
|
59292
|
-
],
|
|
59293
|
-
papayawhip: [
|
|
59294
|
-
255,
|
|
59295
|
-
239,
|
|
59296
|
-
213
|
|
59297
|
-
],
|
|
59298
|
-
peachpuff: [
|
|
59299
|
-
255,
|
|
59300
|
-
218,
|
|
59301
|
-
185
|
|
59302
|
-
],
|
|
59303
|
-
peru: [
|
|
59304
|
-
205,
|
|
59305
|
-
133,
|
|
59306
|
-
63
|
|
59307
|
-
],
|
|
59308
|
-
pink: [
|
|
59309
|
-
255,
|
|
59310
|
-
192,
|
|
59311
|
-
203
|
|
59312
|
-
],
|
|
59313
|
-
plum: [
|
|
59314
|
-
221,
|
|
59315
|
-
160,
|
|
59316
|
-
221
|
|
59317
|
-
],
|
|
59318
|
-
powderblue: [
|
|
59319
|
-
176,
|
|
59320
|
-
224,
|
|
59321
|
-
230
|
|
59322
|
-
],
|
|
59323
|
-
purple: [
|
|
59324
|
-
128,
|
|
59325
|
-
0,
|
|
59326
|
-
128
|
|
59327
|
-
],
|
|
59328
|
-
rebeccapurple: [
|
|
59329
|
-
102,
|
|
59330
|
-
51,
|
|
59331
|
-
153
|
|
59332
|
-
],
|
|
59333
|
-
red: [
|
|
59334
|
-
255,
|
|
59335
|
-
0,
|
|
59336
|
-
0
|
|
59337
|
-
],
|
|
59338
|
-
rosybrown: [
|
|
59339
|
-
188,
|
|
59340
|
-
143,
|
|
59341
|
-
143
|
|
59342
|
-
],
|
|
59343
|
-
royalblue: [
|
|
59344
|
-
65,
|
|
59345
|
-
105,
|
|
59346
|
-
225
|
|
59347
|
-
],
|
|
59348
|
-
saddlebrown: [
|
|
59349
|
-
139,
|
|
59350
|
-
69,
|
|
59351
|
-
19
|
|
59352
|
-
],
|
|
59353
|
-
salmon: [
|
|
59354
|
-
250,
|
|
59355
|
-
128,
|
|
59356
|
-
114
|
|
59357
|
-
],
|
|
59358
|
-
sandybrown: [
|
|
59359
|
-
244,
|
|
59360
|
-
164,
|
|
59361
|
-
96
|
|
59362
|
-
],
|
|
59363
|
-
seagreen: [
|
|
59364
|
-
46,
|
|
59365
|
-
139,
|
|
59366
|
-
87
|
|
59367
|
-
],
|
|
59368
|
-
seashell: [
|
|
59369
|
-
255,
|
|
59370
|
-
245,
|
|
59371
|
-
238
|
|
59372
|
-
],
|
|
59373
|
-
sienna: [
|
|
59374
|
-
160,
|
|
59375
|
-
82,
|
|
59376
|
-
45
|
|
59377
|
-
],
|
|
59378
|
-
silver: [
|
|
59379
|
-
192,
|
|
59380
|
-
192,
|
|
59381
|
-
192
|
|
59382
|
-
],
|
|
59383
|
-
skyblue: [
|
|
59384
|
-
135,
|
|
59385
|
-
206,
|
|
59386
|
-
235
|
|
59387
|
-
],
|
|
59388
|
-
slateblue: [
|
|
59389
|
-
106,
|
|
59390
|
-
90,
|
|
59391
|
-
205
|
|
59392
|
-
],
|
|
59393
|
-
slategray: [
|
|
59394
|
-
112,
|
|
59395
|
-
128,
|
|
59396
|
-
144
|
|
59397
|
-
],
|
|
59398
|
-
slategrey: [
|
|
59399
|
-
112,
|
|
59400
|
-
128,
|
|
59401
|
-
144
|
|
59402
|
-
],
|
|
59403
|
-
snow: [
|
|
59404
|
-
255,
|
|
59405
|
-
250,
|
|
59406
|
-
250
|
|
59407
|
-
],
|
|
59408
|
-
springgreen: [
|
|
59409
|
-
0,
|
|
59410
|
-
255,
|
|
59411
|
-
127
|
|
59412
|
-
],
|
|
59413
|
-
steelblue: [
|
|
59414
|
-
70,
|
|
59415
|
-
130,
|
|
59416
|
-
180
|
|
59417
|
-
],
|
|
59418
|
-
tan: [
|
|
59419
|
-
210,
|
|
59420
|
-
180,
|
|
59421
|
-
140
|
|
59422
|
-
],
|
|
59423
|
-
teal: [
|
|
59424
|
-
0,
|
|
59425
|
-
128,
|
|
59426
|
-
128
|
|
59427
|
-
],
|
|
59428
|
-
thistle: [
|
|
59429
|
-
216,
|
|
59430
|
-
191,
|
|
59431
|
-
216
|
|
59432
|
-
],
|
|
59433
|
-
tomato: [
|
|
59434
|
-
255,
|
|
59435
|
-
99,
|
|
59436
|
-
71
|
|
59437
|
-
],
|
|
59438
|
-
turquoise: [
|
|
59439
|
-
64,
|
|
59440
|
-
224,
|
|
59441
|
-
208
|
|
59442
|
-
],
|
|
59443
|
-
violet: [
|
|
59444
|
-
238,
|
|
59445
|
-
130,
|
|
59446
|
-
238
|
|
59447
|
-
],
|
|
59448
|
-
wheat: [
|
|
59449
|
-
245,
|
|
59450
|
-
222,
|
|
59451
|
-
179
|
|
59452
|
-
],
|
|
59453
|
-
white: [
|
|
59454
|
-
255,
|
|
59455
|
-
255,
|
|
59456
|
-
255
|
|
59457
|
-
],
|
|
59458
|
-
whitesmoke: [
|
|
59459
|
-
245,
|
|
59460
|
-
245,
|
|
59461
|
-
245
|
|
59462
|
-
],
|
|
59463
|
-
yellow: [
|
|
59464
|
-
255,
|
|
59465
|
-
255,
|
|
59466
|
-
0
|
|
59467
|
-
],
|
|
59468
|
-
yellowgreen: [
|
|
59469
|
-
154,
|
|
59470
|
-
205,
|
|
59471
|
-
50
|
|
59472
|
-
]
|
|
59473
|
-
};
|
|
59474
|
-
//#endregion
|
|
59475
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-text-decoration-shorthand@5.0.3_postcss@8.5.15/node_modules/@csstools/postcss-text-decoration-shorthand/dist/index.mjs
|
|
59203
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-text-decoration-shorthand@5.0.4_postcss@8.5.16/node_modules/@csstools/postcss-text-decoration-shorthand/dist/index.mjs
|
|
59476
59204
|
const o = /^text-decoration$/i, creator$4 = (t) => {
|
|
59477
59205
|
const c = Object.assign({ preserve: !0 }, t);
|
|
59478
59206
|
return {
|
|
@@ -59672,7 +59400,7 @@ const r = [
|
|
|
59672
59400
|
], i = [
|
|
59673
59401
|
"currentcolor",
|
|
59674
59402
|
"transparent",
|
|
59675
|
-
...Object.keys(
|
|
59403
|
+
...Object.keys(G$1)
|
|
59676
59404
|
];
|
|
59677
59405
|
function genericNodeParts() {
|
|
59678
59406
|
return {
|
|
@@ -59683,7 +59411,7 @@ function genericNodeParts() {
|
|
|
59683
59411
|
};
|
|
59684
59412
|
}
|
|
59685
59413
|
//#endregion
|
|
59686
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-trigonometric-functions@5.0.3_postcss@8.5.
|
|
59414
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-trigonometric-functions@5.0.3_postcss@8.5.16/node_modules/@csstools/postcss-trigonometric-functions/dist/index.mjs
|
|
59687
59415
|
const e$2 = /(?<![-\w])(?:asin|acos|atan|atan2|sin|cos|tan)\(/i, creator$3 = (o) => {
|
|
59688
59416
|
const t = Object.assign({ preserve: !1 }, o);
|
|
59689
59417
|
return {
|
|
@@ -59700,7 +59428,7 @@ const e$2 = /(?<![-\w])(?:asin|acos|atan|atan2|sin|cos|tan)\(/i, creator$3 = (o)
|
|
|
59700
59428
|
};
|
|
59701
59429
|
creator$3.postcss = !0;
|
|
59702
59430
|
//#endregion
|
|
59703
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-unset-value@5.0.0_postcss@8.5.
|
|
59431
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-unset-value@5.0.0_postcss@8.5.16/node_modules/@csstools/postcss-unset-value/dist/index.mjs
|
|
59704
59432
|
const e$1 = /* @__PURE__ */ new Set([
|
|
59705
59433
|
"block-ellipsis",
|
|
59706
59434
|
"border-boundary",
|
|
@@ -60138,7 +59866,7 @@ const e$1 = /* @__PURE__ */ new Set([
|
|
|
60138
59866
|
};
|
|
60139
59867
|
creator$2.postcss = !0;
|
|
60140
59868
|
//#endregion
|
|
60141
|
-
//#region ../../node_modules/.pnpm/postcss-preset-env@11.3.
|
|
59869
|
+
//#region ../../node_modules/.pnpm/postcss-preset-env@11.3.2_postcss@8.5.16/node_modules/postcss-preset-env/dist/index.mjs
|
|
60142
59870
|
const ks = {
|
|
60143
59871
|
"blank-pseudo-class": "https://github.com/csstools/postcss-plugins/blob/main/plugins/css-blank-pseudo/README.md#browser",
|
|
60144
59872
|
"focus-visible-pseudo-class": "https://github.com/WICG/focus-visible",
|