@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.js
CHANGED
|
@@ -90,16 +90,16 @@ const e$38 = {
|
|
|
90
90
|
UnexpectedCharacterInURL: "Unexpected character while consuming a url token.",
|
|
91
91
|
InvalidEscapeSequenceInURL: "Invalid escape sequence while consuming a url token.",
|
|
92
92
|
InvalidEscapeSequenceAfterBackslash: "Invalid escape sequence after \"\\\""
|
|
93
|
-
}, n$
|
|
93
|
+
}, n$14 = "undefined" != typeof globalThis && "structuredClone" in globalThis;
|
|
94
94
|
function cloneTokens(e) {
|
|
95
|
-
return n$
|
|
95
|
+
return n$14 ? structuredClone(e) : JSON.parse(JSON.stringify(e));
|
|
96
96
|
}
|
|
97
97
|
function stringify$1(...e) {
|
|
98
98
|
let n = "";
|
|
99
99
|
for (let t = 0; t < e.length; t++) n += e[t][1];
|
|
100
100
|
return n;
|
|
101
101
|
}
|
|
102
|
-
const t$19 = 13, o$27 = 45, r$12 = 10, i$12 = 43, s$
|
|
102
|
+
const t$19 = 13, o$27 = 45, r$12 = 10, i$12 = 43, s$18 = 65533;
|
|
103
103
|
function checkIfFourCodePointsWouldStartCDO(e) {
|
|
104
104
|
return 60 === e.source.codePointAt(e.cursor) && 33 === e.source.codePointAt(e.cursor + 1) && e.source.codePointAt(e.cursor + 2) === o$27 && e.source.codePointAt(e.cursor + 3) === o$27;
|
|
105
105
|
}
|
|
@@ -241,22 +241,22 @@ function consumeComment$1(n, t) {
|
|
|
241
241
|
}
|
|
242
242
|
function consumeEscapedCodePoint(n, o) {
|
|
243
243
|
const i = o.readCodePoint();
|
|
244
|
-
if (void 0 === i) return n.onParseError(new ParseError$1(e$38.UnexpectedEOFInEscapedCodePoint, o.representationStart, o.representationEnd, ["4.3.7. Consume an escaped code point", "Unexpected EOF"])), s$
|
|
244
|
+
if (void 0 === i) return n.onParseError(new ParseError$1(e$38.UnexpectedEOFInEscapedCodePoint, o.representationStart, o.representationEnd, ["4.3.7. Consume an escaped code point", "Unexpected EOF"])), s$18;
|
|
245
245
|
if (isHexDigitCodePoint(i)) {
|
|
246
246
|
const e = [i];
|
|
247
247
|
let n;
|
|
248
248
|
for (; void 0 !== (n = o.source.codePointAt(o.cursor)) && isHexDigitCodePoint(n) && e.length < 6;) e.push(n), o.advanceCodePoint();
|
|
249
249
|
isWhitespace(o.source.codePointAt(o.cursor) ?? -1) && (o.source.codePointAt(o.cursor) === t$19 && o.source.codePointAt(o.cursor + 1) === r$12 && o.advanceCodePoint(), o.advanceCodePoint());
|
|
250
250
|
const c = parseInt(String.fromCodePoint(...e), 16);
|
|
251
|
-
return 0 === c || isSurrogate(c) || c > 1114111 ? s$
|
|
251
|
+
return 0 === c || isSurrogate(c) || c > 1114111 ? s$18 : c;
|
|
252
252
|
}
|
|
253
|
-
return 0 === i || isSurrogate(i) ? s$
|
|
253
|
+
return 0 === i || isSurrogate(i) ? s$18 : i;
|
|
254
254
|
}
|
|
255
255
|
function consumeIdentSequence(e, n) {
|
|
256
256
|
const t = [];
|
|
257
257
|
for (;;) {
|
|
258
258
|
const o = n.source.codePointAt(n.cursor) ?? -1;
|
|
259
|
-
if (0 === o || isSurrogate(o)) t.push(s$
|
|
259
|
+
if (0 === o || isSurrogate(o)) t.push(s$18), n.advanceCodePoint(+(o > 65535) + 1);
|
|
260
260
|
else if (isIdentCodePoint(o)) t.push(o), n.advanceCodePoint(+(o > 65535) + 1);
|
|
261
261
|
else {
|
|
262
262
|
if (!checkIfTwoCodePointsAreAValidEscape(n)) return t;
|
|
@@ -419,7 +419,7 @@ function consumeStringToken(n, o) {
|
|
|
419
419
|
o.representationEnd,
|
|
420
420
|
{ value: i }
|
|
421
421
|
];
|
|
422
|
-
if (92 !== u) 0 === u || isSurrogate(u) ? i += String.fromCodePoint(s$
|
|
422
|
+
if (92 !== u) 0 === u || isSurrogate(u) ? i += String.fromCodePoint(s$18) : i += String.fromCodePoint(u);
|
|
423
423
|
else {
|
|
424
424
|
if (void 0 === o.source.codePointAt(o.cursor)) continue;
|
|
425
425
|
if (isNewLine(o.source.codePointAt(o.cursor) ?? -1)) {
|
|
@@ -523,7 +523,7 @@ function consumeUrlToken(n, t) {
|
|
|
523
523
|
"The input stream does not start with a valid escape sequence"
|
|
524
524
|
], r)), r;
|
|
525
525
|
}
|
|
526
|
-
0 === t.source.codePointAt(t.cursor) || isSurrogate(t.source.codePointAt(t.cursor) ?? -1) ? (o += String.fromCodePoint(s$
|
|
526
|
+
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());
|
|
527
527
|
}
|
|
528
528
|
}
|
|
529
529
|
function consumeIdentLikeToken(e, n) {
|
|
@@ -791,14 +791,14 @@ function mutateUnit(e, n) {
|
|
|
791
791
|
}
|
|
792
792
|
function serializeIdent(e) {
|
|
793
793
|
let n = 0;
|
|
794
|
-
if (0 === e[0]) e.splice(0, 1, s$
|
|
794
|
+
if (0 === e[0]) e.splice(0, 1, s$18), n = 1;
|
|
795
795
|
else if (e[0] === o$27 && e[1] === o$27) n = 2;
|
|
796
796
|
else if (e[0] === o$27 && e[1]) n = 2, isIdentStartCodePoint(e[1]) || (n += insertEscapedCodePoint(e, 1, e[1]));
|
|
797
797
|
else {
|
|
798
798
|
if (e[0] === o$27 && !e[1]) return [92, e[0]];
|
|
799
799
|
isIdentStartCodePoint(e[0]) ? n = 1 : (n = 1, n += insertEscapedCodePoint(e, 0, e[0]));
|
|
800
800
|
}
|
|
801
|
-
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$
|
|
801
|
+
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++);
|
|
802
802
|
return e;
|
|
803
803
|
}
|
|
804
804
|
function insertEscapedCharacter(e, n, t) {
|
|
@@ -809,9 +809,9 @@ function insertEscapedCodePoint(e, n, t) {
|
|
|
809
809
|
for (const e of o) r.push(e.codePointAt(0));
|
|
810
810
|
return e.splice(n, 1, 92, ...r, 32), 1 + r.length;
|
|
811
811
|
}
|
|
812
|
-
const d$
|
|
812
|
+
const d$2 = Object.values(c$7);
|
|
813
813
|
function isToken(e) {
|
|
814
|
-
return !!Array.isArray(e) && !(e.length < 4) && !!d$
|
|
814
|
+
return !!Array.isArray(e) && !(e.length < 4) && !!d$2.includes(e[0]) && "string" == typeof e[1] && "number" == typeof e[2] && "number" == typeof e[3];
|
|
815
815
|
}
|
|
816
816
|
function isTokenNumeric(e) {
|
|
817
817
|
if (!e) return !1;
|
|
@@ -1006,7 +1006,7 @@ function HSL_to_sRGB_channel(_, t, n, o) {
|
|
|
1006
1006
|
n
|
|
1007
1007
|
];
|
|
1008
1008
|
}
|
|
1009
|
-
const n$
|
|
1009
|
+
const n$13 = [
|
|
1010
1010
|
.3457 / .3585,
|
|
1011
1011
|
1,
|
|
1012
1012
|
.2958 / .3585
|
|
@@ -1019,9 +1019,9 @@ const n$12 = [
|
|
|
1019
1019
|
*/ function Lab_to_XYZ(_) {
|
|
1020
1020
|
const t = 24389 / 27, o = 216 / 24389, e = (_[0] + 16) / 116, r = _[1] / 500 + e, a = e - _[2] / 200;
|
|
1021
1021
|
return [
|
|
1022
|
-
(Math.pow(r, 3) > o ? Math.pow(r, 3) : (116 * r - 16) / t) * n$
|
|
1023
|
-
(_[0] > 8 ? Math.pow((_[0] + 16) / 116, 3) : _[0] / t) * n$
|
|
1024
|
-
(Math.pow(a, 3) > o ? Math.pow(a, 3) : (116 * a - 16) / t) * n$
|
|
1022
|
+
(Math.pow(r, 3) > o ? Math.pow(r, 3) : (116 * r - 16) / t) * n$13[0],
|
|
1023
|
+
(_[0] > 8 ? Math.pow((_[0] + 16) / 116, 3) : _[0] / t) * n$13[1],
|
|
1024
|
+
(Math.pow(a, 3) > o ? Math.pow(a, 3) : (116 * a - 16) / t) * n$13[2]
|
|
1025
1025
|
];
|
|
1026
1026
|
}
|
|
1027
1027
|
/**
|
|
@@ -1092,11 +1092,11 @@ function OKLab_to_XYZ(_) {
|
|
|
1092
1092
|
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
1093
1093
|
* @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).
|
|
1094
1094
|
*/ function XYZ_to_Lab(_) {
|
|
1095
|
-
const t = compute_f(_[0] / n$
|
|
1095
|
+
const t = compute_f(_[0] / n$13[0]), o = compute_f(_[1] / n$13[1]);
|
|
1096
1096
|
return [
|
|
1097
1097
|
116 * o - 16,
|
|
1098
1098
|
500 * (t - o),
|
|
1099
|
-
200 * (o - compute_f(_[2] / n$
|
|
1099
|
+
200 * (o - compute_f(_[2] / n$13[2]))
|
|
1100
1100
|
];
|
|
1101
1101
|
}
|
|
1102
1102
|
const r$11 = 216 / 24389, a$7 = 24389 / 27;
|
|
@@ -1177,7 +1177,7 @@ const c$6 = [
|
|
|
1177
1177
|
*/ function XYZ_to_lin_P3(_) {
|
|
1178
1178
|
return multiplyMatrices(c$6, _);
|
|
1179
1179
|
}
|
|
1180
|
-
const s$
|
|
1180
|
+
const s$17 = [
|
|
1181
1181
|
1.3457868816471583,
|
|
1182
1182
|
-.25557208737979464,
|
|
1183
1183
|
-.05110186497554526,
|
|
@@ -1195,7 +1195,7 @@ const s$16 = [
|
|
|
1195
1195
|
* @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).
|
|
1196
1196
|
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
1197
1197
|
*/ function XYZ_to_lin_ProPhoto(_) {
|
|
1198
|
-
return multiplyMatrices(s$
|
|
1198
|
+
return multiplyMatrices(s$17, _);
|
|
1199
1199
|
}
|
|
1200
1200
|
const X = [
|
|
1201
1201
|
1829569 / 896150,
|
|
@@ -8122,23 +8122,31 @@ function mergeEquivalentHoistedRules(rules) {
|
|
|
8122
8122
|
const MINI_PROGRAM_PSEUDO_CONTENT_SELECTORS = /* @__PURE__ */ new Set(["::before", "::after"]);
|
|
8123
8123
|
function applyConfiguredPreflightDeclarations(rule, cssPreflight) {
|
|
8124
8124
|
if (!cssPreflight || typeof cssPreflight !== "object") return;
|
|
8125
|
-
const
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
if (
|
|
8130
|
-
|
|
8131
|
-
|
|
8125
|
+
const configuredNodes = [];
|
|
8126
|
+
const remainingNodes = [];
|
|
8127
|
+
const remainingDeclarations = /* @__PURE__ */ new Map();
|
|
8128
|
+
for (const node of rule.nodes ?? []) {
|
|
8129
|
+
if (node.type !== "decl") {
|
|
8130
|
+
remainingNodes.push(node);
|
|
8131
|
+
continue;
|
|
8132
8132
|
}
|
|
8133
|
-
|
|
8134
|
-
|
|
8133
|
+
if (Object.hasOwn(cssPreflight, node.prop)) {
|
|
8134
|
+
remainingDeclarations.set(node.prop, node);
|
|
8135
|
+
continue;
|
|
8136
|
+
}
|
|
8137
|
+
remainingNodes.push(node);
|
|
8138
|
+
}
|
|
8135
8139
|
for (const [prop, value] of Object.entries(cssPreflight)) {
|
|
8136
|
-
if (value === false
|
|
8137
|
-
|
|
8140
|
+
if (value === false) continue;
|
|
8141
|
+
const declaration = remainingDeclarations.get(prop)?.clone() ?? postcss.default.decl({
|
|
8138
8142
|
prop,
|
|
8139
8143
|
value: value.toString()
|
|
8140
8144
|
});
|
|
8145
|
+
declaration.value = value.toString();
|
|
8146
|
+
configuredNodes.push(declaration);
|
|
8141
8147
|
}
|
|
8148
|
+
rule.removeAll();
|
|
8149
|
+
rule.append([...configuredNodes, ...remainingNodes]);
|
|
8142
8150
|
}
|
|
8143
8151
|
function collectTailwindRuntimeDeclarations(rule) {
|
|
8144
8152
|
const declarations = [];
|
|
@@ -40521,7 +40529,7 @@ var require_browserslist = /* @__PURE__ */ require_rolldown_runtime.__commonJSMi
|
|
|
40521
40529
|
module.exports = browserslist;
|
|
40522
40530
|
}));
|
|
40523
40531
|
//#endregion
|
|
40524
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-initial@3.0.0_postcss@8.5.
|
|
40532
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-initial@3.0.0_postcss@8.5.16/node_modules/@csstools/postcss-initial/dist/index.mjs
|
|
40525
40533
|
var import_browserslist = /* @__PURE__ */ require_rolldown_runtime.__toESM(require_browserslist(), 1);
|
|
40526
40534
|
const o$25 = /* @__PURE__ */ new Map([
|
|
40527
40535
|
["animation", "none 0s ease 0s 1 normal none running"],
|
|
@@ -40765,7 +40773,7 @@ function hasExactFallback(o, t) {
|
|
|
40765
40773
|
}
|
|
40766
40774
|
return !1;
|
|
40767
40775
|
}
|
|
40768
|
-
const e$36 = /^\s?initial\s?$/i, n$
|
|
40776
|
+
const e$36 = /^\s?initial\s?$/i, n$12 = /^font$/i, r$10 = /^all$/i, i$10 = [
|
|
40769
40777
|
"font-family",
|
|
40770
40778
|
"font-size",
|
|
40771
40779
|
"font-style",
|
|
@@ -40781,7 +40789,7 @@ const e$36 = /^\s?initial\s?$/i, n$11 = /^font$/i, r$10 = /^all$/i, i$10 = [
|
|
|
40781
40789
|
if (a.variable) return;
|
|
40782
40790
|
if (!e$36.test(a.value)) return;
|
|
40783
40791
|
let s;
|
|
40784
|
-
s = n$
|
|
40792
|
+
s = n$12.test(a.prop) ? i$10 : r$10.test(a.prop) ? t$17 : [a.prop.toLowerCase()];
|
|
40785
40793
|
let c = !1;
|
|
40786
40794
|
s.forEach((t) => {
|
|
40787
40795
|
const e = o$25.get(t);
|
|
@@ -40795,8 +40803,8 @@ const e$36 = /^\s?initial\s?$/i, n$11 = /^font$/i, r$10 = /^all$/i, i$10 = [
|
|
|
40795
40803
|
};
|
|
40796
40804
|
creator$52.postcss = !0;
|
|
40797
40805
|
//#endregion
|
|
40798
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-progressive-custom-properties@5.1.
|
|
40799
|
-
const
|
|
40806
|
+
//#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
|
|
40807
|
+
const r$9 = [
|
|
40800
40808
|
"at",
|
|
40801
40809
|
"bottom",
|
|
40802
40810
|
"center",
|
|
@@ -40814,59 +40822,59 @@ const a$6 = [
|
|
|
40814
40822
|
"top"
|
|
40815
40823
|
];
|
|
40816
40824
|
function doublePositionGradients(e) {
|
|
40817
|
-
const
|
|
40818
|
-
if ("function" === e.type && ("conic-gradient" ===
|
|
40819
|
-
let
|
|
40820
|
-
e: for (let
|
|
40821
|
-
const
|
|
40822
|
-
if ("word" ===
|
|
40823
|
-
if ("word" !==
|
|
40825
|
+
const t = [], o = e.value.toLowerCase();
|
|
40826
|
+
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)) {
|
|
40827
|
+
let o = 0, a = !1, i = !1;
|
|
40828
|
+
e: for (let s = 0; s < e.nodes.length; s++) {
|
|
40829
|
+
const n = e.nodes[s];
|
|
40830
|
+
if ("word" === n.type && r$9.includes(n.value.toLowerCase()) && (a = !0), "div" !== n.type || "," !== n.value.trim()) if ("word" !== n.type || "in" !== n.value.toLowerCase()) {
|
|
40831
|
+
if ("word" !== n.type && "function" !== n.type || o++, i) switch (e.value.toLowerCase()) {
|
|
40824
40832
|
case "conic-gradient":
|
|
40825
|
-
|
|
40833
|
+
t.push("(background: conic-gradient(in oklch, red 0deg, red 0deg 1deg, red 2deg))");
|
|
40826
40834
|
break e;
|
|
40827
40835
|
case "linear-gradient":
|
|
40828
|
-
|
|
40836
|
+
t.push("(background: linear-gradient(in oklch, red 0%, red 0% 1%, red 2%))");
|
|
40829
40837
|
break e;
|
|
40830
40838
|
case "radial-gradient":
|
|
40831
|
-
|
|
40839
|
+
t.push("(background: radial-gradient(in oklch, red, red 1px 2px, red 3px))");
|
|
40832
40840
|
break e;
|
|
40833
40841
|
case "repeating-conic-gradient":
|
|
40834
|
-
|
|
40842
|
+
t.push("(background: repeating-conic-gradient(in oklch from 0deg, red 0deg, red 0deg 1deg, red 2deg))");
|
|
40835
40843
|
break e;
|
|
40836
40844
|
case "repeating-linear-gradient":
|
|
40837
|
-
|
|
40845
|
+
t.push("(background: repeating-linear-gradient(in oklch, red 0%, red 0% 1%, red 2%))");
|
|
40838
40846
|
break e;
|
|
40839
40847
|
case "repeating-radial-gradient":
|
|
40840
|
-
|
|
40848
|
+
t.push("(background: repeating-radial-gradient(in oklch, red, red 1px 2px, red 3px))");
|
|
40841
40849
|
break e;
|
|
40842
40850
|
}
|
|
40843
|
-
if (!
|
|
40851
|
+
if (!a && 3 === o) switch (e.value.toLowerCase()) {
|
|
40844
40852
|
case "conic-gradient":
|
|
40845
|
-
|
|
40853
|
+
t.push("(background: conic-gradient(red 0deg, red 0deg 1deg, red 2deg))");
|
|
40846
40854
|
break e;
|
|
40847
40855
|
case "linear-gradient":
|
|
40848
|
-
|
|
40856
|
+
t.push("(background: linear-gradient(red 0%, red 0% 1%, red 2%))");
|
|
40849
40857
|
break e;
|
|
40850
40858
|
case "radial-gradient":
|
|
40851
|
-
|
|
40859
|
+
t.push("(background: radial-gradient(red, red 1px 2px, red 3px))");
|
|
40852
40860
|
break e;
|
|
40853
40861
|
case "repeating-conic-gradient":
|
|
40854
|
-
|
|
40862
|
+
t.push("(background: repeating-conic-gradient(from 0deg, red 0deg, red 0deg 1deg, red 2deg))");
|
|
40855
40863
|
break e;
|
|
40856
40864
|
case "repeating-linear-gradient":
|
|
40857
|
-
|
|
40865
|
+
t.push("(background: repeating-linear-gradient(red 0%, red 0% 1%, red 2%))");
|
|
40858
40866
|
break e;
|
|
40859
40867
|
case "repeating-radial-gradient":
|
|
40860
|
-
|
|
40868
|
+
t.push("(background: repeating-radial-gradient(red, red 1px 2px, red 3px))");
|
|
40861
40869
|
break e;
|
|
40862
40870
|
}
|
|
40863
40871
|
} else i = !0;
|
|
40864
|
-
else
|
|
40872
|
+
else o = 0, a = !1;
|
|
40865
40873
|
}
|
|
40866
40874
|
}
|
|
40867
|
-
return
|
|
40875
|
+
return t;
|
|
40868
40876
|
}
|
|
40869
|
-
const
|
|
40877
|
+
const t$16 = [
|
|
40870
40878
|
{
|
|
40871
40879
|
supports: "color-mix(in display-p3-linear, red, blue)",
|
|
40872
40880
|
property: "color",
|
|
@@ -43732,93 +43740,815 @@ const p$3 = [
|
|
|
43732
43740
|
}]
|
|
43733
43741
|
}
|
|
43734
43742
|
];
|
|
43735
|
-
function matches(e,
|
|
43736
|
-
if (e.isVariable &&
|
|
43737
|
-
if (e.type !==
|
|
43738
|
-
if (doesNotMatchValue(e,
|
|
43739
|
-
if (e.nodes &&
|
|
43740
|
-
for (let
|
|
43741
|
-
let
|
|
43742
|
-
for (; e.nodes[
|
|
43743
|
-
for (;
|
|
43744
|
-
if (!!e.nodes[
|
|
43745
|
-
if (e.nodes[
|
|
43746
|
-
if (!matches(e.nodes[
|
|
43743
|
+
function matches(e, r) {
|
|
43744
|
+
if (e.isVariable && r && ("word" === r.type || "string" === r.type || "function" === r.type)) return !0;
|
|
43745
|
+
if (e.type !== r.type) return !1;
|
|
43746
|
+
if (doesNotMatchValue(e, r)) return !1;
|
|
43747
|
+
if (e.nodes && r.nodes) {
|
|
43748
|
+
for (let t = 0; t < Math.max(e.nodes.length, r.nodes.length); t++) {
|
|
43749
|
+
let o = t, a = t;
|
|
43750
|
+
for (; e.nodes[o] && "space" === e.nodes[o].type;) o++;
|
|
43751
|
+
for (; r.nodes[a] && "space" === r.nodes[a].type;) a++;
|
|
43752
|
+
if (!!e.nodes[o] != !!r.nodes[a]) return !1;
|
|
43753
|
+
if (e.nodes[o].anyRemainingArguments && r.nodes[a]) return !0;
|
|
43754
|
+
if (!matches(e.nodes[o], r.nodes[a])) return !1;
|
|
43747
43755
|
}
|
|
43748
43756
|
return !0;
|
|
43749
43757
|
}
|
|
43750
43758
|
return !0;
|
|
43751
43759
|
}
|
|
43752
|
-
function doesNotMatchValue(e,
|
|
43753
|
-
return ("space" !== e.type || "space" !==
|
|
43760
|
+
function doesNotMatchValue(e, r) {
|
|
43761
|
+
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());
|
|
43754
43762
|
}
|
|
43755
|
-
const
|
|
43756
|
-
function conditionsFromValue(
|
|
43757
|
-
const i =
|
|
43758
|
-
let
|
|
43763
|
+
const o$24 = /^var$/i;
|
|
43764
|
+
function conditionsFromValue(r, a = !1) {
|
|
43765
|
+
const i = r.value, s = [], n = t$16.filter((e) => i.includes(e.sniff) && (e.only_on_property ?? r.prop) === r.prop);
|
|
43766
|
+
let p = !1;
|
|
43759
43767
|
try {
|
|
43760
|
-
(0, postcss_value_parser$1.default)(i).walk((
|
|
43761
|
-
"function" ===
|
|
43768
|
+
(0, postcss_value_parser$1.default)(i).walk((r) => {
|
|
43769
|
+
"function" === r.type && o$24.test(r.value) && (p = !0);
|
|
43762
43770
|
try {
|
|
43763
|
-
const
|
|
43764
|
-
!1 !==
|
|
43771
|
+
const t = postcss_value_parser$1.default.unit(r.value);
|
|
43772
|
+
!1 !== t && (r.dimension = t);
|
|
43765
43773
|
} catch {}
|
|
43766
|
-
for (let e = 0; e <
|
|
43767
|
-
const
|
|
43768
|
-
for (let e = 0; e <
|
|
43774
|
+
for (let e = 0; e < n.length; e++) {
|
|
43775
|
+
const t = n[e];
|
|
43776
|
+
for (let e = 0; e < t.matchers.length; e++) if (matches(t.matchers[e], r)) return void s.push(`(${t.property}: ${t.supports})`);
|
|
43769
43777
|
}
|
|
43770
|
-
|
|
43778
|
+
s.push(...doublePositionGradients(r));
|
|
43771
43779
|
});
|
|
43772
43780
|
} catch {}
|
|
43773
|
-
return
|
|
43781
|
+
return a && !p ? { support: [] } : { support: Array.from(new Set(s)).sort() };
|
|
43782
|
+
}
|
|
43783
|
+
const a$6 = /* @__PURE__ */ new Map([
|
|
43784
|
+
["animation", [
|
|
43785
|
+
"animation-name",
|
|
43786
|
+
"animation-duration",
|
|
43787
|
+
"animation-timing-function",
|
|
43788
|
+
"animation-delay",
|
|
43789
|
+
"animation-iteration-count",
|
|
43790
|
+
"animation-direction",
|
|
43791
|
+
"animation-fill-mode",
|
|
43792
|
+
"animation-play-state",
|
|
43793
|
+
"animation-timeline",
|
|
43794
|
+
"animation-range",
|
|
43795
|
+
"animation-trigger",
|
|
43796
|
+
"animation-range-start",
|
|
43797
|
+
"animation-range-end"
|
|
43798
|
+
]],
|
|
43799
|
+
["animation-range", ["animation-range-start", "animation-range-end"]],
|
|
43800
|
+
["background", [
|
|
43801
|
+
"background-image",
|
|
43802
|
+
"background-position",
|
|
43803
|
+
"background-size",
|
|
43804
|
+
"background-repeat",
|
|
43805
|
+
"background-attachment",
|
|
43806
|
+
"background-origin",
|
|
43807
|
+
"background-clip",
|
|
43808
|
+
"background-color",
|
|
43809
|
+
"background-blend-mode",
|
|
43810
|
+
"background-repeat-block",
|
|
43811
|
+
"background-repeat-inline",
|
|
43812
|
+
"background-repeat-x",
|
|
43813
|
+
"background-repeat-y",
|
|
43814
|
+
"background-position-x",
|
|
43815
|
+
"background-position-y",
|
|
43816
|
+
"background-position-block",
|
|
43817
|
+
"background-position-inline"
|
|
43818
|
+
]],
|
|
43819
|
+
["background-position", [
|
|
43820
|
+
"background-position-x",
|
|
43821
|
+
"background-position-y",
|
|
43822
|
+
"background-position-block",
|
|
43823
|
+
"background-position-inline"
|
|
43824
|
+
]],
|
|
43825
|
+
["background-repeat", [
|
|
43826
|
+
"background-repeat-block",
|
|
43827
|
+
"background-repeat-inline",
|
|
43828
|
+
"background-repeat-x",
|
|
43829
|
+
"background-repeat-y"
|
|
43830
|
+
]],
|
|
43831
|
+
["size", [
|
|
43832
|
+
"block-size",
|
|
43833
|
+
"height",
|
|
43834
|
+
"inline-size",
|
|
43835
|
+
"width"
|
|
43836
|
+
]],
|
|
43837
|
+
["block-step", [
|
|
43838
|
+
"block-step-size",
|
|
43839
|
+
"block-step-insert",
|
|
43840
|
+
"block-step-align",
|
|
43841
|
+
"block-step-round"
|
|
43842
|
+
]],
|
|
43843
|
+
["border", [
|
|
43844
|
+
"border-width",
|
|
43845
|
+
"border-style",
|
|
43846
|
+
"border-color",
|
|
43847
|
+
"border-image",
|
|
43848
|
+
"border-image-source",
|
|
43849
|
+
"border-image-slice",
|
|
43850
|
+
"border-image-width",
|
|
43851
|
+
"border-image-outset",
|
|
43852
|
+
"border-image-repeat",
|
|
43853
|
+
"border-block-end-color",
|
|
43854
|
+
"border-block-start-color",
|
|
43855
|
+
"border-bottom-color",
|
|
43856
|
+
"border-top-color",
|
|
43857
|
+
"border-right-color",
|
|
43858
|
+
"border-left-color",
|
|
43859
|
+
"border-inline-end-color",
|
|
43860
|
+
"border-inline-start-color",
|
|
43861
|
+
"border-block-end-style",
|
|
43862
|
+
"border-block-start-style",
|
|
43863
|
+
"border-bottom-style",
|
|
43864
|
+
"border-inline-end-style",
|
|
43865
|
+
"border-inline-start-style",
|
|
43866
|
+
"border-left-style",
|
|
43867
|
+
"border-right-style",
|
|
43868
|
+
"border-top-style",
|
|
43869
|
+
"border-block-end-width",
|
|
43870
|
+
"border-block-start-width",
|
|
43871
|
+
"border-bottom-width",
|
|
43872
|
+
"border-inline-end-width",
|
|
43873
|
+
"border-inline-start-width",
|
|
43874
|
+
"border-left-width",
|
|
43875
|
+
"border-right-width",
|
|
43876
|
+
"border-top-width"
|
|
43877
|
+
]],
|
|
43878
|
+
["border-block", [
|
|
43879
|
+
"border-block-start",
|
|
43880
|
+
"border-block-end",
|
|
43881
|
+
"border-block-end-width",
|
|
43882
|
+
"border-block-end-style",
|
|
43883
|
+
"border-block-end-color",
|
|
43884
|
+
"border-block-start-width",
|
|
43885
|
+
"border-block-start-style",
|
|
43886
|
+
"border-block-start-color"
|
|
43887
|
+
]],
|
|
43888
|
+
["border-block-clip", ["border-block-start-clip", "border-block-end-clip"]],
|
|
43889
|
+
["border-block-color", ["border-block-start-color", "border-block-end-color"]],
|
|
43890
|
+
["border-block-end", [
|
|
43891
|
+
"border-block-end-width",
|
|
43892
|
+
"border-block-end-style",
|
|
43893
|
+
"border-block-end-color"
|
|
43894
|
+
]],
|
|
43895
|
+
["border-clip", [
|
|
43896
|
+
"border-block-end-clip",
|
|
43897
|
+
"border-block-start-clip",
|
|
43898
|
+
"border-bottom-clip",
|
|
43899
|
+
"border-top-clip",
|
|
43900
|
+
"border-right-clip",
|
|
43901
|
+
"border-left-clip",
|
|
43902
|
+
"border-inline-end-clip",
|
|
43903
|
+
"border-inline-start-clip"
|
|
43904
|
+
]],
|
|
43905
|
+
["border-color", [
|
|
43906
|
+
"border-block-end-color",
|
|
43907
|
+
"border-block-start-color",
|
|
43908
|
+
"border-bottom-color",
|
|
43909
|
+
"border-top-color",
|
|
43910
|
+
"border-right-color",
|
|
43911
|
+
"border-left-color",
|
|
43912
|
+
"border-inline-end-color",
|
|
43913
|
+
"border-inline-start-color"
|
|
43914
|
+
]],
|
|
43915
|
+
["border-block-end-radius", ["border-end-start-radius", "border-end-end-radius"]],
|
|
43916
|
+
["border-style", [
|
|
43917
|
+
"border-block-end-style",
|
|
43918
|
+
"border-block-start-style",
|
|
43919
|
+
"border-bottom-style",
|
|
43920
|
+
"border-inline-end-style",
|
|
43921
|
+
"border-inline-start-style",
|
|
43922
|
+
"border-left-style",
|
|
43923
|
+
"border-right-style",
|
|
43924
|
+
"border-top-style"
|
|
43925
|
+
]],
|
|
43926
|
+
["border-width", [
|
|
43927
|
+
"border-block-end-width",
|
|
43928
|
+
"border-block-start-width",
|
|
43929
|
+
"border-bottom-width",
|
|
43930
|
+
"border-inline-end-width",
|
|
43931
|
+
"border-inline-start-width",
|
|
43932
|
+
"border-left-width",
|
|
43933
|
+
"border-right-width",
|
|
43934
|
+
"border-top-width"
|
|
43935
|
+
]],
|
|
43936
|
+
["border-block-start", [
|
|
43937
|
+
"border-block-start-width",
|
|
43938
|
+
"border-block-start-style",
|
|
43939
|
+
"border-block-start-color"
|
|
43940
|
+
]],
|
|
43941
|
+
["border-block-start-radius", ["border-start-start-radius", "border-start-end-radius"]],
|
|
43942
|
+
["border-block-style", ["border-block-start-style", "border-block-end-style"]],
|
|
43943
|
+
["border-block-width", ["border-block-start-width", "border-block-end-width"]],
|
|
43944
|
+
["border-bottom", [
|
|
43945
|
+
"border-bottom-width",
|
|
43946
|
+
"border-bottom-style",
|
|
43947
|
+
"border-bottom-color"
|
|
43948
|
+
]],
|
|
43949
|
+
["border-radius", [
|
|
43950
|
+
"border-bottom-left-radius",
|
|
43951
|
+
"border-bottom-right-radius",
|
|
43952
|
+
"border-end-end-radius",
|
|
43953
|
+
"border-end-start-radius",
|
|
43954
|
+
"border-top-left-radius",
|
|
43955
|
+
"border-top-right-radius",
|
|
43956
|
+
"border-start-end-radius",
|
|
43957
|
+
"border-start-start-radius"
|
|
43958
|
+
]],
|
|
43959
|
+
["border-bottom-radius", ["border-bottom-left-radius", "border-bottom-right-radius"]],
|
|
43960
|
+
["border-image", [
|
|
43961
|
+
"border-image-source",
|
|
43962
|
+
"border-image-slice",
|
|
43963
|
+
"border-image-width",
|
|
43964
|
+
"border-image-outset",
|
|
43965
|
+
"border-image-repeat"
|
|
43966
|
+
]],
|
|
43967
|
+
["border-inline", [
|
|
43968
|
+
"border-inline-start",
|
|
43969
|
+
"border-inline-end",
|
|
43970
|
+
"border-inline-end-width",
|
|
43971
|
+
"border-inline-end-style",
|
|
43972
|
+
"border-inline-end-color",
|
|
43973
|
+
"border-inline-start-width",
|
|
43974
|
+
"border-inline-start-style",
|
|
43975
|
+
"border-inline-start-color"
|
|
43976
|
+
]],
|
|
43977
|
+
["border-inline-clip", ["border-inline-start-clip", "border-inline-end-clip"]],
|
|
43978
|
+
["border-inline-color", ["border-inline-start-color", "border-inline-end-color"]],
|
|
43979
|
+
["border-inline-end", [
|
|
43980
|
+
"border-inline-end-width",
|
|
43981
|
+
"border-inline-end-style",
|
|
43982
|
+
"border-inline-end-color"
|
|
43983
|
+
]],
|
|
43984
|
+
["border-inline-end-radius", ["border-start-end-radius", "border-end-end-radius"]],
|
|
43985
|
+
["border-inline-start", [
|
|
43986
|
+
"border-inline-start-width",
|
|
43987
|
+
"border-inline-start-style",
|
|
43988
|
+
"border-inline-start-color"
|
|
43989
|
+
]],
|
|
43990
|
+
["border-inline-start-radius", ["border-start-start-radius", "border-end-start-radius"]],
|
|
43991
|
+
["border-inline-style", ["border-inline-start-style", "border-inline-end-style"]],
|
|
43992
|
+
["border-inline-width", ["border-inline-start-width", "border-inline-end-width"]],
|
|
43993
|
+
["border-left", [
|
|
43994
|
+
"border-left-width",
|
|
43995
|
+
"border-left-style",
|
|
43996
|
+
"border-left-color"
|
|
43997
|
+
]],
|
|
43998
|
+
["border-left-radius", ["border-top-left-radius", "border-bottom-left-radius"]],
|
|
43999
|
+
["border-right", [
|
|
44000
|
+
"border-right-width",
|
|
44001
|
+
"border-right-style",
|
|
44002
|
+
"border-right-color"
|
|
44003
|
+
]],
|
|
44004
|
+
["border-right-radius", ["border-top-right-radius", "border-bottom-right-radius"]],
|
|
44005
|
+
["border-top", [
|
|
44006
|
+
"border-top-width",
|
|
44007
|
+
"border-top-style",
|
|
44008
|
+
"border-top-color"
|
|
44009
|
+
]],
|
|
44010
|
+
["border-top-radius", ["border-top-left-radius", "border-top-right-radius"]],
|
|
44011
|
+
["inset", [
|
|
44012
|
+
"bottom",
|
|
44013
|
+
"top",
|
|
44014
|
+
"right",
|
|
44015
|
+
"left",
|
|
44016
|
+
"inset-block-end",
|
|
44017
|
+
"inset-block-start",
|
|
44018
|
+
"inset-inline-end",
|
|
44019
|
+
"inset-inline-start"
|
|
44020
|
+
]],
|
|
44021
|
+
["box-shadow", [
|
|
44022
|
+
"box-shadow-color",
|
|
44023
|
+
"box-shadow-offset",
|
|
44024
|
+
"box-shadow-blur",
|
|
44025
|
+
"box-shadow-spread",
|
|
44026
|
+
"box-shadow-position"
|
|
44027
|
+
]],
|
|
44028
|
+
["caret", [
|
|
44029
|
+
"caret-color",
|
|
44030
|
+
"caret-animation",
|
|
44031
|
+
"caret-shape"
|
|
44032
|
+
]],
|
|
44033
|
+
["color-adjust", ["print-color-adjust"]],
|
|
44034
|
+
["column-rule", [
|
|
44035
|
+
"column-rule-width",
|
|
44036
|
+
"column-rule-style",
|
|
44037
|
+
"column-rule-color"
|
|
44038
|
+
]],
|
|
44039
|
+
["column-rule-inset", [
|
|
44040
|
+
"column-rule-inset-cap-start",
|
|
44041
|
+
"column-rule-inset-cap-end",
|
|
44042
|
+
"column-rule-inset-junction-start",
|
|
44043
|
+
"column-rule-inset-junction-end"
|
|
44044
|
+
]],
|
|
44045
|
+
["column-rule-inset-cap", ["column-rule-inset-cap-start", "column-rule-inset-cap-end"]],
|
|
44046
|
+
["column-rule-inset-end", ["column-rule-inset-cap-end", "column-rule-inset-junction-end"]],
|
|
44047
|
+
["column-rule-inset-junction", ["column-rule-inset-junction-start", "column-rule-inset-junction-end"]],
|
|
44048
|
+
["column-rule-inset-start", ["column-rule-inset-cap-start", "column-rule-inset-junction-start"]],
|
|
44049
|
+
["columns", [
|
|
44050
|
+
"column-width",
|
|
44051
|
+
"column-count",
|
|
44052
|
+
"column-height"
|
|
44053
|
+
]],
|
|
44054
|
+
["contain-intrinsic-size", [
|
|
44055
|
+
"contain-intrinsic-block-size",
|
|
44056
|
+
"contain-intrinsic-height",
|
|
44057
|
+
"contain-intrinsic-inline-size",
|
|
44058
|
+
"contain-intrinsic-width"
|
|
44059
|
+
]],
|
|
44060
|
+
["container", ["container-name", "container-type"]],
|
|
44061
|
+
["corner", [
|
|
44062
|
+
"border-radius",
|
|
44063
|
+
"corner-shape",
|
|
44064
|
+
"corner-bottom-left-shape",
|
|
44065
|
+
"corner-bottom-right-shape",
|
|
44066
|
+
"corner-end-end-shape",
|
|
44067
|
+
"corner-end-start-shape",
|
|
44068
|
+
"corner-top-left-shape",
|
|
44069
|
+
"corner-top-right-shape",
|
|
44070
|
+
"corner-start-end-shape",
|
|
44071
|
+
"corner-start-start-shape",
|
|
44072
|
+
"border-bottom-left-radius",
|
|
44073
|
+
"border-bottom-right-radius",
|
|
44074
|
+
"border-end-end-radius",
|
|
44075
|
+
"border-end-start-radius",
|
|
44076
|
+
"border-top-left-radius",
|
|
44077
|
+
"border-top-right-radius",
|
|
44078
|
+
"border-start-end-radius",
|
|
44079
|
+
"border-start-start-radius"
|
|
44080
|
+
]],
|
|
44081
|
+
["corner-block-end", [
|
|
44082
|
+
"border-block-end-radius",
|
|
44083
|
+
"corner-block-end-shape",
|
|
44084
|
+
"corner-end-start-shape",
|
|
44085
|
+
"corner-end-end-shape",
|
|
44086
|
+
"border-end-start-radius",
|
|
44087
|
+
"border-end-end-radius"
|
|
44088
|
+
]],
|
|
44089
|
+
["corner-block-end-shape", ["corner-end-start-shape", "corner-end-end-shape"]],
|
|
44090
|
+
["corner-block-start", [
|
|
44091
|
+
"border-block-start-radius",
|
|
44092
|
+
"corner-block-start-shape",
|
|
44093
|
+
"corner-start-start-shape",
|
|
44094
|
+
"corner-start-end-shape",
|
|
44095
|
+
"border-start-start-radius",
|
|
44096
|
+
"border-start-end-radius"
|
|
44097
|
+
]],
|
|
44098
|
+
["corner-block-start-shape", ["corner-start-start-shape", "corner-start-end-shape"]],
|
|
44099
|
+
["corner-bottom", [
|
|
44100
|
+
"border-bottom-radius",
|
|
44101
|
+
"corner-bottom-shape",
|
|
44102
|
+
"corner-bottom-left-shape",
|
|
44103
|
+
"corner-bottom-right-shape",
|
|
44104
|
+
"border-bottom-left-radius",
|
|
44105
|
+
"border-bottom-right-radius"
|
|
44106
|
+
]],
|
|
44107
|
+
["corner-bottom-left", ["border-bottom-left-radius", "corner-bottom-left-shape"]],
|
|
44108
|
+
["corner-shape", [
|
|
44109
|
+
"corner-bottom-left-shape",
|
|
44110
|
+
"corner-bottom-right-shape",
|
|
44111
|
+
"corner-end-end-shape",
|
|
44112
|
+
"corner-end-start-shape",
|
|
44113
|
+
"corner-top-left-shape",
|
|
44114
|
+
"corner-top-right-shape",
|
|
44115
|
+
"corner-start-end-shape",
|
|
44116
|
+
"corner-start-start-shape"
|
|
44117
|
+
]],
|
|
44118
|
+
["corner-bottom-right", ["border-bottom-right-radius", "corner-bottom-right-shape"]],
|
|
44119
|
+
["corner-bottom-shape", ["corner-bottom-left-shape", "corner-bottom-right-shape"]],
|
|
44120
|
+
["corner-end-end", ["border-end-end-radius", "corner-end-end-shape"]],
|
|
44121
|
+
["corner-end-start", ["border-end-start-radius", "corner-end-start-shape"]],
|
|
44122
|
+
["corner-inline-end", [
|
|
44123
|
+
"border-inline-end-radius",
|
|
44124
|
+
"corner-inline-end-shape",
|
|
44125
|
+
"corner-start-end-shape",
|
|
44126
|
+
"corner-end-end-shape",
|
|
44127
|
+
"border-start-end-radius",
|
|
44128
|
+
"border-end-end-radius"
|
|
44129
|
+
]],
|
|
44130
|
+
["corner-inline-end-shape", ["corner-start-end-shape", "corner-end-end-shape"]],
|
|
44131
|
+
["corner-inline-start", [
|
|
44132
|
+
"border-inline-start-radius",
|
|
44133
|
+
"corner-inline-start-shape",
|
|
44134
|
+
"corner-start-start-shape",
|
|
44135
|
+
"corner-end-start-shape",
|
|
44136
|
+
"border-start-start-radius",
|
|
44137
|
+
"border-end-start-radius"
|
|
44138
|
+
]],
|
|
44139
|
+
["corner-inline-start-shape", ["corner-start-start-shape", "corner-end-start-shape"]],
|
|
44140
|
+
["corner-left", [
|
|
44141
|
+
"border-left-radius",
|
|
44142
|
+
"corner-left-shape",
|
|
44143
|
+
"corner-top-left-shape",
|
|
44144
|
+
"corner-bottom-left-shape",
|
|
44145
|
+
"border-top-left-radius",
|
|
44146
|
+
"border-bottom-left-radius"
|
|
44147
|
+
]],
|
|
44148
|
+
["corner-left-shape", ["corner-top-left-shape", "corner-bottom-left-shape"]],
|
|
44149
|
+
["corner-right", [
|
|
44150
|
+
"border-right-radius",
|
|
44151
|
+
"corner-right-shape",
|
|
44152
|
+
"corner-top-right-shape",
|
|
44153
|
+
"corner-bottom-right-shape",
|
|
44154
|
+
"border-top-right-radius",
|
|
44155
|
+
"border-bottom-right-radius"
|
|
44156
|
+
]],
|
|
44157
|
+
["corner-right-shape", ["corner-top-right-shape", "corner-bottom-right-shape"]],
|
|
44158
|
+
["corner-start-end", ["border-start-end-radius", "corner-start-end-shape"]],
|
|
44159
|
+
["corner-start-start", ["border-start-start-radius", "corner-start-start-shape"]],
|
|
44160
|
+
["corner-top", [
|
|
44161
|
+
"border-top-radius",
|
|
44162
|
+
"corner-top-shape",
|
|
44163
|
+
"corner-top-left-shape",
|
|
44164
|
+
"corner-top-right-shape",
|
|
44165
|
+
"border-top-left-radius",
|
|
44166
|
+
"border-top-right-radius"
|
|
44167
|
+
]],
|
|
44168
|
+
["corner-top-left", ["border-top-left-radius", "corner-top-left-shape"]],
|
|
44169
|
+
["corner-top-right", ["border-top-right-radius", "corner-top-right-shape"]],
|
|
44170
|
+
["corner-top-shape", ["corner-top-left-shape", "corner-top-right-shape"]],
|
|
44171
|
+
["cue", ["cue-before", "cue-after"]],
|
|
44172
|
+
["flex", [
|
|
44173
|
+
"flex-grow",
|
|
44174
|
+
"flex-shrink",
|
|
44175
|
+
"flex-basis"
|
|
44176
|
+
]],
|
|
44177
|
+
["flex-flow", ["flex-direction", "flex-wrap"]],
|
|
44178
|
+
["font", [
|
|
44179
|
+
"font-style",
|
|
44180
|
+
"font-variant",
|
|
44181
|
+
"font-weight",
|
|
44182
|
+
"font-stretch",
|
|
44183
|
+
"font-size",
|
|
44184
|
+
"line-height",
|
|
44185
|
+
"font-family",
|
|
44186
|
+
"font-feature-settings",
|
|
44187
|
+
"font-kerning",
|
|
44188
|
+
"font-language-override",
|
|
44189
|
+
"font-optical-sizing",
|
|
44190
|
+
"font-size-adjust",
|
|
44191
|
+
"font-variation-settings",
|
|
44192
|
+
"font-variant-ligatures",
|
|
44193
|
+
"font-variant-caps",
|
|
44194
|
+
"font-variant-alternates",
|
|
44195
|
+
"font-variant-numeric",
|
|
44196
|
+
"font-variant-east-asian",
|
|
44197
|
+
"font-variant-position",
|
|
44198
|
+
"font-variant-emoji"
|
|
44199
|
+
]],
|
|
44200
|
+
["font-synthesis", [
|
|
44201
|
+
"font-synthesis-weight",
|
|
44202
|
+
"font-synthesis-style",
|
|
44203
|
+
"font-synthesis-small-caps"
|
|
44204
|
+
]],
|
|
44205
|
+
["font-variant", [
|
|
44206
|
+
"font-variant-ligatures",
|
|
44207
|
+
"font-variant-caps",
|
|
44208
|
+
"font-variant-alternates",
|
|
44209
|
+
"font-variant-numeric",
|
|
44210
|
+
"font-variant-east-asian",
|
|
44211
|
+
"font-variant-position",
|
|
44212
|
+
"font-variant-emoji"
|
|
44213
|
+
]],
|
|
44214
|
+
["gap", ["row-gap", "column-gap"]],
|
|
44215
|
+
["grid", [
|
|
44216
|
+
"grid-template-rows",
|
|
44217
|
+
"grid-template-columns",
|
|
44218
|
+
"grid-template-areas",
|
|
44219
|
+
"grid-auto-rows",
|
|
44220
|
+
"grid-auto-columns",
|
|
44221
|
+
"grid-auto-flow"
|
|
44222
|
+
]],
|
|
44223
|
+
["grid-area", [
|
|
44224
|
+
"grid-row-start",
|
|
44225
|
+
"grid-column-start",
|
|
44226
|
+
"grid-row-end",
|
|
44227
|
+
"grid-column-end"
|
|
44228
|
+
]],
|
|
44229
|
+
["grid-column", ["grid-column-start", "grid-column-end"]],
|
|
44230
|
+
["grid-gap", ["row-gap", "column-gap"]],
|
|
44231
|
+
["grid-row", ["grid-row-start", "grid-row-end"]],
|
|
44232
|
+
["grid-template", [
|
|
44233
|
+
"grid-template-rows",
|
|
44234
|
+
"grid-template-columns",
|
|
44235
|
+
"grid-template-areas"
|
|
44236
|
+
]],
|
|
44237
|
+
["inset-block", ["inset-block-start", "inset-block-end"]],
|
|
44238
|
+
["inset-inline", ["inset-inline-start", "inset-inline-end"]],
|
|
44239
|
+
["interest-delay", ["interest-delay-start", "interest-delay-end"]],
|
|
44240
|
+
["line-clamp", [
|
|
44241
|
+
"max-lines",
|
|
44242
|
+
"block-ellipsis",
|
|
44243
|
+
"continue"
|
|
44244
|
+
]],
|
|
44245
|
+
["list-style", [
|
|
44246
|
+
"list-style-type",
|
|
44247
|
+
"list-style-position",
|
|
44248
|
+
"list-style-image"
|
|
44249
|
+
]],
|
|
44250
|
+
["margin", [
|
|
44251
|
+
"margin-top",
|
|
44252
|
+
"margin-right",
|
|
44253
|
+
"margin-bottom",
|
|
44254
|
+
"margin-left",
|
|
44255
|
+
"margin-block-end",
|
|
44256
|
+
"margin-block-start",
|
|
44257
|
+
"margin-inline-end",
|
|
44258
|
+
"margin-inline-start"
|
|
44259
|
+
]],
|
|
44260
|
+
["margin-block", ["margin-block-start", "margin-block-end"]],
|
|
44261
|
+
["margin-inline", ["margin-inline-start", "margin-inline-end"]],
|
|
44262
|
+
["marker", [
|
|
44263
|
+
"marker-start",
|
|
44264
|
+
"marker-mid",
|
|
44265
|
+
"marker-end"
|
|
44266
|
+
]],
|
|
44267
|
+
["mask", [
|
|
44268
|
+
"mask-image",
|
|
44269
|
+
"mask-position",
|
|
44270
|
+
"mask-size",
|
|
44271
|
+
"mask-repeat",
|
|
44272
|
+
"mask-origin",
|
|
44273
|
+
"mask-clip",
|
|
44274
|
+
"mask-composite",
|
|
44275
|
+
"mask-mode",
|
|
44276
|
+
"mask-border",
|
|
44277
|
+
"mask-border-source",
|
|
44278
|
+
"mask-border-slice",
|
|
44279
|
+
"mask-border-width",
|
|
44280
|
+
"mask-border-outset",
|
|
44281
|
+
"mask-border-repeat",
|
|
44282
|
+
"mask-border-mode"
|
|
44283
|
+
]],
|
|
44284
|
+
["mask-border", [
|
|
44285
|
+
"mask-border-source",
|
|
44286
|
+
"mask-border-slice",
|
|
44287
|
+
"mask-border-width",
|
|
44288
|
+
"mask-border-outset",
|
|
44289
|
+
"mask-border-repeat",
|
|
44290
|
+
"mask-border-mode"
|
|
44291
|
+
]],
|
|
44292
|
+
["max-size", [
|
|
44293
|
+
"max-block-size",
|
|
44294
|
+
"max-height",
|
|
44295
|
+
"max-inline-size",
|
|
44296
|
+
"max-width"
|
|
44297
|
+
]],
|
|
44298
|
+
["min-size", [
|
|
44299
|
+
"min-block-size",
|
|
44300
|
+
"min-height",
|
|
44301
|
+
"min-inline-size",
|
|
44302
|
+
"min-width"
|
|
44303
|
+
]],
|
|
44304
|
+
["offset", [
|
|
44305
|
+
"offset-path",
|
|
44306
|
+
"offset-distance",
|
|
44307
|
+
"offset-rotate",
|
|
44308
|
+
"offset-anchor",
|
|
44309
|
+
"offset-position"
|
|
44310
|
+
]],
|
|
44311
|
+
["outline", [
|
|
44312
|
+
"outline-width",
|
|
44313
|
+
"outline-style",
|
|
44314
|
+
"outline-color"
|
|
44315
|
+
]],
|
|
44316
|
+
["overflow", [
|
|
44317
|
+
"overflow-x",
|
|
44318
|
+
"overflow-y",
|
|
44319
|
+
"overflow-block",
|
|
44320
|
+
"overflow-inline"
|
|
44321
|
+
]],
|
|
44322
|
+
["overflow-clip-margin", [
|
|
44323
|
+
"overflow-clip-margin-top",
|
|
44324
|
+
"overflow-clip-margin-right",
|
|
44325
|
+
"overflow-clip-margin-bottom",
|
|
44326
|
+
"overflow-clip-margin-left",
|
|
44327
|
+
"overflow-clip-margin-block-end",
|
|
44328
|
+
"overflow-clip-margin-block-start",
|
|
44329
|
+
"overflow-clip-margin-inline-end",
|
|
44330
|
+
"overflow-clip-margin-inline-start"
|
|
44331
|
+
]],
|
|
44332
|
+
["overflow-clip-margin-block", ["overflow-clip-margin-block-start", "overflow-clip-margin-block-end"]],
|
|
44333
|
+
["overflow-clip-margin-inline", ["overflow-clip-margin-inline-start", "overflow-clip-margin-inline-end"]],
|
|
44334
|
+
["overscroll-behavior", [
|
|
44335
|
+
"overscroll-behavior-x",
|
|
44336
|
+
"overscroll-behavior-y",
|
|
44337
|
+
"overscroll-behavior-block",
|
|
44338
|
+
"overscroll-behavior-inline"
|
|
44339
|
+
]],
|
|
44340
|
+
["padding", [
|
|
44341
|
+
"padding-top",
|
|
44342
|
+
"padding-right",
|
|
44343
|
+
"padding-bottom",
|
|
44344
|
+
"padding-left",
|
|
44345
|
+
"padding-block-end",
|
|
44346
|
+
"padding-block-start",
|
|
44347
|
+
"padding-inline-end",
|
|
44348
|
+
"padding-inline-start"
|
|
44349
|
+
]],
|
|
44350
|
+
["padding-block", ["padding-block-start", "padding-block-end"]],
|
|
44351
|
+
["padding-inline", ["padding-inline-start", "padding-inline-end"]],
|
|
44352
|
+
["pause", ["pause-before", "pause-after"]],
|
|
44353
|
+
["place-content", ["align-content", "justify-content"]],
|
|
44354
|
+
["place-items", ["align-items", "justify-items"]],
|
|
44355
|
+
["place-self", ["align-self", "justify-self"]],
|
|
44356
|
+
["pointer-timeline", ["pointer-timeline-name", "pointer-timeline-axis"]],
|
|
44357
|
+
["position-try", ["position-try-order", "position-try-fallbacks"]],
|
|
44358
|
+
["rest", ["rest-before", "rest-after"]],
|
|
44359
|
+
["row-rule", [
|
|
44360
|
+
"row-rule-width",
|
|
44361
|
+
"row-rule-style",
|
|
44362
|
+
"row-rule-color"
|
|
44363
|
+
]],
|
|
44364
|
+
["row-rule-inset", [
|
|
44365
|
+
"row-rule-inset-cap-start",
|
|
44366
|
+
"row-rule-inset-cap-end",
|
|
44367
|
+
"row-rule-inset-junction-start",
|
|
44368
|
+
"row-rule-inset-junction-end"
|
|
44369
|
+
]],
|
|
44370
|
+
["row-rule-inset-cap", ["row-rule-inset-cap-start", "row-rule-inset-cap-end"]],
|
|
44371
|
+
["row-rule-inset-end", ["row-rule-inset-cap-end", "row-rule-inset-junction-end"]],
|
|
44372
|
+
["row-rule-inset-junction", ["row-rule-inset-junction-start", "row-rule-inset-junction-end"]],
|
|
44373
|
+
["row-rule-inset-start", ["row-rule-inset-cap-start", "row-rule-inset-junction-start"]],
|
|
44374
|
+
["rule", [
|
|
44375
|
+
"column-rule",
|
|
44376
|
+
"row-rule",
|
|
44377
|
+
"row-rule-width",
|
|
44378
|
+
"row-rule-style",
|
|
44379
|
+
"row-rule-color",
|
|
44380
|
+
"column-rule-width",
|
|
44381
|
+
"column-rule-style",
|
|
44382
|
+
"column-rule-color"
|
|
44383
|
+
]],
|
|
44384
|
+
["rule-break", ["column-rule-break", "row-rule-break"]],
|
|
44385
|
+
["rule-color", ["column-rule-color", "row-rule-color"]],
|
|
44386
|
+
["rule-inset", [
|
|
44387
|
+
"column-rule-inset",
|
|
44388
|
+
"row-rule-inset",
|
|
44389
|
+
"row-rule-inset-cap-start",
|
|
44390
|
+
"row-rule-inset-cap-end",
|
|
44391
|
+
"row-rule-inset-junction-start",
|
|
44392
|
+
"row-rule-inset-junction-end",
|
|
44393
|
+
"column-rule-inset-cap-start",
|
|
44394
|
+
"column-rule-inset-cap-end",
|
|
44395
|
+
"column-rule-inset-junction-start",
|
|
44396
|
+
"column-rule-inset-junction-end"
|
|
44397
|
+
]],
|
|
44398
|
+
["rule-inset-cap", [
|
|
44399
|
+
"column-rule-inset-cap",
|
|
44400
|
+
"column-rule-inset-cap-start",
|
|
44401
|
+
"column-rule-inset-cap-end"
|
|
44402
|
+
]],
|
|
44403
|
+
["rule-inset-end", [
|
|
44404
|
+
"column-rule-inset-end",
|
|
44405
|
+
"row-rule-inset-end",
|
|
44406
|
+
"row-rule-inset-cap-end",
|
|
44407
|
+
"row-rule-inset-junction-end",
|
|
44408
|
+
"column-rule-inset-cap-end",
|
|
44409
|
+
"column-rule-inset-junction-end"
|
|
44410
|
+
]],
|
|
44411
|
+
["rule-inset-junction", [
|
|
44412
|
+
"column-rule-inset-junction",
|
|
44413
|
+
"column-rule-inset-junction-start",
|
|
44414
|
+
"column-rule-inset-junction-end"
|
|
44415
|
+
]],
|
|
44416
|
+
["rule-inset-start", [
|
|
44417
|
+
"column-rule-inset-start",
|
|
44418
|
+
"row-rule-inset-start",
|
|
44419
|
+
"row-rule-inset-cap-start",
|
|
44420
|
+
"row-rule-inset-junction-start",
|
|
44421
|
+
"column-rule-inset-cap-start",
|
|
44422
|
+
"column-rule-inset-junction-start"
|
|
44423
|
+
]],
|
|
44424
|
+
["rule-style", ["column-rule-style", "row-rule-style"]],
|
|
44425
|
+
["rule-visibility-items", ["column-rule-visibility-items"]],
|
|
44426
|
+
["rule-width", ["column-rule-width", "row-rule-width"]],
|
|
44427
|
+
["scroll-margin", [
|
|
44428
|
+
"scroll-margin-top",
|
|
44429
|
+
"scroll-margin-right",
|
|
44430
|
+
"scroll-margin-bottom",
|
|
44431
|
+
"scroll-margin-left",
|
|
44432
|
+
"scroll-margin-block-end",
|
|
44433
|
+
"scroll-margin-block-start",
|
|
44434
|
+
"scroll-margin-inline-end",
|
|
44435
|
+
"scroll-margin-inline-start"
|
|
44436
|
+
]],
|
|
44437
|
+
["scroll-margin-block", ["scroll-margin-block-start", "scroll-margin-block-end"]],
|
|
44438
|
+
["scroll-margin-inline", ["scroll-margin-inline-start", "scroll-margin-inline-end"]],
|
|
44439
|
+
["scroll-padding", [
|
|
44440
|
+
"scroll-padding-top",
|
|
44441
|
+
"scroll-padding-right",
|
|
44442
|
+
"scroll-padding-bottom",
|
|
44443
|
+
"scroll-padding-left",
|
|
44444
|
+
"scroll-padding-block-end",
|
|
44445
|
+
"scroll-padding-block-start",
|
|
44446
|
+
"scroll-padding-inline-end",
|
|
44447
|
+
"scroll-padding-inline-start"
|
|
44448
|
+
]],
|
|
44449
|
+
["scroll-padding-block", ["scroll-padding-block-start", "scroll-padding-block-end"]],
|
|
44450
|
+
["scroll-padding-inline", ["scroll-padding-inline-start", "scroll-padding-inline-end"]],
|
|
44451
|
+
["scroll-timeline", ["scroll-timeline-name", "scroll-timeline-axis"]],
|
|
44452
|
+
["text-align", ["text-align-all", "text-align-last"]],
|
|
44453
|
+
["text-decoration", [
|
|
44454
|
+
"text-decoration-line",
|
|
44455
|
+
"text-decoration-thickness",
|
|
44456
|
+
"text-decoration-style",
|
|
44457
|
+
"text-decoration-color"
|
|
44458
|
+
]],
|
|
44459
|
+
["text-decoration-skip", [
|
|
44460
|
+
"text-decoration-skip-self",
|
|
44461
|
+
"text-decoration-skip-box",
|
|
44462
|
+
"text-decoration-skip-spaces",
|
|
44463
|
+
"text-decoration-skip-ink"
|
|
44464
|
+
]],
|
|
44465
|
+
["text-emphasis", ["text-emphasis-style", "text-emphasis-color"]],
|
|
44466
|
+
["text-spacing", ["text-spacing-trim", "text-autospace"]],
|
|
44467
|
+
["text-wrap", ["text-wrap-mode", "text-wrap-style"]],
|
|
44468
|
+
["timeline-trigger", [
|
|
44469
|
+
"timeline-trigger-name",
|
|
44470
|
+
"timeline-trigger-source",
|
|
44471
|
+
"timeline-trigger-activation-range",
|
|
44472
|
+
"timeline-trigger-active-range",
|
|
44473
|
+
"timeline-trigger-active-range-start",
|
|
44474
|
+
"timeline-trigger-active-range-end",
|
|
44475
|
+
"timeline-trigger-activation-range-start",
|
|
44476
|
+
"timeline-trigger-activation-range-end"
|
|
44477
|
+
]],
|
|
44478
|
+
["timeline-trigger-activation-range", ["timeline-trigger-activation-range-start", "timeline-trigger-activation-range-end"]],
|
|
44479
|
+
["timeline-trigger-active-range", ["timeline-trigger-active-range-start", "timeline-trigger-active-range-end"]],
|
|
44480
|
+
["transition", [
|
|
44481
|
+
"transition-property",
|
|
44482
|
+
"transition-duration",
|
|
44483
|
+
"transition-timing-function",
|
|
44484
|
+
"transition-delay",
|
|
44485
|
+
"transition-behavior"
|
|
44486
|
+
]],
|
|
44487
|
+
["vertical-align", [
|
|
44488
|
+
"alignment-baseline",
|
|
44489
|
+
"baseline-shift",
|
|
44490
|
+
"baseline-source"
|
|
44491
|
+
]],
|
|
44492
|
+
["view-timeline", ["view-timeline-name", "view-timeline-axis"]],
|
|
44493
|
+
["white-space", ["white-space-collapse", "text-wrap-mode"]]
|
|
44494
|
+
]), i$9 = /var\(/i, s$16 = /^initial$/i, n$11 = /^\s*$/;
|
|
44495
|
+
function cloneDeclarations(e, r) {
|
|
44496
|
+
const t = a$6.get(r.prop.toLowerCase());
|
|
44497
|
+
if (!t?.length) return void e.append(r.clone());
|
|
44498
|
+
const o = [r];
|
|
44499
|
+
let i = r.next();
|
|
44500
|
+
for (; i;) "decl" === i.type && t.includes(i.prop) && o.push(i), i = i.next();
|
|
44501
|
+
o.forEach((r) => {
|
|
44502
|
+
e.append(r.clone());
|
|
44503
|
+
});
|
|
43774
44504
|
}
|
|
43775
|
-
const
|
|
44505
|
+
const creator$51 = () => ({
|
|
43776
44506
|
postcssPlugin: "postcss-progressive-custom-properties",
|
|
43777
44507
|
prepare() {
|
|
43778
44508
|
const e = /* @__PURE__ */ new WeakMap();
|
|
43779
44509
|
return {
|
|
43780
44510
|
postcssPlugin: "postcss-progressive-custom-properties",
|
|
43781
|
-
OnceExit(
|
|
43782
|
-
|
|
43783
|
-
if (!
|
|
43784
|
-
const
|
|
44511
|
+
OnceExit(r, { postcss: t }) {
|
|
44512
|
+
r.walkDecls((r) => {
|
|
44513
|
+
if (!r.parent) return;
|
|
44514
|
+
const o = e.get(r.parent) || {
|
|
43785
44515
|
conditionalRules: [],
|
|
43786
44516
|
propNames: /* @__PURE__ */ new Set(),
|
|
43787
44517
|
lastConditionParams: { support: void 0 },
|
|
43788
44518
|
lastConditionalRule: void 0
|
|
43789
44519
|
};
|
|
43790
|
-
if (e.set(
|
|
43791
|
-
if (!
|
|
44520
|
+
if (e.set(r.parent, o), r.variable) {
|
|
44521
|
+
if (!o.propNames.has(r.prop)) return void o.propNames.add(r.prop);
|
|
43792
44522
|
} else {
|
|
43793
|
-
const e =
|
|
43794
|
-
if (!
|
|
44523
|
+
const e = r.prop.toLowerCase();
|
|
44524
|
+
if (!o.propNames.has(e)) return void o.propNames.add(e);
|
|
43795
44525
|
}
|
|
43796
|
-
if (!
|
|
43797
|
-
if (
|
|
43798
|
-
if (
|
|
43799
|
-
const
|
|
43800
|
-
if (!
|
|
43801
|
-
if (
|
|
43802
|
-
const
|
|
43803
|
-
if (
|
|
44526
|
+
if (!r.variable && !i$9.test(r.value)) return;
|
|
44527
|
+
if (s$16.test(r.value)) return;
|
|
44528
|
+
if (n$11.test(r.value)) return;
|
|
44529
|
+
const a = conditionsFromValue(r, !r.variable).support.join(" and ");
|
|
44530
|
+
if (!a) return;
|
|
44531
|
+
if (o.lastConditionParams.support !== a && (o.lastConditionalRule = void 0), o.lastConditionalRule) return cloneDeclarations(o.lastConditionalRule, r), void r.remove();
|
|
44532
|
+
const p = [];
|
|
44533
|
+
if (a && p.push(t.atRule({
|
|
43804
44534
|
name: "supports",
|
|
43805
|
-
params:
|
|
43806
|
-
source:
|
|
44535
|
+
params: a,
|
|
44536
|
+
source: r.parent.source,
|
|
43807
44537
|
raws: {
|
|
43808
44538
|
before: "\n\n",
|
|
43809
44539
|
after: "\n"
|
|
43810
44540
|
}
|
|
43811
|
-
})), !
|
|
43812
|
-
for (let e = 0; e <
|
|
43813
|
-
const
|
|
43814
|
-
|
|
44541
|
+
})), !p.length) return;
|
|
44542
|
+
for (let e = 0; e < p.length - 1; e++) {
|
|
44543
|
+
const r = p[e], t = p[e + 1];
|
|
44544
|
+
r.append(t);
|
|
43815
44545
|
}
|
|
43816
|
-
const l =
|
|
43817
|
-
|
|
43818
|
-
}),
|
|
43819
|
-
const
|
|
43820
|
-
|
|
43821
|
-
|
|
44546
|
+
const l = p[0], d = p[p.length - 1], c = r.parent.clone();
|
|
44547
|
+
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);
|
|
44548
|
+
}), r.walk((r) => {
|
|
44549
|
+
const t = e.get(r);
|
|
44550
|
+
t && 0 !== t.conditionalRules.length && t.conditionalRules.reverse().forEach((e) => {
|
|
44551
|
+
r.after(e);
|
|
43822
44552
|
});
|
|
43823
44553
|
});
|
|
43824
44554
|
}
|
|
@@ -43827,7 +44557,7 @@ const t$16 = /var\(/i, i$9 = /^initial$/i, o$24 = /^\s*$/, creator$51 = () => ({
|
|
|
43827
44557
|
});
|
|
43828
44558
|
creator$51.postcss = !0;
|
|
43829
44559
|
//#endregion
|
|
43830
|
-
//#region ../../node_modules/.pnpm/@csstools+utilities@3.0.0_postcss@8.5.
|
|
44560
|
+
//#region ../../node_modules/.pnpm/@csstools+utilities@3.0.0_postcss@8.5.16/node_modules/@csstools/utilities/dist/index.mjs
|
|
43831
44561
|
function hasFallback$1(e) {
|
|
43832
44562
|
const t = e.parent;
|
|
43833
44563
|
if (!t) return !1;
|
|
@@ -43847,7 +44577,7 @@ function hasSupportsAtRuleAncestor(e, t) {
|
|
|
43847
44577
|
return !1;
|
|
43848
44578
|
}
|
|
43849
44579
|
//#endregion
|
|
43850
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-alpha-function@2.0.
|
|
44580
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-alpha-function@2.0.7_postcss@8.5.16/node_modules/@csstools/postcss-alpha-function/dist/index.mjs
|
|
43851
44581
|
const b$1 = /\balpha\(/i, m$9 = /^alpha$/i, w$3 = /* @__PURE__ */ new Set([
|
|
43852
44582
|
"srgb",
|
|
43853
44583
|
"srgb-linear",
|
|
@@ -47376,7 +48106,7 @@ var require_dist$1 = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((ex
|
|
|
47376
48106
|
module.exports = parser;
|
|
47377
48107
|
}));
|
|
47378
48108
|
//#endregion
|
|
47379
|
-
//#region ../../node_modules/.pnpm/postcss-pseudo-class-any-link@11.0.0_postcss@8.5.
|
|
48109
|
+
//#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
|
|
47380
48110
|
var import_dist$1 = /* @__PURE__ */ require_rolldown_runtime.__toESM(require_dist$1(), 1);
|
|
47381
48111
|
const t$15 = (0, import_dist$1.default)().astSync(":link").nodes[0], s$15 = (0, import_dist$1.default)().astSync(":visited").nodes[0], n$10 = (0, import_dist$1.default)().astSync("area[href]").nodes[0], o$23 = (0, import_dist$1.default)().astSync("[href]").nodes[0];
|
|
47382
48112
|
function replaceAnyLink(e, t, s, n) {
|
|
@@ -47471,7 +48201,7 @@ const creator$50 = (e) => {
|
|
|
47471
48201
|
};
|
|
47472
48202
|
creator$50.postcss = !0;
|
|
47473
48203
|
//#endregion
|
|
47474
|
-
//#region ../../node_modules/.pnpm/css-blank-pseudo@8.0.1_postcss@8.5.
|
|
48204
|
+
//#region ../../node_modules/.pnpm/css-blank-pseudo@8.0.1_postcss@8.5.16/node_modules/css-blank-pseudo/dist/index.mjs
|
|
47475
48205
|
const s$14 = [
|
|
47476
48206
|
" ",
|
|
47477
48207
|
">",
|
|
@@ -47546,7 +48276,7 @@ const n$9 = "js-blank-pseudo", t$14 = ":blank", creator$49 = (s) => {
|
|
|
47546
48276
|
};
|
|
47547
48277
|
creator$49.postcss = !0;
|
|
47548
48278
|
//#endregion
|
|
47549
|
-
//#region ../../node_modules/.pnpm/postcss-page-break@3.0.4_postcss@8.5.
|
|
48279
|
+
//#region ../../node_modules/.pnpm/postcss-page-break@3.0.4_postcss@8.5.16/node_modules/postcss-page-break/index.js
|
|
47550
48280
|
var require_postcss_page_break = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports, module) => {
|
|
47551
48281
|
module.exports = function(options) {
|
|
47552
48282
|
return {
|
|
@@ -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$13 = "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$22 = ["media", "supports"], l$7 = ["keyframes"], i$8 = /^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/postcss-clamp@4.1.0_postcss@8.5.
|
|
48827
|
+
//#region ../../node_modules/.pnpm/postcss-clamp@4.1.0_postcss@8.5.16/node_modules/postcss-clamp/index.js
|
|
48098
48828
|
var require_postcss_clamp = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports, module) => {
|
|
48099
48829
|
let valueParser$3 = require("postcss-value-parser");
|
|
48100
48830
|
function parseValue(value) {
|
|
@@ -48172,7 +48902,7 @@ var require_postcss_clamp = /* @__PURE__ */ require_rolldown_runtime.__commonJSM
|
|
|
48172
48902
|
module.exports.postcss = true;
|
|
48173
48903
|
}));
|
|
48174
48904
|
//#endregion
|
|
48175
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function@5.0.
|
|
48905
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function@5.0.6_postcss@8.5.16/node_modules/@csstools/postcss-color-function/dist/index.mjs
|
|
48176
48906
|
var import_postcss_clamp = /* @__PURE__ */ require_rolldown_runtime.__toESM(require_postcss_clamp(), 1);
|
|
48177
48907
|
const u$7 = /\bcolor\(/i, m$7 = /^color$/i, basePlugin$15 = (s) => ({
|
|
48178
48908
|
postcssPlugin: "postcss-color-function",
|
|
@@ -48202,7 +48932,7 @@ const postcssPlugin$15 = (o) => {
|
|
|
48202
48932
|
};
|
|
48203
48933
|
postcssPlugin$15.postcss = !0;
|
|
48204
48934
|
//#endregion
|
|
48205
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-function-display-p3-linear@2.0.
|
|
48935
|
+
//#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
|
|
48206
48936
|
const m$6 = /\bdisplay-p3-linear\b/i, f$7 = /^color$/i, basePlugin$14 = (s) => ({
|
|
48207
48937
|
postcssPlugin: "postcss-color-function-display-p3-linear",
|
|
48208
48938
|
Declaration(g) {
|
|
@@ -48231,7 +48961,7 @@ const postcssPlugin$14 = (o) => {
|
|
|
48231
48961
|
};
|
|
48232
48962
|
postcssPlugin$14.postcss = !0;
|
|
48233
48963
|
//#endregion
|
|
48234
|
-
//#region ../../node_modules/.pnpm/postcss-color-functional-notation@8.0.
|
|
48964
|
+
//#region ../../node_modules/.pnpm/postcss-color-functional-notation@8.0.6_postcss@8.5.16/node_modules/postcss-color-functional-notation/dist/index.mjs
|
|
48235
48965
|
const m$5 = /^(?:rgb|hsl)a?$/i, f$6 = /\b(?:rgb|hsl)a?\(/i, basePlugin$13 = (s) => ({
|
|
48236
48966
|
postcssPlugin: "postcss-color-functional-notation",
|
|
48237
48967
|
Declaration(v) {
|
|
@@ -48260,7 +48990,7 @@ const postcssPlugin$13 = (o) => {
|
|
|
48260
48990
|
};
|
|
48261
48991
|
postcssPlugin$13.postcss = !0;
|
|
48262
48992
|
//#endregion
|
|
48263
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-mix-function@4.0.
|
|
48993
|
+
//#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
|
|
48264
48994
|
const f$5 = /\bcolor-mix\(/i, g$6 = /^color-mix$/i, basePlugin$12 = (s) => ({
|
|
48265
48995
|
postcssPlugin: "postcss-color-mix-function",
|
|
48266
48996
|
Declaration(v) {
|
|
@@ -48296,7 +49026,7 @@ const postcssPlugin$12 = (e) => {
|
|
|
48296
49026
|
};
|
|
48297
49027
|
postcssPlugin$12.postcss = !0;
|
|
48298
49028
|
//#endregion
|
|
48299
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-color-mix-variadic-function-arguments@2.0.
|
|
49029
|
+
//#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
|
|
48300
49030
|
const f$4 = /\bcolor-mix\(/i, g$5 = /^color-mix$/i, basePlugin$11 = (s) => ({
|
|
48301
49031
|
postcssPlugin: "color-mix-variadic-function-arguments",
|
|
48302
49032
|
Declaration(v) {
|
|
@@ -48332,7 +49062,7 @@ const postcssPlugin$11 = (e) => {
|
|
|
48332
49062
|
};
|
|
48333
49063
|
postcssPlugin$11.postcss = !0;
|
|
48334
49064
|
//#endregion
|
|
48335
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-container-rule-prelude-list@1.0.1_postcss@8.5.
|
|
49065
|
+
//#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
|
|
48336
49066
|
const t$12 = /^container$/i, creator$46 = (o) => {
|
|
48337
49067
|
const a = Object.assign({ preserve: !1 }, o);
|
|
48338
49068
|
return {
|
|
@@ -48349,7 +49079,7 @@ const t$12 = /^container$/i, creator$46 = (o) => {
|
|
|
48349
49079
|
};
|
|
48350
49080
|
creator$46.postcss = !0;
|
|
48351
49081
|
//#endregion
|
|
48352
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-content-alt-text@3.0.
|
|
49082
|
+
//#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
|
|
48353
49083
|
function transform$3(s, t) {
|
|
48354
49084
|
const e = s[0];
|
|
48355
49085
|
if (!e.length) return "";
|
|
@@ -48394,7 +49124,7 @@ const creator$45 = (t) => {
|
|
|
48394
49124
|
};
|
|
48395
49125
|
creator$45.postcss = !0;
|
|
48396
49126
|
//#endregion
|
|
48397
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-contrast-color-function@3.0.
|
|
49127
|
+
//#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
|
|
48398
49128
|
const u$6 = /\bcontrast-color\(/i, m$4 = /^contrast-color$/i, basePlugin$9 = (s) => ({
|
|
48399
49129
|
postcssPlugin: "postcss-contrast-color-function",
|
|
48400
49130
|
prepare: () => ({
|
|
@@ -50325,7 +51055,7 @@ var b;
|
|
|
50325
51055
|
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";
|
|
50326
51056
|
})(b || (b = {}));
|
|
50327
51057
|
//#endregion
|
|
50328
|
-
//#region ../../node_modules/.pnpm/postcss-custom-media@12.0.1_postcss@8.5.
|
|
51058
|
+
//#region ../../node_modules/.pnpm/postcss-custom-media@12.0.1_postcss@8.5.16/node_modules/postcss-custom-media/dist/index.mjs
|
|
50329
51059
|
const C$2 = parse$1("csstools-implicit-layer")[0];
|
|
50330
51060
|
function collectCascadeLayerOrder$2(t) {
|
|
50331
51061
|
const n = /* @__PURE__ */ new Map(), a = /* @__PURE__ */ new Map(), o = [];
|
|
@@ -50752,7 +51482,7 @@ const creator$44 = (e) => {
|
|
|
50752
51482
|
};
|
|
50753
51483
|
creator$44.postcss = !0;
|
|
50754
51484
|
//#endregion
|
|
50755
|
-
//#region ../../node_modules/.pnpm/postcss-custom-properties@15.0.1_postcss@8.5.
|
|
51485
|
+
//#region ../../node_modules/.pnpm/postcss-custom-properties@15.0.1_postcss@8.5.16/node_modules/postcss-custom-properties/dist/index.mjs
|
|
50756
51486
|
const o$21 = parse$1("csstools-implicit-layer")[0];
|
|
50757
51487
|
function collectCascadeLayerOrder$1(r) {
|
|
50758
51488
|
const n = /* @__PURE__ */ new Map(), s = /* @__PURE__ */ new Map(), a = [];
|
|
@@ -50821,7 +51551,7 @@ function isProcessableRule(e) {
|
|
|
50821
51551
|
}
|
|
50822
51552
|
return !0;
|
|
50823
51553
|
}
|
|
50824
|
-
const l$6 = /^html$/i, u$5 = /^:where\(html\)$/i, p$1 = /^:root$/i, f$3 = /^:where\(:root\)$/i, d$
|
|
51554
|
+
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;
|
|
50825
51555
|
function isVarFunction(e) {
|
|
50826
51556
|
return "function" === e.type && m$3.test(e.value) && e.nodes?.length > 0;
|
|
50827
51557
|
}
|
|
@@ -50995,7 +51725,7 @@ function buildCustomPropertiesMap(e, t, n) {
|
|
|
50995
51725
|
function getCustomPropertiesFromRoot(e, t) {
|
|
50996
51726
|
const r = /* @__PURE__ */ new Map(), n = /* @__PURE__ */ new Map(), o = collectCascadeLayerOrder$1(e);
|
|
50997
51727
|
return e.walkRules((e) => {
|
|
50998
|
-
d$
|
|
51728
|
+
d$1.test(e.selector) && e.nodes?.length && isProcessableRule(e) && (isBlockIgnored(e) || e.selectors.forEach((t) => {
|
|
50999
51729
|
let s;
|
|
51000
51730
|
if (u$5.test(t) || f$3.test(t)) s = 0;
|
|
51001
51731
|
else if (l$6.test(t)) s = 1;
|
|
@@ -51063,7 +51793,7 @@ const g$4 = /\bvar\(|\(top: var\(--f\)/i, creator$43 = (e) => {
|
|
|
51063
51793
|
};
|
|
51064
51794
|
creator$43.postcss = !0;
|
|
51065
51795
|
//#endregion
|
|
51066
|
-
//#region ../../node_modules/.pnpm/postcss-custom-selectors@9.0.1_postcss@8.5.
|
|
51796
|
+
//#region ../../node_modules/.pnpm/postcss-custom-selectors@9.0.1_postcss@8.5.16/node_modules/postcss-custom-selectors/dist/index.mjs
|
|
51067
51797
|
const s$11 = parse$1("csstools-implicit-layer")[0];
|
|
51068
51798
|
function collectCascadeLayerOrder(e) {
|
|
51069
51799
|
const o = /* @__PURE__ */ new Map(), n = /* @__PURE__ */ new Map(), a = [];
|
|
@@ -51199,7 +51929,7 @@ const creator$42 = (e) => {
|
|
|
51199
51929
|
};
|
|
51200
51930
|
creator$42.postcss = !0;
|
|
51201
51931
|
//#endregion
|
|
51202
|
-
//#region ../../node_modules/.pnpm/postcss-dir-pseudo-class@10.0.0_postcss@8.5.
|
|
51932
|
+
//#region ../../node_modules/.pnpm/postcss-dir-pseudo-class@10.0.0_postcss@8.5.16/node_modules/postcss-dir-pseudo-class/dist/index.mjs
|
|
51203
51933
|
const creator$41 = (t) => {
|
|
51204
51934
|
const r = Object.assign({
|
|
51205
51935
|
dir: null,
|
|
@@ -51270,7 +52000,7 @@ const creator$41 = (t) => {
|
|
|
51270
52000
|
};
|
|
51271
52001
|
creator$41.postcss = !0;
|
|
51272
52002
|
//#endregion
|
|
51273
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-normalize-display-values@5.0.1_postcss@8.5.
|
|
52003
|
+
//#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
|
|
51274
52004
|
var l$5 = /* @__PURE__ */ new Map([
|
|
51275
52005
|
["flow", "block"],
|
|
51276
52006
|
["block,flow", "block"],
|
|
@@ -51338,7 +52068,7 @@ const e$27 = /^display$/i, t$11 = /\b\s\b/, creator$40 = (i) => {
|
|
|
51338
52068
|
};
|
|
51339
52069
|
creator$40.postcss = !0;
|
|
51340
52070
|
//#endregion
|
|
51341
|
-
//#region ../../node_modules/.pnpm/postcss-double-position-gradients@7.0.
|
|
52071
|
+
//#region ../../node_modules/.pnpm/postcss-double-position-gradients@7.0.2_postcss@8.5.16/node_modules/postcss-double-position-gradients/dist/index.mjs
|
|
51342
52072
|
const o$19 = /(?:repeating-)?(?:conic|linear|radial)-gradient\(/i, i$5 = /^(?:repeating-)?(?:conic|linear|radial)-gradient$/i, n$7 = [
|
|
51343
52073
|
"at",
|
|
51344
52074
|
"bottom",
|
|
@@ -51417,7 +52147,7 @@ const postcssPlugin$9 = (t) => {
|
|
|
51417
52147
|
};
|
|
51418
52148
|
postcssPlugin$9.postcss = !0;
|
|
51419
52149
|
//#endregion
|
|
51420
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-exponential-functions@3.0.3_postcss@8.5.
|
|
52150
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-exponential-functions@3.0.3_postcss@8.5.16/node_modules/@csstools/postcss-exponential-functions/dist/index.mjs
|
|
51421
52151
|
const s$10 = /(?<![-\w])(?:exp|hypot|log|pow|sqrt)\(/i, creator$39 = (o) => {
|
|
51422
52152
|
const t = Object.assign({ preserve: !1 }, o);
|
|
51423
52153
|
return {
|
|
@@ -51431,7 +52161,7 @@ const s$10 = /(?<![-\w])(?:exp|hypot|log|pow|sqrt)\(/i, creator$39 = (o) => {
|
|
|
51431
52161
|
};
|
|
51432
52162
|
creator$39.postcss = !0;
|
|
51433
52163
|
//#endregion
|
|
51434
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-float-and-clear@4.0.0_postcss@8.5.
|
|
52164
|
+
//#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
|
|
51435
52165
|
const t$9 = "inline-start", o$18 = "inline-end";
|
|
51436
52166
|
var e$26, n$6;
|
|
51437
52167
|
function directionFlowToAxes$2(t) {
|
|
@@ -51475,7 +52205,7 @@ const creator$38 = (n) => {
|
|
|
51475
52205
|
};
|
|
51476
52206
|
creator$38.postcss = !0;
|
|
51477
52207
|
//#endregion
|
|
51478
|
-
//#region ../../node_modules/.pnpm/postcss-focus-visible@11.0.0_postcss@8.5.
|
|
52208
|
+
//#region ../../node_modules/.pnpm/postcss-focus-visible@11.0.0_postcss@8.5.16/node_modules/postcss-focus-visible/dist/index.mjs
|
|
51479
52209
|
const s$9 = "js-focus-visible", o$17 = ":focus-visible", creator$37 = (t) => {
|
|
51480
52210
|
const r = Object.assign({
|
|
51481
52211
|
preserve: !0,
|
|
@@ -51529,7 +52259,7 @@ const s$9 = "js-focus-visible", o$17 = ":focus-visible", creator$37 = (t) => {
|
|
|
51529
52259
|
};
|
|
51530
52260
|
creator$37.postcss = !0;
|
|
51531
52261
|
//#endregion
|
|
51532
|
-
//#region ../../node_modules/.pnpm/postcss-focus-within@10.0.0_postcss@8.5.
|
|
52262
|
+
//#region ../../node_modules/.pnpm/postcss-focus-within@10.0.0_postcss@8.5.16/node_modules/postcss-focus-within/dist/index.mjs
|
|
51533
52263
|
const s$8 = [
|
|
51534
52264
|
" ",
|
|
51535
52265
|
">",
|
|
@@ -51604,7 +52334,7 @@ const t$8 = "js-focus-within", n$5 = ":focus-within", creator$36 = (s) => {
|
|
|
51604
52334
|
};
|
|
51605
52335
|
creator$36.postcss = !0;
|
|
51606
52336
|
//#endregion
|
|
51607
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-font-format-keywords@5.0.0_postcss@8.5.
|
|
52337
|
+
//#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
|
|
51608
52338
|
const t$7 = [
|
|
51609
52339
|
"woff",
|
|
51610
52340
|
"truetype",
|
|
@@ -51639,7 +52369,7 @@ const t$7 = [
|
|
|
51639
52369
|
};
|
|
51640
52370
|
creator$35.postcss = !0;
|
|
51641
52371
|
//#endregion
|
|
51642
|
-
//#region ../../node_modules/.pnpm/postcss-font-variant@5.0.0_postcss@8.5.
|
|
52372
|
+
//#region ../../node_modules/.pnpm/postcss-font-variant@5.0.0_postcss@8.5.16/node_modules/postcss-font-variant/index.js
|
|
51643
52373
|
var require_postcss_font_variant = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports, module) => {
|
|
51644
52374
|
/**
|
|
51645
52375
|
* font variant convertion map
|
|
@@ -51734,7 +52464,7 @@ var require_postcss_font_variant = /* @__PURE__ */ require_rolldown_runtime.__co
|
|
|
51734
52464
|
module.exports.postcss = true;
|
|
51735
52465
|
}));
|
|
51736
52466
|
//#endregion
|
|
51737
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-font-width-property@1.0.0_postcss@8.5.
|
|
52467
|
+
//#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
|
|
51738
52468
|
var import_postcss_font_variant = /* @__PURE__ */ require_rolldown_runtime.__toESM(require_postcss_font_variant(), 1);
|
|
51739
52469
|
const e$22 = /^font-width$/i, o$16 = /\bfont-width\b/i, s$7 = /^font-stretch$/i, creator$34 = (s) => {
|
|
51740
52470
|
const r = Object.assign({ preserve: !1 }, s);
|
|
@@ -51753,7 +52483,7 @@ function hasFallback(t) {
|
|
|
51753
52483
|
}
|
|
51754
52484
|
creator$34.postcss = !0;
|
|
51755
52485
|
//#endregion
|
|
51756
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-gamut-mapping@3.0.
|
|
52486
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-gamut-mapping@3.0.6_postcss@8.5.16/node_modules/@csstools/postcss-gamut-mapping/dist/index.mjs
|
|
51757
52487
|
const p = /\bcolor-gamut\b/i;
|
|
51758
52488
|
function hasConditionalAncestor(e) {
|
|
51759
52489
|
let o = e.parent;
|
|
@@ -51771,7 +52501,7 @@ function sameProperty(e) {
|
|
|
51771
52501
|
}
|
|
51772
52502
|
return t;
|
|
51773
52503
|
}
|
|
51774
|
-
const d
|
|
52504
|
+
const d = /\b(?:color|lab|lch|oklab|oklch)\(/i, u$4 = /^(?:color|lab|lch|oklab|oklch)$/i, creator$33 = () => ({
|
|
51775
52505
|
postcssPlugin: "postcss-gamut-mapping",
|
|
51776
52506
|
prepare() {
|
|
51777
52507
|
const p = /* @__PURE__ */ new WeakMap(), m = /* @__PURE__ */ new WeakSet();
|
|
@@ -51780,7 +52510,7 @@ const d$1 = /\b(?:color|lab|lch|oklab|oklch)\(/i, u$4 = /^(?:color|lab|lch|oklab
|
|
|
51780
52510
|
OnceExit(f, { postcss: h }) {
|
|
51781
52511
|
f.walkDecls((f) => {
|
|
51782
52512
|
if (m.has(f)) return;
|
|
51783
|
-
if (!d
|
|
52513
|
+
if (!d.test(f.value)) return;
|
|
51784
52514
|
if (!f.parent || hasConditionalAncestor(f)) return;
|
|
51785
52515
|
const g = sameProperty(f).map((p, d) => {
|
|
51786
52516
|
m.add(p);
|
|
@@ -51848,7 +52578,7 @@ const d$1 = /\b(?:color|lab|lch|oklab|oklch)\(/i, u$4 = /^(?:color|lab|lch|oklab
|
|
|
51848
52578
|
});
|
|
51849
52579
|
creator$33.postcss = !0;
|
|
51850
52580
|
//#endregion
|
|
51851
|
-
//#region ../../node_modules/.pnpm/postcss-gap-properties@7.0.0_postcss@8.5.
|
|
52581
|
+
//#region ../../node_modules/.pnpm/postcss-gap-properties@7.0.0_postcss@8.5.16/node_modules/postcss-gap-properties/dist/index.mjs
|
|
51852
52582
|
const e$21 = [
|
|
51853
52583
|
"column-gap",
|
|
51854
52584
|
"gap",
|
|
@@ -51867,7 +52597,7 @@ const e$21 = [
|
|
|
51867
52597
|
};
|
|
51868
52598
|
creator$32.postcss = !0;
|
|
51869
52599
|
//#endregion
|
|
51870
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-gradients-interpolation-method@6.0.
|
|
52600
|
+
//#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
|
|
51871
52601
|
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;
|
|
51872
52602
|
function interpolateColorsInColorStopsList(o, e, t, s = !1) {
|
|
51873
52603
|
const l = [], a = [];
|
|
@@ -52155,7 +52885,7 @@ const postcssPlugin$8 = (e) => {
|
|
|
52155
52885
|
};
|
|
52156
52886
|
postcssPlugin$8.postcss = !0;
|
|
52157
52887
|
//#endregion
|
|
52158
|
-
//#region ../../node_modules/.pnpm/css-has-pseudo@8.0.0_postcss@8.5.
|
|
52888
|
+
//#region ../../node_modules/.pnpm/css-has-pseudo@8.0.0_postcss@8.5.16/node_modules/css-has-pseudo/dist/index.mjs
|
|
52159
52889
|
function encodeCSS(e) {
|
|
52160
52890
|
if ("" === e) return "";
|
|
52161
52891
|
let t, s = "";
|
|
@@ -52266,7 +52996,7 @@ function isWithinSupportCheck(e) {
|
|
|
52266
52996
|
}
|
|
52267
52997
|
creator$31.postcss = !0;
|
|
52268
52998
|
//#endregion
|
|
52269
|
-
//#region ../../node_modules/.pnpm/postcss-color-hex-alpha@11.0.0_postcss@8.5.
|
|
52999
|
+
//#region ../../node_modules/.pnpm/postcss-color-hex-alpha@11.0.0_postcss@8.5.16/node_modules/postcss-color-hex-alpha/dist/index.mjs
|
|
52270
53000
|
const creator$30 = (a) => {
|
|
52271
53001
|
const o = Object.assign({ preserve: !1 }, a);
|
|
52272
53002
|
return {
|
|
@@ -52296,7 +53026,7 @@ function hexa2rgba(e) {
|
|
|
52296
53026
|
e.value = `rgba(${r},${l},${n},${c})`;
|
|
52297
53027
|
}
|
|
52298
53028
|
//#endregion
|
|
52299
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-hwb-function@5.0.
|
|
53029
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-hwb-function@5.0.6_postcss@8.5.16/node_modules/@csstools/postcss-hwb-function/dist/index.mjs
|
|
52300
53030
|
const u$3 = /\bhwb\(/i, m$2 = /^hwb$/i, basePlugin$6 = (s) => ({
|
|
52301
53031
|
postcssPlugin: "postcss-hwb-function",
|
|
52302
53032
|
Declaration(f) {
|
|
@@ -52325,7 +53055,7 @@ const postcssPlugin$7 = (o) => {
|
|
|
52325
53055
|
};
|
|
52326
53056
|
postcssPlugin$7.postcss = !0;
|
|
52327
53057
|
//#endregion
|
|
52328
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-ic-unit@5.0.
|
|
53058
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-ic-unit@5.0.2_postcss@8.5.16/node_modules/@csstools/postcss-ic-unit/dist/index.mjs
|
|
52329
53059
|
const o$14 = /ic\b/i, i$4 = /\(font-size: \d+ic\)/i, basePlugin$5 = (s) => ({
|
|
52330
53060
|
postcssPlugin: "postcss-ic-unit",
|
|
52331
53061
|
Declaration(n) {
|
|
@@ -52355,7 +53085,7 @@ const postcssPlugin$6 = (e) => {
|
|
|
52355
53085
|
};
|
|
52356
53086
|
postcssPlugin$6.postcss = !0;
|
|
52357
53087
|
//#endregion
|
|
52358
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-image-function@1.0.
|
|
53088
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-image-function@1.0.1_postcss@8.5.16/node_modules/@csstools/postcss-image-function/dist/index.mjs
|
|
52359
53089
|
const u$2 = /\bimage\(/i, g$3 = /^image$/i, basePlugin$4 = (e) => ({
|
|
52360
53090
|
postcssPlugin: "postcss-image-function",
|
|
52361
53091
|
Declaration(v) {
|
|
@@ -52398,7 +53128,7 @@ const postcssPlugin$5 = (s) => {
|
|
|
52398
53128
|
};
|
|
52399
53129
|
postcssPlugin$5.postcss = !0;
|
|
52400
53130
|
//#endregion
|
|
52401
|
-
//#region ../../node_modules/.pnpm/postcss-image-set-function@8.0.0_postcss@8.5.
|
|
53131
|
+
//#region ../../node_modules/.pnpm/postcss-image-set-function@8.0.0_postcss@8.5.16/node_modules/postcss-image-set-function/dist/index.mjs
|
|
52402
53132
|
function isComma$1(e) {
|
|
52403
53133
|
return !!e && "div" === e.type && "," === e.value;
|
|
52404
53134
|
}
|
|
@@ -55581,7 +56311,7 @@ function selectorNodeContainsNothingOrOnlyUniversal(e) {
|
|
|
55581
56311
|
return 0 === t.length || 1 === t.length && "universal" === t[0].type;
|
|
55582
56312
|
}
|
|
55583
56313
|
//#endregion
|
|
55584
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-is-pseudo-class@6.0.0_postcss@8.5.
|
|
56314
|
+
//#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
|
|
55585
56315
|
function alwaysValidSelector(s) {
|
|
55586
56316
|
const o = (0, import_dist.default)().astSync(s);
|
|
55587
56317
|
let n = !0;
|
|
@@ -55850,7 +56580,7 @@ const n$3 = /:is\(/i, creator$28 = (e) => {
|
|
|
55850
56580
|
};
|
|
55851
56581
|
creator$28.postcss = !0;
|
|
55852
56582
|
//#endregion
|
|
55853
|
-
//#region ../../node_modules/.pnpm/postcss-lab-function@8.0.
|
|
56583
|
+
//#region ../../node_modules/.pnpm/postcss-lab-function@8.0.6_postcss@8.5.16/node_modules/postcss-lab-function/dist/index.mjs
|
|
55854
56584
|
const g$2 = /\b(?:lab|lch)\(/i, f$2 = /^(?:lab|lch)$/i, basePlugin$3 = (s) => ({
|
|
55855
56585
|
postcssPlugin: "postcss-lab-function",
|
|
55856
56586
|
Declaration(b) {
|
|
@@ -55886,7 +56616,7 @@ const postcssPlugin$4 = (e) => {
|
|
|
55886
56616
|
};
|
|
55887
56617
|
postcssPlugin$4.postcss = !0;
|
|
55888
56618
|
//#endregion
|
|
55889
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-light-dark-function@3.0.
|
|
56619
|
+
//#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
|
|
55890
56620
|
const k$1 = "--csstools-color-scheme--light", D = "initial";
|
|
55891
56621
|
function toggleNameGenerator(e) {
|
|
55892
56622
|
return `--csstools-light-dark-toggle--${e}`;
|
|
@@ -56083,7 +56813,7 @@ const postcssPlugin$3 = (r) => {
|
|
|
56083
56813
|
};
|
|
56084
56814
|
postcssPlugin$3.postcss = !0;
|
|
56085
56815
|
//#endregion
|
|
56086
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overflow@3.0.0_postcss@8.5.
|
|
56816
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overflow@3.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-overflow/dist/index.mjs
|
|
56087
56817
|
var o$11;
|
|
56088
56818
|
function transformAxes$1(o, t) {
|
|
56089
56819
|
const e = t ? "-x" : "-y", i = t ? "-y" : "-x", n = o.prop.toLowerCase().replace("-inline", e).replace("-block", i), s = o.value;
|
|
@@ -56115,7 +56845,7 @@ const creator$27 = (t) => {
|
|
|
56115
56845
|
};
|
|
56116
56846
|
creator$27.postcss = !0;
|
|
56117
56847
|
//#endregion
|
|
56118
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-overscroll-behavior@3.0.0_postcss@8.5.
|
|
56848
|
+
//#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
|
|
56119
56849
|
var o$10;
|
|
56120
56850
|
function transformAxes(o, t) {
|
|
56121
56851
|
const e = t ? "-x" : "-y", i = t ? "-y" : "-x", r = o.prop.toLowerCase().replace("-inline", e).replace("-block", i), s = o.value;
|
|
@@ -56147,7 +56877,7 @@ const creator$26 = (t) => {
|
|
|
56147
56877
|
};
|
|
56148
56878
|
creator$26.postcss = !0;
|
|
56149
56879
|
//#endregion
|
|
56150
|
-
//#region ../../node_modules/.pnpm/postcss-logical@9.0.0_postcss@8.5.
|
|
56880
|
+
//#region ../../node_modules/.pnpm/postcss-logical@9.0.0_postcss@8.5.16/node_modules/postcss-logical/dist/index.mjs
|
|
56151
56881
|
var e$14, n$2;
|
|
56152
56882
|
(function(r) {
|
|
56153
56883
|
r.Block = "block", r.Inline = "inline";
|
|
@@ -56507,7 +57237,7 @@ const l$4 = /var\(/i, creator$25 = (r) => {
|
|
|
56507
57237
|
};
|
|
56508
57238
|
creator$25.postcss = !0;
|
|
56509
57239
|
//#endregion
|
|
56510
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-resize@4.0.0_postcss@8.5.
|
|
57240
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-resize@4.0.0_postcss@8.5.16/node_modules/@csstools/postcss-logical-resize/dist/index.mjs
|
|
56511
57241
|
var t$3, e$13, i$1;
|
|
56512
57242
|
function cloneDeclaration(o, t, e) {
|
|
56513
57243
|
o.parent && o.parent.some((o) => "decl" == o.type && o.prop === e && o.value === t) || o.cloneBefore({
|
|
@@ -56580,7 +57310,7 @@ const creator$24 = (o) => {
|
|
|
56580
57310
|
};
|
|
56581
57311
|
creator$24.postcss = !0;
|
|
56582
57312
|
//#endregion
|
|
56583
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-logical-viewport-units@4.0.0_postcss@8.5.
|
|
57313
|
+
//#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
|
|
56584
57314
|
var s$6;
|
|
56585
57315
|
function transform$1(t, o) {
|
|
56586
57316
|
const s = tokenizer({ css: t }), c = [];
|
|
@@ -56649,7 +57379,7 @@ const c$3 = /vb|vi/i, u$1 = { test(t) {
|
|
|
56649
57379
|
};
|
|
56650
57380
|
creator$23.postcss = !0;
|
|
56651
57381
|
//#endregion
|
|
56652
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-media-queries-aspect-ratio-number-values@4.0.0_postcss@8.5.
|
|
57382
|
+
//#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
|
|
56653
57383
|
const w = 1e5, h$1 = 2147483647;
|
|
56654
57384
|
function transformMediaFeatureValue(t) {
|
|
56655
57385
|
if (Array.isArray(t.value) && matchesRatioExactly(t.value)) {
|
|
@@ -56940,7 +57670,7 @@ const creator$22 = (e) => {
|
|
|
56940
57670
|
};
|
|
56941
57671
|
creator$22.postcss = !0;
|
|
56942
57672
|
//#endregion
|
|
56943
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-media-minmax@3.0.3_postcss@8.5.
|
|
57673
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-media-minmax@3.0.3_postcss@8.5.16/node_modules/@csstools/postcss-media-minmax/dist/index.mjs
|
|
56944
57674
|
const C = {
|
|
56945
57675
|
width: "px",
|
|
56946
57676
|
height: "px",
|
|
@@ -57324,7 +58054,7 @@ const creator$21 = () => ({
|
|
|
57324
58054
|
});
|
|
57325
58055
|
creator$21.postcss = !0;
|
|
57326
58056
|
//#endregion
|
|
57327
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-mixins@1.0.0_postcss@8.5.
|
|
58057
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-mixins@1.0.0_postcss@8.5.16/node_modules/@csstools/postcss-mixins/dist/index.mjs
|
|
57328
58058
|
const o$7 = /^apply$/i;
|
|
57329
58059
|
function processableApplyRule(o) {
|
|
57330
58060
|
if (!o.params || !o.params.includes("--")) return !1;
|
|
@@ -57382,7 +58112,7 @@ const creator$20 = (e) => {
|
|
|
57382
58112
|
};
|
|
57383
58113
|
creator$20.postcss = !0;
|
|
57384
58114
|
//#endregion
|
|
57385
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-nested-calc@5.0.0_postcss@8.5.
|
|
58115
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-nested-calc@5.0.0_postcss@8.5.16/node_modules/@csstools/postcss-nested-calc/dist/index.mjs
|
|
57386
58116
|
const r$4 = /calc\(/gi;
|
|
57387
58117
|
const creator$19 = (s) => {
|
|
57388
58118
|
const o = Object.assign({ preserve: !0 }, s);
|
|
@@ -57514,7 +58244,7 @@ function isCompoundSelector$1(o) {
|
|
|
57514
58244
|
return 1 === o.length && !o[0].nodes.some((o) => "combinator" === o.type || import_dist$1.default.isPseudoElement(o));
|
|
57515
58245
|
}
|
|
57516
58246
|
//#endregion
|
|
57517
|
-
//#region ../../node_modules/.pnpm/postcss-nesting@14.0.0_postcss@8.5.
|
|
58247
|
+
//#region ../../node_modules/.pnpm/postcss-nesting@14.0.0_postcss@8.5.16/node_modules/postcss-nesting/dist/index.mjs
|
|
57518
58248
|
const r$3 = import_dist$1.default.pseudo({ value: ":is" });
|
|
57519
58249
|
function sortCompoundSelectorsInsideComplexSelector(t) {
|
|
57520
58250
|
if (!t || !t.nodes) return;
|
|
@@ -57889,7 +58619,7 @@ const creator$18 = (e) => {
|
|
|
57889
58619
|
};
|
|
57890
58620
|
creator$18.postcss = !0;
|
|
57891
58621
|
//#endregion
|
|
57892
|
-
//#region ../../node_modules/.pnpm/postcss-selector-not@9.0.0_postcss@8.5.
|
|
58622
|
+
//#region ../../node_modules/.pnpm/postcss-selector-not@9.0.0_postcss@8.5.16/node_modules/postcss-selector-not/dist/index.mjs
|
|
57893
58623
|
function cleanupWhitespace(e) {
|
|
57894
58624
|
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 = ""));
|
|
57895
58625
|
}
|
|
@@ -57920,7 +58650,7 @@ const creator$17 = () => ({
|
|
|
57920
58650
|
});
|
|
57921
58651
|
creator$17.postcss = !0;
|
|
57922
58652
|
//#endregion
|
|
57923
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-oklab-function@5.0.
|
|
58653
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-oklab-function@5.0.6_postcss@8.5.16/node_modules/@csstools/postcss-oklab-function/dist/index.mjs
|
|
57924
58654
|
const g$1 = /\b(?:oklab|oklch)\(/i, f$1 = /^(?:oklab|oklch)$/i, basePlugin$1 = (s) => ({
|
|
57925
58655
|
postcssPlugin: "postcss-oklab-function",
|
|
57926
58656
|
Declaration(b) {
|
|
@@ -57956,7 +58686,7 @@ const postcssPlugin$2 = (e) => {
|
|
|
57956
58686
|
};
|
|
57957
58687
|
postcssPlugin$2.postcss = !0;
|
|
57958
58688
|
//#endregion
|
|
57959
|
-
//#region ../../node_modules/.pnpm/postcss-opacity-percentage@3.0.0_postcss@8.5.
|
|
58689
|
+
//#region ../../node_modules/.pnpm/postcss-opacity-percentage@3.0.0_postcss@8.5.16/node_modules/postcss-opacity-percentage/index.js
|
|
57960
58690
|
var require_postcss_opacity_percentage = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports, module) => {
|
|
57961
58691
|
const doNothingValues = /* @__PURE__ */ new Set([
|
|
57962
58692
|
"inherit",
|
|
@@ -57978,7 +58708,7 @@ var require_postcss_opacity_percentage = /* @__PURE__ */ require_rolldown_runtim
|
|
|
57978
58708
|
module.exports.postcss = true;
|
|
57979
58709
|
}));
|
|
57980
58710
|
//#endregion
|
|
57981
|
-
//#region ../../node_modules/.pnpm/postcss-overflow-shorthand@7.0.0_postcss@8.5.
|
|
58711
|
+
//#region ../../node_modules/.pnpm/postcss-overflow-shorthand@7.0.0_postcss@8.5.16/node_modules/postcss-overflow-shorthand/dist/index.mjs
|
|
57982
58712
|
var import_postcss_opacity_percentage = /* @__PURE__ */ require_rolldown_runtime.__toESM(require_postcss_opacity_percentage(), 1);
|
|
57983
58713
|
const creator$16 = (o) => {
|
|
57984
58714
|
const r = Object.assign({ preserve: !0 }, o);
|
|
@@ -58008,7 +58738,7 @@ const creator$16 = (o) => {
|
|
|
58008
58738
|
};
|
|
58009
58739
|
creator$16.postcss = !0;
|
|
58010
58740
|
//#endregion
|
|
58011
|
-
//#region ../../node_modules/.pnpm/postcss-replace-overflow-wrap@4.0.0_postcss@8.5.
|
|
58741
|
+
//#region ../../node_modules/.pnpm/postcss-replace-overflow-wrap@4.0.0_postcss@8.5.16/node_modules/postcss-replace-overflow-wrap/index.js
|
|
58012
58742
|
var require_postcss_replace_overflow_wrap = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports, module) => {
|
|
58013
58743
|
module.exports = function(opts) {
|
|
58014
58744
|
opts = opts || {};
|
|
@@ -58024,7 +58754,7 @@ var require_postcss_replace_overflow_wrap = /* @__PURE__ */ require_rolldown_run
|
|
|
58024
58754
|
module.exports.postcss = true;
|
|
58025
58755
|
}));
|
|
58026
58756
|
//#endregion
|
|
58027
|
-
//#region ../../node_modules/.pnpm/postcss-place@11.0.0_postcss@8.5.
|
|
58757
|
+
//#region ../../node_modules/.pnpm/postcss-place@11.0.0_postcss@8.5.16/node_modules/postcss-place/dist/index.mjs
|
|
58028
58758
|
var import_postcss_replace_overflow_wrap = /* @__PURE__ */ require_rolldown_runtime.__toESM(require_postcss_replace_overflow_wrap(), 1);
|
|
58029
58759
|
function onCSSDeclaration(o, r, s) {
|
|
58030
58760
|
const n = o.prop.match(t$2)?.[1].toLowerCase();
|
|
@@ -58056,7 +58786,7 @@ const t$2 = /^place-(content|items|self)/i, creator$15 = (e) => {
|
|
|
58056
58786
|
};
|
|
58057
58787
|
creator$15.postcss = !0;
|
|
58058
58788
|
//#endregion
|
|
58059
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-position-area-property@2.0.0_postcss@8.5.
|
|
58789
|
+
//#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
|
|
58060
58790
|
const o$4 = /^position-area$/i, creator$14 = () => ({
|
|
58061
58791
|
postcssPlugin: "postcss-position-area-property",
|
|
58062
58792
|
Declaration(s) {
|
|
@@ -58068,7 +58798,7 @@ const o$4 = /^position-area$/i, creator$14 = () => ({
|
|
|
58068
58798
|
});
|
|
58069
58799
|
creator$14.postcss = !0;
|
|
58070
58800
|
//#endregion
|
|
58071
|
-
//#region ../../node_modules/.pnpm/css-prefers-color-scheme@11.0.0_postcss@8.5.
|
|
58801
|
+
//#region ../../node_modules/.pnpm/css-prefers-color-scheme@11.0.0_postcss@8.5.16/node_modules/css-prefers-color-scheme/dist/index.mjs
|
|
58072
58802
|
const e$6 = /\(\s*prefers-color-scheme\s*:\s*(dark|light)\s*\)/gi, s$4 = "(color: 48842621)", r$2 = "(color: 70318723)", creator$13 = (o) => {
|
|
58073
58803
|
const t = Object.assign({ preserve: !0 }, o);
|
|
58074
58804
|
return {
|
|
@@ -58089,7 +58819,7 @@ const e$6 = /\(\s*prefers-color-scheme\s*:\s*(dark|light)\s*\)/gi, s$4 = "(color
|
|
|
58089
58819
|
};
|
|
58090
58820
|
creator$13.postcss = !0;
|
|
58091
58821
|
//#endregion
|
|
58092
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-property-rule-prelude-list@2.0.0_postcss@8.5.
|
|
58822
|
+
//#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
|
|
58093
58823
|
const o$3 = /^property$/i, creator$12 = () => ({
|
|
58094
58824
|
postcssPlugin: "postcss-property-rule-prelude-list",
|
|
58095
58825
|
AtRule(t) {
|
|
@@ -58103,7 +58833,7 @@ const o$3 = /^property$/i, creator$12 = () => ({
|
|
|
58103
58833
|
});
|
|
58104
58834
|
creator$12.postcss = !0;
|
|
58105
58835
|
//#endregion
|
|
58106
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-random-function@3.0.3_postcss@8.5.
|
|
58836
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-random-function@3.0.3_postcss@8.5.16/node_modules/@csstools/postcss-random-function/dist/index.mjs
|
|
58107
58837
|
const o$2 = String.fromCodePoint(0);
|
|
58108
58838
|
function randomCacheKeyFromPostcssDeclaration(e) {
|
|
58109
58839
|
let r = "", t = e.parent;
|
|
@@ -58140,7 +58870,7 @@ const r$1 = /(?<![-\w])(?:random)\(/i, creator$11 = (o) => {
|
|
|
58140
58870
|
};
|
|
58141
58871
|
creator$11.postcss = !0;
|
|
58142
58872
|
//#endregion
|
|
58143
|
-
//#region ../../node_modules/.pnpm/postcss-color-rebeccapurple@11.0.0_postcss@8.5.
|
|
58873
|
+
//#region ../../node_modules/.pnpm/postcss-color-rebeccapurple@11.0.0_postcss@8.5.16/node_modules/postcss-color-rebeccapurple/dist/index.mjs
|
|
58144
58874
|
const s$3 = /rebeccapurple/i, t$1 = /^rebeccapurple$/i, creator$10 = (o) => {
|
|
58145
58875
|
const c = Object.assign({ preserve: !1 }, o);
|
|
58146
58876
|
return {
|
|
@@ -58159,7 +58889,7 @@ const s$3 = /rebeccapurple/i, t$1 = /^rebeccapurple$/i, creator$10 = (o) => {
|
|
|
58159
58889
|
};
|
|
58160
58890
|
creator$10.postcss = !0;
|
|
58161
58891
|
//#endregion
|
|
58162
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-relative-color-syntax@4.0.
|
|
58892
|
+
//#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
|
|
58163
58893
|
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) => ({
|
|
58164
58894
|
postcssPlugin: "postcss-relative-color-syntax",
|
|
58165
58895
|
Declaration(f) {
|
|
@@ -58195,7 +58925,7 @@ const postcssPlugin$1 = (e) => {
|
|
|
58195
58925
|
};
|
|
58196
58926
|
postcssPlugin$1.postcss = !0;
|
|
58197
58927
|
//#endregion
|
|
58198
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-scope-pseudo-class@5.0.0_postcss@8.5.
|
|
58928
|
+
//#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
|
|
58199
58929
|
const creator$9 = (s) => {
|
|
58200
58930
|
const r = Object.assign({ preserve: !1 }, s);
|
|
58201
58931
|
return {
|
|
@@ -58233,7 +58963,7 @@ const creator$9 = (s) => {
|
|
|
58233
58963
|
};
|
|
58234
58964
|
creator$9.postcss = !0;
|
|
58235
58965
|
//#endregion
|
|
58236
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-sign-functions@2.0.3_postcss@8.5.
|
|
58966
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-sign-functions@2.0.3_postcss@8.5.16/node_modules/@csstools/postcss-sign-functions/dist/index.mjs
|
|
58237
58967
|
const m = /(?<![-\w])(?:sign|abs)\(/i, f = /(?<![-\w])(?:sign|abs)\(/i, creator$8 = (o) => {
|
|
58238
58968
|
const n = Object.assign({ preserve: !1 }, o);
|
|
58239
58969
|
return {
|
|
@@ -58343,7 +59073,7 @@ function replacer(e) {
|
|
|
58343
59073
|
}
|
|
58344
59074
|
creator$8.postcss = !0;
|
|
58345
59075
|
//#endregion
|
|
58346
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-stepped-value-functions@5.0.3_postcss@8.5.
|
|
59076
|
+
//#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
|
|
58347
59077
|
const s$2 = /(?<![-\w])(?:mod|rem|round)\(/i, creator$7 = (o) => {
|
|
58348
59078
|
const t = Object.assign({ preserve: !1 }, o);
|
|
58349
59079
|
return {
|
|
@@ -58360,7 +59090,7 @@ const s$2 = /(?<![-\w])(?:mod|rem|round)\(/i, creator$7 = (o) => {
|
|
|
58360
59090
|
};
|
|
58361
59091
|
creator$7.postcss = !0;
|
|
58362
59092
|
//#endregion
|
|
58363
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-syntax-descriptor-syntax-production@2.0.0_postcss@8.5.
|
|
59093
|
+
//#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
|
|
58364
59094
|
const o$1 = /^property$/i, n$1 = /^syntax$/i, creator$6 = (i) => {
|
|
58365
59095
|
const p = Object.assign({ preserve: !1 }, i);
|
|
58366
59096
|
return {
|
|
@@ -58431,7 +59161,7 @@ const o$1 = /^property$/i, n$1 = /^syntax$/i, creator$6 = (i) => {
|
|
|
58431
59161
|
};
|
|
58432
59162
|
creator$6.postcss = !0;
|
|
58433
59163
|
//#endregion
|
|
58434
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-system-ui-font-family@2.0.0_postcss@8.5.
|
|
59164
|
+
//#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
|
|
58435
59165
|
const a = /^font(?:-family)?$/i, c$2 = [
|
|
58436
59166
|
"system-ui",
|
|
58437
59167
|
"-apple-system",
|
|
@@ -58485,1009 +59215,7 @@ const u = c$2.join(","), creator$5 = (p) => {
|
|
|
58485
59215
|
};
|
|
58486
59216
|
creator$5.postcss = !0;
|
|
58487
59217
|
//#endregion
|
|
58488
|
-
//#region ../../node_modules/.pnpm/@csstools+
|
|
58489
|
-
/**
|
|
58490
|
-
* Bradford chromatic adaptation from D50 to D65
|
|
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/conversions.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58494
|
-
*/
|
|
58495
|
-
/**
|
|
58496
|
-
* Bradford chromatic adaptation from D65 to D50
|
|
58497
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58498
|
-
* @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).
|
|
58499
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_ChromAdapt.html
|
|
58500
|
-
*/
|
|
58501
|
-
/**
|
|
58502
|
-
* @param {number} hue - Hue as degrees 0..360
|
|
58503
|
-
* @param {number} sat - Saturation as percentage 0..100
|
|
58504
|
-
* @param {number} light - Lightness as percentage 0..100
|
|
58505
|
-
* @return {number[]} Array of sRGB components; in-gamut colors in range [0..1]
|
|
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/hslToRgb.js. Copyright © 2022 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
58509
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/hslToRgb.js
|
|
58510
|
-
*/
|
|
58511
|
-
/**
|
|
58512
|
-
* @param {number} hue - Hue as degrees 0..360
|
|
58513
|
-
* @param {number} white - Whiteness as percentage 0..100
|
|
58514
|
-
* @param {number} black - Blackness as percentage 0..100
|
|
58515
|
-
* @return {number[]} Array of RGB components 0..1
|
|
58516
|
-
*
|
|
58517
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58518
|
-
* @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).
|
|
58519
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/hwbToRgb.js
|
|
58520
|
-
*/
|
|
58521
|
-
/**
|
|
58522
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58523
|
-
* @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).
|
|
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
|
-
*/
|
|
58529
|
-
/**
|
|
58530
|
-
* Convert Lab to D50-adapted XYZ
|
|
58531
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58532
|
-
* @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).
|
|
58533
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58534
|
-
*/
|
|
58535
|
-
/**
|
|
58536
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58537
|
-
* @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).
|
|
58538
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js
|
|
58539
|
-
*/
|
|
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
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js
|
|
58544
|
-
*/
|
|
58545
|
-
/**
|
|
58546
|
-
* Given OKLab, convert to XYZ relative to D65
|
|
58547
|
-
*
|
|
58548
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58549
|
-
* @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).
|
|
58550
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/conversions.js
|
|
58551
|
-
*/
|
|
58552
|
-
/**
|
|
58553
|
-
* Assuming XYZ is relative to D50, convert to CIE Lab
|
|
58554
|
-
* from CIE standard, which now defines these as a rational fraction
|
|
58555
|
-
*
|
|
58556
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58557
|
-
* @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).
|
|
58558
|
-
*/
|
|
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
|
-
* XYZ <-> LMS matrices recalculated for consistent reference white
|
|
58564
|
-
* @see https://github.com/w3c/csswg-drafts/issues/6642#issuecomment-943521484
|
|
58565
|
-
*/
|
|
58566
|
-
/**
|
|
58567
|
-
* Convert XYZ to linear-light rec2020
|
|
58568
|
-
*
|
|
58569
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58570
|
-
* @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).
|
|
58571
|
-
*/
|
|
58572
|
-
/**
|
|
58573
|
-
* Convert XYZ to linear-light P3
|
|
58574
|
-
*
|
|
58575
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58576
|
-
* @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).
|
|
58577
|
-
*/
|
|
58578
|
-
/**
|
|
58579
|
-
* Convert D50 XYZ to linear-light prophoto-rgb
|
|
58580
|
-
*
|
|
58581
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58582
|
-
* @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).
|
|
58583
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58584
|
-
*/
|
|
58585
|
-
/**
|
|
58586
|
-
* Convert XYZ to linear-light a98-rgb
|
|
58587
|
-
*
|
|
58588
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58589
|
-
* @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).
|
|
58590
|
-
*/
|
|
58591
|
-
/**
|
|
58592
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58593
|
-
* @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).
|
|
58594
|
-
*/
|
|
58595
|
-
/**
|
|
58596
|
-
* Convert an array of linear-light rec2020 RGB in the range 0.0-1.0
|
|
58597
|
-
* to gamma corrected form ITU-R BT.2020-2 p.4
|
|
58598
|
-
*
|
|
58599
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58600
|
-
* @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).
|
|
58601
|
-
*/
|
|
58602
|
-
/**
|
|
58603
|
-
* Convert an array of linear-light sRGB values in the range 0.0-1.0 to gamma corrected form
|
|
58604
|
-
* Extended transfer function:
|
|
58605
|
-
* For negative values, linear portion extends on reflection
|
|
58606
|
-
* of axis, then uses reflected pow below that
|
|
58607
|
-
*
|
|
58608
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58609
|
-
* @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).
|
|
58610
|
-
* @see https://en.wikipedia.org/wiki/SRGB
|
|
58611
|
-
*/
|
|
58612
|
-
/**
|
|
58613
|
-
* Convert an array of linear-light display-p3 RGB in the range 0.0-1.0
|
|
58614
|
-
* to gamma corrected form
|
|
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 linear-light prophoto-rgb in the range 0.0-1.0
|
|
58621
|
-
* to gamma corrected form.
|
|
58622
|
-
* Transfer curve is gamma 1.8 with a small linear portion.
|
|
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 a98-rgb in the range 0.0-1.0
|
|
58629
|
-
* to gamma corrected form. Negative values are also now accepted
|
|
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
|
-
*/
|
|
58634
|
-
/**
|
|
58635
|
-
* Convert an array of rec2020 RGB values in the range 0.0 - 1.0
|
|
58636
|
-
* to linear light (un-companded) form.
|
|
58637
|
-
* ITU-R BT.2020-2 p.4
|
|
58638
|
-
*
|
|
58639
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58640
|
-
* @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).
|
|
58641
|
-
*/
|
|
58642
|
-
/**
|
|
58643
|
-
* Convert an array of linear-light rec2020 values to CIE XYZ
|
|
58644
|
-
* using D65 (no chromatic adaptation)
|
|
58645
|
-
*
|
|
58646
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58647
|
-
* @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).
|
|
58648
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58649
|
-
*/
|
|
58650
|
-
/**
|
|
58651
|
-
* Convert an array of of sRGB values where in-gamut values are in the range
|
|
58652
|
-
* [0 - 1] to linear light (un-companded) form.
|
|
58653
|
-
* Extended transfer function:
|
|
58654
|
-
* For negative values, linear portion is extended on reflection of axis,
|
|
58655
|
-
* then reflected power function is used.
|
|
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 https://en.wikipedia.org/wiki/SRGB
|
|
58660
|
-
*/
|
|
58661
|
-
/**
|
|
58662
|
-
* Convert an array of display-p3 RGB values in the range 0.0 - 1.0
|
|
58663
|
-
* to linear light (un-companded) form.
|
|
58664
|
-
*
|
|
58665
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58666
|
-
* @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).
|
|
58667
|
-
*/
|
|
58668
|
-
/**
|
|
58669
|
-
* Convert an array of linear-light display-p3 values to CIE XYZ
|
|
58670
|
-
* using D65 (no chromatic adaptation)
|
|
58671
|
-
*
|
|
58672
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58673
|
-
* @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).
|
|
58674
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58675
|
-
*/
|
|
58676
|
-
/**
|
|
58677
|
-
* Convert an array of prophoto-rgb values where in-gamut Colors are in the
|
|
58678
|
-
* range [0.0 - 1.0] to linear light (un-companded) form. Transfer curve is
|
|
58679
|
-
* gamma 1.8 with a small linear portion. Extended transfer function
|
|
58680
|
-
*
|
|
58681
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58682
|
-
* @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).
|
|
58683
|
-
*/
|
|
58684
|
-
/**
|
|
58685
|
-
* Convert an array of linear-light prophoto-rgb values to CIE D50 XYZ.
|
|
58686
|
-
* Matrix cannot be expressed in rational form, but is calculated to 64 bit accuracy.
|
|
58687
|
-
*
|
|
58688
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58689
|
-
* @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).
|
|
58690
|
-
* @see see https://github.com/w3c/csswg-drafts/issues/7675
|
|
58691
|
-
*/
|
|
58692
|
-
/**
|
|
58693
|
-
* Convert an array of linear-light a98-rgb values to CIE XYZ
|
|
58694
|
-
* http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58695
|
-
* has greater numerical precision than section 4.3.5.3 of
|
|
58696
|
-
* https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf
|
|
58697
|
-
* but the values below were calculated from first principles
|
|
58698
|
-
* from the chromaticity coordinates of R G B W
|
|
58699
|
-
*
|
|
58700
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58701
|
-
* @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).
|
|
58702
|
-
* @see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
|
58703
|
-
* @see https://www.adobe.com/digitalimag/pdfs/AdobeRGB1998.pdf
|
|
58704
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/matrixmaker.html
|
|
58705
|
-
*/
|
|
58706
|
-
/**
|
|
58707
|
-
* Convert an array of linear-light sRGB values to CIE XYZ
|
|
58708
|
-
* using sRGB's own white, D65 (no chromatic adaptation)
|
|
58709
|
-
*
|
|
58710
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58711
|
-
* @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).
|
|
58712
|
-
*/
|
|
58713
|
-
/**
|
|
58714
|
-
* Convert an array of gamma-corrected sRGB values in the 0.0 to 1.0 range to HSL.
|
|
58715
|
-
*
|
|
58716
|
-
* @param {Color} RGB [r, g, b]
|
|
58717
|
-
* - Red component 0..1
|
|
58718
|
-
* - Green component 0..1
|
|
58719
|
-
* - Blue component 0..1
|
|
58720
|
-
* @return {number[]} Array of HSL values: Hue as degrees 0..360, Saturation and Lightness as percentages 0..100
|
|
58721
|
-
*
|
|
58722
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58723
|
-
* @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).
|
|
58724
|
-
*
|
|
58725
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/better-rgbToHsl.js
|
|
58726
|
-
*/
|
|
58727
|
-
/**
|
|
58728
|
-
* Convert an array of a98-rgb values in the range 0.0 - 1.0
|
|
58729
|
-
* to linear light (un-companded) form. Negative values are also now accepted
|
|
58730
|
-
*
|
|
58731
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58732
|
-
* @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).
|
|
58733
|
-
*/
|
|
58734
|
-
/**
|
|
58735
|
-
* @description Calculate deltaE OK which is the simple root sum of squares
|
|
58736
|
-
* @param {number[]} reference - Array of OKLab values: L as 0..1, a and b as -1..1
|
|
58737
|
-
* @param {number[]} sample - Array of OKLab values: L as 0..1, a and b as -1..1
|
|
58738
|
-
* @return {number} How different a color sample is from reference
|
|
58739
|
-
*
|
|
58740
|
-
* @license W3C https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
58741
|
-
* @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).
|
|
58742
|
-
* @see https://github.com/w3c/csswg-drafts/blob/main/css-color-4/deltaEOK.js
|
|
58743
|
-
*/
|
|
58744
|
-
/**
|
|
58745
|
-
* @license MIT https://github.com/facelessuser/coloraide/blob/main/LICENSE.md
|
|
58746
|
-
*/
|
|
58747
|
-
const d = {
|
|
58748
|
-
aliceblue: [
|
|
58749
|
-
240,
|
|
58750
|
-
248,
|
|
58751
|
-
255
|
|
58752
|
-
],
|
|
58753
|
-
antiquewhite: [
|
|
58754
|
-
250,
|
|
58755
|
-
235,
|
|
58756
|
-
215
|
|
58757
|
-
],
|
|
58758
|
-
aqua: [
|
|
58759
|
-
0,
|
|
58760
|
-
255,
|
|
58761
|
-
255
|
|
58762
|
-
],
|
|
58763
|
-
aquamarine: [
|
|
58764
|
-
127,
|
|
58765
|
-
255,
|
|
58766
|
-
212
|
|
58767
|
-
],
|
|
58768
|
-
azure: [
|
|
58769
|
-
240,
|
|
58770
|
-
255,
|
|
58771
|
-
255
|
|
58772
|
-
],
|
|
58773
|
-
beige: [
|
|
58774
|
-
245,
|
|
58775
|
-
245,
|
|
58776
|
-
220
|
|
58777
|
-
],
|
|
58778
|
-
bisque: [
|
|
58779
|
-
255,
|
|
58780
|
-
228,
|
|
58781
|
-
196
|
|
58782
|
-
],
|
|
58783
|
-
black: [
|
|
58784
|
-
0,
|
|
58785
|
-
0,
|
|
58786
|
-
0
|
|
58787
|
-
],
|
|
58788
|
-
blanchedalmond: [
|
|
58789
|
-
255,
|
|
58790
|
-
235,
|
|
58791
|
-
205
|
|
58792
|
-
],
|
|
58793
|
-
blue: [
|
|
58794
|
-
0,
|
|
58795
|
-
0,
|
|
58796
|
-
255
|
|
58797
|
-
],
|
|
58798
|
-
blueviolet: [
|
|
58799
|
-
138,
|
|
58800
|
-
43,
|
|
58801
|
-
226
|
|
58802
|
-
],
|
|
58803
|
-
brown: [
|
|
58804
|
-
165,
|
|
58805
|
-
42,
|
|
58806
|
-
42
|
|
58807
|
-
],
|
|
58808
|
-
burlywood: [
|
|
58809
|
-
222,
|
|
58810
|
-
184,
|
|
58811
|
-
135
|
|
58812
|
-
],
|
|
58813
|
-
cadetblue: [
|
|
58814
|
-
95,
|
|
58815
|
-
158,
|
|
58816
|
-
160
|
|
58817
|
-
],
|
|
58818
|
-
chartreuse: [
|
|
58819
|
-
127,
|
|
58820
|
-
255,
|
|
58821
|
-
0
|
|
58822
|
-
],
|
|
58823
|
-
chocolate: [
|
|
58824
|
-
210,
|
|
58825
|
-
105,
|
|
58826
|
-
30
|
|
58827
|
-
],
|
|
58828
|
-
coral: [
|
|
58829
|
-
255,
|
|
58830
|
-
127,
|
|
58831
|
-
80
|
|
58832
|
-
],
|
|
58833
|
-
cornflowerblue: [
|
|
58834
|
-
100,
|
|
58835
|
-
149,
|
|
58836
|
-
237
|
|
58837
|
-
],
|
|
58838
|
-
cornsilk: [
|
|
58839
|
-
255,
|
|
58840
|
-
248,
|
|
58841
|
-
220
|
|
58842
|
-
],
|
|
58843
|
-
crimson: [
|
|
58844
|
-
220,
|
|
58845
|
-
20,
|
|
58846
|
-
60
|
|
58847
|
-
],
|
|
58848
|
-
cyan: [
|
|
58849
|
-
0,
|
|
58850
|
-
255,
|
|
58851
|
-
255
|
|
58852
|
-
],
|
|
58853
|
-
darkblue: [
|
|
58854
|
-
0,
|
|
58855
|
-
0,
|
|
58856
|
-
139
|
|
58857
|
-
],
|
|
58858
|
-
darkcyan: [
|
|
58859
|
-
0,
|
|
58860
|
-
139,
|
|
58861
|
-
139
|
|
58862
|
-
],
|
|
58863
|
-
darkgoldenrod: [
|
|
58864
|
-
184,
|
|
58865
|
-
134,
|
|
58866
|
-
11
|
|
58867
|
-
],
|
|
58868
|
-
darkgray: [
|
|
58869
|
-
169,
|
|
58870
|
-
169,
|
|
58871
|
-
169
|
|
58872
|
-
],
|
|
58873
|
-
darkgreen: [
|
|
58874
|
-
0,
|
|
58875
|
-
100,
|
|
58876
|
-
0
|
|
58877
|
-
],
|
|
58878
|
-
darkgrey: [
|
|
58879
|
-
169,
|
|
58880
|
-
169,
|
|
58881
|
-
169
|
|
58882
|
-
],
|
|
58883
|
-
darkkhaki: [
|
|
58884
|
-
189,
|
|
58885
|
-
183,
|
|
58886
|
-
107
|
|
58887
|
-
],
|
|
58888
|
-
darkmagenta: [
|
|
58889
|
-
139,
|
|
58890
|
-
0,
|
|
58891
|
-
139
|
|
58892
|
-
],
|
|
58893
|
-
darkolivegreen: [
|
|
58894
|
-
85,
|
|
58895
|
-
107,
|
|
58896
|
-
47
|
|
58897
|
-
],
|
|
58898
|
-
darkorange: [
|
|
58899
|
-
255,
|
|
58900
|
-
140,
|
|
58901
|
-
0
|
|
58902
|
-
],
|
|
58903
|
-
darkorchid: [
|
|
58904
|
-
153,
|
|
58905
|
-
50,
|
|
58906
|
-
204
|
|
58907
|
-
],
|
|
58908
|
-
darkred: [
|
|
58909
|
-
139,
|
|
58910
|
-
0,
|
|
58911
|
-
0
|
|
58912
|
-
],
|
|
58913
|
-
darksalmon: [
|
|
58914
|
-
233,
|
|
58915
|
-
150,
|
|
58916
|
-
122
|
|
58917
|
-
],
|
|
58918
|
-
darkseagreen: [
|
|
58919
|
-
143,
|
|
58920
|
-
188,
|
|
58921
|
-
143
|
|
58922
|
-
],
|
|
58923
|
-
darkslateblue: [
|
|
58924
|
-
72,
|
|
58925
|
-
61,
|
|
58926
|
-
139
|
|
58927
|
-
],
|
|
58928
|
-
darkslategray: [
|
|
58929
|
-
47,
|
|
58930
|
-
79,
|
|
58931
|
-
79
|
|
58932
|
-
],
|
|
58933
|
-
darkslategrey: [
|
|
58934
|
-
47,
|
|
58935
|
-
79,
|
|
58936
|
-
79
|
|
58937
|
-
],
|
|
58938
|
-
darkturquoise: [
|
|
58939
|
-
0,
|
|
58940
|
-
206,
|
|
58941
|
-
209
|
|
58942
|
-
],
|
|
58943
|
-
darkviolet: [
|
|
58944
|
-
148,
|
|
58945
|
-
0,
|
|
58946
|
-
211
|
|
58947
|
-
],
|
|
58948
|
-
deeppink: [
|
|
58949
|
-
255,
|
|
58950
|
-
20,
|
|
58951
|
-
147
|
|
58952
|
-
],
|
|
58953
|
-
deepskyblue: [
|
|
58954
|
-
0,
|
|
58955
|
-
191,
|
|
58956
|
-
255
|
|
58957
|
-
],
|
|
58958
|
-
dimgray: [
|
|
58959
|
-
105,
|
|
58960
|
-
105,
|
|
58961
|
-
105
|
|
58962
|
-
],
|
|
58963
|
-
dimgrey: [
|
|
58964
|
-
105,
|
|
58965
|
-
105,
|
|
58966
|
-
105
|
|
58967
|
-
],
|
|
58968
|
-
dodgerblue: [
|
|
58969
|
-
30,
|
|
58970
|
-
144,
|
|
58971
|
-
255
|
|
58972
|
-
],
|
|
58973
|
-
firebrick: [
|
|
58974
|
-
178,
|
|
58975
|
-
34,
|
|
58976
|
-
34
|
|
58977
|
-
],
|
|
58978
|
-
floralwhite: [
|
|
58979
|
-
255,
|
|
58980
|
-
250,
|
|
58981
|
-
240
|
|
58982
|
-
],
|
|
58983
|
-
forestgreen: [
|
|
58984
|
-
34,
|
|
58985
|
-
139,
|
|
58986
|
-
34
|
|
58987
|
-
],
|
|
58988
|
-
fuchsia: [
|
|
58989
|
-
255,
|
|
58990
|
-
0,
|
|
58991
|
-
255
|
|
58992
|
-
],
|
|
58993
|
-
gainsboro: [
|
|
58994
|
-
220,
|
|
58995
|
-
220,
|
|
58996
|
-
220
|
|
58997
|
-
],
|
|
58998
|
-
ghostwhite: [
|
|
58999
|
-
248,
|
|
59000
|
-
248,
|
|
59001
|
-
255
|
|
59002
|
-
],
|
|
59003
|
-
gold: [
|
|
59004
|
-
255,
|
|
59005
|
-
215,
|
|
59006
|
-
0
|
|
59007
|
-
],
|
|
59008
|
-
goldenrod: [
|
|
59009
|
-
218,
|
|
59010
|
-
165,
|
|
59011
|
-
32
|
|
59012
|
-
],
|
|
59013
|
-
gray: [
|
|
59014
|
-
128,
|
|
59015
|
-
128,
|
|
59016
|
-
128
|
|
59017
|
-
],
|
|
59018
|
-
green: [
|
|
59019
|
-
0,
|
|
59020
|
-
128,
|
|
59021
|
-
0
|
|
59022
|
-
],
|
|
59023
|
-
greenyellow: [
|
|
59024
|
-
173,
|
|
59025
|
-
255,
|
|
59026
|
-
47
|
|
59027
|
-
],
|
|
59028
|
-
grey: [
|
|
59029
|
-
128,
|
|
59030
|
-
128,
|
|
59031
|
-
128
|
|
59032
|
-
],
|
|
59033
|
-
honeydew: [
|
|
59034
|
-
240,
|
|
59035
|
-
255,
|
|
59036
|
-
240
|
|
59037
|
-
],
|
|
59038
|
-
hotpink: [
|
|
59039
|
-
255,
|
|
59040
|
-
105,
|
|
59041
|
-
180
|
|
59042
|
-
],
|
|
59043
|
-
indianred: [
|
|
59044
|
-
205,
|
|
59045
|
-
92,
|
|
59046
|
-
92
|
|
59047
|
-
],
|
|
59048
|
-
indigo: [
|
|
59049
|
-
75,
|
|
59050
|
-
0,
|
|
59051
|
-
130
|
|
59052
|
-
],
|
|
59053
|
-
ivory: [
|
|
59054
|
-
255,
|
|
59055
|
-
255,
|
|
59056
|
-
240
|
|
59057
|
-
],
|
|
59058
|
-
khaki: [
|
|
59059
|
-
240,
|
|
59060
|
-
230,
|
|
59061
|
-
140
|
|
59062
|
-
],
|
|
59063
|
-
lavender: [
|
|
59064
|
-
230,
|
|
59065
|
-
230,
|
|
59066
|
-
250
|
|
59067
|
-
],
|
|
59068
|
-
lavenderblush: [
|
|
59069
|
-
255,
|
|
59070
|
-
240,
|
|
59071
|
-
245
|
|
59072
|
-
],
|
|
59073
|
-
lawngreen: [
|
|
59074
|
-
124,
|
|
59075
|
-
252,
|
|
59076
|
-
0
|
|
59077
|
-
],
|
|
59078
|
-
lemonchiffon: [
|
|
59079
|
-
255,
|
|
59080
|
-
250,
|
|
59081
|
-
205
|
|
59082
|
-
],
|
|
59083
|
-
lightblue: [
|
|
59084
|
-
173,
|
|
59085
|
-
216,
|
|
59086
|
-
230
|
|
59087
|
-
],
|
|
59088
|
-
lightcoral: [
|
|
59089
|
-
240,
|
|
59090
|
-
128,
|
|
59091
|
-
128
|
|
59092
|
-
],
|
|
59093
|
-
lightcyan: [
|
|
59094
|
-
224,
|
|
59095
|
-
255,
|
|
59096
|
-
255
|
|
59097
|
-
],
|
|
59098
|
-
lightgoldenrodyellow: [
|
|
59099
|
-
250,
|
|
59100
|
-
250,
|
|
59101
|
-
210
|
|
59102
|
-
],
|
|
59103
|
-
lightgray: [
|
|
59104
|
-
211,
|
|
59105
|
-
211,
|
|
59106
|
-
211
|
|
59107
|
-
],
|
|
59108
|
-
lightgreen: [
|
|
59109
|
-
144,
|
|
59110
|
-
238,
|
|
59111
|
-
144
|
|
59112
|
-
],
|
|
59113
|
-
lightgrey: [
|
|
59114
|
-
211,
|
|
59115
|
-
211,
|
|
59116
|
-
211
|
|
59117
|
-
],
|
|
59118
|
-
lightpink: [
|
|
59119
|
-
255,
|
|
59120
|
-
182,
|
|
59121
|
-
193
|
|
59122
|
-
],
|
|
59123
|
-
lightsalmon: [
|
|
59124
|
-
255,
|
|
59125
|
-
160,
|
|
59126
|
-
122
|
|
59127
|
-
],
|
|
59128
|
-
lightseagreen: [
|
|
59129
|
-
32,
|
|
59130
|
-
178,
|
|
59131
|
-
170
|
|
59132
|
-
],
|
|
59133
|
-
lightskyblue: [
|
|
59134
|
-
135,
|
|
59135
|
-
206,
|
|
59136
|
-
250
|
|
59137
|
-
],
|
|
59138
|
-
lightslategray: [
|
|
59139
|
-
119,
|
|
59140
|
-
136,
|
|
59141
|
-
153
|
|
59142
|
-
],
|
|
59143
|
-
lightslategrey: [
|
|
59144
|
-
119,
|
|
59145
|
-
136,
|
|
59146
|
-
153
|
|
59147
|
-
],
|
|
59148
|
-
lightsteelblue: [
|
|
59149
|
-
176,
|
|
59150
|
-
196,
|
|
59151
|
-
222
|
|
59152
|
-
],
|
|
59153
|
-
lightyellow: [
|
|
59154
|
-
255,
|
|
59155
|
-
255,
|
|
59156
|
-
224
|
|
59157
|
-
],
|
|
59158
|
-
lime: [
|
|
59159
|
-
0,
|
|
59160
|
-
255,
|
|
59161
|
-
0
|
|
59162
|
-
],
|
|
59163
|
-
limegreen: [
|
|
59164
|
-
50,
|
|
59165
|
-
205,
|
|
59166
|
-
50
|
|
59167
|
-
],
|
|
59168
|
-
linen: [
|
|
59169
|
-
250,
|
|
59170
|
-
240,
|
|
59171
|
-
230
|
|
59172
|
-
],
|
|
59173
|
-
magenta: [
|
|
59174
|
-
255,
|
|
59175
|
-
0,
|
|
59176
|
-
255
|
|
59177
|
-
],
|
|
59178
|
-
maroon: [
|
|
59179
|
-
128,
|
|
59180
|
-
0,
|
|
59181
|
-
0
|
|
59182
|
-
],
|
|
59183
|
-
mediumaquamarine: [
|
|
59184
|
-
102,
|
|
59185
|
-
205,
|
|
59186
|
-
170
|
|
59187
|
-
],
|
|
59188
|
-
mediumblue: [
|
|
59189
|
-
0,
|
|
59190
|
-
0,
|
|
59191
|
-
205
|
|
59192
|
-
],
|
|
59193
|
-
mediumorchid: [
|
|
59194
|
-
186,
|
|
59195
|
-
85,
|
|
59196
|
-
211
|
|
59197
|
-
],
|
|
59198
|
-
mediumpurple: [
|
|
59199
|
-
147,
|
|
59200
|
-
112,
|
|
59201
|
-
219
|
|
59202
|
-
],
|
|
59203
|
-
mediumseagreen: [
|
|
59204
|
-
60,
|
|
59205
|
-
179,
|
|
59206
|
-
113
|
|
59207
|
-
],
|
|
59208
|
-
mediumslateblue: [
|
|
59209
|
-
123,
|
|
59210
|
-
104,
|
|
59211
|
-
238
|
|
59212
|
-
],
|
|
59213
|
-
mediumspringgreen: [
|
|
59214
|
-
0,
|
|
59215
|
-
250,
|
|
59216
|
-
154
|
|
59217
|
-
],
|
|
59218
|
-
mediumturquoise: [
|
|
59219
|
-
72,
|
|
59220
|
-
209,
|
|
59221
|
-
204
|
|
59222
|
-
],
|
|
59223
|
-
mediumvioletred: [
|
|
59224
|
-
199,
|
|
59225
|
-
21,
|
|
59226
|
-
133
|
|
59227
|
-
],
|
|
59228
|
-
midnightblue: [
|
|
59229
|
-
25,
|
|
59230
|
-
25,
|
|
59231
|
-
112
|
|
59232
|
-
],
|
|
59233
|
-
mintcream: [
|
|
59234
|
-
245,
|
|
59235
|
-
255,
|
|
59236
|
-
250
|
|
59237
|
-
],
|
|
59238
|
-
mistyrose: [
|
|
59239
|
-
255,
|
|
59240
|
-
228,
|
|
59241
|
-
225
|
|
59242
|
-
],
|
|
59243
|
-
moccasin: [
|
|
59244
|
-
255,
|
|
59245
|
-
228,
|
|
59246
|
-
181
|
|
59247
|
-
],
|
|
59248
|
-
navajowhite: [
|
|
59249
|
-
255,
|
|
59250
|
-
222,
|
|
59251
|
-
173
|
|
59252
|
-
],
|
|
59253
|
-
navy: [
|
|
59254
|
-
0,
|
|
59255
|
-
0,
|
|
59256
|
-
128
|
|
59257
|
-
],
|
|
59258
|
-
oldlace: [
|
|
59259
|
-
253,
|
|
59260
|
-
245,
|
|
59261
|
-
230
|
|
59262
|
-
],
|
|
59263
|
-
olive: [
|
|
59264
|
-
128,
|
|
59265
|
-
128,
|
|
59266
|
-
0
|
|
59267
|
-
],
|
|
59268
|
-
olivedrab: [
|
|
59269
|
-
107,
|
|
59270
|
-
142,
|
|
59271
|
-
35
|
|
59272
|
-
],
|
|
59273
|
-
orange: [
|
|
59274
|
-
255,
|
|
59275
|
-
165,
|
|
59276
|
-
0
|
|
59277
|
-
],
|
|
59278
|
-
orangered: [
|
|
59279
|
-
255,
|
|
59280
|
-
69,
|
|
59281
|
-
0
|
|
59282
|
-
],
|
|
59283
|
-
orchid: [
|
|
59284
|
-
218,
|
|
59285
|
-
112,
|
|
59286
|
-
214
|
|
59287
|
-
],
|
|
59288
|
-
palegoldenrod: [
|
|
59289
|
-
238,
|
|
59290
|
-
232,
|
|
59291
|
-
170
|
|
59292
|
-
],
|
|
59293
|
-
palegreen: [
|
|
59294
|
-
152,
|
|
59295
|
-
251,
|
|
59296
|
-
152
|
|
59297
|
-
],
|
|
59298
|
-
paleturquoise: [
|
|
59299
|
-
175,
|
|
59300
|
-
238,
|
|
59301
|
-
238
|
|
59302
|
-
],
|
|
59303
|
-
palevioletred: [
|
|
59304
|
-
219,
|
|
59305
|
-
112,
|
|
59306
|
-
147
|
|
59307
|
-
],
|
|
59308
|
-
papayawhip: [
|
|
59309
|
-
255,
|
|
59310
|
-
239,
|
|
59311
|
-
213
|
|
59312
|
-
],
|
|
59313
|
-
peachpuff: [
|
|
59314
|
-
255,
|
|
59315
|
-
218,
|
|
59316
|
-
185
|
|
59317
|
-
],
|
|
59318
|
-
peru: [
|
|
59319
|
-
205,
|
|
59320
|
-
133,
|
|
59321
|
-
63
|
|
59322
|
-
],
|
|
59323
|
-
pink: [
|
|
59324
|
-
255,
|
|
59325
|
-
192,
|
|
59326
|
-
203
|
|
59327
|
-
],
|
|
59328
|
-
plum: [
|
|
59329
|
-
221,
|
|
59330
|
-
160,
|
|
59331
|
-
221
|
|
59332
|
-
],
|
|
59333
|
-
powderblue: [
|
|
59334
|
-
176,
|
|
59335
|
-
224,
|
|
59336
|
-
230
|
|
59337
|
-
],
|
|
59338
|
-
purple: [
|
|
59339
|
-
128,
|
|
59340
|
-
0,
|
|
59341
|
-
128
|
|
59342
|
-
],
|
|
59343
|
-
rebeccapurple: [
|
|
59344
|
-
102,
|
|
59345
|
-
51,
|
|
59346
|
-
153
|
|
59347
|
-
],
|
|
59348
|
-
red: [
|
|
59349
|
-
255,
|
|
59350
|
-
0,
|
|
59351
|
-
0
|
|
59352
|
-
],
|
|
59353
|
-
rosybrown: [
|
|
59354
|
-
188,
|
|
59355
|
-
143,
|
|
59356
|
-
143
|
|
59357
|
-
],
|
|
59358
|
-
royalblue: [
|
|
59359
|
-
65,
|
|
59360
|
-
105,
|
|
59361
|
-
225
|
|
59362
|
-
],
|
|
59363
|
-
saddlebrown: [
|
|
59364
|
-
139,
|
|
59365
|
-
69,
|
|
59366
|
-
19
|
|
59367
|
-
],
|
|
59368
|
-
salmon: [
|
|
59369
|
-
250,
|
|
59370
|
-
128,
|
|
59371
|
-
114
|
|
59372
|
-
],
|
|
59373
|
-
sandybrown: [
|
|
59374
|
-
244,
|
|
59375
|
-
164,
|
|
59376
|
-
96
|
|
59377
|
-
],
|
|
59378
|
-
seagreen: [
|
|
59379
|
-
46,
|
|
59380
|
-
139,
|
|
59381
|
-
87
|
|
59382
|
-
],
|
|
59383
|
-
seashell: [
|
|
59384
|
-
255,
|
|
59385
|
-
245,
|
|
59386
|
-
238
|
|
59387
|
-
],
|
|
59388
|
-
sienna: [
|
|
59389
|
-
160,
|
|
59390
|
-
82,
|
|
59391
|
-
45
|
|
59392
|
-
],
|
|
59393
|
-
silver: [
|
|
59394
|
-
192,
|
|
59395
|
-
192,
|
|
59396
|
-
192
|
|
59397
|
-
],
|
|
59398
|
-
skyblue: [
|
|
59399
|
-
135,
|
|
59400
|
-
206,
|
|
59401
|
-
235
|
|
59402
|
-
],
|
|
59403
|
-
slateblue: [
|
|
59404
|
-
106,
|
|
59405
|
-
90,
|
|
59406
|
-
205
|
|
59407
|
-
],
|
|
59408
|
-
slategray: [
|
|
59409
|
-
112,
|
|
59410
|
-
128,
|
|
59411
|
-
144
|
|
59412
|
-
],
|
|
59413
|
-
slategrey: [
|
|
59414
|
-
112,
|
|
59415
|
-
128,
|
|
59416
|
-
144
|
|
59417
|
-
],
|
|
59418
|
-
snow: [
|
|
59419
|
-
255,
|
|
59420
|
-
250,
|
|
59421
|
-
250
|
|
59422
|
-
],
|
|
59423
|
-
springgreen: [
|
|
59424
|
-
0,
|
|
59425
|
-
255,
|
|
59426
|
-
127
|
|
59427
|
-
],
|
|
59428
|
-
steelblue: [
|
|
59429
|
-
70,
|
|
59430
|
-
130,
|
|
59431
|
-
180
|
|
59432
|
-
],
|
|
59433
|
-
tan: [
|
|
59434
|
-
210,
|
|
59435
|
-
180,
|
|
59436
|
-
140
|
|
59437
|
-
],
|
|
59438
|
-
teal: [
|
|
59439
|
-
0,
|
|
59440
|
-
128,
|
|
59441
|
-
128
|
|
59442
|
-
],
|
|
59443
|
-
thistle: [
|
|
59444
|
-
216,
|
|
59445
|
-
191,
|
|
59446
|
-
216
|
|
59447
|
-
],
|
|
59448
|
-
tomato: [
|
|
59449
|
-
255,
|
|
59450
|
-
99,
|
|
59451
|
-
71
|
|
59452
|
-
],
|
|
59453
|
-
turquoise: [
|
|
59454
|
-
64,
|
|
59455
|
-
224,
|
|
59456
|
-
208
|
|
59457
|
-
],
|
|
59458
|
-
violet: [
|
|
59459
|
-
238,
|
|
59460
|
-
130,
|
|
59461
|
-
238
|
|
59462
|
-
],
|
|
59463
|
-
wheat: [
|
|
59464
|
-
245,
|
|
59465
|
-
222,
|
|
59466
|
-
179
|
|
59467
|
-
],
|
|
59468
|
-
white: [
|
|
59469
|
-
255,
|
|
59470
|
-
255,
|
|
59471
|
-
255
|
|
59472
|
-
],
|
|
59473
|
-
whitesmoke: [
|
|
59474
|
-
245,
|
|
59475
|
-
245,
|
|
59476
|
-
245
|
|
59477
|
-
],
|
|
59478
|
-
yellow: [
|
|
59479
|
-
255,
|
|
59480
|
-
255,
|
|
59481
|
-
0
|
|
59482
|
-
],
|
|
59483
|
-
yellowgreen: [
|
|
59484
|
-
154,
|
|
59485
|
-
205,
|
|
59486
|
-
50
|
|
59487
|
-
]
|
|
59488
|
-
};
|
|
59489
|
-
//#endregion
|
|
59490
|
-
//#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
|
|
59218
|
+
//#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
|
|
59491
59219
|
const o = /^text-decoration$/i, creator$4 = (t) => {
|
|
59492
59220
|
const c = Object.assign({ preserve: !0 }, t);
|
|
59493
59221
|
return {
|
|
@@ -59687,7 +59415,7 @@ const r = [
|
|
|
59687
59415
|
], i = [
|
|
59688
59416
|
"currentcolor",
|
|
59689
59417
|
"transparent",
|
|
59690
|
-
...Object.keys(
|
|
59418
|
+
...Object.keys(G$1)
|
|
59691
59419
|
];
|
|
59692
59420
|
function genericNodeParts() {
|
|
59693
59421
|
return {
|
|
@@ -59698,7 +59426,7 @@ function genericNodeParts() {
|
|
|
59698
59426
|
};
|
|
59699
59427
|
}
|
|
59700
59428
|
//#endregion
|
|
59701
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-trigonometric-functions@5.0.3_postcss@8.5.
|
|
59429
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-trigonometric-functions@5.0.3_postcss@8.5.16/node_modules/@csstools/postcss-trigonometric-functions/dist/index.mjs
|
|
59702
59430
|
const e$2 = /(?<![-\w])(?:asin|acos|atan|atan2|sin|cos|tan)\(/i, creator$3 = (o) => {
|
|
59703
59431
|
const t = Object.assign({ preserve: !1 }, o);
|
|
59704
59432
|
return {
|
|
@@ -59715,7 +59443,7 @@ const e$2 = /(?<![-\w])(?:asin|acos|atan|atan2|sin|cos|tan)\(/i, creator$3 = (o)
|
|
|
59715
59443
|
};
|
|
59716
59444
|
creator$3.postcss = !0;
|
|
59717
59445
|
//#endregion
|
|
59718
|
-
//#region ../../node_modules/.pnpm/@csstools+postcss-unset-value@5.0.0_postcss@8.5.
|
|
59446
|
+
//#region ../../node_modules/.pnpm/@csstools+postcss-unset-value@5.0.0_postcss@8.5.16/node_modules/@csstools/postcss-unset-value/dist/index.mjs
|
|
59719
59447
|
const e$1 = /* @__PURE__ */ new Set([
|
|
59720
59448
|
"block-ellipsis",
|
|
59721
59449
|
"border-boundary",
|
|
@@ -60153,7 +59881,7 @@ const e$1 = /* @__PURE__ */ new Set([
|
|
|
60153
59881
|
};
|
|
60154
59882
|
creator$2.postcss = !0;
|
|
60155
59883
|
//#endregion
|
|
60156
|
-
//#region ../../node_modules/.pnpm/postcss-preset-env@11.3.
|
|
59884
|
+
//#region ../../node_modules/.pnpm/postcss-preset-env@11.3.2_postcss@8.5.16/node_modules/postcss-preset-env/dist/index.mjs
|
|
60157
59885
|
const ks = {
|
|
60158
59886
|
"blank-pseudo-class": "https://github.com/csstools/postcss-plugins/blob/main/plugins/css-blank-pseudo/README.md#browser",
|
|
60159
59887
|
"focus-visible-pseudo-class": "https://github.com/WICG/focus-visible",
|